diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-python/python-xlib | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
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
Diffstat (limited to 'dev-python/python-xlib')
-rw-r--r-- | dev-python/python-xlib/Manifest | 1 | ||||
-rw-r--r-- | dev-python/python-xlib/files/defs | 11 | ||||
-rw-r--r-- | dev-python/python-xlib/metadata.xml | 8 | ||||
-rw-r--r-- | dev-python/python-xlib/python-xlib-0.15_rc1-r2.ebuild | 49 | ||||
-rw-r--r-- | dev-python/python-xlib/python-xlib-0.15_rc1.ebuild | 38 |
5 files changed, 107 insertions, 0 deletions
diff --git a/dev-python/python-xlib/Manifest b/dev-python/python-xlib/Manifest new file mode 100644 index 000000000000..1e3981c6e71b --- /dev/null +++ b/dev-python/python-xlib/Manifest @@ -0,0 +1 @@ +DIST python-xlib-0.15rc1.tar.gz 188750 SHA256 823734489fc8c47113deb606fdc7142759d4c45546014255af8c5b8787b9accb SHA512 e27f56e0d76fac534e6754b1e64316636b49859eb6c9ceef5952c8b42cf53bc798a705fa54c283c896324d9a23778beec583cb62984a6a43b024643a70f3fe3a WHIRLPOOL bdca7c97cfbf438cce6297d5d035488986886d95f6f80014c9d9b1966720b98600b13f6dc09b6aed209787833e3174a0bf8444c3ba9c46e9f106051b978d322b diff --git a/dev-python/python-xlib/files/defs b/dev-python/python-xlib/files/defs new file mode 100644 index 000000000000..2da6f932799b --- /dev/null +++ b/dev-python/python-xlib/files/defs @@ -0,0 +1,11 @@ +# Definitions for documentation makefiles + +SRCDIR = ../src + +TOPSRC = $(SRCDIR)/python-xlib.texi + +SRCS = $(TOPSRC) \ + $(SRCDIR)/concepts.texi $(SRCDIR)/package.texi \ + $(SRCDIR)/connect.texi $(SRCDIR)/errors.texi \ + $(SRCDIR)/events.texi $(SRCDIR)/objects.texi + diff --git a/dev-python/python-xlib/metadata.xml b/dev-python/python-xlib/metadata.xml new file mode 100644 index 000000000000..8f5f346a1684 --- /dev/null +++ b/dev-python/python-xlib/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>python</herd> + <upstream> + <remote-id type="sourceforge">python-xlib</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-python/python-xlib/python-xlib-0.15_rc1-r2.ebuild b/dev-python/python-xlib/python-xlib-0.15_rc1-r2.ebuild new file mode 100644 index 000000000000..de0ef23d4584 --- /dev/null +++ b/dev-python/python-xlib/python-xlib-0.15_rc1-r2.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 pypy ) + +inherit distutils-r1 + +MY_P="${P/_/}" +S="${WORKDIR}/${MY_P}" + +DESCRIPTION="A fully functional X client library for Python, written in Python" +HOMEPAGE="http://python-xlib.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" +IUSE="doc" + +python_prepare_all() { + sed -e 's:make:$(MAKE):g' -i doc/Makefile || die + cp -r "${FILESDIR}"/defs doc/src/ || die + + distutils-r1_python_prepare_all +} + +python_compile_all() { + if use doc; then + cd doc || die + VARTEXFONTS="${T}"/fonts emake html + fi +} + +python_test() { + cd test || die + + local t + for t in *.py; do + "${PYTHON}" "${t}" || die + done +} + +python_install_all() { + use doc && local HTML_DOCS=( doc/html/. ) + distutils-r1_python_install_all +} diff --git a/dev-python/python-xlib/python-xlib-0.15_rc1.ebuild b/dev-python/python-xlib/python-xlib-0.15_rc1.ebuild new file mode 100644 index 000000000000..c2131864078f --- /dev/null +++ b/dev-python/python-xlib/python-xlib-0.15_rc1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="3" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils + +MY_P="${P/_/}" +S="${WORKDIR}/${MY_P}" + +DESCRIPTION="A fully functional X client library for Python, written in Python" +HOMEPAGE="http://python-xlib.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~arm ppc ~ppc64 x86" +IUSE="" + +RESTRICT_PYTHON_ABIS="3.*" + +PYTHON_MODNAME="Xlib" + +src_test() { + cd test + testing() { + local return_status="0" test + for test in *.py; do + echo "Running ${test}..." + PYTHONPATH="../build-${PYTHON_ABI}/lib" "$(PYTHON)" "${test}" || return_status="1" + done + return "${return_status}" + } + python_execute_function testing +} |