Accepting request 1084818 from openSUSE:Tools
- 1.1.2 - Command-line: - Add '--buildtool-opt' option passing options to underlying rpmbuild to the 'build' command - Fix 'diff' command to support diffing selected files only - Identify inherited packages in the 'dependson' command output - Bring the '--debug' option back to the 'buildinfo' command - Fix 'buildhistory' command by setting the type of the '--limit' option to int - Library: - Fix a traceback when failed to unlock a keyring - Don't retry on 400 HTTP status code in core.server_diff() - Clean-up the '.old' folder if an exception happens - Document 'popt' attribute in the _link template - Fix build.get_repo() to return only directory that contains 'repodata/repomd.xml' - Connection: - Retry on receiving the following HTTP status codes: 400, 500, 502, 503, 504 - Allow disabling retry on 400 HTTP status code - Fix urlgrab to skip mirrors with invalid scheme OBS-URL: https://build.opensuse.org/request/show/1084818 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/osc?expand=0&rev=176
This commit is contained in:
commit
cc3a86b0bf
2
PKGBUILD
2
PKGBUILD
@ -1,5 +1,5 @@
|
||||
pkgname=osc
|
||||
pkgver=1.1.1
|
||||
pkgver=1.1.2
|
||||
pkgrel=0
|
||||
pkgdesc="Command-line client for the Open Build Service"
|
||||
arch=('x86_64')
|
||||
|
@ -1 +1,5 @@
|
||||
osc (1.1.1-0) unstable; urgency=low
|
||||
osc (1.1.2-1) unstable; urgency=low
|
||||
|
||||
* Placeholder
|
||||
|
||||
-- Adrian Schroeter <adrian@suse.de> Wed, 05 Apr 2023 12:34:56 +0000
|
||||
|
@ -1,10 +1,11 @@
|
||||
Source: osc
|
||||
Priority: extra
|
||||
Priority: optional
|
||||
Maintainer: Adrian Schroeter <adrian@suse.de>
|
||||
Build-Depends:
|
||||
debhelper (>= 10),
|
||||
dh-python,
|
||||
python3-all (>=3.6),
|
||||
python3-argparse-manpage,
|
||||
python3-cryptography,
|
||||
python3-setuptools,
|
||||
python3-urllib3
|
||||
@ -30,4 +31,4 @@ Recommends:
|
||||
sudo,
|
||||
xdg-utils
|
||||
Description: Command-line client for the Open Build Service
|
||||
OpenSUSE Commander is a command-line client for the Open Build Service.
|
||||
OpenSUSE Commander is a command-line client for the Open Build Service.
|
||||
|
1
debian.manpages
Normal file
1
debian.manpages
Normal file
@ -0,0 +1 @@
|
||||
osc.1
|
18
debian.rules
18
debian.rules
@ -1,17 +1,27 @@
|
||||
#!/usr/bin/make -f
|
||||
# Uncomment this to turn on verbose mode.
|
||||
#export DH_VERBOSE=1
|
||||
export DH_VERBOSE=1
|
||||
|
||||
export PYBUILD_NAME=osc
|
||||
|
||||
%:
|
||||
dh $@ --with python3 --buildsystem=pybuild
|
||||
|
||||
override_dh_auto_build:
|
||||
dh_auto_build
|
||||
PYTHONPATH=. argparse-manpage \
|
||||
--output=osc.1 \
|
||||
--module=osc.commandline \
|
||||
--function=get_parser \
|
||||
--project-name=osc \
|
||||
--author="Contributors to the osc project. See the project's GIT history for the complete list." \
|
||||
--url="https://github.com/openSUSE/osc/"
|
||||
|
||||
override_dh_auto_install:
|
||||
dh_auto_install
|
||||
install -Dm0644 contrib/complete.csh debian/tmp/etc/profile.d/osc.csh
|
||||
install -Dm0644 contrib/complete.sh debian/tmp/etc/bash_completion.d/osc.sh
|
||||
install -Dm0755 contrib/osc.complete debian/tmp/usr/lib/osc/complete
|
||||
install -Dm0644 contrib/complete.csh debian/osc/etc/profile.d/osc.csh
|
||||
install -Dm0644 contrib/complete.sh debian/osc/etc/bash_completion.d/osc.sh
|
||||
install -Dm0755 contrib/osc.complete debian/osc/usr/lib/osc/complete
|
||||
|
||||
|
||||
override_dh_auto_test:
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:05cb090487dc099f5cdfe4327cfd4d7bbf532a0b6a380c3cf83b29923b763ea1
|
||||
size 328704
|
3
osc-1.1.2.tar.gz
Normal file
3
osc-1.1.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b2df7f9514175428a82e636365fa10c5dfed7497d742aff380e22c517064ee6a
|
||||
size 329844
|
21
osc.changes
21
osc.changes
@ -1,3 +1,24 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed May 3 08:12:22 UTC 2023 - Daniel Mach <daniel.mach@suse.com>
|
||||
|
||||
- 1.1.2
|
||||
- Command-line:
|
||||
- Add '--buildtool-opt' option passing options to underlying rpmbuild to the 'build' command
|
||||
- Fix 'diff' command to support diffing selected files only
|
||||
- Identify inherited packages in the 'dependson' command output
|
||||
- Bring the '--debug' option back to the 'buildinfo' command
|
||||
- Fix 'buildhistory' command by setting the type of the '--limit' option to int
|
||||
- Library:
|
||||
- Fix a traceback when failed to unlock a keyring
|
||||
- Don't retry on 400 HTTP status code in core.server_diff()
|
||||
- Clean-up the '.old' folder if an exception happens
|
||||
- Document 'popt' attribute in the _link template
|
||||
- Fix build.get_repo() to return only directory that contains 'repodata/repomd.xml'
|
||||
- Connection:
|
||||
- Retry on receiving the following HTTP status codes: 400, 500, 502, 503, 504
|
||||
- Allow disabling retry on 400 HTTP status code
|
||||
- Fix urlgrab to skip mirrors with invalid scheme
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 11 12:04:56 UTC 2023 - Daniel Mach <daniel.mach@suse.com>
|
||||
|
||||
|
3
osc.dsc
3
osc.dsc
@ -1,6 +1,6 @@
|
||||
Format: 1.0
|
||||
Source: osc
|
||||
Version: 1.1.1-0
|
||||
Version: 1.1.2-1
|
||||
Binary: osc
|
||||
Maintainer: Adrian Schroeter <adrian@suse.de>
|
||||
Architecture: any
|
||||
@ -9,6 +9,7 @@ Build-Depends:
|
||||
debhelper (>= 10),
|
||||
dh-python,
|
||||
python3-all (>=3.6),
|
||||
python3-argparse-manpage,
|
||||
python3-cryptography,
|
||||
python3-setuptools,
|
||||
python3-urllib3
|
||||
|
Loading…
Reference in New Issue
Block a user