1
0
Adrian Schröter 2024-08-01 09:48:51 +00:00 committed by Git OBS Bridge
parent 2a1702ac97
commit ae78183415
7 changed files with 17 additions and 10 deletions

View File

@ -1,6 +1,6 @@
pkgname=obs-service-tar_scm
pkgver=0.10.44
pkgrel=0e17c8fe713cde54f74ce50e2a202cb6
pkgver=0.10.45
pkgrel=e8483e5ce57605cf659e6b440dfc607f
pkgdesc="Source Service for the OpenSUSE Build Service (OBS)"
arch=('any')
url="https://github.com/openSUSE/obs-service-tar_scm"

View File

@ -12,6 +12,6 @@
</service>
<service name="tar_scm">
<param name="url">https://github.com/openSUSE/obs-service-tar_scm.git</param>
<param name="changesrevision">0582501692edc36628091145ac58d264e2a6218e</param>
<param name="changesrevision">1eeef906ba81980c3ba7fed811d65f90b9402a73</param>
</service>
</servicedata>

View File

@ -1,6 +1,6 @@
Format: 1.0
Source: obs-service-tar-scm
Version: 0.10.44
Version: 0.10.45
Provides: obs-service-obs_scm, obs-service-tar, obs-service-gbp
Binary: obs-service-tar_scm
Maintainer: Adrian Schroeter <adrian@suse.de>

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:366dacd1f1ddb0487316ec71f5bbfe9f7fd5055ec9382702b5fe67328c465fbd
size 158216

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:604b071df301a053e0d845c0f223decaa358239b07317c0edb72dd7283011abd
size 157868

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu Aug 01 09:48:25 UTC 2024 - adrian@suse.de
- Update to version 0.10.45:
* [dist] fix shebang substitution in spec for py2
-------------------------------------------------------------------
Wed Jul 31 09:20:54 UTC 2024 - adrian@suse.de

View File

@ -119,8 +119,8 @@ Recommends: %{use_python}-keyrings.alt \
%define pkg_name obs-service-tar_scm
Name: %{pkg_name}%{nsuffix}
%define version_unconverted 0.10.44
Version: 0.10.44
%define version_unconverted 0.10.45
Version: 0.10.45
Release: 0
Summary: An OBS source service: create tar ball from svn/git/hg
License: GPL-2.0-or-later
@ -261,10 +261,11 @@ source artefacts (.dsc, .origin.tar.gz and .debian.tar.gz if non-native).
%install
%if %{without obs_scm_testsuite}
make install DESTDIR="%{buildroot}" PREFIX="%{_prefix}" SYSCFG="%{_sysconfdir}" PYTHON="%{python_path}" WITH_GBP="%{enable_gbp}"
%if %{with python3}
# Doing %%python3_fix_shebang_path old fashioned way for the backward compatibility
sed -i "1s@#\\!.*python\S*@#\\!$(realpath %__python3)@" \
%{buildroot}%{_prefix}/lib/obs/service/tar_scm
%endif
%else
# moved conditional to the top as it helps to have it all in one place and only rely on the bcond_with here.