summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2023-06-04 07:27:10 +0200
committerMichał Górny <mgorny@gentoo.org>2023-06-04 07:44:41 +0200
commit81396b81001791620722a88c102b7219f7582665 (patch)
treeefdf7a9069d54344eeaf36b01e68072261bb2a58 /dev-python/python-ctags
parentdev-python/python-ctags: Prepare for rename (diff)
downloadgentoo-81396b81001791620722a88c102b7219f7582665.tar.gz
gentoo-81396b81001791620722a88c102b7219f7582665.tar.bz2
gentoo-81396b81001791620722a88c102b7219f7582665.zip
Rename dev-python/{python-ctags → python-ctags3}
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/python-ctags')
-rw-r--r--dev-python/python-ctags/Manifest1
-rw-r--r--dev-python/python-ctags/metadata.xml13
-rw-r--r--dev-python/python-ctags/python-ctags-1.5.0-r1.ebuild40
3 files changed, 0 insertions, 54 deletions
diff --git a/dev-python/python-ctags/Manifest b/dev-python/python-ctags/Manifest
deleted file mode 100644
index cb0a9f4390f9..000000000000
--- a/dev-python/python-ctags/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST python-ctags3-1.5.0.gh.tar.gz 63921 BLAKE2B 1d25e7bafbdf157f1051321058b39fc9347bc479a61fae637bd11ef8540a3c67e2abd101493668977f05e464a8203b8c518fd1f4433defe5cec9939a200438b2 SHA512 414774c865af51e54c53f66dc7b3cfb5a03b64ea4eb94325658c158542615dfffdd1a5933d9ae03cedf1dbac30e1810d5914fbc3d6ab41e5f708c5d3000d161e
diff --git a/dev-python/python-ctags/metadata.xml b/dev-python/python-ctags/metadata.xml
deleted file mode 100644
index 69a96d84a4dd..000000000000
--- a/dev-python/python-ctags/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="person">
- <email>sbraz@gentoo.org</email>
- <name>Louis Sautier</name>
- </maintainer>
- <upstream>
- <remote-id type="pypi">python-ctags3</remote-id>
- <remote-id type="github">universal-ctags/python-ctags3</remote-id>
- <bugs-to>https://github.com/universal-ctags/python-ctags3/issues</bugs-to>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/python-ctags/python-ctags-1.5.0-r1.ebuild b/dev-python/python-ctags/python-ctags-1.5.0-r1.ebuild
deleted file mode 100644
index fea99da7b0d2..000000000000
--- a/dev-python/python-ctags/python-ctags-1.5.0-r1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( pypy3 python3_{10..12} )
-
-inherit distutils-r1
-
-MY_P="python-ctags3-${PV}"
-DESCRIPTION="Exuberant Ctags indexing python bindings"
-HOMEPAGE="https://github.com/universal-ctags/python-ctags3"
-# PyPI tarballs don't contain pyx files
-SRC_URI="https://github.com/universal-ctags/python-ctags3/archive/${PV}.tar.gz -> ${MY_P}.gh.tar.gz"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="LGPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="dev-util/ctags:="
-BDEPEND="dev-python/cython[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
- # We currently need to let Cython regenerate this file to make Python 3.11
- # support work
- rm src/_readtags.c || die
- cython -3 src/_readtags.pyx || die
- distutils-r1_python_prepare_all
-}
-
-python_test() {
- # To prevent pytest from importing it and failing with:
- # ModuleNotFoundError: No module named 'ctags._readtags'
- rm -rf src/ctags || die
- epytest
-}