1
0
forked from pool/osc
OBS User unknown 2009-01-22 17:18:46 +00:00 committed by Git OBS Bridge
parent 15b8c877ce
commit 311d2dcbd9
5 changed files with 154 additions and 22 deletions

View File

@ -1,3 +1,52 @@
osc (0.113-1) unstable; urgency=high
- update to r6097 (version 0.113):
- osc diff -rX:Y: the default is to return an unified diff (to get a pretty
diff use the --pretty option)
- osc rdiff: the default is to return a pretty diff (to get an unified diff use the --unified option)
- osc sr show --diff: the default is to return a pretty diff (to get an unified diff use the --unified option)
- osc getbinaries: optionally also download source rpms
- osc importsrcpkg: set the url in the package meta (bnc#458083)
- osc wipebinaries: added --expansion option
- added support for format strings like "%(project)s" and "%(package)s" which
can be used in the build-root config option. For example one could use a new
chroot for each package.
- osc updatepacmetafromspec: fix failure if %description is starting with newline (bnc#462869)
- catch OSError exceptions which might be raised by the subprocess module
- don't use a hardcoded path for the rpm binary otherwise it fails on
distributions like debian
- osc meta: be more verbose in case of failure (bnc#459292)
- osc mkpac: add info how to enable the package tracking feature (bnc#459288)
-- Peter Poeml <poeml@suse.de> Thu, 22 Jan 2009 12:00:00 +0200
osc (0.112-1) unstable; urgency=high
- update to r5880 (version 0.112):
important bugfix:
- osc deletepac: prevent recursive deletion of a whole project [bnc#458535]
- osc build: support more options: --icecream, --ccache, --with, --without
- osc build: --keep-pkgs also saves the src.rpm now
- osc build: small fix in debuginfo handling
- osc build: new armv7el arch for all binaries for up to ARMv7 EABI with VFP
-- Peter Poeml <poeml@suse.de> Fri, 12 Dez 2008 12:00:00 +0200
osc (0.111-1) unstable; urgency=high
- update to r5751 (version 0111):
- fix accidental truncation of .oscrc to 0 bytes
- fix osc's ignorance of the revision option (-r) for expanded links
- osc build: handle kiwi builds (local image build)
- osc build: cross build support
- osc build: support for ARMv5 EABI little endian arch added
- osc build: fixed detection of the build type (rpm or deb),
after change in the buildinfo
- osc build: build debuginfo packages if enabled in the
project/package meta (this partly fixes #421390)
-- Peter Poeml <poeml@suse.de> Fri, 28 Nov 2008 12:00:00 +0200
osc (0.110-1) unstable; urgency=high
- update to r5425 (version 0.110):

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9da984cd565a42e133f8aa542ebdd57cfc2520813fa285b01bbf2da81338136d
size 98346

3
osc-0.113.tar.gz Normal file
View File

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

View File

@ -1,3 +1,49 @@
-------------------------------------------------------------------
Thu Jan 22 17:35:38 CET 2009 - poeml@suse.de
- update to r6097 (version 0.113):
- osc diff -rX:Y: the default is to return an unified diff (to get a pretty
diff use the --pretty option)
- osc rdiff: the default is to return a pretty diff (to get an unified diff use the --unified option)
- osc sr show --diff: the default is to return a pretty diff (to get an unified diff use the --unified option)
- osc getbinaries: optionally also download source rpms
- osc importsrcpkg: set the url in the package meta (bnc#458083)
- osc wipebinaries: added --expansion option
- added support for format strings like "%(project)s" and "%(package)s" which
can be used in the build-root config option. For example one could use a new
chroot for each package.
- osc updatepacmetafromspec: fix failure if %description is starting with newline (bnc#462869)
- catch OSError exceptions which might be raised by the subprocess module
- don't use a hardcoded path for the rpm binary otherwise it fails on
distributions like debian
- osc meta: be more verbose in case of failure (bnc#459292)
- osc mkpac: add info how to enable the package tracking feature (bnc#459288)
-------------------------------------------------------------------
Fri Dec 12 11:26:56 CET 2008 - poeml@suse.de
- update to r5880 (version 0.112):
important bugfix:
- osc deletepac: prevent recursive deletion of a whole project [bnc#458535]
- osc build: support more options: --icecream, --ccache, --with, --without
- osc build: --keep-pkgs also saves the src.rpm now
- osc build: small fix in debuginfo handling
- osc build: new armv7el arch for all binaries for up to ARMv7 EABI with VFP
-------------------------------------------------------------------
Fri Nov 28 20:29:58 CET 2008 - poeml@suse.de
- update to r5751 (version 0.111):
- fix accidental truncation of .oscrc to 0 bytes
- fix osc's ignorance of the revision option (-r) for expanded links
- osc build: handle kiwi builds (local image build)
- osc build: cross build support
- osc build: support for ARMv5 EABI little endian arch added
- osc build: fixed detection of the build type (rpm or deb),
after change in the buildinfo
- osc build: build debuginfo packages if enabled in the
project/package meta (this partly fixes [bnc#421390])
-------------------------------------------------------------------
Fri Oct 24 17:28:27 CEST 2008 - poeml@suse.de

View File

@ -1,7 +1,7 @@
#
# spec file for package osc (Version 0.110)
# spec file for package osc (Version 0.113)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -20,7 +20,7 @@
Name: osc
BuildRequires: python-devel
Version: 0.110
Version: 0.113
Release: 1
Group: Development/Tools/Other
License: GPL v2 or later
@ -87,6 +87,43 @@ mkdir -p %{buildroot}/var/lib/osc-plugins
%doc README TODO NEWS
%changelog
* Thu Jan 22 2009 poeml@suse.de
- update to r6097 (version 0.113):
- osc diff -rX:Y: the default is to return an unified diff (to get a pretty
diff use the --pretty option)
- osc rdiff: the default is to return a pretty diff (to get an unified diff use the --unified option)
- osc sr show --diff: the default is to return a pretty diff (to get an unified diff use the --unified option)
- osc getbinaries: optionally also download source rpms
- osc importsrcpkg: set the url in the package meta (bnc#458083)
- osc wipebinaries: added --expansion option
- added support for format strings like "%%(project)s" and "%%(package)s" which
can be used in the build-root config option. For example one could use a new
chroot for each package.
- osc updatepacmetafromspec: fix failure if %%description is starting with newline (bnc#462869)
- catch OSError exceptions which might be raised by the subprocess module
- don't use a hardcoded path for the rpm binary otherwise it fails on
distributions like debian
- osc meta: be more verbose in case of failure (bnc#459292)
- osc mkpac: add info how to enable the package tracking feature (bnc#459288)
* Fri Dec 12 2008 poeml@suse.de
- update to r5880 (version 0.112):
important bugfix:
- osc deletepac: prevent recursive deletion of a whole project [bnc#458535]
- osc build: support more options: --icecream, --ccache, --with, --without
- osc build: --keep-pkgs also saves the src.rpm now
- osc build: small fix in debuginfo handling
- osc build: new armv7el arch for all binaries for up to ARMv7 EABI with VFP
* Fri Nov 28 2008 poeml@suse.de
- update to r5751 (version 0.111):
- fix accidental truncation of .oscrc to 0 bytes
- fix osc's ignorance of the revision option (-r) for expanded links
- osc build: handle kiwi builds (local image build)
- osc build: cross build support
- osc build: support for ARMv5 EABI little endian arch added
- osc build: fixed detection of the build type (rpm or deb),
after change in the buildinfo
- osc build: build debuginfo packages if enabled in the
project/package meta (this partly fixes [bnc#421390])
* Fri Oct 24 2008 poeml@suse.de
- update to r5425 (version 0.110):
- osc build: no working copy needed anymore when building a local
@ -436,7 +473,7 @@ mkdir -p %{buildroot}/var/lib/osc-plugins
- meta: remove notion of non-implemented --create switch. give
example for meta pkg usage
- search: add --repos-baseurl option
* Thu Aug 09 2007 poeml@suse.de
* Wed Aug 08 2007 poeml@suse.de
- update to r1947:
- commit: fixed possible "UnboundLocalError" with -m. Thanks to
judas_iscariote for spotting this issue, and Marcus for fixing
@ -595,7 +632,7 @@ mkdir -p %{buildroot}/var/lib/osc-plugins
- update to r1657:
- rebuildpac: fix mistyped repository parameter
- build: add --userootforbuild option
* Sun May 13 2007 poeml@suse.de
* Sat May 12 2007 poeml@suse.de
- update to r1655:
- build: fix bug introduced with r1652: for the buildinfo, POST
the specfile's content, not its name...
@ -610,7 +647,7 @@ mkdir -p %{buildroot}/var/lib/osc-plugins
the backend
- use new API route for downloading binaries also in configured URLs
- make deletepac work again
* Sat May 05 2007 poeml@suse.de
* Fri May 04 2007 poeml@suse.de
- update to r1635:
- version 0.96
- following suggestions by Christian Boltz and Michal Marek, osc
@ -669,7 +706,7 @@ mkdir -p %{buildroot}/var/lib/osc-plugins
- build: remove debug print of tempfile name
- README: add info about dependencies of osc python module
- further the osc buildroot configuration example
* Fri Mar 30 2007 poeml@suse.de
* Thu Mar 29 2007 poeml@suse.de
- update to r1551:
- update: when updating multiple packages, print each package name
- build:
@ -770,7 +807,7 @@ mkdir -p %{buildroot}/var/lib/osc-plugins
- initial support for local builds (subcommand 'build')
- new subcommands buildconfig, buildinfo, repos
- better error handling
* Mon Jun 26 2006 poeml@suse.de
* Sun Jun 25 2006 poeml@suse.de
- update to svn r534
- fix 'rebuildpac' command to not show raw xml
- editmeta:
@ -779,12 +816,12 @@ mkdir -p %{buildroot}/var/lib/osc-plugins
- fix updatepacmetafromspec to cope with subpackages during parsing
- code cleanup
- remove requirement on pyxml package
* Thu Jun 22 2006 poeml@suse.de
* Wed Jun 21 2006 poeml@suse.de
- update to svn r528:
- add support for streaming build log (thanks to Christoph Thiel)
- don't try to merge binary files
- set mtime on files that have been fetched during merge
* Thu Jun 08 2006 poeml@suse.de
* Wed Jun 07 2006 poeml@suse.de
- update to svn r481:
- fix handling of filenames with '+' signs [#153725, #181593]
- before committing, make sure that the working copy is up to date
@ -794,14 +831,14 @@ mkdir -p %{buildroot}/var/lib/osc-plugins
- fix merge on 'update', if osc is called from another directory
- don't fail on 'resolve' when the working copy is in a newer rev already
- add 'commit' as command alias for 'ci/checkin'
* Tue Jun 06 2006 poeml@suse.de
* Mon Jun 05 2006 poeml@suse.de
- update to svn r469:
- work around ruby on rails issue, which swallows '+' signs in filenames in PUT
requests [#153725, 181593]
- before committing, make sure that the working copy is up to date (added
show_rev() function)
- add 'commit' as subcommand alias for 'ci/checkin'
* Sat Jun 03 2006 poeml@suse.de
* Fri Jun 02 2006 poeml@suse.de
- update to svn r466:
- add 'repourls' subcommand
- display reason for new build status is 'broken'
@ -811,14 +848,14 @@ mkdir -p %{buildroot}/var/lib/osc-plugins
- fix the profiling wrapper script
- make 'resolved' more robust
- set a User-agent
* Tue May 30 2006 poeml@suse.de
* Mon May 29 2006 poeml@suse.de
- update to 0.6:
- diff bugfix: sometimes displayed diff against obsolete files
- update bugfixes: fix update of working copy when adding a file from upstream
which is missing locally; fix update in directory with unmodified files:
don't try to merge if upstream file wasn't changed at all
- add: make it faster
* Tue May 23 2006 poeml@suse.de
* Mon May 22 2006 poeml@suse.de
- update to 0.5:
- help :-)
- fix status letter for files merged on update (in analogy to svn , it is
@ -829,7 +866,7 @@ mkdir -p %{buildroot}/var/lib/osc-plugins
- bug in 'resolved' command fixed, which wouldn't clear the conflict state of a file
- fix update in directory with unmodified files: don't try to merge if upstream
file wasn't changed at all
* Mon May 22 2006 poeml@suse.de
* Sun May 21 2006 poeml@suse.de
- don't fail on undeleting non-existing _to_be_deleted file
- update to 0.4:
- allow 'up' inside a project directory (will automatically pull in all new
@ -839,17 +876,17 @@ mkdir -p %{buildroot}/var/lib/osc-plugins
- add diff3 merge support. Locally modified files are merged with upstream changes
if possible, and go into Conflict state if that fails.
- add 'resolved' command to be used after manual merging.
* Fri May 19 2006 poeml@suse.de
* Thu May 18 2006 poeml@suse.de
- update to 0.3:
- use the new file metadata, which provides checksum, size and mtime
- faster 'status', 'update', 'diff'
- improve argument handling, now e.g. 'osc up *' is possible
- on first usage, ask for username and password and store them in .oscrc
(.netrc can still be used)
* Mon May 15 2006 poeml@suse.de
* Sun May 14 2006 poeml@suse.de
- this package is not noarch
* Fri May 12 2006 poeml@suse.de
* Thu May 11 2006 poeml@suse.de
- don't use --record-rpm option on setup.py, only SUSE has it
- define py_sitelib macro
* Wed May 10 2006 poeml@suse.de
* Tue May 09 2006 poeml@suse.de
- created package (version 0.2)