Accepting request 1201249 from devel:languages:rust

Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/1201249
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/cargo-c?expand=0&rev=18
This commit is contained in:
Ana Guerrero 2024-09-16 15:40:11 +00:00 committed by Git OBS Bridge
commit bc79c31d46
10 changed files with 40 additions and 42 deletions

View File

@ -2,24 +2,16 @@
## Prerequisites: ## Prerequisites:
You need the download_files and cargo_vendor obs services installed: You need the download_files and cargo_vendor obs services installed:
zypper in obs-service-download_files obs-service-cargo_vendor zypper in obs-service-obs_scm obs-service-cargo_vendor
## Updating to a new version from upstream ## Updating to a new version from upstream
Edit the spec file and update the version variable. Edit the _service file and update the revision parameter.
Download the new source file by running: Download the new source file by running:
osc service ra download_files osc service mr obs_scm
Uncompress the cargo-c-%{version}.tar.gz file:
tar xvfz cargo-c-%{version}.tar.gz
This will create a cargo-c-%{version} directory
Edit the _service file and set the srcdir param
to the extracted directory.
Run the cargo_vendor service with: Run the cargo_vendor service with:
osc service disabledrun osc service mr cargo_vendor
Update the changelog file with the upstream release notes. Update the changelog file with the upstream release notes.

View File

@ -3,14 +3,14 @@
<param name="url">https://github.com/lu-zero/cargo-c.git</param> <param name="url">https://github.com/lu-zero/cargo-c.git</param>
<param name="versionformat">@PARENT_TAG@~git@TAG_OFFSET@.%h</param> <param name="versionformat">@PARENT_TAG@~git@TAG_OFFSET@.%h</param>
<param name="scm">git</param> <param name="scm">git</param>
<param name="revision">v0.9.32</param> <param name="revision">v0.10.3</param>
<param name="match-tag">*</param> <param name="match-tag">*</param>
<param name="versionrewrite-pattern">v(\d+\.\d+\.\d+)</param> <param name="versionrewrite-pattern">v(\d+\.\d+\.\d+)</param>
<param name="versionrewrite-replacement">\1</param> <param name="versionrewrite-replacement">\1</param>
<param name="changesgenerate">enable</param> <param name="changesgenerate">enable</param>
</service> </service>
<service mode="manual" name="tar" /> <service mode="buildtime" name="tar" />
<service mode="manual" name="recompress"> <service mode="buildtime" name="recompress">
<param name="file">*.tar</param> <param name="file">*.tar</param>
<param name="compression">xz</param> <param name="compression">xz</param>
</service> </service>
@ -20,7 +20,4 @@
<param name="compression">xz</param> <param name="compression">xz</param>
<param name="update">true</param> <param name="update">true</param>
</service> </service>
<service name="cargo_audit" mode="manual">
<param name="srcdir">cargo-c</param>
</service>
</services> </services>

4
_servicedata Normal file
View File

@ -0,0 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/lu-zero/cargo-c.git</param>
<param name="changesrevision">ee7d7ef74b9c1fa00c6780da41a838752c76b3eb</param></service></servicedata>

BIN
cargo-c-0.10.3~git0.ee7d7ef.obscpio (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:573fb69567f880a5be20235094a52c2716e7077e253d69bd0852ce7ea39fcac9
size 27164

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Tue Aug 27 09:20:15 UTC 2024 - Enrico Belleri <kilgore.trout@idesmi.eu>
- Update to version 0.10.3~git0.ee7d7ef:
* Wire in the heuristics
* Implement heuristics for target-specific install paths
* Fix the generated header fingerprinting logic
* Make notice about missing windows debug files verbose-only
* Update dependencies
* Require cargo 0.80.0
- Use macros from cargo-packaging
- Remove cargo_config: contained in vendor.tar
- Remove cargo_audit service: now part of cargo_vendor
- Remove custom rustflags and let the macros set them instead
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jun 04 19:59:22 UTC 2024 - david.mulder@suse.com Tue Jun 04 19:59:22 UTC 2024 - david.mulder@suse.com

4
cargo-c.obsinfo Normal file
View File

@ -0,0 +1,4 @@
name: cargo-c
version: 0.10.3~git0.ee7d7ef
mtime: 1722315713
commit: ee7d7ef74b9c1fa00c6780da41a838752c76b3eb

View File

@ -17,10 +17,8 @@
# #
%global rustflags -Clink-arg=-Wl,-z,relro,-z,now -C debuginfo=2
Name: cargo-c Name: cargo-c
Version: 0.9.32~git0.56dfe34 Version: 0.10.3~git0.ee7d7ef
Release: 0 Release: 0
Summary: Helper to build and install c-like libraries from Rust Summary: Helper to build and install c-like libraries from Rust
License: MIT License: MIT
@ -29,11 +27,10 @@ Group: Development/Languages/Rust
URL: https://crates.io/crates/cargo-c URL: https://crates.io/crates/cargo-c
Source0: %{name}-%{version}.tar.xz Source0: %{name}-%{version}.tar.xz
Source1: vendor.tar.xz Source1: vendor.tar.xz
Source2: cargo_config
Source1000: README.suse-maint Source1000: README.suse-maint
BuildRequires: cargo BuildRequires: cargo >= 0.80.0
BuildRequires: pkgconfig(openssl) BuildRequires: pkgconfig(openssl)
BuildRequires: cargo-packaging
%description %description
The is a cargo applet to build and install C-ABI compatibile dynamic and static The is a cargo applet to build and install C-ABI compatibile dynamic and static
@ -46,20 +43,14 @@ software.
%prep %prep
%autosetup -a1 -p1 %autosetup -a1 -p1
install -d -m 0755 .cargo
cp %{SOURCE2} .cargo/config
%build %build
export RUSTFLAGS="%{rustflags}" %{cargo_build}
cargo build --offline --release
%install %install
export RUSTFLAGS="%{rustflags}" %{cargo_install}
cargo install --offline --root=%{buildroot}%{_prefix} --path .
find %{buildroot} -name .crates2.json -delete find %{buildroot} -name .crates2.json -delete
rm -rf %{buildroot}%{_datadir}/cargo/registry rm -rf %{buildroot}%{_datadir}/cargo/registry
rm %{buildroot}%{_prefix}/.crates.toml
%files %files
%license LICENSE %license LICENSE

View File

@ -1,5 +0,0 @@
[source.crates-io]
replace-with = "vendored-sources"
[source.vendored-sources]
directory = "vendor"

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:0423b170d373d65f6c953284df3a4ecd932c7ea6933e29504c1e19b34683bad6 oid sha256:08eec4a945e29ad9b1210fe3b34ce4e1a58862a0e913371c436eccd3e3aa82db
size 42712376 size 45553020