Compare commits
No commits in common. 'epel9' and 'i10ce' have entirely different histories.
@ -1,18 +1 @@
|
||||
/target-lexicon-0.10.0.crate
|
||||
/target-lexicon-0.11.0.crate
|
||||
/target-lexicon-0.11.1.crate
|
||||
/target-lexicon-0.11.2.crate
|
||||
/target-lexicon-0.12.0.crate
|
||||
/target-lexicon-0.12.1.crate
|
||||
/target-lexicon-0.12.2.crate
|
||||
/target-lexicon-0.12.3.crate
|
||||
/target-lexicon-0.12.4.crate
|
||||
/target-lexicon-0.12.5.crate
|
||||
/target-lexicon-0.12.6.crate
|
||||
/target-lexicon-0.12.7.crate
|
||||
/target-lexicon-0.12.8.crate
|
||||
/target-lexicon-0.12.9.crate
|
||||
/target-lexicon-0.12.10.crate
|
||||
/target-lexicon-0.12.11.crate
|
||||
/target-lexicon-0.12.12.crate
|
||||
/target-lexicon-0.12.13.crate
|
||||
SOURCES/target-lexicon-0.13.1.crate
|
||||
|
@ -0,0 +1 @@
|
||||
8d3ffdb6f3f76cb506337ac3777247b72bca4a29 SOURCES/target-lexicon-0.13.1.crate
|
@ -0,0 +1,224 @@
|
||||
## START: Set by rpmautospec
|
||||
## (rpmautospec version 0.7.3)
|
||||
## RPMAUTOSPEC: autorelease, autochangelog
|
||||
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
|
||||
release_number = 1;
|
||||
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 27
|
||||
%bcond check 1
|
||||
%global debug_package %{nil}
|
||||
|
||||
%global crate target-lexicon
|
||||
|
||||
Name: rust-target-lexicon
|
||||
Version: 0.13.1
|
||||
Release: %autorelease
|
||||
Summary: LLVM target triple types
|
||||
|
||||
License: Apache-2.0 WITH LLVM-exception
|
||||
URL: https://crates.io/crates/target-lexicon
|
||||
Source: %{crates_source}
|
||||
|
||||
BuildRequires: cargo-rpm-macros >= 24
|
||||
|
||||
%global _description %{expand:
|
||||
LLVM target triple types.}
|
||||
|
||||
%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
|
||||
|
||||
%package -n %{name}+arch_zkasm-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+arch_zkasm-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages which
|
||||
use the "arch_zkasm" feature of the "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+arch_zkasm-devel
|
||||
%ghost %{crate_instdir}/Cargo.toml
|
||||
|
||||
%package -n %{name}+serde-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+serde-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages which
|
||||
use the "serde" feature of the "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+serde-devel
|
||||
%ghost %{crate_instdir}/Cargo.toml
|
||||
|
||||
%package -n %{name}+serde_support-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+serde_support-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages which
|
||||
use the "serde_support" feature of the "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+serde_support-devel
|
||||
%ghost %{crate_instdir}/Cargo.toml
|
||||
|
||||
%package -n %{name}+std-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+std-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages which
|
||||
use the "std" feature of the "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+std-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
|
||||
## START: Generated by rpmautospec
|
||||
* Fri Dec 20 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 0.13.1-1
|
||||
- Rebuilt for MSVSphere 10
|
||||
|
||||
* Fri Dec 20 2024 Fabio Valentini <decathorpe@gmail.com> - 0.13.1-1
|
||||
- Update to version 0.13.1; Fixes RHBZ#2330705
|
||||
|
||||
* Sat Aug 03 2024 Fabio Valentini <decathorpe@gmail.com> - 0.12.16-1
|
||||
- Update to version 0.12.16; Fixes RHBZ#2296305
|
||||
|
||||
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.12.14-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Sat Apr 13 2024 Fabio Valentini <decathorpe@gmail.com> - 0.12.14-1
|
||||
- Update to version 0.12.14; Fixes RHBZ#2265448
|
||||
|
||||
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.12.13-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Wed Jan 03 2024 Fabio Valentini <decathorpe@gmail.com> - 0.12.13-1
|
||||
- Update to version 0.12.13; Fixes RHBZ#2256546
|
||||
|
||||
* Fri Oct 20 2023 Fabio Valentini <decathorpe@gmail.com> - 0.12.12-1
|
||||
- Update to version 0.12.12; Fixes RHBZ#2245143
|
||||
|
||||
* Tue Aug 01 2023 Fabio Valentini <decathorpe@gmail.com> - 0.12.11-1
|
||||
- Update to version 0.12.11; Fixes RHBZ#2227929
|
||||
|
||||
* Fri Jul 21 2023 Fabio Valentini <decathorpe@gmail.com> - 0.12.10-1
|
||||
- Update to version 0.12.10; Fixes RHBZ#2223746
|
||||
|
||||
* Wed Jul 12 2023 Fabio Valentini <decathorpe@gmail.com> - 0.12.9-1
|
||||
- Update to version 0.12.9; Fixes RHBZ#2222033
|
||||
|
||||
* Fri Jun 23 2023 Fabio Valentini <decathorpe@gmail.com> - 0.12.8-1
|
||||
- Update to version 0.12.8; Fixes RHBZ#2216332
|
||||
|
||||
* Wed Apr 26 2023 Fabio Valentini <decathorpe@gmail.com> - 0.12.7-1
|
||||
- Update to version 0.12.7; Fixes RHBZ#2189348
|
||||
|
||||
* Thu Mar 16 2023 Fabio Valentini <decathorpe@gmail.com> - 0.12.6-1
|
||||
- Update to version 0.12.6; Fixes RHBZ#2169008
|
||||
|
||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.12.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Fri Nov 11 2022 Fabio Valentini <decathorpe@gmail.com> - 0.12.5-1
|
||||
- Update to version 0.12.5; Fixes RHBZ#2140260
|
||||
|
||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.12.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Tue May 24 2022 Fabio Valentini <decathorpe@gmail.com> - 0.12.4-1
|
||||
- Update to version 0.12.4; Fixes RHBZ#2089425
|
||||
|
||||
* Wed Feb 02 2022 Fabio Valentini <decathorpe@gmail.com> - 0.12.3-1
|
||||
- Update to version 0.12.3; Fixes RHBZ#2048852
|
||||
|
||||
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.12.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Sat Aug 21 2021 Fabio Valentini <decathorpe@gmail.com> - 0.12.2-1
|
||||
- Update to version 0.12.2; Fixes RHBZ#1994821
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.12.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Sun Jul 18 2021 Fabio Valentini <decathorpe@gmail.com> - 0.12.1-1
|
||||
- Update to version 0.12.1; Fixes RHBZ#1982901
|
||||
|
||||
* Thu May 20 2021 Fabio Valentini <decathorpe@gmail.com> - 0.12.0-1
|
||||
- Update to version 0.12.0.
|
||||
- Fixes RHBZ#1940567
|
||||
|
||||
* Sat Feb 27 2021 Fabio Valentini <decathorpe@gmail.com> - 0.11.2-1
|
||||
- Update to version 0.11.2.
|
||||
- Fixes RHBZ#1929343
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Fri Nov 20 2020 Fabio Valentini <decathorpe@gmail.com> - 0.11.1-1
|
||||
- Update to version 0.11.1.
|
||||
- Fixes RHBZ#1889444
|
||||
|
||||
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.0-3
|
||||
- Second attempt - Rebuilt for
|
||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Thu Jun 11 2020 Josh Stone <jistone@redhat.com> - 0.11.0-1
|
||||
- Update to 0.11.0
|
||||
|
||||
* Wed Feb 19 2020 Josh Stone <jistone@redhat.com> - 0.10.0-1
|
||||
- Initial package
|
||||
|
||||
## END: Generated by rpmautospec
|
@ -1,27 +0,0 @@
|
||||
* Thu May 20 2021 Fabio Valentini <decathorpe@gmail.com> - 0.12.0-1
|
||||
- Update to version 0.12.0.
|
||||
- Fixes RHBZ#1940567
|
||||
|
||||
* Sat Feb 27 2021 Fabio Valentini <decathorpe@gmail.com> - 0.11.2-1
|
||||
- Update to version 0.11.2.
|
||||
- Fixes RHBZ#1929343
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Fri Nov 20 2020 Fabio Valentini <decathorpe@gmail.com> - 0.11.1-1
|
||||
- Update to version 0.11.1.
|
||||
- Fixes RHBZ#1889444
|
||||
|
||||
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.0-3
|
||||
- Second attempt - Rebuilt for
|
||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Thu Jun 11 2020 Josh Stone <jistone@redhat.com> - 0.11.0-1
|
||||
- Update to 0.11.0
|
||||
|
||||
* Wed Feb 19 2020 Josh Stone <jistone@redhat.com> - 0.10.0-1
|
||||
- Initial package
|
@ -1,116 +0,0 @@
|
||||
# Generated by rust2rpm 25
|
||||
%bcond_without check
|
||||
%global debug_package %{nil}
|
||||
|
||||
%global crate target-lexicon
|
||||
|
||||
Name: rust-target-lexicon
|
||||
Version: 0.12.13
|
||||
Release: %autorelease
|
||||
Summary: Targeting utilities for compilers and related tools
|
||||
|
||||
License: Apache-2.0 WITH LLVM-exception
|
||||
URL: https://crates.io/crates/target-lexicon
|
||||
Source: %{crates_source}
|
||||
|
||||
BuildRequires: cargo-rpm-macros >= 24
|
||||
|
||||
%global _description %{expand:
|
||||
Targeting utilities for compilers and related tools.}
|
||||
|
||||
%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
|
||||
|
||||
%package -n %{name}+arch_zkasm-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+arch_zkasm-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages which
|
||||
use the "arch_zkasm" feature of the "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+arch_zkasm-devel
|
||||
%ghost %{crate_instdir}/Cargo.toml
|
||||
|
||||
%package -n %{name}+serde-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+serde-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages which
|
||||
use the "serde" feature of the "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+serde-devel
|
||||
%ghost %{crate_instdir}/Cargo.toml
|
||||
|
||||
%package -n %{name}+serde_support-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+serde_support-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages which
|
||||
use the "serde_support" feature of the "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+serde_support-devel
|
||||
%ghost %{crate_instdir}/Cargo.toml
|
||||
|
||||
%package -n %{name}+std-devel
|
||||
Summary: %{summary}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n %{name}+std-devel %{_description}
|
||||
|
||||
This package contains library source intended for building other packages which
|
||||
use the "std" feature of the "%{crate}" crate.
|
||||
|
||||
%files -n %{name}+std-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
|
Loading…
Reference in new issue