This commit is contained in:
parent
2d4e91a532
commit
6dd1354266
@ -1,3 +1,32 @@
|
||||
osc (0.96-2) unstable; urgency=high
|
||||
* update to r1644:
|
||||
- don't allow to delete projects, as long it is not implemented in
|
||||
the backend
|
||||
- use new API route for downloading binaries also in configured URLs
|
||||
- make deletepac work again
|
||||
|
||||
-- Peter Poeml <poeml@suse.de> Tue, 8 May 2007 00:00:00 +0200
|
||||
|
||||
osc (0.96-1) unstable; urgency=high
|
||||
* update to r1635:
|
||||
- version 0.96
|
||||
- following suggestions by Christian Boltz and Michal Marek, osc
|
||||
now memorizes where a working copy was checked out from, saving
|
||||
the api server url to .osc/_apiurl.
|
||||
- implement 'info' subcommand
|
||||
- buildhistory works again
|
||||
- copypac: implement package copy from one buildservice instance to another
|
||||
(--to-apiurl option)
|
||||
- build:
|
||||
- rename --prefer-pacs option to --prefer-pkgs
|
||||
- implement --keep-pkgs option
|
||||
- call rpm command for preferred rpms with --nosignature --nodigest
|
||||
- improve key import instructions after suggestion by Michael Wolf
|
||||
- the results subcommand now handles multiple <working copy> arguments
|
||||
- use the new api routes in all places
|
||||
|
||||
-- Peter Poeml <poeml@suse.de> Sat, 5 May 2007 00:00:00 +0200
|
||||
|
||||
osc (0.95-2) unstable; urgency=high
|
||||
* update to r1626:
|
||||
- build:
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7b66fd97b66e56a1c718d474a307061738a75e64cc023a174e4c83f16cc14497
|
||||
size 52110
|
3
osc-0.96.tar.gz
Normal file
3
osc-0.96.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dcf66f9beb203d90bf8585502a08d459c4b214a2bc4ee709a9b2fdfc6bf4b66d
|
||||
size 53411
|
29
osc.changes
29
osc.changes
@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue May 8 12:22:47 CEST 2007 - poeml@suse.de
|
||||
|
||||
- update to r1644:
|
||||
- don't allow to delete projects, as long it is not implemented in
|
||||
the backend
|
||||
- use new API route for downloading binaries also in configured URLs
|
||||
- make deletepac work again
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat May 5 00:02:55 CEST 2007 - poeml@suse.de
|
||||
|
||||
- update to r1635:
|
||||
- version 0.96
|
||||
- following suggestions by Christian Boltz and Michal Marek, osc
|
||||
now memorizes where a working copy was checked out from, saving
|
||||
the api server url to .osc/_apiurl.
|
||||
- implement 'info' subcommand
|
||||
- buildhistory works again
|
||||
- copypac: implement package copy from one buildservice instance to another
|
||||
(--to-apiurl option)
|
||||
- build:
|
||||
- rename --prefer-pacs option to --prefer-pkgs
|
||||
- implement --keep-pkgs option
|
||||
- call rpm command for preferred rpms with --nosignature --nodigest
|
||||
- improve key import instructions after suggestion by Michael Wolf
|
||||
- the results subcommand now handles multiple <working copy> arguments
|
||||
- use the new api routes in all places
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed May 2 20:20:12 CEST 2007 - poeml@suse.de
|
||||
|
||||
|
31
osc.spec
31
osc.spec
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package osc (Version 0.95)
|
||||
# spec file for package osc (Version 0.96)
|
||||
#
|
||||
# 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.95
|
||||
Release: 4
|
||||
Version: 0.96
|
||||
Release: 1
|
||||
Group: Development/Tools/Other
|
||||
License: GNU General Public License (GPL)
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
URL: https://forgesvn1.novell.com/svn/opensuse/trunk/buildservice/src/clientlib/python/osc/
|
||||
# v=0.95; 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.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
|
||||
Source: osc-%{version}.tar.gz
|
||||
Summary: openSUSE (build service) commander
|
||||
%if %{?suse_version:%suse_version}%{?!suse_version:1} < 1020
|
||||
@ -63,6 +63,29 @@ ln -s osc-wrapper.py %{buildroot}/%{_bindir}/osc
|
||||
%doc README TODO NEWS
|
||||
|
||||
%changelog
|
||||
* Tue May 08 2007 - poeml@suse.de
|
||||
- update to r1644:
|
||||
- don't allow to delete projects, as long it is not implemented in
|
||||
the backend
|
||||
- use new API route for downloading binaries also in configured URLs
|
||||
- make deletepac work again
|
||||
* Sat May 05 2007 - poeml@suse.de
|
||||
- update to r1635:
|
||||
- version 0.96
|
||||
- following suggestions by Christian Boltz and Michal Marek, osc
|
||||
now memorizes where a working copy was checked out from, saving
|
||||
the api server url to .osc/_apiurl.
|
||||
- implement 'info' subcommand
|
||||
- buildhistory works again
|
||||
- copypac: implement package copy from one buildservice instance to another
|
||||
(--to-apiurl option)
|
||||
- build:
|
||||
- rename --prefer-pacs option to --prefer-pkgs
|
||||
- implement --keep-pkgs option
|
||||
- call rpm command for preferred rpms with --nosignature --nodigest
|
||||
- improve key import instructions after suggestion by Michael Wolf
|
||||
- the results subcommand now handles multiple <working copy> arguments
|
||||
- use the new api routes in all places
|
||||
* Wed May 02 2007 - poeml@suse.de
|
||||
- update to r1626:
|
||||
- build: implement --prefer-pacs option
|
||||
|
Loading…
Reference in New Issue
Block a user