public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/rust-sequoia-cert-store] epel10: Update to version 0.5.2
@ 2026-06-15 13:11 Fabio Valentini
0 siblings, 0 replies; only message in thread
From: Fabio Valentini @ 2026-06-15 13:11 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/rust-sequoia-cert-store
Branch : epel10
Commit : 1087cde7db6175854f55d1e0ae84dd9b6ebfdc00
Author : Fabio Valentini <decathorpe@gmail.com>
Date : 2024-04-09T19:30:23+02:00
Stats : +7/-46 in 6 file(s)
URL : https://src.fedoraproject.org/rpms/rust-sequoia-cert-store/c/1087cde7db6175854f55d1e0ae84dd9b6ebfdc00?branch=epel10
Log:
Update to version 0.5.2
---
diff --git a/.gitignore b/.gitignore
index 581ad66..b1070d4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,3 +4,4 @@
/sequoia-cert-store-0.4.2.crate
/sequoia-cert-store-0.5.0.crate
/sequoia-cert-store-0.5.1.crate
+/sequoia-cert-store-0.5.2.crate
diff --git a/68.patch b/68.patch
deleted file mode 100644
index 0218521..0000000
--- a/68.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From 164dadf70036b6501f373aaa00b5a07ae770450a Mon Sep 17 00:00:00 2001
-From: "Neal H. Walfield" <neal@sequoia-pgp.org>
-Date: Tue, 9 Apr 2024 17:28:44 +0200
-Subject: [PATCH] Use simpler SQL.
-
- - `INSERT .. ON CONFLICT DO UPDATE` is only supported by SQLite
- 3.35.0 or later.
-
- - RHEL 9 has version 3.34.
-
- - Use `INSERT OR REPLACE`, which is equivalent, and is supported by
- earlier versions of SQLite.
-
- - Fixes #23.
----
- src/store/certd.rs | 5 ++---
- 1 file changed, 2 insertions(+), 3 deletions(-)
-
-diff --git a/src/store/certd.rs b/src/store/certd.rs
-index a93bd8b..1f78a4d 100644
---- a/src/store/certd.rs
-+++ b/src/store/certd.rs
-@@ -1732,9 +1732,8 @@ impl<'a> CertD<'a> {
- // First, insert the cert and get its row id.
- *commit = *commit && {
- let mut stmt = tx.prepare_cached(
-- "INSERT INTO certs (tag, keyid, fingerprint) \
-- VALUES (?1, ?2, ?3) \
-- ON CONFLICT DO UPDATE SET tag = ?1")?;
-+ "INSERT OR REPLACE INTO certs (tag, keyid, fingerprint) \
-+ VALUES (?1, ?2, ?3)")?;
- ignore_sqlite_busy(stmt.execute(params![
- tag2db(tag), keyid2db(&keyid), &cert_fp_db]))?
- };
---
-GitLab
-
diff --git a/rust-sequoia-cert-store.spec b/rust-sequoia-cert-store.spec
index c627896..814e96f 100644
--- a/rust-sequoia-cert-store.spec
+++ b/rust-sequoia-cert-store.spec
@@ -5,7 +5,7 @@
%global crate sequoia-cert-store
Name: rust-sequoia-cert-store
-Version: 0.5.1
+Version: 0.5.2
Release: %autorelease
Summary: Certificate database interface
@@ -18,9 +18,6 @@ Patch: sequoia-cert-store-fix-metadata-auto.diff
# * relax rusqlite dependency to allow building with version 0.28
# * exclude integration tests, test data, and scripts from installed files
Patch: sequoia-cert-store-fix-metadata.diff
-# * include proposed patch to restore compatibility with sqlite < 3.35:
-# https://gitlab.com/sequoia-pgp/sequoia-cert-store/-/merge_requests/68
-Patch: https://gitlab.com/sequoia-pgp/sequoia-cert-store/-/merge_requests/68.patch
BuildRequires: cargo-rpm-macros >= 24
diff --git a/sequoia-cert-store-fix-metadata-auto.diff b/sequoia-cert-store-fix-metadata-auto.diff
index fa96dfb..353156c 100644
--- a/sequoia-cert-store-fix-metadata-auto.diff
+++ b/sequoia-cert-store-fix-metadata-auto.diff
@@ -1,5 +1,5 @@
---- sequoia-cert-store-0.5.1/Cargo.toml 1970-01-01T00:00:01+00:00
-+++ sequoia-cert-store-0.5.1/Cargo.toml 2024-04-04T11:27:02.899844+00:00
+--- sequoia-cert-store-0.5.2/Cargo.toml 1970-01-01T00:00:01+00:00
++++ sequoia-cert-store-0.5.2/Cargo.toml 2024-04-09T17:29:03.503279+00:00
@@ -104,17 +104,6 @@
]
default-features = false
diff --git a/sequoia-cert-store-fix-metadata.diff b/sequoia-cert-store-fix-metadata.diff
index c8e9174..398bd4f 100644
--- a/sequoia-cert-store-fix-metadata.diff
+++ b/sequoia-cert-store-fix-metadata.diff
@@ -1,5 +1,5 @@
---- sequoia-cert-store-0.5.1/Cargo.toml 1970-01-01T00:00:01+00:00
-+++ sequoia-cert-store-0.5.1/Cargo.toml 2024-04-04T11:27:14.873870+00:00
+--- sequoia-cert-store-0.5.2/Cargo.toml 1970-01-01T00:00:01+00:00
++++ sequoia-cert-store-0.5.2/Cargo.toml 2024-04-09T17:29:30.290397+00:00
@@ -35,6 +35,7 @@
]
license = "LGPL-2.0-or-later"
diff --git a/sources b/sources
index ad0f4ca..4e1499d 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (sequoia-cert-store-0.5.1.crate) = c61935d674c15705add5d709a9610a12ac927edf4439abc617dacf1bee3f324b9a1c084142903232b895731421242c1ee5fb5f8b14d090c697b837f27651f8a3
+SHA512 (sequoia-cert-store-0.5.2.crate) = 047da6a523cc07e3f99b4f507038eabe4a793779212ec6086139b4b90b116036608a6fc00cd7f549a8cfa09e5b6f8d16ef6d248fc203bc274ee2a24491a7983e
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-06-15 13:11 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-15 13:11 [rpms/rust-sequoia-cert-store] epel10: Update to version 0.5.2 Fabio Valentini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox