[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2024-03-01 Thread Arthur Zamarin
commit: f13f2c80cc1dac586270f3629ec77633fb8f055e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Mar  1 16:42:52 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Mar  1 16:43:56 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f13f2c80

www-client/pybugz: add 0.14, flit, add test, enable py3.12

Thanks to moving to flit upstream, the install is much simpler.
Add a basic test for verifying the tools works (needs network).
Enable py3.12
Remove dep on python[readline] - not used upstream.

Closes: https://bugs.gentoo.org/604826
Closes: https://bugs.gentoo.org/847301
Closes: https://bugs.gentoo.org/919903
Signed-off-by: Arthur Zamarin  gentoo.org>

 www-client/pybugz/Manifest   |  1 +
 www-client/pybugz/pybugz-0.14.ebuild | 32 
 2 files changed, 33 insertions(+)

diff --git a/www-client/pybugz/Manifest b/www-client/pybugz/Manifest
index ba05047de28c..e15b1c517db8 100644
--- a/www-client/pybugz/Manifest
+++ b/www-client/pybugz/Manifest
@@ -1 +1,2 @@
 DIST pybugz-0.13.tar.gz 26876 BLAKE2B 
fbab5ff308e137bf590620362fe102408444c7c1cb375f2c2d426cf5873fba5cf8759d7083be4c6bd305191680af8d1afc3aaf0648e186a93af4dd0b60442093
 SHA512 
2cbbd32b44d0d513e91e5c35dca5c68e34a963190c31f9139922f6b8ba69c7362063155b35833a00c2bd064f94d99367e2941a573aed4488f9a71a3b163d4b54
+DIST pybugz-0.14.tar.gz 26589 BLAKE2B 
7d18060f0398869d8420013b298fd1899b89e9136332b961b289bbc93894d020ef3c6a5af90ddc5966e14a3eb65880fa5751d15011621177ee09176148d845f9
 SHA512 
4701b7e67bb922f3fcf5158449a07a872723347e83ff654ce93f8f2fdb495d720bcc387b74b68429fe48beb8b2acf98ad3ce77720e99dfffaba92cbc97052cdd

diff --git a/www-client/pybugz/pybugz-0.14.ebuild 
b/www-client/pybugz/pybugz-0.14.ebuild
new file mode 100644
index ..6583a278f92d
--- /dev/null
+++ b/www-client/pybugz/pybugz-0.14.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_REQ_USE="ssl(+)"
+
+if [[ ${PV} = "" ]]; then
+   EGIT_REPO_URI="https://github.com/williamh/pybugz.git;
+   inherit git-r3
+else
+   SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+fi
+
+inherit distutils-r1
+
+DESCRIPTION="Command line interface to (Gentoo) Bugzilla"
+HOMEPAGE="https://github.com/williamh/pybugz;
+
+LICENSE="GPL-2"
+SLOT="0"
+RESTRICT="test"
+PROPERTIES="test_network"
+
+python_test() {
+   # not the highest quality of test, but checks many parts of the code 
work.
+   # good enough for PYTHON_COMPAT checks.
+   "${EPYTHON}" lbugz get 784263 || die "Tests failed with ${EPYTHON}"
+}



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2024-02-29 Thread Arthur Zamarin
commit: 4dff98b40049347c8063fa0edb2ce86dcd21cbae
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Feb 29 19:14:06 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Feb 29 19:15:35 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4dff98b4

www-client/pybugz: (live) flit, add test, enable py3.12

Thanks to moving to flit upstream, the install is much simpler.
Add a basic test for verifying the tools works (needs network).
Enable py3.12

Signed-off-by: Arthur Zamarin  gentoo.org>

 www-client/pybugz/pybugz-.ebuild | 20 ++--
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/www-client/pybugz/pybugz-.ebuild 
b/www-client/pybugz/pybugz-.ebuild
index 17680b4e1e24..95086a2d7f65 100644
--- a/www-client/pybugz/pybugz-.ebuild
+++ b/www-client/pybugz/pybugz-.ebuild
@@ -3,11 +3,11 @@
 
 EAPI=8
 
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{10..12} )
 PYTHON_REQ_USE="readline(+),ssl(+)"
 
-if [ "${PV}" = "" ]; then
+if [[ ${PV} = "" ]]; then
EGIT_REPO_URI="https://github.com/williamh/pybugz.git;
inherit git-r3
 else
@@ -15,18 +15,18 @@ else
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
 fi
 
-inherit bash-completion-r1 distutils-r1
+inherit distutils-r1
 
 DESCRIPTION="Command line interface to (Gentoo) Bugzilla"
 HOMEPAGE="https://github.com/williamh/pybugz;
 
 LICENSE="GPL-2"
 SLOT="0"
+RESTRICT="test"
+PROPERTIES="test_network"
 
-python_install_all() {
-   distutils-r1_python_install_all
-   newbashcomp contrib/bash-completion bugz
-
-   insinto /usr/share/zsh/site-functions
-   newins contrib/zsh-completion _pybugz
+python_test() {
+   # not the highest quality of test, but checks many parts of the code 
work.
+   # good enough for PYTHON_COMPAT checks.
+   "${EPYTHON}" lbugz get 784263 || die "Tests failed with ${EPYTHON}"
 }



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2024-02-15 Thread William Hubbs
commit: 1cebce95d40bfab03d5c92b06750b77d201be31c
Author: Eli Schwartz  gmail  com>
AuthorDate: Sun Feb  4 04:23:27 2024 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Feb 15 17:52:30 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cebce95

www-client/pybugz: multiple small fixes

- remove extraneous dependencies on setuptools

The distutils eclass already handles this correctly. This includes using
BDEPEND instead of DEPEND.

Avoids a runtime dependency on setuptools, which has never been used --
in general software never uses `import setuptools` at runtime, and
pybugz doesn't actually make use of pkg_resources either.

- migrate to pep517 build
- update EAPI 7 -> 8

Closes: https://bugs.gentoo.org/910045
Closes: https://github.com/gentoo/gentoo/pull/35177

Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: William Hubbs  gentoo.org>

 .../pybugz/{pybugz-.ebuild => pybugz-0.13-r3.ebuild}   | 10 --
 www-client/pybugz/pybugz-.ebuild   | 10 --
 2 files changed, 8 insertions(+), 12 deletions(-)

diff --git a/www-client/pybugz/pybugz-.ebuild 
b/www-client/pybugz/pybugz-0.13-r3.ebuild
similarity index 77%
copy from www-client/pybugz/pybugz-.ebuild
copy to www-client/pybugz/pybugz-0.13-r3.ebuild
index 8f3124991403..17680b4e1e24 100644
--- a/www-client/pybugz/pybugz-.ebuild
+++ b/www-client/pybugz/pybugz-0.13-r3.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
+DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( python3_{9..11} )
 PYTHON_REQ_USE="readline(+),ssl(+)"
 
@@ -11,7 +12,7 @@ if [ "${PV}" = "" ]; then
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc 
~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
 fi
 
 inherit bash-completion-r1 distutils-r1
@@ -22,9 +23,6 @@ HOMEPAGE="https://github.com/williamh/pybugz;
 LICENSE="GPL-2"
 SLOT="0"
 
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-
 python_install_all() {
distutils-r1_python_install_all
newbashcomp contrib/bash-completion bugz

diff --git a/www-client/pybugz/pybugz-.ebuild 
b/www-client/pybugz/pybugz-.ebuild
index 8f3124991403..17680b4e1e24 100644
--- a/www-client/pybugz/pybugz-.ebuild
+++ b/www-client/pybugz/pybugz-.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
+DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( python3_{9..11} )
 PYTHON_REQ_USE="readline(+),ssl(+)"
 
@@ -11,7 +12,7 @@ if [ "${PV}" = "" ]; then
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc 
~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
 fi
 
 inherit bash-completion-r1 distutils-r1
@@ -22,9 +23,6 @@ HOMEPAGE="https://github.com/williamh/pybugz;
 LICENSE="GPL-2"
 SLOT="0"
 
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-
 python_install_all() {
distutils-r1_python_install_all
newbashcomp contrib/bash-completion bugz



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2022-12-16 Thread WANG Xuerui
commit: 2acb124a5d7092d7972f9de41cb59df751f52df4
Author: WANG Xuerui  gentoo  org>
AuthorDate: Mon Dec 12 07:49:59 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Sat Dec 17 06:38:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2acb124a

www-client/pybugz: keyword 0.13-r2 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 www-client/pybugz/pybugz-0.13-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/pybugz/pybugz-0.13-r2.ebuild 
b/www-client/pybugz/pybugz-0.13-r2.ebuild
index 5d0921645af2..45b420dc139b 100644
--- a/www-client/pybugz/pybugz-0.13-r2.ebuild
+++ b/www-client/pybugz/pybugz-0.13-r2.ebuild
@@ -11,7 +11,7 @@ if [ "${PV}" = "" ]; then
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x86-solaris"
 fi
 
 inherit bash-completion-r1 distutils-r1



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2022-12-16 Thread WANG Xuerui
commit: 2f62b3fec3a430d58d9167f0aba0cebaec3eb165
Author: WANG Xuerui  gentoo  org>
AuthorDate: Mon Dec 12 07:50:00 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Sat Dec 17 06:38:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f62b3fe

www-client/pybugz: forward ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 www-client/pybugz/pybugz-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/pybugz/pybugz-.ebuild 
b/www-client/pybugz/pybugz-.ebuild
index fa21df76a7c2..3d779079c02d 100644
--- a/www-client/pybugz/pybugz-.ebuild
+++ b/www-client/pybugz/pybugz-.ebuild
@@ -11,7 +11,7 @@ if [ "${PV}" = "" ]; then
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc 
~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x86-solaris"
 fi
 
 inherit bash-completion-r1 distutils-r1



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2022-09-22 Thread William Hubbs
commit: e470114e0001b146cd3e03d5ef2910a759262ba1
Author: William Hubbs  gentoo  org>
AuthorDate: Thu Sep 22 21:00:23 2022 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Sep 22 21:01:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e470114e

www-client/pybugz: require ssl support for python

Signed-off-by: William Hubbs  gentoo.org>

 www-client/pybugz/pybugz-0.13-r2.ebuild | 2 +-
 www-client/pybugz/pybugz-.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/pybugz/pybugz-0.13-r2.ebuild 
b/www-client/pybugz/pybugz-0.13-r2.ebuild
index 5f7d372a34c4..5d0921645af2 100644
--- a/www-client/pybugz/pybugz-0.13-r2.ebuild
+++ b/www-client/pybugz/pybugz-0.13-r2.ebuild
@@ -4,7 +4,7 @@
 EAPI=7
 
 PYTHON_COMPAT=( python3_{8..11} )
-PYTHON_REQ_USE="readline(+)"
+PYTHON_REQ_USE="readline(+),ssl(+)"
 
 if [ "${PV}" = "" ]; then
EGIT_REPO_URI="https://github.com/williamh/pybugz.git;

diff --git a/www-client/pybugz/pybugz-.ebuild 
b/www-client/pybugz/pybugz-.ebuild
index 927c47f7b3bb..fa21df76a7c2 100644
--- a/www-client/pybugz/pybugz-.ebuild
+++ b/www-client/pybugz/pybugz-.ebuild
@@ -4,7 +4,7 @@
 EAPI=7
 
 PYTHON_COMPAT=( python3_{8..11} )
-PYTHON_REQ_USE="readline(+)"
+PYTHON_REQ_USE="readline(+),ssl(+)"
 
 if [ "${PV}" = "" ]; then
EGIT_REPO_URI="https://github.com/williamh/pybugz.git;



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2022-09-22 Thread William Hubbs
commit: fe2ad2c6ddf0379ec0cfb6a87b67c4d89c212ff3
Author: William Hubbs  gentoo  org>
AuthorDate: Thu Sep 22 20:45:58 2022 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Sep 22 20:53:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe2ad2c6

www-client/pybugz: drop 0.13-r1

Signed-off-by: William Hubbs  gentoo.org>

 www-client/pybugz/pybugz-0.13-r1.ebuild | 34 -
 1 file changed, 34 deletions(-)

diff --git a/www-client/pybugz/pybugz-0.13-r1.ebuild 
b/www-client/pybugz/pybugz-0.13-r1.ebuild
deleted file mode 100644
index 9b656c02fba0..
--- a/www-client/pybugz/pybugz-0.13-r1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..9} )
-PYTHON_REQ_USE="readline(+)"
-
-if [ "${PV}" = "" ]; then
-   EGIT_REPO_URI="https://github.com/williamh/pybugz.git;
-   inherit git-r3
-else
-   SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x86-solaris"
-fi
-
-inherit bash-completion-r1 distutils-r1
-
-DESCRIPTION="Command line interface to (Gentoo) Bugzilla"
-HOMEPAGE="https://github.com/williamh/pybugz;
-
-LICENSE="GPL-2"
-SLOT="0"
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-
-python_install_all() {
-   distutils-r1_python_install_all
-   newbashcomp contrib/bash-completion bugz
-
-   insinto /usr/share/zsh/site-functions
-   newins contrib/zsh-completion _pybugz
-}



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2022-07-28 Thread Sam James
commit: 9983a97c53c814af2fd6991d95fecf0a1a8cfd03
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 28 08:12:47 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 28 08:28:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9983a97c

www-client/pybugz: enable py3.11

No test suite exists but some basic searches work.

Closes: https://bugs.gentoo.org/861665
Signed-off-by: Sam James  gentoo.org>

 www-client/pybugz/pybugz-0.13-r2.ebuild | 2 +-
 www-client/pybugz/pybugz-.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/pybugz/pybugz-0.13-r2.ebuild 
b/www-client/pybugz/pybugz-0.13-r2.ebuild
index 5a984ec7f76c..5f7d372a34c4 100644
--- a/www-client/pybugz/pybugz-0.13-r2.ebuild
+++ b/www-client/pybugz/pybugz-0.13-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
 PYTHON_REQ_USE="readline(+)"
 
 if [ "${PV}" = "" ]; then

diff --git a/www-client/pybugz/pybugz-.ebuild 
b/www-client/pybugz/pybugz-.ebuild
index 45e9b2e4c247..927c47f7b3bb 100644
--- a/www-client/pybugz/pybugz-.ebuild
+++ b/www-client/pybugz/pybugz-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
 PYTHON_REQ_USE="readline(+)"
 
 if [ "${PV}" = "" ]; then



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2022-05-31 Thread Sam James
commit: 79c1703ce3ce8c7c81ac6756eec29ba399aba52d
Author: Sam James  gentoo  org>
AuthorDate: Wed Jun  1 02:46:26 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun  1 02:46:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79c1703c

www-client/pybugz: Stabilize 0.13-r2 ALLARCHES, #848882

Signed-off-by: Sam James  gentoo.org>

 www-client/pybugz/pybugz-0.13-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/pybugz/pybugz-0.13-r2.ebuild 
b/www-client/pybugz/pybugz-0.13-r2.ebuild
index 2b5d117d6319..5a984ec7f76c 100644
--- a/www-client/pybugz/pybugz-0.13-r2.ebuild
+++ b/www-client/pybugz/pybugz-0.13-r2.ebuild
@@ -11,7 +11,7 @@ if [ "${PV}" = "" ]; then
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x86-solaris"
 fi
 
 inherit bash-completion-r1 distutils-r1



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2022-05-31 Thread Sam James
commit: 72f5ff8204bbacf03cccd6edfd6949b00edf2fce
Author: Sam James  gentoo  org>
AuthorDate: Wed Jun  1 02:45:25 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun  1 02:45:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72f5ff82

www-client/pybugz: mark ALLARCHES

Bug: https://bugs.gentoo.org/848882
Signed-off-by: Sam James  gentoo.org>

 www-client/pybugz/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/www-client/pybugz/metadata.xml b/www-client/pybugz/metadata.xml
index 818de6c5dc80..efed718950bc 100644
--- a/www-client/pybugz/metadata.xml
+++ b/www-client/pybugz/metadata.xml
@@ -4,6 +4,7 @@
   
 willi...@gentoo.org
   
+  
   
 williamh/pybugz
   



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2022-04-17 Thread Alexey Shvetsov
commit: 6811f5ee3149ba0317b3d64c345c57d79447d190
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Sun Apr 17 19:48:55 2022 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Sun Apr 17 19:49:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6811f5ee

www-client/pybugz: works with py3.10

Signed-off-by: Alexey Shvetsov  gentoo.org>

 www-client/pybugz/{pybugz-.ebuild => pybugz-0.13-r2.ebuild} | 6 +++---
 www-client/pybugz/pybugz-.ebuild| 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/www-client/pybugz/pybugz-.ebuild 
b/www-client/pybugz/pybugz-0.13-r2.ebuild
similarity index 80%
copy from www-client/pybugz/pybugz-.ebuild
copy to www-client/pybugz/pybugz-0.13-r2.ebuild
index f95c65ea1b0d..2b5d117d6319 100644
--- a/www-client/pybugz/pybugz-.ebuild
+++ b/www-client/pybugz/pybugz-0.13-r2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{8..9} )
+PYTHON_COMPAT=( python3_{8..10} )
 PYTHON_REQ_USE="readline(+)"
 
 if [ "${PV}" = "" ]; then
