mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-17 19:13:13 -04:00
dev-util/osc: bump to 0.171.0
Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Theo Anderson <telans@posteo.de>
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST osc-0.169.1.tar.gz 357179 BLAKE2B d65b6b238aff7cd9c4e5e1509318bfcb4bccdb00c363485c4ae106fab40051f9e5f5b4b76baca3ac25b0cf64d66d0003b3580fcd930511aa6ea7c8d36d7f50e7 SHA512 9429864bcc61c47505c8924cdf35164289f55adf890bc6f28e3fb6063438a53722384594512e3c12662dffc1d31b84f2b292af873d72b3de552a27aa4403ab16
|
||||
DIST osc-0.171.0.tar.gz 360391 BLAKE2B acc4687c1b084e6ec997e4c4215fe940f9f850ec2ded849676e86bd2b133367459fcbe90a2d3adea1ace249eaa6efed24e107a8f899698836feb33d6eed38ecb SHA512 21a2ef400a64b88c5f588aa80667f2bbb8dbfaf78b55b041d9db4f5cd92548ff8339d5add86ffbf597d913bb804f87c28d68cb2cb2f6923facdddb8044974bf3
|
||||
|
||||
65
dev-util/osc/osc-0.171.0.ebuild
Normal file
65
dev-util/osc/osc-0.171.0.ebuild
Normal file
@@ -0,0 +1,65 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{7..9} )
|
||||
PYTHON_REQ_USE="xml"
|
||||
DISTUTILS_SINGLE_IMPL=1
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Command line tool for Open Build Service"
|
||||
HOMEPAGE="
|
||||
https://en.opensuse.org/openSUSE:OSC
|
||||
https://github.com/openSUSE/osc
|
||||
"
|
||||
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/openSUSE/${PN}.git"
|
||||
else
|
||||
OBS_PROJECT="openSUSE:Tools"
|
||||
SRC_URI="https://github.com/openSUSE/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
# Test require config file: osc.oscerr.NoConfigfile
|
||||
RESTRICT="test"
|
||||
|
||||
RDEPEND="
|
||||
app-arch/rpm[python,${PYTHON_SINGLE_USEDEP}]
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/m2crypto[${PYTHON_USEDEP}]
|
||||
')
|
||||
${PYTHON_SINGLE_DEPS}
|
||||
"
|
||||
BDEPEND="
|
||||
$(python_gen_cond_dep '
|
||||
>=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}]
|
||||
')
|
||||
test? (
|
||||
${RDEPEND}
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/path-py[${PYTHON_USEDEP}]
|
||||
')
|
||||
)"
|
||||
|
||||
distutils_enable_tests pytest
|
||||
# Bug: https://bugs.gentoo.org/704520
|
||||
#distutils_enable_sphinx docs dev-python/alabaster
|
||||
|
||||
src_install() {
|
||||
distutils-r1_src_install
|
||||
|
||||
dosym osc-wrapper.py /usr/bin/osc
|
||||
rm -f "${ED}/usr/share/doc/${PN}"*/TODO*
|
||||
insinto /usr/share/bash-completion/completions
|
||||
newins dist/complete.sh osc
|
||||
insinto /usr/lib/osc
|
||||
newins dist/osc.complete complete
|
||||
insinto /usr/share/zsh/site-functions
|
||||
newins "${FILESDIR}/osc.zsh_completion" _osc
|
||||
}
|
||||
@@ -3,29 +3,29 @@
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{7,8} )
|
||||
PYTHON_COMPAT=( python3_{7..9} )
|
||||
PYTHON_REQ_USE="xml"
|
||||
DISTUTILS_SINGLE_IMPL=1
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Command line tool for Open Build Service"
|
||||
HOMEPAGE="https://en.opensuse.org/openSUSE:OSC https://github.com/openSUSE/osc"
|
||||
|
||||
if [[ "${PV}" == "9999" ]]; then
|
||||
EGIT_REPO_URI="https://github.com/openSUSE/${PN}.git"
|
||||
HOMEPAGE="
|
||||
https://en.opensuse.org/openSUSE:OSC
|
||||
https://github.com/openSUSE/osc
|
||||
"
|
||||
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/openSUSE/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://github.com/openSUSE/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
OBS_PROJECT="openSUSE:Tools"
|
||||
|
||||
SRC_URI="https://github.com/openSUSE/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
|
||||
# Test require config file: osc.oscerr.NoConfigfile
|
||||
RESTRICT="test"
|
||||
|
||||
@@ -36,7 +36,6 @@ RDEPEND="
|
||||
')
|
||||
${PYTHON_SINGLE_DEPS}
|
||||
"
|
||||
|
||||
BDEPEND="
|
||||
$(python_gen_cond_dep '
|
||||
>=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}]
|
||||
|
||||
Reference in New Issue
Block a user