proj/gentoo: Initial commit

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 <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
This commit is contained in:
Robin H. Johnson
2015-08-08 13:49:04 -07:00
commit 56bd759df1
97532 changed files with 3536859 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST pyudev-0.16.1.tar.gz 74953 SHA256 765d1c14bd9bd031f64e2612225621984cb2bbb8cbc0c03538bcc4c735ff1c95 SHA512 7f62c6794027411583f874bdf746de457f19048955867d30008bc1ee0d30040a97f73b9e52ae3645d469fc401128703d4e703e294b85481e927ffaba27e45e6a WHIRLPOOL 4c366a1eed92bf274ef84eab6242beb09cd6e906556f6ccb24113fafec2dcc47b8da94487505473fc6f7b39539cdc2809cef2d07a1ab8c0616fc73efba9b2e1a

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>python</herd>
<longdescription lang="en">pyudev is a Python binding to libudev, the hardware management
library and service found in modern linux systems.</longdescription>
<use>
<flag name="pygobject">Install PyGobject binding</flag>
<flag name="pyqt4">Install PyQt4 binding</flag>
<flag name="pyside">Install PySide binding</flag>
</use>
<upstream>
<remote-id type="pypi">pyudev</remote-id>
<remote-id type="github">pyudev/pyudev</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,70 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
inherit distutils-r1
DESCRIPTION="Python binding to libudev"
HOMEPAGE="http://pyudev.readthedocs.org https://github.com/pyudev/pyudev"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 arm x86"
IUSE="pygobject pyqt4 pyside test"
RDEPEND="virtual/udev
pygobject? ( dev-python/pygobject:2[$(python_gen_usedep 'python2*')] )
pyqt4? ( dev-python/PyQt4[${PYTHON_USEDEP}] )
pyside? ( dev-python/pyside[$(python_gen_usedep '!(python3_3)')] )"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/mock[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}] )"
DOCS=( CHANGES.rst README.rst )
REQUIRED_USE="pygobject? ( || ( $(python_gen_useflags 'python2*') ) )
pyside? ( $(python_gen_useflags '!(python3_3)') )"
python_prepare_all() {
# tests are known to pass then fail on alternate runs
# tests: fix run_path
sed -i -e "s|== \('/run/udev'\)|in (\1,'/dev/.udev')|g" \
tests/test_core.py || die
if ! use pygobject; then
rm pyudev/glib.py || die
sed -i -e "s|[, ]*GlibBinding()||g" \
tests/test_observer.py || die
fi
if ! use pyqt4; then
rm pyudev/pyqt4.py || die
sed -i -e "s|Qt4Binding('PyQt4')[, ]*||g" \
tests/test_observer.py || die
fi
if ! use pyside; then
rm pyudev/pyside.py || die
sed -i -e "s|Qt4Binding('PySide')[, ]*||g" \
tests/test_observer.py || die
fi
if ! use pyqt4 && ! use pyside; then
rm pyudev/_qt_base.py || die
fi
if ! use pyqt4 && ! use pyside && ! use pygobject; then
rm tests/test_observer.py || die
fi
ewarn "If your PORTAGE_TMPDIR is longer in length then '/var/tmp/',"
ewarn "change it to /var/tmp to ensure tests will pass."
distutils-r1_python_prepare_all
}
python_test() {
py.test || die "Tests fail with ${EPYTHON}"
}