[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/, dev-python/virtualenvwrapper/files/

2024-02-15 Thread Michał Górny
commit: d3e5b29268fc2bf13f2b6d320576451df6f66d7c
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Feb 15 10:32:20 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Feb 15 10:32:20 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3e5b292

dev-python/virtualenvwrapper: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/virtualenvwrapper/Manifest  |   1 -
 ...apper-4.8.4_p20230121-remove-use-of-which.patch | 116 -
 .../virtualenvwrapper-6.0.0.ebuild |  71 -
 3 files changed, 188 deletions(-)

diff --git a/dev-python/virtualenvwrapper/Manifest 
b/dev-python/virtualenvwrapper/Manifest
index 4b172b0ff2f6..38deaed880b4 100644
--- a/dev-python/virtualenvwrapper/Manifest
+++ b/dev-python/virtualenvwrapper/Manifest
@@ -1,2 +1 @@
-DIST virtualenvwrapper-6.0.0.tar.gz 95407 BLAKE2B 
b2a6a7a58be23e1cf0642d780d8fc53e9aef6e44703fa15a2e7627db3c3e12024b33da75b591897ea5181ed5407eb2d52e96f56d7026c083a03e13f94165d9e4
 SHA512 
ab805b61a9f81e0b0842182686a88fcf07e41ad7206484f002110c693ca6076e2a88fefbef8b7409838082ed7e7a43f61f1a0006a314cb1d71efb943dc6fdede
 DIST virtualenvwrapper-6.1.0.tar.gz 95880 BLAKE2B 
86d37682148ee132f9be5c4554de3c770c0f1c3055441bbce080d94da6fa83fc138a15c4c7edbb525e0c303c3c2ba5c1b1ee23260ea5bafaab157b3699b39b87
 SHA512 
78e09956132862fbf1caf53cb6c9375aa3718685f72d8f3fb61e402e6b26e8568d5b3a3ed18142b14f3b2691f89e6f912782e813d8139dc71ceb7e47bde8d0b0

diff --git 
a/dev-python/virtualenvwrapper/files/virtualenvwrapper-4.8.4_p20230121-remove-use-of-which.patch
 
b/dev-python/virtualenvwrapper/files/virtualenvwrapper-4.8.4_p20230121-remove-use-of-which.patch
deleted file mode 100644
index 875542cf17f6..
--- 
a/dev-python/virtualenvwrapper/files/virtualenvwrapper-4.8.4_p20230121-remove-use-of-which.patch
+++ /dev/null
@@ -1,116 +0,0 @@
-https://bugs.gentoo.org/646588
-https://github.com/parona-source/virtualenvwrapper/commit/d7dd99ca8e4ebdf5668708634cf793acee5d35b3
-
-From d7dd99ca8e4ebdf5668708634cf793acee5d35b3 Mon Sep 17 00:00:00 2001
-From: Alfred Wingate 
-Date: Wed, 21 Jun 2023 11:35:04 +0300
-Subject: [PATCH] Remove use of which, use command -v or built-ins instead
-
-* which isn't a POSIX tool and some distributions have or are still
-  considering dropping it in favour of using commands included by
-  POSIX or shell built-ins.
-* Used command built-in where applicable, but type and whence for bash
-  and zsh respectively in virtualenvwrapper_verify_resource to preserve
-  previous behaviour with which when programs also have built-ins
-  with the same name. command -v outputs just the name and not the path
-  in those cases.
-
-https://lwn.net/Articles/874049/
-https://bugs.gentoo.org/646588
-
-Signed-off-by: Alfred Wingate 

- tests/run_tests|  2 +-
- tests/test_cp.sh   |  2 +-
- tests/test_mkvirtualenv.sh |  4 +---
- virtualenvwrapper.sh   | 10 --
- virtualenvwrapper_lazy.sh  |  2 +-
- 5 files changed, 12 insertions(+), 8 deletions(-)
-
-diff --git a/tests/run_tests b/tests/run_tests
-index 68cb362..c9a81d6 100755
 a/tests/run_tests
-+++ b/tests/run_tests
-@@ -62,7 +62,7 @@ do
- echo "  BASH_VERSION=$BASH_VERSION"
- echo "  ZSH_VERSION=$ZSH_VERSION"
- echo "  KSH_VERSION=$KSH_VERSION"
--echo "  virtualenv=$(which virtualenv)"
-+echo "  virtualenv=$(command -v virtualenv)"
- echo "  test_shell_opts=$test_shell_opts"
- echo "  ZSH=$ZSH_NAME $ZSH_EVAL_CONTEXT"
- echo "  TMPDIR=$TMPDIR"
-diff --git a/tests/test_cp.sh b/tests/test_cp.sh
-index 3bd9196..3227c7a 100755
 a/tests/test_cp.sh
-+++ b/tests/test_cp.sh
-@@ -26,7 +26,7 @@ test_new_env_activated () {
- (cd tests/testpackage && python setup.py install) >/dev/null 2>&1
- cpvirtualenv "source" "destination" >/dev/null 2>&1
- rmvirtualenv "source" >/dev/null 2>&1
--testscript="$(which testscript.py)"
-+testscript="$(command -v testscript.py)"
- assertTrue "Environment test script not found in path" "[ 
$WORKON_HOME/destination/bin/testscript.py -ef $testscript ]"
- testscriptcontent="$(cat $testscript)"
- assertTrue "No cpvirtualenvtest in $testscriptcontent" "echo 
$testscriptcontent | grep cpvirtualenvtest"
-diff --git a/tests/test_mkvirtualenv.sh b/tests/test_mkvirtualenv.sh
-index 3c37dfe..47b603a 100755
 a/tests/test_mkvirtualenv.sh
-+++ b/tests/test_mkvirtualenv.sh
-@@ -68,11 +68,9 @@ GLOBAL postmkvirtualenv"
- }
- 
- test_no_virtualenv () {
--  # Find "which" before we change the path
--  which=$(which which)
- old_path="$PATH"
- PATH="/bin:/usr/sbin:/sbin"
--venv=$($which virtualenv 2>/dev/null)
-+venv=$(command -v virtualenv)
-   if [ ! -z "$venv" ]
-   then
- echo "FOUND \"$venv\" in PATH so skipping this test"
-diff --git a/virtualenvwrapper.sh b/virtualenvwrapper.sh
-index b8e4a42..469fa35 100644
 a/virtualenvwrapper.sh
-+++ b/virtualenvwrapper.sh
-@@ 

[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2024-02-14 Thread Joonas Niilola
commit: fec222e83513f9ff7fe8b7d8eaf65b60584e5927
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Feb 15 06:59:49 2024 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Feb 15 06:59:49 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fec222e8

dev-python/virtualenvwrapper: Stabilize 6.1.0 amd64, #924519

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/virtualenvwrapper/virtualenvwrapper-6.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-6.1.0.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-6.1.0.ebuild
index 3a8f01c1583b..937422ee5dec 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-6.1.0.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-6.1.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc64 ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2024-02-14 Thread Joonas Niilola
commit: b35f51036055717914b52bb3e16753e5d6ae5585
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Feb 15 07:00:21 2024 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Feb 15 07:00:21 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b35f5103

dev-python/virtualenvwrapper: Stabilize 6.1.0 x86, #924519

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/virtualenvwrapper/virtualenvwrapper-6.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-6.1.0.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-6.1.0.ebuild
index 937422ee5dec..45e014b5fb7f 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-6.1.0.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-6.1.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc64 x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2024-01-22 Thread Michał Górny
commit: 98a053fa8cc6211456c613dcb7a94c6f58819268
Author: Alfred Wingate  protonmail  com>
AuthorDate: Mon Jan 22 09:38:06 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan 22 14:07:59 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98a053fa

dev-python/virtualenvwrapper: add missing pip test dependency

* Host python pip is used in test_project_templates.sh for installing
  the testtemplate. Otherwise pip is used from the venv where its
  included by default meaning its not a runtime dependency.

Closes: https://bugs.gentoo.org/922666
Signed-off-by: Alfred Wingate  protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/34965
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/virtualenvwrapper/virtualenvwrapper-6.0.0.ebuild | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-6.0.0.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-6.0.0.ebuild
index f94c8c8dcdc2..45e014b5fb7f 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-6.0.0.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-6.0.0.ebuild
@@ -34,6 +34,9 @@ BDEPEND="
')
test? (
${RDEPEND}
+   $(python_gen_cond_dep '
+   dev-python/pip[${PYTHON_USEDEP}]
+   ')
)
 "
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2024-01-21 Thread Joonas Niilola
commit: 12738d7cca29106a8cbcdfc65671e06ec0b54954
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Jan 22 07:58:26 2024 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Jan 22 07:58:26 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12738d7c

dev-python/virtualenvwrapper: Stabilize 6.0.0 amd64, #922558

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/virtualenvwrapper/virtualenvwrapper-6.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-6.0.0.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-6.0.0.ebuild
index 707201d9..8ef222819667 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-6.0.0.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-6.0.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc64 ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2024-01-21 Thread Joonas Niilola
commit: 931ad23880460c6b9451f4e9d0314a55ff00895e
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Jan 22 07:58:41 2024 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Jan 22 07:58:41 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=931ad238

dev-python/virtualenvwrapper: Stabilize 6.0.0 x86, #922558

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/virtualenvwrapper/virtualenvwrapper-6.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-6.0.0.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-6.0.0.ebuild
index 8ef222819667..f94c8c8dcdc2 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-6.0.0.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-6.0.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc64 x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/files/, dev-python/virtualenvwrapper/

2024-01-06 Thread Michał Górny
commit: 051d942a82fe71802ffd7ee46e09e56be3dc8c09
Author: Alfred Wingate  protonmail  com>
AuthorDate: Thu Dec 21 17:11:20 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jan  6 13:33:23 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=051d942a

dev-python/virtualenvwrapper: add 6.0.0

Signed-off-by: Alfred Wingate  protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/34398
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/virtualenvwrapper/Manifest  |   1 +
 ...rtualenvwrapper-6.0.0-remove-use-of-which.patch | 106 +
 .../virtualenvwrapper-6.0.0.ebuild |  68 +
 3 files changed, 175 insertions(+)

diff --git a/dev-python/virtualenvwrapper/Manifest 
b/dev-python/virtualenvwrapper/Manifest
index 75b20e89d6cd..958144e0a848 100644
--- a/dev-python/virtualenvwrapper/Manifest
+++ b/dev-python/virtualenvwrapper/Manifest
@@ -1 +1,2 @@
 DIST virtualenvwrapper-4.8.4_p20230121.gh.tar.gz 72852 BLAKE2B 
2996b88f93790587ffbeed936334bb1f12a9d6d952eb7c9b728a6644c9b7c7e0953bc7c71201fbd590f6258eb163af1aa6494f476decfa54f095ca215e4e13e1
 SHA512 
9df8b20dd8d50fe7891b845c8112edc165b08cc231ebb4010aed8ec50a22005207a9a3c9c9941daa2b958022f0edf993425bf95692f7032d1e5c5719a552d3b4
+DIST virtualenvwrapper-6.0.0.tar.gz 95407 BLAKE2B 
b2a6a7a58be23e1cf0642d780d8fc53e9aef6e44703fa15a2e7627db3c3e12024b33da75b591897ea5181ed5407eb2d52e96f56d7026c083a03e13f94165d9e4
 SHA512 
ab805b61a9f81e0b0842182686a88fcf07e41ad7206484f002110c693ca6076e2a88fefbef8b7409838082ed7e7a43f61f1a0006a314cb1d71efb943dc6fdede

diff --git 
a/dev-python/virtualenvwrapper/files/virtualenvwrapper-6.0.0-remove-use-of-which.patch
 
b/dev-python/virtualenvwrapper/files/virtualenvwrapper-6.0.0-remove-use-of-which.patch
new file mode 100644
index ..41f0dba39a1d
--- /dev/null
+++ 
b/dev-python/virtualenvwrapper/files/virtualenvwrapper-6.0.0-remove-use-of-which.patch
@@ -0,0 +1,106 @@
+From fb2b22fce88d323727a49c760187c0470b78fa9a Mon Sep 17 00:00:00 2001
+From: Alfred Wingate 
+Date: Wed, 21 Jun 2023 11:35:04 +0300
+Subject: [PATCH] Remove use of which, use command -v or built-ins instead
+
+* which isn't a POSIX tool and some distributions have or are still
+  considering dropping it in favour of using commands included by
+  POSIX or shell built-ins.
+* Used command built-in where applicable, but type and whence for bash
+  and zsh respectively in virtualenvwrapper_verify_resource to preserve
+  previous behaviour with which when programs also have built-ins
+  with the same name. command -v outputs just the name and not the path
+  in those cases.
+
+https://lwn.net/Articles/874049/
+https://bugs.gentoo.org/646588
+
+Signed-off-by: Alfred Wingate 
+--- a/tests/run_tests
 b/tests/run_tests
+@@ -61,7 +61,7 @@ do
+ echo "  SHELL=$SHELL"
+ echo "  BASH_VERSION=$BASH_VERSION"
+ echo "  ZSH_VERSION=$ZSH_VERSION"
+-echo "  virtualenv=$(which virtualenv)"
++echo "  virtualenv=$(command -v virtualenv)"
+ echo "  test_shell_opts=$test_shell_opts"
+ echo "  ZSH=$ZSH_NAME $ZSH_EVAL_CONTEXT"
+ echo "  TMPDIR=$TMPDIR"
+--- a/tests/setup.sh
 b/tests/setup.sh
+@@ -14,7 +14,7 @@ export PROJECT_HOME=$(mktemp -d -t "PROJECT_HOME..$$")
+ SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
+ 
+ # This should point to VIRTUAL_ENV/bin when running under tox.
+-TEST_BIN_DIR=$(dirname $(which python))
++TEST_BIN_DIR=$(dirname $(command -v python))
+ 
+ load_wrappers() {
+ if [ "$USING_TOX" = "1" ]; then
+--- a/tests/test_cp.sh
 b/tests/test_cp.sh
+@@ -26,7 +26,7 @@ test_new_env_activated () {
+ (cd tests/testpackage && pip install .) >/dev/null 2>&1
+ cpvirtualenv "source" "destination" >/dev/null 2>&1
+ rmvirtualenv "source" >/dev/null 2>&1
+-testscript="$(which testscript.py)"
++testscript="$(command -v testscript.py)"
+ assertTrue "Environment test script not found in path" "[ 
$WORKON_HOME/destination/bin/testscript.py -ef $testscript ]"
+ testscriptcontent="$(cat $testscript)"
+ assertTrue "No cpvirtualenvtest in $testscriptcontent" "echo 
$testscriptcontent | grep cpvirtualenvtest"
+--- a/tests/test_mkvirtualenv.sh
 b/tests/test_mkvirtualenv.sh
+@@ -68,11 +68,9 @@ GLOBAL postmkvirtualenv"
+ }
+ 
+ test_no_virtualenv () {
+-  # Find "which" before we change the path
+-  which=$(which which)
+ old_path="$PATH"
+ PATH="/bin:/usr/sbin:/sbin"
+-venv=$($which virtualenv 2>/dev/null)
++venv=$(command -v virtualenv)
+   if [ ! -z "$venv" ]
+   then
+ echo "FOUND \"$venv\" in PATH so skipping this test"
+--- a/virtualenvwrapper.sh
 b/virtualenvwrapper.sh
+@@ -47,7 +47,7 @@
+ # Locate the global Python where virtualenvwrapper is installed.
+ if [ "${VIRTUALENVWRAPPER_PYTHON:-}" = "" ]
+ then
+-_virtualenvwrapper_python_executable="$(which python3 2>/dev/null)"
++_virtualenvwrapper_python_executable="$(command -v 

[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2023-08-23 Thread Michał Górny
commit: fd7bab511c5c9560a2decac3b32f9bbfba9d27af
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Aug 23 07:53:37 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Aug 23 07:56:00 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd7bab51

dev-python/virtualenvwrapper: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/virtualenvwrapper/Manifest  |  1 -
 .../virtualenvwrapper-4.8.4-r2.ebuild  | 46 --
 2 files changed, 47 deletions(-)

diff --git a/dev-python/virtualenvwrapper/Manifest 
b/dev-python/virtualenvwrapper/Manifest
index a56ec3af4d12..75b20e89d6cd 100644
--- a/dev-python/virtualenvwrapper/Manifest
+++ b/dev-python/virtualenvwrapper/Manifest
@@ -1,2 +1 @@
-DIST virtualenvwrapper-4.8.4.tar.gz 334920 BLAKE2B 
cd790b1e98cca7d09ea9c80df5d52380335d4a0ea4e6d95f7bd48d78583e0d842e1145ea08d8d8c73516adbe8d6c75bd53c17943723f859860a0cad105a2b058
 SHA512 
461938100061e11af0ee9b17405d991ae34e5ec9c79cc12614962d3178b588a2da710baa15ac626960b09177c1b5b10c7bc590cb4c126ebd2f719d0f1527c9c4
 DIST virtualenvwrapper-4.8.4_p20230121.gh.tar.gz 72852 BLAKE2B 
2996b88f93790587ffbeed936334bb1f12a9d6d952eb7c9b728a6644c9b7c7e0953bc7c71201fbd590f6258eb163af1aa6494f476decfa54f095ca215e4e13e1
 SHA512 
9df8b20dd8d50fe7891b845c8112edc165b08cc231ebb4010aed8ec50a22005207a9a3c9c9941daa2b958022f0edf993425bf95692f7032d1e5c5719a552d3b4

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild
deleted file mode 100644
index 20e9c191f36e..
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Set of extensions to Ian Bicking's virtualenv tool"
-HOMEPAGE="https://bitbucket.org/dhellmann/virtualenvwrapper
-   https://pypi.org/project/virtualenvwrapper/;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~ppc64 x86"
-
-# testsuite doesn't work out of the box.  Demand of a virtualenv outstrips 
setup by the eclass
-RESTRICT=test
-
-RDEPEND="
-   dev-python/virtualenv[${PYTHON_USEDEP}]
-   dev-python/stevedore[${PYTHON_USEDEP}]
-   dev-python/virtualenv-clone[${PYTHON_USEDEP}]"
-DEPEND="${DEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   dev-python/pbr[${PYTHON_USEDEP}]"
-
-src_prepare() {
-   default
-   sed -i -e 's/egrep/grep -E/' "${S}/virtualenvwrapper.sh" || die
-}
-
-python_compile() {
-   distutils-r1_python_compile
-   find "${BUILD_DIR}" -name '*.pth' -delete || die
-}
-
-python_test() {
-   bash ./tests/run_tests || die "Tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-   find "${D}" -name '*.pth' -delete || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2023-08-22 Thread Joonas Niilola
commit: 458bf68d0c70f1aabab930ab459b5565d4d89d94
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed Aug 23 05:34:46 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Aug 23 05:35:41 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=458bf68d

dev-python/virtualenvwrapper: Stabilize 4.8.4_p20230121-r2 amd64, #912848

Signed-off-by: Joonas Niilola  gentoo.org>

 .../virtualenvwrapper/virtualenvwrapper-4.8.4_p20230121-r2.ebuild   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4_p20230121-r2.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4_p20230121-r2.ebuild
index be2e15f03d8b..ab87ff64b968 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4_p20230121-r2.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4_p20230121-r2.ebuild
@@ -26,7 +26,7 @@ export PBR_VERSION="${PV/_p/.post}"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc64 ~x86"
 
 RDEPEND="
$(python_gen_cond_dep '



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2023-08-22 Thread Joonas Niilola
commit: 472fd903d4b5f35851c39aaf978bc40bf7e13050
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed Aug 23 05:35:04 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Aug 23 05:35:41 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=472fd903

dev-python/virtualenvwrapper: Stabilize 4.8.4_p20230121-r2 x86, #912848

Signed-off-by: Joonas Niilola  gentoo.org>

 .../virtualenvwrapper/virtualenvwrapper-4.8.4_p20230121-r2.ebuild   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4_p20230121-r2.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4_p20230121-r2.ebuild
index ab87ff64b968..5a6e6871efc5 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4_p20230121-r2.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4_p20230121-r2.ebuild
@@ -26,7 +26,7 @@ export PBR_VERSION="${PV/_p/.post}"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc64 x86"
 
 RDEPEND="
$(python_gen_cond_dep '



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/, dev-python/virtualenvwrapper/files/

2023-07-23 Thread Sam James
commit: bd3945affbf081af5998a50b5d0a7119b117be4f
Author: Alfred Wingate  protonmail  com>
AuthorDate: Sun Jul 23 01:04:10 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul 24 01:44:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd3945af

dev-python/virtualenvwrapper: fix broken sed expression

* Previous change 0c64ab0 had a mistake get through and change wasnt
  applied. Lesson learned about double and triple checking regex...
* Instead patch with @@GENTOO_PYTHON_EXECUTABLE@@ and then sed replace
  with current python interpeter.

Signed-off-by: Alfred Wingate  protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/32007
Signed-off-by: Sam James  gentoo.org>

 ...0230121-override-default-python-executable.patch | 21 +
 ... => virtualenvwrapper-4.8.4_p20230121-r2.ebuild} |  5 ++---
 2 files changed, 23 insertions(+), 3 deletions(-)

diff --git 
a/dev-python/virtualenvwrapper/files/virtualenvwrapper-4.8.4_p20230121-override-default-python-executable.patch
 
b/dev-python/virtualenvwrapper/files/virtualenvwrapper-4.8.4_p20230121-override-default-python-executable.patch
new file mode 100644
index ..0c7268422efe
--- /dev/null
+++ 
b/dev-python/virtualenvwrapper/files/virtualenvwrapper-4.8.4_p20230121-override-default-python-executable.patch
@@ -0,0 +1,21 @@
+https://github.com/parona-source/virtualenvwrapper/commit/9cb7bcab244c3e49d7b25b73e82566d0adce3282
+
+From 9cb7bcab244c3e49d7b25b73e82566d0adce3282 Mon Sep 17 00:00:00 2001
+From: Alfred Wingate 
+Date: Sun, 23 Jul 2023 05:05:59 +0300
+Subject: [PATCH] virtualenvwrapper.sh: Override default python executable
+
+--- a/virtualenvwrapper.sh
 b/virtualenvwrapper.sh
+@@ -47,7 +47,7 @@
+ # Locate the global Python where virtualenvwrapper is installed.
+ if [ "${VIRTUALENVWRAPPER_PYTHON:-}" = "" ]
+ then
+-_virtualenvwrapper_python_executable="$(command -v python3)"
++_virtualenvwrapper_python_executable="@@GENTOO_PYTHON_EXECUTABLE@@"
+ if [ -n "$_virtualenvwrapper_python_executable" ] && 
$_virtualenvwrapper_python_executable -m 'virtualenvwrapper.hook_loader' --help 
>/dev/null 2>&1
+ then
+ VIRTUALENVWRAPPER_PYTHON=$_virtualenvwrapper_python_executable
+-- 
+2.41.0
+

diff --git 
a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4_p20230121-r1.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4_p20230121-r2.ebuild
similarity index 91%
rename from 
dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4_p20230121-r1.ebuild
rename to 
dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4_p20230121-r2.ebuild
index 080fc0b55799..be2e15f03d8b 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4_p20230121-r1.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4_p20230121-r2.ebuild
@@ -44,15 +44,14 @@ BDEPEND="
 
 PATCHES=(
"${FILESDIR}/virtualenvwrapper-${PV}-remove-use-of-which.patch"
+   
"${FILESDIR}/virtualenvwrapper-${PV}-override-default-python-executable.patch"
 )
 
 src_prepare() {
default
 
# specify default python interpeter to align with PYTHON_SINGLE_TARGET
-   sed -i -e \
-   
"s|\(_virtualenvwrapper_python_executable=\"\$(\).\w\((\"\)|\1command -v 
${EPYTHON}\2|" \
-   virtualenvwrapper.sh || die
+   sed -i -e "s:@@GENTOO_PYTHON_EXECUTABLE@@:${PYTHON}:" 
virtualenvwrapper.sh || die
 
# remove tests which require an internet connection
rm tests/test_mkvirtualenv_install.sh || die



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2023-07-21 Thread Matthew Thode
commit: 0c64ab06a4ba2c73f3840be7aa49e34f42c13696
Author: Alfred Wingate  protonmail  com>
AuthorDate: Sat Jul 22 03:11:16 2023 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sat Jul 22 04:36:02 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c64ab06

dev-python/virtualenvwrapper: get absolute path for python executable

* Using the absolute path avoid issues when going inside the venv

Signed-off-by: Alfred Wingate  protonmail.com>
Signed-off-by: Matthew Thode  gentoo.org>

 ...8.4_p20230121.ebuild => virtualenvwrapper-4.8.4_p20230121-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4_p20230121.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4_p20230121-r1.ebuild
similarity index 95%
rename from 
dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4_p20230121.ebuild
rename to 
dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4_p20230121-r1.ebuild
index 106b7a037d89..080fc0b55799 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4_p20230121.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4_p20230121-r1.ebuild
@@ -51,7 +51,7 @@ src_prepare() {
 
# specify default python interpeter to align with PYTHON_SINGLE_TARGET
sed -i -e \
-   
"s|\(_virtualenvwrapper_python_executable=\"\)\$(.*)\(\"\)|\1${EPYTHON}\2|" \
+   
"s|\(_virtualenvwrapper_python_executable=\"\$(\).\w\((\"\)|\1command -v 
${EPYTHON}\2|" \
virtualenvwrapper.sh || die
 
# remove tests which require an internet connection



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2023-06-21 Thread Michał Górny
commit: e20194056196f33ababea966b4c7cfe4eff9a1c4
Author: Alfred Wingate  protonmail  com>
AuthorDate: Mon Jun 19 01:52:03 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 21 10:34:37 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2019405

dev-python/virtualenvwrapper: add github upstream metadata

Signed-off-by: Alfred Wingate  protonmail.com>
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/virtualenvwrapper/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/virtualenvwrapper/metadata.xml 
b/dev-python/virtualenvwrapper/metadata.xml
index 593e63c5b039..6cf7fc51640d 100644
--- a/dev-python/virtualenvwrapper/metadata.xml
+++ b/dev-python/virtualenvwrapper/metadata.xml
@@ -8,5 +8,6 @@

virtualenvwrapper
dhellmann/virtualenvwrapper
+   python-virtualenvwrapper/virtualenvwrapper

 



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/files/, dev-python/virtualenvwrapper/

2023-06-21 Thread Michał Górny
commit: 43b8975d7d1004d9d290d399334d3779fe02cf7e
Author: Alfred Wingate  protonmail  com>
AuthorDate: Mon Jun 19 01:47:27 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 21 10:34:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43b8975d

dev-python/virtualenvwrapper: new snapshot, 4.8.4_p20230121

* Enable tests.

* Enforce the implementation installed with as the default for
  VIRTUALENVWRAPPER_PYTHON. It can still be overidden normally.

Closes: https://bugs.gentoo.org/908533
Signed-off-by: Alfred Wingate  protonmail.com>
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/virtualenvwrapper/Manifest  |   1 +
 ...apper-4.8.4_p20230121-remove-use-of-which.patch | 116 +
 .../virtualenvwrapper-4.8.4_p20230121.ebuild   |  74 +
 3 files changed, 191 insertions(+)

diff --git a/dev-python/virtualenvwrapper/Manifest 
b/dev-python/virtualenvwrapper/Manifest
index 0b660b17d635..a56ec3af4d12 100644
--- a/dev-python/virtualenvwrapper/Manifest
+++ b/dev-python/virtualenvwrapper/Manifest
@@ -1 +1,2 @@
 DIST virtualenvwrapper-4.8.4.tar.gz 334920 BLAKE2B 
cd790b1e98cca7d09ea9c80df5d52380335d4a0ea4e6d95f7bd48d78583e0d842e1145ea08d8d8c73516adbe8d6c75bd53c17943723f859860a0cad105a2b058
 SHA512 
461938100061e11af0ee9b17405d991ae34e5ec9c79cc12614962d3178b588a2da710baa15ac626960b09177c1b5b10c7bc590cb4c126ebd2f719d0f1527c9c4
+DIST virtualenvwrapper-4.8.4_p20230121.gh.tar.gz 72852 BLAKE2B 
2996b88f93790587ffbeed936334bb1f12a9d6d952eb7c9b728a6644c9b7c7e0953bc7c71201fbd590f6258eb163af1aa6494f476decfa54f095ca215e4e13e1
 SHA512 
9df8b20dd8d50fe7891b845c8112edc165b08cc231ebb4010aed8ec50a22005207a9a3c9c9941daa2b958022f0edf993425bf95692f7032d1e5c5719a552d3b4

diff --git 
a/dev-python/virtualenvwrapper/files/virtualenvwrapper-4.8.4_p20230121-remove-use-of-which.patch
 
b/dev-python/virtualenvwrapper/files/virtualenvwrapper-4.8.4_p20230121-remove-use-of-which.patch
new file mode 100644
index ..875542cf17f6
--- /dev/null
+++ 
b/dev-python/virtualenvwrapper/files/virtualenvwrapper-4.8.4_p20230121-remove-use-of-which.patch
@@ -0,0 +1,116 @@
+https://bugs.gentoo.org/646588
+https://github.com/parona-source/virtualenvwrapper/commit/d7dd99ca8e4ebdf5668708634cf793acee5d35b3
+
+From d7dd99ca8e4ebdf5668708634cf793acee5d35b3 Mon Sep 17 00:00:00 2001
+From: Alfred Wingate 
+Date: Wed, 21 Jun 2023 11:35:04 +0300
+Subject: [PATCH] Remove use of which, use command -v or built-ins instead
+
+* which isn't a POSIX tool and some distributions have or are still
+  considering dropping it in favour of using commands included by
+  POSIX or shell built-ins.
+* Used command built-in where applicable, but type and whence for bash
+  and zsh respectively in virtualenvwrapper_verify_resource to preserve
+  previous behaviour with which when programs also have built-ins
+  with the same name. command -v outputs just the name and not the path
+  in those cases.
+
+https://lwn.net/Articles/874049/
+https://bugs.gentoo.org/646588
+
+Signed-off-by: Alfred Wingate 
+---
+ tests/run_tests|  2 +-
+ tests/test_cp.sh   |  2 +-
+ tests/test_mkvirtualenv.sh |  4 +---
+ virtualenvwrapper.sh   | 10 --
+ virtualenvwrapper_lazy.sh  |  2 +-
+ 5 files changed, 12 insertions(+), 8 deletions(-)
+
+diff --git a/tests/run_tests b/tests/run_tests
+index 68cb362..c9a81d6 100755
+--- a/tests/run_tests
 b/tests/run_tests
+@@ -62,7 +62,7 @@ do
+ echo "  BASH_VERSION=$BASH_VERSION"
+ echo "  ZSH_VERSION=$ZSH_VERSION"
+ echo "  KSH_VERSION=$KSH_VERSION"
+-echo "  virtualenv=$(which virtualenv)"
++echo "  virtualenv=$(command -v virtualenv)"
+ echo "  test_shell_opts=$test_shell_opts"
+ echo "  ZSH=$ZSH_NAME $ZSH_EVAL_CONTEXT"
+ echo "  TMPDIR=$TMPDIR"
+diff --git a/tests/test_cp.sh b/tests/test_cp.sh
+index 3bd9196..3227c7a 100755
+--- a/tests/test_cp.sh
 b/tests/test_cp.sh
+@@ -26,7 +26,7 @@ test_new_env_activated () {
+ (cd tests/testpackage && python setup.py install) >/dev/null 2>&1
+ cpvirtualenv "source" "destination" >/dev/null 2>&1
+ rmvirtualenv "source" >/dev/null 2>&1
+-testscript="$(which testscript.py)"
++testscript="$(command -v testscript.py)"
+ assertTrue "Environment test script not found in path" "[ 
$WORKON_HOME/destination/bin/testscript.py -ef $testscript ]"
+ testscriptcontent="$(cat $testscript)"
+ assertTrue "No cpvirtualenvtest in $testscriptcontent" "echo 
$testscriptcontent | grep cpvirtualenvtest"
+diff --git a/tests/test_mkvirtualenv.sh b/tests/test_mkvirtualenv.sh
+index 3c37dfe..47b603a 100755
+--- a/tests/test_mkvirtualenv.sh
 b/tests/test_mkvirtualenv.sh
+@@ -68,11 +68,9 @@ GLOBAL postmkvirtualenv"
+ }
+ 
+ test_no_virtualenv () {
+-  # Find "which" before we change the path
+-  which=$(which which)
+ old_path="$PATH"
+ PATH="/bin:/usr/sbin:/sbin"
+-venv=$($which virtualenv 2>/dev/null)
++venv=$(command -v 

[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2023-06-21 Thread Michał Górny
commit: 7db83e65c98408db28816f6302e07cc3868ab1f7
Author: Alfred Wingate  protonmail  com>
AuthorDate: Mon Jun 19 02:04:04 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 21 10:34:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7db83e65

dev-python/virtualenvwrapper: add myself as a maintainer

Signed-off-by: Alfred Wingate  protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/31540
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/virtualenvwrapper/metadata.xml | 8 
 1 file changed, 8 insertions(+)

diff --git a/dev-python/virtualenvwrapper/metadata.xml 
b/dev-python/virtualenvwrapper/metadata.xml
index 6cf7fc51640d..8b706320125a 100644
--- a/dev-python/virtualenvwrapper/metadata.xml
+++ b/dev-python/virtualenvwrapper/metadata.xml
@@ -1,10 +1,18 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
+   
+   par...@protonmail.com
+   Alfred Wingate
+   

pyt...@gentoo.org
Python

+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   

virtualenvwrapper
dhellmann/virtualenvwrapper



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2023-03-15 Thread Michał Górny
commit: 830a45fd8d59dcaad205ab56258d1601aab064ea
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 15 17:49:11 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Mar 16 04:09:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=830a45fd

dev-python/virtualenvwrapper: Use pypi.eclass

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild
index fdd42133d317..20e9c191f36e 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild
@@ -5,12 +5,11 @@ EAPI=8
 
 PYTHON_COMPAT=( python3_{9..11} )
 
-inherit distutils-r1
+inherit distutils-r1 pypi
 
 DESCRIPTION="Set of extensions to Ian Bicking's virtualenv tool"
 HOMEPAGE="https://bitbucket.org/dhellmann/virtualenvwrapper
https://pypi.org/project/virtualenvwrapper/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2022-12-10 Thread Michał Górny
commit: cce92b655807529f54ba3271ab9e5fe5d6a30915
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Dec 10 15:50:26 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Dec 10 15:50:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cce92b65

dev-python/virtualenvwrapper: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 .../virtualenvwrapper-4.8.4-r1.ebuild  | 32 --
 1 file changed, 32 deletions(-)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild
deleted file mode 100644
index cdcda949f6b1..
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9,10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Set of extensions to Ian Bicking's virtualenv tool"
-HOMEPAGE="https://bitbucket.org/dhellmann/virtualenvwrapper
-   https://pypi.org/project/virtualenvwrapper/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-# testsuite doesn't work out of the box.  Demand of a virtualenv outstrips 
setup by the eclass
-RESTRICT=test
-
-RDEPEND="
-   dev-python/virtualenv[${PYTHON_USEDEP}]
-   dev-python/stevedore[${PYTHON_USEDEP}]
-   dev-python/virtualenv-clone[${PYTHON_USEDEP}]"
-DEPEND="${DEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   dev-python/pbr[${PYTHON_USEDEP}]"
-
-python_test() {
-   bash ./tests/run_tests || die "Tests failed under ${EPYTHON}"
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2022-12-10 Thread Arthur Zamarin
commit: d35a69ff3d3fe8ad57fa1481444c54db13afed93
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Dec 10 14:32:37 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Dec 10 14:32:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d35a69ff

dev-python/virtualenvwrapper: Stabilize 4.8.4-r2 x86, #885273

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

 dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild
index 5bdbbddf0099..e82ab2a5e842 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc64 x86"
 
 # testsuite doesn't work out of the box.  Demand of a virtualenv outstrips 
setup by the eclass
 RESTRICT=test



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2022-12-10 Thread Arthur Zamarin
commit: 31b9a55039480d2794da5037dc63ee99fdd61f02
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Dec 10 09:11:58 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Dec 10 09:11:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31b9a550

dev-python/virtualenvwrapper: Stabilize 4.8.4-r2 amd64, #885273

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

 dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild
index 6a17821aa06a..5bdbbddf0099 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc64 ~x86"
 
 # testsuite doesn't work out of the box.  Demand of a virtualenv outstrips 
setup by the eclass
 RESTRICT=test



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2022-11-04 Thread Arthur Zamarin
commit: 7a0f20ca0aa1d4274efb053c82e3ba6b18ceda5e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Nov  4 18:35:14 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Nov  4 19:49:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a0f20ca

dev-python/virtualenvwrapper: add bitbucket upstream metadata

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

 dev-python/virtualenvwrapper/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/virtualenvwrapper/metadata.xml 
b/dev-python/virtualenvwrapper/metadata.xml
index 4b98295be7d2..593e63c5b039 100644
--- a/dev-python/virtualenvwrapper/metadata.xml
+++ b/dev-python/virtualenvwrapper/metadata.xml
@@ -7,5 +7,6 @@


virtualenvwrapper
+   dhellmann/virtualenvwrapper

 



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2022-11-01 Thread Georgy Yakovlev
commit: e12c0451e0ea0666803ca2fcf4db360c895d6c51
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue Nov  1 06:17:12 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Tue Nov  1 06:17:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e12c0451

dev-python/virtualenvwrapper: keyword 4.8.4-r2 for ~ppc64

Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild
index 13f088a96ea5..6a17821aa06a 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~ppc64 ~x86"
 
 # testsuite doesn't work out of the box.  Demand of a virtualenv outstrips 
setup by the eclass
 RESTRICT=test



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2022-10-12 Thread Eray Aslan
commit: 37570b3adef0ffa5e9aba77b9a770f7521b6b13e
Author: Eray Aslan  gentoo  org>
AuthorDate: Wed Oct 12 06:30:09 2022 +
Commit: Eray Aslan  gentoo  org>
CommitDate: Wed Oct 12 06:31:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37570b3a

dev-python/virtualenvwrapper: do not install namespace packages

update EAPI 7 -> 8

Closes: https://bugs.gentoo.org/876367
Closes: https://bugs.gentoo.org/798609
Signed-off-by: Eray Aslan  gentoo.org>

 .../virtualenvwrapper-4.8.4-r2.ebuild  | 47 ++
 1 file changed, 47 insertions(+)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild
new file mode 100644
index ..13f088a96ea5
--- /dev/null
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r2.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Set of extensions to Ian Bicking's virtualenv tool"
+HOMEPAGE="https://bitbucket.org/dhellmann/virtualenvwrapper
+   https://pypi.org/project/virtualenvwrapper/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+# testsuite doesn't work out of the box.  Demand of a virtualenv outstrips 
setup by the eclass
+RESTRICT=test
+
+RDEPEND="
+   dev-python/virtualenv[${PYTHON_USEDEP}]
+   dev-python/stevedore[${PYTHON_USEDEP}]
+   dev-python/virtualenv-clone[${PYTHON_USEDEP}]"
+DEPEND="${DEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/pbr[${PYTHON_USEDEP}]"
+
+src_prepare() {
+   default
+   sed -i -e 's/egrep/grep -E/' "${S}/virtualenvwrapper.sh" || die
+}
+
+python_compile() {
+   distutils-r1_python_compile
+   find "${BUILD_DIR}" -name '*.pth' -delete || die
+}
+
+python_test() {
+   bash ./tests/run_tests || die "Tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+   find "${D}" -name '*.pth' -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2021-12-30 Thread Matthew Thode
commit: 1fcd697db3aa21ef15e0e4848e3ce1943044fc7e
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Dec 31 06:46:43 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Dec 31 06:47:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fcd697d

dev-python/virtualenvwrapper: add py10

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Matthew Thode  gentoo.org>

 dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild
index a513ebd00064..cdcda949f6b1 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_COMPAT=( python3_{7,8,9,10} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2021-01-24 Thread Matthew Thode
commit: 14c2f85eedf09a1414020d22d0c8be43a11af39d
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Jan 25 06:48:57 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Jan 25 06:49:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14c2f85e

dev-python/virtualenvwrapper: add py39

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Matthew Thode  gentoo.org>

 dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild
index 5e1b6b19676..3e2b097d65b 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2020-05-01 Thread Matthew Thode
commit: ef36b26641f405ff17f4aca19575f5f09d07bf86
Author: Andrew Udvare  gmail  com>
AuthorDate: Fri May  1 17:26:17 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sat May  2 04:30:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef36b266

dev-python/virtualenvwrapper: add python3_8 to PYTHON_COMPAT

Signed-off-by: Andrew Udvare  gmail.com>
Signed-off-by: Matthew Thode  gentoo.org>

 ...virtualenvwrapper-4.8.4.ebuild => virtualenvwrapper-4.8.4-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild
similarity index 96%
rename from dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild
rename to dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild
index 0eabad043e5..5e1b6b19676 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7,8} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2020-05-01 Thread Matthew Thode
commit: 7bd3583a8df822d2b9b924264b6da1b99efff810
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri May  1 19:18:09 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri May  1 19:18:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bd3583a

Revert "dev-python/virtualenvwrapper: add python3_8 to PYTHON_COMPAT"

This reverts commit 28bc66c3b52b0a316d8206fdeaf9e01fc2a08df4.

Signed-off-by: Matthew Thode  gentoo.org>

 ...virtualenvwrapper-4.8.4-r1.ebuild => virtualenvwrapper-4.8.4.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild
similarity index 96%
rename from dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild
rename to dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild
index 5e1b6b19676..0eabad043e5 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6,7} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2020-05-01 Thread Matthew Thode
commit: 28bc66c3b52b0a316d8206fdeaf9e01fc2a08df4
Author: Andrew Udvare  gmail  com>
AuthorDate: Fri May  1 17:26:17 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri May  1 17:43:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28bc66c3

dev-python/virtualenvwrapper: add python3_8 to PYTHON_COMPAT

Signed-off-by: Andrew Udvare  gmail.com>
Signed-off-by: Matthew Thode  gentoo.org>

 ...virtualenvwrapper-4.8.4.ebuild => virtualenvwrapper-4.8.4-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild
similarity index 96%
rename from dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild
rename to dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild
index 0eabad043e5..5e1b6b19676 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7,8} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2020-03-29 Thread Michał Górny
commit: 5d423d5d744f3922a36140fa2680908873b50ba5
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar 29 11:12:27 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar 29 11:14:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d423d5d

dev-python/virtualenvwrapper: Remove redundant versions

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/virtualenvwrapper/Manifest  |  1 -
 .../virtualenvwrapper-4.8.2-r1.ebuild  | 32 -
 .../virtualenvwrapper-4.8.2.ebuild | 33 --
 3 files changed, 66 deletions(-)

diff --git a/dev-python/virtualenvwrapper/Manifest 
b/dev-python/virtualenvwrapper/Manifest
index 6a127ed83cb..0b660b17d63 100644
--- a/dev-python/virtualenvwrapper/Manifest
+++ b/dev-python/virtualenvwrapper/Manifest
@@ -1,2 +1 @@
-DIST virtualenvwrapper-4.8.2.tar.gz 91331 BLAKE2B 
a01a971ccfdf1822d65fe6d2f3ae09fde2646c8a6246f54316afb6e5d5068078e77732fed3a9805371fefeed7a4357c27b52eed24e9bd03492965779d6a50836
 SHA512 
53d92f653b988873da5a46e316a40ef767d97f75072e311aa4a8ae45c8aabb49569e36cc35597f9bdfc1f883a51eb648d5f01f4ea8b3237fae30a21dca67d7bc
 DIST virtualenvwrapper-4.8.4.tar.gz 334920 BLAKE2B 
cd790b1e98cca7d09ea9c80df5d52380335d4a0ea4e6d95f7bd48d78583e0d842e1145ea08d8d8c73516adbe8d6c75bd53c17943723f859860a0cad105a2b058
 SHA512 
461938100061e11af0ee9b17405d991ae34e5ec9c79cc12614962d3178b588a2da710baa15ac626960b09177c1b5b10c7bc590cb4c126ebd2f719d0f1527c9c4

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2-r1.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2-r1.ebuild
deleted file mode 100644
index b54c54e8572..000
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2-r1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7} )
-
-inherit distutils-r1
-
-DESCRIPTION="Set of extensions to Ian Bicking's virtualenv tool"
-HOMEPAGE="https://bitbucket.org/dhellmann/virtualenvwrapper
-   https://pypi.org/project/virtualenvwrapper/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-# testsuite doesn't work out of the box.  Demand of a virtualenv outstrips 
setup by the eclass
-RESTRICT=test
-
-RDEPEND="
-   dev-python/virtualenv[${PYTHON_USEDEP}]
-   dev-python/stevedore[${PYTHON_USEDEP}]
-   dev-python/virtualenv-clone[${PYTHON_USEDEP}]"
-DEPEND="${DEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   dev-python/pbr[${PYTHON_USEDEP}]"
-
-python_test() {
-   bash ./tests/run_tests || die "Tests failed under ${EPYTHON}"
-}

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild
deleted file mode 100644
index 09ffe543e07..000
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 )
-
-inherit distutils-r1
-
-DESCRIPTION="Set of extensions to Ian Bicking's virtualenv tool"
-HOMEPAGE="https://bitbucket.org/dhellmann/virtualenvwrapper
-   https://pypi.org/project/virtualenvwrapper/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-
-# testsuite doesn't work out of the box.  Demand of a virtualenv outstrips 
setup by the eclass
-RESTRICT=test
-
-RDEPEND="
-   dev-python/virtualenv[${PYTHON_USEDEP}]
-   dev-python/stevedore[${PYTHON_USEDEP}]
-   dev-python/virtualenv-clone[${PYTHON_USEDEP}]"
-DEPEND="${DEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   dev-python/pbr[${PYTHON_USEDEP}]"
-
-python_test() {
-   bash ./tests/run_tests || die "Tests failed under ${EPYTHON}"
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2020-02-11 Thread Agostino Sarubbo
commit: 19a03b3af75085cec2bf83624924c902cceae534
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Feb 11 19:49:03 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Feb 11 19:49:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19a03b3a

dev-python/virtualenvwrapper: x86 stable wrt bug #706146

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild
index 69233ca3bde..0eabad043e5 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 # testsuite doesn't work out of the box.  Demand of a virtualenv outstrips 
setup by the eclass
 RESTRICT=test



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2020-02-11 Thread Agostino Sarubbo
commit: b9738840ac1aeb2f57f819767a46bdd003ba4418
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Feb 11 19:40:56 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Feb 11 19:43:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9738840

dev-python/virtualenvwrapper: amd64 stable wrt bug #706146

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild
index b54c54e8572..69233ca3bde 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 # testsuite doesn't work out of the box.  Demand of a virtualenv outstrips 
setup by the eclass
 RESTRICT=test



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2019-12-29 Thread David Seifert
commit: 01be891e24b6d0e8ff872f45d1eb02870c62a097
Author: David Seifert  gentoo  org>
AuthorDate: Sun Dec 29 13:06:24 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Sun Dec 29 13:06:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01be891e

dev-python/virtualenvwrapper: Remove old

Package-Manager: Portage-2.3.83, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 dev-python/virtualenvwrapper/Manifest  |  1 -
 .../virtualenvwrapper-4.7.1.ebuild | 40 --
 2 files changed, 41 deletions(-)

diff --git a/dev-python/virtualenvwrapper/Manifest 
b/dev-python/virtualenvwrapper/Manifest
index 7b01680fcc0..6a127ed83cb 100644
--- a/dev-python/virtualenvwrapper/Manifest
+++ b/dev-python/virtualenvwrapper/Manifest
@@ -1,3 +1,2 @@
-DIST virtualenvwrapper-4.7.1.tar.gz 89930 BLAKE2B 
8e101f04e365dbb6244bc787f853dd90b15d7b33a44725ac1e047cfa74845b9fe11ca100c8437536d80943f29be1dbe10920eef2ce9766bd95ec05cd96951eba
 SHA512 
f972179992728b8b600388b34562fa9de355f526e4ee25ea88840700a57f196a60eba91ac3137e7d826925c7a8ade7479af383bcbfb8b9b837d0a374b8b3c4fd
 DIST virtualenvwrapper-4.8.2.tar.gz 91331 BLAKE2B 
a01a971ccfdf1822d65fe6d2f3ae09fde2646c8a6246f54316afb6e5d5068078e77732fed3a9805371fefeed7a4357c27b52eed24e9bd03492965779d6a50836
 SHA512 
53d92f653b988873da5a46e316a40ef767d97f75072e311aa4a8ae45c8aabb49569e36cc35597f9bdfc1f883a51eb648d5f01f4ea8b3237fae30a21dca67d7bc
 DIST virtualenvwrapper-4.8.4.tar.gz 334920 BLAKE2B 
cd790b1e98cca7d09ea9c80df5d52380335d4a0ea4e6d95f7bd48d78583e0d842e1145ea08d8d8c73516adbe8d6c75bd53c17943723f859860a0cad105a2b058
 SHA512 
461938100061e11af0ee9b17405d991ae34e5ec9c79cc12614962d3178b588a2da710baa15ac626960b09177c1b5b10c7bc590cb4c126ebd2f719d0f1527c9c4

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild
deleted file mode 100644
index 31d2569cf56..000
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_5 )
-
-inherit distutils-r1
-
-DESCRIPTION="Set of extensions to Ian Bicking's virtualenv tool"
-HOMEPAGE="https://bitbucket.org/dhellmann/virtualenvwrapper
-   https://pypi.org/project/virtualenvwrapper/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-
-# testsuite doesn't work out of the box.  Demand of a virtualenv outstrips 
setup by the eclass
-RESTRICT=test
-
-RDEPEND="
-   dev-python/virtualenv[${PYTHON_USEDEP}]
-   >=dev-python/stevedore-0.15-r1[${PYTHON_USEDEP}]
-   dev-python/virtualenv-clone[${PYTHON_USEDEP}]"
-DEPEND="${DEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   dev-python/pbr[${PYTHON_USEDEP}]"
-
-# Keep just in case
-python_prepare_all() {
-   sed -e 's:-o shwordsplit::' -i tests/run_tests || die
-
-   distutils-r1_python_prepare_all
-}
-
-python_test() {
-   bash ./tests/run_tests || die "Tests failed under ${EPYTHON}"
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2019-12-28 Thread David Seifert
commit: 18cd2b310f78eff1be09e228dc112f5237923593
Author: David Seifert  gentoo  org>
AuthorDate: Sat Dec 28 16:16:26 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Dec 28 16:16:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18cd2b31

dev-python/virtualenvwrapper: Remove Py2

Package-Manager: Portage-2.3.83, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild| 2 +-
 dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2-r1.ebuild | 2 +-
 dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild| 2 +-
 dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild| 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild
index 7b6f6ecc113..31d2569cf56 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python{2_7,3_5} )
+PYTHON_COMPAT=( python3_5 )
 
 inherit distutils-r1
 

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2-r1.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2-r1.ebuild
index 976d371facf..96cc47b78d4 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2-r1.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
+PYTHON_COMPAT=( python3_{5,6,7} )
 
 inherit distutils-r1
 

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild
index 35cc3946930..fa6ba2fb1ed 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python{2_7,3_5,3_6} )
+PYTHON_COMPAT=( python3_{5,6} )
 
 inherit distutils-r1
 

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild
index 976d371facf..96cc47b78d4 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
+PYTHON_COMPAT=( python3_{5,6,7} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2019-08-10 Thread Matthew Thode
commit: 857a88a8c8054b0de848e093829a622b82a7da2d
Author: rain0r  gmail  com>
AuthorDate: Sun Aug  4 12:36:59 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sat Aug 10 22:01:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=857a88a8

- Update to virtualenvwrapper-4.8.4 incl. EAPI 7 - virtualenvwrapper-4.8.2-r1. 
with EAPI7 and python3_7 - Removed unused use flag - Changed keywords to 
unstable

Signed-off-by: Rainer Hihn  gmail.com>
Signed-off-by: Matthew Thode  gentoo.org>

 dev-python/virtualenvwrapper/Manifest  |  1 +
 .../virtualenvwrapper-4.8.2-r1.ebuild  | 32 ++
 .../virtualenvwrapper-4.8.4.ebuild | 32 ++
 3 files changed, 65 insertions(+)

diff --git a/dev-python/virtualenvwrapper/Manifest 
b/dev-python/virtualenvwrapper/Manifest
index 5f6d8c727fd..7b01680fcc0 100644
--- a/dev-python/virtualenvwrapper/Manifest
+++ b/dev-python/virtualenvwrapper/Manifest
@@ -1,2 +1,3 @@
 DIST virtualenvwrapper-4.7.1.tar.gz 89930 BLAKE2B 
8e101f04e365dbb6244bc787f853dd90b15d7b33a44725ac1e047cfa74845b9fe11ca100c8437536d80943f29be1dbe10920eef2ce9766bd95ec05cd96951eba
 SHA512 
f972179992728b8b600388b34562fa9de355f526e4ee25ea88840700a57f196a60eba91ac3137e7d826925c7a8ade7479af383bcbfb8b9b837d0a374b8b3c4fd
 DIST virtualenvwrapper-4.8.2.tar.gz 91331 BLAKE2B 
a01a971ccfdf1822d65fe6d2f3ae09fde2646c8a6246f54316afb6e5d5068078e77732fed3a9805371fefeed7a4357c27b52eed24e9bd03492965779d6a50836
 SHA512 
53d92f653b988873da5a46e316a40ef767d97f75072e311aa4a8ae45c8aabb49569e36cc35597f9bdfc1f883a51eb648d5f01f4ea8b3237fae30a21dca67d7bc
+DIST virtualenvwrapper-4.8.4.tar.gz 334920 BLAKE2B 
cd790b1e98cca7d09ea9c80df5d52380335d4a0ea4e6d95f7bd48d78583e0d842e1145ea08d8d8c73516adbe8d6c75bd53c17943723f859860a0cad105a2b058
 SHA512 
461938100061e11af0ee9b17405d991ae34e5ec9c79cc12614962d3178b588a2da710baa15ac626960b09177c1b5b10c7bc590cb4c126ebd2f719d0f1527c9c4

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2-r1.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2-r1.ebuild
new file mode 100644
index 000..976d371facf
--- /dev/null
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2-r1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
+
+inherit distutils-r1
+
+DESCRIPTION="Set of extensions to Ian Bicking's virtualenv tool"
+HOMEPAGE="https://bitbucket.org/dhellmann/virtualenvwrapper
+   https://pypi.org/project/virtualenvwrapper/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+# testsuite doesn't work out of the box.  Demand of a virtualenv outstrips 
setup by the eclass
+RESTRICT=test
+
+RDEPEND="
+   dev-python/virtualenv[${PYTHON_USEDEP}]
+   dev-python/stevedore[${PYTHON_USEDEP}]
+   dev-python/virtualenv-clone[${PYTHON_USEDEP}]"
+DEPEND="${DEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/pbr[${PYTHON_USEDEP}]"
+
+python_test() {
+   bash ./tests/run_tests || die "Tests failed under ${EPYTHON}"
+}

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild
new file mode 100644
index 000..976d371facf
--- /dev/null
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.4.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
+
+inherit distutils-r1
+
+DESCRIPTION="Set of extensions to Ian Bicking's virtualenv tool"
+HOMEPAGE="https://bitbucket.org/dhellmann/virtualenvwrapper
+   https://pypi.org/project/virtualenvwrapper/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+# testsuite doesn't work out of the box.  Demand of a virtualenv outstrips 
setup by the eclass
+RESTRICT=test
+
+RDEPEND="
+   dev-python/virtualenv[${PYTHON_USEDEP}]
+   dev-python/stevedore[${PYTHON_USEDEP}]
+   dev-python/virtualenv-clone[${PYTHON_USEDEP}]"
+DEPEND="${DEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/pbr[${PYTHON_USEDEP}]"
+
+python_test() {
+   bash ./tests/run_tests || die "Tests failed under ${EPYTHON}"
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2018-07-20 Thread Mikle Kolyada
commit: b44085bc4468957edf0066e6140b8c97a600fb29
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Jul 21 00:04:09 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Jul 21 00:06:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b44085bc

dev-python/virtualenvwrapper: x86 stable wrt bug #658884

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild
index 2df8322f07d..adc8ea35869 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 
 # testsuite doesn't work out of the box.  Demand of a virtualenv outstrips 
setup by the eclass



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2018-06-24 Thread Mikle Kolyada
commit: d4c751d69dad0aec28e7b9866f836041845a
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Jun 24 09:38:12 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Jun 24 09:39:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4c751d6

dev-python/virtualenvwrapper: amd64 stable wrt bug #658884

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild
index 32ffca254a2..2df8322f07d 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="test"
 
 # testsuite doesn't work out of the box.  Demand of a virtualenv outstrips 
setup by the eclass



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2018-05-01 Thread Michał Górny
commit: 6922c383a873ba3d0265a51d55225f155fa7095e
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Apr 29 13:48:02 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue May  1 18:39:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6922c383

dev-python/virtualenvwrapper: use HTTPS, sync HOMEPAGEs

 dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild
index 80767cc021b..4e93a571455 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python{2_7,3_4,3_5} )
 inherit distutils-r1
 
 DESCRIPTION="Set of extensions to Ian Bicking's virtualenv tool"
-HOMEPAGE="http://www.doughellmann.com/projects/virtualenvwrapper
+HOMEPAGE="https://bitbucket.org/dhellmann/virtualenvwrapper
https://pypi.org/project/virtualenvwrapper/;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2018-03-24 Thread Michał Górny
commit: 5ebb476ea1cf481a869bce4631d1c15a8a036e27
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Wed Mar 21 19:39:06 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Mar 24 11:21:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ebb476e

dev-python/virtualenvwrapper: fix HOMEPAGE

 dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild | 5 ++---
 dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild | 5 ++---
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild
index 6e8c82709c5..bcc98199cd4 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,8 +8,7 @@ PYTHON_COMPAT=( python{2_7,3_4,3_5} )
 inherit distutils-r1
 
 DESCRIPTION="Set of extensions to Ian Bicking's virtualenv tool"
-HOMEPAGE="
-   http://www.doughellmann.com/projects/virtualenvwrapper
+HOMEPAGE="http://www.doughellmann.com/projects/virtualenvwrapper
https://pypi.python.org/pypi/virtualenvwrapper;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild
index 3cf33e1ade9..b2229273737 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,8 +8,7 @@ PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
 inherit distutils-r1
 
 DESCRIPTION="Set of extensions to Ian Bicking's virtualenv tool"
-HOMEPAGE="
-   http://www.doughellmann.com/projects/virtualenvwrapper
+HOMEPAGE="https://bitbucket.org/dhellmann/virtualenvwrapper
https://pypi.python.org/pypi/virtualenvwrapper;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2017-10-29 Thread Matt Thode
commit: 9f2e73347ce997e5d8f0d2ceef8c5fddb419842a
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Oct 29 18:33:53 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sun Oct 29 18:40:32 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f2e7334

dev-python/virtualenvwrapper: 4.8.2 bup

Package-Manager: Portage-2.3.8, Repoman-2.3.4

 dev-python/virtualenvwrapper/Manifest  |  1 +
 .../virtualenvwrapper-4.8.2.ebuild | 34 ++
 2 files changed, 35 insertions(+)

diff --git a/dev-python/virtualenvwrapper/Manifest 
b/dev-python/virtualenvwrapper/Manifest
index f743c8bea78..2f953f8d9ee 100644
--- a/dev-python/virtualenvwrapper/Manifest
+++ b/dev-python/virtualenvwrapper/Manifest
@@ -1 +1,2 @@
 DIST virtualenvwrapper-4.7.1.tar.gz 89930 SHA256 
3bf73ede42a689adeedc8ac85662cb539665d3d029459bc8d3e6835ecd81ffde SHA512 
f972179992728b8b600388b34562fa9de355f526e4ee25ea88840700a57f196a60eba91ac3137e7d826925c7a8ade7479af383bcbfb8b9b837d0a374b8b3c4fd
 WHIRLPOOL 
c56cab31ec89b8dd5bfeb7949f72b2d5c5e6f40543bc7fa960b03edcc9d3c2ec095335eecf0b40adcc0fd1c92efc1e760748db772a3da0c44591ed7de5248880
+DIST virtualenvwrapper-4.8.2.tar.gz 91331 SHA256 
18d8e4c500c4c4ee794f704e050cf2bbb492537532a4521d1047e7dd1ee4e374 SHA512 
53d92f653b988873da5a46e316a40ef767d97f75072e311aa4a8ae45c8aabb49569e36cc35597f9bdfc1f883a51eb648d5f01f4ea8b3237fae30a21dca67d7bc
 WHIRLPOOL 
dd775b98a7f4e143c847ad985b65141a385a862e49e364c1087dbd924ee1aaa088be2d35e23314b333f2909be4d6492496c6ed956ad865d48172b7429bb1f7fe

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild
new file mode 100644
index 000..3cf33e1ade9
--- /dev/null
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.8.2.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Set of extensions to Ian Bicking's virtualenv tool"
+HOMEPAGE="
+   http://www.doughellmann.com/projects/virtualenvwrapper
+   https://pypi.python.org/pypi/virtualenvwrapper;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+# testsuite doesn't work out of the box.  Demand of a virtualenv outstrips 
setup by the eclass
+RESTRICT=test
+
+RDEPEND="
+   dev-python/virtualenv[${PYTHON_USEDEP}]
+   dev-python/stevedore[${PYTHON_USEDEP}]
+   dev-python/virtualenv-clone[${PYTHON_USEDEP}]"
+DEPEND="${DEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/pbr[${PYTHON_USEDEP}]"
+
+python_test() {
+   bash ./tests/run_tests || die "Tests failed under ${EPYTHON}"
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2017-05-02 Thread Michał Górny
commit: 4fd709d9ec2630efcc23fd8fbd13f1aff161b761
Author: Michał Górny  gentoo  org>
AuthorDate: Tue May  2 08:57:15 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue May  2 09:47:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fd709d9

dev-python/virtualenvwrapper: Clean old versions up

 dev-python/virtualenvwrapper/Manifest  |  4 ---
 .../virtualenvwrapper-4.3.1.ebuild | 35 --
 .../virtualenvwrapper-4.3.2.ebuild | 35 --
 .../virtualenvwrapper-4.5.1.ebuild | 35 --
 .../virtualenvwrapper-4.6.0.ebuild | 35 --
 5 files changed, 144 deletions(-)

diff --git a/dev-python/virtualenvwrapper/Manifest 
b/dev-python/virtualenvwrapper/Manifest
index ea6ba33464c..f743c8bea78 100644
--- a/dev-python/virtualenvwrapper/Manifest
+++ b/dev-python/virtualenvwrapper/Manifest
@@ -1,5 +1 @@
-DIST virtualenvwrapper-4.3.1.tar.gz 86086 SHA256 
e6228aea4e76ba6a628455313eff4a6e2cf003010b23399c3a7dabd8798beb08 SHA512 
182cc2a236af7984686b0820e6032a70aef884efdf9832eb90196b3622be54c447d67148d944d513ab12e58749e5cdff8ef0af36cb5bf5cee9d9547a41c96f68
 WHIRLPOOL 
11ec5ac397d5354fd1b93edb3e01cacf0c6cfa5b3512d7f954fdede00d2d2f62d1089650f42f04ecd8370b3d21a72cde81c0c54d24f393cfd2490654cd03e847
-DIST virtualenvwrapper-4.3.2.tar.gz 86495 SHA256 
ee545ade2e6bc5433284388afde6ec6417a4d819ba7b0d65d0ce8c4d3fcc11fd SHA512 
91d93739be1b378c15ea57a325f891762d6b4afcff84b7f4a4401d0090afeef45991ae3339fc6c99a793963f17bef4457715482a1e8f62186dcaf440120093b3
 WHIRLPOOL 
9889d6c9ab171ace506962df7e294e688749202f94a723b91bfce8ebc751d614ad3ebfe2b58669b5a585ef248de03d727302d5609ea93c54dddcc3a33a82665e
-DIST virtualenvwrapper-4.5.1.tar.gz 89268 SHA256 
ac0b09ce7409ec9d5b8ec90d073641b86bbafc3161f844347b89cc25b2e3a3d9 SHA512 
de925da1cf0ec8d25a55c2cc430ea0a2840eaf5e53f0395d925c13c12601db394aeb0b14a15b16b47f4673214ce726df1572e87a28f96d6a6ccc13b3fe43b966
 WHIRLPOOL 
6773359ae6a9608b7b0fc76db9f9640a66d78d72e7fb0e7f377eb1e8daece862cfc48685050832b79c0153a207517cead7b2ecef716d95f4e7137da802f59620
-DIST virtualenvwrapper-4.6.0.tar.gz 89516 SHA256 
f3c73c3a5436f4d040505e5fb45401abdc4be267a80fa071878cfaa685e685e1 SHA512 
a7f64a7ae3aad6038b12c3bfca976772fa6a36c3420194f88b87fdd5eb80b036d331ef35b60c8ffaa4b152eaefeddf161283c9f79cf7dbbc8a5f806bdeed51a2
 WHIRLPOOL 
7eb764171f2ec40e02e9b383f23c1d4d22c12c15d5df65e6022251b5b96ab9fe09273f62d073e10eb54b6998ad92b3c2127504a6d03672ab90184973c853fd24
 DIST virtualenvwrapper-4.7.1.tar.gz 89930 SHA256 
3bf73ede42a689adeedc8ac85662cb539665d3d029459bc8d3e6835ecd81ffde SHA512 
f972179992728b8b600388b34562fa9de355f526e4ee25ea88840700a57f196a60eba91ac3137e7d826925c7a8ade7479af383bcbfb8b9b837d0a374b8b3c4fd
 WHIRLPOOL 
c56cab31ec89b8dd5bfeb7949f72b2d5c5e6f40543bc7fa960b03edcc9d3c2ec095335eecf0b40adcc0fd1c92efc1e760748db772a3da0c44591ed7de5248880

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.3.1.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.3.1.ebuild
deleted file mode 100644
index ce37b77f4f0..000
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.3.1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-
-inherit distutils-r1
-
-DESCRIPTION="Set of extensions to Ian Bicking's virtualenv tool"
-HOMEPAGE="http://www.doughellmann.com/projects/virtualenvwrapper 
https://pypi.python.org/pypi/virtualenvwrapper;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-# testsuite doesn't work out of the box.  Demand of a virtualenv outstrips 
setup by the exlass
-RESTRICT=test
-
-RDEPEND="dev-python/virtualenv[${PYTHON_USEDEP}]
-   >=dev-python/stevedore-0.15-r1[${PYTHON_USEDEP}]
-   dev-python/virtualenv-clone[${PYTHON_USEDEP}]"
-DEPEND="${DEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   dev-python/pbr[${PYTHON_USEDEP}]
-   test? ( dev-python/tox[${PYTHON_USEDEP}] )"
-
-src_prepare() {
-   sed -e 's:-o shwordsplit::' -i tests/run_tests || die
-}
-
-python_test() {
-   bash ./tests/run_tests || die "Tests failed under ${EPYTHON}"
-}

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.3.2.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.3.2.ebuild
deleted file mode 100644
index 67a6054b491..000
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.3.2.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-
-inherit distutils-r1
-
-DESCRIPTION="Set of extensions to Ian Bicking's virtualenv tool"
-HOMEPAGE="http://www.doughellmann.com/projects/virtualenvwrapper 
https://pypi.python.org/pypi/virtualenvwrapper;

[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2017-01-07 Thread David Seifert
commit: 28fd70122bab3d108a1349b6fa9db9f4dda91f11
Author: Ilya Tumaykin  gmail  com>
AuthorDate: Fri Jan  6 19:27:15 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Jan  7 14:48:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28fd7012

dev-python/virtualenvwrapper: add python3_5 support

Build succeeds, no testsuite, basic virtualenv operations work.

Gentoo-Bug: 572834

Package-Manager: Portage-2.3.3, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/3355

 dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild
index bf208b1..acaec4e 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild
@@ -2,9 +2,9 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
-PYTHON_COMPAT=( python{2_7,3_4} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
 
 inherit distutils-r1
 
@@ -31,8 +31,10 @@ DEPEND="${DEPEND}
dev-python/pbr[${PYTHON_USEDEP}]"
 
 # Keep just in case
-src_prepare() {
+python_prepare_all() {
sed -e 's:-o shwordsplit::' -i tests/run_tests || die
+
+   distutils-r1_python_prepare_all
 }
 
 python_test() {



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2017-01-02 Thread Agostino Sarubbo
commit: 11638fb9bcc14d0dba329d31e23e2ceabbea8f02
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Jan  2 09:52:34 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Jan  2 09:54:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11638fb9

dev-python/virtualenvwrapper: x86 stable wrt bug #431608

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

 dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild
index 3ed9cdd..bf208b1 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.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$
 
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 
 # testsuite doesn't work out of the box.  Demand of a virtualenv outstrips 
setup by the eclass



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2016-11-06 Thread Michael Palimaka
commit: 0c7199601096573c36d60da7c44ad80314a077b7
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Nov  6 18:28:57 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Nov  6 18:29:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c719960

dev-python/virtualenvwrapper: amd64 stable

Gentoo-bug: 431608

Package-Manager: portage-2.3.2

 dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild
index 56eeca5..3ed9cdd 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="test"
 
 # testsuite doesn't work out of the box.  Demand of a virtualenv outstrips 
setup by the eclass



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/files/

2016-09-20 Thread David Seifert
commit: 470cbb89750e2e4cc1c6ca4a4a5e139e0550b840
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Tue Sep 20 16:55:27 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Tue Sep 20 21:06:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=470cbb89

dev-python/virtualenvwrapper: remove unused file

Closes: https://github.com/gentoo/gentoo/pull/2376

Signed-off-by: David Seifert  gentoo.org>

 dev-python/virtualenvwrapper/files/tox.ini | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/dev-python/virtualenvwrapper/files/tox.ini 
b/dev-python/virtualenvwrapper/files/tox.ini
deleted file mode 100644
index 70380f6..
--- a/dev-python/virtualenvwrapper/files/tox.ini
+++ /dev/null
@@ -1,3 +0,0 @@
-[testenv]
-commands = bash ./tests/run_tests {envdir} []
-deps = virtualenv



[gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenvwrapper/

2016-02-01 Thread Justin Lecher
commit: a00188be0bad6b01051f84ddbe1ea8aac6fa1e66
Author: Justin Lecher  gentoo  org>
AuthorDate: Mon Feb  1 11:51:28 2016 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Mon Feb  1 15:44:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a00188be

dev-python/virtualenvwrapper: Version Bump

Shorten DESCRIPTION

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/virtualenvwrapper/Manifest  |  1 +
 .../virtualenvwrapper/virtualenvwrapper-4.3.1.ebuild   |  4 ++--
 .../virtualenvwrapper/virtualenvwrapper-4.3.2.ebuild   |  4 ++--
 .../virtualenvwrapper/virtualenvwrapper-4.5.1.ebuild   |  4 ++--
 .../virtualenvwrapper/virtualenvwrapper-4.6.0.ebuild   |  4 ++--
 ...wrapper-4.6.0.ebuild => virtualenvwrapper-4.7.1.ebuild} | 14 +-
 6 files changed, 18 insertions(+), 13 deletions(-)

diff --git a/dev-python/virtualenvwrapper/Manifest 
b/dev-python/virtualenvwrapper/Manifest
index 80825ca..ea6ba33 100644
--- a/dev-python/virtualenvwrapper/Manifest
+++ b/dev-python/virtualenvwrapper/Manifest
@@ -2,3 +2,4 @@ DIST virtualenvwrapper-4.3.1.tar.gz 86086 SHA256 
e6228aea4e76ba6a628455313eff4a6
 DIST virtualenvwrapper-4.3.2.tar.gz 86495 SHA256 
ee545ade2e6bc5433284388afde6ec6417a4d819ba7b0d65d0ce8c4d3fcc11fd SHA512 
91d93739be1b378c15ea57a325f891762d6b4afcff84b7f4a4401d0090afeef45991ae3339fc6c99a793963f17bef4457715482a1e8f62186dcaf440120093b3
 WHIRLPOOL 
9889d6c9ab171ace506962df7e294e688749202f94a723b91bfce8ebc751d614ad3ebfe2b58669b5a585ef248de03d727302d5609ea93c54dddcc3a33a82665e
 DIST virtualenvwrapper-4.5.1.tar.gz 89268 SHA256 
ac0b09ce7409ec9d5b8ec90d073641b86bbafc3161f844347b89cc25b2e3a3d9 SHA512 
de925da1cf0ec8d25a55c2cc430ea0a2840eaf5e53f0395d925c13c12601db394aeb0b14a15b16b47f4673214ce726df1572e87a28f96d6a6ccc13b3fe43b966
 WHIRLPOOL 
6773359ae6a9608b7b0fc76db9f9640a66d78d72e7fb0e7f377eb1e8daece862cfc48685050832b79c0153a207517cead7b2ecef716d95f4e7137da802f59620
 DIST virtualenvwrapper-4.6.0.tar.gz 89516 SHA256 
f3c73c3a5436f4d040505e5fb45401abdc4be267a80fa071878cfaa685e685e1 SHA512 
a7f64a7ae3aad6038b12c3bfca976772fa6a36c3420194f88b87fdd5eb80b036d331ef35b60c8ffaa4b152eaefeddf161283c9f79cf7dbbc8a5f806bdeed51a2
 WHIRLPOOL 
7eb764171f2ec40e02e9b383f23c1d4d22c12c15d5df65e6022251b5b96ab9fe09273f62d073e10eb54b6998ad92b3c2127504a6d03672ab90184973c853fd24
+DIST virtualenvwrapper-4.7.1.tar.gz 89930 SHA256 
3bf73ede42a689adeedc8ac85662cb539665d3d029459bc8d3e6835ecd81ffde SHA512 
f972179992728b8b600388b34562fa9de355f526e4ee25ea88840700a57f196a60eba91ac3137e7d826925c7a8ade7479af383bcbfb8b9b837d0a374b8b3c4fd
 WHIRLPOOL 
c56cab31ec89b8dd5bfeb7949f72b2d5c5e6f40543bc7fa960b03edcc9d3c2ec095335eecf0b40adcc0fd1c92efc1e760748db772a3da0c44591ed7de5248880

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.3.1.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.3.1.ebuild
index c31d36f..05a6fb1 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.3.1.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.3.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python{2_7,3_3,3_4} )
 
 inherit distutils-r1
 
-DESCRIPTION="virtualenvwrapper is a set of extensions to Ian Bicking's 
virtualenv tool"
+DESCRIPTION="Set of extensions to Ian Bicking's virtualenv tool"
 HOMEPAGE="http://www.doughellmann.com/projects/virtualenvwrapper 
https://pypi.python.org/pypi/virtualenvwrapper;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.3.2.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.3.2.ebuild
index b2b20ee..a1d82ea 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.3.2.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.3.2.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$
 
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python{2_7,3_3,3_4} )
 
 inherit distutils-r1
 
-DESCRIPTION="virtualenvwrapper is a set of extensions to Ian Bicking's 
virtualenv tool"
+DESCRIPTION="Set of extensions to Ian Bicking's virtualenv tool"
 HOMEPAGE="http://www.doughellmann.com/projects/virtualenvwrapper 
https://pypi.python.org/pypi/virtualenvwrapper;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 

diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.5.1.ebuild 
b/dev-python/virtualenvwrapper/virtualenvwrapper-4.5.1.ebuild
index b2b20ee..a1d82ea 100644
--- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.5.1.ebuild
+++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.5.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU