- Update to version 0.7.0.1477858520.51a62fb:
* added locking for cachedir in jailed mode * removed setup_tracking_branches and '--dissociate' * inital version of TarSCM classes * scm_object generation moved to singletask * FETCH_UPSTREAM_COMMANDS into classes * moved update_cache_* to classes * moved detect_version into classes and refactored calls of get_timestamp_* * moved get_timestamp functions into scm classes * git_ref_exists -> TarSCM.git._ref_exists * fetch_upstream_git_submodules -> fetch_submodules to get rid of exceptions for git * just moved some functions for better overview * refactor of detect_changes into classes * url as attribute of TarSCM.scm * run_cmd and safe_run moved into class helpers * combine os.path.join statement * refactoring fetch_upstream to be part of TarSCM.scm * new classes for archives * common method 'get_current_commit' to get rid of execption for git * refactored detect_changes to get rid of changesgenerate exception * get_repocachedir -> TarSCM.scm * revision, repodir and repocachedir as attribute for TarSCM.<scm> * new class TarSCM.cli to make testing easier * testing script name more reliable * fixed arguments for singletask in case of snapcraft * refactored snapcraft code + first tests for snapcraft * added testcase for snapcraft finalize * split classes into serveral files * more testing for TarSCM.tasks * clone_dir/repodir/arch_dir(tar_dir) now attributes of scm objects OBS-URL: https://build.opensuse.org/package/show/openSUSE:Tools/obs-service-tar_scm?expand=0&rev=135
This commit is contained in:
parent
80e16b905f
commit
33f10f567a
4
_service
4
_service
@ -1,11 +1,11 @@
|
||||
<services>
|
||||
<service name="tar_scm" mode="disabled">
|
||||
<param name="url">git://github.com/adrianschroeter/obs-service-tar_scm.git</param>
|
||||
<param name="url">git://github.com/M0ses/obs-service-tar_scm.git</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="exclude">.git</param>
|
||||
<param name="version">git-master</param>
|
||||
<param name="versionformat">0.7.0.%ct.%h</param>
|
||||
<param name="revision">master</param>
|
||||
<param name="revision">nextRev</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
</service>
|
||||
<service name="recompress" mode="disabled">
|
||||
|
@ -3,4 +3,4 @@
|
||||
<param name="url">git://github.com/adrianschroeter/obs-service-tar_scm.git</param>
|
||||
<param name="changesrevision">d44d677cf006d48b261f5e2054ba2126bed64ae1</param></service><service name="tar_scm">
|
||||
<param name="url">git://github.com/M0ses/obs-service-tar_scm.git</param>
|
||||
<param name="changesrevision">e88eed18bdbdcb1ce2c40d051183669f48b9706f</param></service></servicedata>
|
||||
<param name="changesrevision">51a62fb3172c6134d03ea8fa5b0be25996693d4e</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:af381e6d3bd5b382526267a8223a3e8370b980853aef2aaee25fbbc82f14febc
|
||||
size 46271
|
3
obs-service-tar_scm-0.7.0.1477858520.51a62fb.tar.gz
Normal file
3
obs-service-tar_scm-0.7.0.1477858520.51a62fb.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:633b8143b270c934a6bc8aa6f614031323640612671f6e1db792ecea6613be87
|
||||
size 46820
|
@ -1,3 +1,51 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 30 20:48:49 UTC 2016 - opensuse-packaging@opensuse.org
|
||||
|
||||
- Update to version 0.7.0.1477858520.51a62fb:
|
||||
* added locking for cachedir in jailed mode
|
||||
* removed setup_tracking_branches and '--dissociate'
|
||||
* inital version of TarSCM classes
|
||||
* scm_object generation moved to singletask
|
||||
* FETCH_UPSTREAM_COMMANDS into classes
|
||||
* moved update_cache_* to classes
|
||||
* moved detect_version into classes and refactored calls of get_timestamp_*
|
||||
* moved get_timestamp functions into scm classes
|
||||
* git_ref_exists -> TarSCM.git._ref_exists
|
||||
* fetch_upstream_git_submodules -> fetch_submodules to get rid of exceptions for git
|
||||
* just moved some functions for better overview
|
||||
* refactor of detect_changes into classes
|
||||
* url as attribute of TarSCM.scm
|
||||
* run_cmd and safe_run moved into class helpers
|
||||
* combine os.path.join statement
|
||||
* refactoring fetch_upstream to be part of TarSCM.scm
|
||||
* new classes for archives
|
||||
* common method 'get_current_commit' to get rid of execption for git
|
||||
* refactored detect_changes to get rid of changesgenerate exception
|
||||
* get_repocachedir -> TarSCM.scm
|
||||
* revision, repodir and repocachedir as attribute for TarSCM.<scm>
|
||||
* new class TarSCM.cli to make testing easier
|
||||
* testing script name more reliable
|
||||
* fixed arguments for singletask in case of snapcraft
|
||||
* refactored snapcraft code + first tests for snapcraft
|
||||
* added testcase for snapcraft finalize
|
||||
* split classes into serveral files
|
||||
* more testing for TarSCM.tasks
|
||||
* clone_dir/repodir/arch_dir(tar_dir) now attributes of scm objects
|
||||
* test case for save_run
|
||||
* major refactor of git cache handling
|
||||
* consolidation of archive.obscpio and archive.tar parameters
|
||||
* next test cases
|
||||
* sytnax fix for "tar" service
|
||||
* fixed tests for tar
|
||||
* unset CACHEDIRECTORY env variable in unit tests
|
||||
* update atime/mtime of repocachedir if already exists
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 30 20:45:47 UTC 2016 - opensuse-packaging@opensuse.org
|
||||
|
||||
- Update to version 0.7.0.1474270818.3e05f80:
|
||||
*
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 27 11:23:36 UTC 2016 - opensuse-packaging@opensuse.org
|
||||
|
||||
|
@ -20,18 +20,18 @@
|
||||
%define seperate_build 0
|
||||
|
||||
%if "%seperate_build" == "1"
|
||||
%define version_unconverted 0.7.0.1477567374.d44d677
|
||||
%define version_unconverted 0.7.0.1477858520.51a62fb
|
||||
|
||||
Name: obs-service-obs_scm
|
||||
%else
|
||||
%define version_unconverted 0.7.0.1477567374.d44d677
|
||||
%define version_unconverted 0.7.0.1477858520.51a62fb
|
||||
|
||||
Name: obs-service-%{service}
|
||||
#Obsoletes: obs-service-obs_scm
|
||||
Provides: obs-service-obs_scm = %version-%release
|
||||
%endif
|
||||
Provides: obs-service-tar = %version-%release
|
||||
Version: 0.7.0.1477567374.d44d677
|
||||
Version: 0.7.0.1477858520.51a62fb
|
||||
Release: 0
|
||||
Summary: An OBS source service: checkout or update a tar ball from svn/git/hg
|
||||
License: GPL-2.0+
|
||||
|
Loading…
Reference in New Issue
Block a user