From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- dev-python/hcs-utils/Manifest | 2 ++ dev-python/hcs-utils/hcs-utils-1.4.ebuild | 30 ++++++++++++++++++++++++++++++ dev-python/hcs-utils/hcs-utils-1.5.ebuild | 30 ++++++++++++++++++++++++++++++ dev-python/hcs-utils/metadata.xml | 14 ++++++++++++++ 4 files changed, 76 insertions(+) create mode 100644 dev-python/hcs-utils/Manifest create mode 100644 dev-python/hcs-utils/hcs-utils-1.4.ebuild create mode 100644 dev-python/hcs-utils/hcs-utils-1.5.ebuild create mode 100644 dev-python/hcs-utils/metadata.xml (limited to 'dev-python/hcs-utils') diff --git a/dev-python/hcs-utils/Manifest b/dev-python/hcs-utils/Manifest new file mode 100644 index 000000000000..dca3c64c2434 --- /dev/null +++ b/dev-python/hcs-utils/Manifest @@ -0,0 +1,2 @@ +DIST hcs_utils-1.4.tar.gz 22995 SHA256 aaecde5f01e975b670e3cb53442caee94dcfbfef4a720b5e5cd9aec8e3393c15 SHA512 f9848b805e7891683c7b6b7ee8de53313d038af13b5e2d745441445681761aa615d76d9f769aca4560828878332bb1c54d85fda82b080d18042d26a5edea84cf WHIRLPOOL babf8cb66e151974e3913078c1b0225334d01133828a31916a613b6968170297862eb1a0da60e06d0447c6394a62e8f7a57101495292738f460f86fb7eea7f2b +DIST hcs_utils-1.5.tar.gz 23316 SHA256 745614347855f8edc7fb1659032166f0a2285cfc8383607aa3f1bf9959525fb4 SHA512 9a8fdddc47e5b4f89d52b59af66594e9b9a3adcf9d0ca5894111a0d359e8c18930e2d38027acfacadbdbf874a281d0f2ce88b310dacbab1f2a39c03bb2fe6fbf WHIRLPOOL 1ee476f1112557b8808d6cb5163b419d3b86db8b64d49bc9bf34f878eb0ba0e14ff278dad599b2a7c51d015fb98bc92be0d0a361a372b668c18c9d23dfa09959 diff --git a/dev-python/hcs-utils/hcs-utils-1.4.ebuild b/dev-python/hcs-utils/hcs-utils-1.4.ebuild new file mode 100644 index 000000000000..fe46dce04101 --- /dev/null +++ b/dev-python/hcs-utils/hcs-utils-1.4.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +MY_P=${P/_rc/rc} +DESCRIPTION="A library containing some useful snippets" +HOMEPAGE="http://pypi.python.org/pypi/hcs_utils" +SRC_URI="mirror://pypi/h/${PN/-/_}/${MY_P/-/_}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] + test? ( dev-python/pytest[${PYTHON_USEDEP}] )" +RDEPEND="" + +S="${WORKDIR}/${MY_P/-/_}" + +python_test() { + cd "${BUILD_DIR}/lib" || die + py.test --doctest-modules hcs_utils || die +} diff --git a/dev-python/hcs-utils/hcs-utils-1.5.ebuild b/dev-python/hcs-utils/hcs-utils-1.5.ebuild new file mode 100644 index 000000000000..93a79ee4cee2 --- /dev/null +++ b/dev-python/hcs-utils/hcs-utils-1.5.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +MY_P=${P/_rc/rc} +DESCRIPTION="A library containing some useful snippets" +HOMEPAGE="http://pypi.python.org/pypi/hcs_utils" +SRC_URI="mirror://pypi/h/${PN/-/_}/${MY_P/-/_}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="test" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] + test? ( dev-python/pytest[${PYTHON_USEDEP}] )" +RDEPEND="" + +S="${WORKDIR}/${MY_P/-/_}" + +python_test() { + pushd "${BUILD_DIR}/lib" > /dev/null + py.test --doctest-modules hcs_utils || die "Tests failed" +} diff --git a/dev-python/hcs-utils/metadata.xml b/dev-python/hcs-utils/metadata.xml new file mode 100644 index 000000000000..0030c59d4204 --- /dev/null +++ b/dev-python/hcs-utils/metadata.xml @@ -0,0 +1,14 @@ + + + + proxy-maintainers + + fabiano.francesconi@gmail.com + Fabiano Francesconi + Maintainer. Assign bugs to him + + python + + hcs_utils + + -- cgit v1.2.3-65-gdbad