This commit is contained in:
parent
9f7bb20aad
commit
6a321eee4f
@ -1,3 +1,51 @@
|
||||
osc (0.97-7) unstable; urgency=high
|
||||
|
||||
* update to r1947:
|
||||
- commit: fixed possible "UnboundLocalError" with -m. Thanks to
|
||||
judas_iscariote for spotting this issue, and Marcus for fixing
|
||||
it.
|
||||
|
||||
-- Peter Poeml <poeml@suse.de> Thu, 9 Aug 2007 00:00:00 +0200
|
||||
|
||||
osc (0.97-6) unstable; urgency=high
|
||||
|
||||
* update to r1946:
|
||||
- avoid warning/error with unsupported HTTPS_PROXY [#214983][#298378]
|
||||
- importsrcpkg:
|
||||
* changed default behaviour - the files will not be committed by
|
||||
default. To commit them use the --commit switch.
|
||||
* added --delete-old-files option switch to delete old files from
|
||||
the server.
|
||||
* allow to import source rpms by specifying an URL
|
||||
* use rpm-python
|
||||
- fix for "osc prjconf <project> -e".
|
||||
|
||||
-- Peter Poeml <poeml@suse.de> Wed, 8 Aug 2007 00:00:00 +0200
|
||||
|
||||
osc (0.97-5) unstable; urgency=high
|
||||
|
||||
* update to r1884:
|
||||
- added new importfromsrcpkg command, to import a package src.rpm
|
||||
(we owe this to Marcus)
|
||||
- added new req command, to issue arbitrary requests to the API
|
||||
- append missing newline if do_commits=False [#293672]
|
||||
- make delete_package() and delete_project() more userfriendly
|
||||
(added trivial exception handling..)
|
||||
- expand ~ to users home for packagecachedir in .oscrc [#293675]
|
||||
|
||||
-- Peter Poeml <poeml@suse.de> Wed, 25 Jul 2007 00:00:00 +0200
|
||||
|
||||
osc (0.97-4) unstable; urgency=high
|
||||
|
||||
* update to r1811:
|
||||
- meta: allow for editing patterns
|
||||
- small fixes:
|
||||
- fix error message which osc issues if build package is too old
|
||||
- results: result code can be empty when package has just been created
|
||||
- fix name of 10.2 product in the template for new projects
|
||||
|
||||
-- Peter Poeml <poeml@suse.de> Thu, 19 Jul 2007 00:00:00 +0200
|
||||
|
||||
osc (0.97-3) unstable; urgency=high
|
||||
|
||||
* update to r1861:
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2ece37bc46902ebd62d6b4706e91ce6e33a030692a83f5fe01890ea7542d0077
|
||||
size 59871
|
||||
oid sha256:56999a9bd0da24ea919e6caf77f7354eaf9fe992ad180d9e711dffc4c884577e
|
||||
size 63844
|
||||
|
45
osc.changes
45
osc.changes
@ -1,3 +1,48 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 9 00:54:21 CEST 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
|
||||
it.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 8 20:49:24 CEST 2007 - poeml@suse.de
|
||||
|
||||
- update to r1946:
|
||||
- avoid warning/error with unsupported HTTPS_PROXY [#214983][#298378]
|
||||
- importsrcpkg:
|
||||
* changed default behaviour - the files will not be committed by
|
||||
default. To commit them use the --commit switch.
|
||||
* added --delete-old-files option switch to delete old files from
|
||||
the server.
|
||||
* allow to import source rpms by specifying an URL
|
||||
* use rpm-python
|
||||
- fix for "osc prjconf <project> -e".
|
||||
- add Recommends: rpm-python
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 25 13:04:37 CEST 2007 - poeml@suse.de
|
||||
|
||||
- update to r1884:
|
||||
- added new importfromsrcpkg command, to import a package src.rpm
|
||||
(we owe this to Marcus)
|
||||
- added new req command, to issue arbitrary requests to the API
|
||||
- append missing newline if do_commits=False [#293672]
|
||||
- make delete_package() and delete_project() more userfriendly
|
||||
(added trivial exception handling..)
|
||||
- expand ~ to users home for packagecachedir in .oscrc [#293675]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 19 14:28:51 CEST 2007 - poeml@suse.de
|
||||
|
||||
- update to r1871:
|
||||
- meta: allow for editing patterns
|
||||
- small fixes:
|
||||
- fix error message which osc issues if build package is too old
|
||||
- results: result code can be empty when package has just been created
|
||||
- fix name of 10.2 product in the template for new projects
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 18 15:21:48 CEST 2007 - poeml@suse.de
|
||||
|
||||
|
38
osc.spec
38
osc.spec
@ -13,7 +13,7 @@
|
||||
Name: osc
|
||||
BuildRequires: python-devel
|
||||
Version: 0.97
|
||||
Release: 4
|
||||
Release: 13
|
||||
Group: Development/Tools/Other
|
||||
License: GPL v2 or later
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
@ -29,6 +29,9 @@ Requires: python-elementtree
|
||||
%else
|
||||
Requires: python-xml
|
||||
%endif
|
||||
%if %suse_version > 1000
|
||||
Recommends: rpm-python
|
||||
%endif
|
||||
%endif
|
||||
#
|
||||
%if 0%{?fedora_version}
|
||||
@ -75,6 +78,39 @@ mkdir -p %{buildroot}/var/lib/osc-plugins
|
||||
%doc README TODO NEWS
|
||||
|
||||
%changelog
|
||||
* Thu Aug 09 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
|
||||
it.
|
||||
* Wed Aug 08 2007 - poeml@suse.de
|
||||
- update to r1946:
|
||||
- avoid warning/error with unsupported HTTPS_PROXY [#214983][#298378]
|
||||
- importsrcpkg:
|
||||
* changed default behaviour - the files will not be committed by
|
||||
default. To commit them use the --commit switch.
|
||||
* added --delete-old-files option switch to delete old files from
|
||||
the server.
|
||||
* allow to import source rpms by specifying an URL
|
||||
* use rpm-python
|
||||
- fix for "osc prjconf <project> -e".
|
||||
- add Recommends: rpm-python
|
||||
* Wed Jul 25 2007 - poeml@suse.de
|
||||
- update to r1884:
|
||||
- added new importfromsrcpkg command, to import a package src.rpm
|
||||
(we owe this to Marcus)
|
||||
- added new req command, to issue arbitrary requests to the API
|
||||
- append missing newline if do_commits=False [#293672]
|
||||
- make delete_package() and delete_project() more userfriendly
|
||||
(added trivial exception handling..)
|
||||
- expand ~ to users home for packagecachedir in .oscrc [#293675]
|
||||
* Thu Jul 19 2007 - poeml@suse.de
|
||||
- update to r1871:
|
||||
- meta: allow for editing patterns
|
||||
- small fixes:
|
||||
- fix error message which osc issues if build package is too old
|
||||
- results: result code can be empty when package has just been created
|
||||
- fix name of 10.2 product in the template for new projects
|
||||
* Wed Jul 18 2007 - poeml@suse.de
|
||||
- update to r1861:
|
||||
- commit (using the currently documented way):
|
||||
|
Loading…
Reference in New Issue
Block a user