From b6f9b3ad74aeddeadecd57f99895c0652cd4644cb35501263e2270e3b7f3054f Mon Sep 17 00:00:00 2001 From: OBS User unknown Date: Wed, 11 Jul 2007 11:33:21 +0000 Subject: [PATCH] OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/osc?expand=0&rev=12 --- debian.changelog | 28 ++++++++++++++++++++++++++++ osc-0.96.tar.gz | 3 --- osc-0.97.tar.gz | 3 +++ osc.changes | 31 +++++++++++++++++++++++++++++++ osc.spec | 34 +++++++++++++++++++++++++++++----- 5 files changed, 91 insertions(+), 8 deletions(-) delete mode 100644 osc-0.96.tar.gz create mode 100644 osc-0.97.tar.gz diff --git a/debian.changelog b/debian.changelog index 56bca50..ee38dd3 100644 --- a/debian.changelog +++ b/debian.changelog @@ -1,3 +1,31 @@ +osc (0.97-1) unstable; urgency=high + + * update to r1825: + - version 0.97 + - added initial revision handling: + - extended "osc co prj pac" to checkout a specific revision of pac + - extended "osc up" to update to a specific revision + - extended "osc diff" to diff the working copy against a + specific revision on the server. NOTE: comparing two + server-side revisions (osc diff -r 11:12) is currently + not supported! + - addremove: ignore foo.rXX, foo.mine for files which are in 'C' state + - wipebinaries: allow to wipe all binaries of packages for which + the build is disabled + - updatepacmetafromspec scans for spec files automatically; also, + added a --specfile option. + - load subcommands from /var/lib/osc-plugins/ or ~/.osc-plugins/ + + -- Peter Poeml Wed, 11 Jul 2007 00:00:00 +0200 + +osc (0.96-10) unstable; urgency=high + + * update to r1794: + - rm: don't allow to mark files as deleted which are not under + version control + + -- Peter Poeml Fri, 29 May 2007 00:00:00 +0200 + osc (0.96-9) unstable; urgency=high * update to r1792: diff --git a/osc-0.96.tar.gz b/osc-0.96.tar.gz deleted file mode 100644 index 4e4099e..0000000 --- a/osc-0.96.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4c158ad195497464da17bb2079050e0d7b3f4b96ca63c5d6933b2688747a0135 -size 54084 diff --git a/osc-0.97.tar.gz b/osc-0.97.tar.gz new file mode 100644 index 0000000..8b3522f --- /dev/null +++ b/osc-0.97.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:190398c8a04f7a1ca4bb6ac8ca5a17eb155e7482d81b5af718f3e36c340ef862 +size 56628 diff --git a/osc.changes b/osc.changes index 1a88d50..77782ad 100644 --- a/osc.changes +++ b/osc.changes @@ -1,3 +1,34 @@ +------------------------------------------------------------------- +Wed Jul 11 11:20:24 CEST 2007 - poeml@suse.de + +- update to r1825: + - version 0.97 + - added initial revision handling: + - extended "osc co prj pac" to checkout a specific revision of pac + - extended "osc up" to update to a specific revision + - extended "osc diff" to diff the working copy against a + specific revision on the server. NOTE: comparing two + server-side revisions (osc diff -r 11:12) is currently + not supported! + - addremove: ignore foo.rXX, foo.mine for files which are in 'C' state + - wipebinaries: allow to wipe all binaries of packages for which + the build is disabled + - updatepacmetafromspec scans for spec files automatically; also, + added a --specfile option. + - load subcommands from /var/lib/osc-plugins/ or ~/.osc-plugins/ + +------------------------------------------------------------------- +Fri Jun 29 16:05:45 CEST 2007 - poeml@suse.de + +- add /var/lib/osc-plugins to the filelist + +------------------------------------------------------------------- +Fri Jun 29 14:05:00 CEST 2007 - poeml@suse.de + +- update to r1794: + - rm: don't allow to mark files as deleted which are not under + version control + ------------------------------------------------------------------- Thu Jun 28 16:19:07 CEST 2007 - poeml@suse.de diff --git a/osc.spec b/osc.spec index ce75f14..a302ebc 100644 --- a/osc.spec +++ b/osc.spec @@ -1,5 +1,5 @@ # -# spec file for package osc (Version 0.96) +# spec file for package osc (Version 0.97) # # Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -12,13 +12,13 @@ Name: osc BuildRequires: python-devel -Version: 0.96 -Release: 27 +Version: 0.97 +Release: 1 Group: Development/Tools/Other -License: GNU General Public License (GPL) +License: GPL v2 or later BuildRoot: %{_tmppath}/%{name}-%{version}-build URL: https://forgesvn1.novell.com/svn/opensuse/trunk/buildservice/src/clientlib/python/osc/ -# v=0.96; svn export https://forgesvn1.novell.com/svn/opensuse/trunk/buildservice/src/clientlib/python/osc osc-$v; tar czf osc-$v.tar.gz osc-$v +# v=0.97; svn export https://forgesvn1.novell.com/svn/opensuse/trunk/buildservice/src/clientlib/python/osc osc-$v; tar czf osc-$v.tar.gz osc-$v Source: osc-%{version}.tar.gz Summary: openSUSE (build service) commander Requires: python-urlgrabber @@ -62,6 +62,7 @@ CFLAGS="%{optflags}" \ %install %{__python} setup.py install --prefix=%{_prefix} --root %{buildroot} ln -s osc-wrapper.py %{buildroot}/%{_bindir}/osc +mkdir -p %{buildroot}/var/lib/osc-plugins %clean %{__rm} -rf %{buildroot} @@ -70,9 +71,32 @@ ln -s osc-wrapper.py %{buildroot}/%{_bindir}/osc %defattr(-,root,root) %{_bindir}/osc* %{python_sitelib}/* +%dir /var/lib/osc-plugins %doc README TODO NEWS %changelog +* Wed Jul 11 2007 - poeml@suse.de +- update to r1825: + - version 0.97 + - added initial revision handling: + - extended "osc co prj pac" to checkout a specific revision of pac + - extended "osc up" to update to a specific revision + - extended "osc diff" to diff the working copy against a + specific revision on the server. NOTE: comparing two + server-side revisions (osc diff -r 11:12) is currently + not supported! + - addremove: ignore foo.rXX, foo.mine for files which are in 'C' state + - wipebinaries: allow to wipe all binaries of packages for which + the build is disabled + - updatepacmetafromspec scans for spec files automatically; also, + added a --specfile option. + - load subcommands from /var/lib/osc-plugins/ or ~/.osc-plugins/ +* Fri Jun 29 2007 - poeml@suse.de +- add /var/lib/osc-plugins to the filelist +* Fri Jun 29 2007 - poeml@suse.de +- update to r1794: + - rm: don't allow to mark files as deleted which are not under + version control * Thu Jun 28 2007 - poeml@suse.de - update to r1792: - linkpac: make this osc subcommand work again: sync metadata if