summaryrefslogtreecommitdiff
path: root/dev-python/phply
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/phply')
-rw-r--r--dev-python/phply/Manifest1
-rw-r--r--dev-python/phply/metadata.xml12
-rw-r--r--dev-python/phply/phply-1.2.6.ebuild34
3 files changed, 0 insertions, 47 deletions
diff --git a/dev-python/phply/Manifest b/dev-python/phply/Manifest
deleted file mode 100644
index 0b166cf0d18a..000000000000
--- a/dev-python/phply/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST phply-1.2.6.gh.tar.gz 36068 BLAKE2B 766783e047b99330e5af829be875b9ee06fa70222a9c42a8792506ef0c6decc525ca90560f54d9833cdf4516fcd447f19a05d94d595a7e5056ca5d3d89bd1753 SHA512 3d7065971c6839dbe908efbfede1865183aebb0ffea1bb3b1a27c20239736894e52dc9b0a89ad6da152f1d9411dce288cf67a907d86c9838f0516236f0c19dd6
diff --git a/dev-python/phply/metadata.xml b/dev-python/phply/metadata.xml
deleted file mode 100644
index f0b9882cf6ca..000000000000
--- a/dev-python/phply/metadata.xml
+++ /dev/null
@@ -1,12 +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>
- </maintainer>
- <stabilize-allarches/>
- <upstream>
- <remote-id type="pypi">phply</remote-id>
- <remote-id type="github">viraptor/phply</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/phply/phply-1.2.6.ebuild b/dev-python/phply/phply-1.2.6.ebuild
deleted file mode 100644
index 3ec54c8b0a3d..000000000000
--- a/dev-python/phply/phply-1.2.6.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 2022-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="Lexer and parser for PHP source implemented using PLY"
-HOMEPAGE="
- https://github.com/viraptor/phply/
- https://pypi.org/project/phply/"
-SRC_URI="
- https://github.com/viraptor/phply/archive/${PV}.tar.gz
- -> ${P}.gh.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm64 x86"
-
-RDEPEND="dev-python/ply[${PYTHON_USEDEP}]"
-BDEPEND="${RDEPEND}"
-
-distutils_enable_tests pytest
-
-src_prepare() {
- # namespace? seriously?
- sed -i -e '/namespace_packages/d' setup.py || die
- # prevent installing tests, turn phply back into normal package
- mv tests/__init__.py phply/ || die
- distutils-r1_src_prepare
-}