Daniel Mach
27f0f35d98
- 0.178.0 - EXPERIMENTAL: git repository handling * init command is working inside of a git repository * downloadassets command fetches references assets from build description * checkout is cloning from git - EXPERIMENTAL: signature (ssh key) authetication * allow to configure 'sshkey' option in the config * try to guess ssh key from the keys added to ssh-agent * rename OscHTTPBasicAuthHandler to OscHTTPAuthHandler * simplify bad auth retry workaround needed for old python versions - add support for building preinstall images - add support for building Helm charts - show the md5s that are failing to validate after fetching a package - add missing space to copypac completion - never require login in the help command - linkdiff: raise an exception when an added file is missing - run tests via calling 'setup.py test' - several coding style fixes - spec file: - run tests via calling 'setup.py test' - disabled tests in debian.rules OBS-URL: https://build.opensuse.org/request/show/979843 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Tools/osc?expand=0&rev=360
19 lines
455 B
Makefile
19 lines
455 B
Makefile
#!/usr/bin/make -f
|
|
# Uncomment this to turn on verbose mode.
|
|
#export DH_VERBOSE=1
|
|
|
|
export PYBUILD_NAME=osc
|
|
|
|
%:
|
|
dh $@ --with python3 --buildsystem=pybuild
|
|
|
|
override_dh_auto_install:
|
|
dh_auto_install
|
|
install -Dm0644 dist/complete.csh debian/tmp/etc/profile.d/osc.csh
|
|
install -Dm0644 dist/complete.sh debian/tmp/etc/bash_completion.d/osc.sh
|
|
install -Dm0755 dist/osc.complete debian/tmp/usr/lib/osc/complete
|
|
|
|
|
|
override_dh_auto_test:
|
|
echo "skipping test"
|