@@ -11,7 +11,7 @@ if [ "${PV}" = "" ]; then
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x86-solaris"
 fi
 
 inherit bash-completion-r1 distutils-r1

diff --git a/www-client/pybugz/pybugz-.ebuild 
b/www-client/pybugz/pybugz-.ebuild
index f95c65ea1b0d..45e9b2e4c247 100644
--- a/www-client/pybugz/pybugz-.ebuild
+++ b/www-client/pybugz/pybugz-.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{8..9} )
+PYTHON_COMPAT=( python3_{8..10} )
 PYTHON_REQ_USE="readline(+)"
 
 if [ "${PV}" = "" ]; then



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2021-09-27 Thread Marek Szuba
commit: 18f793343eece5b1205ceaca13c21b7b916144ec
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Sep 27 22:04:26 2021 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Sep 27 22:05:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18f79334

www-client/pybugz: keyword 0.13-r1 for ~riscv

Signed-off-by: Marek Szuba  gentoo.org>

 www-client/pybugz/pybugz-0.13-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/pybugz/pybugz-0.13-r1.ebuild 
b/www-client/pybugz/pybugz-0.13-r1.ebuild
index bdd2da64a75..9b656c02fba 100644
--- a/www-client/pybugz/pybugz-0.13-r1.ebuild
+++ b/www-client/pybugz/pybugz-0.13-r1.ebuild
@@ -11,7 +11,7 @@ if [ "${PV}" = "" ]; then
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x86-solaris"
 fi
 
 inherit bash-completion-r1 distutils-r1



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2021-07-30 Thread Sam James
commit: c93604372487864d93da1ecff1b51ed4852a7825
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul 25 03:04:06 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jul 31 00:16:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9360437

www-client/pybugz: [QA] unconditionally install completion files

QA policy [0] says that we don't conditionalise installation of
small files. It's a wasteful rebuild and inconsistent across packages
for when users desire completions to be available.

[0] https://projects.gentoo.org/qa/policy-guide/installed-files.html#pg0301
Signed-off-by: Sam James  gentoo.org>

 .../pybugz/{pybugz-0.13.ebuild => pybugz-0.13-r1.ebuild}  | 11 +--
 www-client/pybugz/pybugz-.ebuild  | 11 +--
 2 files changed, 10 insertions(+), 12 deletions(-)

diff --git a/www-client/pybugz/pybugz-0.13.ebuild 
b/www-client/pybugz/pybugz-0.13-r1.ebuild
similarity index 83%
rename from www-client/pybugz/pybugz-0.13.ebuild
rename to www-client/pybugz/pybugz-0.13-r1.ebuild
index 263a9fda68c..bdd2da64a75 100644
--- a/www-client/pybugz/pybugz-0.13.ebuild
+++ b/www-client/pybugz/pybugz-0.13-r1.ebuild
@@ -2,7 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{7..9} )
+
+PYTHON_COMPAT=( python3_{8..9} )
 PYTHON_REQ_USE="readline(+)"
 
 if [ "${PV}" = "" ]; then
@@ -17,9 +18,9 @@ inherit bash-completion-r1 distutils-r1
 
 DESCRIPTION="Command line interface to (Gentoo) Bugzilla"
 HOMEPAGE="https://github.com/williamh/pybugz;
+
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="zsh-completion"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
@@ -28,8 +29,6 @@ python_install_all() {
distutils-r1_python_install_all
newbashcomp contrib/bash-completion bugz
 
-   if use zsh-completion ; then
-   insinto /usr/share/zsh/site-functions
-   newins contrib/zsh-completion _pybugz
-   fi
+   insinto /usr/share/zsh/site-functions
+   newins contrib/zsh-completion _pybugz
 }

diff --git a/www-client/pybugz/pybugz-.ebuild 
b/www-client/pybugz/pybugz-.ebuild
index 96ffebb7859..f95c65ea1b0 100644
--- a/www-client/pybugz/pybugz-.ebuild
+++ b/www-client/pybugz/pybugz-.ebuild
@@ -2,7 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{7..9} )
+
+PYTHON_COMPAT=( python3_{8..9} )
 PYTHON_REQ_USE="readline(+)"
 
 if [ "${PV}" = "" ]; then
@@ -17,9 +18,9 @@ inherit bash-completion-r1 distutils-r1
 
 DESCRIPTION="Command line interface to (Gentoo) Bugzilla"
 HOMEPAGE="https://github.com/williamh/pybugz;
+
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="zsh-completion"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
@@ -28,8 +29,6 @@ python_install_all() {
distutils-r1_python_install_all
newbashcomp contrib/bash-completion bugz
 
-   if use zsh-completion ; then
-   insinto /usr/share/zsh/site-functions
-   newins contrib/zsh-completion _pybugz
-   fi
+   insinto /usr/share/zsh/site-functions
+   newins contrib/zsh-completion _pybugz
 }



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2021-01-06 Thread Fabian Groffen
commit: 27f2aa43896c575d6f3df00bbd8ccab39fde2dcb
Author: Fabian Groffen  gentoo  org>
AuthorDate: Wed Jan  6 11:36:51 2021 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Wed Jan  6 11:36:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27f2aa43

www-client/pybugz: drop x86-macos

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Fabian Groffen  gentoo.org>

 www-client/pybugz/pybugz-0.13.ebuild | 4 ++--
 www-client/pybugz/pybugz-.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/www-client/pybugz/pybugz-0.13.ebuild 
b/www-client/pybugz/pybugz-0.13.ebuild
index 638ea47e52e..f4e7bf62359 100644
--- a/www-client/pybugz/pybugz-0.13.ebuild
+++ b/www-client/pybugz/pybugz-0.13.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -10,7 +10,7 @@ if [ "${PV}" = "" ]; then
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x86-solaris"
 fi
 
 inherit bash-completion-r1 distutils-r1

