git: 0ab5c8115042 - main - devel/py-virtualenv-clone: Update to 0.5.7
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 28 Nov 2022 17:55:52 UTC
The branch main has been updated by nivit:
URL: https://cgit.FreeBSD.org/ports/commit/?id=0ab5c81150421b5a814182a42e4bc74797b5163b
commit 0ab5c81150421b5a814182a42e4bc74797b5163b
Author: Nicola Vitale <nivit@FreeBSD.org>
AuthorDate: 2022-11-28 17:53:28 +0000
Commit: Nicola Vitale <nivit@FreeBSD.org>
CommitDate: 2022-11-28 17:54:39 +0000
devel/py-virtualenv-clone: Update to 0.5.7
- Reorder variables in Makefile
- Improve text in pkg-descr
---
devel/py-virtualenv-clone/Makefile | 8 +++-----
devel/py-virtualenv-clone/distinfo | 6 +++---
devel/py-virtualenv-clone/pkg-descr | 8 ++++++++
3 files changed, 14 insertions(+), 8 deletions(-)
diff --git a/devel/py-virtualenv-clone/Makefile b/devel/py-virtualenv-clone/Makefile
index c7ae42c7c78e..9139f719da74 100644
--- a/devel/py-virtualenv-clone/Makefile
+++ b/devel/py-virtualenv-clone/Makefile
@@ -1,6 +1,5 @@
PORTNAME= virtualenv-clone
-PORTVERSION= 0.5.4
-PORTREVISION= 0
+PORTVERSION= 0.5.7
CATEGORIES= devel
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@@ -12,10 +11,9 @@ WWW= https://github.com/edwardgeorge/virtualenv-clone
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
-USES= python:3.6+
+USES= python:3.7+
+USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes
-USE_PYTHON= autoplist concurrent distutils
-
.include <bsd.port.mk>
diff --git a/devel/py-virtualenv-clone/distinfo b/devel/py-virtualenv-clone/distinfo
index fa97a74d3240..0e80d58eeea0 100644
--- a/devel/py-virtualenv-clone/distinfo
+++ b/devel/py-virtualenv-clone/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1601739590
-SHA256 (virtualenv-clone-0.5.4.tar.gz) = 665e48dd54c84b98b71a657acb49104c54e7652bce9c1c4f6c6976ed4c827a29
-SIZE (virtualenv-clone-0.5.4.tar.gz) = 6169
+TIMESTAMP = 1669655641
+SHA256 (virtualenv-clone-0.5.7.tar.gz) = 418ee935c36152f8f153c79824bb93eaf6f0f7984bae31d3f48f350b9183501a
+SIZE (virtualenv-clone-0.5.7.tar.gz) = 6454
diff --git a/devel/py-virtualenv-clone/pkg-descr b/devel/py-virtualenv-clone/pkg-descr
index d549ac549831..7cdfef1658ca 100644
--- a/devel/py-virtualenv-clone/pkg-descr
+++ b/devel/py-virtualenv-clone/pkg-descr
@@ -1 +1,9 @@
A script for cloning a non-relocatable virtualenv.
+
+Virtualenv provides a way to make virtualenv's relocatable which could then be
+copied as we wanted. However making a virtualenv relocatable this way breaks
+the no-site-packages isolation of the virtualenv as well as other aspects that
+come with relative paths and /usr/bin/env shebangs that may be undesirable.
+
+This script attempts to overcome these and other issues and provide a way to
+easily clone an existing virtualenv.