This commit is contained in:
parent
0c71b0aaa8
commit
880397b506
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:780f659cbb96490a993d361a9ddfbbe7211451643fbb0a75e568019509475dbd
|
|
||||||
size 243255
|
|
3
osc-0.120.tar.gz
Normal file
3
osc-0.120.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:b36becb6b887bcbbdb31e9c5060314f89e9b8bbcb86a0a58f6db709077dcf52e
|
||||||
|
size 224939
|
24
osc.changes
24
osc.changes
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 18 19:16:22 CEST 2009 - adrian@suse.de
|
||||||
|
|
||||||
|
- use completion script from tar ball
|
||||||
|
- update to r7560 (version 0.120)
|
||||||
|
- support "setlinkrev" for whole projects
|
||||||
|
- add "setlinkrev --unset" for removing revision references
|
||||||
|
- add "osc request list -t <type>" to list only submit, delete or develchange requests
|
||||||
|
- add shell completion scripts
|
||||||
|
- fix support of listing requests with multiple actions
|
||||||
|
- "osc maintainer" is following to the development project / package now
|
||||||
|
- "osc maintainer" list maintainer and bugowner roles now
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 18 10:19:09 CEST 2009 - adrian@suse.de
|
||||||
|
|
||||||
|
- update to version 0.119.1
|
||||||
|
* fixing listing of requests, when a delete request exists
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 10 17:57:29 CEST 2009 - werner@suse.de
|
||||||
|
|
||||||
|
- Add completion support for both tcsh and bash
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 3 13:45:52 CEST 2009 - adrian@suse.de
|
Wed Jun 3 13:45:52 CEST 2009 - adrian@suse.de
|
||||||
|
|
||||||
|
2
osc.dsc
2
osc.dsc
@ -1,6 +1,6 @@
|
|||||||
Format: 1.0
|
Format: 1.0
|
||||||
Source: osc
|
Source: osc
|
||||||
Version: 0.119-1
|
Version: 0.120-1
|
||||||
Binary: osc
|
Binary: osc
|
||||||
Maintainer: Adrian Schroeter <adrian@suse.de>
|
Maintainer: Adrian Schroeter <adrian@suse.de>
|
||||||
Architecture: any
|
Architecture: any
|
||||||
|
27
osc.spec
27
osc.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package osc (Version 0.119)
|
# spec file for package osc (Version 0.120)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
Name: osc
|
Name: osc
|
||||||
BuildRequires: python-devel
|
BuildRequires: python-devel
|
||||||
Version: 0.119
|
Version: 0.120
|
||||||
Release: 1
|
Release: 1
|
||||||
Group: Development/Tools/Other
|
Group: Development/Tools/Other
|
||||||
License: GPL v2 or later
|
License: GPL v2 or later
|
||||||
@ -75,6 +75,11 @@ CFLAGS="%{optflags}" \
|
|||||||
%{__python} setup.py install --prefix=%{_prefix} --root %{buildroot}
|
%{__python} setup.py install --prefix=%{_prefix} --root %{buildroot}
|
||||||
ln -s osc-wrapper.py %{buildroot}/%{_bindir}/osc
|
ln -s osc-wrapper.py %{buildroot}/%{_bindir}/osc
|
||||||
mkdir -p %{buildroot}/var/lib/osc-plugins
|
mkdir -p %{buildroot}/var/lib/osc-plugins
|
||||||
|
mkdir -p %{buildroot}%{_prefix}/%{_lib}/osc
|
||||||
|
mkdir -p %{buildroot}%{_sysconfdir}/profile.d
|
||||||
|
install -m 0755 dist/osc.complete %{buildroot}%{_prefix}/%{_lib}/osc/complete
|
||||||
|
install -m 0755 dist/complete.csh %{buildroot}%{_sysconfdir}/profile.d/osc.csh
|
||||||
|
install -m 0755 dist/complete.sh %{buildroot}%{_sysconfdir}/profile.d/osc.sh
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
%{__rm} -rf %{buildroot}
|
%{__rm} -rf %{buildroot}
|
||||||
@ -83,11 +88,29 @@ mkdir -p %{buildroot}/var/lib/osc-plugins
|
|||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_bindir}/osc*
|
%{_bindir}/osc*
|
||||||
%{python_sitelib}/*
|
%{python_sitelib}/*
|
||||||
|
%{_sysconfdir}/profile.d/*
|
||||||
|
%dir %{_prefix}/%{_lib}/osc
|
||||||
|
%{_prefix}/%{_lib}/osc/*
|
||||||
%dir /var/lib/osc-plugins
|
%dir /var/lib/osc-plugins
|
||||||
%doc AUTHORS README TODO NEWS
|
%doc AUTHORS README TODO NEWS
|
||||||
%doc %_mandir/man1/osc.*
|
%doc %_mandir/man1/osc.*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jun 18 2009 adrian@suse.de
|
||||||
|
- use completion script from tar ball
|
||||||
|
- update to r7560 (version 0.120)
|
||||||
|
- support "setlinkrev" for whole projects
|
||||||
|
- add "setlinkrev --unset" for removing revision references
|
||||||
|
- add "osc request list -t <type>" to list only submit, delete or develchange requests
|
||||||
|
- add shell completion scripts
|
||||||
|
- fix support of listing requests with multiple actions
|
||||||
|
- "osc maintainer" is following to the development project / package now
|
||||||
|
- "osc maintainer" list maintainer and bugowner roles now
|
||||||
|
* Thu Jun 18 2009 adrian@suse.de
|
||||||
|
- update to version 0.119.1
|
||||||
|
* fixing listing of requests, when a delete request exists
|
||||||
|
* Wed Jun 10 2009 werner@suse.de
|
||||||
|
- Add completion support for both tcsh and bash
|
||||||
* Wed Jun 03 2009 adrian@suse.de
|
* Wed Jun 03 2009 adrian@suse.de
|
||||||
- update to r7528 (version 0.119)
|
- update to r7528 (version 0.119)
|
||||||
- Support new request types
|
- Support new request types
|
||||||
|
Loading…
Reference in New Issue
Block a user