diff --git a/README.md b/README.md index abcd5c9..0bf9a5e 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,8 @@ An overlay for Gentoo, with various packages used and/or maintained by [TheChymera](https://github.com/TheChymera). A number of the ebuilds available from this overlay are regularly copied from external sources (see respective commit mesages), and thus have a different maintainer. -The repository structure is somewhat based on that of the *gentoo science overlay*, and we also use thin manifests. -If you are looking for the neuroscience software packages maintained by [TheChymera](https://github.com/TheChymera), use the [NeuroGentoo overlay](https://github.com/TheChymera/neurogentoo) instead. +If you are looking for the neuroscience software packages maintained by [TheChymera](https://github.com/TheChymera), use the [Gentoo Science](https://github.com/gentoo/sci) instead. ## Install diff --git a/dev-python/svg-path/Manifest b/dev-python/svg-path/Manifest deleted file mode 100644 index 4c92d93..0000000 --- a/dev-python/svg-path/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST svg.path-3.0.tar.gz 17077 SHA256 4cba1904378b3587132bb454f70d43e8f6c98d3f33e346111d1dc4de88cf5022 SHA512 73d23f1386bbd4d1c1d805766f7e6fe6f8b7ac731e104020e7d853d7f1b46bc2681f44ef20d9c5343197d9d16b2af49f2c4ef4ba5945f4d25fa0493502203e13 WHIRLPOOL d330db5a918b365ed6cfb2485ead33227631632a5391503e9313c924b16c8136c90fcaaa07edcb470c51c08ca81a2469511f9e08eef0bedb6386ba3bfa3099cf diff --git a/dev-python/svg-path/metadata.xml b/dev-python/svg-path/metadata.xml deleted file mode 100644 index e87a111..0000000 --- a/dev-python/svg-path/metadata.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - horea.christ@gmail.com - Horea Christian - - - proxy-maint@gentoo.org - Proxy Maintainers - - - The svg.path package provides a collection of Python objects that - implement the different path commands in SVG, as well as a parser for - SVG path definitions. - - - regebro/svg.path - svg.path - - diff --git a/dev-python/svg-path/svg-path-3.0.ebuild b/dev-python/svg-path/svg-path-3.0.ebuild deleted file mode 100644 index 71ee0bd..0000000 --- a/dev-python/svg-path/svg-path-3.0.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} ) - -inherit distutils-r1 - -MY_PN="svg.path" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="SVG path objects and parser" -HOMEPAGE="https://github.com/regebro/svg.path" -SRC_URI="https://github.com/regebro/svg.path/archive/${PV}.tar.gz -> ${MY_P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${MY_P}" - -python_test() { - esetup.py test || die -} - -src_install() { - cd src || die - python_foreach_impl python_domodule svg -}