Accepting request 1004076 from openSUSE:Tools
Automatic submission by obs-autosubmit OBS-URL: https://build.opensuse.org/request/show/1004076 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/obs-service-tar_scm?expand=0&rev=72
This commit is contained in:
commit
92346664ff
2
PKGBUILD
2
PKGBUILD
@ -1,5 +1,5 @@
|
||||
pkgname=obs-service-tar_scm
|
||||
pkgver=0.10.30.1641990734.bdad8f9
|
||||
pkgver=0.10.32.1662712308.31d1884
|
||||
pkgrel=0
|
||||
pkgdesc="Source Service for the OpenSUSE Build Service (OBS)"
|
||||
arch=('any')
|
||||
|
@ -9,4 +9,4 @@
|
||||
<param name="url">git://github.com/openSUSE/obs-service-tar_scm.git</param>
|
||||
<param name="changesrevision">85bfc3fabb06212b49a389afb3310bfbf2996913</param></service><service name="tar_scm">
|
||||
<param name="url">https://github.com/openSUSE/obs-service-tar_scm.git</param>
|
||||
<param name="changesrevision">bdad8f941c0455ea30970aaee53b9e47ba26c93c</param></service></servicedata>
|
||||
<param name="changesrevision">31d1884bdda3cff616826e8780c37389a791b21d</param></service></servicedata>
|
@ -1,6 +1,6 @@
|
||||
Format: 1.0
|
||||
Source: obs-service-tar-scm
|
||||
Version: 0.10.30.1641990734.bdad8f9
|
||||
Version: 0.10.32.1662712308.31d1884
|
||||
Provides: obs-service-obs_scm, obs-service-tar
|
||||
Binary: obs-service-tar_scm
|
||||
Maintainer: Adrian Schroeter <adrian@suse.de>
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:94062fab13deb58f0f552f4420d7a7aebc5992b0cc05a3dddc1a9b6e57b15de6
|
||||
size 91343
|
3
obs-service-tar_scm-0.10.32.1662712308.31d1884.tar.gz
Normal file
3
obs-service-tar_scm-0.10.32.1662712308.31d1884.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:59106a62a67fb1e25449f520d105eb4867a2835657f63808a3168540da1a05fd
|
||||
size 92380
|
@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 09 09:09:06 UTC 2022 - FSchreiner@suse.com
|
||||
|
||||
- Update to version 0.10.32.1662712308.31d1884:
|
||||
* [dist] added Requires to python_path
|
||||
* improve tar service to handle multiple obsinfo files to create tarball from obscpio
|
||||
* new ENV 'TAR_SCM_SKIP_CLEANUP' to make test development/debugging easier
|
||||
* staple pylint version lower than 2.14 because of breaking changes in config
|
||||
* do not use python mock
|
||||
* fix pylint errors in commontests.py
|
||||
* Fixed testing
|
||||
* use extra cache dir for partial clone
|
||||
* fix cache update in case of partial clone
|
||||
* disable partial clone when subdir is set
|
||||
* do not set default subdir to '.'
|
||||
* fixes to pass pylint
|
||||
* enable partial clone feature in git scm
|
||||
* partial clone feature
|
||||
* simplify locking to avoid race conditions
|
||||
* TarSCM.cli: set some defaults to make usage in testing easier
|
||||
* unlink .lock file after unlocking the cache
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 13 11:33:51 UTC 2022 - FSchreiner@suse.com
|
||||
|
||||
- Update to version 0.10.30.1641993356.a87e7af:
|
||||
* Simplifiy conditions for all rhel like distros
|
||||
* Changed gendered pronoun to be gender neutral
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 12 12:45:18 UTC 2022 - FSchreiner@suse.com
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
#
|
||||
|
||||
|
||||
%if 0%{?fedora_version}%{?centos_version}%{?rhel_version}%{?almalinux}
|
||||
%if 0%{?fedora_version}%{?rhel}
|
||||
%define _pkg_base %nil
|
||||
%else
|
||||
%define _pkg_base -base
|
||||
@ -40,7 +40,7 @@
|
||||
ExclusiveArch: skip-build
|
||||
%endif
|
||||
|
||||
%if 0%{?suse_version} >= 1315 || 0%{?fedora_version} >= 29 || 0%{?centos_version} >= 800 || 0%{?rhel_version} >= 800 || 0%{?almalinux} >= 8
|
||||
%if 0%{?suse_version} >= 1315 || 0%{?fedora_version} >= 29 || 0%{?rhel} >= 8
|
||||
%bcond_without python3
|
||||
%else
|
||||
%bcond_with python3
|
||||
@ -71,14 +71,14 @@ ExclusiveArch: skip-build
|
||||
%endif
|
||||
%endif
|
||||
|
||||
%if 0%{?fedora_version} || 0%{?rhel_version} || 0%{?centos_version} || 0%{?scientificlinux_version} || 0%{?almalinux}
|
||||
%if 0%{?fedora_version} >= 29 || 0%{?rhel_version} >= 800 || 0%{?centos_version} >= 800 || 0%{?almalinux} >= 8
|
||||
%if 0%{?fedora_version} || 0%{?rhel}
|
||||
%if 0%{?fedora_version} >= 29 || 0%{?rhel} >= 8
|
||||
%define pyyaml_package %{use_python}-PyYAML
|
||||
%else
|
||||
%define pyyaml_package PyYAML
|
||||
%endif
|
||||
|
||||
%if 0%{?fedora_version} >= 24 || 0%{?rhel_version} >= 800 || 0%{?centos_version} >= 800 || 0%{?almalinux} >= 8
|
||||
%if 0%{?fedora_version} >= 24 || 0%{?rhel} >= 8
|
||||
%define locale_package glibc-langpack-en
|
||||
%else
|
||||
%define locale_package glibc-common
|
||||
@ -92,7 +92,7 @@ ExclusiveArch: skip-build
|
||||
|
||||
# Mageia 8 has package names python-*
|
||||
# but requires python3 in shebang
|
||||
%if 0%{?mageia} >= 8 || 0%{?centos_version} >= 800 || 0%{?rhel_version} >= 800 || 0%{?almalinux} >= 8
|
||||
%if 0%{?mageia} >= 8 || 0%{?rhel} >= 8
|
||||
%define python_path %{_bindir}/python3
|
||||
%else
|
||||
%define python_path %{_bindir}/%{use_python}
|
||||
@ -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.30.1641990734.bdad8f9
|
||||
Version: 0.10.30.1641990734.bdad8f9
|
||||
%define version_unconverted 0.10.32.1662712308.31d1884
|
||||
Version: 0.10.32.1662712308.31d1884
|
||||
Release: 0
|
||||
Summary: An OBS source service: create tar ball from svn/git/hg
|
||||
License: GPL-2.0-or-later
|
||||
@ -137,13 +137,15 @@ BuildRequires: %{locale_package}
|
||||
BuildRequires: %{pkg_name} = %{version}
|
||||
BuildRequires: %{use_python}-keyring
|
||||
BuildRequires: %{use_python}-keyrings.alt
|
||||
BuildRequires: %{use_python}-mock
|
||||
BuildRequires: %{use_python}-six
|
||||
BuildRequires: %{use_python}-unittest2
|
||||
BuildRequires: bzr
|
||||
BuildRequires: git-core
|
||||
BuildRequires: mercurial
|
||||
BuildRequires: subversion
|
||||
%if !%{with python3}
|
||||
BuildRequires: %{use_python}-mock
|
||||
%endif
|
||||
%endif
|
||||
|
||||
BuildRequires: %{locale_package}
|
||||
@ -169,6 +171,7 @@ BuildRequires: python >= 2.6
|
||||
#
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildArch: noarch
|
||||
Requires: %{python_path}
|
||||
|
||||
%description
|
||||
This is a source service for openSUSE Build Service.
|
||||
|
Loading…
Reference in New Issue
Block a user