diff --git a/www-client/pybugz/pybugz-.ebuild 
b/www-client/pybugz/pybugz-.ebuild
index 2210d7f4327..19d884a05bc 100644
--- a/www-client/pybugz/pybugz-.ebuild
+++ b/www-client/pybugz/pybugz-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -10,7 +10,7 @@ if [ "${PV}" = "" ]; then
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x86-solaris"
 fi
 
 inherit bash-completion-r1 distutils-r1



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2020-12-27 Thread Fabian Groffen
commit: 02f0f29beede7717589a78fc8633bc89031083f9
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Dec 27 18:22:47 2020 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Dec 27 18:22:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02f0f29b

www-client/pybugz: drop ppc-aix m68k-mint

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Fabian Groffen  gentoo.org>

 www-client/pybugz/pybugz-0.13.ebuild | 2 +-
 www-client/pybugz/pybugz-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/pybugz/pybugz-0.13.ebuild 
b/www-client/pybugz/pybugz-0.13.ebuild
index 226dd0826b8..638ea47e52e 100644
--- a/www-client/pybugz/pybugz-0.13.ebuild
+++ b/www-client/pybugz/pybugz-0.13.ebuild
@@ -10,7 +10,7 @@ if [ "${PV}" = "" ]; then
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc 
x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x86-solaris"
 fi
 
 inherit bash-completion-r1 distutils-r1

diff --git a/www-client/pybugz/pybugz-.ebuild 
b/www-client/pybugz/pybugz-.ebuild
index 2f1f75bd296..2210d7f4327 100644
--- a/www-client/pybugz/pybugz-.ebuild
+++ b/www-client/pybugz/pybugz-.ebuild
@@ -10,7 +10,7 @@ if [ "${PV}" = "" ]; then
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x86-solaris"
 fi
 
 inherit bash-completion-r1 distutils-r1



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2020-09-15 Thread Pacho Ramos
commit: fbdc40ee9678550cd2a2e9b01e2793d8098b4be2
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Sep 15 11:03:36 2020 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Sep 15 11:03:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbdc40ee

www-client/pybugz: Support newer python

Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: Pacho Ramos  gentoo.org>

 www-client/pybugz/pybugz-0.13.ebuild | 2 +-
 www-client/pybugz/pybugz-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/pybugz/pybugz-0.13.ebuild 
b/www-client/pybugz/pybugz-0.13.ebuild
index 65bab674467..226dd0826b8 100644
--- a/www-client/pybugz/pybugz-0.13.ebuild
+++ b/www-client/pybugz/pybugz-0.13.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6..9} )
 PYTHON_REQ_USE="readline(+)"
 
 if [ "${PV}" = "" ]; then

diff --git a/www-client/pybugz/pybugz-.ebuild 
b/www-client/pybugz/pybugz-.ebuild
index 771fc0b4610..2f1f75bd296 100644
--- a/www-client/pybugz/pybugz-.ebuild
+++ b/www-client/pybugz/pybugz-.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6..9} )
 PYTHON_REQ_USE="readline(+)"
 
 if [ "${PV}" = "" ]; then



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2020-07-04 Thread Mart Raudsepp
commit: e8016161d33900e99bbf4df621a9dba44c84f717
Author: Sam James (sam_c)  cmpct  info>
AuthorDate: Sat Jul  4 19:18:15 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Jul  4 21:53:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8016161

www-client/pybugz: arm64 stable (bug #730724)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c)  cmpct.info>
Signed-off-by: Mart Raudsepp  gentoo.org>

 www-client/pybugz/pybugz-0.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/pybugz/pybugz-0.13.ebuild 
b/www-client/pybugz/pybugz-0.13.ebuild
index 6f6f4a10f26..65bab674467 100644
--- a/www-client/pybugz/pybugz-0.13.ebuild
+++ b/www-client/pybugz/pybugz-0.13.ebuild
@@ -10,7 +10,7 @@ if [ "${PV}" = "" ]; then
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc 
x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc 
x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x86-solaris"
 fi
 
 inherit bash-completion-r1 distutils-r1



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2020-06-06 Thread William Hubbs
commit: 0a9f8ada19c1dd704f38a480f41b1b8da72d4365
Author: William Hubbs  gentoo  org>
AuthorDate: Sat Jun  6 20:06:49 2020 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sat Jun  6 20:21:54 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a9f8ada

www-client/pybugz: migrate to eapi 7

Signed-off-by: William Hubbs  gentoo.org>

 www-client/pybugz/pybugz-0.13.ebuild | 3 +--
 www-client/pybugz/pybugz-.ebuild | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/www-client/pybugz/pybugz-0.13.ebuild 
b/www-client/pybugz/pybugz-0.13.ebuild
index 8f3af9a1b3c..6f6f4a10f26 100644
--- a/www-client/pybugz/pybugz-0.13.ebuild
+++ b/www-client/pybugz/pybugz-0.13.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 PYTHON_COMPAT=( python3_{6,7,8} )
 PYTHON_REQ_USE="readline(+)"
 
@@ -11,7 +11,6 @@ if [ "${PV}" = "" ]; then
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc 
x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x86-solaris"
-   inherit vcs-snapshot
 fi
 
 inherit bash-completion-r1 distutils-r1

diff --git a/www-client/pybugz/pybugz-.ebuild 
b/www-client/pybugz/pybugz-.ebuild
index 41c97b138b4..771fc0b4610 100644
--- a/www-client/pybugz/pybugz-.ebuild
+++ b/www-client/pybugz/pybugz-.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 PYTHON_COMPAT=( python3_{6,7} )
 PYTHON_REQ_USE="readline(+)"
 
@@ -11,7 +11,6 @@ if [ "${PV}" = "" ]; then
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x86-solaris"
-   inherit vcs-snapshot
 fi
 
 inherit bash-completion-r1 distutils-r1



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2020-06-06 Thread Alexey Shvetsov
commit: e40612e00a3b50b004bc7da6dfa1db770c61540d
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Sat Jun  6 18:08:40 2020 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Sat Jun  6 18:09:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e40612e0

www-client/pybugz: works with py38

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Alexey Shvetsov  gentoo.org>

 www-client/pybugz/pybugz-0.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/pybugz/pybugz-0.13.ebuild 
b/www-client/pybugz/pybugz-0.13.ebuild
index 25fa8dd2c7e..8f3af9a1b3c 100644
--- a/www-client/pybugz/pybugz-0.13.ebuild
+++ b/www-client/pybugz/pybugz-0.13.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7,8} )
 PYTHON_REQ_USE="readline(+)"
 
 if [ "${PV}" = "" ]; then



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2020-05-12 Thread Agostino Sarubbo
commit: 23cf586f99a0df2c08a6c24248369ceb7f4365f0
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue May 12 13:14:24 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue May 12 13:14:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23cf586f

www-client/pybugz: stable for s390

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-client/pybugz/pybugz-0.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/pybugz/pybugz-0.13.ebuild 
b/www-client/pybugz/pybugz-0.13.ebuild
index d87f28152af..25fa8dd2c7e 100644
--- a/www-client/pybugz/pybugz-0.13.ebuild
+++ b/www-client/pybugz/pybugz-0.13.ebuild
@@ -10,7 +10,7 @@ if [ "${PV}" = "" ]; then
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 
sparc x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc 
x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x86-solaris"
inherit vcs-snapshot
 fi
 



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2019-06-05 Thread Agostino Sarubbo
commit: 3a237cca72863d1ac5f55693ed6877e6fd40fdf6
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jun  5 13:39:28 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jun  5 13:39:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a237cca

