public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Fabio Valentini <decathorpe@gmail.com>
To: git-commits@fedoraproject.org
Subject: [rpms/rust-z-base-32] rawhide: Update to version 0.1.5; Fixes RHBZ#2488973
Date: Thu, 18 Jun 2026 14:19:15 GMT [thread overview]
Message-ID: <178179235588.1.11665878230217279812.rpms-rust-z-base-32-5dfad70c66a1@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/rust-z-base-32
Branch : rawhide
Commit : 5dfad70c66a145a8b88a3840003ece057d69849f
Author : Fabio Valentini <decathorpe@gmail.com>
Date : 2026-06-18T16:18:59+02:00
Stats : +27/-30 in 5 file(s)
URL : https://src.fedoraproject.org/rpms/rust-z-base-32/c/5dfad70c66a145a8b88a3840003ece057d69849f?branch=rawhide
Log:
Update to version 0.1.5; Fixes RHBZ#2488973
---
diff --git a/.gitignore b/.gitignore
index 83a7cc2..be9e9b2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
/z-base-32-0.1.3.crate
/z-base-32-0.1.4.crate
+/z-base-32-0.1.5.crate
diff --git a/rust-z-base-32.spec b/rust-z-base-32.spec
index 1918e65..7220b92 100644
--- a/rust-z-base-32.spec
+++ b/rust-z-base-32.spec
@@ -1,11 +1,11 @@
-# Generated by rust2rpm 26
-%bcond_without check
+# Generated by rust2rpm 28
+%bcond check 1
%global debug_package %{nil}
%global crate z-base-32
Name: rust-z-base-32
-Version: 0.1.4
+Version: 0.1.5
Release: %autorelease
Summary: Z-base-32: human-oriented base-32 encoding
@@ -38,6 +38,8 @@ use the "%{crate}" crate.
%doc %{crate_instdir}/CHANGELOG.md
%doc %{crate_instdir}/README.md
%{crate_instdir}/
+%exclude %{crate_instdir}/pyproject.toml
+%exclude %{crate_instdir}/test.py
%package -n %{name}+default-devel
Summary: %{summary}
diff --git a/rust2rpm.toml b/rust2rpm.toml
new file mode 100644
index 0000000..aa93638
--- /dev/null
+++ b/rust2rpm.toml
@@ -0,0 +1,10 @@
+[package]
+cargo-toml-patch-comments = [
+ "drop unused CLI",
+ "drop support for building as a Python module",
+]
+exclude-crate-files = [
+ "pyproject.toml",
+ "test.py",
+]
+
diff --git a/sources b/sources
index b28312e..af5a1b0 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (z-base-32-0.1.4.crate) = 83eef93391d22782fd38ba30957a5569a74e7be529354eed3b24da71eb958a7bf17da7b3366e4f204accc2145a967819f0a07ae33e021063640ce9ffce7534aa
+SHA512 (z-base-32-0.1.5.crate) = 57d982c1f0496656b3cd947345661ff10f7f70b21c80bcfa68389ef07958b42767a1919f2012c8cc5d74a8e91fca6ffd84e2d3361347c8f8617d45aaf303be4c
diff --git a/z-base-32-fix-metadata.diff b/z-base-32-fix-metadata.diff
index 6940c65..7093b85 100644
--- a/z-base-32-fix-metadata.diff
+++ b/z-base-32-fix-metadata.diff
@@ -1,18 +1,11 @@
---- z-base-32-0.1.4/Cargo.toml 1970-01-01T00:00:01+00:00
-+++ z-base-32-0.1.4/Cargo.toml 2024-03-08T12:38:35.702352+00:00
-@@ -26,6 +26,11 @@
- categories = ["encoding"]
- license = "MIT"
+--- z-base-32-0.1.5/Cargo.toml 2006-07-24T01:21:28+00:00
++++ z-base-32-0.1.5/Cargo.toml 2026-06-18T14:16:49.507988+00:00
+@@ -34,31 +34,10 @@
repository = "https://github.com/matusf/z-base-32"
-+exclude = [
-+ "/pyproject.toml",
-+ "/test.py",
-+]
-+autobins = false
- [profile.dist]
- lto = "thin"
-@@ -33,35 +38,6 @@
+ [features]
+-cli = ["dep:clap"]
+-python = ["dep:pyo3"]
[lib]
name = "zbase32"
@@ -20,31 +13,22 @@
- "cdylib",
- "rlib",
-]
+ path = "src/lib.rs"
-
-[[bin]]
-name = "zbase32"
+-path = "src/bin/zbase32.rs"
-required-features = ["cli"]
-
--[dependencies.anyhow]
--version = "1"
--optional = true
--
-[dependencies.clap]
--version = "4.5.1"
+-version = "4"
-features = ["derive"]
-optional = true
-
-[dependencies.pyo3]
--version = "0.20.2"
+-version = "0.29"
-features = ["extension-module"]
-optional = true
[dev-dependencies.quickcheck]
version = "1"
--
--[features]
--cli = [
-- "dep:clap",
-- "dep:anyhow",
--]
--python = ["dep:pyo3"]
reply other threads:[~2026-06-18 14:19 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178179235588.1.11665878230217279812.rpms-rust-z-base-32-5dfad70c66a1@fedoraproject.org \
--to=decathorpe@gmail.com \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox