summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenning Schild <henning@hennsch.de>2022-07-26 09:10:22 +0200
committerJoonas Niilola <juippis@gentoo.org>2022-08-04 10:03:47 +0300
commit95c65f62bc55f7845fa3afd77d3640b649046054 (patch)
tree1adf9e14c156f39cbfcb96d8f107bc86c2348566 /dev-python/pyroute2
parentdev-python/pyroute2: bump to 0.7.2 (diff)
downloadgentoo-95c65f62bc55f7845fa3afd77d3640b649046054.tar.gz
gentoo-95c65f62bc55f7845fa3afd77d3640b649046054.tar.bz2
gentoo-95c65f62bc55f7845fa3afd77d3640b649046054.zip
dev-python/pyroute2: Remove old
Signed-off-by: Henning Schild <henning@hennsch.de> Closes: https://github.com/gentoo/gentoo/pull/26601 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-python/pyroute2')
-rw-r--r--dev-python/pyroute2/Manifest1
-rw-r--r--dev-python/pyroute2/files/pyroute2-0.7.1-specify-build-backend-in-pyproject.toml.patch21
-rw-r--r--dev-python/pyroute2/pyroute2-0.7.1.ebuild37
3 files changed, 0 insertions, 59 deletions
diff --git a/dev-python/pyroute2/Manifest b/dev-python/pyroute2/Manifest
index b55fb4eb794d..e093d0376607 100644
--- a/dev-python/pyroute2/Manifest
+++ b/dev-python/pyroute2/Manifest
@@ -1,3 +1,2 @@
DIST pyroute2-0.5.19.gh.tar.gz 457432 BLAKE2B ffb2717c60badb1453eeb15f5b83f1494e851ee011fcdebd3a5d249ecc4bea7064069a1af2fe2d34aefe9812c8b6808b8a14cbe518383c165b0b008d10505c5c SHA512 19b0acbff17415acad20a214e0622ca9a3fc51b92e603ab15663ea7e8da290fc0b2033aeca1c20200307e34173802f89998151f77d5bcfc5f87eb8b42ba591ce
-DIST pyroute2-0.7.1.gh.tar.gz 460164 BLAKE2B 0555da23cc93cdd9b82c9516c5cf2046ca8bccbe122672045a101a3b1feb1582ef3ed987cac9d5a92d86fa1101346aed285aa2524b8474efe089ce66f839df36 SHA512 575e360fb2bcd659a7dc13080eb2deb39015427c6d248dc966f0d48a2cbfe25ec85545001a26a077396be8544ec90e4201fd459f464815d1e4b472e92c640d6e
DIST pyroute2-0.7.2.gh.tar.gz 469459 BLAKE2B 06aa7640bb21c0a7b8035723069d78b28ca39b554b5bdc0a031dbc7376251265b118b222cb4283156c02136e63de4b77103c02a88b700ac5f49fa8ceac28528a SHA512 6c032b39675d539958642bb16b3b964e78613cdd2d49e2e206a13d5256872e3800de5c73cff761e4a756d31df0e07f18f08d193a0543c87be89da348662e6dbd
diff --git a/dev-python/pyroute2/files/pyroute2-0.7.1-specify-build-backend-in-pyproject.toml.patch b/dev-python/pyroute2/files/pyroute2-0.7.1-specify-build-backend-in-pyproject.toml.patch
deleted file mode 100644
index 9c5756dbf7a0..000000000000
--- a/dev-python/pyroute2/files/pyroute2-0.7.1-specify-build-backend-in-pyproject.toml.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-From c4e0bdcf0fc694c9f0f3b01908a5fd1bc6909e39 Mon Sep 17 00:00:00 2001
-From: Henning Schild <henning@hennsch.de>
-Date: Mon, 18 Jul 2022 08:45:21 +0200
-Subject: [PATCH] setup: specify "build-backend" in pyproject.toml
-
-Fixes: 9714df3404b5 ("setup: remove setup.py")
----
- pyproject.toml | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/pyproject.toml b/pyproject.toml
-index d1e6ae6e5647..9787c3bdf008 100644
---- a/pyproject.toml
-+++ b/pyproject.toml
-@@ -1,2 +1,3 @@
- [build-system]
- requires = ["setuptools", "wheel"]
-+build-backend = "setuptools.build_meta"
---
-2.35.1
-
diff --git a/dev-python/pyroute2/pyroute2-0.7.1.ebuild b/dev-python/pyroute2/pyroute2-0.7.1.ebuild
deleted file mode 100644
index d70c7e1797d0..000000000000
--- a/dev-python/pyroute2/pyroute2-0.7.1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8,9,10} pypy3 )
-PYTHON_REQ_USE="sqlite"
-
-inherit distutils-r1
-
-DESCRIPTION="A pure Python netlink and Linux network configuration library"
-HOMEPAGE="https://github.com/svinota/pyroute2"
-
-SRC_URI="
- https://github.com/svinota/${PN}/archive/${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-RDEPEND="
- dev-python/setuptools[${PYTHON_USEDEP}]
-"
-BDEPEND="
- dev-python/setuptools_scm[${PYTHON_USEDEP}]
- dev-python/wheel[${PYTHON_USEDEP}]
-"
-
-PATCHES=(
- "${FILESDIR}"/pyroute2-0.7.1-specify-build-backend-in-pyproject.toml.patch
-)
-
-# tests need root access
-RESTRICT="test"