Compare commits
No commits in common. 'epel9' and 'i10ce' have entirely different histories.
@ -1 +1 @@
|
|||||||
/gix-status-0.2.0.crate
|
SOURCES/gix-status-0.13.0.crate
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
748832549c5248e8f46a6fb53be2590cdaf5b388 SOURCES/gix-status-0.13.0.crate
|
@ -0,0 +1,8 @@
|
|||||||
|
--- gix-status-0.13.0/Cargo.toml 1970-01-01T00:00:01+00:00
|
||||||
|
+++ gix-status-0.13.0/Cargo.toml 2024-09-07T00:27:23.915904+00:00
|
||||||
|
@@ -103,5 +103,3 @@
|
||||||
|
"dep:gix-diff",
|
||||||
|
]
|
||||||
|
|
||||||
|
-[target.'cfg(not(target_has_atomic = "64"))'.dependencies.portable-atomic]
|
||||||
|
-version = "1"
|
@ -0,0 +1,128 @@
|
|||||||
|
## START: Set by rpmautospec
|
||||||
|
## (rpmautospec version 0.7.2)
|
||||||
|
## 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 26
|
||||||
|
# * Deactivate tests because of a missing dev-dependency (gix-testtools)
|
||||||
|
# * See https://github.com/Byron/gitoxide/discussions/900 for more information
|
||||||
|
%bcond_with check
|
||||||
|
%global debug_package %{nil}
|
||||||
|
|
||||||
|
%global crate gix-status
|
||||||
|
|
||||||
|
Name: rust-gix-status
|
||||||
|
Version: 0.13.0
|
||||||
|
Release: %autorelease
|
||||||
|
Summary: Git status implemenation used by gix
|
||||||
|
|
||||||
|
License: MIT OR Apache-2.0
|
||||||
|
URL: https://crates.io/crates/gix-status
|
||||||
|
Source: %{crates_source}
|
||||||
|
# Automatically generated patch to strip dependencies and normalize metadata
|
||||||
|
Patch: gix-status-fix-metadata-auto.diff
|
||||||
|
|
||||||
|
BuildRequires: cargo-rpm-macros >= 24
|
||||||
|
|
||||||
|
%global _description %{expand:
|
||||||
|
A crate of the gitoxide project dealing with 'git status'-like
|
||||||
|
functionality.}
|
||||||
|
|
||||||
|
%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-APACHE
|
||||||
|
%license %{crate_instdir}/LICENSE-MIT
|
||||||
|
%{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}+document-features-devel
|
||||||
|
Summary: %{summary}
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description -n %{name}+document-features-devel %{_description}
|
||||||
|
|
||||||
|
This package contains library source intended for building other packages which
|
||||||
|
use the "document-features" feature of the "%{crate}" crate.
|
||||||
|
|
||||||
|
%files -n %{name}+document-features-devel
|
||||||
|
%ghost %{crate_instdir}/Cargo.toml
|
||||||
|
|
||||||
|
%package -n %{name}+worktree-rewrites-devel
|
||||||
|
Summary: %{summary}
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description -n %{name}+worktree-rewrites-devel %{_description}
|
||||||
|
|
||||||
|
This package contains library source intended for building other packages which
|
||||||
|
use the "worktree-rewrites" feature of the "%{crate}" crate.
|
||||||
|
|
||||||
|
%files -n %{name}+worktree-rewrites-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.13.0-1
|
||||||
|
- Rebuilt for MSVSphere 10
|
||||||
|
|
||||||
|
## START: Generated by rpmautospec
|
||||||
|
* Tue Sep 10 2024 blinxen <h-k-81@hotmail.com> - 0.13.0-1
|
||||||
|
- Update to version 0.13.0 (rhbz#2299588)
|
||||||
|
|
||||||
|
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jun 23 2024 blinxen <h-k-81@hotmail.com> - 0.10.0-1
|
||||||
|
- Update to version 0.10.0 (rhbz#2274904)
|
||||||
|
|
||||||
|
* Fri Apr 05 2024 blinxen <h-k-81@hotmail.com> - 0.8.0-1
|
||||||
|
- Update to version 0.8.0 (rhbz#2253279)
|
||||||
|
|
||||||
|
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Oct 14 2023 blinxen <h-k-81@hotmail.com> - 0.2.0-1
|
||||||
|
- Initial package (rhbz#2244103)
|
||||||
|
## END: Generated by rpmautospec
|
@ -1,72 +0,0 @@
|
|||||||
# Generated by rust2rpm 25
|
|
||||||
# * Deactivate tests because of a missing dev-dependency (gix-testtools)
|
|
||||||
# * See https://github.com/Byron/gitoxide/discussions/900 for more information
|
|
||||||
%bcond_with check
|
|
||||||
%global debug_package %{nil}
|
|
||||||
|
|
||||||
%global crate gix-status
|
|
||||||
|
|
||||||
Name: rust-gix-status
|
|
||||||
Version: 0.2.0
|
|
||||||
Release: %autorelease
|
|
||||||
Summary: Git status implemenation used by gix
|
|
||||||
|
|
||||||
License: MIT OR Apache-2.0
|
|
||||||
URL: https://crates.io/crates/gix-status
|
|
||||||
Source: %{crates_source}
|
|
||||||
|
|
||||||
BuildRequires: cargo-rpm-macros >= 24
|
|
||||||
|
|
||||||
%global _description %{expand:
|
|
||||||
A crate of the gitoxide project dealing with 'git status'-like
|
|
||||||
functionality.}
|
|
||||||
|
|
||||||
%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-APACHE
|
|
||||||
%license %{crate_instdir}/LICENSE-MIT
|
|
||||||
%doc %{crate_instdir}/CHANGELOG.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
|
|
Loading…
Reference in new issue