diff --git a/app-admin/salt/Manifest b/app-admin/salt/Manifest index e21cc851eb6d..9dcefabbd0c2 100644 --- a/app-admin/salt/Manifest +++ b/app-admin/salt/Manifest @@ -1,3 +1,2 @@ -DIST salt-0.13.1.tar.gz 1016399 SHA256 944caedffef0d3d4ecdb34e3cf32749e32cdddf5b78fee759f43f63a3fd0430c SHA512 7fc4e63683f25b323e9717fe71e5bf397c60484f0cc65dec9f8a1a0b2f978d231a7a4f847abd523a5406d7afc80a7e38525fe480feeced28b6ed753c84931e4d WHIRLPOOL 21e590bb0f0ccaadeb27fbbeadb6029e68d1b62849e11c0dbc5b128d5339f2c50b924f2c61ee466126cf0cb295bbdcb79067ade0939710f233a644e561f65893 -DIST salt-0.14.0.tar.gz 3343825 SHA256 219b3b1a81407ba107a22754753ef882369df697da5b0ac74cfbbf67a702c664 SHA512 b59d211ee5693338d0a2d3026618ee9a35314f8ea86dfde9344d505e0b9a4d60385dea01e8f38fd5fff77fa6d1615fcd2c85064185b9e60302a03b3e184107e3 WHIRLPOOL d487c799f0f98518986b30bd6e02502227ea036bfe4ae78a1dd933fe80742f8992991b8ed84ec89bb62db9dca412e865866459509a439d421531eebbbf7d7687 DIST salt-0.14.1.tar.gz 3366334 SHA256 615fb644da111c8e7c500ac23cd258edec24d7db7bd4f5a40a465b56e54e0fd1 SHA512 7c8624274e4247ad8d4153c1ed4185504daac1557e2dc0bde1ac49d6090130467bf478408a962f745d5ff80a9e6453e0c40fc26bc3161c26a087bd7a67f223e4 WHIRLPOOL 692b5ee28c5cfafc02dbdf9028b60fe3f3d1431b952ac9ba1998f43f0df2beb137c421aafc20e5f99d753ba987b6e065559b2b9d265d3924c5e614ea3b878454 +DIST salt-0.15.0.tar.gz 3411308 SHA256 7d7d8c372571e0d3f36eea8e04a692ac566197030dffeb145e5b7282e56bd3d5 SHA512 08805f10e0101090f8fa67c9dfa3190ed81ff5754f29235e0b8aae45ba55233c0a80559d5975bf0a16880820b349dbe6e2136b3469690b7b691fd153aaa26b29 WHIRLPOOL a2c7037d703546efe3f39b8b293152180d63634a4a190e4c1de3d5f7f9d3ece804b59827567c2f423240fd953b774d5772f152b98a640384e2c4deb0c05b3034 diff --git a/app-admin/salt/metadata.xml b/app-admin/salt/metadata.xml index b18aa94eae5b..4ca0d061a448 100644 --- a/app-admin/salt/metadata.xml +++ b/app-admin/salt/metadata.xml @@ -25,6 +25,7 @@ backbone of cloud and data center management. Support managing virtual machines with app-emulation/libvirt. Support returning data to a mongodb server. Support returning data to a redis database. + Add support for using the mako template engine for parsing salt states. diff --git a/app-admin/salt/salt-0.14.0.ebuild b/app-admin/salt/salt-0.14.0.ebuild deleted file mode 100644 index c49ec54e9460..000000000000 --- a/app-admin/salt/salt-0.14.0.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/salt-0.14.0.ebuild,v 1.1 2013/03/26 00:51:44 chutzpah Exp $ - -EAPI=5 - -PYTHON_COMPAT=(python{2_6,2_7}) - -inherit eutils distutils-r1 - -DESCRIPTION="Salt is a remote execution and configuration manager." -HOMEPAGE="http://saltstack.org/" - -if [[ ${PV} == 9999* ]]; then - inherit git-2 - EGIT_REPO_URI="git://github.com/${PN}stack/${PN}.git" - EGIT_BRANCH="develop" - SRC_URI="" - KEYWORDS="" -else - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - KEYWORDS="~x86 ~amd64" -fi - -LICENSE="Apache-2.0" -SLOT="0" -IUSE="ldap libvirt mongodb mysql openssl redis test" - -RDEPEND=">=dev-python/pyzmq-2.1.9 - dev-python/msgpack - dev-python/pyyaml - dev-python/m2crypto - dev-python/pycrypto - dev-python/pycryptopp - dev-python/jinja - ldap? ( dev-python/python-ldap ) - openssl? ( dev-python/pyopenssl ) - libvirt? ( app-emulation/libvirt[python] ) - mongodb? ( dev-python/pymongo ) - mysql? ( dev-python/mysql-python ) - redis? ( dev-python/redis-py )" -DEPEND="test? ( - dev-python/virtualenv - ${RDEPEND} - )" - -src_prepare() { - sed -i '/install_requires=/ d' setup.py || die "sed failed" - - distutils-r1_src_prepare -} - -src_install() { - distutils-r1_src_install - - for s in minion master syndic; do - newinitd "${FILESDIR}"/${s}-initd-1 salt-${s} - newconfd "${FILESDIR}"/${s}-confd-1 salt-${s} - done - - dodoc README.rst AUTHORS -} - -python_test() { - SHELL="/bin/bash" TMPDIR=/tmp ./tests/runtests.py --unit-tests --no-report || die -} diff --git a/app-admin/salt/salt-0.13.1.ebuild b/app-admin/salt/salt-0.15.0-r1.ebuild similarity index 51% rename from app-admin/salt/salt-0.13.1.ebuild rename to app-admin/salt/salt-0.15.0-r1.ebuild index 55fbf00037f8..0f221493edc7 100644 --- a/app-admin/salt/salt-0.13.1.ebuild +++ b/app-admin/salt/salt-0.15.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/salt-0.13.1.ebuild,v 1.1 2013/02/19 18:54:02 chutzpah Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/salt-0.15.0-r1.ebuild,v 1.1 2013/05/04 23:08:49 chutzpah Exp $ EAPI=5 @@ -24,44 +24,46 @@ fi LICENSE="Apache-2.0" SLOT="0" -IUSE="ldap libvirt mongodb mysql openssl redis test" +IUSE="ldap libvirt mako mongodb mysql openssl redis test" -RDEPEND=">=dev-python/pyzmq-2.1.9 - dev-python/msgpack - dev-python/pyyaml - dev-python/m2crypto - dev-python/pycrypto - dev-python/pycryptopp - dev-python/jinja - ldap? ( dev-python/python-ldap ) - openssl? ( dev-python/pyopenssl ) +RDEPEND=">=dev-python/pyzmq-2.1.9[${PYTHON_USEDEP}] + dev-python/msgpack[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + dev-python/m2crypto[${PYTHON_USEDEP}] + dev-python/pycrypto[${PYTHON_USEDEP}] + dev-python/pycryptopp[${PYTHON_USEDEP}] + dev-python/jinja[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + mako? ( dev-python/mako[${PYTHON_USEDEP}] ) + ldap? ( dev-python/python-ldap[${PYTHON_USEDEP}] ) + openssl? ( dev-python/pyopenssl[${PYTHON_USEDEP}] ) libvirt? ( app-emulation/libvirt[python] ) - mongodb? ( dev-python/pymongo ) - mysql? ( dev-python/mysql-python ) - redis? ( dev-python/redis-py )" + mongodb? ( dev-python/pymongo[${PYTHON_USEDEP}] ) + mysql? ( dev-python/mysql-python[${PYTHON_USEDEP}] ) + redis? ( dev-python/redis-py[${PYTHON_USEDEP}] )" DEPEND="test? ( dev-python/virtualenv ${RDEPEND} )" -src_prepare() { +python_prepare() { sed -i '/install_requires=/ d' setup.py || die "sed failed" - epatch "${FILESDIR}"/${P}-disable-failing-tests.patch - - distutils-r1_src_prepare } -src_install() { - distutils-r1_src_install - +python_install_all() { for s in minion master syndic; do newinitd "${FILESDIR}"/${s}-initd-1 salt-${s} newconfd "${FILESDIR}"/${s}-confd-1 salt-${s} done + insinto /etc/${PN} + doins conf/* + dodoc README.rst AUTHORS } python_test() { + # testsuite likes lots of files + ulimit -n 3072 SHELL="/bin/bash" TMPDIR=/tmp ./tests/runtests.py --unit-tests --no-report || die } diff --git a/app-admin/salt/salt-9999.ebuild b/app-admin/salt/salt-9999.ebuild index 58e10590c0d1..5f20ef1bfc55 100644 --- a/app-admin/salt/salt-9999.ebuild +++ b/app-admin/salt/salt-9999.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/salt-9999.ebuild,v 1.3 2013/03/26 00:51:44 chutzpah Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/salt-9999.ebuild,v 1.5 2013/05/04 23:11:34 chutzpah Exp $ EAPI=5 @@ -24,43 +24,46 @@ fi LICENSE="Apache-2.0" SLOT="0" -IUSE="ldap libvirt mongodb mysql openssl redis test" +IUSE="ldap libvirt mako mongodb mysql openssl redis test" -RDEPEND=">=dev-python/pyzmq-2.1.9 - dev-python/msgpack - dev-python/pyyaml - dev-python/m2crypto - dev-python/pycrypto - dev-python/pycryptopp - dev-python/jinja - ldap? ( dev-python/python-ldap ) - openssl? ( dev-python/pyopenssl ) +RDEPEND=">=dev-python/pyzmq-2.1.9[${PYTHON_USEDEP}] + dev-python/msgpack[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + dev-python/m2crypto[${PYTHON_USEDEP}] + dev-python/pycrypto[${PYTHON_USEDEP}] + dev-python/pycryptopp[${PYTHON_USEDEP}] + dev-python/jinja[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + mako? ( dev-python/mako[${PYTHON_USEDEP}] ) + ldap? ( dev-python/python-ldap[${PYTHON_USEDEP}] ) + openssl? ( dev-python/pyopenssl[${PYTHON_USEDEP}] ) libvirt? ( app-emulation/libvirt[python] ) - mongodb? ( dev-python/pymongo ) - mysql? ( dev-python/mysql-python ) - redis? ( dev-python/redis-py )" + mongodb? ( dev-python/pymongo[${PYTHON_USEDEP}] ) + mysql? ( dev-python/mysql-python[${PYTHON_USEDEP}] ) + redis? ( dev-python/redis-py[${PYTHON_USEDEP}] )" DEPEND="test? ( dev-python/virtualenv ${RDEPEND} )" -src_prepare() { +python_prepare() { sed -i '/install_requires=/ d' setup.py || die "sed failed" - - distutils-r1_src_prepare } -src_install() { - distutils-r1_src_install - +python_install_all() { for s in minion master syndic; do newinitd "${FILESDIR}"/${s}-initd-1 salt-${s} newconfd "${FILESDIR}"/${s}-confd-1 salt-${s} done + insinto /etc/${PN} + doins conf/* + dodoc README.rst AUTHORS } python_test() { + # testsuite likes lots of files + ulimit -n 3072 SHELL="/bin/bash" TMPDIR=/tmp ./tests/runtests.py --unit-tests --no-report || die } diff --git a/app-arch/unar/unar-1.5.ebuild b/app-arch/unar/unar-1.5.ebuild index ca0c2a7bf976..bf71293ae8c4 100644 --- a/app-arch/unar/unar-1.5.ebuild +++ b/app-arch/unar/unar-1.5.ebuild @@ -1,16 +1,16 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/unar/unar-1.5.ebuild,v 1.1 2013/01/10 22:17:58 hanno Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/unar/unar-1.5.ebuild,v 1.2 2013/05/05 05:00:38 vapier Exp $ EAPI=4 inherit toolchain-funcs -DESCRIPTION="Unpacker for various archiving formats, e.g. rar v3." +DESCRIPTION="unpacker for various archiving formats, e.g. rar v3" HOMEPAGE="http://unarchiver.c3.cx/" SRC_URI="http://theunarchiver.googlecode.com/files/${PN}${PV}_src.zip" -LICENSE="LGPL-2.1" +LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64" IUSE="" @@ -25,16 +25,18 @@ S="${WORKDIR}/The Unarchiver/XADMaster" src_compile() { emake -f Makefile.linux \ + AR="$(tc-getAR)" \ CC="$(tc-getCC)" \ + CXX="$(tc-getCXX)" \ OBJCC="$(tc-getCC)" \ - C_OPTS="-std=gnu99 ${CFLAGS}" \ - OBJC_OPTS="-std=gnu99 ${CFLAGS}" \ - LD="$(tc-getCC)" \ - LDFLAGS="-Wl,--whole-archive -fexceptions -fgnu-runtime \ - ${LDFLAGS}" || die "emake failed" + C_OPTS="-std=gnu99 ${CFLAGS} ${CPPFLAGS}" \ + CXX_OPTS="${CXXFLAGS} ${CPPFLAGS}" \ + OBJC_OPTS="-std=gnu99 ${CFLAGS} ${CPPFLAGS}" \ + LD="$(tc-getCXX)" \ + LDFLAGS="-Wl,--whole-archive -fexceptions -fgnu-runtime ${LDFLAGS}" } src_install() { - dobin unar lsar || die "dobin failed" - doman ../Extra/lsar.1 ../Extra/unar.1 || die "doman failed" + dobin {ls,un}ar + doman ../Extra/{ls,un}ar.1 } diff --git a/app-crypt/cardpeek/Manifest b/app-crypt/cardpeek/Manifest index 64441dfd59e6..4c44e69f549e 100644 --- a/app-crypt/cardpeek/Manifest +++ b/app-crypt/cardpeek/Manifest @@ -1 +1,2 @@ DIST cardpeek-0.7.1.tar.gz 599238 SHA256 fa7f4fcabf211fefb968a5a49099e9a07430995556b7d59e95eeefef59538546 SHA512 8ea7f69e096de37543fec779372355a6f6cad709e43a4a66a072b453f962ebe55d25e432fb426cd88824f7165d724ddc6da55a6106e571608162b8094823be45 WHIRLPOOL 95f41d53840969beb3b98729c22ed8fe1e781ab6fe36ad3387cddf52963c2d56f5bca95955681cea839ce64ab6afddfc4d3cbf403e320d8dfec37ac0bd3a68bd +DIST cardpeek-0.7.2.tar.gz 1130295 SHA256 9908b38a91b4df80ec5a6d6a89780dd41684dc1f203587c1bcc8e4a13cb24ed2 SHA512 9fd1790794b8d092859670bb36a0cdd235e7d098d563032ccdb8143eac00bb77532f1ab918897c4b753afd184079975de34a6f645e31eadb28b6c5a81d344ecd WHIRLPOOL 777397ca535d820453e4d315be495fc5cf845feea457c666cf935d19b8e2c7556b51e4e23f8d009c6165626c450fe5b92413841d0ee56fd6f1d549716ee05e56 diff --git a/app-crypt/cardpeek/cardpeek-0.7.2.ebuild b/app-crypt/cardpeek/cardpeek-0.7.2.ebuild new file mode 100644 index 000000000000..a407a70eb6fe --- /dev/null +++ b/app-crypt/cardpeek/cardpeek-0.7.2.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/cardpeek/cardpeek-0.7.2.ebuild,v 1.1 2013/05/04 21:24:43 alonbl Exp $ + +EAPI=5 + +inherit eutils + +DESCRIPTION="Tool to read the contents of smartcards" +HOMEPAGE="https://code.google.com/p/cardpeek/" +SRC_URI="https://${PN}.googlecode.com/files/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND=">=x11-libs/gtk+-2.12:2 + sys-apps/pcsc-lite + =dev-lang/lua-5.1* + dev-libs/openssl" + +DEPEND="${RDEPEND} + virtual/pkgconfig" diff --git a/app-crypt/opencdk/opencdk-0.6.6-r1.ebuild b/app-crypt/opencdk/opencdk-0.6.6-r1.ebuild new file mode 100644 index 000000000000..77a8ee350890 --- /dev/null +++ b/app-crypt/opencdk/opencdk-0.6.6-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/opencdk/opencdk-0.6.6-r1.ebuild,v 1.1 2013/05/04 21:51:30 alonbl Exp $ + +EAPI=5 + +inherit autotools + +DESCRIPTION="Open Crypto Development Kit for basic OpenPGP message manipulation" +HOMEPAGE="http://www.gnutls.org/" +SRC_URI="ftp://ftp.gnutls.org/pub/gnutls/opencdk/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="doc test" + +RDEPEND=">=dev-libs/libgcrypt-1.2.0" +DEPEND="${RDEPEND} + >=dev-lang/perl-5.6" + +src_prepare() { + use test || sed -e "/SUBDIRS/s/ tests//" -i Makefile.am + + sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' configure.ac || die + eautoreconf +} + +src_install() { + default + dodoc AUTHORS ChangeLog NEWS README THANKS TODO + use doc && dohtml doc/opencdk-api.html +} diff --git a/app-emulation/ganeti/ganeti-2.6.0.ebuild b/app-emulation/ganeti/ganeti-2.6.0.ebuild index 398ec8cdc91d..af8c56a5f01a 100644 --- a/app-emulation/ganeti/ganeti-2.6.0.ebuild +++ b/app-emulation/ganeti/ganeti-2.6.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ganeti-2.6.0.ebuild,v 1.3 2012/12/31 12:57:03 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ganeti-2.6.0.ebuild,v 1.4 2013/05/04 21:13:54 floppym Exp $ EAPI="4" @@ -54,7 +54,6 @@ DEPEND="xen? ( >=app-emulation/xen-3.0 ) dev-haskell/text dev-haskell/hinotify ) dev-libs/openssl - dev-python/elementtree dev-python/paramiko dev-python/pyopenssl virtual/pyparsing diff --git a/app-emulation/ganeti/ganeti-2.6.1.ebuild b/app-emulation/ganeti/ganeti-2.6.1.ebuild index 8278b561b63c..e76df08dcca3 100644 --- a/app-emulation/ganeti/ganeti-2.6.1.ebuild +++ b/app-emulation/ganeti/ganeti-2.6.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ganeti-2.6.1.ebuild,v 1.2 2012/12/31 12:57:03 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ganeti-2.6.1.ebuild,v 1.3 2013/05/04 21:13:54 floppym Exp $ EAPI="4" @@ -54,7 +54,6 @@ DEPEND="xen? ( >=app-emulation/xen-3.0 ) dev-haskell/text dev-haskell/hinotify ) dev-libs/openssl - dev-python/elementtree dev-python/paramiko dev-python/pyopenssl virtual/pyparsing diff --git a/app-emulation/ganeti/ganeti-2.6.2.ebuild b/app-emulation/ganeti/ganeti-2.6.2.ebuild index bbfe6bd3756a..9fe869cb9326 100644 --- a/app-emulation/ganeti/ganeti-2.6.2.ebuild +++ b/app-emulation/ganeti/ganeti-2.6.2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ganeti-2.6.2.ebuild,v 1.3 2012/12/31 12:57:03 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ganeti-2.6.2.ebuild,v 1.4 2013/05/04 21:13:54 floppym Exp $ EAPI="4" PYTHON_DEPEND="2:2.6" @@ -56,7 +56,6 @@ DEPEND="xen? ( >=app-emulation/xen-3.0 ) dev-haskell/text dev-haskell/hinotify ) dev-libs/openssl - dev-python/elementtree dev-python/paramiko dev-python/pyopenssl virtual/pyparsing diff --git a/app-emulation/lxc/lxc-0.8.0-r1.ebuild b/app-emulation/lxc/lxc-0.8.0-r1.ebuild index 96dfa31e22f9..518b2668df56 100644 --- a/app-emulation/lxc/lxc-0.8.0-r1.ebuild +++ b/app-emulation/lxc/lxc-0.8.0-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/lxc/lxc-0.8.0-r1.ebuild,v 1.1 2012/11/14 02:15:10 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/lxc/lxc-0.8.0-r1.ebuild,v 1.2 2013/05/04 21:42:25 jlec Exp $ EAPI="4" @@ -84,6 +84,7 @@ ERROR_GRKERNSEC_CHROOT_CAPS=":CONFIG_GRKERNSEC_CHROOT_CAPS some GRSEC features m DOCS=(AUTHORS CONTRIBUTING MAINTAINERS TODO README doc/FAQ.txt) src_prepare() { + sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' configure.ac || die if [[ -n ${BACKPORTS} ]]; then epatch "${WORKDIR}"/patches/* eautoreconf diff --git a/app-emulation/lxc/metadata.xml b/app-emulation/lxc/metadata.xml index 694fd72ce5d0..138cece73f9a 100644 --- a/app-emulation/lxc/metadata.xml +++ b/app-emulation/lxc/metadata.xml @@ -8,7 +8,6 @@ dev-zero@gentoo.org - Avoid adding Gentoo Linux-specific modifications, which include diff --git a/app-text/calibre/Manifest b/app-text/calibre/Manifest index 46930c8f2a3d..0ea0e1ec8df4 100644 --- a/app-text/calibre/Manifest +++ b/app-text/calibre/Manifest @@ -1,2 +1,3 @@ DIST calibre-0.9.27.tar.xz 28696180 SHA256 8fd3779c8f878420333f6919f80493bf69d4b64bf427697ebc365497d2450d1f SHA512 91970f7c7349f661fc582eb43b89b81e77350b1cf2237c78e55c9f028a94b803b5d72bdac3ac11722c4fcf93077c1f8042567f8e380ad03423ba6c7f5dec7318 WHIRLPOOL 2313f94ee2417343693e1b48736434d1bf356795eb781abbaf68b858ba9fd57eb2a78e8afe04b9c992a1879a99eb9cf65527ccea7ed1a91d7554a62dcee7822b DIST calibre-0.9.28.tar.xz 28746916 SHA256 25fcc71a394f42ed701f215249f4b17b940c8fcf0a51f480c14f0fc3c7ff31f2 SHA512 eb237c9a96ddb53a567bb59bdd37f803c1d21b96517fea7c8f14fb02df107a17fca471375183c83602866750ace644c95816a04e3b29aa9d43c4470ef2128838 WHIRLPOOL 668a2106e8a7fa366161ec9a36d8d859842b2e31aee517f82b8bb6cf5820db21371f79fd8cd8d153c7673be1859e61909758cd020273343a1fa197b229b354dd +DIST calibre-0.9.29.tar.xz 28819456 SHA256 29a789108772665000e895d0798b758068a4143807213de68fdd39aa85059058 SHA512 30a551a5108332741c80454264fa00fc1f332ccb9cd3c75b1c48253f027d84e4407e9e223325b0a0c36fc78ab1cd26b5dc02f7bb4d5dce486796bf3921b0252c WHIRLPOOL 349a4df78d3ad072b18133f398e72445fa74544e945a9d0e0cf3f4960c694d9d3ebd89cf43569d1020e319f1b4286858ad720cd8aaa5e79b1c12b907665ad5f6 diff --git a/app-text/calibre/calibre-0.9.27.ebuild b/app-text/calibre/calibre-0.9.27.ebuild index 128b8c101372..ff9bbe262ce3 100644 --- a/app-text/calibre/calibre-0.9.27.ebuild +++ b/app-text/calibre/calibre-0.9.27.ebuild @@ -1,12 +1,10 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/calibre-0.9.27.ebuild,v 1.3 2013/04/23 19:51:32 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/calibre-0.9.27.ebuild,v 1.4 2013/05/05 02:13:32 zmedico Exp $ EAPI=5 -PYTHON_DEPEND=2:2.7 -PYTHON_USE_WITH="ssl sqlite" -inherit python eutils fdo-mime bash-completion-r1 multilib toolchain-funcs +inherit eutils fdo-mime bash-completion-r1 multilib toolchain-funcs DESCRIPTION="Ebook management application." HOMEPAGE="http://calibre-ebook.com/" @@ -23,6 +21,7 @@ IUSE="+udisks" COMMON_DEPEND=" >=app-text/podofo-0.8.2:= >=app-text/poppler-0.12.3-r3:=[qt4,xpdf-headers(+)] + >=dev-lang/python-2.7.1:2.7[sqlite,ssl] >=dev-libs/chmlib-0.40:= >=dev-libs/icu-4.4:= >=dev-python/beautifulsoup-3.0.5:python-2 @@ -55,11 +54,6 @@ DEPEND="${COMMON_DEPEND} S=${WORKDIR}/${PN} -pkg_setup() { - python_set_active_version 2.7 - python_pkg_setup -} - src_prepare() { # Fix outdated version constant. #sed -e "s#\\(^numeric_version =\\).*#\\1 (${PV//./, })#" \ @@ -133,9 +127,9 @@ src_install() { local libdir=$(get_libdir) [[ -n $libdir ]] || die "get_libdir returned an empty string" - dodir "$(python_get_sitedir)" # for init_calibre.py + dodir "/usr/$(get_libdir)/python2.7/site-packages" # for init_calibre.py PATH=${T}:${PATH} PYTHONPATH=${S}/src${PYTHONPATH:+:}${PYTHONPATH} \ - python setup.py install \ + "${EPREFIX}"/usr/bin/python2.7 setup.py install \ --root="${D}" \ --prefix="${EPREFIX}/usr" \ --libdir="${EPREFIX}/usr/${libdir}" \ @@ -173,7 +167,18 @@ src_install() { ln -sf "../../../fonts/liberation-fonts/${x}" "${x}" || die done - python_convert_shebangs -r $(python_get_version) "${ED}" + einfo "Converting python shebangs" + while read -r -d $'\0' ; do + local shebang=$(head -n1 "$REPLY") + if [[ ${shebang} == "#!"*python* ]] ; then + sed -i -e "1s:.*:#!${EPREFIX}/usr/bin/python2.7:" "$REPLY" || \ + die "sed failed" + fi + done < <(find "${ED}" -type f -print0) + + einfo "Compiling python modules" + "${EPREFIX}"/usr/bin/python2.7 -m compileall -q -f \ + -d "${EPREFIX}"/usr/lib/calibre "${ED}"usr/lib/calibre || die newinitd "${FILESDIR}"/calibre-server.init calibre-server newconfd "${FILESDIR}"/calibre-server.conf calibre-server @@ -182,9 +187,4 @@ src_install() { pkg_postinst() { fdo-mime_desktop_database_update fdo-mime_mime_database_update - python_mod_optimize /usr/$(get_libdir)/${PN} -} - -pkg_postrm() { - python_mod_cleanup /usr/$(get_libdir)/${PN} } diff --git a/app-text/calibre/calibre-0.9.29.ebuild b/app-text/calibre/calibre-0.9.29.ebuild new file mode 100644 index 000000000000..d0cf47f8583a --- /dev/null +++ b/app-text/calibre/calibre-0.9.29.ebuild @@ -0,0 +1,190 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/calibre-0.9.29.ebuild,v 1.1 2013/05/05 02:07:32 zmedico Exp $ + +EAPI=5 + +inherit eutils fdo-mime bash-completion-r1 multilib toolchain-funcs + +DESCRIPTION="Ebook management application." +HOMEPAGE="http://calibre-ebook.com/" +SRC_URI="http://sourceforge.net/projects/calibre/files/${PV}/${P}.tar.xz" + +LICENSE="GPL-2" + +KEYWORDS="~amd64 ~x86" + +SLOT="0" + +IUSE="+udisks" + +COMMON_DEPEND=" + >=app-text/podofo-0.8.2:= + >=app-text/poppler-0.12.3-r3:=[qt4,xpdf-headers(+)] + >=dev-lang/python-2.7.1:2.7[sqlite,ssl] + >=dev-libs/chmlib-0.40:= + >=dev-libs/icu-4.4:= + >=dev-python/beautifulsoup-3.0.5:python-2 + dev-python/netifaces + dev-python/python-dateutil + >=dev-python/dnspython-1.6.0 + >=dev-python/cssselect-0.7.1 + >=dev-python/cssutils-0.9.9 + >=dev-python/dbus-python-0.82.2 + >=dev-python/imaging-1.1.6 + >=dev-python/lxml-2.2.1 + >=dev-python/mechanize-0.1.11 + >=dev-python/python-dateutil-1.4.1 + >=dev-python/PyQt4-4.9.1[X,svg,webkit] + media-fonts/liberation-fonts + >=media-gfx/imagemagick-6.5.9[jpeg,png] + >=media-libs/freetype-2:= + >=media-libs/libwmf-0.2.8 + >=media-libs/libmtp-1.1.4:= + virtual/libusb:1= + dev-qt/qtdbus:4= + dev-qt/qtsvg:4= + >=x11-misc/xdg-utils-1.0.2-r2" + +RDEPEND="${COMMON_DEPEND} + udisks? ( || ( sys-fs/udisks:2 sys-fs/udisks:0 ) )" + +DEPEND="${COMMON_DEPEND} + >=dev-python/setuptools-0.6_rc5" + +S=${WORKDIR}/${PN} + +src_prepare() { + # Fix outdated version constant. + #sed -e "s#\\(^numeric_version =\\).*#\\1 (${PV//./, })#" \ + # -i src/calibre/constants.py || \ + # die "sed failed to patch constants.py" + + # Avoid sandbox violation in /usr/share/gnome/apps when linux.py + # calls xdg-* (bug #258938). + sed -e "s|'xdg-desktop-menu', 'install'|\\0, '--mode', 'user'|" \ + -e "s|check_call(\\['xdg-desktop-menu', 'forceupdate'\\])|#\\0|" \ + -e "s|\\(CurrentDir(tdir)\\), \\\\\$|\\1:|" \ + -e "s|PreserveMIMEDefaults():||" \ + -e "s|xdg-icon-resource install|\\0 --mode user|" \ + -e "s|cc(\\['xdg-desktop-menu', 'forceupdate'\\])|#\\0|" \ + -e "s|xdg-mime install|\\0 --mode user|" \ + -i src/calibre/linux.py || die "sed failed to patch linux.py" + + # Disable unnecessary privilege dropping for bug #287067. + sed -e "s:if os.geteuid() == 0:if False and os.geteuid() == 0:" \ + -i setup/install.py || die "sed failed to patch install.py" + + sed -e "/^ self\\.check_call(qmc + \\[.*\\.pro'\\])$/a\ +\\ \\ \\ \\ \\ \\ \\ \\ \\ \\ \\ \\ self.check_call(['sed', \ +'-e', 's|^CFLAGS .*|\\\\\\\\0 ${CFLAGS}|', \ +'-e', 's|^CXXFLAGS .*|\\\\\\\\0 ${CXXFLAGS}|', \ +'-e', 's|^LFLAGS .*|\\\\\\\\0 ${LDFLAGS}|', \ +'-i', 'Makefile'])" \ + -i setup/extensions.py || die "sed failed to patch extensions.py" + + # no_updates: do not annoy user with "new version is availible all the time + # disable_plugins: walking sec-hole, wait for upstream to use GHNS interface + epatch \ + "${FILESDIR}/${PN}-no_updates_dialog.patch" \ + "${FILESDIR}/${PN}-disable_plugins.patch" +} + +src_install() { + # Bypass kbuildsycoca and update-mime-database in order to + # avoid sandbox violations if xdg-mime tries to call them. + cat - > "${T}/kbuildsycoca" <<-EOF + #!${BASH} + exit 0 + EOF + + cp "${T}"/{kbuildsycoca,update-mime-database} + chmod +x "${T}"/{kbuildsycoca,update-mime-database} + + # Unset DISPLAY in order to prevent xdg-mime from triggering a sandbox + # violation with kbuildsycoca as in bug #287067, comment #13. + export -n DISPLAY + + # Bug #352625 - Some LANGUAGE values can trigger the following ValueError: + # File "/usr/lib/python2.6/locale.py", line 486, in getdefaultlocale + # return _parse_localename(localename) + # File "/usr/lib/python2.6/locale.py", line 418, in _parse_localename + # raise ValueError, 'unknown locale: %s' % localename + #ValueError: unknown locale: 46 + export -n LANGUAGE + + # Bug #295672 - Avoid sandbox violation in ~/.config by forcing + # variables to point to our fake temporary $HOME. + export HOME="${T}/fake_homedir" + export XDG_CONFIG_HOME="${HOME}/.config" + export XDG_DATA_HOME="${HOME}/.local/share" + export CALIBRE_CONFIG_DIRECTORY="${XDG_CONFIG_HOME}/calibre" + mkdir -p "${XDG_CONFIG_HOME}" "${CALIBRE_CONFIG_DIRECTORY}" + + tc-export CC CXX + # Bug #334243 - respect LDFLAGS when building calibre-mount-helper + export OVERRIDE_CFLAGS="$CFLAGS" OVERRIDE_LDFLAGS="$LDFLAGS" + local libdir=$(get_libdir) + [[ -n $libdir ]] || die "get_libdir returned an empty string" + + dodir "/usr/$(get_libdir)/python2.7/site-packages" # for init_calibre.py + PATH=${T}:${PATH} PYTHONPATH=${S}/src${PYTHONPATH:+:}${PYTHONPATH} \ + "${EPREFIX}"/usr/bin/python2.7 setup.py install \ + --root="${D}" \ + --prefix="${EPREFIX}/usr" \ + --libdir="${EPREFIX}/usr/${libdir}" \ + --staging-root="${ED}usr" \ + --staging-libdir="${ED}usr/${libdir}" || die + + grep -rlZ "${ED}" "${ED}" | xargs -0 sed -e "s:${D}:/:g" -i || + die "failed to fix harcoded \$D in paths" + + # Remove dummy calibre-mount-helper which is unused since calibre-0.8.25 + # due to bug #389515 (instead, calibre now calls udisks via dbus). + rm "${ED}usr/bin/calibre-mount-helper" || die + + # The menu entries end up here due to '--mode user' being added to + # xdg-* options in src_prepare. + dodir /usr/share/mime/packages + chmod -fR a+rX,u+w,g-w,o-w "${HOME}"/.local + mv "${HOME}"/.local/share/mime/packages/* "${ED}"usr/share/mime/packages/ || + die "failed to register mime types" + dodir /usr/share/icons + mv "${HOME}"/.local/share/icons/* "${ED}"usr/share/icons/ || + die "failed to install icon files" + + domenu "${HOME}"/.local/share/applications/*.desktop || + die "failed to install .desktop menu files" + + dobashcomp "${ED}"usr/etc/bash_completion.d/calibre + rm -r "${ED}"usr/etc/bash_completion.d + find "${ED}"usr/etc -type d -empty -delete + + cd "${ED}"/usr/share/calibre/fonts/liberation || die + local x + for x in * ; do + [[ -f ${EROOT}usr/share/fonts/liberation-fonts/${x} ]] || continue + ln -sf "../../../fonts/liberation-fonts/${x}" "${x}" || die + done + + einfo "Converting python shebangs" + while read -r -d $'\0' ; do + local shebang=$(head -n1 "$REPLY") + if [[ ${shebang} == "#!"*python* ]] ; then + sed -i -e "1s:.*:#!${EPREFIX}/usr/bin/python2.7:" "$REPLY" || \ + die "sed failed" + fi + done < <(find "${ED}" -type f -print0) + + einfo "Compiling python modules" + "${EPREFIX}"/usr/bin/python2.7 -m compileall -q -f \ + -d "${EPREFIX}"/usr/lib/calibre "${ED}"usr/lib/calibre || die + + newinitd "${FILESDIR}"/calibre-server.init calibre-server + newconfd "${FILESDIR}"/calibre-server.conf calibre-server +} + +pkg_postinst() { + fdo-mime_desktop_database_update + fdo-mime_mime_database_update +} diff --git a/dev-libs/angelscript/angelscript-2.26.2-r1.ebuild b/dev-libs/angelscript/angelscript-2.26.2-r1.ebuild new file mode 100644 index 000000000000..900b2ed00b8d --- /dev/null +++ b/dev-libs/angelscript/angelscript-2.26.2-r1.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/angelscript/angelscript-2.26.2-r1.ebuild,v 1.1 2013/05/04 22:05:59 hasufell Exp $ + +EAPI=5 + +inherit toolchain-funcs multilib-minimal + +DESCRIPTION="A flexible, cross-platform scripting library" +HOMEPAGE="http://www.angelcode.com/angelscript/" +SRC_URI="http://www.angelcode.com/angelscript/sdk/files/angelscript_${PV}.zip" + +LICENSE="ZLIB" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc static-libs" + +DEPEND="app-arch/unzip" + +S=${WORKDIR}/sdk +S2=${WORKDIR}/sdk_static + +pkg_setup() { + tc-export CXX AR RANLIB +} + +src_prepare() { + if use static-libs ; then + cp -pR "${WORKDIR}"/sdk "${S2}"/ || die + fi + multilib_copy_sources +} + +multilib_src_compile() { + einfo "Shared build" + emake -C ${PN}/projects/gnuc SHARED=1 VERSION=${PV} + + if [[ ${ABI} == ${DEFAULT_ABI} ]] ; then + if use static-libs ; then + einfo "Static build" + emake -C "${S2}"/${PN}/projects/gnuc + fi + fi +} + +multilib_src_install() { + doheader ${PN}/include/angelscript.h + dolib.so ${PN}/lib/libangelscript-${PV}.so + dosym libangelscript-${PV}.so /usr/$(get_libdir)/libangelscript.so + + if [[ ${ABI} == ${DEFAULT_ABI} ]] ; then + if use static-libs ; then + dolib.a "${S2}"/${PN}/lib/libangelscript.a + fi + fi +} + +multilib_src_install_all() { + use doc && dohtml -r "${WORKDIR}"/sdk/docs/* +} diff --git a/dev-libs/libmcrypt/libmcrypt-2.5.8-r3.ebuild b/dev-libs/libmcrypt/libmcrypt-2.5.8-r3.ebuild new file mode 100644 index 000000000000..2421b0f41009 --- /dev/null +++ b/dev-libs/libmcrypt/libmcrypt-2.5.8-r3.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmcrypt/libmcrypt-2.5.8-r3.ebuild,v 1.1 2013/05/04 21:15:16 alonbl Exp $ + +EAPI="5" + +inherit autotools eutils + +DESCRIPTION="libmcrypt is a library that provides uniform interface to access several encryption algorithms." +HOMEPAGE="http://mcrypt.sourceforge.net/" +SRC_URI="mirror://sourceforge/mcrypt/${P}.tar.gz" + +LICENSE="GPL-2 LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="" + +DEPEND="" +RDEPEND="" + +src_prepare() { + epatch "${FILESDIR}"/${P}-rotate-mask.patch + mv configure.in configure.ac + sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' configure.ac || die + eautoreconf # need new libtool for interix (elibtoolize would suffice for freebsd) +} + +src_install() { + default + dodoc AUTHORS NEWS README THANKS TODO ChangeLog + dodoc doc/README.* doc/example.c +} diff --git a/dev-libs/libzeitgeist/libzeitgeist-0.3.18.ebuild b/dev-libs/libzeitgeist/libzeitgeist-0.3.18.ebuild index 249da7badae3..626e4836d36a 100644 --- a/dev-libs/libzeitgeist/libzeitgeist-0.3.18.ebuild +++ b/dev-libs/libzeitgeist/libzeitgeist-0.3.18.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libzeitgeist/libzeitgeist-0.3.18.ebuild,v 1.8 2013/02/02 22:26:53 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libzeitgeist/libzeitgeist-0.3.18.ebuild,v 1.9 2013/05/04 21:59:19 jlec Exp $ EAPI=4 @@ -34,5 +34,11 @@ src_prepare() { sed \ -e '/TEST_PROGS += test-log/d' \ -i tests/Makefile.am || die + + sed \ + -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' \ + -e 's:AM_PROG_CC_STDC:AC_PROG_CC:g' \ + -i configure.ac || die + autotools-utils_src_prepare } diff --git a/dev-libs/libzeitgeist/metadata.xml b/dev-libs/libzeitgeist/metadata.xml index c288c678f301..c1ec3a826722 100644 --- a/dev-libs/libzeitgeist/metadata.xml +++ b/dev-libs/libzeitgeist/metadata.xml @@ -1,12 +1,12 @@ - desktop-misc - - jlec@gentoo.org - - - eva@gentoo.org - Gilles Dartiguelongue - + desktop-misc + + jlec@gentoo.org + + + eva@gentoo.org + Gilles Dartiguelongue + diff --git a/dev-python/egg-python/egg-python-2.25.3.ebuild b/dev-python/egg-python/egg-python-2.25.3.ebuild index 58bd13e67297..73f5065cddf8 100644 --- a/dev-python/egg-python/egg-python-2.25.3.ebuild +++ b/dev-python/egg-python/egg-python-2.25.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/egg-python/egg-python-2.25.3.ebuild,v 1.10 2013/02/02 22:28:32 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/egg-python/egg-python-2.25.3.ebuild,v 1.11 2013/05/04 22:09:22 jlec Exp $ EAPI="2" @@ -35,6 +35,7 @@ EXAMPLES="examples/egg/tray*" src_prepare() { epatch "${FILESDIR}/${P}-python-libs.patch" #344231 + sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' configure.ac || die eautoreconf gnome-python-common_src_prepare } diff --git a/dev-python/egg-python/metadata.xml b/dev-python/egg-python/metadata.xml index 9b1bc26a9df2..d9234ae60f5f 100644 --- a/dev-python/egg-python/metadata.xml +++ b/dev-python/egg-python/metadata.xml @@ -1,6 +1,6 @@ -gnome -python + gnome + python diff --git a/dev-python/elixir/elixir-0.7.1-r1.ebuild b/dev-python/elixir/elixir-0.7.1-r1.ebuild index 6e18ec9d706d..9498cbd5fe76 100644 --- a/dev-python/elixir/elixir-0.7.1-r1.ebuild +++ b/dev-python/elixir/elixir-0.7.1-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/elixir/elixir-0.7.1-r1.ebuild,v 1.1 2012/11/10 13:09:28 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/elixir/elixir-0.7.1-r1.ebuild,v 1.2 2013/05/04 21:20:52 floppym Exp $ EAPI="2" PYTHON_DEPEND="2" @@ -24,7 +24,6 @@ RDEPEND=">=dev-python/sqlalchemy-0.4.0" DEPEND="${RDEPEND} dev-python/setuptools doc? ( >=dev-python/docutils-0.4-r3 - >=dev-python/elementtree-1.2.6 >=dev-python/kid-0.9 >=dev-python/pygments-0.8.1 >=dev-python/pudge-0.1.3 diff --git a/dev-python/flask-restless/Manifest b/dev-python/flask-restless/Manifest new file mode 100644 index 000000000000..07ccdff2f2ca --- /dev/null +++ b/dev-python/flask-restless/Manifest @@ -0,0 +1 @@ +DIST flask-restless-0.10.0.tar.gz 495229 SHA256 ce4d2a018a15f31b24235dad5ae9be554094d818cf95c5654293f63b03baa9d5 SHA512 b6910a44b265a429ddaeca071376f1ab0f78cba7951ef6d5f2ace1a48403624229e0fb64e75c9ea7fa4173cbf0b143aa61801ff36e190cea986ea81781259a85 WHIRLPOOL 426e823fa5eef30b74a6f2692a0d5182ada47fd8892db915e852fded072b8fe333707c0eb470cc775be710f4b9f166bbd481c0188585ae5d32d270da1bda0408 diff --git a/dev-python/flask-restless/flask-restless-0.10.0.ebuild b/dev-python/flask-restless/flask-restless-0.10.0.ebuild new file mode 100644 index 000000000000..7b85a636a4a4 --- /dev/null +++ b/dev-python/flask-restless/flask-restless-0.10.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/flask-restless/flask-restless-0.10.0.ebuild,v 1.1 2013/05/04 22:51:10 rafaelmartins Exp $ + +EAPI="3" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="2.4 2.5 3.*" +DISTUTILS_SRC_TEST="setup.py" + +inherit distutils + +DESCRIPTION="Flask extension for easy ReSTful API generation" +HOMEPAGE="http://packages.python.org/Flask-Restless/" +SRC_URI="https://github.com/jfinkels/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="|| ( AGPL-3 BSD )" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +# Can't build docs for now, missing deps +#IUSE="doc" +IUSE="" + +RDEPEND=">=dev-python/flask-0.7 + dev-python/flask-sqlalchemy + dev-python/sqlalchemy + dev-python/python-dateutil" +DEPEND="${RDEPEND} + dev-python/setuptools + test? ( dev-python/unittest2 )" + +PYTHON_MODNAME="flask_restless" diff --git a/dev-python/flask-restless/metadata.xml b/dev-python/flask-restless/metadata.xml new file mode 100644 index 000000000000..b79a85f89156 --- /dev/null +++ b/dev-python/flask-restless/metadata.xml @@ -0,0 +1,6 @@ + + + + python + + diff --git a/dev-python/gdata/gdata-2.0.14.ebuild b/dev-python/gdata/gdata-2.0.14.ebuild index d51197b59c84..e8d3ae1985bc 100644 --- a/dev-python/gdata/gdata-2.0.14.ebuild +++ b/dev-python/gdata/gdata-2.0.14.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/gdata/gdata-2.0.14.ebuild,v 1.10 2012/08/02 22:35:14 neurogeek Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/gdata/gdata-2.0.14.ebuild,v 1.11 2013/05/04 21:22:22 floppym Exp $ EAPI="4" PYTHON_DEPEND="2" -PYTHON_USE_WITH="ssl(+)" +PYTHON_USE_WITH="ssl(+) xml" SUPPORT_PYTHON_ABIS="1" RESTRICT_PYTHON_ABIS="3.*" @@ -21,7 +21,7 @@ SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd" IUSE="examples" -DEPEND="|| ( dev-lang/python:2.7[xml] dev-lang/python:2.6[xml] dev-lang/python:2.5[xml] dev-python/elementtree )" +DEPEND="" RDEPEND="${DEPEND}" S="${WORKDIR}/${MY_P}" diff --git a/dev-python/lxml/files/lxml-test-elementtree.patch b/dev-python/lxml/files/lxml-test-elementtree.patch new file mode 100644 index 000000000000..d482ce7d6bee --- /dev/null +++ b/dev-python/lxml/files/lxml-test-elementtree.patch @@ -0,0 +1,43 @@ +From a7853944dacbe12097c1ef15836caeffbab8396c Mon Sep 17 00:00:00 2001 +From: Stefan Behnel +Date: Sat, 4 May 2013 14:00:06 +0200 +Subject: [PATCH] prefer stdlib ET over externally installed version as the + stdlib has taken the lead now + +--- + src/lxml/tests/common_imports.py | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +diff --git a/src/lxml/tests/common_imports.py b/src/lxml/tests/common_imports.py +index 645a7db..c528a3c 100644 +--- a/src/lxml/tests/common_imports.py ++++ b/src/lxml/tests/common_imports.py +@@ -19,10 +19,10 @@ def make_version_tuple(version_string): + IS_PYTHON3 = sys.version_info[0] >= 3 + + try: +- from elementtree import ElementTree # standard ET ++ from xml.etree import ElementTree # Python 2.5+ + except ImportError: + try: +- from xml.etree import ElementTree # Python 2.5+ ++ from elementtree import ElementTree # standard ET + except ImportError: + ElementTree = None + +@@ -32,10 +32,10 @@ def make_version_tuple(version_string): + ET_VERSION = (0,0,0) + + try: +- import cElementTree # standard ET ++ from xml.etree import cElementTree # Python 2.5+ + except ImportError: + try: +- from xml.etree import cElementTree # Python 2.5+ ++ import cElementTree # standard ET + except ImportError: + cElementTree = None + +-- +1.8.1.6 + diff --git a/dev-python/lxml/lxml-3.2.0.ebuild b/dev-python/lxml/lxml-3.2.0.ebuild index 2e1d5c379a1c..7dadf1072a00 100644 --- a/dev-python/lxml/lxml-3.2.0.ebuild +++ b/dev-python/lxml/lxml-3.2.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/lxml-3.2.0.ebuild,v 1.2 2013/05/04 16:05:16 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/lxml-3.2.0.ebuild,v 1.3 2013/05/04 20:40:24 floppym Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2,3_3} ) @@ -24,6 +24,8 @@ DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}]" # lxml tarball contains files pregenerated by Cython. +PATCHES=( "${FILESDIR}/lxml-test-elementtree.patch" ) + python_prepare_all() { # avoid replacing PYTHONPATH in tests. sed -i -e '/sys\.path/d' test.py || die diff --git a/dev-python/pypy/Manifest b/dev-python/pypy/Manifest index bc69c9f6e375..21e3fe0a4870 100644 --- a/dev-python/pypy/Manifest +++ b/dev-python/pypy/Manifest @@ -1,2 +1,3 @@ DIST pypy-1.9.tar.bz2 13466551 SHA256 9fd599acade49ef98017bbce4f179f19cf2680489ff15235d3bad5b20bde0d68 SHA512 1e02f1f1ac493be35272212f2be62db17a01a95c56ffbd8c00a043587e38131e779928fef1383c61575ecb48bf4dc407b62726d30d5b5728221a612fe67ec8c3 WHIRLPOOL 5b601f31f695623c2e5f6d48ae902e07c5cdccafe415ae89878e5cf71408b31fc44fb1c173a93e66d81188503651000de219533e69071495b87d80a8d217274f DIST pypy-2.0_beta1.tar.bz2 13654084 SHA256 492fcdd8f37990e7364eb5f2c4b5c2b0f61b44b2603207b200fc2d4e44b413ce SHA512 50b8a26433fc04bb35c9a0669f7da94621eddb3e303c6eaf624b663e7b2f3656a80b238227204938fc22ef3c15fbabf1d04e09d3ddc0377be008f7f40d4c0721 WHIRLPOOL 07e2e430a1d01401a0bfbddb775652acaf09ab05d8d038a644454c9802a463cdb83287620ac8bb3af6f235d21228d1e462e3a041e5770773cb50786740ae259f +DIST pypy-2.0_beta2.tar.bz2 14608838 SHA256 f8cdb5b1402dbedd329650cd54925a9c72f2e3140742f289bfa919bf1e190853 SHA512 bcbfa1c0f4f710d3846a1700569cb2aa5e00b5b2cc0a16ae7f2ba6a922e35b22e790984fa9c161939f24b3917fed779c1b29ade5163231cffcbb1763a69053c4 WHIRLPOOL 5615194d0cb8056a2c63d339ad6a53d4ea4c4657e47d3095fbd4b99d003f29d37ad88838c9ea071bf3fb375a1f51b762a77242ff2c91c5abb92d69f47473ea34 diff --git a/dev-python/pypy/files/2.0-no-static-hack-r1.patch b/dev-python/pypy/files/2.0-no-static-hack-r1.patch new file mode 100644 index 000000000000..98a9633f4d4f --- /dev/null +++ b/dev-python/pypy/files/2.0-no-static-hack-r1.patch @@ -0,0 +1,39 @@ +Remove logic that links to libssl and libcrypto statically if +possible. Just always link dynamically: Gentoo is expected to have +sane dynamic libraries for us to use, and our users are not expected +to copy their pypy binary to a system with an incompatible +libssl/libcrypto and expect it to work. + +Based on patch contributed by XU Benda . + +--- a/rpython/rlib/ropenssl.py ++++ b/rpython/rlib/ropenssl.py +@@ -20,27 +20,8 @@ + # so that openssl/ssl.h can repair this nonsense. + 'wincrypt.h'] + else: +- libraries = ['z'] ++ libraries = ['z','ssl','crypto'] + includes = [] +- if (sys.platform.startswith('linux') and +- os.path.exists('/usr/lib/libssl.a') and +- os.path.exists('/usr/lib/libcrypto.a')): +- # use static linking to avoid the infinite +- # amount of troubles due to symbol versions +- # and 0.9.8/1.0.0 +- link_files += ['/usr/lib/libssl.a', '/usr/lib/libcrypto.a'] +- testonly_libraries += ['ssl', 'crypto'] +- elif (sys.platform.startswith('linux') and +- os.path.exists('/usr/local/ssl/lib/libssl.a') and +- os.path.exists('/usr/local/ssl/lib/libcrypto.a')): +- # use static linking, 2nd version +- include_dirs += ['/usr/local/ssl/include'] +- link_files += ['/usr/local/ssl/lib/libssl.a', +- '/usr/local/ssl/lib/libcrypto.a', +- '-ldl'] +- testonly_libraries += ['ssl', 'crypto'] +- else: +- libraries += ['ssl', 'crypto'] + + includes += [ + 'openssl/ssl.h', diff --git a/dev-python/pypy/pypy-2.0_beta2.ebuild b/dev-python/pypy/pypy-2.0_beta2.ebuild new file mode 100644 index 000000000000..3b8d6948a2ed --- /dev/null +++ b/dev-python/pypy/pypy-2.0_beta2.ebuild @@ -0,0 +1,120 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pypy/pypy-2.0_beta2.ebuild,v 1.1 2013/05/05 04:37:13 floppym Exp $ + +EAPI=5 + +# XXX: test other implementations +PYTHON_COMPAT=( python2_7 pypy{1_8,1_9,2_0} ) +inherit check-reqs eutils multilib multiprocessing python-any-r1 toolchain-funcs vcs-snapshot versionator + +DESCRIPTION="A fast, compliant alternative implementation of the Python language" +HOMEPAGE="http://pypy.org/" +SRC_URI="https://bitbucket.org/pypy/pypy/get/release-${PV/_/-}.tar.bz2 -> ${P}.tar.bz2" + +LICENSE="MIT" +SLOT=$(get_version_component_range 1-2 ${PV}) +KEYWORDS="~amd64 ~amd64-linux ~x86 ~x86-linux" +IUSE="bzip2 doc examples +jit ncurses sandbox shadowstack sqlite ssl +xml" + +RDEPEND=">=sys-libs/zlib-1.1.3 + virtual/libffi + virtual/libintl + dev-libs/expat + bzip2? ( app-arch/bzip2 ) + ncurses? ( sys-libs/ncurses ) + sqlite? ( dev-db/sqlite:3 ) + ssl? ( dev-libs/openssl )" +DEPEND="${RDEPEND} + ${PYTHON_DEPS}" +PDEPEND="app-admin/python-updater" + +pkg_pretend() { + CHECKREQS_MEMORY="2G" + use amd64 && CHECKREQS_MEMORY="4G" + check-reqs_pkg_pretend +} + +pkg_setup() { + pkg_pretend + python-any-r1_pkg_setup +} + +src_prepare() { + epatch "${FILESDIR}/1.9-scripts-location.patch" + epatch "${FILESDIR}/1.9-distutils.unixccompiler.UnixCCompiler.runtime_library_dir_option.patch" + epatch "${FILESDIR}/2.0-distutils-fix_handling_of_executables_and_flags.patch" + + # The following is Gentoo-specific. + epatch "${FILESDIR}/2.0-no-static-hack-r1.patch" +} + +src_compile() { + tc-export CC + + local args=( + $(usex jit -Ojit -O2) + $(usex shadowstack --gcrootfinder=shadowstack '') + $(usex sandbox --sandbox '') + + --make-jobs=$(makeopts_jobs) + + pypy/goal/targetpypystandalone + ) + + # Avoid linking against libraries disabled by use flags + local opts=( + bzip2:bz2 + ncurses:_minimal_curses + ssl:_ssl + ) + + local opt + for opt in "${opts[@]}"; do + local flag=${opt%:*} + local mod=${opt#*:} + + args+=( + $(usex ${flag} --withmod --withoutmod)-${mod} + ) + done + + set -- "${PYTHON}" rpython/bin/rpython --batch "${args[@]}" + echo -e "\033[1m${@}\033[0m" + "${@}" || die "compile error" +} + +src_install() { + local INSDESTTREE=/usr/$(get_libdir)/pypy${SLOT} + doins -r include lib_pypy lib-python pypy-c + fperms a+x ${INSDESTTREE}/pypy-c + dosym ../$(get_libdir)/pypy${SLOT}/pypy-c /usr/bin/pypy-c${SLOT} + dodoc README.rst + + if ! use sqlite; then + rm -fr "${ED}${INSDESTTREE}"/lib-python/{2.7,modified-2.7}/sqlite3 + rm -f "${ED}${INSDESTTREE}"/lib_pypy/_sqlite3.py + fi + + python_export pypy-c${SLOT} EPYTHON PYTHON PYTHON_SITEDIR + + # if not using a cross-compiler, use the fresh binary + if ! tc-is-cross-compiler; then + local PYTHON=${ED}${INSDESTTREE}/pypy-c + fi + + # Generate Grammar and PatternGrammar pickles. + PYTHONPATH="${ED}${INSDESTTREE}/lib-python/2.7" \ + "${PYTHON}" -c "import lib2to3.pygram, lib2to3.patcomp; lib2to3.patcomp.PatternCompiler()" \ + || die "Generation of Grammar and PatternGrammar pickles failed" + + # compile the installed modules + python_optimize "${ED}${INSDESTTREE}" + + echo "EPYTHON='${EPYTHON}'" > epython.py + python_domodule epython.py +} + +src_test() { + "${PYTHON}" ./pypy/test_all.py --pypy=./pypy-c lib-python +} diff --git a/dev-python/sqlitecachec/sqlitecachec-1.1.4-r1.ebuild b/dev-python/sqlitecachec/sqlitecachec-1.1.4-r1.ebuild new file mode 100644 index 000000000000..95e593d92d5e --- /dev/null +++ b/dev-python/sqlitecachec/sqlitecachec-1.1.4-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/sqlitecachec/sqlitecachec-1.1.4-r1.ebuild,v 1.1 2013/05/04 20:18:21 floppym Exp $ + +EAPI="5" +PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy{1_9,2_0} ) +PYTHON_REQ_USE="sqlite" + +inherit distutils-r1 + +MY_P="yum-metadata-parser-${PV}" + +DESCRIPTION="sqlite cacher for python applications" +HOMEPAGE="http://yum.baseurl.org/" +SRC_URI="http://yum.baseurl.org/download/yum-metadata-parser/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="" + +# glib and libxml2 are used via an extension module written in C. +# No need to add PYTHON_USEDEP here. +RDEPEND="dev-db/sqlite:3 + dev-libs/glib:2 + dev-libs/libxml2" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +S="${WORKDIR}/${MY_P}" diff --git a/dev-python/turbogears/turbogears-1.0.8.ebuild b/dev-python/turbogears/turbogears-1.0.8.ebuild index 6f7e95a4d929..caf8ca0bd392 100644 --- a/dev-python/turbogears/turbogears-1.0.8.ebuild +++ b/dev-python/turbogears/turbogears-1.0.8.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/turbogears/turbogears-1.0.8.ebuild,v 1.4 2011/04/12 16:22:22 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/turbogears/turbogears-1.0.8.ebuild,v 1.5 2013/05/04 21:39:53 floppym Exp $ EAPI="3" PYTHON_DEPEND="2" @@ -33,8 +33,6 @@ RDEPEND=">=dev-python/turbojson-1.1.4 >=dev-python/configobj-4.3.2 || ( =dev-lang/python-2.4* ( =dev-lang/python-2.5* >=dev-python/cheetah-2.0_rc7-r1 ) ) - || ( =dev-lang/python-2.5* - ( =dev-lang/python-2.4* >=dev-python/celementtree-1.0.5 ) ) >=dev-python/sqlobject-0.7 test? ( >=dev-python/nose-0.9.1 >=dev-python/sqlalchemy-0.3.3 || ( =dev-lang/python-2.5* diff --git a/dev-ruby/kramdown/Manifest b/dev-ruby/kramdown/Manifest index 88738d0504c0..b08fe04cafe1 100644 --- a/dev-ruby/kramdown/Manifest +++ b/dev-ruby/kramdown/Manifest @@ -1,2 +1 @@ -DIST kramdown-0.14.1.gem 277504 SHA256 e79fe2df71f0a411407d55aa58ddeb8d04d88be9bbbd99629945de02c878373f SHA512 0cc55ae3f316bbfd3d6bbdca8939944b5087370c892fc47ad4234f094b5f979f03163323d8953f28d9129fa28504cd5d387fd814c6073d206b27bee0b5caf113 WHIRLPOOL ebb195c85f849c6b4c133f5c38910564b0dd9cb002996af3567ba682f798f5b3fc8a6e5f2341c5661a8b81631103b87aecdc9b82ee8239f05d0ca60983dbaf27 DIST kramdown-0.14.2.gem 278528 SHA256 4351344ebf3b986990341987320d076486d5b1b63032bdf5bfb5eb10d1a43eb7 SHA512 07f3f3b300497196463f660d3d5ec3548c91df79592320e8469a475ced70df21da921d0b00daa1410a9ee9d3ebc0bc4aa12338eabc76d1303264385d6e6f86d2 WHIRLPOOL 473669c9267ed914407214fee7c4c16cf058be4bed5cbef498728578f57fe8550fe2cf7b57889e644a269442560fb2b7b9771f16e3b0c254b20b3760139344cd diff --git a/dev-ruby/kramdown/kramdown-0.14.1.ebuild b/dev-ruby/kramdown/kramdown-0.14.1.ebuild deleted file mode 100644 index 057dd6cca8f5..000000000000 --- a/dev-ruby/kramdown/kramdown-0.14.1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/kramdown/kramdown-0.14.1.ebuild,v 1.1 2012/12/01 10:32:34 graaff Exp $ - -EAPI=5 -USE_RUBY="ruby18 ruby19 ree18 jruby" - -RUBY_FAKEGEM_EXTRADOC="README.md AUTHORS ChangeLog CONTRIBUTERS" - -RUBY_FAKEGEM_EXTRAINSTALL="data" - -inherit ruby-fakegem - -DESCRIPTION="yet-another-markdown-parser but fast, pure Ruby, using a strict syntax definition." -HOMEPAGE="http://kramdown.rubyforge.org/" - -LICENSE="GPL-3" - -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="latex" - -LATEX_DEPS="latex? ( dev-texlive/texlive-latex dev-texlive/texlive-latexextra )" -RDEPEND+=" ${LATEX_DEPS}" -DEPEND+=" test? ( ${LATEX_DEPS} app-text/htmltidy )" - -ruby_add_bdepend "doc? ( dev-ruby/rdoc ) - test? ( >=dev-ruby/coderay-1.0.0 )" - -all_ruby_prepare() { - if ! use latex; then - # Remove latex tests. They will fail gracefully when latex isn't - # present at all, but not when components are missing (most - # notable ucs.sty). - sed -i -e '/latex -v/,/^ end/ s:^:#:' test/test_files.rb || die - fi -} - -all_ruby_install() { - all_fakegem_install - - doman man/man1/kramdown.1 -} diff --git a/dev-ruby/libxml/Manifest b/dev-ruby/libxml/Manifest index 5c5726f6b434..dc41bcfabe65 100644 --- a/dev-ruby/libxml/Manifest +++ b/dev-ruby/libxml/Manifest @@ -1,2 +1 @@ -DIST libxml-ruby-2.2.1.gem 244224 SHA256 ec2bac12e6a6b2d871e799892771f03bdb4e13577b70a3d2f5734396c69790ea SHA512 720a0c74c3a61c3d5bd778042cd931c7db20a480d33f7bc1d451dd7e8cb2ea988125dbd74b0b181f8ce7291c1bd4606c8da9a2856b238947bb51e9732a4b2327 WHIRLPOOL ca3ebd22dc55c613b4cf3cded2c1239d5b55ecb131b279b3badedd6b8ed95985899a36a494b279691942184ced4a0a4c9862cca80e2284a2bc46e455ea30aadb DIST libxml-ruby-2.4.0.gem 260608 SHA256 5dabf6d9859ede50a6ffb0230f7031741037c1d6ac38988e816a90b208c2467f SHA512 870d72b978cf6b09ee932dff424ca8735d106b6b237a0b0ab963f8b14829adb48e4303ceaa6e382b28bb7b510648467d33a53cb40aa56f3e350227856ba18b99 WHIRLPOOL e73dd0e8a30824516de02a279068dd4a26f5c991bf2558aaaf2deb64089b9bf0d7b08758fe52276335898440f21c755091877b2ce9654f147d566dd5b96ffba6 diff --git a/dev-ruby/libxml/libxml-2.2.1.ebuild b/dev-ruby/libxml/libxml-2.2.1.ebuild deleted file mode 100644 index 27d3277d51c6..000000000000 --- a/dev-ruby/libxml/libxml-2.2.1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/libxml/libxml-2.2.1.ebuild,v 1.11 2013/01/15 07:16:14 zerochaos Exp $ - -EAPI=2 - -USE_RUBY="ruby18 ree18" - -RUBY_FAKEGEM_NAME="libxml-ruby" - -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_EXTRADOC="README.rdoc HISTORY" - -RUBY_FAKEGEM_TASK_TEST="none" - -inherit ruby-fakegem - -DESCRIPTION="Ruby libxml with a user friendly API, akin to REXML, but feature complete and significantly faster." -HOMEPAGE="http://libxml.rubyforge.org" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~arm hppa ppc ppc64 x86" -IUSE="" - -RDEPEND="${RDEPEND} dev-libs/libxml2" -DEPEND="${DEPEND} dev-libs/libxml2" - -ruby_add_bdepend "doc? ( dev-ruby/rdoc )" - -all_ruby_prepare() { - # Remove grancher tasks only needed for publishing the website - sed -i -e '/grancher/d' -e '/Grancher/,$d' Rakefile || die - - # We don't have the hanna template available. - sed -i -e 's/hanna/rake/' Rakefile || die - - # Remove rake-compiler bits since we don't use it - sed -i -e '/extensiontask/d' -e '/ExtensionTask/,/end/d' -e '/GemPackageTask/,/end/d' Rakefile || die -} - -each_ruby_configure() { - ${RUBY} -C ext/libxml extconf.rb || die -} - -each_ruby_compile() { - emake -C ext/libxml - cp ext/libxml/libxml_ruby.so lib/ || die -} - -each_ruby_test() { - # The test suite needs to load its files in alphabetical order but - # this is not guaranteed. See bug 370501. - ${RUBY} -Ilib -r test/test_helper.rb test/test_suite.rb || die -} diff --git a/dev-ruby/listen/Manifest b/dev-ruby/listen/Manifest index a1bc4c86b704..7f54ccdb2ed8 100644 --- a/dev-ruby/listen/Manifest +++ b/dev-ruby/listen/Manifest @@ -1,2 +1 @@ -DIST listen-0.7.2-git.tgz 34804 SHA256 67ca0a2b4dd47b156265804d8b2230188430afcf59309dbcfec8458f52d14eb1 SHA512 1d12c78fafc9d0f9d60c89784338a4fb9e1600989aefdcfe1aadf330b321fc7deae62e8df746585591027a08c84cd505b55ca218ea256ae387911bec286b97ea WHIRLPOOL 027777ffdeecddf92c8ba143e4b736c5516f162379555912ee863b4f8a4686ac9d1843f18e107f210db04e2ef9989204650e6265d3db411f99718d081a9daddf DIST listen-0.7.3-git.tgz 34831 SHA256 e6e1b8b45251e5bdcb397a9774dea57918ab091b6358ae42654a99bda280686b SHA512 9d4297f24b63449f3293f750d903170793b31c2a7d0a87c16bc4c3b741b993e0cc06ec5408d7a2c706505641fa3cd3f070cc09e7a7a5d358d8f18f26b41fb408 WHIRLPOOL da8c416f3e2757f146c6bdc83f7c527b8c566ac7716b52408788abd3407c2ac823d5f1cb94dd3df92ce75e5510705aa7bb65f9833974c3be20c18a470d9e5659 diff --git a/dev-ruby/listen/listen-0.7.2-r1.ebuild b/dev-ruby/listen/listen-0.7.2-r1.ebuild deleted file mode 100644 index 096ac9826541..000000000000 --- a/dev-ruby/listen/listen-0.7.2-r1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/listen/listen-0.7.2-r1.ebuild,v 1.1 2013/01/21 12:09:32 graaff Exp $ - -EAPI=5 - -USE_RUBY="ruby18 ruby19 ree18 jruby" - -RUBY_FAKEGEM_RECIPE_TEST="rspec" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" - -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Listens to file modifications and notifies you about the changes." -HOMEPAGE="https://github.com/guard/listen" -SRC_URI="https://github.com/guard/listen/archive/v${PV}.tar.gz -> ${P}-git.tgz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x64-macos" -IUSE="" - -ruby_add_rdepend ">=dev-ruby/rb-inotify-0.8.8" - -all_ruby_prepare() { - # Adhere to semantic versioning. - sed -i -e '/rb-inotify/ s/0.8.8/0.8/' lib/listen/adapters/linux.rb || die -} diff --git a/dev-util/osc/osc-0.139.1.ebuild b/dev-util/osc/osc-0.139.1.ebuild index 81786f57a332..960711f07b8f 100644 --- a/dev-util/osc/osc-0.139.1.ebuild +++ b/dev-util/osc/osc-0.139.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/osc/osc-0.139.1.ebuild,v 1.2 2013/03/18 10:29:48 miska Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/osc/osc-0.139.1.ebuild,v 1.3 2013/05/04 21:28:50 floppym Exp $ EAPI=5 @@ -33,7 +33,6 @@ KEYWORDS="amd64 x86" DEPEND=" dev-python/urlgrabber dev-python/pyxml - dev-python/elementtree app-arch/rpm[python] dev-python/m2crypto " diff --git a/dev-util/osc/osc-9999.ebuild b/dev-util/osc/osc-9999.ebuild index 611fa276c638..d72f462aacce 100644 --- a/dev-util/osc/osc-9999.ebuild +++ b/dev-util/osc/osc-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/osc/osc-9999.ebuild,v 1.8 2013/03/18 10:26:27 miska Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/osc/osc-9999.ebuild,v 1.9 2013/05/04 21:28:50 floppym Exp $ EAPI=5 @@ -33,7 +33,6 @@ KEYWORDS="~amd64 ~x86" DEPEND=" dev-python/urlgrabber dev-python/pyxml - dev-python/elementtree app-arch/rpm[python] dev-python/m2crypto " diff --git a/dev-util/wiggle/metadata.xml b/dev-util/wiggle/metadata.xml index 7d6a78bb042a..557ca512951a 100644 --- a/dev-util/wiggle/metadata.xml +++ b/dev-util/wiggle/metadata.xml @@ -1,8 +1,8 @@ - - robbat2@gentoo.org - Robin H. Johnson - + + robbat2@gentoo.org + Robin H. Johnson + diff --git a/dev-util/wiggle/wiggle-0.9.ebuild b/dev-util/wiggle/wiggle-0.9.ebuild index 2a26595c82c0..ff1e7b7bb504 100644 --- a/dev-util/wiggle/wiggle-0.9.ebuild +++ b/dev-util/wiggle/wiggle-0.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/wiggle/wiggle-0.9.ebuild,v 1.5 2013/03/02 22:38:53 ottxor Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/wiggle/wiggle-0.9.ebuild,v 1.6 2013/05/04 22:51:50 jlec Exp $ EAPI=4 @@ -43,6 +43,10 @@ src_prepare() { # Use prefixed time binary sed -i "s:/usr/bin/time:${EPREFIX}/usr/bin/time:" dotest || die "sed failed on dotest" + sed \ + -e "s:-lncurses:$($(tc-getPKG_CONFIG) --libs ncurses):g" \ + -i Makefile || die + ht_fix_file p append-cppflags -I. diff --git a/eclass/multilib-minimal.eclass b/eclass/multilib-minimal.eclass index 0a5aab9b197f..c2407d38a815 100644 --- a/eclass/multilib-minimal.eclass +++ b/eclass/multilib-minimal.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-minimal.eclass,v 1.2 2013/04/07 16:56:14 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-minimal.eclass,v 1.3 2013/05/04 20:06:42 hasufell Exp $ # @ECLASS: multilib-minimal.eclass # @MAINTAINER: @@ -84,7 +84,13 @@ multilib-minimal_src_install() { if declare -f multilib_src_install >/dev/null ; then multilib_src_install else - default_src_install + # default_src_install will not work here as it will + # break handling of DOCS wrt #468092 + # so we split up the emake and doc-install part + # this is synced with __eapi4_src_install + if [[ -f Makefile || -f GNUmakefile || -f makefile ]] ; then + emake DESTDIR="${D}" install + fi fi multilib_prepare_wrappers multilib_check_headers @@ -96,4 +102,17 @@ multilib-minimal_src_install() { if declare -f multilib_src_install_all >/dev/null ; then multilib_src_install_all fi + + # this is synced with __eapi4_src_install + if ! declare -p DOCS &>/dev/null ; then + local d + for d in README* ChangeLog AUTHORS NEWS TODO CHANGES \ + THANKS BUGS FAQ CREDITS CHANGELOG ; do + [[ -s "${d}" ]] && dodoc "${d}" + done + elif [[ $(declare -p DOCS) == "declare -a "* ]] ; then + dodoc "${DOCS[@]}" + else + dodoc ${DOCS} + fi } diff --git a/media-libs/libv4l/libv4l-0.9.5-r1.ebuild b/media-libs/libv4l/libv4l-0.9.5-r1.ebuild index 8ea989135206..8929e6604481 100644 --- a/media-libs/libv4l/libv4l-0.9.5-r1.ebuild +++ b/media-libs/libv4l/libv4l-0.9.5-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/libv4l-0.9.5-r1.ebuild,v 1.2 2013/05/04 16:55:25 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/libv4l-0.9.5-r1.ebuild,v 1.3 2013/05/05 01:16:50 ssuominen Exp $ EAPI=5 inherit eutils linux-info udev multilib-minimal @@ -53,7 +53,7 @@ multilib_src_compile() { } multilib_src_install() { - emake -C lib DESTDIR="${D}" install + emake -j1 -C lib DESTDIR="${D}" install } multilib_src_install_all() { diff --git a/media-libs/libv4l/libv4l-0.9.5.ebuild b/media-libs/libv4l/libv4l-0.9.5.ebuild index 9e063f1dc458..1f06969f1d07 100644 --- a/media-libs/libv4l/libv4l-0.9.5.ebuild +++ b/media-libs/libv4l/libv4l-0.9.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/libv4l-0.9.5.ebuild,v 1.2 2013/05/04 16:55:25 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/libv4l-0.9.5.ebuild,v 1.3 2013/05/05 01:16:50 ssuominen Exp $ EAPI=5 inherit eutils linux-info udev @@ -47,7 +47,7 @@ src_compile() { } src_install() { - emake -C lib DESTDIR="${D}" install + emake -j1 -C lib DESTDIR="${D}" install dodoc ChangeLog README.lib* TODO prune_libtool_files --all } diff --git a/media-libs/libxmi/libxmi-1.2.ebuild b/media-libs/libxmi/libxmi-1.2.ebuild index c8cd0b98825a..c6f7ea154f47 100644 --- a/media-libs/libxmi/libxmi-1.2.ebuild +++ b/media-libs/libxmi/libxmi-1.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libxmi/libxmi-1.2.ebuild,v 1.1 2013/05/04 13:12:42 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libxmi/libxmi-1.2.ebuild,v 1.2 2013/05/04 21:04:58 jlec Exp $ EAPI=5 @@ -17,6 +17,9 @@ LICENSE="GPL-2" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="static-libs" +DEPEND="!<=media-libs/plotutils-2.6" +RDEPEND="${DEPEND}" + src_prepare() { sed \ -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' \ diff --git a/media-libs/libxmi/libxmi-1.3.ebuild b/media-libs/libxmi/libxmi-1.3.ebuild index 2de9b3190fab..d53a35361e17 100644 --- a/media-libs/libxmi/libxmi-1.3.ebuild +++ b/media-libs/libxmi/libxmi-1.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libxmi/libxmi-1.3.ebuild,v 1.1 2013/05/04 13:44:31 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libxmi/libxmi-1.3.ebuild,v 1.2 2013/05/04 21:04:58 jlec Exp $ EAPI=5 @@ -13,7 +13,11 @@ HOMEPAGE="http://www.gnu.org/software/libxmi/" SRC_URI="http://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz" #mirror://gnu/${PN}/${P}.tar.gz" # Version unbundled from plotutils + SLOT="0" LICENSE="GPL-2" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="static-libs" + +DEPEND="!<=media-libs/plotutils-2.6" +RDEPEND="${DEPEND}" diff --git a/media-libs/plotutils/plotutils-2.6.ebuild b/media-libs/plotutils/plotutils-2.6.ebuild index d7731620d239..e7a6423e7c81 100644 --- a/media-libs/plotutils/plotutils-2.6.ebuild +++ b/media-libs/plotutils/plotutils-2.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/plotutils/plotutils-2.6.ebuild,v 1.11 2013/05/03 17:01:16 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/plotutils/plotutils-2.6.ebuild,v 1.12 2013/05/04 21:06:53 jlec Exp $ EAPI=3 inherit libtool eutils autotools @@ -14,7 +14,9 @@ SLOT="0" KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 s390 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris" IUSE="+png static-libs X" -DEPEND="png? ( media-libs/libpng +DEPEND=" + !media-libs/libxmi + png? ( media-libs/libpng sys-libs/zlib ) X? ( x11-libs/libXaw x11-proto/xextproto )" diff --git a/media-plugins/mythplugins/mythplugins-0.25.3_p20130422.ebuild b/media-plugins/mythplugins/mythplugins-0.25.3_p20130422.ebuild new file mode 100644 index 000000000000..dde854a59151 --- /dev/null +++ b/media-plugins/mythplugins/mythplugins-0.25.3_p20130422.ebuild @@ -0,0 +1,129 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythplugins/mythplugins-0.25.3_p20130422.ebuild,v 1.1 2013/05/05 01:43:54 cardoe Exp $ + +EAPI=5 + +PYTHON_DEPEND="2:2.6" +BACKPORTS="dc6d68a2" +MY_P=${P%_p*} + +inherit eutils python + +DESCRIPTION="Official MythTV plugins" +HOMEPAGE="http://www.mythtv.org" +SRC_URI="ftp://ftp.osuosl.org/pub/mythtv/${MY_P}.tar.bz2 + ${BACKPORTS:+http://dev.gentoo.org/~cardoe/distfiles/${MY_P}-${BACKPORTS}.tar.xz}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +MYTHPLUGINS="mytharchive mythbrowser mythgallery mythgame \ +mythmusic mythnetvision mythnews mythweather" + +IUSE="${MYTHPLUGINS} cdda cdr exif fftw raw" + +DEPEND="!media-plugins/mytharchive + !media-plugins/mythbrowser + !media-plugins/mythgallery + !media-plugins/mythgame + !media-plugins/mythmovies + !media-plugins/mythmusic + !media-plugins/mythnetvision + !media-plugins/mythnews + !media-plugins/mythweather + =media-tv/mythtv-${PV}*[python] + mytharchive? ( + app-cdr/dvd+rw-tools + dev-python/imaging + media-video/dvdauthor + media-video/mjpegtools[png] + media-video/transcode + virtual/cdrtools + ) + mythgallery? ( + media-libs/tiff + virtual/opengl + exif? ( >media-libs/libexif-0.6.9 ) + raw? ( media-gfx/dcraw ) + ) + mythmusic? ( + >=media-libs/flac-1.1.2 + >=media-libs/libvorbis-1.0 + >=media-libs/taglib-1.6 + media-sound/lame + virtual/opengl + cdda? ( + dev-libs/libcdio + cdr? ( virtual/cdrtools ) + ) + fftw? ( sci-libs/fftw ) + ) + mythnetvision? ( + =dev-lang/python-2*[xml] + dev-python/lxml + dev-python/mysql-python + dev-python/oauth + dev-python/pycurl + ) + mythweather? ( + dev-perl/DateManip + dev-perl/DateTime-Format-ISO8601 + dev-perl/ImageSize + dev-perl/JSON + dev-perl/SOAP-Lite + dev-perl/XML-Simple + dev-perl/XML-Parser + dev-perl/XML-SAX + dev-perl/XML-XPath + )" +RDEPEND="${DEPEND}" + +REQUIRED_USE=" + cdda? ( mythmusic ) + cdr? ( mythmusic cdda ) + exif? ( mythgallery ) + fftw? ( mythmusic ) + mythnews? ( mythbrowser ) + raw? ( mythgallery )" + +S="${WORKDIR}/${MY_P}" + +pkg_setup() { + python_set_active_version 2 + python_pkg_setup +} + +src_prepare() { + [[ -n ${BACKPORTS} ]] && \ + EPATCH_FORCE=yes EPATCH_SUFFIX="patch" EPATCH_SOURCE="${S}/patches" \ + epatch + + epatch_user +} + +src_configure() { + ./configure \ + --prefix=/usr \ + --python=python2 \ + --enable-opengl \ + --disable-mythzoneminder \ + $(use_enable mytharchive) \ + $(use_enable mythbrowser) \ + $(use_enable mythgallery) \ + $(use_enable mythgame) \ + $(use_enable mythmusic) \ + $(use_enable mythnetvision) \ + $(use_enable mythnews) \ + $(use_enable mythweather) \ + $(use_enable cdda cdio) \ + $(use_enable exif) \ + $(use_enable exif new-exif) \ + $(use_enable raw dcraw) \ + || die "configure failed" +} + +src_install() { + emake INSTALL_ROOT="${D}" install || die "make install failed" +} diff --git a/media-tv/freevo/Manifest b/media-tv/freevo/Manifest index dee1322db954..ea4c6afae113 100644 --- a/media-tv/freevo/Manifest +++ b/media-tv/freevo/Manifest @@ -1,2 +1,2 @@ -DIST freevo-1.7.6.1.tar.gz 20856412 SHA256 1a0392a858ef428b3a511107322921eb9f45ad0ed02f7f05543486aafba0221e +DIST freevo-1.7.6.1.tar.gz 20856412 SHA256 1a0392a858ef428b3a511107322921eb9f45ad0ed02f7f05543486aafba0221e SHA512 f8562990ac4137042bfd9657bffb3b5f38bc02c3809a528cb798de67fbfa0c6fe2ba87b3cc0a6a2f65fbc11bc456ebba4dd27b4975202859835858893414f9b8 WHIRLPOOL 44019711a03a8736ff05518f1bbd3f0173facbe3ebf2f104e4f1b3820ccdca6e8be6785bc3d6b18569e334b2512fcaf00f64225b4dfa04d2b32b6837afc2e0df DIST freevo-1.9.0.tar.gz 27182867 SHA256 e3c97e1404bc5a171350d0c0edf8decaa6d4eb3eaa9e42112a903d375aaf8722 diff --git a/media-tv/freevo/freevo-1.7.6.1.ebuild b/media-tv/freevo/freevo-1.7.6.1.ebuild index a410803e9284..53af02c7d2fe 100644 --- a/media-tv/freevo/freevo-1.7.6.1.ebuild +++ b/media-tv/freevo/freevo-1.7.6.1.ebuild @@ -1,9 +1,10 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-tv/freevo/freevo-1.7.6.1.ebuild,v 1.8 2013/03/22 23:08:21 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-tv/freevo/freevo-1.7.6.1.ebuild,v 1.10 2013/05/04 21:34:56 floppym Exp $ EAPI="3" PYTHON_DEPEND="2" +PYTHON_USE_WITH="xml" inherit distutils @@ -27,7 +28,6 @@ RDEPEND=">=dev-python/pygame-1.5.6 >=media-libs/libsdl-1.2.5[directfb?,fbcon?] media-libs/sdl-image[jpeg,png] >=sys-apps/sed-4 - >=dev-python/elementtree-1.2.6 >=dev-python/beautifulsoup-3.0 >=dev-python/kaa-base-0.2.0 >=dev-python/kaa-metadata-0.7.1 diff --git a/media-tv/mythtv/Manifest b/media-tv/mythtv/Manifest index 03e066717117..5a2d4a3d062c 100644 --- a/media-tv/mythtv/Manifest +++ b/media-tv/mythtv/Manifest @@ -1,3 +1,4 @@ +DIST mythtv-0.25.3-cfa6d18d.tar.xz 30376 SHA256 d1ddfd1be4654f24d70d3a73a2f8c3b6871fddc7095b0f89feaa1051a5668cc9 SHA512 35d3d792ca39f7b0acfbcc65919cd3979b059023be4b22cc0347bc014d2e7d862e4a755f1df8e1d6140234bd9d8e1352bb68e4b9e15c153301b40f40ce0835dd WHIRLPOOL 3ce274b839736f821831f4cd2d0070b619c189582873a6a2073758da71eb50682053a7d5d9929fb631f8990e22a8297d1046484856f03a0dd9ff14ee2eb78e00 DIST mythtv-0.25.3-dc6d68a2.tar.xz 28388 SHA256 1ae8ce66ffe2945da5512e1f9539103b56131d2bc43fd816b39694bb1156ba90 SHA512 3ce738f74f32834c5512a2ab1bd1a60617f8ac9dbb5d8b4b379071e15e10b17992651ad451930cbb4c06ca37421baa216bbbf255b63158e25acf46a2314f271a WHIRLPOOL 0a7bab591fe9dab35a782a026cc9ea2635ad9420ae44ad72ebf243e7c64b8b410dadef986766d9e8a26eda72156ef9e77827ca113f90cc7e016e52707e35ddd3 DIST mythtv-0.25.3-ff8c4960.tar.xz 14792 SHA256 d2a8a66e1fbd3507866c976be125b9fb3252d2be2d7fd0db485b56877e745d74 SHA512 3dc5608dd8ad224358b37b283b0ab49ec93023cbae4234f22f431f8d844bc46e6ade298f1c0bfd04e6862cbb1dbfb335f3c5f0fd72bcdd5c7e7ac0b5f72b05b9 WHIRLPOOL d317137cdf05638764e4d2fd7a3c8c72a2e4493ca6efb0fd29757639af87ec919499e25affec0e81fac721063bd05159193e243693fb13998310621f398d126b DIST mythtv-0.25.3.tar.bz2 31834461 SHA256 17740e95599436f818abaac394338c0d344df025d5451326cdc7b7d6e7d9dc41 SHA512 40902dd43053b08112050611a26ed204c78a1f40562d0f00cf0591792676f52a9cb804d434764b337453e82a6cbe3f5efd39efc87a80b43053c4d98f35177392 WHIRLPOOL d96823625f2dc5eec2dc0b5e7dd152702a7e1180599cd5d57038b267ee8e217578e8b2fe462dbc69f52e87f2885af74ebb638d5e1835380228d09b8c94e621d4 diff --git a/media-tv/mythtv/mythtv-0.25.3_p20130422.ebuild b/media-tv/mythtv/mythtv-0.25.3_p20130422.ebuild new file mode 100644 index 000000000000..3557c7c98d35 --- /dev/null +++ b/media-tv/mythtv/mythtv-0.25.3_p20130422.ebuild @@ -0,0 +1,342 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/mythtv-0.25.3_p20130422.ebuild,v 1.1 2013/05/05 01:34:49 cardoe Exp $ + +EAPI=5 + +PYTHON_DEPEND="python? 2:2.6" +BACKPORTS="cfa6d18d" +MY_P=${P%_p*} + +inherit flag-o-matic multilib eutils python user + +MYTHTV_VERSION="v${MY_P}" +MYTHTV_BRANCH="fixes/0.25" + +DESCRIPTION="Homebrew PVR project" +HOMEPAGE="http://www.mythtv.org" +SRC_URI="ftp://ftp.osuosl.org/pub/mythtv/${MY_P}.tar.bz2 + ${BACKPORTS:+http://dev.gentoo.org/~cardoe/distfiles/${MY_P}-${BACKPORTS}.tar.xz}" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86 ~x86-linux" + +IUSE_INPUT_DEVICES="input_devices_joystick" +IUSE="alsa altivec libass autostart bluray cec crystalhd debug dvb dvd \ +egl fftw +hls ieee1394 jack lcd lirc perl pulseaudio python raop +theora \ +vaapi vdpau +vorbis +xml xmltv +xvid ${IUSE_INPUT_DEVICES}" + +REQUIRED_USE=" + bluray? ( xml ) + theora? ( vorbis )" + +COMMON=" + >=media-libs/freetype-2.0 + sys-libs/zlib + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXinerama + x11-libs/libXv + x11-libs/libXrandr + x11-libs/libXxf86vm + >=dev-qt/qtcore-4.7.2:4 + >=dev-qt/qtdbus-4.7.2:4 + >=dev-qt/qtgui-4.7.2:4 + >=dev-qt/qtscript-4.7.2:4 + >=dev-qt/qtsql-4.7.2:4[mysql] + >=dev-qt/qtopengl-4.7.2:4[egl?] + >=dev-qt/qtwebkit-4.7.2:4 + x11-misc/wmctrl + virtual/mysql + virtual/opengl + alsa? ( >=media-libs/alsa-lib-1.0.24 ) + bluray? ( + dev-libs/libcdio + media-libs/libbluray + ) + cec? ( dev-libs/libcec ) + dvb? ( + media-libs/libdvb + virtual/linuxtv-dvb-headers + ) + dvd? ( dev-libs/libcdio ) + egl? ( media-libs/mesa[egl] ) + fftw? ( sci-libs/fftw:3.0 ) + hls? ( + media-libs/faac + media-libs/libvpx + >=media-libs/x264-0.0.20110426 + >=media-sound/lame-3.93.1 + ) + ieee1394? ( + >=sys-libs/libraw1394-1.2.0 + >=sys-libs/libavc1394-0.5.3 + >=media-libs/libiec61883-1.0.0 + ) + jack? ( media-sound/jack-audio-connection-kit ) + lcd? ( app-misc/lcdproc ) + libass? ( >=media-libs/libass-0.9.11 ) + lirc? ( app-misc/lirc ) + perl? ( + dev-perl/DBD-mysql + dev-perl/Net-UPnP + dev-perl/LWP-Protocol-https + dev-perl/HTTP-Message + dev-perl/IO-Socket-INET6 + >=dev-perl/libwww-perl-5 + ) + pulseaudio? ( media-sound/pulseaudio ) + python? ( + dev-python/mysql-python + dev-python/lxml + dev-python/urlgrabber + ) + raop? ( + dev-libs/openssl + net-dns/avahi[mdnsresponder-compat] + ) + theora? ( media-libs/libtheora ) + vaapi? ( x11-libs/libva ) + vdpau? ( x11-libs/libvdpau ) + vorbis? ( >=media-libs/libvorbis-1.0 ) + xml? ( >=dev-libs/libxml2-2.6.0 ) + xvid? ( >=media-libs/xvid-1.1.0 ) + !media-tv/mythtv-bindings + !x11-themes/mythtv-themes + " + +RDEPEND="${COMMON} + media-fonts/corefonts + media-fonts/dejavu + media-fonts/liberation-fonts + x11-apps/xinit + autostart? ( + net-dialup/mingetty + x11-wm/evilwm + x11-apps/xset + ) + dvd? ( media-libs/libdvdcss ) + xmltv? ( >=media-tv/xmltv-0.5.43 ) + " + +DEPEND="${COMMON} + dev-lang/yasm + x11-proto/xineramaproto + x11-proto/xf86vidmodeproto + " + +S="${WORKDIR}/${MY_P}" + +MYTHTV_GROUPS="video,audio,tty,uucp" + +pkg_setup() { + python_set_active_version 2 + python_pkg_setup + enewuser mythtv -1 /bin/bash /home/mythtv ${MYTHTV_GROUPS} + usermod -a -G ${MYTHTV_GROUPS} mythtv +} + +src_prepare() { + [[ -n ${BACKPORTS} ]] && \ + EPATCH_FORCE=yes EPATCH_SUFFIX="patch" EPATCH_SOURCE="${S}/patches" \ + epatch + + # Perl bits need to go into vender_perl and not site_perl + sed -e "s:pure_install:pure_install INSTALLDIRS=vendor:" \ + -i "${S}"/bindings/perl/Makefile + + # Fix up the version info since we are using the fixes/${PV} branch + echo "SOURCE_VERSION=\"${MYTHTV_VERSION}\"" > "${S}"/VERSION + echo "BRANCH=\"${MYTHTV_BRANCH}\"" >> "${S}"/VERSION + + epatch_user +} + +src_configure() { + local myconf= + + # Setup paths + myconf="${myconf} --prefix=${EPREFIX}/usr" + myconf="${myconf} --libdir=${EPREFIX}/usr/$(get_libdir)" + myconf="${myconf} --libdir-name=$(get_libdir)" + myconf="${myconf} --mandir=${EPREFIX}/usr/share/man" + + # Audio + myconf="${myconf} $(use_enable alsa audio-alsa)" + myconf="${myconf} $(use_enable jack audio-jack)" + use pulseaudio || myconf="${myconf} --disable-audio-pulseoutput" + + use altivec || myconf="${myconf} --disable-altivec" + myconf="${myconf} $(use_enable dvb)" + myconf="${myconf} $(use_enable ieee1394 firewire)" + myconf="${myconf} $(use_enable lirc)" + myconf="${myconf} $(use_enable xvid libxvid)" + myconf="${myconf} --dvb-path=/usr/include" + myconf="${myconf} --enable-xrandr" + myconf="${myconf} --enable-xv" + myconf="${myconf} --enable-x11" + myconf="${myconf} --enable-nonfree" + use cec || myconf="${myconf} --disable-libcec" + use raop || myconf="${myconf} --disable-libdns-sd" + myconf="${myconf} $(use_enable theora libtheora)" + myconf="${myconf} $(use_enable vorbis libvorbis)" + + if use hls; then + myconf="${myconf} --enable-libmp3lame" + myconf="${myconf} --enable-libx264" + myconf="${myconf} --enable-libvpx" + myconf="${myconf} --enable-libfaac" + fi + + if use perl && use python; then + myconf="${myconf} --with-bindings=perl,python" + elif use perl; then + myconf="${myconf} --without-bindings=python" + myconf="${myconf} --with-bindings=perl" + elif use python; then + myconf="${myconf} --without-bindings=perl" + myconf="${myconf} --with-bindings=python" + else + myconf="${myconf} --without-bindings=perl,python" + fi + + use python && myconf="${myconf} --python=$(PYTHON)" + + if use debug; then + myconf="${myconf} --compile-type=debug" + else + myconf="${myconf} --compile-type=profile" + #myconf="${myconf} --enable-debug" does nothing per sphery + #myconf="${myconf} --disable-stripping" does nothing per sphery + fi + + # Video + use vdpau && myconf="${myconf} --enable-vdpau" + use vaapi && myconf="${myconf} --enable-vaapi" + use crystalhd && myconf="${myconf} --enable-crystalhd" + + # Input + use input_devices_joystick || myconf="${myconf} --disable-joystick-menu" + + # Clean up DSO load times and other compiler bits + myconf="${myconf} --enable-symbol-visibility" + myconf="${myconf} --enable-pic" + + # CPU settings + for i in $(get-flag march) $(get-flag mcpu) $(get-flag mtune) ; do + [ "${i}" = "native" ] && i="host" + myconf="${myconf} --cpu=${i}" + break + done + + if tc-is-cross-compiler ; then + myconf="${myconf} --enable-cross-compile --arch=$(tc-arch-kernel)" + myconf="${myconf} --cross-prefix=${CHOST}-" + fi + + # Build boosters + has distcc ${FEATURES} || myconf="${myconf} --disable-distcc" + has ccache ${FEATURES} || myconf="${myconf} --disable-ccache" + + chmod +x ./external/FFmpeg/version.sh + + einfo "Running ./configure ${myconf}" + ./configure \ + --cc="$(tc-getCC)" \ + --cxx="$(tc-getCXX)" \ + --ar="$(tc-getAR)" \ + --extra-cflags="${CFLAGS}" \ + --extra-cxxflags="${CXXFLAGS}" \ + --extra-ldflags="${LDFLAGS}" \ + ${myconf} || die "configure died" +} + +src_install() { + emake INSTALL_ROOT="${D}" install || die "install failed" + dodoc AUTHORS UPGRADING README + + insinto /usr/share/mythtv/database + doins database/* + + newinitd "${FILESDIR}"/mythbackend.init mythbackend + newconfd "${FILESDIR}"/mythbackend.conf mythbackend + + dodoc keys.txt + + keepdir /etc/mythtv + chown -R mythtv "${ED}"/etc/mythtv + keepdir /var/log/mythtv + chown -R mythtv "${ED}"/var/log/mythtv + dodir /var/log/mythtv/old + + insinto /etc/logrotate.d + newins "${FILESDIR}"/mythtv.logrotate.d-r3 mythtv + + insinto /usr/share/mythtv/contrib + doins -r contrib/* + + # Install our mythfrontend wrapper which is similar to Mythbuntu's + mv "${ED}/usr/bin/mythfrontend" "${ED}/usr/bin/mythfrontend.real" + newbin "${FILESDIR}"/mythfrontend.wrapper mythfrontend + newconfd "${FILESDIR}"/mythfrontend.conf mythfrontend + + if use autostart; then + dodir /etc/env.d/ + echo 'CONFIG_PROTECT="/home/mythtv/"' > "${ED}"/etc/env.d/95mythtv + + insinto /home/mythtv + newins "${FILESDIR}"/bash_profile .bash_profile + newins "${FILESDIR}"/xinitrc-r1 .xinitrc + fi + + # Make Python files executable + find "${ED}/usr/share/mythtv" -type f -name '*.py' | while read file; do + if [[ ! "${file##*/}" = "__init__.py" ]]; then + chmod a+x "${file}" + fi + done + + # Ensure that Python scripts are executed by Python 2 + python_convert_shebangs -q -r 2 "${ED}/usr/share/mythtv" + + # Make shell & perl scripts executable + find "${ED}" -type f -name '*.sh' -o -type f -name '*.pl' | \ + while read file; do + chmod a+x "${file}" + done +} + +pkg_preinst() { + export CONFIG_PROTECT="${CONFIG_PROTECT} ${EROOT}/home/mythtv/" +} + +pkg_postinst() { + use python && python_mod_optimize MythTV + + elog "To have this machine operate as recording host for MythTV, " + elog "mythbackend must be running. Run the following:" + elog "rc-update add mythbackend default" + elog + elog "Your recordings folder must be owned 'mythtv'. e.g." + elog "chown -R mythtv /var/lib/mythtv" + + elog "Want mythfrontend to start automatically?" + elog "Set USE=autostart. Details can be found at:" + elog "http://dev.gentoo.org/~cardoe/mythtv/autostart.html" +} + +pkg_postrm() { + use python && python_mod_cleanup MythTV +} + +pkg_info() { + if [[ -f "${EROOT}"/usr/bin/mythfrontend ]]; then + "${EROOT}"/usr/bin/mythfrontend --version + fi +} + +pkg_config() { + echo "Creating mythtv MySQL user and mythconverg database if it does not" + echo "already exist. You will be prompted for your MySQL root password." + "${EROOT}"/usr/bin/mysql -u root -p < "${EROOT}"/usr/share/mythtv/database/mc.sql +} diff --git a/media-video/vlc/vlc-2.0.5.ebuild b/media-video/vlc/vlc-2.0.5.ebuild index 710158f5b6c6..d81f4d0f92e3 100644 --- a/media-video/vlc/vlc-2.0.5.ebuild +++ b/media-video/vlc/vlc-2.0.5.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-2.0.5.ebuild,v 1.4 2013/03/02 22:44:15 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-2.0.5.ebuild,v 1.5 2013/05/04 20:02:37 vincent Exp $ -EAPI="4" +EAPI="5" SCM="" if [ "${PV%9999}" != "${PV}" ] ; then diff --git a/media-video/vlc/vlc-2.0.6.ebuild b/media-video/vlc/vlc-2.0.6.ebuild index 9c995c20e695..d4ec1b72a398 100644 --- a/media-video/vlc/vlc-2.0.6.ebuild +++ b/media-video/vlc/vlc-2.0.6.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-2.0.6.ebuild,v 1.2 2013/04/24 07:43:06 lu_zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-2.0.6.ebuild,v 1.3 2013/05/04 20:02:36 vincent Exp $ -EAPI="4" +EAPI="5" SCM="" if [ "${PV%9999}" != "${PV}" ] ; then @@ -36,7 +36,6 @@ SRC_URI="${SRC_URI} mirror://gentoo/${PN}-patches-${PATCHLEVEL}.tar.bz2 " - LICENSE="LGPL-2.1 GPL-2" SLOT="0" diff --git a/media-video/vlc/vlc-2.0.9999.ebuild b/media-video/vlc/vlc-2.0.9999.ebuild index 47aacfaabc86..1cabfafba458 100644 --- a/media-video/vlc/vlc-2.0.9999.ebuild +++ b/media-video/vlc/vlc-2.0.9999.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-2.0.9999.ebuild,v 1.20 2013/04/12 21:58:25 lu_zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-2.0.9999.ebuild,v 1.21 2013/05/04 20:02:37 vincent Exp $ -EAPI="4" +EAPI="5" SCM="" if [ "${PV%9999}" != "${PV}" ] ; then diff --git a/media-video/vlc/vlc-9999.ebuild b/media-video/vlc/vlc-9999.ebuild index 92e76faddcad..f337fdeb5230 100644 --- a/media-video/vlc/vlc-9999.ebuild +++ b/media-video/vlc/vlc-9999.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-9999.ebuild,v 1.185 2013/04/27 15:05:06 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-9999.ebuild,v 1.186 2013/05/04 20:02:37 vincent Exp $ -EAPI="4" +EAPI="5" SCM="" if [ "${PV%9999}" != "${PV}" ] ; then @@ -55,7 +55,7 @@ IUSE="a52 aac aalib alsa altivec atmo +audioqueue avahi +avcodec +postproc projectm pulseaudio +qt4 rtsp run-as-root samba schroedinger sdl sdl-image shine shout sid skins speex sse svg +swscale taglib theora truetype twolame udev upnp vaapi v4l vcdx vlm vorbis waveout - wma-fixed +X x264 +xcb xml xv zvbi" + win32codecs wma-fixed +X x264 +xcb xml xv zvbi" RDEPEND=" >=sys-libs/zlib-1.2.5.1-r2[minizip] diff --git a/metadata/dtd/timestamp.chk b/metadata/dtd/timestamp.chk index 8e59126d24df..b8e5572bce4b 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Sat, 04 May 2013 19:36:54 +0000 +Sun, 05 May 2013 07:36:54 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index 8e59126d24df..078b19d626b4 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Sat, 04 May 2013 19:36:54 +0000 +Sun, 05 May 2013 07:36:55 +0000 diff --git a/metadata/md5-cache/app-admin/salt-0.13.1 b/metadata/md5-cache/app-admin/salt-0.13.1 deleted file mode 100644 index 9c41a5cb031a..000000000000 --- a/metadata/md5-cache/app-admin/salt-0.13.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=test? ( dev-python/virtualenv >=dev-python/pyzmq-2.1.9 dev-python/msgpack dev-python/pyyaml dev-python/m2crypto dev-python/pycrypto dev-python/pycryptopp dev-python/jinja ldap? ( dev-python/python-ldap ) openssl? ( dev-python/pyopenssl ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo ) mysql? ( dev-python/mysql-python ) redis? ( dev-python/redis-py ) ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] -DESCRIPTION=Salt is a remote execution and configuration manager. -EAPI=5 -HOMEPAGE=http://saltstack.org/ -IUSE=ldap libvirt mongodb mysql openssl redis test python_targets_python2_6 python_targets_python2_7 -KEYWORDS=~x86 ~amd64 -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pyzmq-2.1.9 dev-python/msgpack dev-python/pyyaml dev-python/m2crypto dev-python/pycrypto dev-python/pycryptopp dev-python/jinja ldap? ( dev-python/python-ldap ) openssl? ( dev-python/pyopenssl ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo ) mysql? ( dev-python/mysql-python ) redis? ( dev-python/redis-py ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] -SLOT=0 -SRC_URI=mirror://pypi/s/salt/salt-0.13.1.tar.gz -_eclasses_=distutils-r1 10e59ecabebf0c37ad5cd8827434b108 eutils 384ae111f3649d456ed1754e3e1c4f6e multibuild 32fd04fe3ee97494341710886fd70dfe multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 345dcecf1ef156d1d86a98f16d3c385c toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=ca0f851d873afee9d51d9090ef124ec9 diff --git a/metadata/md5-cache/app-admin/salt-0.14.0 b/metadata/md5-cache/app-admin/salt-0.14.0 deleted file mode 100644 index d1e517d50396..000000000000 --- a/metadata/md5-cache/app-admin/salt-0.14.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=test? ( dev-python/virtualenv >=dev-python/pyzmq-2.1.9 dev-python/msgpack dev-python/pyyaml dev-python/m2crypto dev-python/pycrypto dev-python/pycryptopp dev-python/jinja ldap? ( dev-python/python-ldap ) openssl? ( dev-python/pyopenssl ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo ) mysql? ( dev-python/mysql-python ) redis? ( dev-python/redis-py ) ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] -DESCRIPTION=Salt is a remote execution and configuration manager. -EAPI=5 -HOMEPAGE=http://saltstack.org/ -IUSE=ldap libvirt mongodb mysql openssl redis test python_targets_python2_6 python_targets_python2_7 -KEYWORDS=~x86 ~amd64 -LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pyzmq-2.1.9 dev-python/msgpack dev-python/pyyaml dev-python/m2crypto dev-python/pycrypto dev-python/pycryptopp dev-python/jinja ldap? ( dev-python/python-ldap ) openssl? ( dev-python/pyopenssl ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo ) mysql? ( dev-python/mysql-python ) redis? ( dev-python/redis-py ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] -SLOT=0 -SRC_URI=mirror://pypi/s/salt/salt-0.14.0.tar.gz -_eclasses_=distutils-r1 10e59ecabebf0c37ad5cd8827434b108 eutils 384ae111f3649d456ed1754e3e1c4f6e multibuild 32fd04fe3ee97494341710886fd70dfe multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 345dcecf1ef156d1d86a98f16d3c385c toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=8ab5b399db157a2154270d2010880040 diff --git a/metadata/md5-cache/app-admin/salt-0.15.0-r1 b/metadata/md5-cache/app-admin/salt-0.15.0-r1 new file mode 100644 index 000000000000..79cf2b6bd28e --- /dev/null +++ b/metadata/md5-cache/app-admin/salt-0.15.0-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=test? ( dev-python/virtualenv >=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] +DESCRIPTION=Salt is a remote execution and configuration manager. +EAPI=5 +HOMEPAGE=http://saltstack.org/ +IUSE=ldap libvirt mako mongodb mysql openssl redis test python_targets_python2_6 python_targets_python2_7 +KEYWORDS=~x86 ~amd64 +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] +SLOT=0 +SRC_URI=mirror://pypi/s/salt/salt-0.15.0.tar.gz +_eclasses_=distutils-r1 10e59ecabebf0c37ad5cd8827434b108 eutils 384ae111f3649d456ed1754e3e1c4f6e multibuild 32fd04fe3ee97494341710886fd70dfe multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 345dcecf1ef156d1d86a98f16d3c385c toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=b6e6ebf54518a23099a589741eaf445c diff --git a/metadata/md5-cache/app-admin/salt-9999 b/metadata/md5-cache/app-admin/salt-9999 index 8a8f45ce1a97..327ecd0919ed 100644 --- a/metadata/md5-cache/app-admin/salt-9999 +++ b/metadata/md5-cache/app-admin/salt-9999 @@ -1,11 +1,11 @@ DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=test? ( dev-python/virtualenv >=dev-python/pyzmq-2.1.9 dev-python/msgpack dev-python/pyyaml dev-python/m2crypto dev-python/pycrypto dev-python/pycryptopp dev-python/jinja ldap? ( dev-python/python-ldap ) openssl? ( dev-python/pyopenssl ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo ) mysql? ( dev-python/mysql-python ) redis? ( dev-python/redis-py ) ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-vcs/git +DEPEND=test? ( dev-python/virtualenv >=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-vcs/git DESCRIPTION=Salt is a remote execution and configuration manager. EAPI=5 HOMEPAGE=http://saltstack.org/ -IUSE=ldap libvirt mongodb mysql openssl redis test python_targets_python2_6 python_targets_python2_7 +IUSE=ldap libvirt mako mongodb mysql openssl redis test python_targets_python2_6 python_targets_python2_7 LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pyzmq-2.1.9 dev-python/msgpack dev-python/pyyaml dev-python/m2crypto dev-python/pycrypto dev-python/pycryptopp dev-python/jinja ldap? ( dev-python/python-ldap ) openssl? ( dev-python/pyopenssl ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo ) mysql? ( dev-python/mysql-python ) redis? ( dev-python/redis-py ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] +RDEPEND=>=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 _eclasses_=distutils-r1 10e59ecabebf0c37ad5cd8827434b108 eutils 384ae111f3649d456ed1754e3e1c4f6e git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 345dcecf1ef156d1d86a98f16d3c385c toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=ab885adcaf1b50edca676487fbcbd046 +_md5_=c818e295127b52ead07500a78c5c9d61 diff --git a/metadata/md5-cache/app-arch/unar-1.5 b/metadata/md5-cache/app-arch/unar-1.5 index 7bc2d4fdee54..007612c39426 100644 --- a/metadata/md5-cache/app-arch/unar-1.5 +++ b/metadata/md5-cache/app-arch/unar-1.5 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile install DEPEND=gnustep-base/gnustep-base >=gnustep-base/gnustep-make-2.6.0[native-exceptions] dev-libs/icu sys-devel/gcc[objc] -DESCRIPTION=Unpacker for various archiving formats, e.g. rar v3. +DESCRIPTION=unpacker for various archiving formats, e.g. rar v3 EAPI=4 HOMEPAGE=http://unarchiver.c3.cx/ KEYWORDS=~amd64 @@ -9,4 +9,4 @@ RDEPEND=gnustep-base/gnustep-base >=gnustep-base/gnustep-make-2.6.0[native-excep SLOT=0 SRC_URI=http://theunarchiver.googlecode.com/files/unar1.5_src.zip _eclasses_=multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=3edf4430dae9fde684fe7fc4f81c5d1d +_md5_=b43fd065f5ec8998666e04661ee1fe85 diff --git a/metadata/md5-cache/app-crypt/cardpeek-0.7.2 b/metadata/md5-cache/app-crypt/cardpeek-0.7.2 new file mode 100644 index 000000000000..8262493028df --- /dev/null +++ b/metadata/md5-cache/app-crypt/cardpeek-0.7.2 @@ -0,0 +1,12 @@ +DEFINED_PHASES=- +DEPEND=>=x11-libs/gtk+-2.12:2 sys-apps/pcsc-lite =dev-lang/lua-5.1* dev-libs/openssl virtual/pkgconfig +DESCRIPTION=Tool to read the contents of smartcards +EAPI=5 +HOMEPAGE=https://code.google.com/p/cardpeek/ +KEYWORDS=~amd64 +LICENSE=GPL-3 +RDEPEND=>=x11-libs/gtk+-2.12:2 sys-apps/pcsc-lite =dev-lang/lua-5.1* dev-libs/openssl +SLOT=0 +SRC_URI=https://cardpeek.googlecode.com/files/cardpeek-0.7.2.tar.gz +_eclasses_=eutils 384ae111f3649d456ed1754e3e1c4f6e multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=ece16e4297ff88b0bea4073b896cf4af diff --git a/metadata/md5-cache/app-crypt/opencdk-0.6.6-r1 b/metadata/md5-cache/app-crypt/opencdk-0.6.6-r1 new file mode 100644 index 000000000000..a583ae67a6e5 --- /dev/null +++ b/metadata/md5-cache/app-crypt/opencdk-0.6.6-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=install prepare +DEPEND=>=dev-libs/libgcrypt-1.2.0 >=dev-lang/perl-5.6 || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DESCRIPTION=Open Crypto Development Kit for basic OpenPGP message manipulation +EAPI=5 +HOMEPAGE=http://www.gnutls.org/ +IUSE=doc test +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris +LICENSE=GPL-2 +RDEPEND=>=dev-libs/libgcrypt-1.2.0 +SLOT=0 +SRC_URI=ftp://ftp.gnutls.org/pub/gnutls/opencdk/opencdk-0.6.6.tar.bz2 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 libtool 177b3e32837e245539b46f16c43afed8 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e +_md5_=9cc24b2d91c1aa53ff6f61ecb42ff30c diff --git a/metadata/md5-cache/app-emulation/ganeti-2.6.0 b/metadata/md5-cache/app-emulation/ganeti-2.6.0 index 3fae5f13d9a5..7449f02fdade 100644 --- a/metadata/md5-cache/app-emulation/ganeti-2.6.0 +++ b/metadata/md5-cache/app-emulation/ganeti-2.6.0 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install prepare setup -DEPEND=xen? ( >=app-emulation/xen-3.0 ) kvm? ( app-emulation/qemu ) lxc? ( app-emulation/lxc ) drbd? ( >=sys-cluster/drbd-8.3 ) rbd? ( sys-cluster/ceph ) ipv6? ( net-misc/ndisc6 ) htools? ( >=dev-lang/ghc-6.10 dev-haskell/json dev-haskell/curl dev-haskell/network dev-haskell/parallel ) haskell-daemons? ( dev-haskell/hslogger dev-haskell/crypto dev-haskell/text dev-haskell/hinotify ) dev-libs/openssl dev-python/elementtree dev-python/paramiko dev-python/pyopenssl virtual/pyparsing dev-python/pycurl dev-python/pyinotify dev-python/simplejson net-analyzer/arping net-analyzer/fping net-misc/bridge-utils net-misc/curl[ssl] net-misc/openssh net-misc/socat sys-apps/iproute2 sys-fs/lvm2 >=sys-apps/baselayout-2.0 >=dev-lang/python-2.6 +DEPEND=xen? ( >=app-emulation/xen-3.0 ) kvm? ( app-emulation/qemu ) lxc? ( app-emulation/lxc ) drbd? ( >=sys-cluster/drbd-8.3 ) rbd? ( sys-cluster/ceph ) ipv6? ( net-misc/ndisc6 ) htools? ( >=dev-lang/ghc-6.10 dev-haskell/json dev-haskell/curl dev-haskell/network dev-haskell/parallel ) haskell-daemons? ( dev-haskell/hslogger dev-haskell/crypto dev-haskell/text dev-haskell/hinotify ) dev-libs/openssl dev-python/paramiko dev-python/pyopenssl virtual/pyparsing dev-python/pycurl dev-python/pyinotify dev-python/simplejson net-analyzer/arping net-analyzer/fping net-misc/bridge-utils net-misc/curl[ssl] net-misc/openssh net-misc/socat sys-apps/iproute2 sys-fs/lvm2 >=sys-apps/baselayout-2.0 >=dev-lang/python-2.6 DESCRIPTION=Ganeti is a virtual server management software tool EAPI=4 HOMEPAGE=http://code.google.com/p/ganeti/ IUSE=kvm xen lxc drbd +filestorage sharedstorage htools syslog ipv6 haskell-daemons rbd KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND=xen? ( >=app-emulation/xen-3.0 ) kvm? ( app-emulation/qemu ) lxc? ( app-emulation/lxc ) drbd? ( >=sys-cluster/drbd-8.3 ) rbd? ( sys-cluster/ceph ) ipv6? ( net-misc/ndisc6 ) htools? ( >=dev-lang/ghc-6.10 dev-haskell/json dev-haskell/curl dev-haskell/network dev-haskell/parallel ) haskell-daemons? ( dev-haskell/hslogger dev-haskell/crypto dev-haskell/text dev-haskell/hinotify ) dev-libs/openssl dev-python/elementtree dev-python/paramiko dev-python/pyopenssl virtual/pyparsing dev-python/pycurl dev-python/pyinotify dev-python/simplejson net-analyzer/arping net-analyzer/fping net-misc/bridge-utils net-misc/curl[ssl] net-misc/openssh net-misc/socat sys-apps/iproute2 sys-fs/lvm2 >=sys-apps/baselayout-2.0 >=dev-lang/python-2.6 !app-emulation/ganeti-htools +RDEPEND=xen? ( >=app-emulation/xen-3.0 ) kvm? ( app-emulation/qemu ) lxc? ( app-emulation/lxc ) drbd? ( >=sys-cluster/drbd-8.3 ) rbd? ( sys-cluster/ceph ) ipv6? ( net-misc/ndisc6 ) htools? ( >=dev-lang/ghc-6.10 dev-haskell/json dev-haskell/curl dev-haskell/network dev-haskell/parallel ) haskell-daemons? ( dev-haskell/hslogger dev-haskell/crypto dev-haskell/text dev-haskell/hinotify ) dev-libs/openssl dev-python/paramiko dev-python/pyopenssl virtual/pyparsing dev-python/pycurl dev-python/pyinotify dev-python/simplejson net-analyzer/arping net-analyzer/fping net-misc/bridge-utils net-misc/curl[ssl] net-misc/openssh net-misc/socat sys-apps/iproute2 sys-fs/lvm2 >=sys-apps/baselayout-2.0 >=dev-lang/python-2.6 !app-emulation/ganeti-htools SLOT=0 SRC_URI=http://ganeti.googlecode.com/files/ganeti-2.6.0.tar.gz _eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 confutils 2ab69b52fa6ea0c0669a47fb94b354b4 eutils 384ae111f3649d456ed1754e3e1c4f6e multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=8e48267ca433234efcbe3a8ac82d9478 +_md5_=ccf539f0b71589f7fbf8fb0248d9d56a diff --git a/metadata/md5-cache/app-emulation/ganeti-2.6.1 b/metadata/md5-cache/app-emulation/ganeti-2.6.1 index 4b7143344576..50b9f4028f7d 100644 --- a/metadata/md5-cache/app-emulation/ganeti-2.6.1 +++ b/metadata/md5-cache/app-emulation/ganeti-2.6.1 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install prepare setup -DEPEND=xen? ( >=app-emulation/xen-3.0 ) kvm? ( app-emulation/qemu ) lxc? ( app-emulation/lxc ) drbd? ( >=sys-cluster/drbd-8.3 ) rbd? ( sys-cluster/ceph ) ipv6? ( net-misc/ndisc6 ) htools? ( >=dev-lang/ghc-6.10 dev-haskell/json dev-haskell/curl dev-haskell/network dev-haskell/parallel ) haskell-daemons? ( dev-haskell/hslogger dev-haskell/crypto dev-haskell/text dev-haskell/hinotify ) dev-libs/openssl dev-python/elementtree dev-python/paramiko dev-python/pyopenssl virtual/pyparsing dev-python/pycurl dev-python/pyinotify dev-python/simplejson net-analyzer/arping net-analyzer/fping net-misc/bridge-utils net-misc/curl[ssl] net-misc/openssh net-misc/socat sys-apps/iproute2 sys-fs/lvm2 >=sys-apps/baselayout-2.0 >=dev-lang/python-2.6 +DEPEND=xen? ( >=app-emulation/xen-3.0 ) kvm? ( app-emulation/qemu ) lxc? ( app-emulation/lxc ) drbd? ( >=sys-cluster/drbd-8.3 ) rbd? ( sys-cluster/ceph ) ipv6? ( net-misc/ndisc6 ) htools? ( >=dev-lang/ghc-6.10 dev-haskell/json dev-haskell/curl dev-haskell/network dev-haskell/parallel ) haskell-daemons? ( dev-haskell/hslogger dev-haskell/crypto dev-haskell/text dev-haskell/hinotify ) dev-libs/openssl dev-python/paramiko dev-python/pyopenssl virtual/pyparsing dev-python/pycurl dev-python/pyinotify dev-python/simplejson net-analyzer/arping net-analyzer/fping net-misc/bridge-utils net-misc/curl[ssl] net-misc/openssh net-misc/socat sys-apps/iproute2 sys-fs/lvm2 >=sys-apps/baselayout-2.0 >=dev-lang/python-2.6 DESCRIPTION=Ganeti is a virtual server management software tool EAPI=4 HOMEPAGE=http://code.google.com/p/ganeti/ IUSE=kvm xen lxc drbd +filestorage sharedstorage htools syslog ipv6 haskell-daemons rbd KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND=xen? ( >=app-emulation/xen-3.0 ) kvm? ( app-emulation/qemu ) lxc? ( app-emulation/lxc ) drbd? ( >=sys-cluster/drbd-8.3 ) rbd? ( sys-cluster/ceph ) ipv6? ( net-misc/ndisc6 ) htools? ( >=dev-lang/ghc-6.10 dev-haskell/json dev-haskell/curl dev-haskell/network dev-haskell/parallel ) haskell-daemons? ( dev-haskell/hslogger dev-haskell/crypto dev-haskell/text dev-haskell/hinotify ) dev-libs/openssl dev-python/elementtree dev-python/paramiko dev-python/pyopenssl virtual/pyparsing dev-python/pycurl dev-python/pyinotify dev-python/simplejson net-analyzer/arping net-analyzer/fping net-misc/bridge-utils net-misc/curl[ssl] net-misc/openssh net-misc/socat sys-apps/iproute2 sys-fs/lvm2 >=sys-apps/baselayout-2.0 >=dev-lang/python-2.6 !app-emulation/ganeti-htools +RDEPEND=xen? ( >=app-emulation/xen-3.0 ) kvm? ( app-emulation/qemu ) lxc? ( app-emulation/lxc ) drbd? ( >=sys-cluster/drbd-8.3 ) rbd? ( sys-cluster/ceph ) ipv6? ( net-misc/ndisc6 ) htools? ( >=dev-lang/ghc-6.10 dev-haskell/json dev-haskell/curl dev-haskell/network dev-haskell/parallel ) haskell-daemons? ( dev-haskell/hslogger dev-haskell/crypto dev-haskell/text dev-haskell/hinotify ) dev-libs/openssl dev-python/paramiko dev-python/pyopenssl virtual/pyparsing dev-python/pycurl dev-python/pyinotify dev-python/simplejson net-analyzer/arping net-analyzer/fping net-misc/bridge-utils net-misc/curl[ssl] net-misc/openssh net-misc/socat sys-apps/iproute2 sys-fs/lvm2 >=sys-apps/baselayout-2.0 >=dev-lang/python-2.6 !app-emulation/ganeti-htools SLOT=0 SRC_URI=http://ganeti.googlecode.com/files/ganeti-2.6.1.tar.gz _eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 confutils 2ab69b52fa6ea0c0669a47fb94b354b4 eutils 384ae111f3649d456ed1754e3e1c4f6e multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=ace66b1e676eac41f2215bff40bfe881 +_md5_=9fb95e10ea9badb205f10bb5598ee0f6 diff --git a/metadata/md5-cache/app-emulation/ganeti-2.6.2 b/metadata/md5-cache/app-emulation/ganeti-2.6.2 index 1ba8a71cfa27..89aef763e0f0 100644 --- a/metadata/md5-cache/app-emulation/ganeti-2.6.2 +++ b/metadata/md5-cache/app-emulation/ganeti-2.6.2 @@ -1,14 +1,14 @@ DEFINED_PHASES=configure install prepare setup test -DEPEND=xen? ( >=app-emulation/xen-3.0 ) kvm? ( app-emulation/qemu ) lxc? ( app-emulation/lxc ) drbd? ( >=sys-cluster/drbd-8.3 ) rbd? ( sys-cluster/ceph ) ipv6? ( net-misc/ndisc6 ) htools? ( >=dev-lang/ghc-6.10 dev-haskell/json dev-haskell/curl dev-haskell/network dev-haskell/parallel ) haskell-daemons? ( dev-haskell/hslogger dev-haskell/crypto dev-haskell/text dev-haskell/hinotify ) dev-libs/openssl dev-python/elementtree dev-python/paramiko dev-python/pyopenssl virtual/pyparsing dev-python/pycurl dev-python/pyinotify dev-python/simplejson net-analyzer/arping net-analyzer/fping net-misc/bridge-utils net-misc/curl[ssl] net-misc/openssh net-misc/socat sys-apps/iproute2 sys-fs/lvm2 >=sys-apps/baselayout-2.0 test? ( || ( dev-lang/python:2.7[ipv6] dev-lang/python:2.6[ipv6] ) ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) +DEPEND=xen? ( >=app-emulation/xen-3.0 ) kvm? ( app-emulation/qemu ) lxc? ( app-emulation/lxc ) drbd? ( >=sys-cluster/drbd-8.3 ) rbd? ( sys-cluster/ceph ) ipv6? ( net-misc/ndisc6 ) htools? ( >=dev-lang/ghc-6.10 dev-haskell/json dev-haskell/curl dev-haskell/network dev-haskell/parallel ) haskell-daemons? ( dev-haskell/hslogger dev-haskell/crypto dev-haskell/text dev-haskell/hinotify ) dev-libs/openssl dev-python/paramiko dev-python/pyopenssl virtual/pyparsing dev-python/pycurl dev-python/pyinotify dev-python/simplejson net-analyzer/arping net-analyzer/fping net-misc/bridge-utils net-misc/curl[ssl] net-misc/openssh net-misc/socat sys-apps/iproute2 sys-fs/lvm2 >=sys-apps/baselayout-2.0 test? ( || ( dev-lang/python:2.7[ipv6] dev-lang/python:2.6[ipv6] ) ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) DESCRIPTION=Ganeti is a virtual server management software tool EAPI=4 HOMEPAGE=http://code.google.com/p/ganeti/ IUSE=kvm xen lxc drbd +filestorage sharedstorage htools syslog ipv6 haskell-daemons rbd test KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND=xen? ( >=app-emulation/xen-3.0 ) kvm? ( app-emulation/qemu ) lxc? ( app-emulation/lxc ) drbd? ( >=sys-cluster/drbd-8.3 ) rbd? ( sys-cluster/ceph ) ipv6? ( net-misc/ndisc6 ) htools? ( >=dev-lang/ghc-6.10 dev-haskell/json dev-haskell/curl dev-haskell/network dev-haskell/parallel ) haskell-daemons? ( dev-haskell/hslogger dev-haskell/crypto dev-haskell/text dev-haskell/hinotify ) dev-libs/openssl dev-python/elementtree dev-python/paramiko dev-python/pyopenssl virtual/pyparsing dev-python/pycurl dev-python/pyinotify dev-python/simplejson net-analyzer/arping net-analyzer/fping net-misc/bridge-utils net-misc/curl[ssl] net-misc/openssh net-misc/socat sys-apps/iproute2 sys-fs/lvm2 >=sys-apps/baselayout-2.0 !app-emulation/ganeti-htools || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) +RDEPEND=xen? ( >=app-emulation/xen-3.0 ) kvm? ( app-emulation/qemu ) lxc? ( app-emulation/lxc ) drbd? ( >=sys-cluster/drbd-8.3 ) rbd? ( sys-cluster/ceph ) ipv6? ( net-misc/ndisc6 ) htools? ( >=dev-lang/ghc-6.10 dev-haskell/json dev-haskell/curl dev-haskell/network dev-haskell/parallel ) haskell-daemons? ( dev-haskell/hslogger dev-haskell/crypto dev-haskell/text dev-haskell/hinotify ) dev-libs/openssl dev-python/paramiko dev-python/pyopenssl virtual/pyparsing dev-python/pycurl dev-python/pyinotify dev-python/simplejson net-analyzer/arping net-analyzer/fping net-misc/bridge-utils net-misc/curl[ssl] net-misc/openssh net-misc/socat sys-apps/iproute2 sys-fs/lvm2 >=sys-apps/baselayout-2.0 !app-emulation/ganeti-htools || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) REQUIRED_USE=|| ( kvm xen lxc ) SLOT=0 SRC_URI=http://ganeti.googlecode.com/files/ganeti-2.6.2.tar.gz _eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 confutils 2ab69b52fa6ea0c0669a47fb94b354b4 eutils 384ae111f3649d456ed1754e3e1c4f6e multilib 892e597faee02a5b94eb02ab512e7622 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=97434907a037b4723882786cbb27395d +_md5_=28945e004250afa42dcca9c31369da7d diff --git a/metadata/md5-cache/app-emulation/lxc-0.8.0-r1 b/metadata/md5-cache/app-emulation/lxc-0.8.0-r1 index 802918d3bc48..2701e0a20dac 100644 --- a/metadata/md5-cache/app-emulation/lxc-0.8.0-r1 +++ b/metadata/md5-cache/app-emulation/lxc-0.8.0-r1 @@ -10,4 +10,4 @@ RDEPEND=sys-libs/libcap sys-apps/util-linux app-misc/pax-utils >=sys-apps/openrc SLOT=0 SRC_URI=http://lxc.sourceforge.net/download/lxc/lxc-0.8.0.tar.gz http://dev.gentoo.org/~flameeyes/lxc/lxc-0.8.0-backports-1.tar.xz _eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 384ae111f3649d456ed1754e3e1c4f6e flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 177b3e32837e245539b46f16c43afed8 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=0869a18fb284a301e8fd1a380a1ee315 +_md5_=81d4fd8c92f6fd291c8eac5780d9b83f diff --git a/metadata/md5-cache/app-text/calibre-0.9.27 b/metadata/md5-cache/app-text/calibre-0.9.27 index 8f33b329b167..2cabd5375e97 100644 --- a/metadata/md5-cache/app-text/calibre-0.9.27 +++ b/metadata/md5-cache/app-text/calibre-0.9.27 @@ -1,13 +1,13 @@ -DEFINED_PHASES=install postinst postrm prepare setup -DEPEND=>=app-text/podofo-0.8.2:= >=app-text/poppler-0.12.3-r3:=[qt4,xpdf-headers(+)] >=dev-libs/chmlib-0.40:= >=dev-libs/icu-4.4:= >=dev-python/beautifulsoup-3.0.5:python-2 dev-python/netifaces dev-python/python-dateutil >=dev-python/dnspython-1.6.0 >=dev-python/cssselect-0.7.1 >=dev-python/cssutils-0.9.9 >=dev-python/dbus-python-0.82.2 >=dev-python/imaging-1.1.6 >=dev-python/lxml-2.2.1 >=dev-python/mechanize-0.1.11 >=dev-python/python-dateutil-1.4.1 >=dev-python/PyQt4-4.9.1[X,svg,webkit] media-fonts/liberation-fonts >=media-gfx/imagemagick-6.5.9[jpeg,png] >=media-libs/freetype-2:= >=media-libs/libwmf-0.2.8 >=media-libs/libmtp-1.1.4:= virtual/libusb:1= dev-qt/qtdbus:4= dev-qt/qtsvg:4= >=x11-misc/xdg-utils-1.0.2-r2 >=dev-python/setuptools-0.6_rc5 =dev-lang/python-2.7* =dev-lang/python-2.7*[ssl,sqlite] +DEFINED_PHASES=install postinst prepare +DEPEND=>=app-text/podofo-0.8.2:= >=app-text/poppler-0.12.3-r3:=[qt4,xpdf-headers(+)] >=dev-lang/python-2.7.1:2.7[sqlite,ssl] >=dev-libs/chmlib-0.40:= >=dev-libs/icu-4.4:= >=dev-python/beautifulsoup-3.0.5:python-2 dev-python/netifaces dev-python/python-dateutil >=dev-python/dnspython-1.6.0 >=dev-python/cssselect-0.7.1 >=dev-python/cssutils-0.9.9 >=dev-python/dbus-python-0.82.2 >=dev-python/imaging-1.1.6 >=dev-python/lxml-2.2.1 >=dev-python/mechanize-0.1.11 >=dev-python/python-dateutil-1.4.1 >=dev-python/PyQt4-4.9.1[X,svg,webkit] media-fonts/liberation-fonts >=media-gfx/imagemagick-6.5.9[jpeg,png] >=media-libs/freetype-2:= >=media-libs/libwmf-0.2.8 >=media-libs/libmtp-1.1.4:= virtual/libusb:1= dev-qt/qtdbus:4= dev-qt/qtsvg:4= >=x11-misc/xdg-utils-1.0.2-r2 >=dev-python/setuptools-0.6_rc5 DESCRIPTION=Ebook management application. EAPI=5 HOMEPAGE=http://calibre-ebook.com/ IUSE=+udisks KEYWORDS=amd64 x86 LICENSE=GPL-2 -RDEPEND=>=app-text/podofo-0.8.2:= >=app-text/poppler-0.12.3-r3:=[qt4,xpdf-headers(+)] >=dev-libs/chmlib-0.40:= >=dev-libs/icu-4.4:= >=dev-python/beautifulsoup-3.0.5:python-2 dev-python/netifaces dev-python/python-dateutil >=dev-python/dnspython-1.6.0 >=dev-python/cssselect-0.7.1 >=dev-python/cssutils-0.9.9 >=dev-python/dbus-python-0.82.2 >=dev-python/imaging-1.1.6 >=dev-python/lxml-2.2.1 >=dev-python/mechanize-0.1.11 >=dev-python/python-dateutil-1.4.1 >=dev-python/PyQt4-4.9.1[X,svg,webkit] media-fonts/liberation-fonts >=media-gfx/imagemagick-6.5.9[jpeg,png] >=media-libs/freetype-2:= >=media-libs/libwmf-0.2.8 >=media-libs/libmtp-1.1.4:= virtual/libusb:1= dev-qt/qtdbus:4= dev-qt/qtsvg:4= >=x11-misc/xdg-utils-1.0.2-r2 udisks? ( || ( sys-fs/udisks:2 sys-fs/udisks:0 ) ) =dev-lang/python-2.7* =dev-lang/python-2.7*[ssl,sqlite] +RDEPEND=>=app-text/podofo-0.8.2:= >=app-text/poppler-0.12.3-r3:=[qt4,xpdf-headers(+)] >=dev-lang/python-2.7.1:2.7[sqlite,ssl] >=dev-libs/chmlib-0.40:= >=dev-libs/icu-4.4:= >=dev-python/beautifulsoup-3.0.5:python-2 dev-python/netifaces dev-python/python-dateutil >=dev-python/dnspython-1.6.0 >=dev-python/cssselect-0.7.1 >=dev-python/cssutils-0.9.9 >=dev-python/dbus-python-0.82.2 >=dev-python/imaging-1.1.6 >=dev-python/lxml-2.2.1 >=dev-python/mechanize-0.1.11 >=dev-python/python-dateutil-1.4.1 >=dev-python/PyQt4-4.9.1[X,svg,webkit] media-fonts/liberation-fonts >=media-gfx/imagemagick-6.5.9[jpeg,png] >=media-libs/freetype-2:= >=media-libs/libwmf-0.2.8 >=media-libs/libmtp-1.1.4:= virtual/libusb:1= dev-qt/qtdbus:4= dev-qt/qtsvg:4= >=x11-misc/xdg-utils-1.0.2-r2 udisks? ( || ( sys-fs/udisks:2 sys-fs/udisks:0 ) ) SLOT=0 SRC_URI=http://sourceforge.net/projects/calibre/files/0.9.27/calibre-0.9.27.tar.xz -_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 eutils 384ae111f3649d456ed1754e3e1c4f6e fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multilib 892e597faee02a5b94eb02ab512e7622 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=031191b56b7e2f2172c2d052c84688fc +_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 eutils 384ae111f3649d456ed1754e3e1c4f6e fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=42a57fbdb4ed9df280d054af91e1db8f diff --git a/metadata/md5-cache/app-text/calibre-0.9.29 b/metadata/md5-cache/app-text/calibre-0.9.29 new file mode 100644 index 000000000000..8cbcf559840e --- /dev/null +++ b/metadata/md5-cache/app-text/calibre-0.9.29 @@ -0,0 +1,13 @@ +DEFINED_PHASES=install postinst prepare +DEPEND=>=app-text/podofo-0.8.2:= >=app-text/poppler-0.12.3-r3:=[qt4,xpdf-headers(+)] >=dev-lang/python-2.7.1:2.7[sqlite,ssl] >=dev-libs/chmlib-0.40:= >=dev-libs/icu-4.4:= >=dev-python/beautifulsoup-3.0.5:python-2 dev-python/netifaces dev-python/python-dateutil >=dev-python/dnspython-1.6.0 >=dev-python/cssselect-0.7.1 >=dev-python/cssutils-0.9.9 >=dev-python/dbus-python-0.82.2 >=dev-python/imaging-1.1.6 >=dev-python/lxml-2.2.1 >=dev-python/mechanize-0.1.11 >=dev-python/python-dateutil-1.4.1 >=dev-python/PyQt4-4.9.1[X,svg,webkit] media-fonts/liberation-fonts >=media-gfx/imagemagick-6.5.9[jpeg,png] >=media-libs/freetype-2:= >=media-libs/libwmf-0.2.8 >=media-libs/libmtp-1.1.4:= virtual/libusb:1= dev-qt/qtdbus:4= dev-qt/qtsvg:4= >=x11-misc/xdg-utils-1.0.2-r2 >=dev-python/setuptools-0.6_rc5 +DESCRIPTION=Ebook management application. +EAPI=5 +HOMEPAGE=http://calibre-ebook.com/ +IUSE=+udisks +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=>=app-text/podofo-0.8.2:= >=app-text/poppler-0.12.3-r3:=[qt4,xpdf-headers(+)] >=dev-lang/python-2.7.1:2.7[sqlite,ssl] >=dev-libs/chmlib-0.40:= >=dev-libs/icu-4.4:= >=dev-python/beautifulsoup-3.0.5:python-2 dev-python/netifaces dev-python/python-dateutil >=dev-python/dnspython-1.6.0 >=dev-python/cssselect-0.7.1 >=dev-python/cssutils-0.9.9 >=dev-python/dbus-python-0.82.2 >=dev-python/imaging-1.1.6 >=dev-python/lxml-2.2.1 >=dev-python/mechanize-0.1.11 >=dev-python/python-dateutil-1.4.1 >=dev-python/PyQt4-4.9.1[X,svg,webkit] media-fonts/liberation-fonts >=media-gfx/imagemagick-6.5.9[jpeg,png] >=media-libs/freetype-2:= >=media-libs/libwmf-0.2.8 >=media-libs/libmtp-1.1.4:= virtual/libusb:1= dev-qt/qtdbus:4= dev-qt/qtsvg:4= >=x11-misc/xdg-utils-1.0.2-r2 udisks? ( || ( sys-fs/udisks:2 sys-fs/udisks:0 ) ) +SLOT=0 +SRC_URI=http://sourceforge.net/projects/calibre/files/0.9.29/calibre-0.9.29.tar.xz +_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 eutils 384ae111f3649d456ed1754e3e1c4f6e fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=29bab198605a62fec06e22b4e65eecad diff --git a/metadata/md5-cache/dev-libs/angelscript-2.26.2-r1 b/metadata/md5-cache/dev-libs/angelscript-2.26.2-r1 new file mode 100644 index 000000000000..87e722b9e450 --- /dev/null +++ b/metadata/md5-cache/dev-libs/angelscript-2.26.2-r1 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=app-arch/unzip +DESCRIPTION=A flexible, cross-platform scripting library +EAPI=5 +HOMEPAGE=http://www.angelcode.com/angelscript/ +IUSE=doc static-libs abi_x86_32 abi_x86_64 abi_x86_x32 +KEYWORDS=~amd64 ~x86 +LICENSE=ZLIB +SLOT=0 +SRC_URI=http://www.angelcode.com/angelscript/sdk/files/angelscript_2.26.2.zip +_eclasses_=multibuild 32fd04fe3ee97494341710886fd70dfe multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 64d8186c893b4ba109fe29c632a72a58 multilib-minimal bdf515a40f94b2a4d8e8741be0b1a728 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e +_md5_=177bce20dd993dd5d23475d22cd19b1d diff --git a/metadata/md5-cache/dev-libs/libmcrypt-2.5.8-r3 b/metadata/md5-cache/dev-libs/libmcrypt-2.5.8-r3 new file mode 100644 index 000000000000..b30091c621ba --- /dev/null +++ b/metadata/md5-cache/dev-libs/libmcrypt-2.5.8-r3 @@ -0,0 +1,11 @@ +DEFINED_PHASES=install prepare +DEPEND=|| ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DESCRIPTION=libmcrypt is a library that provides uniform interface to access several encryption algorithms. +EAPI=5 +HOMEPAGE=http://mcrypt.sourceforge.net/ +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris +LICENSE=GPL-2 LGPL-2.1 +SLOT=0 +SRC_URI=mirror://sourceforge/mcrypt/libmcrypt-2.5.8.tar.gz +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 384ae111f3649d456ed1754e3e1c4f6e libtool 177b3e32837e245539b46f16c43afed8 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=ed3539521ba44574025d443cae4b72e1 diff --git a/metadata/md5-cache/dev-libs/libzeitgeist-0.3.18 b/metadata/md5-cache/dev-libs/libzeitgeist-0.3.18 index ec2fbfc64969..8fdec4df23ff 100644 --- a/metadata/md5-cache/dev-libs/libzeitgeist-0.3.18 +++ b/metadata/md5-cache/dev-libs/libzeitgeist-0.3.18 @@ -10,4 +10,4 @@ RDEPEND=dev-libs/glib:2 gnome-extra/zeitgeist SLOT=0 SRC_URI=http://launchpad.net/libzeitgeist/0.3/0.3.18/+download/libzeitgeist-0.3.18.tar.gz _eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 7070f14fc0488c824be5fe8d6ad6d28a eutils 384ae111f3649d456ed1754e3e1c4f6e libtool 177b3e32837e245539b46f16c43afed8 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=b011a01f1ad6f6e87e202e5b055f264e +_md5_=8e8cc497b2fcb85240407ff4a8da561b diff --git a/metadata/md5-cache/dev-python/egg-python-2.25.3 b/metadata/md5-cache/dev-python/egg-python-2.25.3 index babcf1124174..d057f6bc2282 100644 --- a/metadata/md5-cache/dev-python/egg-python-2.25.3 +++ b/metadata/md5-cache/dev-python/egg-python-2.25.3 @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://gnome/sources/gnome-python-extras/2.25/gnome-python-extras-2.25.3.tar.bz2 _eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 384ae111f3649d456ed1754e3e1c4f6e fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome-python-common c7b53edf13692ee6c71340ba735a12e5 gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 177b3e32837e245539b46f16c43afed8 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=7c823f5a1417e890a79fec0f65cdf853 +_md5_=dc9d77ec206ac1f1903a77cbddb12306 diff --git a/metadata/md5-cache/dev-python/elixir-0.7.1-r1 b/metadata/md5-cache/dev-python/elixir-0.7.1-r1 index da800313fc05..3c7d4438a69b 100644 --- a/metadata/md5-cache/dev-python/elixir-0.7.1-r1 +++ b/metadata/md5-cache/dev-python/elixir-0.7.1-r1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile install postinst postrm prepare -DEPEND=>=dev-python/sqlalchemy-0.4.0 dev-python/setuptools doc? ( >=dev-python/docutils-0.4-r3 >=dev-python/elementtree-1.2.6 >=dev-python/kid-0.9 >=dev-python/pygments-0.8.1 >=dev-python/pudge-0.1.3 >=dev-python/buildutils-0.3 ) =dev-lang/python-2* +DEPEND=>=dev-python/sqlalchemy-0.4.0 dev-python/setuptools doc? ( >=dev-python/docutils-0.4-r3 >=dev-python/kid-0.9 >=dev-python/pygments-0.8.1 >=dev-python/pudge-0.1.3 >=dev-python/buildutils-0.3 ) =dev-lang/python-2* DESCRIPTION=Declarative Mapper for SQLAlchemy EAPI=2 HOMEPAGE=http://elixir.ematia.de/trac/wiki http://pypi.python.org/pypi/Elixir @@ -10,4 +10,4 @@ RDEPEND=>=dev-python/sqlalchemy-0.4.0 =dev-lang/python-2* SLOT=0 SRC_URI=mirror://pypi/E/Elixir/Elixir-0.7.1.tar.gz _eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 eutils 384ae111f3649d456ed1754e3e1c4f6e multilib 892e597faee02a5b94eb02ab512e7622 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=b486748482dbf6f3c9468ba1f9a42f54 +_md5_=c174864d9ed8ee4c424ca564e711166d diff --git a/metadata/md5-cache/dev-python/flask-restless-0.10.0 b/metadata/md5-cache/dev-python/flask-restless-0.10.0 new file mode 100644 index 000000000000..a7a56754270c --- /dev/null +++ b/metadata/md5-cache/dev-python/flask-restless-0.10.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile install postinst postrm prepare test +DEPEND=>=dev-python/flask-0.7 dev-python/flask-sqlalchemy dev-python/sqlalchemy dev-python/python-dateutil dev-python/setuptools test? ( dev-python/unittest2 ) =dev-lang/python-2* +DESCRIPTION=Flask extension for easy ReSTful API generation +EAPI=3 +HOMEPAGE=http://packages.python.org/Flask-Restless/ +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( AGPL-3 BSD ) +RDEPEND=>=dev-python/flask-0.7 dev-python/flask-sqlalchemy dev-python/sqlalchemy dev-python/python-dateutil =dev-lang/python-2* +SLOT=0 +SRC_URI=https://github.com/jfinkels/flask-restless/archive/0.10.0.tar.gz -> flask-restless-0.10.0.tar.gz +_eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 multilib 892e597faee02a5b94eb02ab512e7622 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e +_md5_=0254af8594aa0324c09747337235e2ec diff --git a/metadata/md5-cache/dev-python/gdata-2.0.14 b/metadata/md5-cache/dev-python/gdata-2.0.14 index 874ab270fe27..508d8e14f8e7 100644 --- a/metadata/md5-cache/dev-python/gdata-2.0.14 +++ b/metadata/md5-cache/dev-python/gdata-2.0.14 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile install postinst postrm prepare setup test -DEPEND=|| ( dev-lang/python:2.7[xml] dev-lang/python:2.6[xml] dev-lang/python:2.5[xml] dev-python/elementtree ) =dev-lang/python-2* =dev-lang/python-2*[ssl(+)] +DEPEND==dev-lang/python-2* =dev-lang/python-2*[ssl(+),xml] DESCRIPTION=Python client library for Google data APIs EAPI=4 HOMEPAGE=http://code.google.com/p/gdata-python-client/ http://pypi.python.org/pypi/gdata IUSE=examples KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd LICENSE=Apache-2.0 -RDEPEND=|| ( dev-lang/python:2.7[xml] dev-lang/python:2.6[xml] dev-lang/python:2.5[xml] dev-python/elementtree ) =dev-lang/python-2* =dev-lang/python-2*[ssl(+)] +RDEPEND==dev-lang/python-2* =dev-lang/python-2*[ssl(+),xml] SLOT=0 SRC_URI=http://gdata-python-client.googlecode.com/files/gdata-2.0.14.tar.gz _eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 multilib 892e597faee02a5b94eb02ab512e7622 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=712e3c0eb101aa20bfd6bdfa1a6acc20 +_md5_=72e7d00b73a68694e45f7e33838f9577 diff --git a/metadata/md5-cache/dev-python/lxml-3.2.0 b/metadata/md5-cache/dev-python/lxml-3.2.0 index b3493faaaa97..ffd6081c1dd4 100644 --- a/metadata/md5-cache/dev-python/lxml-3.2.0 +++ b/metadata/md5-cache/dev-python/lxml-3.2.0 @@ -10,4 +10,4 @@ RDEPEND=>=dev-libs/libxml2-2.7.2 >=dev-libs/libxslt-1.1.15 dev-python/beautifuls SLOT=0 SRC_URI=mirror://pypi/l/lxml/lxml-3.2.0.tar.gz _eclasses_=distutils-r1 10e59ecabebf0c37ad5cd8827434b108 eutils 384ae111f3649d456ed1754e3e1c4f6e flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 345dcecf1ef156d1d86a98f16d3c385c toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=b2d0f4fcc0d350272df043b6ab09acd8 +_md5_=518dec3bdb70870dd5489f6b64128518 diff --git a/metadata/md5-cache/dev-python/pypy-2.0_beta2 b/metadata/md5-cache/dev-python/pypy-2.0_beta2 new file mode 100644 index 000000000000..2c826be39b74 --- /dev/null +++ b/metadata/md5-cache/dev-python/pypy-2.0_beta2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install prepare pretend setup test unpack +DEPEND=>=sys-libs/zlib-1.1.3 virtual/libffi virtual/libintl dev-libs/expat bzip2? ( app-arch/bzip2 ) ncurses? ( sys-libs/ncurses ) sqlite? ( dev-db/sqlite:3 ) ssl? ( dev-libs/openssl ) || ( dev-lang/python:2.7 dev-python/pypy:2.0 dev-python/pypy:1.9 ) +DESCRIPTION=A fast, compliant alternative implementation of the Python language +EAPI=5 +HOMEPAGE=http://pypy.org/ +IUSE=bzip2 doc examples +jit ncurses sandbox shadowstack sqlite ssl +xml +KEYWORDS=~amd64 ~amd64-linux ~x86 ~x86-linux +LICENSE=MIT +PDEPEND=app-admin/python-updater +RDEPEND=>=sys-libs/zlib-1.1.3 virtual/libffi virtual/libintl dev-libs/expat bzip2? ( app-arch/bzip2 ) ncurses? ( sys-libs/ncurses ) sqlite? ( dev-db/sqlite:3 ) ssl? ( dev-libs/openssl ) +SLOT=2.0 +SRC_URI=https://bitbucket.org/pypy/pypy/get/release-2.0-beta2.tar.bz2 -> pypy-2.0_beta2.tar.bz2 +_eclasses_=check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 384ae111f3649d456ed1754e3e1c4f6e multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-any-r1 2bfb0c9cefbef0b3cfde3d96e3d53f46 python-utils-r1 345dcecf1ef156d1d86a98f16d3c385c toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=4080f6bda297e9e6b23f0229f506c753 diff --git a/metadata/md5-cache/dev-python/sqlitecachec-1.1.4-r1 b/metadata/md5-cache/dev-python/sqlitecachec-1.1.4-r1 new file mode 100644 index 000000000000..6b77c47ef78a --- /dev/null +++ b/metadata/md5-cache/dev-python/sqlitecachec-1.1.4-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-db/sqlite:3 dev-libs/glib:2 dev-libs/libxml2 virtual/pkgconfig python_targets_python2_5? ( dev-lang/python:2.5[sqlite] ) python_targets_python2_6? ( dev-lang/python:2.6[sqlite] ) python_targets_python2_7? ( dev-lang/python:2.7[sqlite] ) python_targets_pypy1_9? ( dev-python/pypy:1.9[sqlite] ) python_targets_pypy2_0? ( dev-python/pypy:2.0[sqlite] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] +DESCRIPTION=sqlite cacher for python applications +EAPI=5 +HOMEPAGE=http://yum.baseurl.org/ +IUSE=python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_targets_pypy1_9 python_targets_pypy2_0 +KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 +LICENSE=GPL-2 +RDEPEND=dev-db/sqlite:3 dev-libs/glib:2 dev-libs/libxml2 python_targets_python2_5? ( dev-lang/python:2.5[sqlite] ) python_targets_python2_6? ( dev-lang/python:2.6[sqlite] ) python_targets_python2_7? ( dev-lang/python:2.7[sqlite] ) python_targets_pypy1_9? ( dev-python/pypy:1.9[sqlite] ) python_targets_pypy2_0? ( dev-python/pypy:2.0[sqlite] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] +SLOT=0 +SRC_URI=http://yum.baseurl.org/download/yum-metadata-parser/yum-metadata-parser-1.1.4.tar.gz +_eclasses_=distutils-r1 10e59ecabebf0c37ad5cd8827434b108 eutils 384ae111f3649d456ed1754e3e1c4f6e multibuild 32fd04fe3ee97494341710886fd70dfe multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 345dcecf1ef156d1d86a98f16d3c385c toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=319f2a9345649969a199a9f9481965c4 diff --git a/metadata/md5-cache/dev-python/turbogears-1.0.8 b/metadata/md5-cache/dev-python/turbogears-1.0.8 index d614473fca7f..59eb532aeda2 100644 --- a/metadata/md5-cache/dev-python/turbogears-1.0.8 +++ b/metadata/md5-cache/dev-python/turbogears-1.0.8 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile install postinst postrm prepare test -DEPEND=>=dev-python/turbojson-1.1.4 >=dev-python/turbocheetah-1.0 >=dev-python/turbokid-1.0.4 =dev-python/cherrypy-2.3* >=dev-python/simplejson-1.3 >=dev-python/pastescript-0.9.7 >=dev-python/formencode-0.7.1 >=dev-python/ruledispatch-0.5_pre2306 >=dev-python/decoratortools-1.4 >=dev-python/configobj-4.3.2 || ( =dev-lang/python-2.4* ( =dev-lang/python-2.5* >=dev-python/cheetah-2.0_rc7-r1 ) ) || ( =dev-lang/python-2.5* ( =dev-lang/python-2.4* >=dev-python/celementtree-1.0.5 ) ) >=dev-python/sqlobject-0.7 test? ( >=dev-python/nose-0.9.1 >=dev-python/sqlalchemy-0.3.3 || ( =dev-lang/python-2.5* ( =dev-lang/python-2.4* dev-python/pysqlite ) ) ) >=dev-python/genshi-0.3.6 app-arch/zip >=dev-python/setuptools-0.6_rc5 =dev-lang/python-2* +DEPEND=>=dev-python/turbojson-1.1.4 >=dev-python/turbocheetah-1.0 >=dev-python/turbokid-1.0.4 =dev-python/cherrypy-2.3* >=dev-python/simplejson-1.3 >=dev-python/pastescript-0.9.7 >=dev-python/formencode-0.7.1 >=dev-python/ruledispatch-0.5_pre2306 >=dev-python/decoratortools-1.4 >=dev-python/configobj-4.3.2 || ( =dev-lang/python-2.4* ( =dev-lang/python-2.5* >=dev-python/cheetah-2.0_rc7-r1 ) ) >=dev-python/sqlobject-0.7 test? ( >=dev-python/nose-0.9.1 >=dev-python/sqlalchemy-0.3.3 || ( =dev-lang/python-2.5* ( =dev-lang/python-2.4* dev-python/pysqlite ) ) ) >=dev-python/genshi-0.3.6 app-arch/zip >=dev-python/setuptools-0.6_rc5 =dev-lang/python-2* DESCRIPTION=The rapid web development meta-framework you've been looking for. EAPI=3 HOMEPAGE=http://www.turbogears.org/ IUSE=test KEYWORDS=~x86 ~amd64 LICENSE=MIT -RDEPEND=>=dev-python/turbojson-1.1.4 >=dev-python/turbocheetah-1.0 >=dev-python/turbokid-1.0.4 =dev-python/cherrypy-2.3* >=dev-python/simplejson-1.3 >=dev-python/pastescript-0.9.7 >=dev-python/formencode-0.7.1 >=dev-python/ruledispatch-0.5_pre2306 >=dev-python/decoratortools-1.4 >=dev-python/configobj-4.3.2 || ( =dev-lang/python-2.4* ( =dev-lang/python-2.5* >=dev-python/cheetah-2.0_rc7-r1 ) ) || ( =dev-lang/python-2.5* ( =dev-lang/python-2.4* >=dev-python/celementtree-1.0.5 ) ) >=dev-python/sqlobject-0.7 test? ( >=dev-python/nose-0.9.1 >=dev-python/sqlalchemy-0.3.3 || ( =dev-lang/python-2.5* ( =dev-lang/python-2.4* dev-python/pysqlite ) ) ) >=dev-python/genshi-0.3.6 =dev-lang/python-2* +RDEPEND=>=dev-python/turbojson-1.1.4 >=dev-python/turbocheetah-1.0 >=dev-python/turbokid-1.0.4 =dev-python/cherrypy-2.3* >=dev-python/simplejson-1.3 >=dev-python/pastescript-0.9.7 >=dev-python/formencode-0.7.1 >=dev-python/ruledispatch-0.5_pre2306 >=dev-python/decoratortools-1.4 >=dev-python/configobj-4.3.2 || ( =dev-lang/python-2.4* ( =dev-lang/python-2.5* >=dev-python/cheetah-2.0_rc7-r1 ) ) >=dev-python/sqlobject-0.7 test? ( >=dev-python/nose-0.9.1 >=dev-python/sqlalchemy-0.3.3 || ( =dev-lang/python-2.5* ( =dev-lang/python-2.4* dev-python/pysqlite ) ) ) >=dev-python/genshi-0.3.6 =dev-lang/python-2* SLOT=0 SRC_URI=http://files.turbogears.org/eggs/TurboGears-1.0.8.tar.gz _eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 multilib 892e597faee02a5b94eb02ab512e7622 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=e5f3227b26fd62876421395e9b4eb1db +_md5_=2f2e016bde457a7fafda6306fcecaee7 diff --git a/metadata/md5-cache/dev-ruby/kramdown-0.14.1 b/metadata/md5-cache/dev-ruby/kramdown-0.14.1 deleted file mode 100644 index dd7eb822b16a..000000000000 --- a/metadata/md5-cache/dev-ruby/kramdown-0.14.1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( latex? ( dev-texlive/texlive-latex dev-texlive/texlive-latexextra ) app-text/htmltidy ) ruby_targets_ruby18? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby18] ) test? ( >=dev-ruby/coderay-1.0.0[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby19] ) test? ( >=dev-ruby/coderay-1.0.0[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/rdoc[ruby_targets_ree18] ) test? ( >=dev-ruby/coderay-1.0.0[ruby_targets_ree18] ) ) ruby_targets_jruby? ( doc? ( dev-ruby/rdoc[ruby_targets_jruby] ) test? ( >=dev-ruby/coderay-1.0.0[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( doc? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( doc? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_jruby? ( doc? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) -DESCRIPTION=yet-another-markdown-parser but fast, pure Ruby, using a strict syntax definition. -EAPI=5 -HOMEPAGE=http://kramdown.rubyforge.org/ -IUSE=latex elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ruby_targets_jruby doc test test -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=latex? ( dev-texlive/texlive-latex dev-texlive/texlive-latexextra ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ruby_targets_jruby ) -SLOT=0 -SRC_URI=mirror://rubygems/kramdown-0.14.1.gem -_eclasses_=eutils 384ae111f3649d456ed1754e3e1c4f6e java-utils-2 52b7cfbf4f7225fcea7e7f18b6d83328 multilib 892e597faee02a5b94eb02ab512e7622 ruby-fakegem d2a1d4e0903b29b09c892b21b79fcf46 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=8e8f3daf6e6424bbbea29ca1466551be diff --git a/metadata/md5-cache/dev-ruby/libxml-2.2.1 b/metadata/md5-cache/dev-ruby/libxml-2.2.1 deleted file mode 100644 index 5a332ca84e95..000000000000 --- a/metadata/md5-cache/dev-ruby/libxml-2.2.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=dev-libs/libxml2 ruby_targets_ruby18? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/rdoc[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( doc? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( doc? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rake[ruby_targets_ree18] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ) -DESCRIPTION=Ruby libxml with a user friendly API, akin to REXML, but feature complete and significantly faster. -EAPI=2 -HOMEPAGE=http://libxml.rubyforge.org -IUSE=elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ree18 doc test test -KEYWORDS=amd64 ~arm hppa ppc ppc64 x86 -LICENSE=MIT -RDEPEND=dev-libs/libxml2 ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) -SLOT=0 -SRC_URI=mirror://rubygems/libxml-ruby-2.2.1.gem -_eclasses_=eutils 384ae111f3649d456ed1754e3e1c4f6e java-utils-2 52b7cfbf4f7225fcea7e7f18b6d83328 multilib 892e597faee02a5b94eb02ab512e7622 ruby-fakegem d2a1d4e0903b29b09c892b21b79fcf46 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=429a8a9216ad86563c612d1fd92e2179 diff --git a/metadata/md5-cache/dev-ruby/listen-0.7.2-r1 b/metadata/md5-cache/dev-ruby/listen-0.7.2-r1 deleted file mode 100644 index 215128af3cc0..000000000000 --- a/metadata/md5-cache/dev-ruby/listen-0.7.2-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby18? ( >=dev-ruby/rb-inotify-0.8.8[ruby_targets_ruby18] ) ruby_targets_ruby19? ( >=dev-ruby/rb-inotify-0.8.8[ruby_targets_ruby19] ) ruby_targets_ree18? ( >=dev-ruby/rb-inotify-0.8.8[ruby_targets_ree18] ) ruby_targets_jruby? ( >=dev-ruby/rb-inotify-0.8.8[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] ) ) ruby_targets_ree18? ( test? ( dev-ruby/rspec:2[ruby_targets_ree18] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rspec:2[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) -DESCRIPTION=Listens to file modifications and notifies you about the changes. -EAPI=5 -HOMEPAGE=https://github.com/guard/listen -IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ruby_targets_jruby test test -KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~x64-macos -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( >=dev-ruby/rb-inotify-0.8.8[ruby_targets_ruby18] ) ruby_targets_ruby19? ( >=dev-ruby/rb-inotify-0.8.8[ruby_targets_ruby19] ) ruby_targets_ree18? ( >=dev-ruby/rb-inotify-0.8.8[ruby_targets_ree18] ) ruby_targets_jruby? ( >=dev-ruby/rb-inotify-0.8.8[ruby_targets_jruby] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ruby_targets_jruby ) -SLOT=0 -SRC_URI=https://github.com/guard/listen/archive/v0.7.2.tar.gz -> listen-0.7.2-git.tgz -_eclasses_=eutils 384ae111f3649d456ed1754e3e1c4f6e java-utils-2 52b7cfbf4f7225fcea7e7f18b6d83328 multilib 892e597faee02a5b94eb02ab512e7622 ruby-fakegem d2a1d4e0903b29b09c892b21b79fcf46 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=6163809cb23fe85758e83ba1c7cae32d diff --git a/metadata/md5-cache/dev-util/osc-0.139.1 b/metadata/md5-cache/dev-util/osc-0.139.1 index 437ef4ecd44a..2feb01601b3c 100644 --- a/metadata/md5-cache/dev-util/osc-0.139.1 +++ b/metadata/md5-cache/dev-util/osc-0.139.1 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile install postinst postrm prepare setup -DEPEND=dev-python/urlgrabber dev-python/pyxml dev-python/elementtree app-arch/rpm[python] dev-python/m2crypto || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) +DEPEND=dev-python/urlgrabber dev-python/pyxml app-arch/rpm[python] dev-python/m2crypto || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) DESCRIPTION=Command line tool for Open Build Service EAPI=5 HOMEPAGE=http://en.opensuse.org/openSUSE:OSC KEYWORDS=amd64 x86 LICENSE=GPL-2 -RDEPEND=dev-python/urlgrabber dev-python/pyxml dev-python/elementtree app-arch/rpm[python] dev-python/m2crypto app-admin/sudo dev-util/obs-service-meta || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) +RDEPEND=dev-python/urlgrabber dev-python/pyxml app-arch/rpm[python] dev-python/m2crypto app-admin/sudo dev-util/obs-service-meta || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) SLOT=0 SRC_URI=https://api.opensuse.org/public/source/openSUSE:Tools/osc/osc-0.139.1.tar.gz _eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 multilib 892e597faee02a5b94eb02ab512e7622 obs-download 8b22473fde39f5051ce00b61062dd086 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=0cf86bca6e39b5de3e06406847bb66d4 +_md5_=30f7290b2557225d074a98bd627016ff diff --git a/metadata/md5-cache/dev-util/osc-9999 b/metadata/md5-cache/dev-util/osc-9999 index 841c662fcce3..760f01bd86ff 100644 --- a/metadata/md5-cache/dev-util/osc-9999 +++ b/metadata/md5-cache/dev-util/osc-9999 @@ -1,10 +1,10 @@ DEFINED_PHASES=compile install postinst postrm prepare setup unpack -DEPEND=dev-python/urlgrabber dev-python/pyxml dev-python/elementtree app-arch/rpm[python] dev-python/m2crypto || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) dev-vcs/git +DEPEND=dev-python/urlgrabber dev-python/pyxml app-arch/rpm[python] dev-python/m2crypto || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) dev-vcs/git DESCRIPTION=Command line tool for Open Build Service EAPI=5 HOMEPAGE=http://en.opensuse.org/openSUSE:OSC LICENSE=GPL-2 -RDEPEND=dev-python/urlgrabber dev-python/pyxml dev-python/elementtree app-arch/rpm[python] dev-python/m2crypto app-admin/sudo dev-util/obs-service-meta || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) +RDEPEND=dev-python/urlgrabber dev-python/pyxml app-arch/rpm[python] dev-python/m2crypto app-admin/sudo dev-util/obs-service-meta || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) SLOT=0 _eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 git-2 e92e09651292b1bef5656592364550f7 multilib 892e597faee02a5b94eb02ab512e7622 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=ff53b93c9d51ba1c4394c7becb537087 +_md5_=ed046aeade770cf51a7cd48501faf8d6 diff --git a/metadata/md5-cache/dev-util/wiggle-0.9 b/metadata/md5-cache/dev-util/wiggle-0.9 index 8e14a921af9b..376b6b2f6983 100644 --- a/metadata/md5-cache/dev-util/wiggle-0.9 +++ b/metadata/md5-cache/dev-util/wiggle-0.9 @@ -10,4 +10,4 @@ RDEPEND=dev-util/diffstat dev-util/patchutils sys-apps/diffutils sys-apps/findut SLOT=0 SRC_URI=http://neil.brown.name/wiggle/wiggle-0.9.tar.gz _eclasses_=eutils 384ae111f3649d456ed1754e3e1c4f6e fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=6d56b08967b19f9a01ca5fcac131eceb +_md5_=0ac408ba68a1f18fee8b72f3768000b6 diff --git a/metadata/md5-cache/media-libs/alsa-lib-1.0.27-r3 b/metadata/md5-cache/media-libs/alsa-lib-1.0.27-r3 index 0d7fce3ac07a..83b74ce199a9 100644 --- a/metadata/md5-cache/media-libs/alsa-lib-1.0.27-r3 +++ b/metadata/md5-cache/media-libs/alsa-lib-1.0.27-r3 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=python? ( python_single_target_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-soundlibs-20130224 ) SLOT=0 SRC_URI=mirror://alsaproject/lib/alsa-lib-1.0.27.tar.bz2 -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 384ae111f3649d456ed1754e3e1c4f6e libtool 177b3e32837e245539b46f16c43afed8 multibuild 32fd04fe3ee97494341710886fd70dfe multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 64d8186c893b4ba109fe29c632a72a58 multilib-minimal 17ae39785bd22c9cf6159d6f11f87a04 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-single-r1 b4f112abff5d77f982f83e1a9e554093 python-utils-r1 345dcecf1ef156d1d86a98f16d3c385c toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 384ae111f3649d456ed1754e3e1c4f6e libtool 177b3e32837e245539b46f16c43afed8 multibuild 32fd04fe3ee97494341710886fd70dfe multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 64d8186c893b4ba109fe29c632a72a58 multilib-minimal bdf515a40f94b2a4d8e8741be0b1a728 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-single-r1 b4f112abff5d77f982f83e1a9e554093 python-utils-r1 345dcecf1ef156d1d86a98f16d3c385c toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d53cb06768a6ae778106bc57391e2baa diff --git a/metadata/md5-cache/media-libs/libexif-0.6.21-r1 b/metadata/md5-cache/media-libs/libexif-0.6.21-r1 index 193096da8b10..25d1f4fb9186 100644 --- a/metadata/md5-cache/media-libs/libexif-0.6.21-r1 +++ b/metadata/md5-cache/media-libs/libexif-0.6.21-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=nls? ( virtual/libintl ) SLOT=0 SRC_URI=mirror://sourceforge/libexif/libexif-0.6.21.tar.bz2 -_eclasses_=eutils 384ae111f3649d456ed1754e3e1c4f6e libtool 177b3e32837e245539b46f16c43afed8 multibuild 32fd04fe3ee97494341710886fd70dfe multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 64d8186c893b4ba109fe29c632a72a58 multilib-minimal 17ae39785bd22c9cf6159d6f11f87a04 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 384ae111f3649d456ed1754e3e1c4f6e libtool 177b3e32837e245539b46f16c43afed8 multibuild 32fd04fe3ee97494341710886fd70dfe multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 64d8186c893b4ba109fe29c632a72a58 multilib-minimal bdf515a40f94b2a4d8e8741be0b1a728 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4baadb1e4ad939fc851caa3b24fc0cad diff --git a/metadata/md5-cache/media-libs/libmikmod-3.2.0-r1 b/metadata/md5-cache/media-libs/libmikmod-3.2.0-r1 index f11f5a84ce64..ca95ae217193 100644 --- a/metadata/md5-cache/media-libs/libmikmod-3.2.0-r1 +++ b/metadata/md5-cache/media-libs/libmikmod-3.2.0-r1 @@ -10,5 +10,5 @@ RDEPEND=alsa? ( media-libs/alsa-lib:= ) !media-libs/libmikmod:2 REQUIRED_USE=|| ( alsa oss coreaudio ) SLOT=0 SRC_URI=http://mikmod.shlomifish.org/files/libmikmod-3.2.0.tar.gz -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 384ae111f3649d456ed1754e3e1c4f6e libtool 177b3e32837e245539b46f16c43afed8 multibuild 32fd04fe3ee97494341710886fd70dfe multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 64d8186c893b4ba109fe29c632a72a58 multilib-minimal 17ae39785bd22c9cf6159d6f11f87a04 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 384ae111f3649d456ed1754e3e1c4f6e libtool 177b3e32837e245539b46f16c43afed8 multibuild 32fd04fe3ee97494341710886fd70dfe multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 64d8186c893b4ba109fe29c632a72a58 multilib-minimal bdf515a40f94b2a4d8e8741be0b1a728 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cfc5fb450e9b79e547cb7ed160fefb34 diff --git a/metadata/md5-cache/media-libs/libv4l-0.9.5 b/metadata/md5-cache/media-libs/libv4l-0.9.5 index cda6670fe05c..ebc6e753339e 100644 --- a/metadata/md5-cache/media-libs/libv4l-0.9.5 +++ b/metadata/md5-cache/media-libs/libv4l-0.9.5 @@ -9,4 +9,4 @@ RDEPEND=virtual/jpeg:= virtual/glu virtual/opengl x11-libs/libX11:= !media-tv/v4 SLOT=0 SRC_URI=http://linuxtv.org/downloads/v4l-utils/v4l-utils-0.9.5.tar.bz2 _eclasses_=eutils 384ae111f3649d456ed1754e3e1c4f6e linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=8630d4302971d5e6387a8b75bc0a6690 +_md5_=1dbdb451ce99fc0fda7d124418f843fc diff --git a/metadata/md5-cache/media-libs/libv4l-0.9.5-r1 b/metadata/md5-cache/media-libs/libv4l-0.9.5-r1 index 8ef836753cfa..4ed0509c06d2 100644 --- a/metadata/md5-cache/media-libs/libv4l-0.9.5-r1 +++ b/metadata/md5-cache/media-libs/libv4l-0.9.5-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1+ RDEPEND=virtual/jpeg:= virtual/glu virtual/opengl x11-libs/libX11:= !media-tv/v4l2-ctl !=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=!<=media-libs/plotutils-2.6 || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=C/C++ function library for rasterizing 2-D vector graphics EAPI=5 HOMEPAGE=http://www.gnu.org/software/libxmi/ IUSE=static-libs KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 +RDEPEND=!<=media-libs/plotutils-2.6 SLOT=0 SRC_URI=mirror://gnu/libxmi/libxmi-1.2.tar.gz _eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 7070f14fc0488c824be5fe8d6ad6d28a eutils 384ae111f3649d456ed1754e3e1c4f6e libtool 177b3e32837e245539b46f16c43afed8 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=179257bc3740eec8a19ce4e53c4cb7b0 +_md5_=38354e7cfc476d8767e4397d2a26d3a7 diff --git a/metadata/md5-cache/media-libs/libxmi-1.3 b/metadata/md5-cache/media-libs/libxmi-1.3 index 29015656c2c7..c38347fb0a01 100644 --- a/metadata/md5-cache/media-libs/libxmi-1.3 +++ b/metadata/md5-cache/media-libs/libxmi-1.3 @@ -1,12 +1,13 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND=|| ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=!<=media-libs/plotutils-2.6 || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=C/C++ function library for rasterizing 2-D vector graphics EAPI=5 HOMEPAGE=http://www.gnu.org/software/libxmi/ IUSE=static-libs KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 +RDEPEND=!<=media-libs/plotutils-2.6 SLOT=0 SRC_URI=http://dev.gentoo.org/~jlec/distfiles/libxmi-1.3.tar.xz _eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 7070f14fc0488c824be5fe8d6ad6d28a eutils 384ae111f3649d456ed1754e3e1c4f6e libtool 177b3e32837e245539b46f16c43afed8 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=e9ead34225df4133d19eb25c730b51de +_md5_=30d6b50b89bbd796313d500be11a4e32 diff --git a/metadata/md5-cache/media-libs/plotutils-2.6 b/metadata/md5-cache/media-libs/plotutils-2.6 index 5809ca2865e1..09a40a69f5d7 100644 --- a/metadata/md5-cache/media-libs/plotutils-2.6 +++ b/metadata/md5-cache/media-libs/plotutils-2.6 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install postinst prepare -DEPEND=png? ( media-libs/libpng sys-libs/zlib ) X? ( x11-libs/libXaw x11-proto/xextproto ) || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=!media-libs/libxmi png? ( media-libs/libpng sys-libs/zlib ) X? ( x11-libs/libXaw x11-proto/xextproto ) || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=a powerful C/C++ function library for exporting 2-D vector graphics EAPI=3 HOMEPAGE=http://www.gnu.org/software/plotutils/ IUSE=+png static-libs X KEYWORDS=alpha amd64 ~arm hppa ia64 ppc ppc64 s390 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris LICENSE=GPL-2 -RDEPEND=png? ( media-libs/libpng sys-libs/zlib ) X? ( x11-libs/libXaw x11-proto/xextproto ) +RDEPEND=!media-libs/libxmi png? ( media-libs/libpng sys-libs/zlib ) X? ( x11-libs/libXaw x11-proto/xextproto ) SLOT=0 SRC_URI=mirror://gnu/plotutils/plotutils-2.6.tar.gz _eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 384ae111f3649d456ed1754e3e1c4f6e libtool 177b3e32837e245539b46f16c43afed8 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=16212b6c73285e2df5d8912daf51b7b2 +_md5_=8b6baa2f49e0528ca99eddf51cd670f7 diff --git a/metadata/md5-cache/media-libs/sg-1.5 b/metadata/md5-cache/media-libs/sg-1.5 index a2c3e1f610ed..d857b64aef82 100644 --- a/metadata/md5-cache/media-libs/sg-1.5 +++ b/metadata/md5-cache/media-libs/sg-1.5 @@ -1,7 +1,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=dev-libs/maloc x11-libs/libXaw x11-libs/motif || ( =sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=Socket Graphics tool for displaying polygons -EAPI=4 +EAPI=5 HOMEPAGE=http://fetk.org/codes/sg/index.html IUSE=doc static-libs KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux @@ -10,4 +10,4 @@ RDEPEND=dev-libs/maloc x11-libs/libXaw x11-libs/motif || ( media-libs/libexif-0.6.9 ) raw? ( media-gfx/dcraw ) ) mythmusic? ( >=media-libs/flac-1.1.2 >=media-libs/libvorbis-1.0 >=media-libs/taglib-1.6 media-sound/lame virtual/opengl cdda? ( dev-libs/libcdio cdr? ( virtual/cdrtools ) ) fftw? ( sci-libs/fftw ) ) mythnetvision? ( =dev-lang/python-2*[xml] dev-python/lxml dev-python/mysql-python dev-python/oauth dev-python/pycurl ) mythweather? ( dev-perl/DateManip dev-perl/DateTime-Format-ISO8601 dev-perl/ImageSize dev-perl/JSON dev-perl/SOAP-Lite dev-perl/XML-Simple dev-perl/XML-Parser dev-perl/XML-SAX dev-perl/XML-XPath ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) +DESCRIPTION=Official MythTV plugins +EAPI=5 +HOMEPAGE=http://www.mythtv.org +IUSE=mytharchive mythbrowser mythgallery mythgame mythmusic mythnetvision mythnews mythweather cdda cdr exif fftw raw +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=!media-plugins/mytharchive !media-plugins/mythbrowser !media-plugins/mythgallery !media-plugins/mythgame !media-plugins/mythmovies !media-plugins/mythmusic !media-plugins/mythnetvision !media-plugins/mythnews !media-plugins/mythweather =media-tv/mythtv-0.25.3_p20130422*[python] mytharchive? ( app-cdr/dvd+rw-tools dev-python/imaging media-video/dvdauthor media-video/mjpegtools[png] media-video/transcode virtual/cdrtools ) mythgallery? ( media-libs/tiff virtual/opengl exif? ( >media-libs/libexif-0.6.9 ) raw? ( media-gfx/dcraw ) ) mythmusic? ( >=media-libs/flac-1.1.2 >=media-libs/libvorbis-1.0 >=media-libs/taglib-1.6 media-sound/lame virtual/opengl cdda? ( dev-libs/libcdio cdr? ( virtual/cdrtools ) ) fftw? ( sci-libs/fftw ) ) mythnetvision? ( =dev-lang/python-2*[xml] dev-python/lxml dev-python/mysql-python dev-python/oauth dev-python/pycurl ) mythweather? ( dev-perl/DateManip dev-perl/DateTime-Format-ISO8601 dev-perl/ImageSize dev-perl/JSON dev-perl/SOAP-Lite dev-perl/XML-Simple dev-perl/XML-Parser dev-perl/XML-SAX dev-perl/XML-XPath ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) +REQUIRED_USE=cdda? ( mythmusic ) cdr? ( mythmusic cdda ) exif? ( mythgallery ) fftw? ( mythmusic ) mythnews? ( mythbrowser ) raw? ( mythgallery ) +SLOT=0 +SRC_URI=ftp://ftp.osuosl.org/pub/mythtv/mythplugins-0.25.3.tar.bz2 http://dev.gentoo.org/~cardoe/distfiles/mythplugins-0.25.3-dc6d68a2.tar.xz +_eclasses_=eutils 384ae111f3649d456ed1754e3e1c4f6e multilib 892e597faee02a5b94eb02ab512e7622 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=1c3f3dace2fb2957e799f9495832bc32 diff --git a/metadata/md5-cache/media-tv/freevo-1.7.6.1 b/metadata/md5-cache/media-tv/freevo-1.7.6.1 index 8d5de89ea184..d758f8780085 100644 --- a/metadata/md5-cache/media-tv/freevo-1.7.6.1 +++ b/metadata/md5-cache/media-tv/freevo-1.7.6.1 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile install postinst postrm prepare setup -DEPEND==dev-lang/python-2* +DEPEND==dev-lang/python-2* =dev-lang/python-2*[xml] DESCRIPTION=Digital video jukebox (PVR, DVR). EAPI=3 HOMEPAGE=http://www.freevo.org/ IUSE=directfb doc dvd fbcon gphoto2 lirc matrox minimal mixer nls tv X KEYWORDS=amd64 ppc x86 LICENSE=GPL-2 -RDEPEND=>=dev-python/pygame-1.5.6 >=dev-python/pyxml-0.8.2 >=dev-python/imaging-1.1.3 >=dev-python/twisted-2.4 >=dev-python/twisted-web-0.6 >=media-video/mplayer-0.92[directfb?,fbcon?] >=media-libs/freetype-2.1.4 >=media-libs/libsdl-1.2.5[directfb?,fbcon?] media-libs/sdl-image[jpeg,png] >=sys-apps/sed-4 >=dev-python/elementtree-1.2.6 >=dev-python/beautifulsoup-3.0 >=dev-python/kaa-base-0.2.0 >=dev-python/kaa-metadata-0.7.1 >=dev-python/kaa-imlib2-0.2.2 dvd? ( >=media-video/xine-ui-0.9.22 >=media-video/lsdvd-0.10 media-libs/xine-lib[directfb?,fbcon?] ) gphoto2? ( media-gfx/gphoto2 ) lirc? ( app-misc/lirc >=dev-python/pylirc-0.0.3 ) matrox? ( >=media-video/matroxset-0.3 ) mixer? ( media-sound/aumix ) tv? ( media-tv/xmltv ) =dev-lang/python-2* +RDEPEND=>=dev-python/pygame-1.5.6 >=dev-python/pyxml-0.8.2 >=dev-python/imaging-1.1.3 >=dev-python/twisted-2.4 >=dev-python/twisted-web-0.6 >=media-video/mplayer-0.92[directfb?,fbcon?] >=media-libs/freetype-2.1.4 >=media-libs/libsdl-1.2.5[directfb?,fbcon?] media-libs/sdl-image[jpeg,png] >=sys-apps/sed-4 >=dev-python/beautifulsoup-3.0 >=dev-python/kaa-base-0.2.0 >=dev-python/kaa-metadata-0.7.1 >=dev-python/kaa-imlib2-0.2.2 dvd? ( >=media-video/xine-ui-0.9.22 >=media-video/lsdvd-0.10 media-libs/xine-lib[directfb?,fbcon?] ) gphoto2? ( media-gfx/gphoto2 ) lirc? ( app-misc/lirc >=dev-python/pylirc-0.0.3 ) matrox? ( >=media-video/matroxset-0.3 ) mixer? ( media-sound/aumix ) tv? ( media-tv/xmltv ) =dev-lang/python-2* =dev-lang/python-2*[xml] SLOT=0 SRC_URI=mirror://sourceforge/freevo/freevo-1.7.6.1.tar.gz _eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 multilib 892e597faee02a5b94eb02ab512e7622 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=7c4b2a1d186482ce9f8cf3be7d2b569b +_md5_=99c5d9f7a9add7066b1eea35ec94e2f1 diff --git a/metadata/md5-cache/media-tv/mythtv-0.25.3_p20130422 b/metadata/md5-cache/media-tv/mythtv-0.25.3_p20130422 new file mode 100644 index 000000000000..65b62b3ceade --- /dev/null +++ b/metadata/md5-cache/media-tv/mythtv-0.25.3_p20130422 @@ -0,0 +1,14 @@ +DEFINED_PHASES=config configure info install postinst postrm preinst prepare setup +DEPEND=>=media-libs/freetype-2.0 sys-libs/zlib x11-libs/libX11 x11-libs/libXext x11-libs/libXinerama x11-libs/libXv x11-libs/libXrandr x11-libs/libXxf86vm >=dev-qt/qtcore-4.7.2:4 >=dev-qt/qtdbus-4.7.2:4 >=dev-qt/qtgui-4.7.2:4 >=dev-qt/qtscript-4.7.2:4 >=dev-qt/qtsql-4.7.2:4[mysql] >=dev-qt/qtopengl-4.7.2:4[egl?] >=dev-qt/qtwebkit-4.7.2:4 x11-misc/wmctrl virtual/mysql virtual/opengl alsa? ( >=media-libs/alsa-lib-1.0.24 ) bluray? ( dev-libs/libcdio media-libs/libbluray ) cec? ( dev-libs/libcec ) dvb? ( media-libs/libdvb virtual/linuxtv-dvb-headers ) dvd? ( dev-libs/libcdio ) egl? ( media-libs/mesa[egl] ) fftw? ( sci-libs/fftw:3.0 ) hls? ( media-libs/faac media-libs/libvpx >=media-libs/x264-0.0.20110426 >=media-sound/lame-3.93.1 ) ieee1394? ( >=sys-libs/libraw1394-1.2.0 >=sys-libs/libavc1394-0.5.3 >=media-libs/libiec61883-1.0.0 ) jack? ( media-sound/jack-audio-connection-kit ) lcd? ( app-misc/lcdproc ) libass? ( >=media-libs/libass-0.9.11 ) lirc? ( app-misc/lirc ) perl? ( dev-perl/DBD-mysql dev-perl/Net-UPnP dev-perl/LWP-Protocol-https dev-perl/HTTP-Message dev-perl/IO-Socket-INET6 >=dev-perl/libwww-perl-5 ) pulseaudio? ( media-sound/pulseaudio ) python? ( dev-python/mysql-python dev-python/lxml dev-python/urlgrabber ) raop? ( dev-libs/openssl net-dns/avahi[mdnsresponder-compat] ) theora? ( media-libs/libtheora ) vaapi? ( x11-libs/libva ) vdpau? ( x11-libs/libvdpau ) vorbis? ( >=media-libs/libvorbis-1.0 ) xml? ( >=dev-libs/libxml2-2.6.0 ) xvid? ( >=media-libs/xvid-1.1.0 ) !media-tv/mythtv-bindings !x11-themes/mythtv-themes dev-lang/yasm x11-proto/xineramaproto x11-proto/xf86vidmodeproto python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) +DESCRIPTION=Homebrew PVR project +EAPI=5 +HOMEPAGE=http://www.mythtv.org +IUSE=alsa altivec libass autostart bluray cec crystalhd debug dvb dvd egl fftw +hls ieee1394 jack lcd lirc perl pulseaudio python raop +theora vaapi vdpau +vorbis +xml xmltv +xvid input_devices_joystick +KEYWORDS=~amd64 ~x86 ~x86-linux +LICENSE=GPL-2 +RDEPEND=>=media-libs/freetype-2.0 sys-libs/zlib x11-libs/libX11 x11-libs/libXext x11-libs/libXinerama x11-libs/libXv x11-libs/libXrandr x11-libs/libXxf86vm >=dev-qt/qtcore-4.7.2:4 >=dev-qt/qtdbus-4.7.2:4 >=dev-qt/qtgui-4.7.2:4 >=dev-qt/qtscript-4.7.2:4 >=dev-qt/qtsql-4.7.2:4[mysql] >=dev-qt/qtopengl-4.7.2:4[egl?] >=dev-qt/qtwebkit-4.7.2:4 x11-misc/wmctrl virtual/mysql virtual/opengl alsa? ( >=media-libs/alsa-lib-1.0.24 ) bluray? ( dev-libs/libcdio media-libs/libbluray ) cec? ( dev-libs/libcec ) dvb? ( media-libs/libdvb virtual/linuxtv-dvb-headers ) dvd? ( dev-libs/libcdio ) egl? ( media-libs/mesa[egl] ) fftw? ( sci-libs/fftw:3.0 ) hls? ( media-libs/faac media-libs/libvpx >=media-libs/x264-0.0.20110426 >=media-sound/lame-3.93.1 ) ieee1394? ( >=sys-libs/libraw1394-1.2.0 >=sys-libs/libavc1394-0.5.3 >=media-libs/libiec61883-1.0.0 ) jack? ( media-sound/jack-audio-connection-kit ) lcd? ( app-misc/lcdproc ) libass? ( >=media-libs/libass-0.9.11 ) lirc? ( app-misc/lirc ) perl? ( dev-perl/DBD-mysql dev-perl/Net-UPnP dev-perl/LWP-Protocol-https dev-perl/HTTP-Message dev-perl/IO-Socket-INET6 >=dev-perl/libwww-perl-5 ) pulseaudio? ( media-sound/pulseaudio ) python? ( dev-python/mysql-python dev-python/lxml dev-python/urlgrabber ) raop? ( dev-libs/openssl net-dns/avahi[mdnsresponder-compat] ) theora? ( media-libs/libtheora ) vaapi? ( x11-libs/libva ) vdpau? ( x11-libs/libvdpau ) vorbis? ( >=media-libs/libvorbis-1.0 ) xml? ( >=dev-libs/libxml2-2.6.0 ) xvid? ( >=media-libs/xvid-1.1.0 ) !media-tv/mythtv-bindings !x11-themes/mythtv-themes media-fonts/corefonts media-fonts/dejavu media-fonts/liberation-fonts x11-apps/xinit autostart? ( net-dialup/mingetty x11-wm/evilwm x11-apps/xset ) dvd? ( media-libs/libdvdcss ) xmltv? ( >=media-tv/xmltv-0.5.43 ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) +REQUIRED_USE=bluray? ( xml ) theora? ( vorbis ) +SLOT=0 +SRC_URI=ftp://ftp.osuosl.org/pub/mythtv/mythtv-0.25.3.tar.bz2 http://dev.gentoo.org/~cardoe/distfiles/mythtv-0.25.3-cfa6d18d.tar.xz +_eclasses_=eutils 384ae111f3649d456ed1754e3e1c4f6e flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 892e597faee02a5b94eb02ab512e7622 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=37f4409afb441b5edc43127c6deb53bf diff --git a/metadata/md5-cache/media-video/vlc-2.0.5 b/metadata/md5-cache/media-video/vlc-2.0.5 index 4df22524eb39..b3778a6a1cbf 100644 --- a/metadata/md5-cache/media-video/vlc-2.0.5 +++ b/metadata/md5-cache/media-video/vlc-2.0.5 @@ -1,7 +1,7 @@ DEFINED_PHASES=configure install postinst prepare unpack DEPEND=>=sys-libs/zlib-1.2.5.1-r2[minizip] a52? ( >=media-libs/a52dec-0.7.4-r3 ) aalib? ( media-libs/aalib ) aac? ( >=media-libs/faad2-2.6.1 ) alsa? ( >=media-libs/alsa-lib-1.0.23 ) avahi? ( >=net-dns/avahi-0.6[dbus] ) avcodec? ( virtual/ffmpeg ) avformat? ( virtual/ffmpeg ) bidi? ( >=dev-libs/fribidi-0.10.4 ) bluray? ( >=media-libs/libbluray-0.2.1 ) cddb? ( >=media-libs/libcddb-1.2.0 ) dbus? ( >=sys-apps/dbus-1.0.2 ) dc1394? ( >=sys-libs/libraw1394-2.0.1 >=media-libs/libdc1394-2.0.2 ) dirac? ( >=media-video/dirac-0.10.0 ) directfb? ( dev-libs/DirectFB sys-libs/zlib ) dts? ( media-libs/libdca ) dvbpsi? ( >=media-libs/libdvbpsi-0.2.1 ) dvd? ( media-libs/libdvdread >=media-libs/libdvdnav-0.1.9 ) egl? ( virtual/opengl ) elibc_glibc? ( >=sys-libs/glibc-2.8 ) flac? ( media-libs/libogg >=media-libs/flac-1.1.2 ) fluidsynth? ( media-sound/fluidsynth ) fontconfig? ( media-libs/fontconfig ) gcrypt? ( >=dev-libs/libgcrypt-1.2.0 ) gme? ( media-libs/game-music-emu ) gnome? ( gnome-base/gnome-vfs ) gnutls? ( >=net-libs/gnutls-2.0.0 ) ieee1394? ( >=sys-libs/libraw1394-2.0.1 >=sys-libs/libavc1394-0.5.3 ) ios-vout? ( virtual/opengl ) jack? ( >=media-sound/jack-audio-connection-kit-0.99.0-r1 ) kate? ( >=media-libs/libkate-0.1.1 ) libass? ( >=media-libs/libass-0.9.8 media-libs/fontconfig ) libcaca? ( >=media-libs/libcaca-0.99_beta14 ) libnotify? ( x11-libs/libnotify x11-libs/gtk+:2 ) libproxy? ( net-libs/libproxy ) libsamplerate? ( media-libs/libsamplerate ) libtar? ( >=dev-libs/libtar-1.2.11-r3 ) libtiger? ( media-libs/libtiger ) linsys? ( >=media-libs/zvbi-0.2.28 ) lirc? ( app-misc/lirc ) live? ( >=media-plugins/live-2011.12.23 ) lua? ( >=dev-lang/lua-5.1 ) macosx-vout? ( virtual/opengl ) matroska? ( >=dev-libs/libebml-1.0.0 >=media-libs/libmatroska-1.0.0 ) modplug? ( >=media-libs/libmodplug-0.8.8.1 ) mp3? ( media-libs/libmad ) mpeg? ( >=media-libs/libmpeg2-0.3.2 ) mtp? ( >=media-libs/libmtp-1.0.0 ) musepack? ( >=media-sound/musepack-tools-444 ) ncurses? ( >=sys-libs/ncurses-5.9-r2[unicode] ) ogg? ( media-libs/libogg ) opengl? ( virtual/opengl >=x11-libs/libX11-1.3.99.901 ) opus? ( media-libs/opus ) png? ( media-libs/libpng sys-libs/zlib ) portaudio? ( >=media-libs/portaudio-19_pre ) postproc? ( || ( media-video/ffmpeg media-libs/libpostproc ) ) projectm? ( media-libs/libprojectm ) pulseaudio? ( >=media-sound/pulseaudio-0.9.22 ) qt4? ( dev-qt/qtgui:4 dev-qt/qtcore:4 ) samba? ( >=net-fs/samba-3.4.6[smbclient] ) schroedinger? ( >=media-libs/schroedinger-1.0.10 ) sdl? ( >=media-libs/libsdl-1.2.8 sdl-image? ( media-libs/sdl-image sys-libs/zlib ) ) shout? ( media-libs/libshout ) sid? ( media-libs/libsidplay:2 ) skins? ( x11-libs/libXext x11-libs/libXpm x11-libs/libXinerama ) speex? ( media-libs/speex ) sqlite? ( >=dev-db/sqlite-3.6.0:3 ) svg? ( >=gnome-base/librsvg-2.9.0 ) swscale? ( virtual/ffmpeg ) taglib? ( >=media-libs/taglib-1.5 sys-libs/zlib ) theora? ( >=media-libs/libtheora-1.0_beta3 ) truetype? ( media-libs/freetype virtual/ttf-fonts !fontconfig? ( media-fonts/dejavu ) ) twolame? ( media-sound/twolame ) udev? ( virtual/udev ) upnp? ( net-libs/libupnp ) v4l? ( media-libs/libv4l ) vaapi? ( x11-libs/libva ) vcdx? ( >=dev-libs/libcdio-0.78.2 >=media-video/vcdimager-0.7.22 ) vorbis? ( media-libs/libvorbis ) win32codecs? ( media-libs/win32codecs ) X? ( x11-libs/libX11 ) x264? ( >=media-libs/x264-0.0.20090923 ) xcb? ( >=x11-libs/libxcb-1.6 >=x11-libs/xcb-util-0.3.4 ) xml? ( dev-libs/libxml2 ) xosd? ( x11-libs/xosd ) zvbi? ( >=media-libs/zvbi-0.2.25 ) alsa? ( >=media-sound/alsa-headers-1.0.23 ) fbosd? ( sys-kernel/linux-headers ) kde? ( >=kde-base/kdelibs-4 ) xcb? ( x11-proto/xproto ) app-arch/xz-utils virtual/pkgconfig || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=VLC media player - Video player and streamer -EAPI=4 +EAPI=5 HOMEPAGE=http://www.videolan.org/vlc/ IUSE=a52 aac aalib alsa altivec atmo +audioqueue avahi +avcodec +avformat bidi bluray cdda cddb dbus dc1394 debug dirac direct2d directfb directx dshow dts dvb +dvbpsi dvd dxva2 elibc_glibc egl +encode fbosd fluidsynth +ffmpeg flac fontconfig +gcrypt gme gnome gnutls growl httpd ieee1394 ios-vout jack kate kde libass libcaca libnotify libproxy libsamplerate libtiger linsys libtar lirc live lua +macosx +macosx-audio +macosx-dialog-provider +macosx-eyetv +macosx-quartztext +macosx-qtkit +macosx-vout matroska media-library mmx modplug mp3 mpeg mtp musepack ncurses neon ogg omxil opengl opus optimisememory oss png portaudio +postproc projectm pulseaudio pvr +qt4 rtsp run-as-root samba schroedinger sdl sdl-image shine shout sid skins speex sqlite sse svg +swscale switcher taglib theora truetype twolame udev upnp vaapi v4l vcdx vlm vorbis waveout win32codecs wingdi wma-fixed +X x264 +xcb xml xosd xv zvbi KEYWORDS=alpha amd64 ~arm ppc ppc64 -sparc x86 ~amd64-fbsd ~x86-fbsd @@ -11,4 +11,4 @@ REQUIRED_USE=aalib? ( X ) bidi? ( truetype ) cddb? ( cdda ) dvb? ( dvbpsi ) dxva SLOT=0 SRC_URI=http://download.videolan.org/pub/videolan/vlc/2.0.5/vlc-2.0.5.tar.xz mirror://gentoo/vlc-patches-101.tar.bz2 _eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 384ae111f3649d456ed1754e3e1c4f6e flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 177b3e32837e245539b46f16c43afed8 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=dc17db7d12a487bd77967a1fedf4e6c4 +_md5_=fbccb94c3ac8fbc7c4bcac352eee2db1 diff --git a/metadata/md5-cache/media-video/vlc-2.0.6 b/metadata/md5-cache/media-video/vlc-2.0.6 index 53f116b5c9cb..c936bfeae1ef 100644 --- a/metadata/md5-cache/media-video/vlc-2.0.6 +++ b/metadata/md5-cache/media-video/vlc-2.0.6 @@ -1,7 +1,7 @@ DEFINED_PHASES=configure install postinst prepare unpack DEPEND=>=sys-libs/zlib-1.2.5.1-r2[minizip] a52? ( >=media-libs/a52dec-0.7.4-r3 ) aalib? ( media-libs/aalib ) aac? ( >=media-libs/faad2-2.6.1 ) alsa? ( >=media-libs/alsa-lib-1.0.23 ) avahi? ( >=net-dns/avahi-0.6[dbus] ) avcodec? ( virtual/ffmpeg ) avformat? ( virtual/ffmpeg ) bidi? ( >=dev-libs/fribidi-0.10.4 ) bluray? ( >=media-libs/libbluray-0.2.1 ) cddb? ( >=media-libs/libcddb-1.2.0 ) dbus? ( >=sys-apps/dbus-1.0.2 ) dc1394? ( >=sys-libs/libraw1394-2.0.1 >=media-libs/libdc1394-2.0.2 ) dirac? ( >=media-video/dirac-0.10.0 ) directfb? ( dev-libs/DirectFB sys-libs/zlib ) dts? ( media-libs/libdca ) dvbpsi? ( >=media-libs/libdvbpsi-0.2.1 ) dvd? ( media-libs/libdvdread >=media-libs/libdvdnav-0.1.9 ) egl? ( virtual/opengl ) elibc_glibc? ( >=sys-libs/glibc-2.8 ) flac? ( media-libs/libogg >=media-libs/flac-1.1.2 ) fluidsynth? ( media-sound/fluidsynth ) fontconfig? ( media-libs/fontconfig ) gcrypt? ( >=dev-libs/libgcrypt-1.2.0 ) gme? ( media-libs/game-music-emu ) gnome? ( gnome-base/gnome-vfs ) gnutls? ( >=net-libs/gnutls-2.0.0 ) ieee1394? ( >=sys-libs/libraw1394-2.0.1 >=sys-libs/libavc1394-0.5.3 ) ios-vout? ( virtual/opengl ) jack? ( >=media-sound/jack-audio-connection-kit-0.99.0-r1 ) kate? ( >=media-libs/libkate-0.1.1 ) libass? ( >=media-libs/libass-0.9.8 media-libs/fontconfig ) libcaca? ( >=media-libs/libcaca-0.99_beta14 ) libnotify? ( x11-libs/libnotify x11-libs/gtk+:2 ) libproxy? ( net-libs/libproxy ) libsamplerate? ( media-libs/libsamplerate ) libtar? ( >=dev-libs/libtar-1.2.11-r3 ) libtiger? ( media-libs/libtiger ) linsys? ( >=media-libs/zvbi-0.2.28 ) lirc? ( app-misc/lirc ) live? ( >=media-plugins/live-2011.12.23 ) lua? ( >=dev-lang/lua-5.1 ) macosx-vout? ( virtual/opengl ) matroska? ( >=dev-libs/libebml-1.0.0 >=media-libs/libmatroska-1.0.0 ) modplug? ( >=media-libs/libmodplug-0.8.8.1 ) mp3? ( media-libs/libmad ) mpeg? ( >=media-libs/libmpeg2-0.3.2 ) mtp? ( >=media-libs/libmtp-1.0.0 ) musepack? ( >=media-sound/musepack-tools-444 ) ncurses? ( >=sys-libs/ncurses-5.9-r2[unicode] ) ogg? ( media-libs/libogg ) opengl? ( virtual/opengl >=x11-libs/libX11-1.3.99.901 ) opus? ( media-libs/opus ) png? ( media-libs/libpng sys-libs/zlib ) portaudio? ( >=media-libs/portaudio-19_pre ) postproc? ( || ( media-video/ffmpeg media-libs/libpostproc ) ) projectm? ( media-libs/libprojectm ) pulseaudio? ( >=media-sound/pulseaudio-0.9.22 ) qt4? ( dev-qt/qtgui:4 dev-qt/qtcore:4 ) samba? ( >=net-fs/samba-3.4.6[smbclient] ) schroedinger? ( >=media-libs/schroedinger-1.0.10 ) sdl? ( >=media-libs/libsdl-1.2.8 sdl-image? ( media-libs/sdl-image sys-libs/zlib ) ) shout? ( media-libs/libshout ) sid? ( media-libs/libsidplay:2 ) skins? ( x11-libs/libXext x11-libs/libXpm x11-libs/libXinerama ) speex? ( media-libs/speex ) sqlite? ( >=dev-db/sqlite-3.6.0:3 ) svg? ( >=gnome-base/librsvg-2.9.0 ) swscale? ( virtual/ffmpeg ) taglib? ( >=media-libs/taglib-1.5 sys-libs/zlib ) theora? ( >=media-libs/libtheora-1.0_beta3 ) truetype? ( media-libs/freetype virtual/ttf-fonts !fontconfig? ( media-fonts/dejavu ) ) twolame? ( media-sound/twolame ) udev? ( virtual/udev ) upnp? ( net-libs/libupnp ) v4l? ( media-libs/libv4l ) vaapi? ( x11-libs/libva ) vcdx? ( >=dev-libs/libcdio-0.78.2 >=media-video/vcdimager-0.7.22 ) vorbis? ( media-libs/libvorbis ) win32codecs? ( media-libs/win32codecs ) X? ( x11-libs/libX11 ) x264? ( >=media-libs/x264-0.0.20090923 ) xcb? ( >=x11-libs/libxcb-1.6 >=x11-libs/xcb-util-0.3.4 ) xml? ( dev-libs/libxml2 ) xosd? ( x11-libs/xosd ) zvbi? ( >=media-libs/zvbi-0.2.25 ) alsa? ( >=media-sound/alsa-headers-1.0.23 ) fbosd? ( sys-kernel/linux-headers ) kde? ( >=kde-base/kdelibs-4 ) xcb? ( x11-proto/xproto ) app-arch/xz-utils virtual/pkgconfig || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=VLC media player - Video player and streamer -EAPI=4 +EAPI=5 HOMEPAGE=http://www.videolan.org/vlc/ IUSE=a52 aac aalib alsa altivec atmo +audioqueue avahi +avcodec +avformat bidi bluray cdda cddb dbus dc1394 debug dirac direct2d directfb directx dshow dts dvb +dvbpsi dvd dxva2 elibc_glibc egl +encode fbosd fluidsynth +ffmpeg flac fontconfig +gcrypt gme gnome gnutls growl httpd ieee1394 ios-vout jack kate kde libass libcaca libnotify libproxy libsamplerate libtiger linsys libtar lirc live lua +macosx +macosx-audio +macosx-dialog-provider +macosx-eyetv +macosx-quartztext +macosx-qtkit +macosx-vout matroska media-library mmx modplug mp3 mpeg mtp musepack ncurses neon ogg omxil opengl opus optimisememory oss png portaudio +postproc projectm pulseaudio pvr +qt4 rtsp run-as-root samba schroedinger sdl sdl-image shine shout sid skins speex sqlite sse svg +swscale switcher taglib theora truetype twolame udev upnp vaapi v4l vcdx vlm vorbis waveout win32codecs wingdi wma-fixed +X x264 +xcb xml xosd xv zvbi KEYWORDS=~alpha ~amd64 ~arm ~ppc ~ppc64 -sparc ~x86 ~amd64-fbsd ~x86-fbsd @@ -11,4 +11,4 @@ REQUIRED_USE=aalib? ( X ) bidi? ( truetype ) cddb? ( cdda ) dvb? ( dvbpsi ) dxva SLOT=0 SRC_URI=http://download.videolan.org/pub/videolan/vlc/2.0.6/vlc-2.0.6.tar.xz mirror://gentoo/vlc-patches-101.tar.bz2 _eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 384ae111f3649d456ed1754e3e1c4f6e flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 177b3e32837e245539b46f16c43afed8 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=ea9b451ddd10c345092b759991a4127e +_md5_=b8890ebc1bec7d672f2e79750875f18f diff --git a/metadata/md5-cache/media-video/vlc-2.0.9999 b/metadata/md5-cache/media-video/vlc-2.0.9999 index 910377ec4932..f69002b02bb2 100644 --- a/metadata/md5-cache/media-video/vlc-2.0.9999 +++ b/metadata/md5-cache/media-video/vlc-2.0.9999 @@ -1,7 +1,7 @@ DEFINED_PHASES=configure install postinst prepare unpack DEPEND=>=sys-libs/zlib-1.2.5.1-r2[minizip] a52? ( >=media-libs/a52dec-0.7.4-r3 ) aalib? ( media-libs/aalib ) aac? ( >=media-libs/faad2-2.6.1 ) alsa? ( >=media-libs/alsa-lib-1.0.23 ) avahi? ( >=net-dns/avahi-0.6[dbus] ) avcodec? ( virtual/ffmpeg ) avformat? ( virtual/ffmpeg ) bidi? ( >=dev-libs/fribidi-0.10.4 ) bluray? ( >=media-libs/libbluray-0.2.1 ) cddb? ( >=media-libs/libcddb-1.2.0 ) dbus? ( >=sys-apps/dbus-1.0.2 ) dc1394? ( >=sys-libs/libraw1394-2.0.1 >=media-libs/libdc1394-2.0.2 ) dirac? ( >=media-video/dirac-0.10.0 ) directfb? ( dev-libs/DirectFB sys-libs/zlib ) dts? ( media-libs/libdca ) dvbpsi? ( >=media-libs/libdvbpsi-0.2.1 ) dvd? ( media-libs/libdvdread >=media-libs/libdvdnav-0.1.9 ) egl? ( virtual/opengl ) elibc_glibc? ( >=sys-libs/glibc-2.8 ) flac? ( media-libs/libogg >=media-libs/flac-1.1.2 ) fluidsynth? ( media-sound/fluidsynth ) fontconfig? ( media-libs/fontconfig ) gcrypt? ( >=dev-libs/libgcrypt-1.2.0 ) gme? ( media-libs/game-music-emu ) gnome? ( gnome-base/gnome-vfs ) gnutls? ( >=net-libs/gnutls-2.0.0 ) ieee1394? ( >=sys-libs/libraw1394-2.0.1 >=sys-libs/libavc1394-0.5.3 ) ios-vout? ( virtual/opengl ) jack? ( >=media-sound/jack-audio-connection-kit-0.99.0-r1 ) kate? ( >=media-libs/libkate-0.1.1 ) libass? ( >=media-libs/libass-0.9.8 media-libs/fontconfig ) libcaca? ( >=media-libs/libcaca-0.99_beta14 ) libnotify? ( x11-libs/libnotify x11-libs/gtk+:2 ) libproxy? ( net-libs/libproxy ) libsamplerate? ( media-libs/libsamplerate ) libtar? ( >=dev-libs/libtar-1.2.11-r3 ) libtiger? ( media-libs/libtiger ) linsys? ( >=media-libs/zvbi-0.2.28 ) lirc? ( app-misc/lirc ) live? ( >=media-plugins/live-2011.12.23 ) lua? ( >=dev-lang/lua-5.1 ) macosx-vout? ( virtual/opengl ) matroska? ( >=dev-libs/libebml-1.0.0 >=media-libs/libmatroska-1.0.0 ) modplug? ( >=media-libs/libmodplug-0.8.8.1 ) mp3? ( media-libs/libmad ) mpeg? ( >=media-libs/libmpeg2-0.3.2 ) mtp? ( >=media-libs/libmtp-1.0.0 ) musepack? ( >=media-sound/musepack-tools-444 ) ncurses? ( sys-libs/ncurses[unicode] ) ogg? ( media-libs/libogg ) opengl? ( virtual/opengl >=x11-libs/libX11-1.3.99.901 ) png? ( media-libs/libpng sys-libs/zlib ) portaudio? ( >=media-libs/portaudio-19_pre ) postproc? ( || ( media-video/ffmpeg media-libs/libpostproc ) ) projectm? ( media-libs/libprojectm ) pulseaudio? ( >=media-sound/pulseaudio-0.9.22 ) qt4? ( dev-qt/qtgui:4 dev-qt/qtcore:4 ) samba? ( >=net-fs/samba-3.4.6[smbclient] ) schroedinger? ( >=media-libs/schroedinger-1.0.10 ) sdl? ( >=media-libs/libsdl-1.2.8 sdl-image? ( media-libs/sdl-image sys-libs/zlib ) ) shout? ( media-libs/libshout ) sid? ( media-libs/libsidplay:2 ) skins? ( x11-libs/libXext x11-libs/libXpm x11-libs/libXinerama ) speex? ( media-libs/speex ) sqlite? ( >=dev-db/sqlite-3.6.0:3 ) svg? ( >=gnome-base/librsvg-2.9.0 ) swscale? ( virtual/ffmpeg ) taglib? ( >=media-libs/taglib-1.5 sys-libs/zlib ) theora? ( >=media-libs/libtheora-1.0_beta3 ) truetype? ( media-libs/freetype virtual/ttf-fonts !fontconfig? ( media-fonts/dejavu ) ) twolame? ( media-sound/twolame ) udev? ( virtual/udev ) upnp? ( net-libs/libupnp ) v4l? ( media-libs/libv4l ) vaapi? ( x11-libs/libva ) vcdx? ( >=dev-libs/libcdio-0.78.2 >=media-video/vcdimager-0.7.22 ) vorbis? ( media-libs/libvorbis ) win32codecs? ( media-libs/win32codecs ) X? ( x11-libs/libX11 ) x264? ( >=media-libs/x264-0.0.20090923 ) xcb? ( >=x11-libs/libxcb-1.6 >=x11-libs/xcb-util-0.3.4 ) xml? ( dev-libs/libxml2 ) xosd? ( x11-libs/xosd ) zvbi? ( >=media-libs/zvbi-0.2.25 ) alsa? ( >=media-sound/alsa-headers-1.0.23 ) fbosd? ( sys-kernel/linux-headers ) kde? ( >=kde-base/kdelibs-4 ) xcb? ( x11-proto/xproto ) app-arch/xz-utils virtual/pkgconfig || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool dev-vcs/git DESCRIPTION=VLC media player - Video player and streamer -EAPI=4 +EAPI=5 HOMEPAGE=http://www.videolan.org/vlc/ IUSE=a52 aac aalib alsa altivec atmo +audioqueue avahi +avcodec +avformat bidi bluray cdda cddb dbus dc1394 debug dirac direct2d directfb directx dshow dts dvb +dvbpsi dvd dxva2 elibc_glibc egl +encode fbosd fluidsynth +ffmpeg flac fontconfig +gcrypt gme gnome gnutls growl httpd ieee1394 ios-vout jack kate kde libass libcaca libnotify libproxy libsamplerate libtiger linsys libtar lirc live lua +macosx +macosx-audio +macosx-dialog-provider +macosx-eyetv +macosx-quartztext +macosx-qtkit +macosx-vout matroska media-library mmx modplug mp3 mpeg mtp musepack ncurses neon ogg omxil opengl optimisememory oss png portaudio +postproc projectm pulseaudio pvr +qt4 rtsp run-as-root samba schroedinger sdl sdl-image shine shout sid skins speex sqlite sse svg +swscale switcher taglib theora truetype twolame udev upnp vaapi v4l vcdx vlm vorbis waveout win32codecs wingdi wma-fixed +X x264 +xcb xml xosd xv zvbi LICENSE=LGPL-2.1 GPL-2 @@ -9,4 +9,4 @@ RDEPEND=>=sys-libs/zlib-1.2.5.1-r2[minizip] a52? ( >=media-libs/a52dec-0.7.4-r3 REQUIRED_USE=aalib? ( X ) bidi? ( truetype ) cddb? ( cdda ) dvb? ( dvbpsi ) dxva2? ( avcodec ) egl? ( X ) ffmpeg? ( avcodec avformat swscale postproc ) fontconfig? ( truetype ) gnutls? ( gcrypt ) httpd? ( lua ) libcaca? ( X ) libtar? ( skins ) libtiger? ( kate ) media-library? ( sqlite ) qt4? ( X ) sdl? ( X ) skins? ( truetype qt4 X ) switcher? ( avcodec ) vaapi? ( avcodec X ) vlm? ( encode ) xosd? ( X ) xv? ( xcb ) SLOT=0 _eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 384ae111f3649d456ed1754e3e1c4f6e flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 libtool 177b3e32837e245539b46f16c43afed8 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=31e4014604ecde13fa6099b2a85a4e20 +_md5_=7102c03979753ad25d17a9e389ae82c2 diff --git a/metadata/md5-cache/media-video/vlc-9999 b/metadata/md5-cache/media-video/vlc-9999 index a398896e5bc4..383286354c84 100644 --- a/metadata/md5-cache/media-video/vlc-9999 +++ b/metadata/md5-cache/media-video/vlc-9999 @@ -1,12 +1,12 @@ DEFINED_PHASES=configure install postinst prepare unpack DEPEND=>=sys-libs/zlib-1.2.5.1-r2[minizip] a52? ( >=media-libs/a52dec-0.7.4-r3 ) aalib? ( media-libs/aalib ) aac? ( >=media-libs/faad2-2.6.1 ) alsa? ( >=media-libs/alsa-lib-1.0.23 ) avahi? ( >=net-dns/avahi-0.6[dbus] ) avcodec? ( virtual/ffmpeg ) avformat? ( virtual/ffmpeg ) bidi? ( >=dev-libs/fribidi-0.10.4 ) bluray? ( >=media-libs/libbluray-0.2.1 ) cddb? ( >=media-libs/libcddb-1.2.0 ) dbus? ( >=sys-apps/dbus-1.0.2 ) dc1394? ( >=sys-libs/libraw1394-2.0.1 >=media-libs/libdc1394-2.0.2 ) dirac? ( >=media-video/dirac-0.10.0 ) directfb? ( dev-libs/DirectFB sys-libs/zlib ) dts? ( media-libs/libdca ) dvbpsi? ( >=media-libs/libdvbpsi-0.2.1 ) dvd? ( media-libs/libdvdread >=media-libs/libdvdnav-0.1.9 ) egl? ( virtual/opengl ) elibc_glibc? ( >=sys-libs/glibc-2.8 ) flac? ( media-libs/libogg >=media-libs/flac-1.1.2 ) fluidsynth? ( >=media-sound/fluidsynth-1.1.0 ) fontconfig? ( media-libs/fontconfig ) gcrypt? ( >=dev-libs/libgcrypt-1.2.0 ) gme? ( media-libs/game-music-emu ) gnome? ( gnome-base/gnome-vfs ) gnutls? ( >=net-libs/gnutls-2.0.0 ) ieee1394? ( >=sys-libs/libraw1394-2.0.1 >=sys-libs/libavc1394-0.5.3 ) ios-vout? ( virtual/opengl ) jack? ( >=media-sound/jack-audio-connection-kit-0.99.0-r1 ) kate? ( >=media-libs/libkate-0.1.1 ) libass? ( >=media-libs/libass-0.9.8 media-libs/fontconfig ) libcaca? ( >=media-libs/libcaca-0.99_beta14 ) libnotify? ( x11-libs/libnotify x11-libs/gtk+:2 ) libsamplerate? ( media-libs/libsamplerate ) libtar? ( >=dev-libs/libtar-1.2.11-r3 ) libtiger? ( media-libs/libtiger ) linsys? ( >=media-libs/zvbi-0.2.28 ) lirc? ( app-misc/lirc ) live? ( >=media-plugins/live-2011.12.23 ) lua? ( >=dev-lang/lua-5.1 ) macosx-vout? ( virtual/opengl ) matroska? ( >=dev-libs/libebml-1.0.0 >=media-libs/libmatroska-1.0.0 ) modplug? ( >=media-libs/libmodplug-0.8.8.1 ) mp3? ( media-libs/libmad ) mpeg? ( >=media-libs/libmpeg2-0.3.2 ) mtp? ( >=media-libs/libmtp-1.0.0 ) musepack? ( >=media-sound/musepack-tools-444 ) ncurses? ( sys-libs/ncurses[unicode] ) ogg? ( media-libs/libogg ) opengl? ( virtual/opengl >=x11-libs/libX11-1.3.99.901 ) png? ( media-libs/libpng sys-libs/zlib ) postproc? ( || ( media-video/ffmpeg media-libs/libpostproc ) ) projectm? ( media-libs/libprojectm media-fonts/dejavu ) pulseaudio? ( >=media-sound/pulseaudio-0.9.22 ) qt4? ( dev-qt/qtgui:4 dev-qt/qtcore:4 ) samba? ( >=net-fs/samba-3.4.6[smbclient] ) schroedinger? ( >=media-libs/schroedinger-1.0.10 ) sdl? ( >=media-libs/libsdl-1.2.8 sdl-image? ( media-libs/sdl-image sys-libs/zlib ) ) shout? ( media-libs/libshout ) sid? ( media-libs/libsidplay:2 ) skins? ( x11-libs/libXext x11-libs/libXpm x11-libs/libXinerama ) speex? ( media-libs/speex ) svg? ( >=gnome-base/librsvg-2.9.0 ) swscale? ( virtual/ffmpeg ) taglib? ( >=media-libs/taglib-1.5 sys-libs/zlib ) theora? ( >=media-libs/libtheora-1.0_beta3 ) truetype? ( media-libs/freetype virtual/ttf-fonts !fontconfig? ( media-fonts/dejavu ) ) twolame? ( media-sound/twolame ) udev? ( virtual/udev ) upnp? ( net-libs/libupnp ) v4l? ( media-libs/libv4l ) vaapi? ( x11-libs/libva ) vcdx? ( >=dev-libs/libcdio-0.78.2 >=media-video/vcdimager-0.7.22 ) vorbis? ( media-libs/libvorbis ) win32codecs? ( media-libs/win32codecs ) X? ( x11-libs/libX11 ) x264? ( >=media-libs/x264-0.0.20090923 ) xcb? ( >=x11-libs/libxcb-1.6 >=x11-libs/xcb-util-0.3.4 ) xml? ( dev-libs/libxml2 ) zvbi? ( >=media-libs/zvbi-0.2.25 ) alsa? ( >=media-sound/alsa-headers-1.0.23 ) kde? ( >=kde-base/kdelibs-4 ) xcb? ( x11-proto/xproto ) app-arch/xz-utils virtual/pkgconfig || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool dev-vcs/git DESCRIPTION=VLC media player - Video player and streamer -EAPI=4 +EAPI=5 HOMEPAGE=http://www.videolan.org/vlc/ -IUSE=a52 aac aalib alsa altivec atmo +audioqueue avahi +avcodec +avformat bidi bluray cdda cddb dbus dc1394 debug dirac directfb directx dts dvb +dvbpsi dvd dxva2 elibc_glibc egl +encode fluidsynth +ffmpeg flac fontconfig +gcrypt gme gnome gnutls growl httpd ieee1394 ios-vout jack kate kde libass libcaca libnotify libsamplerate libtiger linsys libtar lirc live lua +macosx +macosx-audio +macosx-dialog-provider +macosx-eyetv +macosx-quartztext +macosx-qtkit +macosx-vout matroska media-library mmx modplug mp3 mpeg mtp musepack ncurses neon ogg omxil opengl optimisememory oss png +postproc projectm pulseaudio +qt4 rtsp run-as-root samba schroedinger sdl sdl-image shine shout sid skins speex sse svg +swscale taglib theora truetype twolame udev upnp vaapi v4l vcdx vlm vorbis waveout wma-fixed +X x264 +xcb xml xv zvbi +IUSE=a52 aac aalib alsa altivec atmo +audioqueue avahi +avcodec +avformat bidi bluray cdda cddb dbus dc1394 debug dirac directfb directx dts dvb +dvbpsi dvd dxva2 elibc_glibc egl +encode fluidsynth +ffmpeg flac fontconfig +gcrypt gme gnome gnutls growl httpd ieee1394 ios-vout jack kate kde libass libcaca libnotify libsamplerate libtiger linsys libtar lirc live lua +macosx +macosx-audio +macosx-dialog-provider +macosx-eyetv +macosx-quartztext +macosx-qtkit +macosx-vout matroska media-library mmx modplug mp3 mpeg mtp musepack ncurses neon ogg omxil opengl optimisememory oss png +postproc projectm pulseaudio +qt4 rtsp run-as-root samba schroedinger sdl sdl-image shine shout sid skins speex sse svg +swscale taglib theora truetype twolame udev upnp vaapi v4l vcdx vlm vorbis waveout win32codecs wma-fixed +X x264 +xcb xml xv zvbi LICENSE=LGPL-2.1 GPL-2 RDEPEND=>=sys-libs/zlib-1.2.5.1-r2[minizip] a52? ( >=media-libs/a52dec-0.7.4-r3 ) aalib? ( media-libs/aalib ) aac? ( >=media-libs/faad2-2.6.1 ) alsa? ( >=media-libs/alsa-lib-1.0.23 ) avahi? ( >=net-dns/avahi-0.6[dbus] ) avcodec? ( virtual/ffmpeg ) avformat? ( virtual/ffmpeg ) bidi? ( >=dev-libs/fribidi-0.10.4 ) bluray? ( >=media-libs/libbluray-0.2.1 ) cddb? ( >=media-libs/libcddb-1.2.0 ) dbus? ( >=sys-apps/dbus-1.0.2 ) dc1394? ( >=sys-libs/libraw1394-2.0.1 >=media-libs/libdc1394-2.0.2 ) dirac? ( >=media-video/dirac-0.10.0 ) directfb? ( dev-libs/DirectFB sys-libs/zlib ) dts? ( media-libs/libdca ) dvbpsi? ( >=media-libs/libdvbpsi-0.2.1 ) dvd? ( media-libs/libdvdread >=media-libs/libdvdnav-0.1.9 ) egl? ( virtual/opengl ) elibc_glibc? ( >=sys-libs/glibc-2.8 ) flac? ( media-libs/libogg >=media-libs/flac-1.1.2 ) fluidsynth? ( >=media-sound/fluidsynth-1.1.0 ) fontconfig? ( media-libs/fontconfig ) gcrypt? ( >=dev-libs/libgcrypt-1.2.0 ) gme? ( media-libs/game-music-emu ) gnome? ( gnome-base/gnome-vfs ) gnutls? ( >=net-libs/gnutls-2.0.0 ) ieee1394? ( >=sys-libs/libraw1394-2.0.1 >=sys-libs/libavc1394-0.5.3 ) ios-vout? ( virtual/opengl ) jack? ( >=media-sound/jack-audio-connection-kit-0.99.0-r1 ) kate? ( >=media-libs/libkate-0.1.1 ) libass? ( >=media-libs/libass-0.9.8 media-libs/fontconfig ) libcaca? ( >=media-libs/libcaca-0.99_beta14 ) libnotify? ( x11-libs/libnotify x11-libs/gtk+:2 ) libsamplerate? ( media-libs/libsamplerate ) libtar? ( >=dev-libs/libtar-1.2.11-r3 ) libtiger? ( media-libs/libtiger ) linsys? ( >=media-libs/zvbi-0.2.28 ) lirc? ( app-misc/lirc ) live? ( >=media-plugins/live-2011.12.23 ) lua? ( >=dev-lang/lua-5.1 ) macosx-vout? ( virtual/opengl ) matroska? ( >=dev-libs/libebml-1.0.0 >=media-libs/libmatroska-1.0.0 ) modplug? ( >=media-libs/libmodplug-0.8.8.1 ) mp3? ( media-libs/libmad ) mpeg? ( >=media-libs/libmpeg2-0.3.2 ) mtp? ( >=media-libs/libmtp-1.0.0 ) musepack? ( >=media-sound/musepack-tools-444 ) ncurses? ( sys-libs/ncurses[unicode] ) ogg? ( media-libs/libogg ) opengl? ( virtual/opengl >=x11-libs/libX11-1.3.99.901 ) png? ( media-libs/libpng sys-libs/zlib ) postproc? ( || ( media-video/ffmpeg media-libs/libpostproc ) ) projectm? ( media-libs/libprojectm media-fonts/dejavu ) pulseaudio? ( >=media-sound/pulseaudio-0.9.22 ) qt4? ( dev-qt/qtgui:4 dev-qt/qtcore:4 ) samba? ( >=net-fs/samba-3.4.6[smbclient] ) schroedinger? ( >=media-libs/schroedinger-1.0.10 ) sdl? ( >=media-libs/libsdl-1.2.8 sdl-image? ( media-libs/sdl-image sys-libs/zlib ) ) shout? ( media-libs/libshout ) sid? ( media-libs/libsidplay:2 ) skins? ( x11-libs/libXext x11-libs/libXpm x11-libs/libXinerama ) speex? ( media-libs/speex ) svg? ( >=gnome-base/librsvg-2.9.0 ) swscale? ( virtual/ffmpeg ) taglib? ( >=media-libs/taglib-1.5 sys-libs/zlib ) theora? ( >=media-libs/libtheora-1.0_beta3 ) truetype? ( media-libs/freetype virtual/ttf-fonts !fontconfig? ( media-fonts/dejavu ) ) twolame? ( media-sound/twolame ) udev? ( virtual/udev ) upnp? ( net-libs/libupnp ) v4l? ( media-libs/libv4l ) vaapi? ( x11-libs/libva ) vcdx? ( >=dev-libs/libcdio-0.78.2 >=media-video/vcdimager-0.7.22 ) vorbis? ( media-libs/libvorbis ) win32codecs? ( media-libs/win32codecs ) X? ( x11-libs/libX11 ) x264? ( >=media-libs/x264-0.0.20090923 ) xcb? ( >=x11-libs/libxcb-1.6 >=x11-libs/xcb-util-0.3.4 ) xml? ( dev-libs/libxml2 ) zvbi? ( >=media-libs/zvbi-0.2.25 ) REQUIRED_USE=aalib? ( X ) bidi? ( truetype ) cddb? ( cdda ) dvb? ( dvbpsi ) dxva2? ( avcodec ) egl? ( X ) ffmpeg? ( avcodec avformat swscale postproc ) fontconfig? ( truetype ) gnutls? ( gcrypt ) httpd? ( lua ) libcaca? ( X ) libtar? ( skins ) libtiger? ( kate ) qt4? ( X ) sdl? ( X ) skins? ( truetype qt4 X ) vaapi? ( avcodec X ) vlm? ( encode ) xv? ( xcb ) SLOT=0 _eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 384ae111f3649d456ed1754e3e1c4f6e flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 libtool 177b3e32837e245539b46f16c43afed8 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=90360cba951aaaa60407f8e58705ef68 +_md5_=97323f003734e6800b89673b134ade0a diff --git a/metadata/md5-cache/net-dns/pdns-recursor-3.5.1 b/metadata/md5-cache/net-dns/pdns-recursor-3.5.1 new file mode 100644 index 000000000000..1db14bc8eebb --- /dev/null +++ b/metadata/md5-cache/net-dns/pdns-recursor-3.5.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare setup +DEPEND=lua? ( >=dev-lang/lua-5.1 ) >=dev-libs/boost-1.33.1 +DESCRIPTION=The PowerDNS Recursor +EAPI=4 +HOMEPAGE=http://www.powerdns.com/ +IUSE=lua +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=lua? ( >=dev-lang/lua-5.1 ) !=net-print/cups-1.6.2-r4[-lprng-compat] !=net-print/cups-1.6.2-r4[-lprng-compat] !=net-libs/pjsip-1.8.10 sys-apps/dbus gsm? ( media-sound/gsm ) speex? ( media-libs/speex ) networkmanager? ( net-misc/networkmanager ) gnome? ( dev-libs/atk dev-libs/check dev-libs/log4c gnome-base/libgnomeui gnome-base/orbit:2 gnome-extra/evolution-data-server media-libs/fontconfig media-libs/freetype media-libs/libart_lgpl net-libs/libsoup:2.4 net-libs/webkit-gtk:3 x11-libs/cairo x11-libs/libICE x11-libs/libnotify x11-libs/libSM ) >=dev-util/astyle-1.24 doxygen? ( app-doc/doxygen ) gnome? ( app-text/gnome-doc-utils ) || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4 -DESCRIPTION=SFLphone is a robust standards-compliant enterprise softphone, for desktop and embedded systems. -EAPI=3 -HOMEPAGE=http://www.sflphone.org/ -IUSE=debug doxygen gnome gsm networkmanager speex static-libs debug -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=dev-cpp/commoncpp2 dev-libs/dbus-c++ dev-libs/expat dev-libs/openssl dev-libs/libpcre dev-libs/libyaml media-libs/alsa-lib media-libs/celt media-libs/libsamplerate media-sound/pulseaudio net-libs/ccrtp net-libs/iax net-libs/libzrtpcpp >=net-libs/pjsip-1.8.10 sys-apps/dbus gsm? ( media-sound/gsm ) speex? ( media-libs/speex ) networkmanager? ( net-misc/networkmanager ) gnome? ( dev-libs/atk dev-libs/check dev-libs/log4c gnome-base/libgnomeui gnome-base/orbit:2 gnome-extra/evolution-data-server media-libs/fontconfig media-libs/freetype media-libs/libart_lgpl net-libs/libsoup:2.4 net-libs/webkit-gtk:3 x11-libs/cairo x11-libs/libICE x11-libs/libnotify x11-libs/libSM ) -SLOT=0 -SRC_URI=http://www.elvanor.net/files/gentoo/sflphone-1.0.1.tar.gz -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 384ae111f3649d456ed1754e3e1c4f6e fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 177b3e32837e245539b46f16c43afed8 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=3af6831ac1d763bd50d88411c438c13c diff --git a/metadata/md5-cache/net-voip/sflphone-1.0.1-r1 b/metadata/md5-cache/net-voip/sflphone-1.0.1-r1 deleted file mode 100644 index 258c9d8294df..000000000000 --- a/metadata/md5-cache/net-voip/sflphone-1.0.1-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack -DEPEND=dev-cpp/commoncpp2 dev-libs/dbus-c++ dev-libs/expat dev-libs/openssl dev-libs/libpcre dev-libs/libyaml media-libs/alsa-lib media-libs/celt media-libs/libsamplerate media-sound/pulseaudio net-libs/ccrtp net-libs/iax net-libs/libzrtpcpp >=net-libs/pjsip-1.8.10 sys-apps/dbus gsm? ( media-sound/gsm ) speex? ( media-libs/speex ) networkmanager? ( net-misc/networkmanager ) gnome? ( dev-libs/atk dev-libs/check dev-libs/log4c gnome-base/libgnomeui gnome-base/orbit:2 gnome-extra/evolution-data-server media-libs/fontconfig media-libs/freetype media-libs/libart_lgpl net-libs/libsoup:2.4 net-libs/webkit-gtk:3 x11-libs/cairo x11-libs/libICE x11-libs/libnotify x11-libs/libSM ) >=dev-util/astyle-1.24 doxygen? ( app-doc/doxygen ) gnome? ( app-text/gnome-doc-utils ) || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4 -DESCRIPTION=SFLphone is a robust standards-compliant enterprise softphone, for desktop and embedded systems. -EAPI=3 -HOMEPAGE=http://www.sflphone.org/ -IUSE=debug doxygen gnome gsm networkmanager speex static-libs debug -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=dev-cpp/commoncpp2 dev-libs/dbus-c++ dev-libs/expat dev-libs/openssl dev-libs/libpcre dev-libs/libyaml media-libs/alsa-lib media-libs/celt media-libs/libsamplerate media-sound/pulseaudio net-libs/ccrtp net-libs/iax net-libs/libzrtpcpp >=net-libs/pjsip-1.8.10 sys-apps/dbus gsm? ( media-sound/gsm ) speex? ( media-libs/speex ) networkmanager? ( net-misc/networkmanager ) gnome? ( dev-libs/atk dev-libs/check dev-libs/log4c gnome-base/libgnomeui gnome-base/orbit:2 gnome-extra/evolution-data-server media-libs/fontconfig media-libs/freetype media-libs/libart_lgpl net-libs/libsoup:2.4 net-libs/webkit-gtk:3 x11-libs/cairo x11-libs/libICE x11-libs/libnotify x11-libs/libSM ) -SLOT=0 -SRC_URI=http://www.elvanor.net/files/gentoo/sflphone-1.0.1.tar.gz -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 384ae111f3649d456ed1754e3e1c4f6e fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 177b3e32837e245539b46f16c43afed8 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=da4e7cb475175beccfb84640c0db9b78 diff --git a/metadata/md5-cache/net-voip/sflphone-1.2.2 b/metadata/md5-cache/net-voip/sflphone-1.2.2 new file mode 100644 index 000000000000..09b453b8b7d5 --- /dev/null +++ b/metadata/md5-cache/net-voip/sflphone-1.2.2 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack +DEPEND=dev-cpp/commoncpp2 dev-libs/dbus-c++ dev-libs/expat dev-libs/ilbc-rfc3951 dev-libs/libpcre dev-libs/libyaml dev-libs/openssl media-libs/alsa-lib media-libs/celt media-libs/libsamplerate pulseaudio? ( media-sound/pulseaudio ) net-libs/ccrtp net-libs/libzrtpcpp net-libs/pjsip sys-apps/dbus gnome? ( dev-libs/atk dev-libs/check gnome-base/libgnomeui gnome-base/orbit:2 gnome-extra/evolution-data-server media-libs/fontconfig media-libs/freetype media-libs/libart_lgpl net-libs/libsoup:2.4 net-libs/webkit-gtk:3 x11-libs/cairo x11-libs/libICE x11-libs/libnotify x11-libs/libSM ) gsm? ( media-sound/gsm ) networkmanager? ( net-misc/networkmanager ) speex? ( media-libs/speex ) >=dev-util/astyle-1.24 doxygen? ( app-doc/doxygen ) gnome? ( app-text/gnome-doc-utils ) virtual/pkgconfig || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool app-arch/xz-utils >=sys-apps/sed-4 +DESCRIPTION=SFLphone is a robust standards-compliant enterprise softphone, for desktop and embedded systems. +EAPI=4 +HOMEPAGE=http://www.sflphone.org/ +IUSE=debug doxygen gnome gsm kde networkmanager pulseaudio speex static-libs debug +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=dev-cpp/commoncpp2 dev-libs/dbus-c++ dev-libs/expat dev-libs/ilbc-rfc3951 dev-libs/libpcre dev-libs/libyaml dev-libs/openssl media-libs/alsa-lib media-libs/celt media-libs/libsamplerate pulseaudio? ( media-sound/pulseaudio ) net-libs/ccrtp net-libs/libzrtpcpp net-libs/pjsip sys-apps/dbus gnome? ( dev-libs/atk dev-libs/check gnome-base/libgnomeui gnome-base/orbit:2 gnome-extra/evolution-data-server media-libs/fontconfig media-libs/freetype media-libs/libart_lgpl net-libs/libsoup:2.4 net-libs/webkit-gtk:3 x11-libs/cairo x11-libs/libICE x11-libs/libnotify x11-libs/libSM ) gsm? ( media-sound/gsm ) networkmanager? ( net-misc/networkmanager ) speex? ( media-libs/speex ) +SLOT=0 +SRC_URI=http://www.elvanor.net/files/gentoo/sflphone-1.2.2.tar.gz +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 384ae111f3649d456ed1754e3e1c4f6e fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 177b3e32837e245539b46f16c43afed8 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=34ffb975910003904cb0cdbdcde29740 diff --git a/metadata/md5-cache/sys-apps/razercfg-0.20 b/metadata/md5-cache/sys-apps/razercfg-0.20 new file mode 100644 index 000000000000..55ad6b8af887 --- /dev/null +++ b/metadata/md5-cache/sys-apps/razercfg-0.20 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst prepare test unpack +DEPEND=sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) virtual/pkgconfig +DESCRIPTION=Utility for advanced configuration of Razer mice (DeathAdder, Krait, Lachesis) +EAPI=4 +HOMEPAGE=http://bues.ch/cms/hacking/razercfg.html +IUSE=+pm-utils qt4 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=pm-utils? ( sys-power/pm-utils ) qt4? ( dev-python/PyQt4 ) dev-lang/python +SLOT=0 +SRC_URI=http://bues.ch/razercfg/razercfg-0.20.tar.bz2 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 384ae111f3649d456ed1754e3e1c4f6e flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=5fe84bd3b014bac6e14aa066fe44f669 diff --git a/metadata/md5-cache/sys-apps/sysvinit-2.88-r4 b/metadata/md5-cache/sys-apps/sysvinit-2.88-r4 index ef3892bb68ce..7ca3697b98df 100644 --- a/metadata/md5-cache/sys-apps/sysvinit-2.88-r4 +++ b/metadata/md5-cache/sys-apps/sysvinit-2.88-r4 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile install postinst prepare -DEPEND=selinux? ( >=sys-libs/libselinux-1.28 ) !=sys-libs/libselinux-1.28 ) !>=sys-apps/util-linux-2.23 virtual/os-headers DESCRIPTION=/sbin/init - parent of all processes EAPI=4 HOMEPAGE=http://savannah.nongnu.org/projects/sysvinit IUSE=selinux ibm static kernel_FreeBSD KEYWORDS=alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 LICENSE=GPL-2 -RDEPEND=selinux? ( >=sys-libs/libselinux-1.28 ) !=sys-libs/libselinux-1.28 ) !>=sys-apps/util-linux-2.23 SLOT=0 SRC_URI=mirror://nongnu/sysvinit/sysvinit-2.88dsf.tar.bz2 _eclasses_=eutils 384ae111f3649d456ed1754e3e1c4f6e flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=ccebe9c9341a7052e95853c12170814b +_md5_=ea32e3d208b4ce1bd79425ce8db32d67 diff --git a/metadata/md5-cache/sys-apps/sysvinit-2.88-r5 b/metadata/md5-cache/sys-apps/sysvinit-2.88-r5 index c4032f3bf994..d08b660b38c9 100644 --- a/metadata/md5-cache/sys-apps/sysvinit-2.88-r5 +++ b/metadata/md5-cache/sys-apps/sysvinit-2.88-r5 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile install postinst prepare -DEPEND=selinux? ( >=sys-libs/libselinux-1.28 ) !=sys-libs/libselinux-1.28 ) virtual/os-headers DESCRIPTION=/sbin/init - parent of all processes EAPI=4 HOMEPAGE=http://savannah.nongnu.org/projects/sysvinit IUSE=selinux ibm static kernel_FreeBSD KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 LICENSE=GPL-2 -RDEPEND=selinux? ( >=sys-libs/libselinux-1.28 ) !=sys-libs/libselinux-1.28 ) SLOT=0 SRC_URI=mirror://nongnu/sysvinit/sysvinit-2.88dsf.tar.bz2 _eclasses_=eutils 384ae111f3649d456ed1754e3e1c4f6e flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=0983b43a926473143c87bf388bd5faa0 +_md5_=afcebe2fff56c59771d09cf03143cb85 diff --git a/metadata/md5-cache/sys-apps/yum-3.4.3-r1 b/metadata/md5-cache/sys-apps/yum-3.4.3-r1 new file mode 100644 index 000000000000..e14179ba62c1 --- /dev/null +++ b/metadata/md5-cache/sys-apps/yum-3.4.3-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=install prepare setup +DEPEND=python_single_target_python2_6? ( dev-lang/python:2.6[sqlite] ) python_single_target_python2_7? ( dev-lang/python:2.7[sqlite] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] app-arch/rpm[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/sqlitecachec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-libs/libxml2[python,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/urlgrabber[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-util/intltool test? ( dev-python/nose[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] ) +DESCRIPTION=automatic updater and package installer/remover for rpm systems +EAPI=5 +HOMEPAGE=http://yum.baseurl.org/ +IUSE=test python_targets_python2_6 python_targets_python2_7 python_single_target_python2_6 python_single_target_python2_7 +KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 +LICENSE=GPL-2 +RDEPEND=python_single_target_python2_6? ( dev-lang/python:2.6[sqlite] ) python_single_target_python2_7? ( dev-lang/python:2.7[sqlite] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] app-arch/rpm[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/sqlitecachec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-libs/libxml2[python,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/urlgrabber[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] +SLOT=0 +SRC_URI=http://yum.baseurl.org//download/3.4/yum-3.4.3.tar.gz +_eclasses_=eutils 384ae111f3649d456ed1754e3e1c4f6e multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 b4f112abff5d77f982f83e1a9e554093 python-utils-r1 345dcecf1ef156d1d86a98f16d3c385c toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=e0a8815a908d281d21306bb156351e1c diff --git a/metadata/md5-cache/sys-auth/pam_usb-0.5.0 b/metadata/md5-cache/sys-auth/pam_usb-0.5.0 index f4c1514ca2a2..290dc7c11ec4 100644 --- a/metadata/md5-cache/sys-auth/pam_usb-0.5.0 +++ b/metadata/md5-cache/sys-auth/pam_usb-0.5.0 @@ -1,12 +1,13 @@ DEFINED_PHASES=compile install prepare setup -DEPEND=dev-libs/libxml2 sys-apps/dbus virtual/pam virtual/pkgconfig || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) +DEPEND=dev-libs/libxml2 sys-apps/dbus virtual/pam virtual/pkgconfig DESCRIPTION=A pam module to provide authentication using USB device -EAPI=4 +EAPI=5 HOMEPAGE=http://pamusb.org/ +IUSE=python_targets_python2_7 python_single_target_python2_7 KEYWORDS=amd64 x86 LICENSE=GPL-2 -RDEPEND=dev-libs/libxml2 sys-apps/dbus virtual/pam dev-python/celementtree dev-python/dbus-python dev-python/pygobject:2 sys-apps/pmount sys-fs/udisks:0 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) +RDEPEND=dev-libs/libxml2 sys-apps/dbus virtual/pam python_single_target_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] dev-python/dbus-python dev-python/pygobject:2 sys-apps/pmount sys-fs/udisks:0 SLOT=0 SRC_URI=mirror://sourceforge/pamusb/pam_usb-0.5.0.tar.gz -_eclasses_=eutils 384ae111f3649d456ed1754e3e1c4f6e flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 892e597faee02a5b94eb02ab512e7622 pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=36a2fe996d4e1cb2e79350e143cf7384 +_eclasses_=eutils 384ae111f3649d456ed1754e3e1c4f6e flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib 892e597faee02a5b94eb02ab512e7622 pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 python-single-r1 b4f112abff5d77f982f83e1a9e554093 python-utils-r1 345dcecf1ef156d1d86a98f16d3c385c toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=f64809eaf8421e0c6782863cf5c3aaaf diff --git a/metadata/md5-cache/sys-devel/binutils-2.23.52.0.2 b/metadata/md5-cache/sys-devel/binutils-2.23.52.0.2 new file mode 100644 index 000000000000..11b9332d6947 --- /dev/null +++ b/metadata/md5-cache/sys-devel/binutils-2.23.52.0.2 @@ -0,0 +1,11 @@ +DEFINED_PHASES=compile install postinst postrm test unpack +DEPEND=sys-devel/gnuconfig >=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) test? ( dev-util/dejagnu ) nls? ( sys-devel/gettext ) sys-devel/flex virtual/yacc +DESCRIPTION=Tools necessary to build programs +HOMEPAGE=http://sourceware.org/binutils/ +IUSE=cxx nls multitarget multislot static-libs test vanilla zlib +LICENSE=|| ( GPL-3 LGPL-3 ) +RDEPEND=>=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) +SLOT=0 +SRC_URI=mirror://kernel/linux/devel/binutils/binutils-2.23.52.0.2.tar.xz mirror://gentoo/binutils-2.23.52.0.2-patches-1.0.tar.xz http://dev.gentoo.org/~vapier/dist/binutils-2.23.52.0.2-patches-1.0.tar.xz +_eclasses_=eutils 384ae111f3649d456ed1754e3e1c4f6e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 177b3e32837e245539b46f16c43afed8 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=d47fa8c1bb04c6c6cd2725b074449c72 diff --git a/metadata/md5-cache/x11-libs/hippo-canvas-0.3.0 b/metadata/md5-cache/x11-libs/hippo-canvas-0.3.0 deleted file mode 100644 index e5105c5d39d0..000000000000 --- a/metadata/md5-cache/x11-libs/hippo-canvas-0.3.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=dev-libs/glib-2.6:2 dev-libs/libcroco >=x11-libs/gtk+-2.6:2 x11-libs/pango python? ( dev-lang/python dev-python/pycairo dev-python/pygtk:2 ) virtual/pkgconfig doc? ( dev-util/gtk-doc ) >=sys-apps/sed-4 -DESCRIPTION=A canvas library based on GTK+-2, Cairo, and Pango -EAPI=2 -HOMEPAGE=http://live.gnome.org/HippoCanvas -IUSE=doc python -KEYWORDS=~amd64 x86 -LICENSE=LGPL-2 -RDEPEND=>=dev-libs/glib-2.6:2 dev-libs/libcroco >=x11-libs/gtk+-2.6:2 x11-libs/pango python? ( dev-lang/python dev-python/pycairo dev-python/pygtk:2 ) -SLOT=0 -SRC_URI=mirror://gnome/sources/hippo-canvas/0.3/hippo-canvas-0.3.0.tar.bz2 -_eclasses_=eutils 384ae111f3649d456ed1754e3e1c4f6e fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 177b3e32837e245539b46f16c43afed8 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=4c4bceca2dc959ceca6be48c9f279dda diff --git a/metadata/md5-cache/x11-libs/hippo-canvas-0.3.0-r1 b/metadata/md5-cache/x11-libs/hippo-canvas-0.3.0-r1 index 87f17f71e094..58d12f9a6bc9 100644 --- a/metadata/md5-cache/x11-libs/hippo-canvas-0.3.0-r1 +++ b/metadata/md5-cache/x11-libs/hippo-canvas-0.3.0-r1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack DEPEND=>=dev-libs/glib-2.6:2 dev-libs/libcroco >=x11-libs/gtk+-2.6:2 x11-libs/pango gnome-base/librsvg:2 python? ( dev-python/pycairo dev-python/pygtk:2 ) virtual/pkgconfig doc? ( dev-util/gtk-doc ) >=sys-apps/sed-4 python? ( =dev-lang/python-2* ) -DESCRIPTION=A canvas library based on GTK+-2, Cairo, and Pango +DESCRIPTION=A canvas library based on GTK+ 2, Cairo, and Pango EAPI=2 HOMEPAGE=http://live.gnome.org/HippoCanvas IUSE=doc python @@ -10,4 +10,4 @@ RDEPEND=>=dev-libs/glib-2.6:2 dev-libs/libcroco >=x11-libs/gtk+-2.6:2 x11-libs/p SLOT=0 SRC_URI=mirror://gnome/sources/hippo-canvas/0.3/hippo-canvas-0.3.0.tar.bz2 _eclasses_=eutils 384ae111f3649d456ed1754e3e1c4f6e fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 177b3e32837e245539b46f16c43afed8 multilib 892e597faee02a5b94eb02ab512e7622 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=51ca61c5a9733e543aa27869b217accf +_md5_=56556786786a0de781b5b304c35b483e diff --git a/metadata/md5-cache/x11-libs/motif-2.2.3-r12 b/metadata/md5-cache/x11-libs/motif-2.2.3-r12 index e1aceca1ea15..2f4ea1cd0ae2 100644 --- a/metadata/md5-cache/x11-libs/motif-2.2.3-r12 +++ b/metadata/md5-cache/x11-libs/motif-2.2.3-r12 @@ -9,5 +9,5 @@ LICENSE=MOTIF MIT RDEPEND=x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?] x11-libs/libXmu[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?] x11-libs/libXp[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?] x11-libs/libXt[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?] abi_x86_32? ( amd64? ( app-emulation/emul-linux-x86-baselibs ) !app-emulation/emul-linux-x86-motif ) SLOT=2.2 SRC_URI=ftp://ftp.ics.com/openmotif/2.2/2.2.3/src/openMotif-2.2.3.tar.gz mirror://gentoo/openmotif-2.2.3-patches-5.tar.xz -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 384ae111f3649d456ed1754e3e1c4f6e flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 177b3e32837e245539b46f16c43afed8 multibuild 32fd04fe3ee97494341710886fd70dfe multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 64d8186c893b4ba109fe29c632a72a58 multilib-minimal 17ae39785bd22c9cf6159d6f11f87a04 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 384ae111f3649d456ed1754e3e1c4f6e flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 177b3e32837e245539b46f16c43afed8 multibuild 32fd04fe3ee97494341710886fd70dfe multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 64d8186c893b4ba109fe29c632a72a58 multilib-minimal bdf515a40f94b2a4d8e8741be0b1a728 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=eb033add0c53663c1dc2d5b19a6d5908 diff --git a/metadata/md5-cache/x11-libs/motif-2.3.4-r1 b/metadata/md5-cache/x11-libs/motif-2.3.4-r1 index 4b9b677f576b..1d3252c4575c 100644 --- a/metadata/md5-cache/x11-libs/motif-2.3.4-r1 +++ b/metadata/md5-cache/x11-libs/motif-2.3.4-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1+ MIT RDEPEND=x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?] x11-libs/libXext[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?] x11-libs/libXmu[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?] x11-libs/libXp[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?] x11-libs/libXt[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?] unicode? ( virtual/libiconv ) xft? ( media-libs/fontconfig[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?] x11-libs/libXft[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?] ) jpeg? ( virtual/jpeg ) png? ( >=media-libs/libpng-1.4:0= ) abi_x86_32? ( amd64? ( app-emulation/emul-linux-x86-baselibs ) !app-emulation/emul-linux-x86-motif ) SLOT=0 SRC_URI=mirror://sourceforge/project/motif/Motif%202.3.4%20Source%20Code/motif-2.3.4-src.tgz -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 384ae111f3649d456ed1754e3e1c4f6e flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 177b3e32837e245539b46f16c43afed8 multibuild 32fd04fe3ee97494341710886fd70dfe multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 64d8186c893b4ba109fe29c632a72a58 multilib-minimal 17ae39785bd22c9cf6159d6f11f87a04 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 384ae111f3649d456ed1754e3e1c4f6e flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 177b3e32837e245539b46f16c43afed8 multibuild 32fd04fe3ee97494341710886fd70dfe multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 64d8186c893b4ba109fe29c632a72a58 multilib-minimal bdf515a40f94b2a4d8e8741be0b1a728 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=71da87ecc92e60c8fa88b717e7afde48 diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index e7f4e49f21cd..a91760f526e3 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Sat, 04 May 2013 19:36:56 +0000 +Sun, 05 May 2013 07:36:57 +0000 diff --git a/metadata/timestamp b/metadata/timestamp index 4224e0b80456..8102a409a353 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Sat May 4 19:36:54 UTC 2013 +Sun May 5 07:36:54 UTC 2013 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index d38f20acac55..db1855c065ec 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Sat, 04 May 2013 20:00:01 +0000 +Sun, 05 May 2013 08:00:01 +0000 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index d50071090c17..8464d9efd011 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1367696101 Sat May 4 19:35:01 2013 UTC +1367739301 Sun May 5 07:35:01 2013 UTC diff --git a/net-dns/pdns-recursor/Manifest b/net-dns/pdns-recursor/Manifest index 016b0a89e05c..4554a216334f 100644 --- a/net-dns/pdns-recursor/Manifest +++ b/net-dns/pdns-recursor/Manifest @@ -1,3 +1,4 @@ DIST pdns-recursor-3.1.7.2.tar.bz2 174082 SHA256 0f2fd93eec8d7c68578fbf1f680f6d1ab44c3249f0a08257a4e6531e48a9d2ea DIST pdns-recursor-3.2.tar.bz2 139569 SHA256 1994140bf0816ef16fe5c8fe9956737a8f7445041adc3d8bc4d0795b2c50c0de DIST pdns-recursor-3.3.tar.bz2 145785 SHA256 7b62d97f2bb02bb0ba366dabb5e504338b949a572b9062ec2198012fc3b525bc SHA512 44ffa8567f7551b34dae3326c4998c6ff5439c60fa6076e680477f5cd7e9dfa2e3deaea79e9c0ab59391c9166931a54bba0c11b8222a2e0a2f2e65d74f98a067 WHIRLPOOL 2424358ff0742bb86fb44140afb22e6bcb3d4486309d3dd98033389d7091eeb5227a05626f7e49f966881497186576b9af9ee1c2dfb52536641b2c93b6ad9260 +DIST pdns-recursor-3.5.1.tar.bz2 176413 SHA256 30655996d1963e259d4fc8648184031bf9cb83f64510d0b00539d3ce698b2824 SHA512 9bc7b293ce38060d3cce48b246fe6d0168c04e387fbe8cbd9511649b53e8d922caed419b0f6bd0cc98d66a11a1f9af54b6c96ac04903b4b068d8d6d560f7d4fd WHIRLPOOL 8f0358c83b1bc3178169390170a2d2d06dbc2aa1946d9f77999a4dcf3d5f5393477d3e71800736a2628187ac84bbbe2d88508c38780e8cda2efee578d4ef7529 diff --git a/net-dns/pdns-recursor/pdns-recursor-3.5.1.ebuild b/net-dns/pdns-recursor/pdns-recursor-3.5.1.ebuild new file mode 100644 index 000000000000..45771c6b2ec6 --- /dev/null +++ b/net-dns/pdns-recursor/pdns-recursor-3.5.1.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dns/pdns-recursor/pdns-recursor-3.5.1.ebuild,v 1.1 2013/05/04 20:54:57 swegener Exp $ + +EAPI="4" + +inherit toolchain-funcs flag-o-matic eutils + +DESCRIPTION="The PowerDNS Recursor" +HOMEPAGE="http://www.powerdns.com/" +SRC_URI="http://downloads.powerdns.com/releases/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="lua" + +DEPEND="lua? ( >=dev-lang/lua-5.1 )" +RDEPEND="${DEPEND} + !=net-print/cups-1.6.2-r4[-lprng-compat] + !=media-libs/libmikmod-3.2.0-r1 >=media-libs/libv4l-0.9.5-r1 >=media-libs/libogg-1.3.0-r1 +>=media-libs/libsndfile-1.0.25-r1 >=media-libs/libvorbis-1.3.3-r1 >=media-libs/webrtc-audio-processing-0.1-r1 diff --git a/profiles/use.local.desc b/profiles/use.local.desc index 0a08c93f8705..55aa4a325ba6 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -190,6 +190,7 @@ app-admin/sagan:smtp - Build witch SMTP (E-Mail) support app-admin/sagan:snort - Add support to interact with Snort IDE using net-analyzer/snortsam' app-admin/sagan-rules:lognorm - Install normalize rules support with dev-libs/liblognorm app-admin/salt:libvirt - Support managing virtual machines with app-emulation/libvirt. +app-admin/salt:mako - Add support for using the mako template engine for parsing salt states. app-admin/salt:mongodb - Support returning data to a mongodb server. app-admin/salt:openssl - Add support for using TLS via OpenSSL. app-admin/salt:redis - Support returning data to a redis database. diff --git a/sys-apps/razercfg/Manifest b/sys-apps/razercfg/Manifest index 89cacd76027a..ea57e37ad308 100644 --- a/sys-apps/razercfg/Manifest +++ b/sys-apps/razercfg/Manifest @@ -1,3 +1,4 @@ DIST razercfg-0.18.tar.bz2 65648 SHA256 df61b2f929e1ace6772b8f867abc1dc834e0f01f7831f14b52a721613c16f2c8 SHA512 69769fa7b2d5b0abcb6bb10aed92d02376ac946c2066e81ff0ebd04ef4a99cc857f7630f22ff9302a0cd77043b1525fc4eeb49d06eed74d6dbe776a65c1c8bc5 WHIRLPOOL 3667a35f44235c7e19b852f547a004adece31f3e8a7ac6430ec1b78c8c1e86a1c643ee12756f67cf307bddeee4754572b6bc385ed5c3588ac526468972b38886 DIST razercfg-0.19.tar.bz2 65786 SHA256 ac1a78085d2f263354576e7d4b0eae5e95a2f86b9c77facd617499103756b0ab SHA512 27851ae587820d8426781b279f62ef1f8f1ca72734b678b0f7309cf7059c25b720c393ab78ec0e562aa2a394851c6947b34d4286ce317be18d06ab7ac0e273d3 WHIRLPOOL 6a2127c74aa78e03de261fb567e8033e2e92c7b253d07e3adf8747f417b877416bcdf173f915eb4bbf784c852cbec18b1c7e46a5391b2fd49fb9ef915ac552a7 DIST razercfg-0.19_p20121013.tar.gz 290951 SHA256 c0f7c8dac52ff6a2106c2cadac3ca9e44e3da508aeb182b907233c6b78f36581 SHA512 e49955ff0a635348a285a3ad6f8150bf468ed315f9c3eac332c9879daddd3911b915968a950b379106a27ecfd953ba6770152827b2b7b3185b17d3e3499bed40 WHIRLPOOL e6b525377be0581383e97ea9e202532cecb817985e5444876717b88fcb04f10744aa8e17415362a0daf7889160acebd5199f3b864094b1c8300fed0db91de356 +DIST razercfg-0.20.tar.bz2 68289 SHA256 de2f2f038b085cb22a97968f2f12a4c776741af80e486fb494b756708556509b SHA512 cbd4b20bdbde207cf19cfae2d9179861ab2fa6660f0a11ac21982cf3548ef374292ef38b5fa1ecba9a79beb23c9d9b522080feb2c70bf5278120b071263ab991 WHIRLPOOL 04d867aac4281381a8f980f34b5f21e9c057055f4a7982f94928e162a41c318584a8418f6c2ecf9efcebe93d45b1dd1986520858414e0d5d2766c082e090b08a diff --git a/sys-apps/razercfg/razercfg-0.20.ebuild b/sys-apps/razercfg/razercfg-0.20.ebuild new file mode 100644 index 000000000000..3d0e2dd0bb39 --- /dev/null +++ b/sys-apps/razercfg/razercfg-0.20.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/razercfg/razercfg-0.20.ebuild,v 1.1 2013/05/04 20:25:06 joker Exp $ + +EAPI=4 + +inherit cmake-utils multilib eutils udev + +DESCRIPTION="Utility for advanced configuration of Razer mice (DeathAdder, Krait, Lachesis)" + +HOMEPAGE="http://bues.ch/cms/hacking/razercfg.html" +SRC_URI="http://bues.ch/${PN}/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+pm-utils qt4" + +RDEPEND="${DEPEND} + pm-utils? ( sys-power/pm-utils ) + qt4? ( dev-python/PyQt4 ) + dev-lang/python" + +DEPEND="${DEPEND}" + +src_prepare() { + sed -i \ + -e '/ldconfig/{N;d}' \ + -e '/udevadm control/{N;d}' \ + -e "s:/etc/udev/rules.d/:$(get_udevdir)/rules.d/:" \ + -e 's:01-razer-udev.rules:40-razercfg.rules:' \ + -e "s:/etc/pm/sleep.d:/usr/$(get_libdir)/pm-utils/sleep.d/:" \ + -e 's:50-razer:80razer:' \ + librazer/CMakeLists.txt \ + || die "sed failed" +} + +src_install() { + cmake-utils_src_install + newinitd "${FILESDIR}"/razerd.init.d razerd + dodoc README razer.conf + + if ! use qt4; then + rm "${D}"/usr/bin/qrazercfg + else + make_desktop_entry qrazercfg "Razer Mouse Settings" mouse "Qt;Settings" + fi + + use pm-utils || rm "${D}"/usr/$(get_libdir)/pm-utils/sleep.d/80razer +} + +pkg_postinst() { + udevadm control --reload-rules && udevadm trigger --subsystem-match=usb +} diff --git a/sys-apps/sysvinit/sysvinit-2.88-r4.ebuild b/sys-apps/sysvinit/sysvinit-2.88-r4.ebuild index ce2803b5bc41..a9b33a39c0b4 100644 --- a/sys-apps/sysvinit/sysvinit-2.88-r4.ebuild +++ b/sys-apps/sysvinit/sysvinit-2.88-r4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysvinit/sysvinit-2.88-r4.ebuild,v 1.16 2013/05/04 09:04:15 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysvinit/sysvinit-2.88-r4.ebuild,v 1.17 2013/05/05 01:15:16 vapier Exp $ EAPI="4" @@ -16,7 +16,7 @@ KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86" IUSE="selinux ibm static kernel_FreeBSD" RDEPEND="selinux? ( >=sys-libs/libselinux-1.28 ) - !=sys-apps/util-linux-2.23" DEPEND="${RDEPEND} virtual/os-headers" diff --git a/sys-apps/sysvinit/sysvinit-2.88-r5.ebuild b/sys-apps/sysvinit/sysvinit-2.88-r5.ebuild index d5ba20ad36c2..031907d8173d 100644 --- a/sys-apps/sysvinit/sysvinit-2.88-r5.ebuild +++ b/sys-apps/sysvinit/sysvinit-2.88-r5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysvinit/sysvinit-2.88-r5.ebuild,v 1.2 2013/05/04 09:04:15 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysvinit/sysvinit-2.88-r5.ebuild,v 1.3 2013/05/05 01:15:16 vapier Exp $ EAPI="4" @@ -15,8 +15,7 @@ SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" IUSE="selinux ibm static kernel_FreeBSD" -RDEPEND="selinux? ( >=sys-libs/libselinux-1.28 ) - !/dev/null rm -f "${ENV_D}"/${TARGET}-* @@ -414,7 +416,7 @@ while [[ $# -gt 0 ]] ; do -h|--help) usage 0 ;; -V|--version) unset Header - cvsver="$Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-config/files/binutils-config-3,v 1.10 2012/11/18 07:54:46 vapier Exp $" + cvsver="$Header: /var/cvsroot/gentoo-x86/sys-devel/binutils-config/files/binutils-config-3,v 1.11 2013/05/05 05:20:42 vapier Exp $" cvsver=${cvsver##*binutils-config-} bver=${cvsver%%,v *} cvsver=${cvsver#* } diff --git a/sys-devel/binutils/Manifest b/sys-devel/binutils/Manifest index 881b896e02b2..525c96635aa2 100644 --- a/sys-devel/binutils/Manifest +++ b/sys-devel/binutils/Manifest @@ -33,4 +33,6 @@ DIST binutils-2.23.51.0.9-patches-1.0.tar.xz 11572 SHA256 1b1c89d205ae5a2bc8f436 DIST binutils-2.23.51.0.9.tar.xz 14276492 SHA256 f877e2a2333d96b2b36eea7fbe150c3a3ebdf0dc580a1d9423822179ad7d839f SHA512 d858d108f5c910a76239c8e87a19a75437a8bff22a7e9ec27aecb99adce5e8a4e107e6519f5f7bedbcb8c4ccaaade1d4ddb474cc85c2d87dfa9a801a41f2f001 WHIRLPOOL 71f047b093dfb0402930221722f816e5f86f9e3e0d79121a2b72bcd31f2c25b488f23537e69a6d36c812b661070c99b2f0c88348c2ed0e11044e60c60c4fbd17 DIST binutils-2.23.52.0.1-patches-1.0.tar.xz 11144 SHA256 44c2da1c58325c6d89f01f5e3ed391d51c3078176407b4d1fb5ceb940953d70e SHA512 bc180f2a35487686e7db99909d61aa8797cf3e2ab1a61d0fc87bf67750546bdc795d4a8d95baa763cfd9f63543933a099651010ee9ecb41b2c2d8afa9612ac84 WHIRLPOOL 5454f2c663b32abb2f597245eccb2f7cf3bacd116873f277ed5f9e8c72a40b357bbaacdf6e6dc1f36b8c3b33f0eec1120ab13fc42a0e5e9e1ca65e863480aa27 DIST binutils-2.23.52.0.1.tar.xz 14327172 SHA256 0c6447c2e7cee9d2582c0dcb5e6776b8ff427a49e21658dcedbdc94a4cc2723e SHA512 9ac8f52778099b64b4e1f037974d0acbf78f3a867d3dea8619bf24d08c6c54a2eb8b1f39fe6aac945ad06f181b779fe0b40ef5cbc86337db322f8e488c219cce WHIRLPOOL b5f7a2b6780c37469e31c7adc57f3dc935a6a0344924bc6a4038c79336170abef91274c8bd1c935ca6fdf6554c3c04f8c7b2f6de83d2bd1a3a795e5185408207 +DIST binutils-2.23.52.0.2-patches-1.0.tar.xz 11144 SHA256 528c19ba15439081c18e7740d4bf793222a6e882f0144891974e8b0fe997f26e SHA512 d599b9fc222cbe4b45987b83cb17fdcf759c5ebf725f42de2cd301da738d99f8f27fdf6ad9b0a55f13dbf02a7be43d84385c7a80641b43d596b5c258b1380bcd WHIRLPOOL 5a3f6c87e3dffb97eb73e03970d28382a55ea00cc4c4b60207adadbed60158cf023f3934aa6e4c297c0ae76249c4db160dacceb6319d4e59fd57dd3467b1548f +DIST binutils-2.23.52.0.2.tar.xz 14380940 SHA256 c2229d5d4067c782b67cfaf7f049acd8361407c0870991bc5430be5c548f6825 SHA512 18b107e10809d485ff13bc063865a11526a144ac1f53946276457c71c2ffc01c177bab857ea6aa92cafc6e238f75a73e8991552f72d7f3a0fbd1ec411d5f93bf WHIRLPOOL d6219b8377af947dc2daf70cc3de9c91b83d31e03aa35729944687110a8f69d10a98eedef9755956411fe2f10a073ffd0c9b6b82062039560e2f95d36e3c6ba2 DIST binutils-2.23.tar.bz2 21402046 SHA256 5f975e744a0fd4a4ab0b28dd6d0921685b3279207823226df92429389dbee452 SHA512 079939e1000e358e830c4563543f2a00ae127ef6e18306eda55a775254509951114d24647cf2c3fef49ac4409c8e9895085efb85cc71566a5b4fe0106b8375bd WHIRLPOOL 3713090b5f0d2b6fec14664ce862e0c7c7eeb0bf37bde19e4d07a48bafb61d388929e6ae993a6954aa6432fea9484b4646bc2938df308bcbf6142a0d5dfc1f69 diff --git a/sys-devel/binutils/binutils-2.23.52.0.2.ebuild b/sys-devel/binutils/binutils-2.23.52.0.2.ebuild new file mode 100644 index 000000000000..4c3a739fb90e --- /dev/null +++ b/sys-devel/binutils/binutils-2.23.52.0.2.ebuild @@ -0,0 +1,7 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/binutils/binutils-2.23.52.0.2.ebuild,v 1.1 2013/05/05 04:17:49 vapier Exp $ + +PATCHVER="1.0" +ELF2FLT_VER="" +inherit toolchain-binutils diff --git a/x11-libs/hippo-canvas/Manifest b/x11-libs/hippo-canvas/Manifest index 9a432102ac52..1d2f60da5fc2 100644 --- a/x11-libs/hippo-canvas/Manifest +++ b/x11-libs/hippo-canvas/Manifest @@ -1 +1 @@ -DIST hippo-canvas-0.3.0.tar.bz2 376859 RMD160 05a3efbc568d900c43be97cf1d2f8759ad60cfc5 SHA1 840c8d1e45ee48a4804b80704d2639bf2eca9da1 SHA256 21d0f3f7eb1c448fd6eaec1979b1474011b541249edaaab6e1dfb772ac8eb514 +DIST hippo-canvas-0.3.0.tar.bz2 376859 SHA256 21d0f3f7eb1c448fd6eaec1979b1474011b541249edaaab6e1dfb772ac8eb514 diff --git a/x11-libs/hippo-canvas/hippo-canvas-0.3.0-r1.ebuild b/x11-libs/hippo-canvas/hippo-canvas-0.3.0-r1.ebuild index 28d403853c06..c22f5263beb3 100644 --- a/x11-libs/hippo-canvas/hippo-canvas-0.3.0-r1.ebuild +++ b/x11-libs/hippo-canvas/hippo-canvas-0.3.0-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/hippo-canvas/hippo-canvas-0.3.0-r1.ebuild,v 1.8 2012/05/05 03:52:28 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/hippo-canvas/hippo-canvas-0.3.0-r1.ebuild,v 1.9 2013/05/04 23:04:21 elvanor Exp $ EAPI="2" @@ -9,7 +9,7 @@ G2PUNT_LA="yes" PYTHON_DEPEND="python? 2" inherit eutils gnome2 multilib python -DESCRIPTION="A canvas library based on GTK+-2, Cairo, and Pango" +DESCRIPTION="A canvas library based on GTK+ 2, Cairo, and Pango" HOMEPAGE="http://live.gnome.org/HippoCanvas" LICENSE="LGPL-2" diff --git a/x11-libs/hippo-canvas/hippo-canvas-0.3.0.ebuild b/x11-libs/hippo-canvas/hippo-canvas-0.3.0.ebuild deleted file mode 100644 index c5dc819f3573..000000000000 --- a/x11-libs/hippo-canvas/hippo-canvas-0.3.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/hippo-canvas/hippo-canvas-0.3.0.ebuild,v 1.5 2012/05/05 03:52:28 jdhore Exp $ - -EAPI="2" - -GCONF_DEBUG="no" -G2PUNT_LA="yes" -inherit gnome2 - -DESCRIPTION="A canvas library based on GTK+-2, Cairo, and Pango" -HOMEPAGE="http://live.gnome.org/HippoCanvas" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~amd64 x86" - -IUSE="doc python" - -RDEPEND=">=dev-libs/glib-2.6:2 - dev-libs/libcroco - >=x11-libs/gtk+-2.6:2 - x11-libs/pango - python? ( dev-lang/python - dev-python/pycairo - dev-python/pygtk:2 )" -DEPEND="${RDEPEND} - virtual/pkgconfig - doc? ( dev-util/gtk-doc )" - -DOCS="AUTHORS README TODO" - -pkg_setup() { - G2CONF="$(use_enable python)" -}