--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian.org@packages.debian.org
Usertags: unblock
Please unblock package glome
New version is already uploaded to unstable, but it will not
have enough time to transition to testing before the deadline.
[ Reason ]
Include the latest upstream version in the release.
[ Impact ]
No significant impact as there is no code changes in the new
version.
[ Tests ]
Both build tests and autopkgtest pass for the new version.
[ Risks ]
Risk should be low as the new version only updates Rust metadata.
[ Checklist ]
[x] all changes are documented in the d/changelog
[x] I reviewed all changes and I approve them
[x] attach debdiff against the package in testing
unblock glome/0.3.0-1
diff -Nru glome-0.2/debian/changelog glome-0.3.0/debian/changelog
--- glome-0.2/debian/changelog 2025-05-07 00:16:37.000000000 +0200
+++ glome-0.3.0/debian/changelog 2025-07-15 21:05:06.000000000 +0200
@@ -1,3 +1,11 @@
+glome (0.3.0-1) unstable; urgency=medium
+
+ * New upstream version 0.3.0
+ * Refresh patches for new version
+ * Ignore BLHC failure for Rust part of the build
+
+ -- Valentin Vidic <vvidic@debian.org> Tue, 15 Jul 2025 21:05:06 +0200
+
glome (0.2-2) unstable; urgency=medium
[ Philipp Kern ]
diff -Nru glome-0.2/debian/patches/rust.patch glome-0.3.0/debian/patches/rust.patch
--- glome-0.2/debian/patches/rust.patch 2025-05-07 00:15:14.000000000 +0200
+++ glome-0.3.0/debian/patches/rust.patch 2025-07-15 21:04:43.000000000 +0200
@@ -5,7 +5,7 @@
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/rust/Cargo.toml
+++ b/rust/Cargo.toml
-@@ -17,7 +17,7 @@
+@@ -22,7 +22,7 @@
openssl = { version = "0.10", optional = true }
# cli
@@ -14,7 +14,7 @@
clap = { version = "4", features = ["derive"], optional = true}
[dev-dependencies]
-@@ -29,11 +29,11 @@
+@@ -34,11 +34,11 @@
[lib]
name = "glome"
diff -Nru glome-0.2/debian/salsa-ci.yml glome-0.3.0/debian/salsa-ci.yml
--- glome-0.2/debian/salsa-ci.yml 2022-11-27 22:11:38.000000000 +0100
+++ glome-0.3.0/debian/salsa-ci.yml 2025-06-24 22:53:30.000000000 +0200
@@ -9,3 +9,7 @@
include:
- https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml
- https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml
+
+variables:
+ # blhc fails on cargo build
+ SALSA_CI_BLHC_ARGS: '--ignore-line ^\s\s\sCompiling\s[^\s]+\sv\d.* --ignore-line .*rustc.*link-arg=-Wl,-z,relro.*link-arg=-Wl,-z,now.*'
diff -Nru glome-0.2/rust/Cargo.lock glome-0.3.0/rust/Cargo.lock
--- glome-0.2/rust/Cargo.lock 2025-03-01 12:21:26.000000000 +0100
+++ glome-0.3.0/rust/Cargo.lock 2025-05-05 23:02:06.000000000 +0200
@@ -273,7 +273,7 @@
[[package]]
name = "glome"
-version = "0.1.0"
+version = "0.3.0"
dependencies = [
"base64",
"clap",
diff -Nru glome-0.2/rust/Cargo.toml glome-0.3.0/rust/Cargo.toml
--- glome-0.2/rust/Cargo.toml 2025-03-01 12:21:26.000000000 +0100
+++ glome-0.3.0/rust/Cargo.toml 2025-05-05 23:02:06.000000000 +0200
@@ -1,8 +1,13 @@
[package]
name = "glome"
-version = "0.1.0"
+version = "0.3.0"
edition = "2021"
+description = "Generic low-overhead message exchange with cryptographic integrity protection"
+repository = "https://github.com/google/glome"
+license = "Apache-2.0"
+categories = ["authentication", "cryptography", "no-std"]
+
[features]
default = [ "dalek" ]
dalek = [ "dep:x25519-dalek" ]
--- End Message ---