www-client/pybugz: works on s390

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 www-client/pybugz/pybugz-0.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/pybugz/pybugz-0.13.ebuild 
b/www-client/pybugz/pybugz-0.13.ebuild
index c353a5bfe78..92e80172117 100644
--- a/www-client/pybugz/pybugz-0.13.ebuild
+++ b/www-client/pybugz/pybugz-0.13.ebuild
@@ -10,7 +10,7 @@ if [ "${PV}" = "" ]; then
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   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"
+   KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
inherit vcs-snapshot
 fi
 



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2018-12-27 Thread William Hubbs
commit: 35ae67ce35bf6fc1f45badcff1a44166c84d4c61
Author: William Hubbs  gentoo  org>
AuthorDate: Thu Dec 27 23:02:08 2018 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Dec 27 23:03:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35ae67ce

www-client/pybugz: remove old

Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: William Hubbs  gentoo.org>

 www-client/pybugz/Manifest |  1 -
 www-client/pybugz/pybugz-0.12.1.ebuild | 36 --
 2 files changed, 37 deletions(-)

diff --git a/www-client/pybugz/Manifest b/www-client/pybugz/Manifest
index d78f7a60001..ba05047de28 100644
--- a/www-client/pybugz/Manifest
+++ b/www-client/pybugz/Manifest
@@ -1,2 +1 @@
-DIST pybugz-0.12.1.tar.gz 25606 BLAKE2B 
907a87346dbe0a949c3cf2c1b8e601dfbc0a1122c0647e8fc9de25b097fb5f31f39dd99016ee2febde11ac58f5cfb527127331e53f71fef3ad64de213664afe0
 SHA512 
bb76baf8105f4b56b106c3e63f5aebb322659141edf9c5e5af747db5824abffb7b127703ecb7111f9480d05bdb2f11b3fef2cd5f99078d9dda00e841b4ce7394
 DIST pybugz-0.13.tar.gz 26876 BLAKE2B 
fbab5ff308e137bf590620362fe102408444c7c1cb375f2c2d426cf5873fba5cf8759d7083be4c6bd305191680af8d1afc3aaf0648e186a93af4dd0b60442093
 SHA512 
2cbbd32b44d0d513e91e5c35dca5c68e34a963190c31f9139922f6b8ba69c7362063155b35833a00c2bd064f94d99367e2941a573aed4488f9a71a3b163d4b54

