- Update to version 0.9.2.1537788075.fefaa74:

* check name/version option in obsinfo for slashes
  * check url for remote url
  * check symlinks in subdir parameter
  * check filename for slashes
  * disable follow_symlinks in extract feature
  * run download_files in appimage and snapcraft case
  * check --extract file path for parent dir
  * changed os.removedirs -> shutil.rmtree
  * Adding information regarding the *package-metadata* option for the *tar* service The tar service is highly useful in combination with the *obscpio* service. After the fix for the metadata for the latter one, it is important to inform the users of the *tar* service that metadata is kept only if the flag *package-metadata* is enabled. Add the flag to the .service file for mentioning that.
  * Allow metadata packing for CPIO archives when desired As of now, metadata are always excluded from *obscpio* packages. This is because the *package-metadata* flag is ignored; this change (should) make *obscpio* aware of it.
  * Fix parameter descriptions

OBS-URL: https://build.opensuse.org/package/show/openSUSE:Tools/obs-service-tar_scm?expand=0&rev=210
This commit is contained in:
Frank Schreiner 2018-09-24 12:23:25 +00:00 committed by Git OBS Bridge
parent 2b31e73c7a
commit 8f04de3070
8 changed files with 22 additions and 12 deletions

View File

@ -1,5 +1,5 @@
pkgname=obs-service-tar_scm
pkgver=0.9.1.1537341862.5348694
pkgver=0.9.2.1537788075.fefaa74
pkgrel=0
pkgdesc="Source Service for the OpenSUSE Build Service (OBS)"
arch=('any')

View File

@ -5,4 +5,4 @@
<param name="url">git://github.com/M0ses/obs-service-tar_scm.git</param>
<param name="changesrevision">b742dfc0e12755cf306a95439494b5bdde7c0c61</param></service><service name="tar_scm">
<param name="url">git://github.com/openSUSE/obs-service-tar_scm.git</param>
<param name="changesrevision">5348694c0ecd2303ec65ebe875d6fde140185d83</param></service></servicedata>
<param name="changesrevision">fefaa74facd1687b683f51ff092651056cc11152</param></service></servicedata>

View File

@ -1,6 +1,6 @@
Format: 1.0
Source: obs-service-tar-scm
Version: 0.9.1.1537341862.5348694
Version: 0.9.2.1537788075.fefaa74
Provides: obs-service-obs_scm, obs-service-tar
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:db0f80adc33c27ee3e87c55ad84cf5e70897a6ddf7db3b53bcebb70f6363e9fd
size 267276

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:66f8c0d6c0750b59a7c838166a4e9846027752dc064d9876bf83f73fbec10602
size 278540

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Sep 24 12:22:40 UTC 2018 - opensuse-packaging@opensuse.org
- Update to version 0.9.2.1537788075.fefaa74:
* check name/version option in obsinfo for slashes
* check url for remote url
* check symlinks in subdir parameter
* check filename for slashes
* disable follow_symlinks in extract feature
-------------------------------------------------------------------
Wed Sep 19 08:18:36 UTC 2018 - Adrian Schröter <adrian@suse.de>

View File

@ -1,5 +1,5 @@
name: obs-service-tar_scm
version: 0.9.1.1537341862.5348694
mtime: 1537341862
commit: 5348694c0ecd2303ec65ebe875d6fde140185d83
version: 0.9.2.1537788075.fefaa74
mtime: 1537788075
commit: fefaa74facd1687b683f51ff092651056cc11152

View File

@ -19,8 +19,8 @@
%bcond_without obs_scm_testsuite
Name: obs-service-tar_scm
%define version_unconverted 0.9.1.1537341862.5348694
Version: 0.9.1.1537341862.5348694
%define version_unconverted 0.9.2.1537788075.fefaa74
Version: 0.9.2.1537788075.fefaa74
Release: 0
Summary: An OBS source service: create tar ball from svn/git/hg
License: GPL-2.0-or-later
@ -35,7 +35,7 @@ BuildRequires: bzr
BuildRequires: git-core
BuildRequires: mercurial
BuildRequires: subversion
%if 0%{?fedora_version} || 0%{?rhel_version} || 0%{?centos_version} || 0%{?mageia}
%if 0%{?fedora_version} || 0%{?rhel_version} || 0%{?centos_version}
%define py_compile(O) \
find %1 -name '*.pyc' -exec rm -f {} \\; \
python -c "import sys, os, compileall; br='%{buildroot}'; compileall.compile_dir(sys.argv[1], ddir=br and (sys.argv[1][len(os.path.abspath(br)):]+'/') or None)" %1 \