Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/
Date: Thu, 27 Dec 2018 23:03:57
Message-Id: 1545951803.35ae67ce35bf6fc1f45badcff1a44166c84d4c61.williamh@gentoo
1 commit: 35ae67ce35bf6fc1f45badcff1a44166c84d4c61
2 Author: William Hubbs <williamh <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 27 23:02:08 2018 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 27 23:03:23 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35ae67ce
7
8 www-client/pybugz: remove old
9
10 Package-Manager: Portage-2.3.51, Repoman-2.3.11
11 Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
12
13 www-client/pybugz/Manifest | 1 -
14 www-client/pybugz/pybugz-0.12.1.ebuild | 36 ----------------------------------
15 2 files changed, 37 deletions(-)
16
17 diff --git a/www-client/pybugz/Manifest b/www-client/pybugz/Manifest
18 index d78f7a60001..ba05047de28 100644
19 --- a/www-client/pybugz/Manifest
20 +++ b/www-client/pybugz/Manifest
21 @@ -1,2 +1 @@
22 -DIST pybugz-0.12.1.tar.gz 25606 BLAKE2B 907a87346dbe0a949c3cf2c1b8e601dfbc0a1122c0647e8fc9de25b097fb5f31f39dd99016ee2febde11ac58f5cfb527127331e53f71fef3ad64de213664afe0 SHA512 bb76baf8105f4b56b106c3e63f5aebb322659141edf9c5e5af747db5824abffb7b127703ecb7111f9480d05bdb2f11b3fef2cd5f99078d9dda00e841b4ce7394
23 DIST pybugz-0.13.tar.gz 26876 BLAKE2B fbab5ff308e137bf590620362fe102408444c7c1cb375f2c2d426cf5873fba5cf8759d7083be4c6bd305191680af8d1afc3aaf0648e186a93af4dd0b60442093 SHA512 2cbbd32b44d0d513e91e5c35dca5c68e34a963190c31f9139922f6b8ba69c7362063155b35833a00c2bd064f94d99367e2941a573aed4488f9a71a3b163d4b54
24
25 diff --git a/www-client/pybugz/pybugz-0.12.1.ebuild b/www-client/pybugz/pybugz-0.12.1.ebuild
26 deleted file mode 100644
27 index 8c60c0ae338..00000000000
28 --- a/www-client/pybugz/pybugz-0.12.1.ebuild
29 +++ /dev/null
30 @@ -1,36 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -PYTHON_COMPAT=( python3_4 python3_5 )
36 -PYTHON_REQ_USE="readline(+)"
37 -
38 -if [ "${PV}" = "9999" ]; then
39 - EGIT_REPO_URI="https://github.com/williamh/pybugz.git"
40 - inherit git-r3
41 -else
42 - SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 - KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
44 - inherit vcs-snapshot
45 -fi
46 -
47 -inherit bash-completion-r1 distutils-r1
48 -
49 -DESCRIPTION="Command line interface to (Gentoo) Bugzilla"
50 -HOMEPAGE="https://github.com/williamh/pybugz"
51 -LICENSE="GPL-2"
52 -SLOT="0"
53 -IUSE="zsh-completion"
54 -
55 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
56 -RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
57 -
58 -python_install_all() {
59 - distutils-r1_python_install_all
60 - newbashcomp contrib/bash-completion bugz
61 -
62 - if use zsh-completion ; then
63 - insinto /usr/share/zsh/site-functions
64 - newins contrib/zsh-completion _pybugz
65 - fi
66 -}