Sync with portage [Fri Mar 2 16:48:18 MSK 2012].

mhiretskiy
root 12 years ago
parent 8bb4d2d9df
commit d0eafa4b82

@ -2,7 +2,7 @@
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>hwoarang@gentoo.org</email>
<name>Markos Chandras</name>
<email>naota@gentoo.org</email>
<name>Naohiro Aota</name>
</maintainer>
</pkgmetadata>

@ -1,11 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>hwoarang@gentoo.org</email>
<name>Markos Chandras</name>
</maintainer>
<longdescription lang="en">
</longdescription>
<herd>python</herd>
</pkgmetadata>

@ -1,3 +1,4 @@
DIST redis-2.2.12.tar.gz 455240 RMD160 8bf1275fd1d2ad1536ce7081bdf3522d5e92a8d3 SHA1 66d44756e0f3371d9e37b521f5cc17e12e1efba3 SHA256 9e2a4133b920fc4eed731c9cd3a9d0b60e701179ea98b2944ab434e7b1d0db03
DIST redis-2.4.4.tar.gz 607718 RMD160 5b9e1e48216c11b3eca76ad0eafee3d7a0df0c68 SHA1 bc1e383c0216fe5bd5dc47eab39b43bbb9d5f8a5 SHA256 8cb779758315b89969adb588c813bf980e32a760d4204209d90d605dcbc5f708
DIST redis-2.4.7.tar.gz 611577 RMD160 586ffa4161d2697fd1249ed699f9f025d5e7e1a9 SHA1 cd0835f1076ad36797ed6543af187ac28a29953f SHA256 f91956377b7ff23cc23e0c8758e0b873032f36545c61d88436ebb741bf4dd5e1
DIST redis-2.4.8.tar.gz 618164 RMD160 235d607326e57cb296178112c8073db8b473a3e6 SHA1 d050838530e2b77dc1724efd29e5367a4c5c1e18 SHA256 8166ca6ddea4bdb311510590a1ef94e3e32eed2fae44875a5b44fe72bda556f3

@ -0,0 +1,108 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/redis/redis-2.4.8.ebuild,v 1.1 2012/03/02 08:57:11 djc Exp $
EAPI="4"
inherit autotools eutils flag-o-matic
DESCRIPTION="A persistent caching system, key-value and data structures database."
HOMEPAGE="http://redis.io/"
SRC_URI="http://redis.googlecode.com/files/${P}.tar.gz"
LICENSE="BSD"
KEYWORDS="~amd64 ~x86 ~x86-macos ~x86-solaris"
IUSE="+jemalloc tcmalloc test"
SLOT="0"
RDEPEND=""
DEPEND=">=sys-devel/autoconf-2.63
tcmalloc? ( dev-util/google-perftools )
jemalloc? ( dev-libs/jemalloc )
test? ( dev-lang/tcl )
${RDEPEND}"
REQUIRED_USE="tcmalloc? ( !jemalloc )
jemalloc? ( !tcmalloc )"
S="${WORKDIR}/${PN}-${PV/_/-}"
REDIS_PIDDIR=/var/run/redis/
REDIS_PIDFILE=${REDIS_PIDDIR}/redis.pid
REDIS_DATAPATH=/var/lib/redis
REDIS_LOGPATH=/var/log/redis
REDIS_LOGFILE=${REDIS_LOGPATH}/redis.log
pkg_setup() {
enewgroup redis 75
enewuser redis 75 -1 ${REDIS_DATAPATH} redis
if use tcmalloc ; then
export EXTRA_EMAKE="${EXTRA_EMAKE} USE_TCMALLOC=yes"
elif use jemalloc ; then
export EXTRA_EMAKE="${EXTRA_EMAKE} JEMALLOC_SHARED=yes"
else
export EXTRA_EMAKE="${EXTRA_EMAKE} FORCE_LIBC_MALLOC=yes"
fi
}
src_prepare() {
epatch "${FILESDIR}/redis-2.4.3-shared.patch"
epatch "${FILESDIR}/redis-2.4.4-tcmalloc.patch"
if use jemalloc ; then
sed -i -e "s/je_/j/" src/zmalloc.c
fi
# now we will rewrite present Makefiles
local makefiles=""
for MKF in $(find -name 'Makefile' | cut -b 3-); do
mv "${MKF}" "${MKF}.in"
sed -i -e 's:$(CC):@CC@:g' \
-e 's:$(CFLAGS):@AM_CFLAGS@:g' \
-e 's: $(DEBUG)::g' \
-e 's:$(OBJARCH)::g' \
-e 's:ARCH:TARCH:g' \
-e '/^CCOPT=/s:$: $(LDFLAGS):g' \
"${MKF}.in" \
|| die "Sed failed for ${MKF}"
makefiles+=" ${MKF}"
done
# autodetection of compiler and settings; generates the modified Makefiles
cp "${FILESDIR}"/configure.ac-2.2 configure.ac
sed -i -e "s:AC_CONFIG_FILES(\[Makefile\]):AC_CONFIG_FILES([${makefiles}]):g" \
configure.ac || die "Sed failed for configure.ac"
eautoconf
}
src_install() {
# configuration file rewrites
insinto /etc/
sed -r \
-e "/^pidfile\>/s,/var.*,${REDIS_PIDFILE}," \
-e '/^daemonize\>/s,no,yes,' \
-e '/^# bind/s,^# ,,' \
-e '/^# maxmemory\>/s,^# ,,' \
-e '/^maxmemory\>/s,<bytes>,67108864,' \
-e "/^dbfilename\>/s,dump.rdb,${REDIS_DATAPATH}/dump.rdb," \
-e "/^dir\>/s, .*, ${REDIS_DATAPATH}/," \
-e '/^loglevel\>/s:debug:notice:' \
-e "/^logfile\>/s:stdout:${REDIS_LOGFILE}:" \
<redis.conf \
>redis.conf.gentoo
newins redis.conf.gentoo redis.conf
use prefix || fowners redis:redis /etc/redis.conf
fperms 0644 /etc/redis.conf
newconfd "${FILESDIR}/redis.confd" redis
newinitd "${FILESDIR}/redis.initd" redis
nonfatal dodoc 00-RELEASENOTES BUGS CONTRIBUTING README TODO
dobin src/redis-cli
dosbin src/redis-benchmark src/redis-server src/redis-check-aof src/redis-check-dump
fperms 0750 /usr/sbin/redis-benchmark
if use prefix; then
diropts -m0750
else
diropts -m0750 -o redis -g redis
fi
keepdir ${REDIS_DATAPATH} ${REDIS_LOGPATH}
}

@ -0,0 +1,39 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/BitVector/BitVector-3.1.ebuild,v 1.1 2012/03/02 09:46:42 djc Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS=1
RESTRICT_PYTHON_ABIS="2.4 2.5"
inherit distutils
DESCRIPTION="A pure-Python memory-efficient packed representation for bit arrays"
HOMEPAGE="http://cobweb.ecn.purdue.edu/~kak/dist/ http://pypi.python.org/pypi/BitVector"
SRC_URI="http://cobweb.ecn.purdue.edu/~kak/dist/${P}.tar.gz"
LICENSE="PSF-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND=""
PYTHON_MODULES="BitVector.py"
src_prepare() {
distutils_src_prepare
# Don't install test.py.
rm -f test.py
}
src_test() {
cd Test${PN}
testing() {
PYTHONPATH="../build-${PYTHON_ABI}/lib" "$(PYTHON)" Test.py
}
python_execute_function testing
}

@ -1 +1,2 @@
DIST BitVector-3.0.tar.gz 147792 RMD160 40be1916e85273aef0b1f54d17ff709a9260e858 SHA1 176f5c1be81e1bc001d09baf24039266b886cc44 SHA256 a56fdeb184227e73a6be726d574f379d092022e1073087fc7769d0e1cfe896ba
DIST BitVector-3.1.tar.gz 157374 RMD160 2130270d3b2184ca67953f97d0d76170e015be24 SHA1 9a8b68bf778e57f5ea2951b71214dfa2ea8bb2e2 SHA256 fb839af4a65b9a656d7b6aa7a83c4088023b15f2123ea3a5f8a2764a6c17b1f7

@ -1,2 +1 @@
DIST APLpy-0.9.6.tar.gz 50272 RMD160 bf94fd7e35f8a0b10780a9f357f1a5dde2576f7e SHA1 c5f8b182b63fc4009935b1d5ee7defcea6d0c1b5 SHA256 4b353c382bd56419cf120cf97abbf7d53fec29080b080d07b692b9bea7e48b99
DIST APLpy-0.9.7.tar.gz 55747 RMD160 6a848aeed5e25e28e1e000799893b22d85c19f33 SHA1 b637723a631d3a3ff6103a8b1ee533142d5af6f4 SHA256 53d30083a6e9854c4afbf13b050feee2b4ebd2f7b36d22e39e7d7c663e7986da

@ -1,31 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/aplpy/aplpy-0.9.6.ebuild,v 1.2 2011/08/09 15:59:21 xarthisius Exp $
EAPI=2
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
inherit distutils
MYP=APLpy-${PV}
DESCRIPTION="Astronomical Plotting Library in Python"
HOMEPAGE="http://aplpy.github.com/ http://pypi.python.org/pypi/APLpy"
SRC_URI="https://github.com/downloads/${PN}/${PN}/${MYP}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-python/numpy"
RDEPEND="${DEPEND}
dev-python/matplotlib
dev-python/pyfits
dev-python/pywcs"
RESTRICT_PYTHON_ABIS="3.*"
S=${WORKDIR}/${MYP}

@ -1,2 +1,3 @@
DIST BeautifulSoup-3.1.0.1.tar.gz 71460 RMD160 24a4ac2a5faef8136223cba3f3532f7ce0b6bb70 SHA1 e9593b0412402325b6a98e3bf35ac8d00da5fc00 SHA256 820a80f473240d9d30047f36c959d530a699a732500662dd8b03e1d3ccad12a8
DIST BeautifulSoup-3.2.0.tar.gz 31056 RMD160 44c04cf55cf8fe7d192a32d8362a36d292acb767 SHA1 924eb4e43144e233e3749edadc8dc5cd8ec8a3be SHA256 a0ea3377a1055bf2e17594c0808414afb65e11f25ce8998f1ed3e9b871de6ff6
DIST BeautifulSoup-3.2.1.tar.gz 31224 RMD160 4e771d39bf89d5cb2f68a04bf6a457ab3324f3ad SHA1 b23e78f058240eb8779dbc1b8a8d76bba4916df1 SHA256 f5ba85e907e7dfd78e44e4000b3eaef3a650aefc57831e8a645702db2e5b50db

@ -0,0 +1,36 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-3.2.1.ebuild,v 1.1 2012/03/02 09:43:03 djc Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* *-jython"
inherit distutils
MY_PN="BeautifulSoup"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="HTML/XML parser for quick-turnaround applications like screen-scraping."
HOMEPAGE="http://www.crummy.com/software/BeautifulSoup/ http://pypi.python.org/pypi/BeautifulSoup"
SRC_URI="http://www.crummy.com/software/${MY_PN}/download/3.x/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="python-2"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE=""
DEPEND=""
RDEPEND="!dev-python/beautifulsoup:0"
S="${WORKDIR}/${MY_P}"
PYTHON_MODNAME="BeautifulSoup.py BeautifulSoupTests.py"
src_test() {
testing() {
PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" BeautifulSoupTests.py
}
python_execute_function testing
}

