Compare commits

...

No commits in common. 'epel10' and 'i10ce' have entirely different histories.

6
.gitignore vendored

@ -1,5 +1 @@
/debug-helper-0.3.8.crate
/debug-helper-0.3.10.crate
/debug-helper-0.3.11.crate
/debug-helper-0.3.12.crate
/debug-helper-0.3.13.crate
SOURCES/debug-helper-0.3.13.crate

@ -0,0 +1 @@
dc197d26de2f1b0277f9a8d24134603e57c6a0ec SOURCES/debug-helper-0.3.13.crate

@ -0,0 +1,112 @@
## START: Set by rpmautospec
## (rpmautospec version 0.7.3)
## RPMAUTOSPEC: autorelease, autochangelog
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
release_number = 3;
base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}"));
print(release_number + base_release_number - 1);
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}}
## END: Set by rpmautospec
# Generated by rust2rpm 26
%bcond_without check
%global debug_package %{nil}
%global crate debug-helper
Name: rust-debug-helper
Version: 0.3.13
Release: %autorelease
Summary: Declarative macros to help you implement the Debug trait manually
License: MIT
URL: https://crates.io/crates/debug-helper
Source: %{crates_source}
BuildRequires: cargo-rpm-macros >= 24
%global _description %{expand:
This crate provides declarative macros to help you implement the `Debug`
trait manually.}
%description %{_description}
%package devel
Summary: %{summary}
BuildArch: noarch
%description devel %{_description}
This package contains library source intended for building other packages which
use the "%{crate}" crate.
%files devel
%license %{crate_instdir}/LICENSE
%doc %{crate_instdir}/README.md
%{crate_instdir}/
%package -n %{name}+default-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+default-devel %{_description}
This package contains library source intended for building other packages which
use the "default" feature of the "%{crate}" crate.
%files -n %{name}+default-devel
%ghost %{crate_instdir}/Cargo.toml
%prep
%autosetup -n %{crate}-%{version} -p1
%cargo_prep
%generate_buildrequires
%cargo_generate_buildrequires
%build
%cargo_build
%install
%cargo_install
%if %{with check}
%check
%cargo_test
%endif
%changelog
* Fri Dec 20 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 0.3.13-3
- Rebuilt for MSVSphere 10
## START: Generated by rpmautospec
* Sat Sep 14 2024 Orion Poplawski <orion@nwra.com> - 0.3.13-3
- Update to re-reviewed spec with latest rust2rpm
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.12-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.12-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Fri Jun 18 2021 Fabio Valentini <decathorpe@gmail.com> - 0.3.12-1
- Update to version 0.3.12.
- Fixes RHBZ#1971304
* Wed Apr 21 2021 Fabio Valentini <decathorpe@gmail.com> - 0.3.11-1
- Update to version 0.3.11.
- Fixes RHBZ#1952082
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.10-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Wed Jul 29 2020 Josh Stone <jistone@redhat.com> - 0.3.10-1
- Update to 0.3.10
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.8-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Wed May 13 10:52:42 CEST 2020 Igor Raits <i.gnatenko.brain@gmail.com> - 0.3.8-1
- Initial package
## END: Generated by rpmautospec

@ -1,25 +0,0 @@
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.12-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.12-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Fri Jun 18 2021 Fabio Valentini <decathorpe@gmail.com> - 0.3.12-1
- Update to version 0.3.12.
- Fixes RHBZ#1971304
* Wed Apr 21 2021 Fabio Valentini <decathorpe@gmail.com> - 0.3.11-1
- Update to version 0.3.11.
- Fixes RHBZ#1952082
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.10-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Wed Jul 29 2020 Josh Stone <jistone@redhat.com> - 0.3.10-1
- Update to 0.3.10
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.8-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Wed May 13 10:52:42 CEST 2020 Igor Raits <i.gnatenko.brain@gmail.com> - 0.3.8-1
- Initial package

@ -1,69 +0,0 @@
# Generated by rust2rpm 26
%bcond_without check
%global debug_package %{nil}
%global crate debug-helper
Name: rust-debug-helper
Version: 0.3.13
Release: %autorelease
Summary: Declarative macros to help you implement the Debug trait manually
License: MIT
URL: https://crates.io/crates/debug-helper
Source: %{crates_source}
BuildRequires: cargo-rpm-macros >= 24
%global _description %{expand:
This crate provides declarative macros to help you implement the `Debug`
trait manually.}
%description %{_description}
%package devel
Summary: %{summary}
BuildArch: noarch
%description devel %{_description}
This package contains library source intended for building other packages which
use the "%{crate}" crate.
%files devel
%license %{crate_instdir}/LICENSE
%doc %{crate_instdir}/README.md
%{crate_instdir}/
%package -n %{name}+default-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+default-devel %{_description}
This package contains library source intended for building other packages which
use the "default" feature of the "%{crate}" crate.
%files -n %{name}+default-devel
%ghost %{crate_instdir}/Cargo.toml
%prep
%autosetup -n %{crate}-%{version} -p1
%cargo_prep
%generate_buildrequires
%cargo_generate_buildrequires
%build
%cargo_build
%install
%cargo_install
%if %{with check}
%check
%cargo_test
%endif
%changelog
%autochangelog

@ -1 +0,0 @@
SHA512 (debug-helper-0.3.13.crate) = ccd15cefabbe72659152de3ed29370404e8ed26fb69002349328fdc4123b8cb35658a314c1bf5a213915d4f7e30dea8d923b3252f9e08b0d9d1e8236f62aed96
Loading…
Cancel
Save