diff --git a/www-client/pybugz/pybugz-0.12.1.ebuild 
b/www-client/pybugz/pybugz-0.12.1.ebuild
deleted file mode 100644
index 8c60c0ae338..000
--- a/www-client/pybugz/pybugz-0.12.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python3_4 python3_5 )
-PYTHON_REQ_USE="readline(+)"
-
-if [ "${PV}" = "" ]; then
-   EGIT_REPO_URI="https://github.com/williamh/pybugz.git;
-   inherit git-r3
-else
-   SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   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"
-   inherit vcs-snapshot
-fi
-
-inherit bash-completion-r1 distutils-r1
-
-DESCRIPTION="Command line interface to (Gentoo) Bugzilla"
-HOMEPAGE="https://github.com/williamh/pybugz;
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="zsh-completion"
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-
-python_install_all() {
-   distutils-r1_python_install_all
-   newbashcomp contrib/bash-completion bugz
-
-   if use zsh-completion ; then
-   insinto /usr/share/zsh/site-functions
-   newins contrib/zsh-completion _pybugz
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2018-10-21 Thread Pacho Ramos
commit: 9a1e58bd4dc0f0fb1fc8a7271df3076d6e376dd3
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Oct 21 09:17:50 2018 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Oct 21 09:17:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a1e58bd

www-client/pybugz: Support python 3.7

Signed-off-by: Pacho Ramos  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 www-client/pybugz/pybugz-0.13.ebuild | 4 ++--
 www-client/pybugz/pybugz-.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/www-client/pybugz/pybugz-0.13.ebuild 
b/www-client/pybugz/pybugz-0.13.ebuild
index 1376fb7ff52..575ba97f84d 100644
--- a/www-client/pybugz/pybugz-0.13.ebuild
+++ b/www-client/pybugz/pybugz-0.13.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-PYTHON_COMPAT=( python3_{4,5,6} )
+PYTHON_COMPAT=( python3_{4,5,6,7} )
 PYTHON_REQ_USE="readline(+)"
 
 if [ "${PV}" = "" ]; then

diff --git a/www-client/pybugz/pybugz-.ebuild 
b/www-client/pybugz/pybugz-.ebuild
index 580e0af4cd1..f5305446877 100644
--- a/www-client/pybugz/pybugz-.ebuild
+++ b/www-client/pybugz/pybugz-.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-PYTHON_COMPAT=( python3_{4,5,6} )
+PYTHON_COMPAT=( python3_{4,5,6,7} )
 PYTHON_REQ_USE="readline(+)"
 
 if [ "${PV}" = "" ]; then



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2017-08-09 Thread Alexey Shvetsov
commit: 1df4f4bc9e90e99cfecd881de489d2ce79deaa37
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Wed Aug  9 18:07:50 2017 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Wed Aug  9 18:07:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1df4f4bc

www-client/pybugz: Works with py3_6

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 www-client/pybugz/pybugz-0.13.ebuild | 2 +-
 www-client/pybugz/pybugz-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/pybugz/pybugz-0.13.ebuild 
b/www-client/pybugz/pybugz-0.13.ebuild
index 8c60c0ae338..1376fb7ff52 100644
--- a/www-client/pybugz/pybugz-0.13.ebuild
+++ b/www-client/pybugz/pybugz-0.13.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-PYTHON_COMPAT=( python3_4 python3_5 )
+PYTHON_COMPAT=( python3_{4,5,6} )
 PYTHON_REQ_USE="readline(+)"
 
 if [ "${PV}" = "" ]; then

diff --git a/www-client/pybugz/pybugz-.ebuild 
b/www-client/pybugz/pybugz-.ebuild
index 50fd5e4d8a9..580e0af4cd1 100644
--- a/www-client/pybugz/pybugz-.ebuild
+++ b/www-client/pybugz/pybugz-.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-PYTHON_COMPAT=( python3_4 python3_5 )
+PYTHON_COMPAT=( python3_{4,5,6} )
 PYTHON_REQ_USE="readline(+)"
 
 if [ "${PV}" = "" ]; then



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2017-07-30 Thread Michał Górny
commit: 7b68107c83e28d27cb9d81137e50cf7363c07cfa
Author: David Hicks  hicks  id  au>
AuthorDate: Sat Jul 29 15:06:22 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jul 30 09:22:49 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b68107c

www-client/pybugz: use HTTPS for GitHub

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 www-client/pybugz/pybugz-0.12.1.ebuild | 3 +--
 www-client/pybugz/pybugz-0.13.ebuild   | 3 +--
 www-client/pybugz/pybugz-.ebuild   | 3 +--
 3 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/www-client/pybugz/pybugz-0.12.1.ebuild 
b/www-client/pybugz/pybugz-0.12.1.ebuild
index 54eabc2cf24..8c60c0ae338 100644
--- a/www-client/pybugz/pybugz-0.12.1.ebuild
+++ b/www-client/pybugz/pybugz-0.12.1.ebuild
@@ -6,8 +6,7 @@ PYTHON_COMPAT=( python3_4 python3_5 )
 PYTHON_REQ_USE="readline(+)"
 
 if [ "${PV}" = "" ]; then
-   EGIT_REPO_URI="git://github.com/williamh/pybugz.git
-   https://github.com/williamh/pybugz.git;
+   EGIT_REPO_URI="https://github.com/williamh/pybugz.git;
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"

diff --git a/www-client/pybugz/pybugz-0.13.ebuild 
b/www-client/pybugz/pybugz-0.13.ebuild
index 54eabc2cf24..8c60c0ae338 100644
--- a/www-client/pybugz/pybugz-0.13.ebuild
+++ b/www-client/pybugz/pybugz-0.13.ebuild
@@ -6,8 +6,7 @@ PYTHON_COMPAT=( python3_4 python3_5 )
 PYTHON_REQ_USE="readline(+)"
 
 if [ "${PV}" = "" ]; then
-   EGIT_REPO_URI="git://github.com/williamh/pybugz.git
-   https://github.com/williamh/pybugz.git;
+   EGIT_REPO_URI="https://github.com/williamh/pybugz.git;
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"

diff --git a/www-client/pybugz/pybugz-.ebuild 
b/www-client/pybugz/pybugz-.ebuild
index f44d892acfb..50fd5e4d8a9 100644
--- a/www-client/pybugz/pybugz-.ebuild
+++ b/www-client/pybugz/pybugz-.ebuild
@@ -6,8 +6,7 @@ PYTHON_COMPAT=( python3_4 python3_5 )
 PYTHON_REQ_USE="readline(+)"
 
 if [ "${PV}" = "" ]; then
-   EGIT_REPO_URI="git://github.com/williamh/pybugz.git
-   https://github.com/williamh/pybugz.git;
+   EGIT_REPO_URI="https://github.com/williamh/pybugz.git;
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2017-01-01 Thread William Hubbs
commit: 21e8932e8772d2a04b5c1ed95babc76d4e063766
Author: William Hubbs  gentoo  org>
AuthorDate: Sun Jan  1 19:19:20 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sun Jan  1 19:25:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21e8932e

www-client/pybugz: Stabilize 0.13 for #604308

Package-Manager: Portage-2.3.0, Repoman-2.3.1

 www-client/pybugz/pybugz-0.13.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/pybugz/pybugz-0.13.ebuild 
b/www-client/pybugz/pybugz-0.13.ebuild
index ae71b89..59f0e73 100644
--- a/www-client/pybugz/pybugz-0.13.ebuild
+++ b/www-client/pybugz/pybugz-0.13.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -12,7 +12,7 @@ if [ "${PV}" = "" ]; then
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x86-solaris"
+   KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x86-solaris"
inherit vcs-snapshot
 fi
 



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2016-11-02 Thread William Hubbs
commit: 8ee15cde432fb0b74ccf5ba50ea4aa3cf4db8ada
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Nov  2 16:53:25 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Nov  2 16:53:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ee15cde

www-client/pybugz: sync live ebuild

Package-Manager: portage-2.3.0

 www-client/pybugz/pybugz-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/pybugz/pybugz-.ebuild 
b/www-client/pybugz/pybugz-.ebuild
index 200c8dc..ae71b89 100644
--- a/www-client/pybugz/pybugz-.ebuild
+++ b/www-client/pybugz/pybugz-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -12,7 +12,7 @@ if [ "${PV}" = "" ]; then
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x86-solaris"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x86-solaris"
inherit vcs-snapshot
 fi
 



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2016-11-02 Thread William Hubbs
commit: 5f6d70ba477a7e3d68dda817fd2f7698eac06a84
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Nov  2 16:46:26 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Nov  2 16:50:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f6d70ba

www-client/pybugz: 0.13 version bump

Package-Manager: portage-2.3.0

 www-client/pybugz/Manifest   |  1 +
 www-client/pybugz/pybugz-0.13.ebuild | 38 
 2 files changed, 39 insertions(+)

diff --git a/www-client/pybugz/Manifest b/www-client/pybugz/Manifest
index bac3042..6843a6b 100644
--- a/www-client/pybugz/Manifest
+++ b/www-client/pybugz/Manifest
@@ -1 +1,2 @@
 DIST pybugz-0.12.1.tar.gz 25606 SHA256 
aade267d2ee6b02d6872e019ef4ddf8f96e1d81668faa2506e96875fa2981bc7 SHA512 
bb76baf8105f4b56b106c3e63f5aebb322659141edf9c5e5af747db5824abffb7b127703ecb7111f9480d05bdb2f11b3fef2cd5f99078d9dda00e841b4ce7394
 WHIRLPOOL 
0b345efb5f6ce40e5c5910f576e544b2fc65c73beec3843fae21504455c23f3cd5aac41801a2eb733def50485455345e78e8c94287a1943747f608cc63a27e3d
+DIST pybugz-0.13.tar.gz 26876 SHA256 
a99309d42b7ed2e52cc0f0f3adc72d1ddc9354e3d944af276f9a7da946665afb SHA512 
2cbbd32b44d0d513e91e5c35dca5c68e34a963190c31f9139922f6b8ba69c7362063155b35833a00c2bd064f94d99367e2941a573aed4488f9a71a3b163d4b54
 WHIRLPOOL 
866b759b37e96be8a0d3e8004b760aaef2368de8319628791830caf84a3c87fe46bf464358e98b3ebcb37f027e9e4ec4843a70ab34c6bf8a121e88cad84f7877

diff --git a/www-client/pybugz/pybugz-0.13.ebuild 
b/www-client/pybugz/pybugz-0.13.ebuild
new file mode 100644
index ..ae71b89
--- /dev/null
+++ b/www-client/pybugz/pybugz-0.13.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python3_4 python3_5 )
+PYTHON_REQ_USE="readline(+)"
+
+if [ "${PV}" = "" ]; then
+   EGIT_REPO_URI="git://github.com/williamh/pybugz.git
+   https://github.com/williamh/pybugz.git;
+   inherit git-r3
+else
+   SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x86-solaris"
+   inherit vcs-snapshot
+fi
+
+inherit bash-completion-r1 distutils-r1
+
+DESCRIPTION="Command line interface to (Gentoo) Bugzilla"
+HOMEPAGE="https://github.com/williamh/pybugz;
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="zsh-completion"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+
+python_install_all() {
+   distutils-r1_python_install_all
+   newbashcomp contrib/bash-completion bugz
+
+   if use zsh-completion ; then
+   insinto /usr/share/zsh/site-functions
+   newins contrib/zsh-completion _pybugz
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2016-05-21 Thread William Hubbs
commit: 1e01b20bb7fa4c64e51e26eef4dac496afa8a7b4
Author: William Hubbs  gentoo  org>
AuthorDate: Sat May 21 15:16:20 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sat May 21 15:17:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e01b20b

www-client/pybugz: remove old version

Package-Manager: portage-2.2.28

 www-client/pybugz/Manifest |  1 -
 www-client/pybugz/pybugz-0.11.1.ebuild | 37 --
 2 files changed, 38 deletions(-)

diff --git a/www-client/pybugz/Manifest b/www-client/pybugz/Manifest
index 9a2e212..bac3042 100644
--- a/www-client/pybugz/Manifest
+++ b/www-client/pybugz/Manifest
@@ -1,2 +1 @@
-DIST pybugz-0.11.1.tar.gz 23787 SHA256 
05b2cef8a655ab34d9279e6341d16a803af07958e72320125cb30a3fd6bc8eec SHA512 
bc2277a8e900765bf1799e5de65de5df8184bf50b6ca7c78478a9f43ceb78aa66bcb53c3fd89f7b194b13fa14ad162291d559554a8cb073c071104e2b0978c61
 WHIRLPOOL 
cb8f9a36cac6ae7a42e43d6d9489e2593c8ae76153b769bf04f269967e6477e37b1633d30969c4d7c6d0bcd816aff7bd189a1754c06769e3ea0f761eda3c16db
 DIST pybugz-0.12.1.tar.gz 25606 SHA256 
aade267d2ee6b02d6872e019ef4ddf8f96e1d81668faa2506e96875fa2981bc7 SHA512 
bb76baf8105f4b56b106c3e63f5aebb322659141edf9c5e5af747db5824abffb7b127703ecb7111f9480d05bdb2f11b3fef2cd5f99078d9dda00e841b4ce7394
 WHIRLPOOL 
0b345efb5f6ce40e5c5910f576e544b2fc65c73beec3843fae21504455c23f3cd5aac41801a2eb733def50485455345e78e8c94287a1943747f608cc63a27e3d

diff --git a/www-client/pybugz/pybugz-0.11.1.ebuild 
b/www-client/pybugz/pybugz-0.11.1.ebuild
deleted file mode 100644
index 672aa1a..000
--- a/www-client/pybugz/pybugz-0.11.1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python3_3 python3_4 python3_5 )
-PYTHON_REQ_USE="readline(+)"
-
-if [ "${PV}" = "" ]; then
-   EGIT_REPO_URI="git://github.com/williamh/pybugz.git
-   https://github.com/williamh/pybugz.git;
-   inherit git-r3
-else
-   SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~ppc-aix 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
-   inherit vcs-snapshot
-fi
-
-inherit bash-completion-r1 distutils-r1
-
-DESCRIPTION="Command line interface to (Gentoo) Bugzilla"
-HOMEPAGE="https://www.github.com/williamh/pybugz;
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="zsh-completion"
-
-RDEPEND="${DEPEND}"
-
-python_install_all() {
-   distutils-r1_python_install_all
-   newbashcomp contrib/bash-completion bugz
-
-   if use zsh-completion ; then
-   insinto /usr/share/zsh/site-functions
-   newins contrib/zsh-completion _pybugz
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2016-03-26 Thread Agostino Sarubbo
commit: f6c685f76bf71590419764ce2acc56130820ed0c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Mar 26 14:15:54 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Mar 26 14:15:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6c685f7

www-client/pybugz: alpha/arm/hppa stable, (ALLARCHES policy) wrt bug #577498

Package-Manager: portage-2.2.26
Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-client/pybugz/pybugz-0.12.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/pybugz/pybugz-0.12.1.ebuild 
b/www-client/pybugz/pybugz-0.12.1.ebuild
index 5712d1c..b98f5b5 100644
--- a/www-client/pybugz/pybugz-0.12.1.ebuild
+++ b/www-client/pybugz/pybugz-0.12.1.ebuild
@@ -12,7 +12,7 @@ if [ "${PV}" = "" ]; then
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x86-solaris"
+   KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x86-solaris"
inherit vcs-snapshot
 fi
 



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2016-03-19 Thread Agostino Sarubbo
commit: 7402a6266ee252228944b7da8bc87d5dcfa6f778
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Mar 17 10:48:27 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Mar 17 10:48:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7402a626

www-client/pybugz: ppc64 stable wrt bug #577498

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-client/pybugz/pybugz-0.12.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/pybugz/pybugz-0.12.1.ebuild 
b/www-client/pybugz/pybugz-0.12.1.ebuild
index 2eef93a..9098d90 100644
--- a/www-client/pybugz/pybugz-0.12.1.ebuild
+++ b/www-client/pybugz/pybugz-0.12.1.ebuild
@@ -12,7 +12,7 @@ if [ "${PV}" = "" ]; then
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x86-solaris"
inherit vcs-snapshot
 fi
 



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2016-03-19 Thread Agostino Sarubbo
commit: 0377831ca099780480b073012748cf3f1afb51c4
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Mar 19 11:34:50 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Mar 19 11:34:50 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0377831c

www-client/pybugz: sparc stable wrt bug #577498

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-client/pybugz/pybugz-0.12.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/pybugz/pybugz-0.12.1.ebuild 
b/www-client/pybugz/pybugz-0.12.1.ebuild
index 9098d90..8d6d025 100644
--- a/www-client/pybugz/pybugz-0.12.1.ebuild
+++ b/www-client/pybugz/pybugz-0.12.1.ebuild
@@ -12,7 +12,7 @@ if [ "${PV}" = "" ]; then
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x86-solaris"
inherit vcs-snapshot
 fi
 



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2016-03-19 Thread Agostino Sarubbo
commit: 276f81106db6356ba9f18f5d9fb2375126d0b868
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 16 11:49:03 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 16 11:51:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=276f8110

www-client/pybugz: ppc stable wrt bug #577498

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-client/pybugz/pybugz-0.12.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/pybugz/pybugz-0.12.1.ebuild 
b/www-client/pybugz/pybugz-0.12.1.ebuild
index c9df4ad..2eef93a 100644
--- a/www-client/pybugz/pybugz-0.12.1.ebuild
+++ b/www-client/pybugz/pybugz-0.12.1.ebuild
@@ -12,7 +12,7 @@ if [ "${PV}" = "" ]; then
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x86-solaris"
inherit vcs-snapshot
 fi
 



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2016-03-16 Thread Agostino Sarubbo
commit: f117ac1565bb6da95b6c2384c0b4b19d9555f9f1
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 16 11:00:22 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 16 11:00:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f117ac15

www-client/pybugz: x86 stable wrt bug #577498

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-client/pybugz/pybugz-0.12.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/pybugz/pybugz-0.12.1.ebuild 
b/www-client/pybugz/pybugz-0.12.1.ebuild
index 217ade1..c9df4ad 100644
--- a/www-client/pybugz/pybugz-0.12.1.ebuild
+++ b/www-client/pybugz/pybugz-0.12.1.ebuild
@@ -12,7 +12,7 @@ if [ "${PV}" = "" ]; then
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc 
~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x86-solaris"
inherit vcs-snapshot
 fi
 



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2016-03-16 Thread Agostino Sarubbo
commit: da18b7b01ded6013bc1d78d8bd12369aa0eec502
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Mar 16 10:58:31 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Mar 16 10:58:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da18b7b0

www-client/pybugz: amd64 stable wrt bug #577498

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 www-client/pybugz/pybugz-0.12.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/pybugz/pybugz-0.12.1.ebuild 
b/www-client/pybugz/pybugz-0.12.1.ebuild
index 5d5c9ed..217ade1 100644
--- a/www-client/pybugz/pybugz-0.12.1.ebuild
+++ b/www-client/pybugz/pybugz-0.12.1.ebuild
@@ -12,7 +12,7 @@ if [ "${PV}" = "" ]; then
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc 
~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x86-solaris"
inherit vcs-snapshot
 fi
 



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2016-03-03 Thread Stephen Klimaszewski
commit: 5898ab20a0a534e632058a53ed615e7c399b1fcd
Author: Steev Klimaszewski  gentoo  org>
AuthorDate: Fri Mar  4 02:20:40 2016 +
Commit: Stephen Klimaszewski  gentoo  org>
CommitDate: Fri Mar  4 02:21:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5898ab20

www-client/pybugz: Keyword 0.12.1 for ~arm64

Tested on Cortex-A53

Package-Manager: portage-2.2.27

 www-client/pybugz/pybugz-0.12.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/pybugz/pybugz-0.12.1.ebuild 
b/www-client/pybugz/pybugz-0.12.1.ebuild
index 3445cef..5d5c9ed 100644
--- a/www-client/pybugz/pybugz-0.12.1.ebuild
+++ b/www-client/pybugz/pybugz-0.12.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -12,7 +12,7 @@ if [ "${PV}" = "" ]; then
inherit git-r3
 else
SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x86-solaris"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x86-solaris"
inherit vcs-snapshot
 fi
 



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2016-02-22 Thread William Hubbs
commit: 04bae90690ef1726a68d31e287033e1680534dbd
Author: William Hubbs  gentoo  org>
AuthorDate: Mon Feb 22 17:51:45 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Feb 22 17:51:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04bae906

www-client/pybugz: version bump

 www-client/pybugz/Manifest | 2 +-
 www-client/pybugz/{pybugz-0.12.ebuild => pybugz-0.12.1.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/pybugz/Manifest b/www-client/pybugz/Manifest
index e719ab8..9a2e212 100644
--- a/www-client/pybugz/Manifest
+++ b/www-client/pybugz/Manifest
@@ -1,2 +1,2 @@
 DIST pybugz-0.11.1.tar.gz 23787 SHA256 
05b2cef8a655ab34d9279e6341d16a803af07958e72320125cb30a3fd6bc8eec SHA512 
bc2277a8e900765bf1799e5de65de5df8184bf50b6ca7c78478a9f43ceb78aa66bcb53c3fd89f7b194b13fa14ad162291d559554a8cb073c071104e2b0978c61
 WHIRLPOOL 
cb8f9a36cac6ae7a42e43d6d9489e2593c8ae76153b769bf04f269967e6477e37b1633d30969c4d7c6d0bcd816aff7bd189a1754c06769e3ea0f761eda3c16db
-DIST pybugz-0.12.tar.gz 25606 SHA256 
28361cd9188b538ef63402ca3a25c122bed5479e91835ce1a6379e83b5fef0fa SHA512 
584539f2c681075f7d96acef0be0fdf183f309540c63bc02c56ab25b59ea0e767aa15ad28fa7543f74bb11c139956b7aef8f239883e3e877e7b995b042a3fca0
 WHIRLPOOL 
6f42e64e618fece288e321af59f61dced77f579c7dd2c3454b8acc68bdfda2cb480aa54536b91e1c36e6799d1d0ba87097cb2252fb1657dc7e73ff60e9a3256c
+DIST pybugz-0.12.1.tar.gz 25606 SHA256 
aade267d2ee6b02d6872e019ef4ddf8f96e1d81668faa2506e96875fa2981bc7 SHA512 
bb76baf8105f4b56b106c3e63f5aebb322659141edf9c5e5af747db5824abffb7b127703ecb7111f9480d05bdb2f11b3fef2cd5f99078d9dda00e841b4ce7394
 WHIRLPOOL 
0b345efb5f6ce40e5c5910f576e544b2fc65c73beec3843fae21504455c23f3cd5aac41801a2eb733def50485455345e78e8c94287a1943747f608cc63a27e3d

diff --git a/www-client/pybugz/pybugz-0.12.ebuild 
b/www-client/pybugz/pybugz-0.12.1.ebuild
similarity index 100%
rename from www-client/pybugz/pybugz-0.12.ebuild
rename to www-client/pybugz/pybugz-0.12.1.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2016-02-21 Thread William Hubbs
commit: ee01b05f82b6714d0a71a5ae41f8a739bfb612ce
Author: William Hubbs  gentoo  org>
AuthorDate: Sun Feb 21 22:32:49 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sun Feb 21 22:33:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee01b05f

www-client/pybugz: version bump

 www-client/pybugz/Manifest   |  1 +
 www-client/pybugz/pybugz-0.12.ebuild | 38 
 2 files changed, 39 insertions(+)

diff --git a/www-client/pybugz/Manifest b/www-client/pybugz/Manifest
index a4ce5bc..e719ab8 100644
--- a/www-client/pybugz/Manifest
+++ b/www-client/pybugz/Manifest
@@ -1 +1,2 @@
 DIST pybugz-0.11.1.tar.gz 23787 SHA256 
05b2cef8a655ab34d9279e6341d16a803af07958e72320125cb30a3fd6bc8eec SHA512 
bc2277a8e900765bf1799e5de65de5df8184bf50b6ca7c78478a9f43ceb78aa66bcb53c3fd89f7b194b13fa14ad162291d559554a8cb073c071104e2b0978c61
 WHIRLPOOL 
cb8f9a36cac6ae7a42e43d6d9489e2593c8ae76153b769bf04f269967e6477e37b1633d30969c4d7c6d0bcd816aff7bd189a1754c06769e3ea0f761eda3c16db
+DIST pybugz-0.12.tar.gz 25606 SHA256 
28361cd9188b538ef63402ca3a25c122bed5479e91835ce1a6379e83b5fef0fa SHA512 
584539f2c681075f7d96acef0be0fdf183f309540c63bc02c56ab25b59ea0e767aa15ad28fa7543f74bb11c139956b7aef8f239883e3e877e7b995b042a3fca0
 WHIRLPOOL 
6f42e64e618fece288e321af59f61dced77f579c7dd2c3454b8acc68bdfda2cb480aa54536b91e1c36e6799d1d0ba87097cb2252fb1657dc7e73ff60e9a3256c

diff --git a/www-client/pybugz/pybugz-0.12.ebuild 
b/www-client/pybugz/pybugz-0.12.ebuild
new file mode 100644
index 000..3445cef
--- /dev/null
+++ b/www-client/pybugz/pybugz-0.12.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python3_3 python3_4 python3_5 )
+PYTHON_REQ_USE="readline(+)"
+
+if [ "${PV}" = "" ]; then
+   EGIT_REPO_URI="git://github.com/williamh/pybugz.git
+   https://github.com/williamh/pybugz.git;
+   inherit git-r3
+else
+   SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x86-solaris"
+   inherit vcs-snapshot
+fi
+
+inherit bash-completion-r1 distutils-r1
+
+DESCRIPTION="Command line interface to (Gentoo) Bugzilla"
+HOMEPAGE="https://www.github.com/williamh/pybugz;
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="zsh-completion"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+
+python_install_all() {
+   distutils-r1_python_install_all
+   newbashcomp contrib/bash-completion bugz
+
+   if use zsh-completion ; then
+   insinto /usr/share/zsh/site-functions
+   newins contrib/zsh-completion _pybugz
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2015-10-20 Thread William Hubbs
commit: de1a665585fc7080c4f275c6a1e7ef207063ad99
Author: William Hubbs  gentoo  org>
AuthorDate: Tue Oct 20 19:51:40 2015 +
Commit: William Hubbs  gentoo  org>
CommitDate: Tue Oct 20 19:51:40 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de1a6655

www-client/pybugz: Add python3_5 to python_compat

This package works with ppython 3.5, as reported by Alexey Shvetsov.
This is for bug #563592.

 www-client/pybugz/pybugz-0.11.1.ebuild | 2 +-
 www-client/pybugz/pybugz-.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/pybugz/pybugz-0.11.1.ebuild 
b/www-client/pybugz/pybugz-0.11.1.ebuild
index db3e9b1..672aa1a 100644
--- a/www-client/pybugz/pybugz-0.11.1.ebuild
+++ b/www-client/pybugz/pybugz-0.11.1.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT=( python3_3 python3_4 )
+PYTHON_COMPAT=( python3_3 python3_4 python3_5 )
 PYTHON_REQ_USE="readline(+)"
 
 if [ "${PV}" = "" ]; then

diff --git a/www-client/pybugz/pybugz-.ebuild 
b/www-client/pybugz/pybugz-.ebuild
index f714f44..3445cef 100644
--- a/www-client/pybugz/pybugz-.ebuild
+++ b/www-client/pybugz/pybugz-.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT=( python3_3 python3_4 )
+PYTHON_COMPAT=( python3_3 python3_4 python3_5 )
 PYTHON_REQ_USE="readline(+)"
 
 if [ "${PV}" = "" ]; then



[gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/

2015-09-18 Thread William Hubbs
commit: 8fb970eeeb9e24e57fac1b94a0005d4d4ea8
Author: William Hubbs  gentoo  org>
AuthorDate: Fri Sep 18 13:35:33 2015 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri Sep 18 13:36:02 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fb970ee

www-client/pybugz: add setuptools dependency

 www-client/pybugz/pybugz-.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/www-client/pybugz/pybugz-.ebuild 
b/www-client/pybugz/pybugz-.ebuild
index df27286..f714f44 100644
--- a/www-client/pybugz/pybugz-.ebuild
+++ b/www-client/pybugz/pybugz-.ebuild
@@ -24,7 +24,8 @@ LICENSE="GPL-2"
 SLOT="0"
 IUSE="zsh-completion"
 
-RDEPEND="${DEPEND}"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 
 python_install_all() {
distutils-r1_python_install_all