@ -1 +1,2 @@
DIST cssutils-0.9.7.zip 447664 RMD160 6119363eb9b8e38188cb8943c59d6d345681b227 SHA1 95a25352ab067c7b13aa82c5f6a5408cf82a2678 SHA256 2160d5a183862f3a91734f22391e937ff9accf115fd767705577ddd7ddbcb38b
DIST cssutils-0.9.9.zip 426449 RMD160 0affdb2edc523e4f22d54d7a92ce81bccbeb76a6 SHA1 ac8d4ff2e56d7e4d4a37c6c1944cbdd5fdffabaa SHA256 f7061a591859c025504c7871ef3b843383a025d570128edf1c63a6ef53753e8d

@ -0,0 +1,62 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/cssutils/cssutils-0.9.9.ebuild,v 1.1 2012/03/02 08:31:05 djc Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS=""
DISTUTILS_SRC_TEST="nosetests"
PYTHON_TESTS_RESTRICTED_ABIS="3.*"
inherit distutils
DESCRIPTION="A CSS Cascading Style Sheets library"
HOMEPAGE="http://pypi.python.org/pypi/cssutils/ https://bitbucket.org/cthedot/cssutils"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="examples test"
RDEPEND="dev-python/setuptools"
DEPEND="${RDEPEND}
app-arch/unzip
test? ( dev-python/mock )"
PYTHON_MODNAME="cssutils encutils"
src_prepare() {
distutils_src_prepare
# Disable test failing with dev-python/pyxml installed.
if has_version dev-python/pyxml; then
sed -e "s/test_linecol/_&/" -i src/tests/test_errorhandler.py
fi
# https://bitbucket.org/cthedot/cssutils/issue/8/test-failure
sed -e "s/test_cssText2/_&/" -i src/tests/test_cssvariablesdeclaration.py
}
src_install() {
distutils_src_install
# Don't install tests.
delete_tests() {
rm -fr "${ED}$(python_get_sitedir)/tests"
}
python_execute_function -q delete_tests
# Don't install py3 stuff on py2. Breaks py25
deletion_of_unneeded_files() {
[[ "${PYTHON_ABI}" == 3.* ]] && return
rm -f "${ED}$(python_get_sitedir)/cssutils/_codec3.py"
}
python_execute_function -q deletion_of_unneeded_files
if use examples; then
insinto /usr/share/doc/${PF}
doins -r examples
fi
}

@ -1 +1 @@
DIST d2to1-0.2.5.tar.gz 17514 RMD160 2803e01e4489dcd2d29aa590b4c61334221f7e47 SHA1 ddbf9d459b69f5ae08d32be1fa5fb5762543df51 SHA256 3b29af0a06b23d1fb3b39b9444670910e187e627fe5f9a68461b1f4017dc3829
DIST d2to1-0.2.7.tar.gz 18784 RMD160 c9df1bdf29a351fe40a16235a771e5eb73790c46 SHA1 a7c1dfc4d05b8897d748cac6f8b7ef18887b5280 SHA256 a029a89acac1117cf206e2e19ceff2e7f6eeee5d317c69b5a61be2632cc042cc

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/d2to1/d2to1-0.2.5.ebuild,v 1.1 2012/01/30 22:41:50 xarthisius Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/d2to1/d2to1-0.2.7.ebuild,v 1.1 2012/03/02 10:20:37 xarthisius Exp $
EAPI=4

@ -1 +1,2 @@
DIST joblib-0.6.2.tar.gz 246472 RMD160 698e3245ad75f2257c5f20eed123dd3b767cc016 SHA1 8dd0c39082fe14b40f407727fc921d09c4f57055 SHA256 a9d7fce8539004f915e769504ca7b5bf8fef2ea2e536c687d9b407b19d41916d
DIST joblib-0.6.3.tar.gz 246896 RMD160 c9c24f4203543f6c56d772c5a3adc2efea962bb7 SHA1 4ccafb163fbb85d13c3accf335ff07957799a56f SHA256 2c81d0ce4763946cc1fe35ad1862d38d13b4d4bed155067926c2c56b4753da8c

@ -0,0 +1,24 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/joblib/joblib-0.6.3.ebuild,v 1.1 2012/03/02 09:30:58 djc Exp $
EAPI=4
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
DISTUTILS_SRC_TEST="setup.py"
inherit distutils
DESCRIPTION="Lightweight pipelining: using Python functions as pipeline jobs."
HOMEPAGE="https://github.com/joblib/joblib http://pypi.python.org/pypi/joblib"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-python/setuptools"
RDEPEND="${DEPEND}"

@ -1 +1,2 @@
DIST pyasn1-modules-0.0.1a.tar.gz 12202 RMD160 5bd5867b65181b05bf08bb84a6c1aad8ac3b457d SHA1 d0bc6c1fbf3f2cc31d8c4471c58ac38a96da85f1 SHA256 4600d0acb9ecef20e9aa0d08922a0a11c541dc6841893cb5bb01063dfe103eca
DIST pyasn1-modules-0.0.2.tar.gz 12945 RMD160 4d3b09054bdb2b1f5b078d0b7d795cdde909a25a SHA1 4ec80ba606171dcd335f8d45baf6868dbc60bb10 SHA256 448ead91a7785d19dfc8645afd182e50bf99845b196f6f38cc083104e0efb097

