Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/dput-ng/
Date: Mon, 31 May 2021 20:53:39
Message-Id: 1622494399.73982c2edcb599bf32555f18b3d5f8bedb184f47.mgorny@gentoo
1 commit: 73982c2edcb599bf32555f18b3d5f8bedb184f47
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 31 20:43:46 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 31 20:53:19 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73982c2e
7
8 dev-util/dput-ng: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-util/dput-ng/Manifest | 1 -
13 dev-util/dput-ng/dput-ng-1.28-r1.ebuild | 89 ---------------------------------
14 2 files changed, 90 deletions(-)
15
16 diff --git a/dev-util/dput-ng/Manifest b/dev-util/dput-ng/Manifest
17 index 627a37faa81..818cdc50538 100644
18 --- a/dev-util/dput-ng/Manifest
19 +++ b/dev-util/dput-ng/Manifest
20 @@ -1,2 +1 @@
21 -DIST dput-ng_1.28.tar.xz 85276 BLAKE2B d205d15aad1b81dcf2cc0b765c9724b21add32df39102b63502d99e5da73aa95efdf66e94f6226105ab2ae97a4bf8c43963784f3ddf2d03217ab5023a7a98f22 SHA512 cfd4a6143b33f29eb32b88972a204ab7a6c2f062299c76167434322ae5d6d2cf8654c5b4d1e96db90dbffe372a04e2a7691694ecf46787c7743dd9ac2b7b317e
22 DIST dput-ng_1.32.tar.xz 86280 BLAKE2B 7e195eab4f48d77968b866185e337f2b51113f7e11cfa4929d47e79082c2fa866af2c8394c50816b650f865db9ef244775618a05a6b398090366d342a45a3db7 SHA512 596247eecb2dce080cd6f3cd1ddb1364cfa00fc3048081149e4d6dc35822aee10fa10ec25ed91154b477a909cc29dcf17cb38ccefa649f40eb70c16e0a575b2e
23
24 diff --git a/dev-util/dput-ng/dput-ng-1.28-r1.ebuild b/dev-util/dput-ng/dput-ng-1.28-r1.ebuild
25 deleted file mode 100644
26 index a9423d3858f..00000000000
27 --- a/dev-util/dput-ng/dput-ng-1.28-r1.ebuild
28 +++ /dev/null
29 @@ -1,89 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -PYTHON_COMPAT=( python3_7 )
35 -DISTUTILS_SINGLE_IMPL=1
36 -
37 -inherit bash-completion-r1 distutils-r1
38 -
39 -DESCRIPTION="Next generation Debian package upload tool"
40 -HOMEPAGE="https://people.debian.org/~paultag/dput-ng/"
41 -SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.xz"
42 -
43 -LICENSE="GPL-2+"
44 -SLOT="0"
45 -KEYWORDS="amd64 x86"
46 -IUSE="test"
47 -
48 -RDEPEND="
49 - $(python_gen_cond_dep '
50 - dev-python/python-debian[${PYTHON_MULTI_USEDEP}]
51 - dev-python/paramiko[${PYTHON_MULTI_USEDEP}]
52 - dev-util/distro-info[python,${PYTHON_MULTI_USEDEP}]
53 - ')
54 -"
55 -DEPEND="${RDEPEND}
56 - app-text/asciidoc
57 - test? (
58 - $(python_gen_cond_dep '
59 - dev-python/nose[${PYTHON_MULTI_USEDEP}]
60 - dev-python/python-debian[${PYTHON_MULTI_USEDEP}]
61 - ')
62 - dev-util/debhelper
63 - )"
64 -
65 -# Requires missing build-essential package
66 -RESTRICT="test"
67 -
68 -src_compile() {
69 - distutils-r1_src_compile
70 -
71 - mkdir man || die
72 - for file in docs/man/*.man; do
73 - a2x --doctype manpage --format manpage -D man \
74 - "${file}" || die
75 - done
76 -}
77 -
78 -src_install() {
79 - local DPUT_BINARIES=( dcut dirt dput )
80 - local DPUT_ETC=( metas profiles )
81 - local DPUT_SHARE=(
82 - codenames
83 - commands
84 - hooks
85 - interfaces
86 - schemas
87 - uploaders
88 - )
89 -
90 - distutils-r1_src_install
91 -
92 - for binary in ${DPUT_BINARIES[@]}; do
93 - dobin bin/"${binary}"
94 - done
95 - python_fix_shebang "${D}"/usr/bin
96 -
97 - insinto /etc/dput.d
98 - for dir in ${DPUT_ETC[@]}; do
99 - doins -r skel/"${dir}"
100 - done
101 -
102 - insinto /usr/share/"${PN}"
103 - for dir in ${DPUT_SHARE[@]}; do
104 - doins -r skel/"${dir}"
105 - done
106 -
107 - # doman incorrectly treats "cf" in dput.cf.5 as a lang code
108 - doman -i18n="" man/*
109 -
110 - newbashcomp debian/dcut-completion dcut
111 - newbashcomp debian/dput-completion dput
112 -}
113 -
114 -python_test() {
115 - # test_configs.py failing
116 - # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=824652
117 - nosetests || die "Tests failed under ${EPYTHON}"
118 -}