summaryrefslogtreecommitdiff
path: root/dev-python/virtualenv-clone
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/virtualenv-clone
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadsrcux-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
srcux-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
srcux-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/virtualenv-clone')
-rw-r--r--dev-python/virtualenv-clone/Manifest1
-rw-r--r--dev-python/virtualenv-clone/files/virtualenv-clone-0.5.7-backport-pr79.patch28
-rw-r--r--dev-python/virtualenv-clone/metadata.xml13
-rw-r--r--dev-python/virtualenv-clone/virtualenv-clone-0.5.7.ebuild33
4 files changed, 0 insertions, 75 deletions
diff --git a/dev-python/virtualenv-clone/Manifest b/dev-python/virtualenv-clone/Manifest
deleted file mode 100644
index 8dfe0782f88f..000000000000
--- a/dev-python/virtualenv-clone/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST virtualenv-clone-0.5.7.gh.tar.gz 8749 BLAKE2B 584f67c5a1921667ff2daf3b632ca6661d60ace166c6d05e22783a37c4387a92ec1a97990eb7a0c1a687d3e14d258df54b8b81c560458e33c31657c2c378382a SHA512 a71cc1e02ac70fb41945a505297ae894a0bd17e397f90b7cc9ddff599b2f649ca24d3e767a2672e8c27c387e5a235ec6bcbbfcdeb9a0c6e6d4600cf7f4149f4a
diff --git a/dev-python/virtualenv-clone/files/virtualenv-clone-0.5.7-backport-pr79.patch b/dev-python/virtualenv-clone/files/virtualenv-clone-0.5.7-backport-pr79.patch
deleted file mode 100644
index 7ded302ed099..000000000000
--- a/dev-python/virtualenv-clone/files/virtualenv-clone-0.5.7-backport-pr79.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-https://bugs.gentoo.org/918079
-https://github.com/edwardgeorge/virtualenv-clone/pull/79
-
-From 028494ee84cf4626aab291c621b2b9ec23f8688a Mon Sep 17 00:00:00 2001
-From: matoro <matoro@users.noreply.github.com>
-Date: Mon, 18 Dec 2023 18:18:17 -0500
-Subject: [PATCH] Support Python 3.11, 3.12
-
----
- .travis.yml | 2 ++
- setup.py | 2 ++
- tests/__init__.py | 2 +-
- tox.ini | 2 +-
- 4 files changed, 6 insertions(+), 2 deletions(-)
-
-diff --git a/tests/__init__.py b/tests/__init__.py
-index c9a52ca..14648f4 100644
---- a/tests/__init__.py
-+++ b/tests/__init__.py
-@@ -8,7 +8,7 @@
- tmplocation = tempfile.mkdtemp()
- venv_path = os.path.realpath(os.path.join(tmplocation,'srs_venv'))
- clone_path = os.path.realpath(os.path.join(tmplocation,'clone_venv'))
--versions = ['2.7', '3.4', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10']
-+versions = ['2.7', '3.4', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
-
- def clean():
- if os.path.exists(tmplocation): shutil.rmtree(tmplocation)
diff --git a/dev-python/virtualenv-clone/metadata.xml b/dev-python/virtualenv-clone/metadata.xml
deleted file mode 100644
index f31610b6629e..000000000000
--- a/dev-python/virtualenv-clone/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
- </maintainer>
- <stabilize-allarches/>
- <upstream>
- <remote-id type="pypi">virtualenv-clone</remote-id>
- <remote-id type="github">edwardgeorge/virtualenv-clone</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/virtualenv-clone/virtualenv-clone-0.5.7.ebuild b/dev-python/virtualenv-clone/virtualenv-clone-0.5.7.ebuild
deleted file mode 100644
index e3a89e5f77fc..000000000000
--- a/dev-python/virtualenv-clone/virtualenv-clone-0.5.7.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{13..14} )
-
-inherit distutils-r1
-
-DESCRIPTION="A script for cloning a non-relocatable virtualenv"
-HOMEPAGE="
- https://github.com/edwardgeorge/virtualenv-clone/
- https://pypi.org/project/virtualenv-clone/
-"
-SRC_URI="
- https://github.com/edwardgeorge/virtualenv-clone/archive/${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv x86"
-
-BDEPEND="
- test? (
- dev-python/virtualenv[${PYTHON_USEDEP}]
- )
-"
-
-PATCHES=( "${FILESDIR}/${PN}-0.5.7-backport-pr79.patch" )
-
-distutils_enable_tests pytest