1
0
Fork 0

Merge branch 'master' of github.com:TheChymera/overlay

This commit is contained in:
Horea Christian 2018-10-22 17:40:30 +02:00
commit 348c550738
4 changed files with 1 additions and 58 deletions

View File

@ -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

View File

@ -1 +0,0 @@
DIST svg.path-3.0.tar.gz 17077 SHA256 4cba1904378b3587132bb454f70d43e8f6c98d3f33e346111d1dc4de88cf5022 SHA512 73d23f1386bbd4d1c1d805766f7e6fe6f8b7ac731e104020e7d853d7f1b46bc2681f44ef20d9c5343197d9d16b2af49f2c4ef4ba5945f4d25fa0493502203e13 WHIRLPOOL d330db5a918b365ed6cfb2485ead33227631632a5391503e9313c924b16c8136c90fcaaa07edcb470c51c08ca81a2469511f9e08eef0bedb6386ba3bfa3099cf

View File

@ -1,21 +0,0 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>horea.christ@gmail.com</email>
<name>Horea Christian</name>
</maintainer>
<maintainer type="project">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
<longdescription lang="en">
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.
</longdescription>
<upstream>
<remote-id type="github">regebro/svg.path</remote-id>
<remote-id type="pypi">svg.path</remote-id>
</upstream>
</pkgmetadata>

View File

@ -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
}