@ -0,0 +1,33 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyasn1-modules/pyasn1-modules-0.0.2.ebuild,v 1.1 2012/03/02 10:06:37 djc Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* *-jython"
inherit distutils
DESCRIPTION="pyasn1 modules"
HOMEPAGE="http://pyasn1.sourceforge.net/ http://pypi.python.org/pypi/pyasn1-modules"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE=""
RDEPEND="dev-python/pyasn1"
DEPEND="${RDEPEND}
dev-python/setuptools"
DOCS="CHANGES README"
PYTHON_MODNAME="pyasn1_modules"
src_install() {
distutils_src_install
insinto /usr/share/doc/${PF}/tools
doins tools/* || die "doins failed"
}

@ -1,2 +1,3 @@
DIST pyasn1-0.0.13.tar.gz 51225 RMD160 9b499435182d5842d9dca5290fc606bf375fb1b3 SHA1 d05f8e2153e817c9c1788c04ebeab1d97b084e7b SHA256 059bc1fd109cdf3d579b1a3e7175494cf70066f93f05a642c20d7993bbf841c7
DIST pyasn1-0.0.13b.tar.gz 50570 RMD160 50781d258bdc3b57e11474df6f62b934ecc6fb54 SHA1 ea2bf4e911d41ad29e36660ff1d571eb989da2af SHA256 dd911885078b0e44eedbd4cc7fa04e8589f8371c77d7e6083b534828c57ed3d0
DIST pyasn1-0.1.2.tar.gz 53547 RMD160 a3ce2137efdd13913197d59059486d254d388f7f SHA1 4438226c5d38db582442241fc574a2001b685613 SHA256 2422dabc63126cd6a27e41ad6dec53b3df1d701114a1184e7630e4c857380e12

@ -0,0 +1,36 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyasn1/pyasn1-0.1.2.ebuild,v 1.1 2012/03/02 09:53:38 djc Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* *-jython"
inherit distutils
DESCRIPTION="ASN.1 library for Python"
HOMEPAGE="http://pyasn1.sourceforge.net/ http://pypi.python.org/pypi/pyasn1"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE=""
DEPEND="dev-python/setuptools"
RDEPEND=""
DOCS="CHANGES README THANKS TODO"
src_test() {
testing() {
PYTHONPATH="build-${PYTHON_ABI}/lib:." "$(PYTHON)" test/suite.py
}
python_execute_function testing
}
src_install() {
distutils_src_install
dohtml doc/* || die "dohtml failed"
}

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pysnmp/pysnmp-4.2.1.ebuild,v 1.1 2011/12/25 10:31:48 patrick Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/pysnmp/pysnmp-4.2.1.ebuild,v 1.2 2012/03/02 09:57:44 djc Exp $
EAPI="3"
PYTHON_DEPEND="2"
@ -20,7 +20,7 @@ IUSE="examples"
DEPEND="dev-python/setuptools"
RDEPEND="
>=dev-python/pyasn1-0.0.13_alpha
>=dev-python/pyasn1-0.1.2
dev-python/pycrypto
"

@ -1,3 +1,3 @@
DIST simplejson-2.2.1.tar.gz 49957 RMD160 c50cf48bf38a734dbd5905c8b4a136c7c2fa56bc SHA1 e48daf374f6131f7875e790a84c218df7a2a710b SHA256 e85c5ae24dd9827113893c1dd2c799528195057388096f0fc45ad4b32b378c26
DIST simplejson-2.3.0.tar.gz 50034 RMD160 0f1a8ccff3d034d434a8458e2f3c296624932a89 SHA1 70db51ccb0861acd34523be22a297026a61f68fc SHA256 dc026631646d32fda40be754484c67918617db37f517547462aa58ae5d159d34
DIST simplejson-2.3.2.tar.gz 50407 RMD160 bfa3d790e5485b2edf33ebebd6952be90b4db868 SHA1 065cc782f0dade510596e565ea7d0e83b0e8b211 SHA256 276c1837be470a21178f9e70b0688189e1a4e2d09ea85cef35078b929b605428
DIST simplejson-2.3.3.tar.gz 50970 RMD160 d2982ad7bfc7d619eff72d5e3a2de61a6838802f SHA1 45d470c8d08d407721f30e32007f27a0f157bcf8 SHA256 fd9d8625595d74f644186903618dfba00ac6cee34edd02310eadcdb444b04f70

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/simplejson-2.2.1.ebuild,v 1.5 2012/02/01 22:06:55 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/simplejson-2.3.3.ebuild,v 1.1 2012/03/02 09:08:46 djc Exp $
EAPI="3"
PYTHON_DEPEND="2"
@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~arm ppc ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE=""
DEPEND=""

@ -1 +1 @@
DIST stsci.distutils-0.2.2.tar.gz 18474 RMD160 077524929f884f3535767b996b546146c61d3b78 SHA1 fd1659ec90ea0e033c8af7f5792678fe282a0426 SHA256 ca8b67360546f9e824d70c7d5bfefd122bafcd3d9ee4632f2ff708cb9ae2df99
DIST stsci.distutils-0.3.tar.gz 42482 RMD160 a6587268fc55f910b2f21ce8649fdf2218dbd46a SHA1 6530540793a5f6f12fc01430d41612e16818ba96 SHA256 5af743b67f908fda5d7ebffa2e96d2ff1d7843b6755965a98275f7547d384c06

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/stsci-distutils/stsci-distutils-0.2.2.ebuild,v 1.3 2012/02/16 09:49:53 xarthisius Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/stsci-distutils/stsci-distutils-0.3.ebuild,v 1.1 2012/03/02 10:36:30 xarthisius Exp $
EAPI=3

@ -1,4 +1,3 @@
DIST subvertpy-0.8.0.tar.gz 99202 RMD160 2a59008ba582d8904af1a51f446a9f77f68537c0 SHA1 14848339dd7141844ce65baadd26d7557d4ff923 SHA256 31bc04dd8caa462218136c42f4806740ad7f9f2c2abff8a4ab546c54bfa5ac08
DIST subvertpy-0.8.5.tar.gz 101012 RMD160 e46d2d43b953e7a277bfe3a0b1216f00f74fcbd1 SHA1 837ec26ba8f7c9df787e96fa2034a98e4c7137f4 SHA256 532e494f0ac8107c86da4c92e876a2f5fbdd646cf4b1756e8456b7b0e12fa37b
DIST subvertpy-0.8.8.tar.gz 103422 RMD160 b7c8de6724ab25170a613b117db19c38ed652dc5 SHA1 7a6fdac808ccc2aea8068250fb37f132d7b8edc6 SHA256 17e8ba4387e06b3ec68d35eb98cf2101fe7d60a606c2232d13c132aa414d9c3b
DIST subvertpy-0.8.10.tar.gz 104171 RMD160 26c7348382db02b0d1d8c25ab1c59d25f00d0e26 SHA1 79106d0aebddd57f13e6ad0e07ca051eca2b63fc SHA256 223ca9744c37786dea44813ce1a289c4630a666cc1ff42fd7c3861feec727130
DIST subvertpy-0.8.9.tar.gz 103473 RMD160 54fcfd1522d4b3c6ba614e6dbcaf5f35672b0240 SHA1 6c1a0907255483e7a76d544c7cc12bfc31d4314c SHA256 28fd9042f657517a816c20f1be477ebed15e9934b65b225472a2c82a1e13f28f

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/subvertpy/subvertpy-0.8.5-r1.ebuild,v 1.1 2011/09/07 16:18:10 floppym Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/subvertpy/subvertpy-0.8.10.ebuild,v 1.1 2012/03/02 09:28:58 djc Exp $
EAPI="3"
PYTHON_DEPEND="2"
@ -16,11 +16,16 @@ SRC_URI="http://samba.org/~jelmer/${PN}/${P}.tar.gz"
LICENSE="|| ( LGPL-2.1 LGPL-3 )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
KEYWORDS="~alpha ~amd64 ~x86"
IUSE=""
DEPEND=">=dev-vcs/subversion-1.4"
RDEPEND="${DEPEND}"
RDEPEND=">=dev-vcs/subversion-1.4"
DEPEND="${RDEPEND}
test? ( || (
dev-lang/python:2.7
dev-python/unittest2
dev-python/testtools
) )"
PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")

@ -1,43 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/subvertpy/subvertpy-0.8.5.ebuild,v 1.1 2011/08/30 08:07:07 djc Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* *-jython"
DISTUTILS_SRC_TEST="nosetests"
inherit distutils
DESCRIPTION="Alternative Python bindings for Subversion"
HOMEPAGE="http://samba.org/~jelmer/subvertpy/ http://pypi.python.org/pypi/subvertpy"
SRC_URI="http://samba.org/~jelmer/${PN}/${P}.tar.gz"
LICENSE="|| ( LGPL-2.1 LGPL-3 )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=dev-vcs/subversion-1.4"
RDEPEND="${DEPEND}"
PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
DOCS="NEWS AUTHORS"
distutils_src_test_pre_hook() {
local module
for module in _ra client repos wc; do
ln -fs "../$(ls -d build-${PYTHON_ABI}/lib.*)/subvertpy/${module}.so" "subvertpy/${module}.so" || die "Symlinking subvertpy/${module}.so failed with $(python_get_implementation) $(python_get_version)"
done
}
src_install() {
distutils_src_install
delete_tests() {
rm -fr "${ED}$(python_get_sitedir)/subvertpy/tests"
}
python_execute_function -q delete_tests
}

@ -1,34 +0,0 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/subvertpy/subvertpy-0.8.8.ebuild,v 1.1 2011/10/11 14:56:10 djc Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* *-jython"
DISTUTILS_SRC_TEST="nosetests"
inherit distutils
DESCRIPTION="Alternative Python bindings for Subversion"
HOMEPAGE="http://samba.org/~jelmer/subvertpy/ http://pypi.python.org/pypi/subvertpy"
SRC_URI="http://samba.org/~jelmer/${PN}/${P}.tar.gz"
LICENSE="|| ( LGPL-2.1 LGPL-3 )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=dev-vcs/subversion-1.4"
RDEPEND="${DEPEND}"
PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
DOCS="NEWS AUTHORS"
distutils_src_test_pre_hook() {
local module
for module in _ra client repos wc; do
ln -fs "../$(ls -d build-${PYTHON_ABI}/lib.*)/subvertpy/${module}.so" "subvertpy/${module}.so" || die "Symlinking subvertpy/${module}.so failed with $(python_get_implementation) $(python_get_version)"
done
}

@ -1,3 +1,3 @@
DIST testtools-0.9.10.tar.gz 109366 RMD160 d5547b7aa66959b5f3441309d5ec51f23dcd4eea SHA1 2c9e9ee98dd5ed76dac849111abe78f7dddcec97 SHA256 9d810506bcf58fa7d9da099be71210c00f77d9c316bc3b7f95209046cdd716af
DIST testtools-0.9.11.tar.gz 115047 RMD160 3b2be21e9c249e8a7cd923d1dc6037086690ed85 SHA1 3478e43f8d5810d9d1d95b3dc372b49c65744d80 SHA256 45569f20a355e8a4e60f705b95ed5d06a1994a1594d0e8cbff46cea1fd15e9e6
DIST testtools-0.9.14.tar.gz 146103 RMD160 7138b30ff3d5a556d2f488c54499e25e1d409638 SHA1 12bd97a51a71437d489718125f2a39f8aac309fb SHA256 8fbe8736822caa3f95a3c65cf4df9e6d68aab5edd6f0adf3eebd0072d1a012cc
DIST testtools-0.9.8.tar.gz 85000 RMD160 f4fc62db9d8f3541d15aeded4e52ae880e102474 SHA1 e409586cd1c22b94098d808058da0e5b735a19cf SHA256 a440b5d9797755f2c7e4c9aa11364f92858d2504b1b8147287f85472644753ed

@ -1,10 +1,11 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/testtools/testtools-0.9.10.ebuild,v 1.1 2011/04/17 15:22:08 fauli Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/testtools/testtools-0.9.14.ebuild,v 1.1 2012/03/02 09:37:58 djc Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
inherit distutils versionator
SERIES="$(get_version_component_range 1-2)"
@ -28,11 +29,4 @@ src_prepare() {
sed -e 's/raise RuntimeError, "Something went wrong!"/raise RuntimeError("Something went wrong!")/' -i testtools/tests/test_monkey.py
}
src_test() {
testing() {
PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" -m testtools.run testtools.tests.test_suite
}
python_execute_function testing
}
# dev-python/subunit imports some objects from testtools.tests.helpers, so tests need to be installed.

@ -1,4 +1,4 @@
DIST virtualenv-1.6.4.tar.gz 1889033 RMD160 4574406ec1db8d911950e0e0bf865aa7c64183a2 SHA1 eeaae3a84d9076577996a02951afc78b8e947067 SHA256 a68efb4b35a4fef2a57de1981e00d9cf60be5b17d8f677baa0c5848582aaae85
DIST virtualenv-1.7.1.1.tar.gz 2137863 RMD160 c4a2e6cd5e3d2f8e9447bcf48653f06e6b0bf525 SHA1 cd2ac68687ee4e2efe0299b72699aa08d8bc0f27 SHA256 edf6891ba6b24278b3b17faaa7d8a753fc3121e845340e0e8fcc55e783b81e8d
DIST virtualenv-1.7.1.2.tar.gz 2138019 RMD160 5411386ce30e2de5ac5a0ec1689923e18facc27c SHA1 61aa9e69dee3f5e33cb763d06f0faa41ba77a5f1 SHA256 9f23c47e167f127268cf6777caf613280cf066b32c0183581bf79eab5ccc907e
DIST virtualenv-1.7.1.2-new.tar.gz 2152233 RMD160 0819f0f089aa8bc59e4446d26cd5c072670b20b2 SHA1 82c8a28c52cc90aa0043c6f9bcec315d54c7c643 SHA256 73b8019a6df4de893a324ac78d30b3f37c60769f643c88141b3544e2758f6ae8
DIST virtualenv-1.7.tar.gz 2125413 RMD160 5d5f9a7b82bd4ec659d853a1bbaacaac32961116 SHA1 3c99e759a06470a1838c98b750d5b72972ac82d6 SHA256 e32b851eec3beae048c41dedcbebdae8484752b4426436ba8d7d1d69458ef6fc

@ -0,0 +1,56 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/virtualenv-1.7.1.2-r1.ebuild,v 1.1 2012/03/02 08:46:53 djc Exp $
EAPI="4"
SUPPORT_PYTHON_ABIS="1"
DISTUTILS_SRC_TEST="nosetests"
inherit distutils
DESCRIPTION="Virtual Python Environment builder"
HOMEPAGE="http://www.virtualenv.org/ http://pypi.python.org/pypi/virtualenv"
SRC_URI="https://github.com/pypa/${PN}/tarball/${PV} -> ${P}-new.tar.gz"
LICENSE="MIT"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
SLOT="0"
IUSE="doc"
RDEPEND="dev-python/setuptools"
DEPEND="${DEPEND}
doc? ( dev-python/sphinx )
test? ( dev-python/mock )"
DOCS="docs/index.txt docs/news.txt"
PYTHON_MODNAME="virtualenv.py virtualenv_support"
src_unpack() {
unpack ${A}
mv pypa-virtualenv-* ${P}
}
src_prepare() {
distutils_src_prepare
# Disable broken test
sed -e 's/test_version/_&/' -i tests/test_virtualenv.py
}
src_compile() {
distutils_src_compile
if use doc; then
pushd docs > /dev/null
emake html
popd > /dev/null
fi
}
src_install() {
distutils_src_install
if use doc; then
pushd docs/_build/html > /dev/null
insinto /usr/share/doc/${PF}/html
doins -r [a-z]* _static
popd > /dev/null
fi
}

@ -1,24 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/virtualenv/virtualenv-1.7.1.2.ebuild,v 1.1 2012/03/01 09:26:36 djc Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
DISTUTILS_SRC_TEST="nosetests"
inherit distutils
DESCRIPTION="Virtual Python Environment builder"
HOMEPAGE="http://pypi.python.org/pypi/virtualenv"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
SLOT="0"
IUSE=""
DEPEND="dev-python/setuptools"
RDEPEND="${DEPEND}"
DOCS="docs/index.txt docs/news.txt"
PYTHON_MODNAME="virtualenv.py virtualenv_support"

@ -1,2 +1,2 @@
DIST Werkzeug-0.6.2.tar.gz 1720741 RMD160 19f24380f201385f379274a530dd9fe287341d19 SHA1 2056379ba01c7a46561280a14cb0a6bf40050ab9 SHA256 4a80c87db4c105f24bb6587b2fdc45a1844e6b0d185d698543b43f2cf900d27b
DIST Werkzeug-0.8.2.tar.gz 1108056 RMD160 d685f6911261a5c2e82c14e396dd161687299035 SHA1 5169779555420c758a54ef1c05a41fcee4163453 SHA256 15bbc16f586a9ec6606e8a6005373491270901ef8fd47a91898f5183cd383a28
DIST Werkzeug-0.8.3.tar.gz 1108617 RMD160 4a1c8752e7ade999f09cbdb466dece3c80a01cff SHA1 e61fd2a1c7f7eef817cf8a6716c74bf426db9f57 SHA256 108c3d41fb701c4af4ef00e8ebbedc147632c82247beb798c8d8657a12810206

@ -1,39 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/werkzeug/werkzeug-0.6.2.ebuild,v 1.6 2010/12/26 15:51:48 arfrever Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
DISTUTILS_SRC_TEST="nosetests"
inherit distutils
MY_P="Werkzeug-${PV}"
DESCRIPTION="Collection of various utilities for WSGI applications"
HOMEPAGE="http://werkzeug.pocoo.org/ http://pypi.python.org/pypi/Werkzeug"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="test"
RDEPEND=""
DEPEND="dev-python/setuptools
app-arch/unzip
test? (
dev-python/lxml
dev-python/pytest
dev-python/simplejson
)"
S="${WORKDIR}/${MY_P}"
DOCS="CHANGES"
src_test() {
distutils_src_test -e '^test_app$'
}

@ -0,0 +1,38 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/werkzeug/werkzeug-0.8.3.ebuild,v 1.1 2012/03/02 09:19:53 djc Exp $
EAPI="3"
PYTHON_DEPEND="2:2.5"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.4 3.*"
DISTUTILS_SRC_TEST="setup.py"
inherit distutils eutils
MY_PN="Werkzeug"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Collection of various utilities for WSGI applications"
HOMEPAGE="http://werkzeug.pocoo.org/ http://pypi.python.org/pypi/Werkzeug"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="test"
RDEPEND="dev-python/simplejson"
DEPEND="dev-python/setuptools
test? ( dev-python/lxml )"
S="${WORKDIR}/${MY_P}"
DOCS="CHANGES"
src_prepare() {
distutils_src_prepare
# Disable redis-related tests.
# https://github.com/mitsuhiko/werkzeug/issues/120
sed -e "s/import redis/redis = None/" -i werkzeug/testsuite/contrib/cache.py
}

@ -1,2 +1,2 @@
DIST WTForms-0.6.2.zip 216242 RMD160 ebd49183787302f0e4d0a022e692328cb240b077 SHA1 50ad72122b0583a0a19c03a8ee86b3cd2e6e0fde SHA256 fcb7e6426891de369317659abd813c34c77f76c8dcd619d59fc1f0d38c73df09
DIST WTForms-0.6.3.zip 245802 RMD160 4790b3af4dc27169a948a51f7d8fa3a825d6f213 SHA1 cb7cbef836a00ab42d014d1d6e1daa7d489ec657 SHA256 6945cd2545f755ada54e4e4358f1ce11fafa7dc6e39c2bf4326d8c710f2a64e9
DIST WTForms-1.0.1.zip 467388 RMD160 6901e4641334bbbc3b01072b0db48b7411ab98b4 SHA1 36a1f2be5cb47b0c75ee1a872176ce2df492b2a5 SHA256 447b7652f617fa3535edf0b5030f5f32228685ea823c30e66bf2421544c07dc0

@ -1,11 +1,12 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/wtforms/wtforms-0.6.2.ebuild,v 1.3 2011/03/21 10:18:49 tomka Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-python/wtforms/wtforms-1.0.1.ebuild,v 1.1 2012/03/02 09:12:57 djc Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
DISTUTILS_SRC_TEST="setup.py"
inherit distutils
@ -18,7 +19,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.zip"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 x86"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
S="${WORKDIR}/${MY_P}"
@ -39,14 +40,6 @@ src_compile() {
fi
}
src_test() {
cd tests
testing() {
"$(PYTHON)" runtests.py
}
python_execute_function testing
}
src_install() {
distutils_src_install

@ -1 +1,2 @@
DIST xlwt-0.7.2.tar.gz 114736 RMD160 bc5c28ee22af2dd0cc5947fcd1741829c0a0ead6 SHA1 f56d3de29bc3f39c560660fd7aaecef6ad7cb5a4 SHA256 4dfbacf77e1b9e760621a8d63cd1e799fb046087a9f2a81b40d300c425e0a056
DIST xlwt-0.7.3.tar.gz 108815 RMD160 5adea1bcc798dda67774a4f9daa376ae92746709 SHA1 38b25e21d36684fbdb8cc28685fae3fdcbc6da9f SHA256 3cd5ddd417bc3a5c6ef5f0927800424ea6603299b8070857ec8bd5ec84b237a5

@ -0,0 +1,39 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/xlwt/xlwt-0.7.3.ebuild,v 1.1 2012/03/02 09:16:54 djc Exp $
EAPI="2"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
inherit distutils
DESCRIPTION="Python library to create spreadsheet files compatible with Excel"
HOMEPAGE="http://pypi.python.org/pypi/xlwt"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="examples"
DEPEND=""
RDEPEND=""
RESTRICT_PYTHON_ABIS="3.*"
src_prepare() {
distutils_src_prepare
# Don't install documentation and examples in site-packages directories.
sed -e "/package_data/,+6d" -i setup.py || die "sed failed"
}
src_install() {
distutils_src_install
insinto /usr/share/doc/${PF}
doins -r HISTORY.html xlwt/doc/xlwt.html tests
if use examples; then
doins -r xlwt/examples || die "doins failed"
fi
}

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ascii85/ascii85-1.0.1.ebuild,v 1.5 2012/02/06 17:22:20 ranger Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ascii85/ascii85-1.0.1.ebuild,v 1.6 2012/03/02 12:00:26 naota Exp $
EAPI=2
@ -20,7 +20,7 @@ HOMEPAGE="http://ascii85.rubyforge.org/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd"
IUSE=""
ruby_add_bdepend "test? ( >=dev-ruby/rspec-2.4.0:2 )"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/nokogiri/nokogiri-1.5.0-r2.ebuild,v 1.3 2011/12/31 18:59:23 grobian Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/nokogiri/nokogiri-1.5.0-r2.ebuild,v 1.4 2012/03/02 09:51:03 naota Exp $
EAPI=4
@ -18,7 +18,7 @@ LICENSE="MIT"
SRC_URI="https://github.com/tenderlove/nokogiri/tarball/v${PV} -> ${P}.tgz"
RUBY_S="tenderlove-nokogiri-*"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
SLOT="0"
IUSE=""

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4-r1.ebuild,v 1.2 2011/12/31 18:24:21 grobian Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-core/rspec-core-2.6.4-r1.ebuild,v 1.3 2012/03/02 11:12:00 naota Exp $
EAPI=2
USE_RUBY="ruby18 ree18 ruby19 jruby"
@ -17,7 +17,7 @@ HOMEPAGE="http://rspec.rubyforge.org/"
LICENSE="MIT"
SLOT="2"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
RDEPEND="${RDEPEND} !<dev-ruby/rspec-1.3.1-r1"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-expectations/rspec-expectations-2.6.0-r1.ebuild,v 1.2 2011/12/31 18:17:06 grobian Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-expectations/rspec-expectations-2.6.0-r1.ebuild,v 1.3 2012/03/02 11:02:07 naota Exp $
EAPI=2
USE_RUBY="ruby18 ree18 ruby19 jruby"
@ -16,7 +16,7 @@ HOMEPAGE="http://rspec.rubyforge.org/"
LICENSE="MIT"
SLOT="2"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
ruby_add_rdepend ">=dev-ruby/diff-lcs-1.1.2"

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-mocks/rspec-mocks-2.6.0-r1.ebuild,v 1.2 2011/12/31 18:15:57 grobian Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-mocks/rspec-mocks-2.6.0-r1.ebuild,v 1.3 2012/03/02 10:12:07 naota Exp $
EAPI=2
USE_RUBY="ruby18 ree18 ruby19 jruby"
@ -17,7 +17,7 @@ HOMEPAGE="http://rspec.rubyforge.org/"
LICENSE="MIT"
SLOT="2"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
# cucumber and rspec-core are loaded unconditionally in the Rakefile,

@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec/rspec-2.6.0-r1.ebuild,v 1.2 2011/12/31 18:32:25 grobian Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec/rspec-2.6.0-r1.ebuild,v 1.3 2012/03/02 11:15:15 naota Exp $
EAPI=2
USE_RUBY="ruby18 ruby19 ree18 jruby"
@ -17,7 +17,7 @@ HOMEPAGE="http://rspec.rubyforge.org/"
LICENSE="MIT"
SLOT="2"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
SUBVERSION="$(get_version_component_range 1-2)"

@ -1,2 +1,3 @@
DIST gambc-v4_6_2.tgz 10463697 RMD160 9557ad441e1b1175a83cf397294477647ed9521d SHA1 72729e1c96f5f31553365e27039cbe6d8feb0a05 SHA256 2e6c2b9597050212376a2544c0e810da5ea26151b8c1e2894381c3664832e8e5
DIST gambc-v4_6_3.tgz 10661300 RMD160 66093724eb0261821a4fcfb3d3f263928c595856 SHA1 d07807f09dd8960e383b10755ec8eed349596038 SHA256 66cbc805484898bcadeab9921d8bcdb07d536dd401c57ff92edb461d7230ff81
DIST gambc-v4_6_4.tgz 10694646 RMD160 8bbffa149e65e2b30381f9127cf5269d20742dae SHA1 d47d86e3a0193aa00a09afa77422d7f19733d245 SHA256 6bbe7af0ca410a85716c27d29ded0cc207904e9d9d1a8012db50537d5dd1a5f9

@ -0,0 +1,52 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-scheme/gambit/gambit-4.6.4.ebuild,v 1.1 2012/03/02 10:07:38 hkbst Exp $
EAPI="4"
inherit eutils elisp-common
MY_PN=gambc
MY_PV=${PV//./_}
MY_P=${MY_PN}-v${MY_PV}
DESCRIPTION="Gambit-C is a native Scheme to C compiler and interpreter."
HOMEPAGE="http://www.iro.umontreal.ca/~gambit/"
SRC_URI="http://www.iro.umontreal.ca/~gambit/download/gambit/v${PV%.*}/source/${MY_P}.tgz"
LICENSE="|| ( Apache-2.0 LGPL-2.1 )"
SLOT="0"
KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos"
DEPEND="emacs? ( virtual/emacs )"
RDEPEND=""
SITEFILE="50gambit-gentoo.el"
S=${WORKDIR}/${MY_P} #-devel
IUSE="emacs static"
src_configure() {
econf $(use_enable !static shared) --docdir="${EPREFIX}"/usr/share/doc/${PF} --enable-single-host --disable-absolute-shared-libs
}
src_compile() {
emake bootstrap || die
if use emacs; then
elisp-compile misc/*.el || die
fi
}
src_install() {
emake DESTDIR="${D}" install || die
}
pkg_postinst() {
use emacs && elisp-site-regen
}
pkg_postrm() {
use emacs && elisp-site-regen
}

@ -1,2 +1 @@
DIST libcddb-1.3.0.tar.bz2 329319 RMD160 d34588f416ba80ececb23ffcff3312fc0b699f30 SHA1 171618045dfa75075c6ced446d25e88f2c7ca88a SHA256 4e7d3aae339cf5037d972cd5f3ab23a3b643f6b05e4125430da4f22682770bf9
DIST libcddb-1.3.2.tar.bz2 352909 RMD160 e38ed8c7dd5a9b4a5b2a1772a9e98f914872c397 SHA1 2a7855918689692ff5ca3316d078a859d51959ce SHA256 35ce0ee1741ea38def304ddfe84a958901413aa829698357f0bee5bb8f0a223b

@ -1,9 +0,0 @@
--- libcddb-1.3.0/lib/Makefile.am.old 2007-11-13 08:09:20 +0000
+++ libcddb-1.3.0/lib/Makefile.am 2007-11-13 08:09:41 +0000
@@ -5,4 +5,5 @@
libcddb_la_SOURCES = cddb_track.c cddb_disc.c cddb_regex.c cddb_error.c \
cddb_conn.c cddb_cmd.c cddb_net.c cddb_log.c cddb_util.c \
cddb.c cddb_site.c ll.c
-libcddb_la_LDFLAGS = -no-undefined -version-info 4:3:2 $(LIBICONV)
+libcddb_la_LDFLAGS = -no-undefined -version-info 4:3:2
+libcddb_la_LIBADD = $(LIBICONV)

@ -1,45 +0,0 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libcddb/libcddb-1.3.0-r1.ebuild,v 1.8 2008/05/11 16:28:49 flameeyes Exp $
inherit autotools eutils
DESCRIPTION="A library for accessing a CDDB server"
HOMEPAGE="http://libcddb.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd"
IUSE="doc"
RESTRICT="test"
RDEPEND=""
DEPEND="doc? ( app-doc/doxygen )"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-asneeded-nonglibc.patch"
eautoreconf
}
src_compile() {
econf --without-cdio
emake || die "emake failed."
# Create API docs if needed and possible
if use doc; then
cd doc
doxygen doxygen.conf || die "doxygen failed."
fi
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS ChangeLog NEWS README THANKS TODO
# Create API docs if needed and possible
use doc && dohtml doc/html/*
}

@ -1,47 +1,49 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libcddb/libcddb-1.3.2.ebuild,v 1.10 2010/01/15 09:28:07 fauli Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/libcddb/libcddb-1.3.2.ebuild,v 1.11 2012/03/02 09:57:30 ssuominen Exp $
EAPI=2
EAPI=4
inherit libtool
DESCRIPTION="A library for accessing a CDDB server"
HOMEPAGE="http://libcddb.sourceforge.net"
HOMEPAGE="http://libcddb.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
IUSE="doc"
IUSE="doc static-libs"
RDEPEND="virtual/libiconv"
DEPEND="doc? ( app-doc/doxygen )"
RESTRICT="test"
DOCS="AUTHORS ChangeLog NEWS README THANKS TODO"
src_prepare() {
# needed for sane .so versionning on FreeBSD
elibtoolize
elibtoolize # Sanitizing .so version for FreeBSD
}
src_configure() {
econf --without-cdio
econf \
$(use_enable static-libs static) \
--without-cdio
}
src_compile() {
emake || die "emake failed."
default
# Create API docs if needed and possible
if use doc; then
cd doc
doxygen doxygen.conf || die "doxygen failed"
doxygen doxygen.conf || die
fi
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog NEWS README THANKS TODO
default
rm -f "${ED}"/usr/lib*/libcddb.la
# Create API docs if needed and possible
use doc && dohtml doc/html/*
}

@ -1,10 +1,12 @@
# Copyright 1999-2011 Gentoo Foundation
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libemf/libemf-1.0.4.ebuild,v 1.8 2011/12/13 13:11:40 naota Exp $
# $Header: /var/cvsroot/gentoo-x86/media-libs/libemf/libemf-1.0.4.ebuild,v 1.9 2012/03/02 11:10:55 jlec Exp $
EAPI=2
EAPI=4
inherit autotools eutils
AUTOTOOLS_AUTORECONF=true
inherit autotools-utils
MY_P="${P/emf/EMF}"
DESCRIPTION="Library implementation of ECMA-234 API for the generation of enhanced metafiles."
@ -14,23 +16,18 @@ SRC_URI="mirror://sourceforge/libemf/${MY_P}.tar.gz"
LICENSE="LGPL-2.1 GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="doc"
DEPEND=""
IUSE="doc static-libs"
S=${WORKDIR}/${MY_P}
src_prepare() {
epatch "${FILESDIR}"/${P}-amd64-alpha.patch
eautoreconf # or libtool tries to link against the gcc it was built with
}
PATCHES=( "${FILESDIR}"/${P}-amd64-alpha.patch )
src_configure() {
econf --enable-editing
local myeconfargs=( --enable-editing )
autotools-utils_src_configure
}
src_install() {
emake DESTDIR="${D}" install || die
autotools-utils_src_install
use doc && dohtml doc/html/*
dodoc README NEWS AUTHORS ChangeLog
}

@ -0,0 +1,22 @@
>=sys-devel/autoconf-2.63 tcmalloc? ( dev-util/google-perftools ) jemalloc? ( dev-libs/jemalloc ) test? ( dev-lang/tcl ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
0
http://redis.googlecode.com/files/redis-2.4.8.tar.gz
http://redis.io/
BSD
A persistent caching system, key-value and data structures database.
~amd64 ~x86 ~x86-macos ~x86-solaris
autotools eutils flag-o-matic libtool multilib toolchain-funcs user
+jemalloc tcmalloc test
tcmalloc? ( !jemalloc ) jemalloc? ( !tcmalloc )
4
install prepare setup

@ -0,0 +1,22 @@
>=app-admin/eselect-python-20091230 dev-lang/python
>=app-admin/eselect-python-20091230 dev-lang/python
0
http://cobweb.ecn.purdue.edu/~kak/dist/BitVector-3.1.tar.gz
http://cobweb.ecn.purdue.edu/~kak/dist/ http://pypi.python.org/pypi/BitVector
PSF-2
A pure-Python memory-efficient packed representation for bit arrays
~amd64 ~x86
distutils multilib python toolchain-funcs
3
compile install postinst postrm prepare test

@ -1,22 +0,0 @@
dev-python/numpy >=app-admin/eselect-python-20091230 =dev-lang/python-2*
dev-python/numpy dev-python/matplotlib dev-python/pyfits dev-python/pywcs >=app-admin/eselect-python-20091230 =dev-lang/python-2*
0
https://github.com/downloads/aplpy/aplpy/APLpy-0.9.6.tar.gz
http://aplpy.github.com/ http://pypi.python.org/pypi/APLpy
GPL-3
Astronomical Plotting Library in Python
~amd64 ~x86
distutils multilib python toolchain-funcs
2
compile install postinst postrm prepare

@ -0,0 +1,22 @@
>=app-admin/eselect-python-20091230 =dev-lang/python-2*
!dev-python/beautifulsoup:0 >=app-admin/eselect-python-20091230 =dev-lang/python-2*
python-2
http://www.crummy.com/software/BeautifulSoup/download/3.x/BeautifulSoup-3.2.1.tar.gz
http://www.crummy.com/software/BeautifulSoup/ http://pypi.python.org/pypi/BeautifulSoup
BSD
HTML/XML parser for quick-turnaround applications like screen-scraping.
~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris
distutils multilib python toolchain-funcs
3
compile install postinst postrm prepare test

@ -0,0 +1,22 @@
dev-python/setuptools app-arch/unzip test? ( dev-python/mock ) >=app-admin/eselect-python-20091230 =dev-lang/python-2* test? ( dev-python/nose )
dev-python/setuptools >=app-admin/eselect-python-20091230 =dev-lang/python-2*
0
mirror://pypi/c/cssutils/cssutils-0.9.9.zip
http://pypi.python.org/pypi/cssutils/ https://bitbucket.org/cthedot/cssutils
GPL-3
A CSS Cascading Style Sheets library
~amd64 ~ppc ~x86
distutils multilib python toolchain-funcs
examples test test
3
compile install postinst postrm prepare test

@ -1,7 +1,7 @@
dev-python/setuptools >=app-admin/eselect-python-20091230 dev-lang/python
dev-python/setuptools >=app-admin/eselect-python-20091230 dev-lang/python
0
mirror://pypi/d/d2to1/d2to1-0.2.5.tar.gz
mirror://pypi/d/d2to1/d2to1-0.2.7.tar.gz
http://pypi.python.org/pypi/d2to1
BSD

@ -0,0 +1,22 @@
dev-python/setuptools >=app-admin/eselect-python-20091230 =dev-lang/python-2*
dev-python/setuptools >=app-admin/eselect-python-20091230 =dev-lang/python-2*
0
mirror://pypi/j/joblib/joblib-0.6.3.tar.gz
https://github.com/joblib/joblib http://pypi.python.org/pypi/joblib
BSD
Lightweight pipelining: using Python functions as pipeline jobs.
~amd64 ~x86
distutils multilib python toolchain-funcs
4
compile install postinst postrm prepare setup test

@ -0,0 +1,22 @@
dev-python/setuptools >=app-admin/eselect-python-20091230 =dev-lang/python-2*
>=app-admin/eselect-python-20091230 =dev-lang/python-2*
0
mirror://pypi/p/pyasn1/pyasn1-0.1.2.tar.gz
http://pyasn1.sourceforge.net/ http://pypi.python.org/pypi/pyasn1
BSD
ASN.1 library for Python
~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
distutils multilib python toolchain-funcs
3
compile install postinst postrm prepare test

@ -0,0 +1,22 @@
dev-python/pyasn1 dev-python/setuptools >=app-admin/eselect-python-20091230 =dev-lang/python-2*
dev-python/pyasn1 >=app-admin/eselect-python-20091230 =dev-lang/python-2*
0
mirror://pypi/p/pyasn1-modules/pyasn1-modules-0.0.2.tar.gz
http://pyasn1.sourceforge.net/ http://pypi.python.org/pypi/pyasn1-modules
BSD
pyasn1 modules
~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
distutils multilib python toolchain-funcs
3
compile install postinst postrm prepare

@ -1,5 +1,5 @@
dev-python/setuptools >=app-admin/eselect-python-20091230 =dev-lang/python-2*
>=dev-python/pyasn1-0.0.13_alpha dev-python/pycrypto >=app-admin/eselect-python-20091230 =dev-lang/python-2*
>=dev-python/pyasn1-0.1.2 dev-python/pycrypto >=app-admin/eselect-python-20091230 =dev-lang/python-2*
0
mirror://pypi/p/pysnmp/pysnmp-4.2.1.tar.gz

@ -1,12 +1,12 @@
>=app-admin/eselect-python-20091230 =dev-lang/python-2*
>=app-admin/eselect-python-20091230 =dev-lang/python-2*
0
mirror://pypi/s/simplejson/simplejson-2.2.1.tar.gz
mirror://pypi/s/simplejson/simplejson-2.3.3.tar.gz
http://undefined.org/python/#simplejson http://pypi.python.org/pypi/simplejson
MIT
Simple, fast, extensible JSON encoder/decoder for Python
amd64 ~arm ppc ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
~amd64 ~arm ~ppc ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
distutils multilib python toolchain-funcs

@ -1,7 +1,7 @@
dev-python/setuptools dev-python/d2to1 >=app-admin/eselect-python-20091230 dev-lang/python
dev-python/setuptools dev-python/d2to1 >=app-admin/eselect-python-20091230 dev-lang/python
0
mirror://pypi/s/stsci.distutils/stsci.distutils-0.2.2.tar.gz
mirror://pypi/s/stsci.distutils/stsci.distutils-0.3.tar.gz
http://www.stsci.edu/resources/software_hardware/stsci_python http://pypi.python.org/pypi/stsci.distutils/
BSD

@ -1,12 +1,12 @@
>=dev-vcs/subversion-1.4 >=app-admin/eselect-python-20091230 =dev-lang/python-2* test? ( dev-python/nose )
>=dev-vcs/subversion-1.4 test? ( || ( dev-lang/python:2.7 dev-python/unittest2 dev-python/testtools ) ) >=app-admin/eselect-python-20091230 =dev-lang/python-2* test? ( dev-python/nose )
>=dev-vcs/subversion-1.4 >=app-admin/eselect-python-20091230 =dev-lang/python-2*
0
http://samba.org/~jelmer/subvertpy/subvertpy-0.8.8.tar.gz
http://samba.org/~jelmer/subvertpy/subvertpy-0.8.10.tar.gz
http://samba.org/~jelmer/subvertpy/ http://pypi.python.org/pypi/subvertpy
|| ( LGPL-2.1 LGPL-3 )
Alternative Python bindings for Subversion
~amd64 ~x86
~alpha ~amd64 ~x86
distutils multilib python toolchain-funcs
test

@ -1,22 +0,0 @@
>=dev-vcs/subversion-1.4 >=app-admin/eselect-python-20091230 =dev-lang/python-2* test? ( dev-python/nose )
>=dev-vcs/subversion-1.4 >=app-admin/eselect-python-20091230 =dev-lang/python-2*
0
http://samba.org/~jelmer/subvertpy/subvertpy-0.8.5.tar.gz
http://samba.org/~jelmer/subvertpy/ http://pypi.python.org/pypi/subvertpy
|| ( LGPL-2.1 LGPL-3 )
Alternative Python bindings for Subversion
~amd64 ~x86
distutils multilib python toolchain-funcs
test
3
compile install postinst postrm prepare test

@ -1,22 +0,0 @@
>=dev-vcs/subversion-1.4 >=app-admin/eselect-python-20091230 =dev-lang/python-2* test? ( dev-python/nose )
>=dev-vcs/subversion-1.4 >=app-admin/eselect-python-20091230 =dev-lang/python-2*
0
http://samba.org/~jelmer/subvertpy/subvertpy-0.8.5.tar.gz
http://samba.org/~jelmer/subvertpy/ http://pypi.python.org/pypi/subvertpy
|| ( LGPL-2.1 LGPL-3 )
Alternative Python bindings for Subversion
~amd64 ~x86
distutils multilib python toolchain-funcs
test
3
compile install postinst postrm prepare test

@ -1,7 +1,7 @@
>=app-admin/eselect-python-20091230 dev-lang/python
>=app-admin/eselect-python-20091230 dev-lang/python
>=app-admin/eselect-python-20091230 =dev-lang/python-2*
>=app-admin/eselect-python-20091230 =dev-lang/python-2*
0
http://launchpad.net/testtools/0.9/0.9.10/+download/testtools-0.9.10.tar.gz
http://launchpad.net/testtools/0.9/0.9.14/+download/testtools-0.9.14.tar.gz
https://launchpad.net/testtools http://pypi.python.org/pypi/testtools
MIT
@ -14,7 +14,7 @@ distutils eutils multilib python toolchain-funcs user versionator
3
compile install postinst postrm prepare test
compile install postinst postrm prepare

@ -1,22 +0,0 @@
dev-python/setuptools >=app-admin/eselect-python-20091230 dev-lang/python test? ( dev-python/nose )
dev-python/setuptools >=app-admin/eselect-python-20091230 dev-lang/python
0
mirror://pypi/v/virtualenv/virtualenv-1.7.1.2.tar.gz
http://pypi.python.org/pypi/virtualenv
MIT
Virtual Python Environment builder
~amd64 ~ppc ~ppc64 ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris
distutils multilib python toolchain-funcs
test
3
compile install postinst postrm prepare test

@ -0,0 +1,22 @@
doc? ( dev-python/sphinx ) test? ( dev-python/mock ) >=app-admin/eselect-python-20091230 dev-lang/python test? ( dev-python/nose )
dev-python/setuptools >=app-admin/eselect-python-20091230 dev-lang/python
0
https://github.com/pypa/virtualenv/tarball/1.7.1.2 -> virtualenv-1.7.1.2-new.tar.gz
http://www.virtualenv.org/ http://pypi.python.org/pypi/virtualenv
MIT
Virtual Python Environment builder
~amd64 ~ppc ~ppc64 ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris
distutils multilib python toolchain-funcs
doc test
4
compile install postinst postrm prepare setup test unpack

@ -1,22 +0,0 @@
dev-python/setuptools app-arch/unzip test? ( dev-python/lxml dev-python/pytest dev-python/simplejson ) >=app-admin/eselect-python-20091230 =dev-lang/python-2* test? ( dev-python/nose )
>=app-admin/eselect-python-20091230 =dev-lang/python-2*
0
mirror://pypi///Werkzeug-0.6.2.tar.gz
http://werkzeug.pocoo.org/ http://pypi.python.org/pypi/Werkzeug
BSD
Collection of various utilities for WSGI applications
amd64 x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos
distutils multilib python toolchain-funcs
test test
3
compile install postinst postrm prepare test

@ -0,0 +1,22 @@
dev-python/setuptools test? ( dev-python/lxml ) >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* )
dev-python/simplejson >=app-admin/eselect-python-20091230 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* )
0
mirror://pypi/W/Werkzeug/Werkzeug-0.8.3.tar.gz
http://werkzeug.pocoo.org/ http://pypi.python.org/pypi/Werkzeug
BSD
Collection of various utilities for WSGI applications
~amd64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos
distutils eutils multilib python toolchain-funcs user
test
3
compile install postinst postrm prepare test

@ -1,12 +1,12 @@
app-arch/unzip doc? ( >=dev-python/sphinx-0.6 ) >=app-admin/eselect-python-20091230 =dev-lang/python-2*
>=app-admin/eselect-python-20091230 =dev-lang/python-2*
0
mirror://pypi/W/WTForms/WTForms-0.6.2.zip
mirror://pypi/W/WTForms/WTForms-1.0.1.zip
http://wtforms.simplecodes.com/ http://pypi.python.org/pypi/WTForms
BSD
Flexible forms validation and rendering library for python web development
amd64 x86
~amd64 ~x86
distutils multilib python toolchain-funcs
doc

@ -0,0 +1,22 @@
>=app-admin/eselect-python-20091230 =dev-lang/python-2*
>=app-admin/eselect-python-20091230 =dev-lang/python-2*
0
mirror://pypi/x/xlwt/xlwt-0.7.3.tar.gz
http://pypi.python.org/pypi/xlwt
BSD
Python library to create spreadsheet files compatible with Excel
~amd64 ~ppc ~ppc64 ~x86
distutils multilib python toolchain-funcs
examples
2
compile install postinst postrm prepare

@ -6,7 +6,7 @@ mirror://rubygems/Ascii85-1.0.1.gem
http://ascii85.rubyforge.org/
MIT
Methods for encoding/decoding Adobe's binary-to-text encoding of the same name.
~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86
~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd
eutils java-utils-2 multilib ruby-fakegem ruby-ng toolchain-funcs user versionator
elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ruby_targets_jruby test test

@ -6,7 +6,7 @@ https://github.com/tenderlove/nokogiri/tarball/v1.5.0 -> nokogiri-1.5.0.tgz
http://nokogiri.rubyforge.org/
MIT
Nokogiri is an HTML, XML, SAX, and Reader parser.
~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
eutils java-utils-2 multilib ruby-fakegem ruby-ng toolchain-funcs user versionator
elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ruby_targets_jruby doc doc test test
|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ruby_targets_jruby )

@ -6,7 +6,7 @@ mirror://rubygems/rspec-2.6.0.gem
http://rspec.rubyforge.org/
MIT
A Behaviour Driven Development (BDD) framework for Ruby
~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
eutils java-utils-2 multilib ruby-fakegem ruby-ng toolchain-funcs user versionator
test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ruby_targets_jruby test

@ -6,7 +6,7 @@ mirror://rubygems/rspec-core-2.6.4.gem
http://rspec.rubyforge.org/
MIT
A Behaviour Driven Development (BDD) framework for Ruby
~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
eutils java-utils-2 multilib ruby-fakegem ruby-ng toolchain-funcs user versionator
elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19 ruby_targets_jruby doc test test

@ -6,7 +6,7 @@ mirror://rubygems/rspec-expectations-2.6.0.gem
http://rspec.rubyforge.org/
MIT
A Behaviour Driven Development (BDD) framework for Ruby
~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
eutils java-utils-2 multilib ruby-fakegem ruby-ng toolchain-funcs user versionator
test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19 ruby_targets_jruby doc test test

@ -6,7 +6,7 @@ mirror://rubygems/rspec-mocks-2.6.0.gem
http://rspec.rubyforge.org/
MIT
A Behaviour Driven Development (BDD) framework for Ruby
~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris
eutils java-utils-2 multilib ruby-fakegem ruby-ng toolchain-funcs user versionator
elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 ruby_targets_ruby19 ruby_targets_jruby doc test test

@ -0,0 +1,22 @@
emacs? ( virtual/emacs )
0
http://www.iro.umontreal.ca/~gambit/download/gambit/v4.6/source/gambc-v4_6_4.tgz
http://www.iro.umontreal.ca/~gambit/
|| ( Apache-2.0 LGPL-2.1 )
Gambit-C is a native Scheme to C compiler and interpreter.
~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos
elisp-common eutils multilib toolchain-funcs user
emacs static
4
compile configure install postinst postrm

@ -1,22 +0,0 @@
doc? ( app-doc/doxygen ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool
0
mirror://sourceforge/libcddb/libcddb-1.3.0.tar.bz2
test
http://libcddb.sourceforge.net
LGPL-2
A library for accessing a CDDB server
alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd
autotools eutils libtool multilib toolchain-funcs user
doc
compile install unpack

@ -3,16 +3,16 @@ virtual/libiconv
0
mirror://sourceforge/libcddb/libcddb-1.3.2.tar.bz2
test
http://libcddb.sourceforge.net
http://libcddb.sourceforge.net/
LGPL-2
A library for accessing a CDDB server
alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris
libtool multilib toolchain-funcs
doc
doc static-libs
2
4
compile configure install prepare

@ -7,14 +7,14 @@ http://libemf.sourceforge.net/
LGPL-2.1 GPL-2
Library implementation of ECMA-234 API for the generation of enhanced metafiles.
amd64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux
autotools eutils libtool multilib toolchain-funcs user
doc
autotools autotools-utils eutils libtool multilib toolchain-funcs user
doc static-libs
2
4
configure install prepare
compile configure install prepare test

@ -1,4 +1,4 @@
>=dev-libs/libevent-2.0.10 dev-libs/openssl:0 net-libs/libnatpmp >=net-libs/miniupnpc-1.6 >=net-misc/curl-7.16.3[ssl] sys-libs/zlib gtk? ( >=dev-libs/dbus-glib-0.98 >=dev-libs/glib-2.28 >=x11-libs/gtk+-3.2:3 ayatana? ( dev-libs/libappindicator:3 ) ) qt4? ( x11-libs/qt-core:4 x11-libs/qt-gui:4[dbus] ) dev-util/intltool dev-util/pkgconfig sys-devel/gettext virtual/os-headers nls? ( >=dev-util/intltool-0.40 sys-devel/gettext ) xfs? ( sys-fs/xfsprogs ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4
>=dev-libs/libevent-2.0.10 dev-libs/openssl:0 net-libs/libnatpmp >=net-libs/miniupnpc-1.6 >=net-misc/curl-7.16.3[ssl] sys-libs/zlib gtk? ( >=dev-libs/dbus-glib-0.98 >=dev-libs/glib-2.28 >=x11-libs/gtk+-3.2:3 ayatana? ( dev-libs/libappindicator:3 ) ) qt4? ( x11-libs/qt-core:4 x11-libs/qt-gui:4[dbus] ) dev-util/intltool sys-devel/gettext dev-util/pkgconfig virtual/os-headers nls? ( dev-util/intltool sys-devel/gettext ) xfs? ( sys-fs/xfsprogs ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4
>=dev-libs/libevent-2.0.10 dev-libs/openssl:0 net-libs/libnatpmp >=net-libs/miniupnpc-1.6 >=net-misc/curl-7.16.3[ssl] sys-libs/zlib gtk? ( >=dev-libs/dbus-glib-0.98 >=dev-libs/glib-2.28 >=x11-libs/gtk+-3.2:3 ayatana? ( dev-libs/libappindicator:3 ) ) qt4? ( x11-libs/qt-core:4 x11-libs/qt-gui:4[dbus] )
0
http://download.transmissionbt.com/transmission/files/transmission-2.50.tar.xz
@ -6,10 +6,10 @@ http://download.transmissionbt.com/transmission/files/transmission-2.50.tar.xz
http://www.transmissionbt.com/
GPL-2 MIT
A Fast, Easy and Free BitTorrent client
~amd64 ~ppc ~ppc64 ~x86
~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd
autotools base eutils fdo-mime gnome2-utils libtool multilib qt4-r2 toolchain-funcs user
ayatana gtk kde nls qt4 xfs linguas_en linguas_es linguas_kk linguas_lt linguas_pt_BR linguas_ru
ayatana? ( gtk ) kde? ( qt4 )
ayatana gtk lightweight nls qt4 xfs linguas_en linguas_es linguas_kk linguas_lt linguas_pt_BR linguas_ru
ayatana? ( gtk )
4

@ -0,0 +1,22 @@
>=dev-libs/libevent-2.0.10 dev-libs/openssl:0 net-libs/libnatpmp >=net-libs/miniupnpc-1.6 >=net-misc/curl-7.16.3[ssl] sys-libs/zlib gtk? ( >=dev-libs/dbus-glib-0.98 >=dev-libs/glib-2.28 >=x11-libs/gtk+-3.2:3 ayatana? ( dev-libs/libappindicator:3 ) ) qt4? ( x11-libs/qt-core:4 x11-libs/qt-gui:4[dbus] ) dev-util/intltool sys-devel/gettext dev-util/pkgconfig virtual/os-headers nls? ( dev-util/intltool sys-devel/gettext ) xfs? ( sys-fs/xfsprogs ) || ( =sys-devel/automake-1.11* ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4 dev-vcs/subversion net-misc/rsync
>=dev-libs/libevent-2.0.10 dev-libs/openssl:0 net-libs/libnatpmp >=net-libs/miniupnpc-1.6 >=net-misc/curl-7.16.3[ssl] sys-libs/zlib gtk? ( >=dev-libs/dbus-glib-0.98 >=dev-libs/glib-2.28 >=x11-libs/gtk+-3.2:3 ayatana? ( dev-libs/libappindicator:3 ) ) qt4? ( x11-libs/qt-core:4 x11-libs/qt-gui:4[dbus] )
0
http://www.transmissionbt.com/
GPL-2 MIT
A Fast, Easy and Free BitTorrent client
autotools base eutils fdo-mime gnome2-utils libtool multilib qt4-r2 subversion toolchain-funcs user
ayatana gtk lightweight nls qt4 xfs linguas_en linguas_es linguas_kk linguas_lt linguas_pt_BR linguas_ru
ayatana? ( gtk )
4
compile configure install postinst postrm preinst prepare setup unpack

@ -1,5 +1,5 @@
>=app-admin/eselect-python-20091230 =dev-lang/python-2.7* =dev-lang/python-2.7*[readline]
zsh-completion? ( app-shells/zsh ) bash-completion? ( app-admin/eselect ) >=app-admin/eselect-python-20091230 =dev-lang/python-2.7* =dev-lang/python-2.7*[readline]
zsh-completion? ( app-shells/zsh ) >=app-admin/eselect-python-20091230 =dev-lang/python-2.7* =dev-lang/python-2.7*[readline]
0
http://www.github.com/williamh/pybugz/tarball/0.9.3 -> pybugz-0.9.3.tar.gz
@ -7,10 +7,10 @@ http://www.github.com/williamh/pybugz
GPL-2
Command line interface to (Gentoo) Bugzilla
alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris
bash-completion distutils eutils multilib python toolchain-funcs user
zsh-completion bash-completion
bash-completion-r1 distutils multilib python toolchain-funcs
zsh-completion
bash-completion? ( app-shells/bash-completion )
3

@ -1,5 +1,5 @@
dev-vcs/git >=app-admin/eselect-python-20091230 =dev-lang/python-2.7* =dev-lang/python-2.7*[readline]
zsh-completion? ( app-shells/zsh ) bash-completion? ( app-admin/eselect ) >=app-admin/eselect-python-20091230 =dev-lang/python-2.7* =dev-lang/python-2.7*[readline]
zsh-completion? ( app-shells/zsh ) >=app-admin/eselect-python-20091230 =dev-lang/python-2.7* =dev-lang/python-2.7*[readline]
0
@ -7,10 +7,10 @@ http://www.github.com/williamh/pybugz
GPL-2
Command line interface to (Gentoo) Bugzilla
bash-completion distutils eutils git-2 multilib python toolchain-funcs user
zsh-completion bash-completion
bash-completion-r1 distutils git-2 multilib python toolchain-funcs
zsh-completion
bash-completion? ( app-shells/bash-completion )
3

@ -1 +1 @@
Fri, 02 Mar 2012 08:06:46 +0000
Fri, 02 Mar 2012 12:06:47 +0000

@ -1 +1 @@
Fri, 02 Mar 2012 08:06:46 +0000
Fri, 02 Mar 2012 12:06:47 +0000

@ -1 +1 @@
Fri, 02 Mar 2012 08:06:48 +0000
Fri, 02 Mar 2012 12:06:49 +0000

@ -1 +1 @@
Fri Mar 2 08:06:46 UTC 2012
Fri Mar 2 12:06:47 UTC 2012

@ -1 +1 @@
Fri, 02 Mar 2012 08:30:01 +0000
Fri, 02 Mar 2012 12:30:01 +0000

@ -1 +1 @@
1330675501 Fri Mar 2 08:05:01 2012 UTC
1330689901 Fri Mar 2 12:05:01 2012 UTC

@ -12,6 +12,7 @@
</maintainer>
<use>
<flag name='libcanberra'>Enable sound event support with <pkg>media-libs/libcanberra</pkg></flag>
<flag name='xfs'>Use <pkg>sys-fs/xfsprogs</pkg> headers in building of fdlimit(.c)</flag>
<flag name='lightweight'>Optimize transmission for low-resource systems (smaller cache size, prefer unencrypted peer connections, etc.)</flag>
<flag name='xfs'>Enable XFS filesystem capabilities by using <pkg>sys-fs/xfsprogs</pkg> headers (in building of fdlimit(.c))</flag>
</use>
</pkgmetadata>

@ -1,19 +1,28 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/transmission-2.50-r1.ebuild,v 1.1 2012/03/02 03:10:04 ssuominen Exp $
# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/transmission-2.50-r1.ebuild,v 1.4 2012/03/02 10:56:14 ssuominen Exp $
EAPI=4
LANGS="en es kk lt pt_BR ru"
inherit autotools eutils fdo-mime gnome2-utils qt4-r2
unset _live_inherits
if [[ ${PV} == *9999* ]]; then
ESVN_REPO_URI="svn://svn.transmissionbt.com/Transmission/trunk"
_live_inherits=subversion
else
SRC_URI="http://download.transmissionbt.com/${PN}/files/${P}.tar.xz"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
fi
inherit autotools eutils fdo-mime gnome2-utils qt4-r2 ${_live_inherits}
DESCRIPTION="A Fast, Easy and Free BitTorrent client"
HOMEPAGE="http://www.transmissionbt.com/"
SRC_URI="http://download.transmissionbt.com/${PN}/files/${P}.tar.xz"
LICENSE="GPL-2 MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="ayatana gtk kde nls qt4 xfs"
IUSE="ayatana gtk lightweight nls qt4 xfs"
RDEPEND="
>=dev-libs/libevent-2.0.10
@ -33,21 +42,21 @@ RDEPEND="
x11-libs/qt-gui:4[dbus]
)"
DEPEND="${RDEPEND}
EAUTORECONF_DEPEND="
dev-util/intltool
sys-devel/gettext"
DEPEND="${RDEPEND}
${EAUTORECONF_DEPEND}
dev-util/pkgconfig
sys-devel/gettext
virtual/os-headers
nls? (
>=dev-util/intltool-0.40
dev-util/intltool
sys-devel/gettext
)
xfs? ( sys-fs/xfsprogs )"
# note: gettext is always a depend with eautoreconf
REQUIRED_USE="
ayatana? ( gtk )
kde? ( qt4 )"
REQUIRED_USE="ayatana? ( gtk )"
DOCS="AUTHORS NEWS qt/README.txt"
@ -56,8 +65,21 @@ pkg_setup() {
enewuser ${PN} -1 -1 -1 ${PN}
}
src_unpack() {
if [[ ${PV} == *9999* ]]; then
subversion_src_unpack
else
default
fi
}
src_prepare() {
epatch "${FILESDIR}"/${P}-build-with-natpmp1.patch
if [[ ${PV} == *9999* ]]; then
subversion_src_prepare
./update-version-h.sh
fi
epatch "${FILESDIR}"/${PN}-2.50-build-with-natpmp1.patch #376647
sed -i -e '/CFLAGS/s:-ggdb3::' configure.ac
use ayatana || sed -i -e '/^LIBAPPINDICATOR_MINIMUM/s:=.*:=9999:' configure.ac
@ -66,13 +88,14 @@ src_prepare() {
sed -i -e 's|noinst\(_PROGRAMS = $(TESTS)\)|check\1|' lib${PN}/Makefile.am || die
eautoreconf
intltoolize --copy --force --automake || die
if use kde; then
if use qt4; then
cat <<-EOF > "${T}"/${PN}-magnet.protocol
[Protocol]
exec=transmission-qt '%u'
exec=${PN}-qt '%u'
protocol=magnet
Icon=transmission
Icon=${PN}
input=none
output=none
helper=true
@ -91,14 +114,31 @@ src_configure() {
econf \
--enable-external-natpmp \
$(use_enable nls) \
$(use_enable lightweight) \
$(use_with gtk)
use qt4 && cd qt && eqmake4 qtr.pro
if use qt4; then
pushd qt >/dev/null
eqmake4 qtr.pro
popd >/dev/null
fi
}
src_compile() {
emake
use qt4 && cd qt && emake
default
if use qt4; then
pushd qt >/dev/null
emake
local l
for l in ${LANGS}; do
if use linguas_${l}; then
lrelease translations/${PN}_${l}.ts
fi
done
popd >/dev/null
fi
}
src_install() {
@ -109,31 +149,33 @@ src_install() {
newinitd "${FILESDIR}"/${PN}-daemon.initd.8 ${PN}-daemon
newconfd "${FILESDIR}"/${PN}-daemon.confd.3 ${PN}-daemon
keepdir /var/{transmission/{config,downloads},log/transmission}
fowners -R transmission:transmission /var/{transmission/{,config,downloads},log/transmission}
keepdir /var/{${PN}/{config,downloads},log/${PN}}
fowners -R ${PN}:${PN} /var/{${PN}/{,config,downloads},log/${PN}}
if use qt4; then
pushd qt >/dev/null
emake INSTALL_ROOT="${D}"/usr install
domenu ${PN}-qt.desktop
doicon icons/${PN}-qt.png
local res
for res in 16 22 24 32 48; do
insinto /usr/share/icons/hicolor/${res}x${res}/apps
newins icons/hicolor_apps_${res}x${res}_${PN}.png ${PN}-qt.png
done
insinto /usr/share/kde4/services
doins "${T}"/${PN}-magnet.protocol
if use nls; then
insinto /usr/share/qt4/translations
local lang
for lang in ${LANGS}; do
if use linguas_${lang}; then
lrelease translations/${PN}_${lang}.ts || die
doins translations/${PN}_${lang}.qm
local l
for l in ${LANGS}; do
if use linguas_${l}; then
doins translations/${PN}_${l}.qm
fi
done
fi
if use kde; then
insinto /usr/share/kde4/services
doins "${T}"/${PN}-magnet.protocol
fi
popd >/dev/null
fi
}
@ -146,20 +188,16 @@ pkg_postinst() {
fdo-mime_desktop_database_update
gnome2_icon_cache_update
ewarn "If you use transmission-daemon, please, set 'rpc-username' and"
ewarn "'rpc-password' (in plain text, transmission-daemon will hash it on"
ewarn "start) in settings.json file located at /var/transmission/config or"
ewarn "any other appropriate config directory."
elog
elog "To enable sound emerge media-libs/libcanberra and check that at least"
elog "some sound them is selected. For this go:"
elog "Gnome/system/preferences/sound themes tab and 'sound theme: default'"
elog "If you use ${PN}-daemon, please, set 'rpc-username' and"
elog "'rpc-password' (in plain text, ${PN}-daemon will hash it on"
elog "start) in settings.json file located at /var/${PN}/config or"
elog "any other appropriate config directory."
elog
ewarn "Since uTP is enabled ${PN} needs large kernel buffers for the UDP socket."
ewarn "Please, add into /etc/sysctl.conf following lines:"
ewarn " net.core.rmem_max = 4194304"
ewarn " net.core.wmem_max = 1048576"
ewarn "and run sysctl -p"
elog "Since µTP is enabled by default, ${PN} needs large kernel buffers for"
elog "the UDP socket. You can append following lines into /etc/sysctl.conf:"
elog " net.core.rmem_max = 4194304"
elog " net.core.wmem_max = 1048576"
elog "and run sysctl -p"
}
pkg_postrm() {

@ -0,0 +1,206 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/transmission-9999.ebuild,v 1.3 2012/03/02 10:56:14 ssuominen Exp $
EAPI=4
LANGS="en es kk lt pt_BR ru"
unset _live_inherits
if [[ ${PV} == *9999* ]]; then
ESVN_REPO_URI="svn://svn.transmissionbt.com/Transmission/trunk"
_live_inherits=subversion
else
SRC_URI="http://download.transmissionbt.com/${PN}/files/${P}.tar.xz"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd"
fi
inherit autotools eutils fdo-mime gnome2-utils qt4-r2 ${_live_inherits}
DESCRIPTION="A Fast, Easy and Free BitTorrent client"
HOMEPAGE="http://www.transmissionbt.com/"
LICENSE="GPL-2 MIT"
SLOT="0"
IUSE="ayatana gtk lightweight nls qt4 xfs"
RDEPEND="
>=dev-libs/libevent-2.0.10
dev-libs/openssl:0
net-libs/libnatpmp
>=net-libs/miniupnpc-1.6
>=net-misc/curl-7.16.3[ssl]
sys-libs/zlib
gtk? (
>=dev-libs/dbus-glib-0.98
>=dev-libs/glib-2.28
>=x11-libs/gtk+-3.2:3
ayatana? ( dev-libs/libappindicator:3 )
)
qt4? (
x11-libs/qt-core:4
x11-libs/qt-gui:4[dbus]
)"
EAUTORECONF_DEPEND="
dev-util/intltool
sys-devel/gettext"
DEPEND="${RDEPEND}
${EAUTORECONF_DEPEND}
dev-util/pkgconfig
virtual/os-headers
nls? (
dev-util/intltool
sys-devel/gettext
)
xfs? ( sys-fs/xfsprogs )"
REQUIRED_USE="ayatana? ( gtk )"
DOCS="AUTHORS NEWS qt/README.txt"
pkg_setup() {
enewgroup ${PN}
enewuser ${PN} -1 -1 -1 ${PN}
}
src_unpack() {
if [[ ${PV} == *9999* ]]; then
subversion_src_unpack
else
default
fi
}
src_prepare() {
if [[ ${PV} == *9999* ]]; then
subversion_src_prepare
./update-version-h.sh
fi
epatch "${FILESDIR}"/${PN}-2.50-build-with-natpmp1.patch #376647
sed -i -e '/CFLAGS/s:-ggdb3::' configure.ac
use ayatana || sed -i -e '/^LIBAPPINDICATOR_MINIMUM/s:=.*:=9999:' configure.ac
# http://trac.transmissionbt.com/ticket/4324
sed -i -e 's|noinst\(_PROGRAMS = $(TESTS)\)|check\1|' lib${PN}/Makefile.am || die
eautoreconf
intltoolize --copy --force --automake || die
if use qt4; then
cat <<-EOF > "${T}"/${PN}-magnet.protocol
[Protocol]
exec=${PN}-qt '%u'
protocol=magnet
Icon=${PN}
input=none
output=none
helper=true
listing=
reading=false
writing=false
makedir=false
deleting=false
EOF
fi
}
src_configure() {
export ac_cv_header_xfs_xfs_h=$(usex xfs)
econf \
--enable-external-natpmp \
$(use_enable nls) \
$(use_enable lightweight) \
$(use_with gtk)
if use qt4; then
pushd qt >/dev/null
eqmake4 qtr.pro
popd >/dev/null
fi
}
src_compile() {
default
if use qt4; then
pushd qt >/dev/null
emake
local l
for l in ${LANGS}; do
if use linguas_${l}; then
lrelease translations/${PN}_${l}.ts
fi
done
popd >/dev/null
fi
}
src_install() {
default
rm -f "${ED}"/usr/share/${PN}/web/LICENSE
newinitd "${FILESDIR}"/${PN}-daemon.initd.8 ${PN}-daemon
newconfd "${FILESDIR}"/${PN}-daemon.confd.3 ${PN}-daemon
keepdir /var/{${PN}/{config,downloads},log/${PN}}
fowners -R ${PN}:${PN} /var/{${PN}/{,config,downloads},log/${PN}}
if use qt4; then
pushd qt >/dev/null
emake INSTALL_ROOT="${D}"/usr install
domenu ${PN}-qt.desktop
local res
for res in 16 22 24 32 48; do
insinto /usr/share/icons/hicolor/${res}x${res}/apps
newins icons/hicolor_apps_${res}x${res}_${PN}.png ${PN}-qt.png
done
insinto /usr/share/kde4/services
doins "${T}"/${PN}-magnet.protocol
if use nls; then
insinto /usr/share/qt4/translations
local l
for l in ${LANGS}; do
if use linguas_${l}; then
doins translations/${PN}_${l}.qm
fi
done
fi
popd >/dev/null
fi
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
fdo-mime_desktop_database_update
gnome2_icon_cache_update
elog "If you use ${PN}-daemon, please, set 'rpc-username' and"
elog "'rpc-password' (in plain text, ${PN}-daemon will hash it on"
elog "start) in settings.json file located at /var/${PN}/config or"
elog "any other appropriate config directory."
elog
elog "Since µTP is enabled by default, ${PN} needs large kernel buffers for"
elog "the UDP socket. You can append following lines into /etc/sysctl.conf:"
elog " net.core.rmem_max = 4194304"
elog " net.core.wmem_max = 1048576"
elog "and run sysctl -p"
}
pkg_postrm() {
fdo-mime_desktop_database_update
gnome2_icon_cache_update
}

@ -1,5 +1,5 @@
####################################################################
# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.13534 2012/03/01 16:20:05 djc Exp $
# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.13535 2012/03/02 09:41:55 jlec Exp $
#
# When you add an entry to the top of this file, add your name, the date, and
# an explanation of why something is getting masked. Please be extremely
@ -92,10 +92,6 @@ app-text/notecase-pro
# See bug 404315 for details and update installations
x11-wm/scrotwm
# Justin Lecher <jlec@gentoo.org> (10 Feb 2012)
# is included in current pymol
sci-chemistry/pymol-plugins-cealign
# Bernard Cafarelli <voyageur@gentoo.org> (14 Feb 2012)
# Does not compile with new Objective-C runtimes
# Dead upstreams (last releases in 2002, 2005 or 2006)

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save