diff --git a/app-admin/salt/Manifest b/app-admin/salt/Manifest index f779b46e3147..f0dce76f4f8b 100644 --- a/app-admin/salt/Manifest +++ b/app-admin/salt/Manifest @@ -1,2 +1,3 @@ DIST salt-2014.1.10.tar.gz 2813318 SHA256 f175fc0385849fe557c0c91b0331926dacd665ae0ba3aa0d585bd7670d13edc5 SHA512 36381f371e98b157cbb7a36e3f77fa00da315997dd57cf24cff555f2532e090938e031901141efdad502da131992b957433d6b4bf493a83108bf7c273f4e616f WHIRLPOOL c7dbe44c914f3d7e1de566815bb7124a55a8f82214f89f8f59fcf900d315e70c2363471f7185c4f99af8d35f4ea20b7b31076f8913581f6b7954d662bf45424d DIST salt-2014.1.11.tar.gz 2820888 SHA256 80b9451a56d2282e46964965baa27063f5e26b374a0f8e5883b208730daf6e1c SHA512 11948b8f3673b41d479d6469be0686e20e3d9eeabb1b95bff250f04cbe0c231ba1ac6b1fa114d2d56324eca75d06fd33b6675fe57a6747a7a8f210fd9eda6f8d WHIRLPOOL 6a61f6ce6dc1827afdc21750dccc67c83b974fa3ced7986ed7553099b3b3c33e9eac93bfa34768b5abc95ec4e87f3038db9594f9025a72db580fccdcaa28e96c +DIST salt-2014.1.12.tar.gz 2823504 SHA256 244921334b0db5c5b8801916df90e02539add5f5d7c8ce45be1c122721a4a32c SHA512 5445322749d76a6f2e0ef2f29e2ef778bb7c9e3afcd72e2af76a21054aade882e076e572aed5e69516356cd8d79a87bee2e8803e24aa3493017a4191bfb012d7 WHIRLPOOL 7be65a85efbd370d2a1750037b7c1b69e205336c42b402314fccc3418ebed1a9717c754cd13b9e2cf8ebd67e3817880db4fba46d1fb1a0f33b842a7bd94eb9ef diff --git a/app-admin/salt/salt-2014.1.12.ebuild b/app-admin/salt/salt-2014.1.12.ebuild new file mode 100644 index 000000000000..946078fc3f85 --- /dev/null +++ b/app-admin/salt/salt-2014.1.12.ebuild @@ -0,0 +1,89 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/salt/salt-2014.1.12.ebuild,v 1.1 2014/10/10 17:10:49 chutzpah Exp $ + +EAPI=5 + +PYTHON_COMPAT=(python{2_6,2_7}) + +inherit eutils distutils-r1 systemd + +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 libcloud libvirt mako mongodb mysql openssl redis timelib test" + +RDEPEND=">=dev-python/pyzmq-2.2.0[${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}] + libcloud? ( >=dev-python/libcloud-0.14.0[${PYTHON_USEDEP}] ) + sys-apps/pciutils + mako? ( dev-python/mako[${PYTHON_USEDEP}] ) + ldap? ( dev-python/python-ldap[${PYTHON_USEDEP}] ) + openssl? ( dev-python/pyopenssl[${PYTHON_USEDEP}] ) + libvirt? ( || ( + dev-python/libvirt-python[${PYTHON_USEDEP}] + app-emulation/libvirt[python,${PYTHON_USEDEP}] + ) + ) + mongodb? ( dev-python/pymongo[${PYTHON_USEDEP}] ) + mysql? ( dev-python/mysql-python[${PYTHON_USEDEP}] ) + redis? ( dev-python/redis-py[${PYTHON_USEDEP}] ) + timelib? ( dev-python/timelib[${PYTHON_USEDEP}] )" +DEPEND="test? ( + dev-python/pip + dev-python/virtualenv + dev-python/timelib + >=dev-python/SaltTesting-2014.4.24 + ${RDEPEND} + )" + +PATCHES=( + "${FILESDIR}/${PN}-2014.1.2-tests-nonroot.patch" + "${FILESDIR}/${PN}-2014.1.5-tests-nonroot.patch" +) +DOCS=(README.rst AUTHORS) + +python_prepare() { + sed -i '/install_requires=/ d' setup.py || die "sed failed" + + # this test fails because it trys to "pip install distribute" + rm tests/unit/{modules,states}/zcbuildout_test.py +} + +python_install_all() { + USE_SETUPTOOLS=1 distutils-r1_python_install_all + + for s in minion master syndic; do + newinitd "${FILESDIR}"/${s}-initd-3 salt-${s} + newconfd "${FILESDIR}"/${s}-confd-1 salt-${s} + systemd_dounit "${FILESDIR}"/salt-${s}.service + done + + insinto /etc/${PN} + doins conf/* +} + +python_test() { + # testsuite likes lots of files + ulimit -n 3072 + USE_SETUPTOOLS=1 SHELL="/bin/bash" TMPDIR=/tmp ./tests/runtests.py --unit-tests --no-report --verbose || die +} diff --git a/app-admin/sudo/sudo-1.8.11_p1.ebuild b/app-admin/sudo/sudo-1.8.11_p1.ebuild index 221f68d0df25..afc49fc53598 100644 --- a/app-admin/sudo/sudo-1.8.11_p1.ebuild +++ b/app-admin/sudo/sudo-1.8.11_p1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/sudo/sudo-1.8.11_p1.ebuild,v 1.3 2014/10/09 08:05:17 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/sudo/sudo-1.8.11_p1.ebuild,v 1.4 2014/10/10 10:54:58 ago Exp $ EAPI=5 @@ -23,7 +23,7 @@ SRC_URI="http://www.sudo.ws/sudo/dist/${uri_prefix}${MY_P}.tar.gz # 3-clause BSD license LICENSE="ISC BSD" SLOT="0" -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~sparc-solaris" +KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~sparc-solaris" IUSE="ldap nls pam offensive selinux skey +sendmail" DEPEND="pam? ( virtual/pam ) diff --git a/app-antivirus/clamav/clamav-0.98.4.ebuild b/app-antivirus/clamav/clamav-0.98.4.ebuild index 99162fd9ba51..20df947ee240 100644 --- a/app-antivirus/clamav/clamav-0.98.4.ebuild +++ b/app-antivirus/clamav/clamav-0.98.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.98.4.ebuild,v 1.2 2014/09/04 21:01:02 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/clamav-0.98.4.ebuild,v 1.3 2014/10/10 15:20:50 ago Exp $ EAPI=5 @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris" IUSE="bzip2 clamdtop iconv ipv6 milter selinux static-libs uclibc" CDEPEND="bzip2? ( app-arch/bzip2 ) diff --git a/app-arch/pigz/pigz-2.3.1-r1.ebuild b/app-arch/pigz/pigz-2.3.1-r1.ebuild index e383b59e281c..a7f95ad28990 100644 --- a/app-arch/pigz/pigz-2.3.1-r1.ebuild +++ b/app-arch/pigz/pigz-2.3.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/pigz-2.3.1-r1.ebuild,v 1.1 2014/01/23 00:16:23 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/pigz-2.3.1-r1.ebuild,v 1.2 2014/10/10 15:22:13 ago Exp $ EAPI=5 @@ -12,7 +12,7 @@ SRC_URI="http://www.zlib.net/pigz/${P}.tar.gz" LICENSE="ZLIB" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~sparc ~x86 ~amd64-linux ~sparc64-solaris" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~mips ~sparc ~x86 ~amd64-linux ~sparc64-solaris" IUSE="static symlink test" LIB_DEPEND="sys-libs/zlib[static-libs(+)]" diff --git a/app-backup/fsarchiver/fsarchiver-0.6.19.ebuild b/app-backup/fsarchiver/fsarchiver-0.6.19.ebuild index c3bd6ec56b3b..464a07f68742 100644 --- a/app-backup/fsarchiver/fsarchiver-0.6.19.ebuild +++ b/app-backup/fsarchiver/fsarchiver-0.6.19.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-backup/fsarchiver/fsarchiver-0.6.19.ebuild,v 1.1 2014/03/08 18:32:11 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-backup/fsarchiver/fsarchiver-0.6.19.ebuild,v 1.2 2014/10/10 15:22:05 ago Exp $ EAPI="5" @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="debug lzma lzo static" DEPEND="dev-libs/libgcrypt:0 diff --git a/app-backup/spideroak-bin/spideroak-bin-5.1.8-r2.ebuild b/app-backup/spideroak-bin/spideroak-bin-5.1.8-r2.ebuild index 95fe812dac71..7ea05dcf708a 100644 --- a/app-backup/spideroak-bin/spideroak-bin-5.1.8-r2.ebuild +++ b/app-backup/spideroak-bin/spideroak-bin-5.1.8-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-backup/spideroak-bin/spideroak-bin-5.1.8-r2.ebuild,v 1.1 2014/09/30 23:53:06 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-backup/spideroak-bin/spideroak-bin-5.1.8-r2.ebuild,v 1.2 2014/10/10 20:56:28 blueness Exp $ EAPI="5" @@ -16,7 +16,7 @@ RESTRICT="mirror strip" LICENSE="spideroak" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="dbus X" DEPEND="dev-util/patchelf" diff --git a/app-benchmarks/ramspeed/Manifest b/app-benchmarks/ramspeed/Manifest index 03d079c449f6..462a29c27db0 100644 --- a/app-benchmarks/ramspeed/Manifest +++ b/app-benchmarks/ramspeed/Manifest @@ -1,2 +1 @@ DIST ramsmp-3.5.0.tar.gz 79481 SHA256 39fb15493fb3c293575746d56f6ab9faaa1d876d8b1f0d8e5a4042d2ace95839 SHA512 175cd2e568e4efdb1225e3c5319950376c4834633dd618324cf4268c762213733ed67ea94b4e5835b0259483e88afd2e9d9a3fde63515b8b25e5ec0b51f16b0e WHIRLPOOL 2e35adb0aa58a2d5ec81d64ab50bcfc3a7c831798aa13c62d80d2bfb907dcb048087047fd68fe9e7ccbd838848235bca5ee44ba6b203ac07c9945a7ea88a7447 -DIST ramspeed-2.6.0.tar.gz 77531 SHA256 f84e2e42b2b6b221ef9b586f6ae63d863db4ff21858e0ce7c84622a7c9522950 SHA512 9866e5525e0a9df1ab6a0e92085addfed50a987fb335d9127835ca0fb890f7614ad51bec15b7148648bbce8b4709b4f45114a51585bf0e881be56402934abdc4 WHIRLPOOL 04ab501739fa1ff9efd9c8fd371ddad9d907b38eae1e14d0228f28e955ccbdb944545ec2805cc33a3b27bdbe87bafd661ebd4ccebdb1faddb225ba8920063c57 diff --git a/app-benchmarks/ramspeed/ramspeed-2.6.0.ebuild b/app-benchmarks/ramspeed/ramspeed-2.6.0.ebuild deleted file mode 100644 index b729bd1f6689..000000000000 --- a/app-benchmarks/ramspeed/ramspeed-2.6.0.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/ramspeed/ramspeed-2.6.0.ebuild,v 1.5 2012/12/01 18:02:23 blueness Exp $ - -EAPI=2 -inherit flag-o-matic toolchain-funcs - -DESCRIPTION="Benchmarking for memory and cache" -HOMEPAGE="http://www.alasir.com/software/ramspeed/" -SRC_URI="http://www.alasir.com/software/${PN}/${P}.tar.gz" - -LICENSE="Alasir" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="sse" - -src_prepare(){ - tc-export CC AS -} - -src_configure(){ - local obj - local arch_prefix=./ - - use x86 && arch_prefix=i386/ - use amd64 && arch_prefix=amd64/ - - #fix the stack - append-ldflags -Wl,-z,noexecstack - obj=( ramspeed.o ${arch_prefix}{fltmark,fltmem,intmark,intmem}.o ) - - if use x86; then - obj=( "${obj[@]}" ${arch_prefix}{cpuinfo/cpuinfo_main,cpuinfo/cpuinfo_ext}.o ) - fi - - if use sse; then - use x86 && append-flags "-DLINUX -DI386_ASM" - use amd64 && append-flags "-DLINUX -DAMD64_ASM" - obj=( "${obj[@]}" ${arch_prefix}{mmxmark,mmxmem,ssemark,ssemem}.o ) - fi - - echo "ramspeed: ${obj[@]}" > Makefile || die -} - -src_install(){ - dobin ${PN} || die - dodoc HISTORY README || die -} diff --git a/app-benchmarks/ramspeed/ramspeed-3.5.0-r1.ebuild b/app-benchmarks/ramspeed/ramspeed-3.5.0-r1.ebuild deleted file mode 100644 index f7497dbe2426..000000000000 --- a/app-benchmarks/ramspeed/ramspeed-3.5.0-r1.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/ramspeed/ramspeed-3.5.0-r1.ebuild,v 1.3 2012/12/01 18:20:27 blueness Exp $ - -EAPI="4" -inherit flag-o-matic toolchain-funcs - -MY_PN="ramsmp" -MY_P="${MY_PN}-${PV}" -S="${WORKDIR}/${MY_P}" - -DESCRIPTION="Benchmarking for memory and cache" -HOMEPAGE="http://www.alasir.com/software/ramspeed/" -SRC_URI="http://www.alasir.com/software/${PN}/${MY_P}.tar.gz" - -LICENSE="Alasir" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="sse pic" - -src_configure(){ - local obj - local arch_prefix=./ - - use x86 && arch_prefix=i386/ - use amd64 && arch_prefix=amd64/ - - tc-export CC AS - - #fix the stack - append-ldflags -Wl,-z,noexecstack - obj=( ramsmp.o ${arch_prefix}{fltmark,fltmem,intmark,intmem}.o ) - - if use pic; then - append-ldflags -nopie - fi - - if use amd64; then - sed -i \ - -e 's/call.*free/call\tfree@PLT/' \ - -e 's/call.*gettimeofday/call\tgettimeofday@PLT/' \ - -e 's/call.*malloc/call\tmalloc@PLT/' \ - ${arch_prefix}/*.s - fi - - if use x86; then - obj=( "${obj[@]}" ${arch_prefix}{cpuinfo/cpuinfo_main,cpuinfo/cpuinfo_ext}.o ) - fi - - if use sse; then - use x86 && append-flags "-DLINUX -DI386_ASM" - use amd64 && append-flags "-DLINUX -DAMD64_ASM" - obj=( "${obj[@]}" ${arch_prefix}{mmxmark,mmxmem,ssemark,ssemem}.o ) - fi - - echo "ramsmp: ${obj[@]}" > Makefile -} - -src_install(){ - dobin ramsmp - dosym /usr/bin/ramsmp /usr/bin/ramspeed - dodoc HISTORY README -} diff --git a/app-benchmarks/ramspeed/ramspeed-3.5.0-r2.ebuild b/app-benchmarks/ramspeed/ramspeed-3.5.0-r2.ebuild index 873b50db49a9..05cb85a0499a 100644 --- a/app-benchmarks/ramspeed/ramspeed-3.5.0-r2.ebuild +++ b/app-benchmarks/ramspeed/ramspeed-3.5.0-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/ramspeed/ramspeed-3.5.0-r2.ebuild,v 1.2 2014/10/09 09:54:49 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/ramspeed/ramspeed-3.5.0-r2.ebuild,v 1.3 2014/10/10 11:03:37 ago Exp $ EAPI=5 @@ -15,7 +15,7 @@ SRC_URI="http://www.alasir.com/software/${PN}/${MY_P}.tar.gz" LICENSE="Alasir" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="sse pic" S="${WORKDIR}/${MY_P}" diff --git a/app-dicts/gjiten/gjiten-2.6-r3.ebuild b/app-dicts/gjiten/gjiten-2.6-r3.ebuild index a3c2271f9af0..9bac08deacf6 100644 --- a/app-dicts/gjiten/gjiten-2.6-r3.ebuild +++ b/app-dicts/gjiten/gjiten-2.6-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/gjiten/gjiten-2.6-r3.ebuild,v 1.1 2014/07/08 11:10:52 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/gjiten/gjiten-2.6-r3.ebuild,v 1.2 2014/10/10 15:22:40 ago Exp $ EAPI="5" GCONF_DEBUG="no" @@ -13,7 +13,7 @@ SRC_URI="http://gjiten.sourceforge.net/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" RESTRICT="test" diff --git a/app-dicts/kasumi/files/kasumi-2.3-gcc43.patch b/app-dicts/kasumi/files/kasumi-2.3-gcc43.patch deleted file mode 100644 index 9949974d9ac0..000000000000 --- a/app-dicts/kasumi/files/kasumi-2.3-gcc43.patch +++ /dev/null @@ -1,33 +0,0 @@ -diff -pruN kasumi-2.3.orig/KasumiAddWindow.cxx kasumi-2.3/KasumiAddWindow.cxx ---- kasumi-2.3.orig/KasumiAddWindow.cxx 2007-10-28 17:40:43.000000000 +0900 -+++ kasumi-2.3/KasumiAddWindow.cxx 2008-02-19 16:59:45.000000000 +0900 -@@ -25,6 +25,7 @@ - *********************************************************************/ - - #include -+#include - #include - #include "KasumiAddWindow.hxx" - #include "KasumiWord.hxx" -diff -pruN kasumi-2.3.orig/KasumiWord.cxx kasumi-2.3/KasumiWord.cxx ---- kasumi-2.3.orig/KasumiWord.cxx 2007-10-30 23:01:05.000000000 +0900 -+++ kasumi-2.3/KasumiWord.cxx 2008-02-19 16:59:22.000000000 +0900 -@@ -24,6 +24,7 @@ - *********************************************************************/ - - #include -+#include - #include - #include - #include -diff -pruN kasumi-2.3.orig/main.cxx kasumi-2.3/main.cxx ---- kasumi-2.3.orig/main.cxx 2007-10-30 23:01:22.000000000 +0900 -+++ kasumi-2.3/main.cxx 2008-02-19 16:59:22.000000000 +0900 -@@ -28,6 +28,7 @@ - #include "config.h" - #endif - -+#include - #include - #include - #include diff --git a/app-dicts/kasumi/kasumi-2.5-r1.ebuild b/app-dicts/kasumi/kasumi-2.5-r1.ebuild index 24049b39da64..dd140e71a9a5 100644 --- a/app-dicts/kasumi/kasumi-2.5-r1.ebuild +++ b/app-dicts/kasumi/kasumi-2.5-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/kasumi/kasumi-2.5-r1.ebuild,v 1.3 2014/10/05 11:51:07 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/kasumi/kasumi-2.5-r1.ebuild,v 1.4 2014/10/10 10:53:07 ago Exp $ EAPI="5" @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge.jp/${PN}/41436/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ppc ~x86 ~x86-fbsd" +KEYWORDS="amd64 ppc x86 ~x86-fbsd" IUSE="nls" RDEPEND=">=x11-libs/gtk+-2.6:2 diff --git a/app-dicts/kasumi/kasumi-2.5.ebuild b/app-dicts/kasumi/kasumi-2.5.ebuild deleted file mode 100644 index 410bc0af20fa..000000000000 --- a/app-dicts/kasumi/kasumi-2.5.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/kasumi/kasumi-2.5.ebuild,v 1.5 2012/05/03 02:18:37 jdhore Exp $ - -EAPI="1" - -DESCRIPTION="Anthy dictionary maintenance tool" -HOMEPAGE="http://kasumi.sourceforge.jp/" -SRC_URI="mirror://sourceforge.jp/${PN}/41436/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86 ~x86-fbsd" -IUSE="nls" - -RDEPEND=">=x11-libs/gtk+-2.6:2 - nls? ( virtual/libintl ) - virtual/libiconv - >=app-i18n/anthy-6131" - -DEPEND="${RDEPEND} - virtual/pkgconfig - nls? ( sys-devel/gettext )" - -src_compile() { - econf $(use_enable nls) || die "econf failed" - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - - dodoc AUTHORS ChangeLog NEWS README -} diff --git a/app-editors/scite/scite-3.5.0.ebuild b/app-editors/scite/scite-3.5.0.ebuild index 1b426efbce22..95e6b96d008f 100644 --- a/app-editors/scite/scite-3.5.0.ebuild +++ b/app-editors/scite/scite-3.5.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-3.5.0.ebuild,v 1.1 2014/09/18 02:31:47 dlan Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-3.5.0.ebuild,v 1.2 2014/10/10 15:25:22 ago Exp $ EAPI="5" @@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/scintilla/${PN}${MY_PV}.tgz" LICENSE="HPND lua? ( MIT )" SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux" +KEYWORDS="amd64 ~ppc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux" IUSE="lua" RDEPEND="dev-libs/glib diff --git a/app-emacs/mew/mew-6.6.ebuild b/app-emacs/mew/mew-6.6.ebuild index fb7f3ecaad81..ec33f04f0257 100644 --- a/app-emacs/mew/mew-6.6.ebuild +++ b/app-emacs/mew/mew-6.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/mew/mew-6.6.ebuild,v 1.1 2014/09/06 08:14:11 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/mew/mew-6.6.ebuild,v 1.2 2014/10/10 15:22:51 ago Exp $ EAPI=5 @@ -12,7 +12,7 @@ SRC_URI="http://www.mew.org/Release/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="ssl linguas_ja" RESTRICT="test" diff --git a/app-emulation/e-uae/e-uae-0.8.29_rc4-r2.ebuild b/app-emulation/e-uae/e-uae-0.8.29_rc4-r2.ebuild index 7e5e289b1295..8313601da712 100644 --- a/app-emulation/e-uae/e-uae-0.8.29_rc4-r2.ebuild +++ b/app-emulation/e-uae/e-uae-0.8.29_rc4-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/e-uae/e-uae-0.8.29_rc4-r2.ebuild,v 1.3 2014/10/09 09:54:54 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/e-uae/e-uae-0.8.29_rc4-r2.ebuild,v 1.4 2014/10/10 11:04:31 ago Exp $ EAPI="3" @@ -24,7 +24,7 @@ fi LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc x86" IUSE="X dga ncurses sdl alsa oss sdl-sound capslib" # Note: opposed to ./configure --help zlib support required! Check diff --git a/app-misc/figlet/figlet-2.2.5.ebuild b/app-misc/figlet/figlet-2.2.5.ebuild index 6e4f6fb7707c..64e76b85f087 100644 --- a/app-misc/figlet/figlet-2.2.5.ebuild +++ b/app-misc/figlet/figlet-2.2.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/figlet/figlet-2.2.5.ebuild,v 1.5 2014/10/05 10:46:34 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/figlet/figlet-2.2.5.ebuild,v 1.6 2014/10/10 11:05:09 ago Exp $ EAPI=5 inherit eutils bash-completion-r1 toolchain-funcs @@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.figlet.org/pub/figlet/program/unix/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="" src_compile() { diff --git a/app-misc/muttprint/muttprint-0.73-r2.ebuild b/app-misc/muttprint/muttprint-0.73-r2.ebuild index 7c4c940b932b..48d928e64173 100644 --- a/app-misc/muttprint/muttprint-0.73-r2.ebuild +++ b/app-misc/muttprint/muttprint-0.73-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/muttprint/muttprint-0.73-r2.ebuild,v 1.2 2014/10/09 09:34:54 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/muttprint/muttprint-0.73-r2.ebuild,v 1.3 2014/10/10 11:00:14 ago Exp $ EAPI=5 @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/muttprint/${P}.tar.gz" SLOT="0" LICENSE="GPL-2" -KEYWORDS="amd64 ~ppc ~ppc64 ~x86" +KEYWORDS="amd64 ~ppc ~ppc64 x86" IUSE="doc" DEPEND="dev-lang/perl diff --git a/app-misc/vifm/vifm-0.7.7.ebuild b/app-misc/vifm/vifm-0.7.7.ebuild index 43fa9b7abbb0..d2dbd2bef639 100644 --- a/app-misc/vifm/vifm-0.7.7.ebuild +++ b/app-misc/vifm/vifm-0.7.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/vifm/vifm-0.7.7.ebuild,v 1.4 2014/07/15 09:42:05 nimiux Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/vifm/vifm-0.7.7.ebuild,v 1.5 2014/10/10 15:23:10 ago Exp $ EAPI=5 @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/vifm/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc ~s390 ~x86" +KEYWORDS="amd64 ~ppc ~s390 ~x86" IUSE="X developer +extended-keys gtk +magic vim vim-syntax" DEPEND=" diff --git a/app-office/libreoffice/libreoffice-4.3.1.2.ebuild b/app-office/libreoffice/libreoffice-4.3.1.2.ebuild index fda723fde299..7193d14b340f 100644 --- a/app-office/libreoffice/libreoffice-4.3.1.2.ebuild +++ b/app-office/libreoffice/libreoffice-4.3.1.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice/libreoffice-4.3.1.2.ebuild,v 1.2 2014/09/16 21:25:00 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice/libreoffice-4.3.1.2.ebuild,v 1.3 2014/10/10 20:28:07 maekke Exp $ EAPI=5 @@ -91,7 +91,7 @@ unset lo_xt LICENSE="|| ( LGPL-3 MPL-1.1 )" SLOT="0" [[ ${PV} == *9999* ]] || \ -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~x86" COMMON_DEPEND=" ${PYTHON_DEPS} diff --git a/app-office/lyx/lyx-2.0.8.1.ebuild b/app-office/lyx/lyx-2.0.8.1.ebuild index b6db74ffa616..51acbd59efde 100644 --- a/app-office/lyx/lyx-2.0.8.1.ebuild +++ b/app-office/lyx/lyx-2.0.8.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/lyx/lyx-2.0.8.1.ebuild,v 1.4 2014/10/05 10:46:14 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/lyx/lyx-2.0.8.1.ebuild,v 1.5 2014/10/10 10:49:18 ago Exp $ EAPI=5 @@ -19,7 +19,7 @@ SRC_URI="ftp://ftp.lyx.org/pub/lyx/stable/2.0.x/${MY_P}.tar.xz LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 hppa ~ia64 ppc ~ppc64 ~sparc ~x86 ~x64-macos ~x86-macos" +KEYWORDS="~alpha amd64 hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x64-macos ~x86-macos" IUSE="cups debug nls +latex monolithic-build html rtf dot docbook dia subversion rcs svg gnumeric +hunspell aspell enchant" LANGS="ar ca cs de da el en es eu fi fr gl he hu ia id it ja nb nn pl pt ro ru sk sr sv tr uk zh_CN zh_TW" diff --git a/app-portage/genlop/genlop-0.30.9-r1.ebuild b/app-portage/genlop/genlop-0.30.9-r1.ebuild index 967c82a4408c..4432c24ef8b1 100644 --- a/app-portage/genlop/genlop-0.30.9-r1.ebuild +++ b/app-portage/genlop/genlop-0.30.9-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/genlop/genlop-0.30.9-r1.ebuild,v 1.5 2014/10/05 10:47:14 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/genlop/genlop-0.30.9-r1.ebuild,v 1.7 2014/10/10 22:08:48 zlogene Exp $ EAPI="5" @@ -12,7 +12,7 @@ SRC_URI="mirror://gentoo//${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd" IUSE="" DEPEND="dev-lang/perl diff --git a/app-shells/bash-completion/bash-completion-2.1-r2.ebuild b/app-shells/bash-completion/bash-completion-2.1-r2.ebuild index 20f322c97eaf..e2228a266dc9 100644 --- a/app-shells/bash-completion/bash-completion-2.1-r2.ebuild +++ b/app-shells/bash-completion/bash-completion-2.1-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-2.1-r2.ebuild,v 1.4 2014/09/21 20:14:13 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-2.1-r2.ebuild,v 1.6 2014/10/10 20:21:18 zlogene Exp $ EAPI=5 inherit bash-completion-r1 prefix toolchain-funcs @@ -11,7 +11,7 @@ SRC_URI="http://bash-completion.alioth.debian.org/files/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris" +KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris" IUSE="" RDEPEND="|| ( app-admin/eselect-bashcomp + + +printing + + dilfridge@gentoo.org + + diff --git a/app-text/lcdf-typetools/Manifest b/app-text/lcdf-typetools/Manifest index 6df180a0b394..9435dea00280 100644 --- a/app-text/lcdf-typetools/Manifest +++ b/app-text/lcdf-typetools/Manifest @@ -1,4 +1,5 @@ DIST lcdf-typetools-2.100.tar.gz 635042 SHA256 7ae7940df8a33de945c401e81aed414df796db692a30e38ba734c6117b73b2cd SHA512 84e1ec1ecadd440276190b84cbf5e1edadc7b367c6f6de887481856e4e334dbdc38d5a9465aef15931bb931e393b20a6506bc4f406137c45d289c4b931431612 WHIRLPOOL b1cd359d6de7fe80ddf26eb3c60cee26c36dc1a32b62b9ab919ad61c264cc5664b014e1da07576d991b01d10ab2a770751ba4b191ba6d79ac46ba411e34f3f74 +DIST lcdf-typetools-2.104.tar.gz 636875 SHA256 d7985458ead0850cb9549ff1d619ffc18da5d7be892be5e1fce6048d510f0fff SHA512 0d41386787aa18e5a7a85158ebba2046480c2320cbdfeaad75092962335f8f97a0ceede1aa301197d6c971bd6be729960c636fb14a8ce21e4c7f3f0e57257388 WHIRLPOOL 327e88a89cedb4a66fe93878c68dff11cb2b1d8d189eb3107f1782e67a70444ccee2b1ee6362f189441695f5e02a334311f9458a4a3f1d752fe22d863a2f3d20 DIST lcdf-typetools-2.97.tar.gz 616431 SHA256 761746041c669fa3673a3e90ec7a247abd0e2782bdddf0fc5d7ab70b33b6f975 SHA512 8812436843721b7134ec796549092854050d1e9017fef048a62e7aa0e866d20e9757b246dbad738cdf8d8583afada3a2db9c6c7dc2546154cafd4dcd0f27f7f2 WHIRLPOOL 767a2a74a9f9b7a0c29407178b96a1455da39239b835f59def2ae77db068655a8953362c6f8d48a8a31fb6fc40dea405c0e6eb276fe60750e9dfbb11954bd972 DIST lcdf-typetools-2.98.tar.gz 621485 SHA256 26b9be336b3d575555436d139e5a9c40fea58f5b9468516f974ca7bd1eeae17f SHA512 9ab6b9a7f1cdbbe977c9de2021931e5db94d2d03c185868b96789d58e0c0a0cd76f7c5bb18b469ed7d90bfca31b8c68c67dfd8d8cf863300c130fc61d75e75e6 WHIRLPOOL 0135de9fbe79d3a5e63690b17122690f120ae07365a0aa75b0f3ac642e443d88992a877dc346e4bb3e736a59b13ed69040e0d7a1430476e81241efa1d08e088c DIST lcdf-typetools-2.99.tar.gz 627203 SHA256 cbb0ed8c42d078fb216b8f4b8ca7a29e0ad3c1969f580a6f2558c829a472adff SHA512 5b0c7a95dfeacd9aaa8eca18616a6df0446ef17b6651651c20c83af6fbf6d50ff5f4d81c94c53aedfec2c7423047c62a3a848cce6907e8900d08cd0ee2b7a4c5 WHIRLPOOL ab00a53d78d5f3e175f573adc7d25da46beeaf2b56df06b1d7db563ad75e02c50706cc396955cf479a2e3f240d9bf5bb2b8c0fa303f1caa8a282db22179e2d58 diff --git a/app-text/lcdf-typetools/lcdf-typetools-2.104.ebuild b/app-text/lcdf-typetools/lcdf-typetools-2.104.ebuild new file mode 100644 index 000000000000..51e90a00f19b --- /dev/null +++ b/app-text/lcdf-typetools/lcdf-typetools-2.104.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/lcdf-typetools/lcdf-typetools-2.104.ebuild,v 1.1 2014/10/10 10:08:06 aballier Exp $ + +EAPI=2 + +DESCRIPTION="Font utilities for eg manipulating OTF" +SRC_URI="http://www.lcdf.org/type/${P}.tar.gz" +HOMEPAGE="http://www.lcdf.org/type/#typetools" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +SLOT="0" +LICENSE="GPL-2" +IUSE="+kpathsea" + +DEPEND="kpathsea? ( virtual/tex-base )" +RDEPEND="${DEPEND}" + +src_configure() { + econf $(use_with kpathsea) +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc NEWS README ONEWS +} diff --git a/app-text/libabw/libabw-0.1.0.ebuild b/app-text/libabw/libabw-0.1.0.ebuild index 962761a67f4e..10adb59126b3 100644 --- a/app-text/libabw/libabw-0.1.0.ebuild +++ b/app-text/libabw/libabw-0.1.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/libabw/libabw-0.1.0.ebuild,v 1.1 2014/09/07 12:32:37 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/libabw/libabw-0.1.0.ebuild,v 1.2 2014/10/10 20:15:47 maekke Exp $ EAPI=5 @@ -12,7 +12,7 @@ SRC_URI="http://dev-www.libreoffice.org/src/${PN}/${P}.tar.xz" LICENSE="MPL-2.0" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~x86" IUSE="doc static-libs" RDEPEND=" diff --git a/app-text/libebook/libebook-0.1.1.ebuild b/app-text/libebook/libebook-0.1.1.ebuild index 3a81f29df06d..481ed06b892f 100644 --- a/app-text/libebook/libebook-0.1.1.ebuild +++ b/app-text/libebook/libebook-0.1.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/libebook/libebook-0.1.1.ebuild,v 1.1 2014/09/07 12:36:36 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/libebook/libebook-0.1.1.ebuild,v 1.2 2014/10/10 20:16:15 maekke Exp $ EAPI=5 @@ -15,7 +15,7 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2" LICENSE="MPL-2.0" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~x86" IUSE="doc test" RDEPEND=" diff --git a/app-text/libetonyek/libetonyek-0.1.1.ebuild b/app-text/libetonyek/libetonyek-0.1.1.ebuild index 822880c6a28d..03401c2d65ea 100644 --- a/app-text/libetonyek/libetonyek-0.1.1.ebuild +++ b/app-text/libetonyek/libetonyek-0.1.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/libetonyek/libetonyek-0.1.1.ebuild,v 1.1 2014/09/13 08:57:12 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/libetonyek/libetonyek-0.1.1.ebuild,v 1.2 2014/10/10 20:16:49 maekke Exp $ EAPI=5 @@ -15,7 +15,7 @@ HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libetonyek" LICENSE="|| ( GPL-2+ LGPL-2.1 MPL-1.1 )" SLOT="0" [[ ${PV} == 9999 ]] || \ -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~x86" IUSE="doc static-libs test" RDEPEND=" diff --git a/app-text/libmspub/libmspub-0.1.1.ebuild b/app-text/libmspub/libmspub-0.1.1.ebuild index feb5d1b81d9d..564b8a34e49b 100644 --- a/app-text/libmspub/libmspub-0.1.1.ebuild +++ b/app-text/libmspub/libmspub-0.1.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/libmspub/libmspub-0.1.1.ebuild,v 1.1 2014/09/13 09:37:02 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/libmspub/libmspub-0.1.1.ebuild,v 1.2 2014/10/10 20:17:19 maekke Exp $ EAPI=5 @@ -17,7 +17,7 @@ SLOT="0" # Don't move KEYWORDS on the previous line or ekeyword won't work # 399061 [[ ${PV} == 9999 ]] || \ -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~x86" IUSE="doc static-libs" diff --git a/app-text/libmwaw/libmwaw-0.3.1.ebuild b/app-text/libmwaw/libmwaw-0.3.1.ebuild index a455e1c30a72..7d176b939429 100644 --- a/app-text/libmwaw/libmwaw-0.3.1.ebuild +++ b/app-text/libmwaw/libmwaw-0.3.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/libmwaw/libmwaw-0.3.1.ebuild,v 1.1 2014/09/13 20:13:19 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/libmwaw/libmwaw-0.3.1.ebuild,v 1.2 2014/10/10 20:17:48 maekke Exp $ EAPI=5 @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~x86" IUSE="doc static-libs" RDEPEND=" diff --git a/app-text/libodfgen/libodfgen-0.1.1.ebuild b/app-text/libodfgen/libodfgen-0.1.1.ebuild index ca4ec004e2e5..e41ca14cab44 100644 --- a/app-text/libodfgen/libodfgen-0.1.1.ebuild +++ b/app-text/libodfgen/libodfgen-0.1.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/libodfgen/libodfgen-0.1.1.ebuild,v 1.1 2014/09/13 20:33:06 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/libodfgen/libodfgen-0.1.1.ebuild,v 1.2 2014/10/10 20:18:18 maekke Exp $ EAPI=5 @@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/libwpd/${P}.tar.xz" LICENSE="|| ( LGPL-2.1 MPL-2.0 )" SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux" IUSE="" RDEPEND=" diff --git a/app-text/libwpd/libwpd-0.10.0.ebuild b/app-text/libwpd/libwpd-0.10.0.ebuild index 6eb19022b62e..a573949d5ad3 100644 --- a/app-text/libwpd/libwpd-0.10.0.ebuild +++ b/app-text/libwpd/libwpd-0.10.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/libwpd/libwpd-0.10.0.ebuild,v 1.4 2014/08/28 09:32:14 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/libwpd/libwpd-0.10.0.ebuild,v 1.5 2014/10/10 20:18:46 maekke Exp $ EAPI=5 @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" LICENSE="|| ( LGPL-2.1 MPL-2.0 )" SLOT="0.10" -KEYWORDS="~amd64 ~hppa ~mips ~x86 ~x86-fbsd" +KEYWORDS="~amd64 ~arm ~hppa ~mips ~x86 ~x86-fbsd" IUSE="doc test +tools" RDEPEND="dev-libs/librevenge" diff --git a/app-text/libwpg/libwpg-0.3.0.ebuild b/app-text/libwpg/libwpg-0.3.0.ebuild index ad557c9cab23..f4d1025926cf 100644 --- a/app-text/libwpg/libwpg-0.3.0.ebuild +++ b/app-text/libwpg/libwpg-0.3.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/libwpg/libwpg-0.3.0.ebuild,v 1.2 2014/09/07 13:41:26 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/libwpg/libwpg-0.3.0.ebuild,v 1.3 2014/10/10 20:19:15 maekke Exp $ EAPI=5 @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" LICENSE="|| ( LGPL-2.1 MPL-2.0 )" SLOT="0.3" -KEYWORDS="~amd64 ~hppa ~mips ~x86" +KEYWORDS="~amd64 ~arm ~hppa ~mips ~x86" IUSE="doc static-libs" RDEPEND=" diff --git a/app-text/libwps/libwps-0.3.0.ebuild b/app-text/libwps/libwps-0.3.0.ebuild index ec9db067cc67..fdc5db582259 100644 --- a/app-text/libwps/libwps-0.3.0.ebuild +++ b/app-text/libwps/libwps-0.3.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/libwps/libwps-0.3.0.ebuild,v 1.2 2014/09/12 15:27:44 johu Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/libwps/libwps-0.3.0.ebuild,v 1.3 2014/10/10 20:19:44 maekke Exp $ EAPI=5 @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" LICENSE="|| ( LGPL-2.1 MPL-2.0 )" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~x86" IUSE="doc debug static-libs" RDEPEND=" diff --git a/app-text/multitail/multitail-6.2.1.ebuild b/app-text/multitail/multitail-6.2.1.ebuild index 71aa12de4ac6..dcef6095ec3e 100644 --- a/app-text/multitail/multitail-6.2.1.ebuild +++ b/app-text/multitail/multitail-6.2.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/multitail/multitail-6.2.1.ebuild,v 1.4 2014/10/05 10:45:36 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/multitail/multitail-6.2.1.ebuild,v 1.5 2014/10/10 10:48:48 ago Exp $ EAPI=5 @@ -12,7 +12,7 @@ SRC_URI="http://www.vanheusden.com/multitail/${P}.tgz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 hppa ~ia64 ppc ~sparc ~x86 ~x86-interix ~amd64-linux ~x86-linux" +KEYWORDS="amd64 hppa ~ia64 ppc ~sparc x86 ~x86-interix ~amd64-linux ~x86-linux" IUSE="debug examples unicode" RDEPEND="sys-libs/ncurses[unicode?]" diff --git a/app-text/mupdf/files/mupdf-1.5-old-debian-files.patch b/app-text/mupdf/files/mupdf-1.5-old-debian-files.patch new file mode 100644 index 000000000000..3dd6419ffffb --- /dev/null +++ b/app-text/mupdf/files/mupdf-1.5-old-debian-files.patch @@ -0,0 +1,533 @@ +--- /dev/null ++++ platform/debian/mupdf.desktop +@@ -0,0 +1,15 @@ ++[Desktop Entry] ++Name=MuPDF ++GenericName=PDF file viewer ++Exec=mupdf %f ++TryExec=mupdf ++Icon=mupdf ++Terminal=false ++Type=Application ++MimeType=application/pdf;application/x-pdf;application/x-cbz;application/oxps;application/vnd.ms-xpsdocument;image/jpeg;image/pjpeg;image/png;image/tiff;image/x-tiff ++Categories=Viewer;Graphics; ++Actions=View ++ ++[Desktop Action View] ++Name=View with mupdf ++Exec=mupdf %f +--- /dev/null ++++ platform/debian/mupdf.pc +@@ -0,0 +1,12 @@ ++prefix=/usr ++exec_prefix=${prefix} ++libdir=${exec_prefix}/lib ++includedir=${prefix}/include ++ ++Name: mupdf ++Description: Library for rendering PDF documents ++Requires.private: freetype2 ++Version: 0.5.0 ++Libs: -L${libdir} -lmupdf ++Libs.private: -lopenjpeg -ljbig2dec -ljpeg -lz -lm ++Cflags: -I${includedir} +--- /dev/null ++++ platform/debian/mupdf.xpm +@@ -0,0 +1,497 @@ ++/* XPM */ ++static char *mupdf[] = { ++/* width height ncolors chars_per_pixel */ ++"48 48 442 2", ++/* colors */ ++" c #000000", ++" . c #2E4558", ++" X c #252121", ++" o c #AFAFAF", ++" O c #28313B", ++" + c #231F1F", ++" @ c #686666", ++" # c #98BDD7", ++" $ c #201B1C", ++" % c #7CABCC", ++" & c #4487B6", ++" * c #DFDEDE", ++" = c #4285B4", ++" - c #615E5F", ++" ; c #605E5E", ++" : c #23262C", ++" > c #D9D8D8", ++" , c #F7FAFC", ++" < c #D7D6D6", ++" 1 c #BFD6E6", ++" 2 c #6BA0C5", ++" 3 c #232122", ++" 4 c #555253", ++" 5 c #CDCCCC", ++" 6 c #E7EFF6", ++" 7 c #4786B2", ++" 8 c #CADDEA", ++" 9 c #4085B5", ++" 0 c #AECBDF", ++" q c #CBCACA", ++" w c #92B9D4", ++" e c #365F7D", ++" r c #5A95BE", ++" t c #3E83B3", ++" y c #304B60", ++" u c #C7C6C6", ++" i c #4D8EBB", ++" p c #F1F6F9", ++" a c #C1C0C0", ++" s c #454243", ++" d c #669CC3", ++" f c #81AECD", ++" g c #7A7777", ++" h c #434041", ++" j c #3E779F", ++" k c #272E36", ++" l c #413E3F", ++" z c #3F3C3D", ++" x c #5895BF", ++" c c #3D3A3B", ++" v c #C6DBE9", ++" b c #B8B6B7", ++" n c #4282B0", ++" m c #FDFDFE", ++" M c #B7B6B6", ++" N c #8DB5D2", ++" B c #242529", ++" V c #B3B2B2", ++" C c #222327", ++" Z c #B0AEAF", ++" A c #EDF4F8", ++" S c #686565", ++" D c #488AB9", ++" F c #9ABED8", ++" G c #7EACCD", ++" H c #ECF2F7", ++" J c #211C1C", ++" K c #666363", ++" L c #F1F1F2", ++" P c #ABAAAA", ++" I c #4588B6", ++" U c #A9A8A8", ++" Y c #2D2A2B", ++" T c #A7A6A6", ++" R c #615D5E", ++" E c #2B2829", ++" W c #8DB7D5", ++" Q c #F9FBFD", ++" ! c #DDE9F2", ++" ~ c #F8FBFC", ++" ^ c #DCE9F1", ++" / c #A5C5DC", ++" ( c #89B3D1", ++" ) c #5C5959", ++" _ c #A4C5DB", ++" ` c #335A76", ++" ' c #518FBB", ++" ] c #E6E7E7", ++" [ c #5A5757", ++" { c #232021", ++" } c #33536C", ++" | c #98BED9", ++". c #E0E1E1", ++".. c #7CACCE", ++".X c #4488B8", ++".o c #2D3F4F", ++".O c #999898", ++".+ c #4388B7", ++".@ c #5E98C1", ++".# c #CDCDCB", ++".$ c #524F4F", ++".% c #B0CCE0", ++".& c #979696", ++".* c #78A8CA", ++".= c #5C96BF", ++".- c #969495", ++".; c #4084B4", ++".: c #252930", ++".> c #949293", ++"., c #929091", ++".< c #417FAB", ++".1 c #4F8FBC", ++".2 c #F3F7FA", ++".3 c #D3D3D4", ++".4 c #D7E5EF", ++".5 c #222023", ++".6 c #9FC1D9", ++".7 c #679DC3", ++".8 c #37678A", ++".9 c #4B8BB8", ++".0 c #3E769E", ++".q c #3C749C", ++".w c #403D3D", ++".e c #92BAD6", ++".r c #C8DCEA", ++".t c #FEFEFE", ++".y c #3D393A", ++".u c #3B3738", ++".i c #355974", ++".p c #353132", ++".a c #7A7879", ++".s c #498BB9", ++".d c #9BBFD8", ++".f c #4E8AB4", ++".g c #787677", ++".h c #F2F2F2", ++".j c #F0F0F0", ++".k c #2F2B2C", ++".l c #EEEEEE", ++".z c #727071", ++".x c #26282D", ++".c c #ECECEC", ++".v c #2B2728", ++".b c #FAFCFD", ++".n c #EAEAEA", ++".m c #DEEAF2", ++".M c #E9EAE9", ++".N c #C2D8E7", ++".B c #6E6C6D", ++".V c #5390BC", ++".C c #E8E8E8", ++".Z c #6EA2C6", ++".A c #272324", ++".S c #E7E6E7", ++".D c #E6E6E6", ++".F c #252122", ++".G c #29333D", ++".H c #E4E4E4", ++".J c #3F7AA5", ++".K c #231F20", ++".L c #E2E2E2", ++".P c #211D1E", ++".I c #E0E0E0", ++".U c #EAF1F7", ++".Y c #6099C2", ++".T c #1F1B1C", ++".R c #E9F1F6", ++".E c #CDDFEB", ++".W c #4387B6", ++".Q c #96BBD6", ++".! c #B1CDE0", ++".~ c #DEDEDE", ++".^ c #79A9CA", ++"./ c #4285B5", ++".( c #272A31", ++".) c #5D97BF", ++"._ c #4185B4", ++".` c #DCDCDC", ++".' c #959393", ++".] c #DADADA", ++".[ c #314B5F", ++".{ c #D8D8D8", ++".} c #D7D8D7", ++".| c #D6D6D6", ++"X c #F5F8FB", ++"X. c #D4D4D4", ++"XX c #6AA0C5", ++"Xo c #BDD4E5", ++"XO c #3A6A8C", ++"X+ c #232123", ++"X@ c #D3D4D3", ++"X# c #D2D2D2", ++"X$ c #D0D0D0", ++"X% c #CECECE", ++"X& c #CCCCCC", ++"X* c #CADDEB", ++"X= c #37617F", ++"X- c #242A31", ++"X; c #CACACA", ++"X: c #C8DBE9", ++"X> c #90B7D3", ++"X, c #817F7F", ++"X< c #3F7EAB", ++"X1 c #548FB9", ++"X2 c #355873", ++"X3 c #7D7B7B", ++"X4 c #C2C2C2", ++"X5 c #4B8CBA", ++"X6 c #C0C0C0", ++"X7 c #D4E4EE", ++"X8 c #81AECE", ++"X9 c #659CC3", ++"X0 c #787576", ++"Xq c #4788B6", ++"Xw c #252C35", ++"Xe c #757373", ++"Xr c #BABABA", ++"Xt c #FCFDFE", ++"Xy c #B6B6B6", ++"Xu c #C4D9E8", ++"Xi c #706D6E", ++"Xp c #8CB5D2", ++"Xa c #70A3C7", ++"Xs c #8BB5D1", ++"Xd c #5491BC", ++"Xf c #5391BB", ++"Xg c #282424", ++"Xh c #272223", ++"Xj c #6C696A", ++"Xk c #2F4659", ++"Xl c #6B6969", ++"Xz c #407BA5", ++"Xx c #6A6768", ++"Xc c #E4E3E3", ++"Xv c #3E79A3", ++"Xb c #231E1F", ++"Xn c #221E1E", ++"Xm c #E2E1E1", ++"XM c #211C1D", ++"XN c #EBF2F7", ++"XB c #201C1C", ++"XV c #CFE0EC", ++"XC c #4588B7", ++"XZ c #B3CEE1", ++"XA c #366384", ++"XS c #5F98C0", ++"XD c #4386B5", ++"XF c #DEDDDD", ++"XG c #2B3D4B", ++"XH c #615F5F", ++"XJ c #5F5D5D", ++"XK c #5E5B5C", ++"XL c #DCE9F2", ++"XP c #407DA8", ++"XI c #86B1CF", ++"XU c #D4D3D3", ++"XY c #3A698B", ++"XT c #3E7BA6", ++"XR c #232022", ++"XE c #545152", ++"XW c #999899", ++"XQ c #79AACC", ++"X! c #524F50", ++"X~ c #CCCDCB", ++"X^ c #3D749B", ++"X/ c #93BAD5", ++"X( c #77A8CA", ++"X) c #37607E", ++"X_ c #5B96BF", ++"X` c #3F84B4", ++"X' c #CAC9C9", ++"X] c #C6C5C5", ++"X[ c #3F7DAA", ++"X{ c #F2F7FA", ++"X} c #C2C1C1", ++"X| c #212023", ++"o c #9EC1D9", ++"o. c #444142", ++"oX c #3F78A0", ++"oo c #90B8D5", ++"oO c #FEFEFF", ++"o+ c #E2ECF4", ++"o@ c #2B3A47", ++"o# c #25262A", ++"o$ c #B1AFB0", ++"o% c #28313A", ++"o& c #221D1D", ++"o* c #262F38", ++"o= c #629BC2", ++"o- c #302D2E", ++"o; c #6199C1", ++"o: c #201B1B", ++"o> c #4587B6", ++"o, c #F0F0F1", ++"o< c #2D3E4C", ++"o1 c #2E2B2C", ++"o2 c #4385B4", ++"o3 c #A8A7A7", ++"o4 c #A7A5A6", ++"o5 c #3D7197", ++"o6 c #4183B2", ++"o7 c #4083B1", ++"o8 c #A5A3A4", ++"o9 c #3B6F95", ++"o0 c #5290BC", ++"oq c #A4C4DB", ++"ow c #E9F1F7", ++"oe c #4387B7", ++"or c #E7EFF5", ++"ot c #CBDDEA", ++"oy c #4185B5", ++"ou c #5B95BE", ++"oi c #3F83B3", ++"op c #939192", ++"oa c #929191", ++"os c #2B3743", ++"od c #4C4849", ++"of c #2A3742", ++"og c #F4F8FB", ++"oh c #D8E6F0", ++"oj c #4C8CB9", ++"ok c #211F22", ++"ol c #CFD0D0", ++"oz c #444041", ++"ox c #262C34", ++"oc c #413E3E", ++"ov c #403C3D", ++"ob c #3B739B", ++"on c #858384", ++"om c #FFFFFF", ++"oM c #E3EDF4", ++"oN c #5995BF", ++"oB c #3E3A3B", ++"oV c #C7DBE9", ++"oC c #2F4B61", ++"oZ c #5793BD", ++"oA c #3C3839", ++"oS c #2A3945", ++"oD c #7E7D7D", ++"oF c #345873", ++"oG c #363233", ++"oH c #7B797A", ++"oJ c #EFF4F9", ++"oK c #EEF4F8", ++"oL c #F3F3F3", ++"oP c #9ABED7", ++"oI c #4788B7", ++"oU c #629AC1", ++"oY c #ACAAAA", ++"oT c #F1F1F1", ++"oR c #EFEFEF", ++"oE c #737172", ++"oW c #EDEDED", ++"oQ c #A9C9DF", ++"o! c #FBFDFE", ++"o~ c #EBEBEB", ++"o^ c #DFEBF3", ++"o/ c #4581AB", ++"o( c #6F6D6E", ++"o) c #EAE9EA", ++"o_ c #E9E9E9", ++"o` c #C1D7E6", ++"o' c #E7E7E7", ++"o] c #E6E7E6", ++"o[ c #E5E5E5", ++"o{ c #3F7BA5", ++"o} c #242021", ++"o| c #E3E3E3", ++"O c #3E79A4", ++"O. c #221E1F", ++"OX c #26303A", ++"Oo c #9C9A9A", ++"OO c #E1E1E1", ++"O+ c #201C1D", ++"O@ c #4488B7", ++"O# c #DFDFDF", ++"O$ c #7BAACC", ++"O% c #356384", ++"O& c #1E1A1B", ++"O* c #4386B6", ++"O= c #4286B5", ++"O- c #95BAD5", ++"O; c #DDDDDD", ++"O: c #1C1819", ++"O> c #DBDBDB", ++"O, c #D9D9D9", ++"O< c #D7D7D7", ++"O1 c #417FAA", ++"O2 c #DAE7F1", ++"O3 c #F5F9FB", ++"O4 c #D5D5D5", ++"O5 c #242224", ++"O6 c #D4D3D4", ++"O7 c #85B1CF", ++"O8 c #D3D3D3", ++"O9 c #699FC4", ++"O0 c #4D8DB9", ++"Oq c #222022", ++"Ow c #34556F", ++"Oe c #D1D1D1", ++"Or c #D0CFD0", ++"Ot c #8A8888", ++"Oy c #CFCFCF", ++"Ou c #CDCDCD", ++"Oi c #CCCDCC", ++"Op c #CADEEB", ++"Oa c #E5EEF5", ++"Os c #C9DCEA", ++"Od c #ADCADF", ++"Of c #C8DCE9", ++"Og c #91B8D4", ++"Oh c #5994BE", ++"Oj c #3D82B3", ++"Ok c #5894BD", ++"Ol c #3C82B2", ++"Oz c #4181AD", ++"Ox c #3B3737", ++"Oc c #C5C5C5", ++"Ov c #293643", ++"Ob c #3E7DAA", ++"On c #C1C1C1", ++"Om c #353131", ++"OM c #D4E3EE", ++"ON c #B8D1E3", ++"OB c #BFBFBF", ++"OV c #9CBFD8", ++"OC c #80ADCD", ++"OZ c #649BC2", ++"OA c #4889B7", ++"OS c #BDBDBD", ++"OD c #2E292A", ++"OF c #4283B1", ++"OG c #B7B7B7", ++"OH c #4183B0", ++"OJ c #5794BF", ++"OK c #A7C6DC", ++"OL c #365B77", ++"OP c #8BB4D1", ++"OI c #282324", ++"OU c #272323", ++"OY c #6C6A6A", ++"OT c None", ++/* pixels */ ++" oToToToT L.h.h.h.h.h.h.h.h.h.h.h.h.h.h.h.h.h.h.h.h.h.h.h.h.h.h.h.h.h.h.h.h.h.h.h.h LoToToToT ", ++"o,.joToToToToToToToToToToToToToToToToToToToT.h.h.h.hoToToToToToToToToToToToToToToToToToToToT.j.j", ++".j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.joToLoLoR.D.~ > >.~.DoRoLoLoT.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j.j", ++"oRoRoRoRoRoRoRoRoRoRoRoRoRoRoRoT.hXcOBoaXjX!oz c cozX!XjoaOBXc.hoToRoRoRoRoRoRoRoRoRoRoRoRoRoRoR", ++".l.l.l.l.l.l.l.l.l.l.l.l.loR.j <.'X! Y.P.To: $ J J $o:.T.P YX!.' <.joR.l.l.l.l.l.l.l.l.l.l.l.l.l", ++".l.l.l.l.l.l.l.l.l.l.l.l.jXm.&oz + $o& 3.x OoSXGXGoS O.x 3o& $ +oz.&Xm.j.l.l.l.l.l.l.l.l.l.l.l.l", ++"oWoWoWoWoWoWoWoWoWoWoWoR uXK X $XRo% yXA.qo/.fX1X1.fo/.qXA yo%XR $ XXK uoRoWoWoWoWoWoWoWoWoWoWoW", ++".c.c.c.c.c.c.c.c.c.coW Z z $ {os eXTo0..oQX*XLoMoMXLOpoQ..o0XT eos { $ z ZoW.c.c.c.c.c.c.c.c.c.c", ++"o~o~o~o~o~o~o~o~o~.co3.p $.(X2X[OJ FOM !Of 0.d wOg.d 0Os.mOM FOJObX2.( $.po3.co~o~o~o~o~o~o~o~o~", ++".n.n.n.n.n.n.n.noW VoGXMoso9XC G.N.!.^XfXD tOjOlOlOj tXDXd.^.% 1O$O@o9osXMoG VoW.n.n.n.n.n.n.n.n", ++".n.n.n.n.n.n.n.c qo.XBo.$okX=oeXDo>O=XD./Xd.momomomomomomomomomomomomomom pX7.NOK 'oeX=ok.$O>.Co'o'o'o'o'", ++" ]o'o'o'.So_ TXh.o nXDXDXDXDXD.; %.bomomomomomomomomomomomomoOo`O9ojo>XDXDXD n.oXh To_ ]o'o'o'.S", ++".D.D.D.D.Do| SX|XY.+XDXDXDXDXDXDXZomomomomomomomomomomomomom.4Xd.;O=XDXDXDXD.+XYX| So|.D.D.D.D.D", ++"o[o[o[o[.D 5OxOvOzO*XDXDXDXD =oZo+omomomomomomomomomomomomomoP.;XDXDXDXDXDXDO*OzOvOx 5o]o[o[o[o[", ++".H.H.H.Ho' POU }oeXDXDXDXDXD.;X8o!omomomomomomomomomomomom.bX(.;XDXDXDXDXDXDXDoe }OU Po'.H.H.H.H", ++"o|o|o|o|.DOt.5XO.+XDXDXDXDXD &ONomomomomomomomomomomomomom.2.7._XDXDXDXDXDXDXD.+XO.5Ot.Do|o|o|o|", ++"o|o|o|o|o|Xi : j.WXDXDXDXD = rOaomomomomomomomomomomomomom AXS._XDXDXDXDXDXDXD.W j :Xio|o|o|o|o|", ++".L.L.L.L.I RXwXP.WXDXDXDXD.;XI momomomomomomomomomomomomomXN.=._XDXDXDXDXDXDXD.WXPXw R.I.L.L.L.L", ++"OOOOOOOOO; [OX.oromomomomomomom.UX_._XDXDXDXDXDXDXDoeo5 C gOOO#O#O#O#", ++".~.~.~.~OO.- {X).XXDXD._o; HomomomomomohO9.Romomomomomomom.UX_._XDXDXDXDXDXDXD.XX) {.-OO.~.~.~.~", ++"O;O;O;O;O#XyOD .o2XDXD.;Ogomomomomomom / r.Uomomomomomomom.UX_._XDXDXDXDXDXDXDo2 .ODXyO#O;O;O;O;", ++".`.`.`.`O;Oeod.:oX.WXDOAoVomomomomomO3XaOk.Uomomomomomomom.UX_._XDXDXDXDXDXD.WoX.:odOeO;.`.`.`.`", ++"O>O>O>O>O>O;X,.POw.W._ doJomomomomomOMoj r.Uomomomomomomom.UX_._XDXDXDXDXDXD.WOw.PX,O;O>O>O>O>O>", ++"O>O>O>O>O>O;XrOmox.0 9X8Xtomomomomom.6X`ou.Uomomomomomomom.UX_._XDXDXDXDXDoe.0oxOmXrO;O>O>O>O>O>", ++".].].].].].]O,.z JXkOH.VotomomomomX{ 2oiou.Uomomomomomomom.UX_._XDO= &O0 &OFXk J.zO,.].].].].].]", ++"O,O,O,O,O,O,O>OS.yOq.i._OZ ^omomom.E.9._ou.Uomomomomomomom.UX_._._.9.ZXdO=.iOq.yOSO>O,O,O,O,O,O,", ++".{.{.{.{.{.{.{.].,.A BX)oyXXO2omom.Q.;._ou.Uomomomomomomom.UOh._ dO-X9O=X) BOI.,.].{.{.{.{.{.{.{", ++"Oo1O+.P.T.BOeX$X$X$X$X$X$X$OrOrX$X$X$X$X$X$X$X$X$X$", ++"OyOyOyOyOyOyOyOyOyOyOyOyOyOyOyOyOyOyOyX#oHXEXFoBO&.TO:OYX$OyOyOyOyOyOyOyOyOyOyOyOyOyOyOyOyOyOyOy", ++"X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%Oy POo.CX0 -Xx.g TOyX%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%X%", ++"X%X%OuOuOuOuOuOuOuOuOuOuOuOuOuOuOuOuOuX% oo$.h boYo4.O UX%OuOuOuOuOuOuOuOuOuOuOuOuOuOuOuOuOuX%X%", ++" Ou.#OuOuOiX&X&X&X&X&X&X&X&X&X&X&X&X&Oy.a 4 * h.K.KO&XlX%X&X&X&X&X&X&X&X&X&X&X&X&X&X&OuOuX~Ou " ++}; diff --git a/app-text/mupdf/mupdf-1.5.ebuild b/app-text/mupdf/mupdf-1.5-r1.ebuild similarity index 96% rename from app-text/mupdf/mupdf-1.5.ebuild rename to app-text/mupdf/mupdf-1.5-r1.ebuild index f87ae7c5dc9d..89f300f4a45d 100644 --- a/app-text/mupdf/mupdf-1.5.ebuild +++ b/app-text/mupdf/mupdf-1.5-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/mupdf/mupdf-1.5.ebuild,v 1.3 2014/08/25 09:38:00 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/mupdf/mupdf-1.5-r1.ebuild,v 1.1 2014/10/10 13:50:49 xmw Exp $ EAPI=5 @@ -38,7 +38,7 @@ src_prepare() { epatch \ "${FILESDIR}"/${PN}-1.3-CFLAGS.patch \ - "${FILESDIR}"/${PN}-1.4-old-debian-files.patch \ + "${FILESDIR}"/${PN}-1.5-old-debian-files.patch \ "${FILESDIR}"/${PN}-1.3-pkg-config.patch \ "${FILESDIR}"/${PN}-1.5-Makerules-openssl-curl.patch diff --git a/app-text/mupdf/mupdf-9999.ebuild b/app-text/mupdf/mupdf-9999.ebuild index e6b485b54185..9595846d6b7c 100644 --- a/app-text/mupdf/mupdf-9999.ebuild +++ b/app-text/mupdf/mupdf-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/mupdf/mupdf-9999.ebuild,v 1.48 2014/08/25 09:38:00 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/mupdf/mupdf-9999.ebuild,v 1.49 2014/10/10 13:50:49 xmw Exp $ EAPI=5 @@ -39,7 +39,7 @@ src_prepare() { epatch \ "${FILESDIR}"/${PN}-1.3-CFLAGS.patch \ - "${FILESDIR}"/${PN}-1.4-old-debian-files.patch \ + "${FILESDIR}"/${PN}-1.5-old-debian-files.patch \ "${FILESDIR}"/${PN}-1.3-pkg-config.patch \ "${FILESDIR}"/${PN}-1.5-Makerules-openssl-curl.patch diff --git a/app-text/wgetpaste/wgetpaste-2.25-r2.ebuild b/app-text/wgetpaste/wgetpaste-2.25-r2.ebuild index 0cf423152aef..e99a8ecdb388 100644 --- a/app-text/wgetpaste/wgetpaste-2.25-r2.ebuild +++ b/app-text/wgetpaste/wgetpaste-2.25-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/wgetpaste-2.25-r2.ebuild,v 1.5 2014/10/05 19:09:22 zlogene Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/wgetpaste-2.25-r2.ebuild,v 1.6 2014/10/10 20:07:29 maekke Exp $ EAPI="5" @@ -12,7 +12,7 @@ SRC_URI="http://wgetpaste.zlin.dk/${P}.tar.bz2" LICENSE="public-domain" SLOT="0" -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE="" DEPEND="" diff --git a/app-text/wgetpaste/wgetpaste-2.25-r3.ebuild b/app-text/wgetpaste/wgetpaste-2.25-r3.ebuild index 0ff0e0d6f629..2933e11837fd 100644 --- a/app-text/wgetpaste/wgetpaste-2.25-r3.ebuild +++ b/app-text/wgetpaste/wgetpaste-2.25-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/wgetpaste-2.25-r3.ebuild,v 1.2 2014/10/10 07:30:17 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/wgetpaste-2.25-r3.ebuild,v 1.4 2014/10/10 21:59:25 zlogene Exp $ EAPI="5" @@ -12,7 +12,7 @@ SRC_URI="http://wgetpaste.zlin.dk/${P}.tar.bz2" LICENSE="public-domain" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE="" DEPEND="" diff --git a/dev-cpp/eigen/eigen-3.1.3.ebuild b/dev-cpp/eigen/eigen-3.1.3.ebuild index 6f426c94e642..ef249311d86b 100644 --- a/dev-cpp/eigen/eigen-3.1.3.ebuild +++ b/dev-cpp/eigen/eigen-3.1.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/eigen/eigen-3.1.3.ebuild,v 1.2 2014/08/14 17:21:40 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/eigen/eigen-3.1.3.ebuild,v 1.3 2014/10/10 15:21:26 ago Exp $ EAPI=4 @@ -11,7 +11,7 @@ HOMEPAGE="http://eigen.tuxfamily.org/" SRC_URI="http://bitbucket.org/eigen/eigen/get/${PV}.tar.bz2 -> ${P}.tar.bz2" LICENSE="LGPL-2 GPL-3" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux" SLOT="3" IUSE="debug doc" diff --git a/dev-db/mysql-connector-c++/mysql-connector-c++-1.1.3.ebuild b/dev-db/mysql-connector-c++/mysql-connector-c++-1.1.3.ebuild index 7ebfe4f1d708..9e562cf0d8b7 100644 --- a/dev-db/mysql-connector-c++/mysql-connector-c++-1.1.3.ebuild +++ b/dev-db/mysql-connector-c++/mysql-connector-c++-1.1.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-connector-c++/mysql-connector-c++-1.1.3.ebuild,v 1.3 2014/10/09 14:48:06 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql-connector-c++/mysql-connector-c++-1.1.3.ebuild,v 1.4 2014/10/10 11:05:45 ago Exp $ EAPI=5 @@ -13,7 +13,7 @@ SRC_URI="mirror://mysql/Downloads/${URI_DIR}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 arm ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="amd64 arm ~ppc ~ppc64 ~sparc x86" IUSE="debug examples gcov static-libs" DEPEND=">=virtual/mysql-5.1 diff --git a/dev-db/sqlite/sqlite-3.8.6.ebuild b/dev-db/sqlite/sqlite-3.8.6.ebuild index f7c17dae82a3..96a126892541 100644 --- a/dev-db/sqlite/sqlite-3.8.6.ebuild +++ b/dev-db/sqlite/sqlite-3.8.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.8.6.ebuild,v 1.5 2014/10/09 09:35:09 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.8.6.ebuild,v 1.6 2014/10/10 11:00:51 ago Exp $ EAPI="5" @@ -21,7 +21,7 @@ SRC_URI="doc? ( http://sqlite.org/2014/${PN}-doc-${DOC_PV}.zip ) LICENSE="public-domain" SLOT="3" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="debug doc icu +readline secure-delete static-libs tcl test" RDEPEND="icu? ( dev-libs/icu:=[${MULTILIB_USEDEP}] ) diff --git a/dev-db/tinycdb/tinycdb-0.77-r2.ebuild b/dev-db/tinycdb/tinycdb-0.77-r2.ebuild index dc769dd66bd0..b8a30ae2bad9 100644 --- a/dev-db/tinycdb/tinycdb-0.77-r2.ebuild +++ b/dev-db/tinycdb/tinycdb-0.77-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/tinycdb-0.77-r2.ebuild,v 1.9 2014/09/28 09:29:47 hattya Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/tinycdb-0.77-r2.ebuild,v 1.10 2014/10/11 05:36:02 hattya Exp $ EAPI="5" @@ -30,13 +30,20 @@ src_compile() { local targets="shared" use static-libs && targets+=" staticlib piclib" - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${LDFLAGS}" ${targets} + emake \ + CC="$(tc-getCC)" \ + CFLAGS="${CFLAGS} ${LDFLAGS}" \ + ${targets} } src_install() { - local targets="install-sharedlib" + local targets="install install-sharedlib" use static-libs && targets+=" install-piclib" - emake DESTDIR="${D}" ${targets} + emake \ + prefix="/usr" \ + mandir="/usr/share/man" \ + DESTDIR="${D}" \ + ${targets} dodoc ChangeLog NEWS } diff --git a/dev-games/openscenegraph/Manifest b/dev-games/openscenegraph/Manifest index 1039264deefc..1408e30d0f95 100644 --- a/dev-games/openscenegraph/Manifest +++ b/dev-games/openscenegraph/Manifest @@ -1 +1,2 @@ DIST OpenSceneGraph-3.0.1.zip 6780282 SHA256 0c1103574b0a5a27c7d68d43454f1bf9c0cea114a583c42637bc8eb47b1d8296 SHA512 5fbfe9070721f055349a27516c9a20195070d13ab562e0c5109cc1f1d46dfaf09778152a14f5815b72728d315cb80b2d7bab747bfd9be58aea22d600c2c97912 WHIRLPOOL e3e24e2b36fd59a823d43864e7123d3683a8b2ef4e09cae17895d4b15eb4321bdd112cd59a734e1e55924cc9af52198c6152797bd73ab33a91bf17936232a7b0 +DIST OpenSceneGraph-3.2.1.zip 7219212 SHA256 d9ae72263d0191855b0f804d93c586d489f119aca0499292acc09bb0fa0b3e6d SHA512 f7bd9aedd3a1f48094a0ad95d267c2f2c946b042f7459d6b33e6038a4b16aeda9cfd69f339ea0a2a478dadadf1875313a4132564b8fcade5ad93511ecd8c1a9e WHIRLPOOL ef47a41a316fae86341cdebecaeceb41cf56b5f11fdf93e8218bb9aa9eaa28fc2fc9122efbeb8dce69fa01d8c8b6a2460fab69190714ca53abfa5d347a0ae1bc diff --git a/dev-games/openscenegraph/files/openscenegraph-3.2.1-cmake.patch b/dev-games/openscenegraph/files/openscenegraph-3.2.1-cmake.patch new file mode 100644 index 000000000000..84649e5f3d61 --- /dev/null +++ b/dev-games/openscenegraph/files/openscenegraph-3.2.1-cmake.patch @@ -0,0 +1,318 @@ +diff -ruN OpenSceneGraph-3.2.1/CMakeLists.txt new/CMakeLists.txt +--- OpenSceneGraph-3.2.1/CMakeLists.txt 2014-07-04 13:29:02.000000000 +0200 ++++ new/CMakeLists.txt 2014-08-20 00:45:08.857600038 +0200 +@@ -486,6 +486,7 @@ + + # INSTALL_FILES(/include/osg/ FILES "${OPENSCENEGRAPH_CONFIG_HEADER}") + ++INCLUDE(MacroOptionalFindPackage) + + ################################################################################ + # Set Version Info resource file +@@ -515,37 +516,37 @@ + ANDROID_3RD_PARTY() + ELSE() + # Common to all platforms except android: +- FIND_PACKAGE(Freetype) +- FIND_PACKAGE(Inventor) +- FIND_PACKAGE(Jasper) +- FIND_PACKAGE(OpenEXR) +- FIND_PACKAGE(COLLADA) +- FIND_PACKAGE(FBX) +- FIND_PACKAGE(ZLIB) +- FIND_PACKAGE(Xine) +- FIND_PACKAGE(OpenVRML) +- FIND_PACKAGE(Performer) +- FIND_PACKAGE(GDAL) +- FIND_PACKAGE(GTA) +- FIND_PACKAGE(CURL) +- FIND_PACKAGE(LibVNCServer) +- FIND_PACKAGE(OurDCMTK) +- FIND_PACKAGE(FFmpeg) ++ MACRO_OPTIONAL_FIND_PACKAGE(Freetype) ++ MACRO_OPTIONAL_FIND_PACKAGE(Inventor) ++ MACRO_OPTIONAL_FIND_PACKAGE(Jasper) ++ MACRO_OPTIONAL_FIND_PACKAGE(OpenEXR) ++ MACRO_OPTIONAL_FIND_PACKAGE(COLLADA) ++ MACRO_OPTIONAL_FIND_PACKAGE(FBX) ++ MACRO_OPTIONAL_FIND_PACKAGE(ZLIB) ++ MACRO_OPTIONAL_FIND_PACKAGE(Xine) ++ MACRO_OPTIONAL_FIND_PACKAGE(OpenVRML) ++ MACRO_OPTIONAL_FIND_PACKAGE(Performer) ++ MACRO_OPTIONAL_FIND_PACKAGE(GDAL) ++ MACRO_OPTIONAL_FIND_PACKAGE(GTA) ++ MACRO_OPTIONAL_FIND_PACKAGE(CURL) ++ MACRO_OPTIONAL_FIND_PACKAGE(LibVNCServer) ++ MACRO_OPTIONAL_FIND_PACKAGE(OurDCMTK) ++ MACRO_OPTIONAL_FIND_PACKAGE(FFmpeg) + FIND_PACKAGE(DirectShow) +- FIND_PACKAGE(SDL) +- FIND_PACKAGE(Poppler-glib) +- FIND_PACKAGE(RSVG) +- FIND_PACKAGE(GtkGl) ++ MACRO_OPTIONAL_FIND_PACKAGE(SDL) ++ MACRO_OPTIONAL_FIND_PACKAGE(Poppler-glib) ++ MACRO_OPTIONAL_FIND_PACKAGE(RSVG) ++ MACRO_OPTIONAL_FIND_PACKAGE(GtkGl) + FIND_PACKAGE(DirectInput) +- FIND_PACKAGE(NVTT) ++ MACRO_OPTIONAL_FIND_PACKAGE(NVTT) + IF (NOT WIN32) +- FIND_PACKAGE(Asio) ++ MACRO_OPTIONAL_FIND_PACKAGE(Asio) + ENDIF() + FIND_PACKAGE(ZeroConf) + ENDIF() + + IF(CMAKE_MAJOR_VERSION EQUAL 2 AND CMAKE_MINOR_VERSION LESS 8) +- FIND_PACKAGE(ITK) ++ MACRO_OPTIONAL_FIND_PACKAGE(ITK) + ENDIF() + + # Include macro utilities here +@@ -560,16 +561,16 @@ + + IF (DESIRED_QT_VERSION) + IF (DESIRED_QT_VERSION MATCHES 5) +- FIND_PACKAGE(Qt5Widgets) ++ MACRO_OPTIONAL_FIND_PACKAGE(Qt5Widgets) + ELSEIF (DESIRED_QT_VERSION MATCHES 4) +- FIND_PACKAGE(Qt4) ++ MACRO_OPTIONAL_FIND_PACKAGE(Qt4) + ELSE() +- FIND_PACKAGE(Qt3) ++ MACRO_OPTIONAL_FIND_PACKAGE(Qt3) + ENDIF() + + ELSE() + +- FIND_PACKAGE(Qt5Widgets QUIET) ++ MACRO_OPTIONAL_FIND_PACKAGE(Qt5Widgets QUIET) + + IF ( Qt5Widgets_FOUND ) + # CMake 2.8.8 or greater required +@@ -585,17 +586,17 @@ + ENDIF( ) + + IF ( NOT Qt5Widgets_FOUND ) +- FIND_PACKAGE(Qt4) ++ MACRO_OPTIONAL_FIND_PACKAGE(Qt4) + + IF (NOT QT4_FOUND) +- FIND_PACKAGE(Qt3) ++ MACRO_OPTIONAL_FIND_PACKAGE(Qt3) + ENDIF() + ENDIF() + ENDIF() + + #If we have found Qt5, let's try to top off by getting the webkit as well + IF ( Qt5Widgets_FOUND ) +- FIND_PACKAGE(Qt5WebKitWidgets QUIET) ++ MACRO_OPTIONAL_FIND_PACKAGE(Qt5WebKitWidgets QUIET) + ENDIF() + + ENDIF() +@@ -604,12 +605,12 @@ + IF (BUILD_OSG_EXAMPLES AND NOT ANDROID) + + +- FIND_PACKAGE(FLTK) +- FIND_PACKAGE(GLUT) +- FIND_PACKAGE(FOX) ++ MACRO_OPTIONAL_FIND_PACKAGE(FLTK) ++ MACRO_OPTIONAL_FIND_PACKAGE(GLUT) ++ MACRO_OPTIONAL_FIND_PACKAGE(FOX) + + SET(wxWidgets_USE_LIBS base core gl net) +- FIND_PACKAGE(wxWidgets) ++ MACRO_OPTIONAL_FIND_PACKAGE(wxWidgets) + + ENDIF(BUILD_OSG_EXAMPLES AND NOT ANDROID) + +@@ -630,10 +631,10 @@ + # can use Quicktime. + IF(NOT ANDROID) + IF(NOT APPLE) +- FIND_PACKAGE(GIFLIB) +- FIND_PACKAGE(JPEG) +- FIND_PACKAGE(PNG) +- FIND_PACKAGE(TIFF) ++ MACRO_OPTIONAL_FIND_PACKAGE(GIFLIB) ++ MACRO_OPTIONAL_FIND_PACKAGE(JPEG) ++ MACRO_OPTIONAL_FIND_PACKAGE(PNG) ++ MACRO_OPTIONAL_FIND_PACKAGE(TIFF) + # QuickTime is required for OS X, but optional for Windows. + IF(WIN32) + FIND_PACKAGE(QuickTime) +@@ -689,15 +690,7 @@ + SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -D_DEBUG") + ENDIF() + +-IF(UNIX AND NOT WIN32 AND NOT APPLE) +- IF(CMAKE_SIZEOF_VOID_P MATCHES "8") +- SET(LIB_POSTFIX "64" CACHE STRING "suffix for 32/64 dir placement") +- MARK_AS_ADVANCED(LIB_POSTFIX) +- ENDIF() +-ENDIF() +-IF(NOT DEFINED LIB_POSTFIX) +- SET(LIB_POSTFIX "") +-ENDIF() ++SET(LIB_POSTFIX ${LIB_SUFFIX}) + + # Here we apparantly do some funky stuff with making the bin/ and lib/ + # folders which is probably needed to work around a very old CMake bug? +@@ -1001,7 +994,7 @@ + ${PROJECT_BINARY_DIR}/doc/OpenSceneGraphReferenceDocs/osg32-32.png COPYONLY + ) + #INSTALL(FILES ${PROJECT_BINARY_DIR}/doc/${PROJECT_NAME}ReferenceDocs-${OPENSCENEGRAPH_VERSION}.chm DESTINATION doc OPTIONAL COMPONENT openscenegraph-doc) +- INSTALL(DIRECTORY ${PROJECT_BINARY_DIR}/doc/OpenSceneGraphReferenceDocs DESTINATION doc COMPONENT openscenegraph-doc) ++ INSTALL(DIRECTORY ${PROJECT_BINARY_DIR}/doc/OpenSceneGraphReferenceDocs DESTINATION ${GENTOO_DOCDIR} COMPONENT openscenegraph-doc) + + # now set up openthreads documentation generation + IF(BUILD_REF_DOCS_TAGFILE) +@@ -1017,7 +1010,7 @@ + ${PROJECT_BINARY_DIR}/doc/OpenThreadsReferenceDocs/osg32-32.png COPYONLY + ) + #INSTALL(FILES ${PROJECT_BINARY_DIR}/doc/${PROJECT_NAME}ReferenceDocs-${OPENSCENEGRAPH_VERSION}.chm DESTINATION doc OPTIONAL COMPONENT openscenegraph-doc) +- INSTALL(DIRECTORY ${PROJECT_BINARY_DIR}/doc/OpenThreadsReferenceDocs DESTINATION doc COMPONENT openthreads-doc) ++ INSTALL(DIRECTORY ${PROJECT_BINARY_DIR}/doc/OpenThreadsReferenceDocs DESTINATION ${GENTOO_DOCDIR} COMPONENT openthreads-doc) + + # Process our other doxyfiles but don't create targets for these + CONFIGURE_FILE(${PROJECT_SOURCE_DIR}/doc/Doxyfiles/all_Doxyfile +diff -ruN OpenSceneGraph-3.2.1/CMakeModules/COPYING-CMAKE-SCRIPTS new/CMakeModules/COPYING-CMAKE-SCRIPTS +--- OpenSceneGraph-3.2.1/CMakeModules/COPYING-CMAKE-SCRIPTS 1970-01-01 01:00:00.000000000 +0100 ++++ new/CMakeModules/COPYING-CMAKE-SCRIPTS 2014-08-20 00:27:15.371715620 +0200 +@@ -0,0 +1,22 @@ ++Redistribution and use in source and binary forms, with or without ++modification, are permitted provided that the following conditions ++are met: ++ ++1. Redistributions of source code must retain the copyright ++ notice, this list of conditions and the following disclaimer. ++2. Redistributions in binary form must reproduce the copyright ++ notice, this list of conditions and the following disclaimer in the ++ documentation and/or other materials provided with the distribution. ++3. The name of the author may not be used to endorse or promote products ++ derived from this software without specific prior written permission. ++ ++THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR ++IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES ++OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. ++IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, ++INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT ++NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, ++DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY ++THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ++(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF ++THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +diff -ruN OpenSceneGraph-3.2.1/CMakeModules/FindFLTK.cmake new/CMakeModules/FindFLTK.cmake +--- OpenSceneGraph-3.2.1/CMakeModules/FindFLTK.cmake 2010-11-11 17:51:46.000000000 +0100 ++++ new/CMakeModules/FindFLTK.cmake 2014-08-20 00:29:31.229439251 +0200 +@@ -1,52 +0,0 @@ +-# Locate FLTK +-# This module defines +-# FLTK_LIBRARY +-# FLTK_FOUND, if false, do not try to link to gdal +-# FLTK_INCLUDE_DIR, where to find the headers +-# +-# $FLTK_DIR is an environment variable that would +-# correspond to the ./configure --prefix=$FLTK_DIR +-# +-# Created by Robert Osfield. +- +-FIND_PATH(FLTK_INCLUDE_DIR Fl/Fl.H Fl/Fl.h +- $ENV{FLTK_DIR}/include +- $ENV{FLTK_DIR} +- ~/Library/Frameworks +- /Library/Frameworks +- /usr/local/include +- /usr/include +- /sw/include # Fink +- /opt/local/include # DarwinPorts +- /opt/csw/include # Blastwave +- /opt/include +- /usr/freeware/include +-) +- +-MACRO(FIND_FLTK_LIBRARY MYLIBRARY MYLIBRARYNAME) +- +- FIND_LIBRARY(${MYLIBRARY} +- NAMES ${MYLIBRARYNAME} +- PATHS +- $ENV{FLTK_DIR}/lib +- $ENV{FLTK_DIR} +- ~/Library/Frameworks +- /Library/Frameworks +- /usr/local/lib +- /usr/lib +- /sw/lib +- /opt/local/lib +- /opt/csw/lib +- /opt/lib +- /usr/freeware/lib64 +- ) +- +-ENDMACRO(FIND_FLTK_LIBRARY LIBRARY LIBRARYNAME) +- +-FIND_FLTK_LIBRARY(FLTK_LIBRARY fltk) +-FIND_FLTK_LIBRARY(FLTK_GL_LIBRARY fltk_gl) +- +-SET(FLTK_FOUND "NO") +-IF(FLTK_LIBRARY AND FLTK_INCLUDE_DIR) +- SET(FLTK_FOUND "YES") +-ENDIF(FLTK_LIBRARY AND FLTK_INCLUDE_DIR) +diff -ruN OpenSceneGraph-3.2.1/CMakeModules/MacroOptionalFindPackage.cmake new/CMakeModules/MacroOptionalFindPackage.cmake +--- OpenSceneGraph-3.2.1/CMakeModules/MacroOptionalFindPackage.cmake 1970-01-01 01:00:00.000000000 +0100 ++++ new/CMakeModules/MacroOptionalFindPackage.cmake 2014-08-20 00:32:02.142858484 +0200 +@@ -0,0 +1,28 @@ ++# - MACRO_OPTIONAL_FIND_PACKAGE() combines FIND_PACKAGE() with an OPTION() ++# MACRO_OPTIONAL_FIND_PACKAGE( [QUIT] ) ++# This macro is a combination of OPTION() and FIND_PACKAGE(), it ++# works like FIND_PACKAGE(), but additionally it automatically creates ++# an option name WITH_, which can be disabled via the cmake GUI. ++# or via -DWITH_=OFF ++# The standard _FOUND variables can be used in the same way ++# as when using the normal FIND_PACKAGE() ++ ++# Copyright (c) 2006, Alexander Neundorf, ++# ++# Redistribution and use is allowed according to the terms of the BSD license. ++# For details see the accompanying COPYING-CMAKE-SCRIPTS file. ++ ++ ++macro (MACRO_OPTIONAL_FIND_PACKAGE _name ) ++ option(WITH_${_name} "Search for ${_name} package" ON) ++ if (WITH_${_name}) ++ find_package(${_name} ${ARGN}) ++ else (WITH_${_name}) ++ set(${_name}_FOUND) ++ set(${_name}_INCLUDE_DIR) ++ set(${_name}_INCLUDES) ++ set(${_name}_LIBRARY) ++ set(${_name}_LIBRARIES) ++ endif (WITH_${_name}) ++endmacro (MACRO_OPTIONAL_FIND_PACKAGE) ++ +diff -ruN OpenSceneGraph-3.2.1/CMakeModules/OsgMacroUtils.cmake new/CMakeModules/OsgMacroUtils.cmake +--- OpenSceneGraph-3.2.1/CMakeModules/OsgMacroUtils.cmake 2014-04-13 18:03:17.000000000 +0200 ++++ new/CMakeModules/OsgMacroUtils.cmake 2014-08-20 07:31:10.261828759 +0200 +@@ -453,7 +453,7 @@ + IF(APPLE) + INSTALL(TARGETS ${TARGET_TARGETNAME} RUNTIME DESTINATION share/OpenSceneGraph/bin BUNDLE DESTINATION share/OpenSceneGraph/bin ) + ELSE(APPLE) +- INSTALL(TARGETS ${TARGET_TARGETNAME} RUNTIME DESTINATION share/OpenSceneGraph/bin COMPONENT openscenegraph-examples ) ++ INSTALL(TARGETS ${TARGET_TARGETNAME} RUNTIME DESTINATION bin COMPONENT openscenegraph-examples ) + ENDIF(APPLE) + + ENDMACRO(SETUP_EXAMPLE) +diff -ruN OpenSceneGraph-3.2.1/examples/osgviewerFLTK/CMakeLists.txt new/examples/osgviewerFLTK/CMakeLists.txt +--- OpenSceneGraph-3.2.1/examples/osgviewerFLTK/CMakeLists.txt 2007-06-25 10:35:06.000000000 +0200 ++++ new/examples/osgviewerFLTK/CMakeLists.txt 2014-08-20 00:40:48.620538012 +0200 +@@ -1,6 +1,6 @@ + SET(TARGET_SRC osgviewerFLTK.cpp ) + +-SET(TARGET_EXTERNAL_LIBRARIES ${FLTK_LIBRARY} ${FLTK_GL_LIBRARY}) ++SET(TARGET_EXTERNAL_LIBRARIES ${FLTK_BASE_LIBRARY} ${FLTK_GL_LIBRARY}) + + INCLUDE_DIRECTORIES(${FLTK_INCLUDE_DIR} ) + diff --git a/dev-games/openscenegraph/metadata.xml b/dev-games/openscenegraph/metadata.xml index 9daa7d7fd705..99260e6b9652 100644 --- a/dev-games/openscenegraph/metadata.xml +++ b/dev-games/openscenegraph/metadata.xml @@ -10,6 +10,7 @@ The OpenSceneGraph is an open source high performance 3D graphics toolkit, used by application developers in fields such as visual simulation, games, virtual reality, scientific visualization and modelling. Written entirely in Standard C++ and OpenGL it runs on all Windows platforms, OSX, GNU/Linux, IRIX, Solaris, HP-Ux, AIX and FreeBSD operating systems. The OpenSceneGraph is now well established as the world leading scene graph technology, used widely in the vis-sim, space, scientific, oil-gas, games and virtual reality industries. + Enable support for dev-cpp/asio library Build examples using x11-libs/fox library Enable support for sci-libs/gdal library Build OpenInventor plugin diff --git a/dev-games/openscenegraph/openscenegraph-3.2.1.ebuild b/dev-games/openscenegraph/openscenegraph-3.2.1.ebuild new file mode 100644 index 000000000000..cbff9feba38b --- /dev/null +++ b/dev-games/openscenegraph/openscenegraph-3.2.1.ebuild @@ -0,0 +1,131 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-games/openscenegraph/openscenegraph-3.2.1.ebuild,v 1.1 2014/10/10 20:17:05 hasufell Exp $ + +EAPI=5 + +inherit eutils cmake-utils flag-o-matic wxwidgets + +MY_PN="OpenSceneGraph" +MY_P=${MY_PN}-${PV} + +DESCRIPTION="Open source high performance 3D graphics toolkit" +HOMEPAGE="http://www.openscenegraph.org/projects/osg/" +SRC_URI="http://www.openscenegraph.org/downloads/developer_releases/${MY_P}.zip" + +LICENSE="wxWinLL-3 LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="asio curl debug doc examples ffmpeg fltk fox gdal gif glut gtk jpeg jpeg2k +openexr openinventor osgapps pdf png qt4 sdl svg tiff truetype vnc wxwidgets +xine xrandr zlib" + +# TODO: COLLADA, FBX, GTA, ITK, OpenVRML, Performer, DCMTK +RDEPEND=" + x11-libs/libSM + x11-libs/libXext + virtual/glu + virtual/opengl + asio? ( dev-cpp/asio ) + curl? ( net-misc/curl ) + examples? ( + fltk? ( x11-libs/fltk:1[opengl] ) + fox? ( x11-libs/fox:1.6[opengl] ) + glut? ( media-libs/freeglut ) + gtk? ( x11-libs/gtkglext ) + qt4? ( + dev-qt/qtcore:4 + dev-qt/qtgui:4 + dev-qt/qtopengl:4 + ) + sdl? ( media-libs/libsdl ) + wxwidgets? ( x11-libs/wxGTK[opengl,X] ) + ) + ffmpeg? ( virtual/ffmpeg ) + gdal? ( sci-libs/gdal ) + gif? ( media-libs/giflib ) + jpeg? ( virtual/jpeg ) + jpeg2k? ( media-libs/jasper ) + openexr? ( + media-libs/ilmbase + media-libs/openexr + ) + openinventor? ( media-libs/coin ) + pdf? ( app-text/poppler[cairo] ) + png? ( media-libs/libpng:0 ) + svg? ( + gnome-base/librsvg + x11-libs/cairo + ) + tiff? ( media-libs/tiff:0 ) + truetype? ( media-libs/freetype:2 ) + vnc? ( net-libs/libvncserver ) + xine? ( media-libs/xine-lib ) + xrandr? ( x11-libs/libXrandr ) + zlib? ( sys-libs/zlib ) +" +DEPEND="${RDEPEND} + app-arch/unzip + virtual/pkgconfig + x11-proto/xextproto + doc? ( app-doc/doxygen ) + xrandr? ( x11-proto/randrproto ) +" + +S=${WORKDIR}/${MY_P} + +DOCS=(AUTHORS.txt ChangeLog NEWS.txt) + +PATCHES=( + "${FILESDIR}"/${PN}-3.2.1-cmake.patch +) + +src_configure() { + if use examples && use wxwidgets; then + WX_GTK_VER="2.8" + need-wxwidgets unicode + fi + + # Needed by FFmpeg + append-cppflags -D__STDC_CONSTANT_MACROS + + mycmakeargs=( + -DDYNAMIC_OPENSCENEGRAPH=ON + -DWITH_ITK=OFF + -DGENTOO_DOCDIR="/usr/share/doc/${PF}" + $(cmake-utils_use_with asio) + $(cmake-utils_use_with curl) + $(cmake-utils_use_build doc DOCUMENTATION) + $(cmake-utils_use_build osgapps OSG_APPLICATIONS) + $(cmake-utils_use_build examples OSG_EXAMPLES) + $(cmake-utils_use_with ffmpeg FFmpeg) + $(cmake-utils_use_with fltk) + $(cmake-utils_use_with fox) + $(cmake-utils_use_with gdal) + $(cmake-utils_use_with gif GIFLIB) + $(cmake-utils_use_with glut) + $(cmake-utils_use_with gtk GtkGl) + $(cmake-utils_use_with jpeg) + $(cmake-utils_use_with jpeg2k Jasper) + $(cmake-utils_use_with openexr OpenEXR) + $(cmake-utils_use_with openinventor Inventor) + $(cmake-utils_use_with pdf Poppler-glib) + $(cmake-utils_use_with png) + $(cmake-utils_use_with qt4) + $(cmake-utils_use_with sdl) + $(cmake-utils_use_with svg rsvg) + $(cmake-utils_use_with tiff) + $(cmake-utils_use_with truetype Freetype) + $(cmake-utils_use_with vnc LibVNCServer) + $(cmake-utils_use_with wxwidgets wxWidgets) + $(cmake-utils_use_with xine) + $(cmake-utils_use xrandr OSGVIEWER_USE_XRANDR) + $(cmake-utils_use_with zlib) + ) + cmake-utils_src_configure +} + +src_compile() { + cmake-utils_src_compile + use doc && cmake-utils_src_compile doc_openscenegraph doc_openthreads +} diff --git a/dev-haskell/hspec-expectations/hspec-expectations-0.5.0.1.ebuild b/dev-haskell/hspec-expectations/hspec-expectations-0.5.0.1.ebuild index 651d2c4e1486..da1174cec6e2 100644 --- a/dev-haskell/hspec-expectations/hspec-expectations-0.5.0.1.ebuild +++ b/dev-haskell/hspec-expectations/hspec-expectations-0.5.0.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hspec-expectations/hspec-expectations-0.5.0.1.ebuild,v 1.1 2013/12/11 06:03:49 gienah Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hspec-expectations/hspec-expectations-0.5.0.1.ebuild,v 1.2 2014/10/10 15:21:16 ago Exp $ EAPI=5 @@ -15,7 +15,7 @@ SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" LICENSE="MIT" SLOT="0/${PV}" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="" RDEPEND="dev-haskell/hunit:=[profile?] diff --git a/dev-java/jruby/Manifest b/dev-java/jruby/Manifest index 78725d77cf7b..d3068c236511 100644 --- a/dev-java/jruby/Manifest +++ b/dev-java/jruby/Manifest @@ -1,3 +1,2 @@ DIST jruby-1.7.12-mvn-ant-ant.patch 210806 SHA256 3a46445615a3b4c6dcfea5e8b1cbf00177e81516c7fd70c619812be8ae0edf98 SHA512 18ab5e9a0ca04deccfe2ffaeba54c2c79c6f17fc5277bf32b800279f5a2a1c6e62ec273276b5b951d13d78b0de7b535b651a0d564b788cd972186895a3ab96ae WHIRLPOOL 23cdec09c9cae819d184676c57cc6fe2bc01b1c1a3dd574ae264e22796624beec31b2d5f8bec195594292b7dc742427c6e8f2f2bd48fad552a3fdb2cab0a2f07 -DIST jruby-src-1.6.8.tar.gz 14709528 SHA256 7832053682bf791de7a5b062b5c8a3521ad5d6468141238551a9959649df973a SHA512 924114149bd7ce81b15c71e80cf53f4b50eb8d5220098e5ead2b447b96a6a405d93a219fb19fb7a0b9e4dc6798fd99b547b2352aabe4f84b5a694fe6760fd24d WHIRLPOOL 1f21b0899ac6c37b1e3e94aa7ef0927a720092f3a8687ba476cc70d8cd58228dbfdf1e2ea3e29414c14c329f1b6f61178ae34dd40bdf8a4c39cae5251849ac6c DIST jruby-src-1.7.12.tar.gz 10537791 SHA256 c10c0581abe7d55519273b91bddf9d44610baf69b875473593fd739b0c059cc7 SHA512 f68e72c37543a5301041a1700b9a3ef07ea5be43b806187f49e7ef6172315c5cd2aa4d74466273122e35b1a190f9a0fb097127c9530f48740f278ff6f87704fe WHIRLPOOL 5b82c5ac00761a62c6d319dc9ff319a5036c7b30724449149595fbaac117a2dca61bc13480db79ef85f10278607556f7091698021c3a7cfd3b1359603755e01a diff --git a/dev-java/jruby/files/1.5.1/build.xml.patch b/dev-java/jruby/files/1.5.1/build.xml.patch deleted file mode 100644 index ef75208edee0..000000000000 --- a/dev-java/jruby/files/1.5.1/build.xml.patch +++ /dev/null @@ -1,20 +0,0 @@ -diff --git a/build.xml b/build.xml -index 9857cd2..f0c86b8 100644 ---- a/build.xml -+++ b/build.xml -@@ -816,6 +817,7 @@ - - - -+ - - - -@@ -871,6 +873,7 @@ - - - -+ - - - diff --git a/dev-java/jruby/files/1.5.1/testfixes.patch b/dev-java/jruby/files/1.5.1/testfixes.patch deleted file mode 100644 index 2ec2ad2956e3..000000000000 --- a/dev-java/jruby/files/1.5.1/testfixes.patch +++ /dev/null @@ -1,80 +0,0 @@ -diff --git a/test/externals/ruby1.8/ruby/test_signal.rb b/test/externals/ruby1.8/ruby/test_signal.rb -index 83ba834..d669440 100644 ---- a/test/externals/ruby1.8/ruby/test_signal.rb -+++ b/test/externals/ruby1.8/ruby/test_signal.rb -@@ -13,6 +13,7 @@ class TestSignal < Test::Unit::TestCase - end - - def test_signal -+ return - defined?(Process.kill) or return - - # FIXME, JRuby fails this test on OpenSolaris 2009.06 and Windows -diff --git a/test/test_kernel.rb b/test/test_kernel.rb -index a7de277..0e2a0ec 100644 ---- a/test/test_kernel.rb -+++ b/test/test_kernel.rb -@@ -738,15 +738,15 @@ class TestKernel < Test::Unit::TestCase - end - - # JRUBY-4348 -- def test_exec_rubyopt -- old = ENV['RUBYOPT'] -- ENV['RUBYOPT'] = "-v" -- result = `ruby -e "a=1"` -- assert_equal 0, $?.exitstatus -- assert_match /ruby/i, result -- ensure -- ENV['RUBYOPT'] = old -- end -+ #def test_exec_rubyopt -+ # old = ENV['RUBYOPT'] -+ # ENV['RUBYOPT'] = "-v" -+ # result = `ruby -e "a=1"` -+ # assert_equal 0, $?.exitstatus -+ # assert_match /ruby/i, result -+ #ensure -+ # ENV['RUBYOPT'] = old -+ #end - - # test - # trace_var -diff --git a/test/test_thread_service.rb b/test/test_thread_service.rb -index bd1e2a5..30fec50 100644 ---- a/test/test_thread_service.rb -+++ b/test/test_thread_service.rb -@@ -13,7 +13,7 @@ class TestThreadService < Test::Unit::TestCase - - # access maps and GC a couple times to flush things out - svc.ruby_thread_map.size -- GC_COUNT.times {JRuby.gc} -+ GC_COUNT.times {JRuby.gc; sleep 2} - - # confirm the size goes back to the same - assert_equal start_rt, svc.ruby_thread_map.size -@@ -25,10 +25,10 @@ class TestThreadService < Test::Unit::TestCase - - # spin up 100 Java threads and join them - (1..10).to_a.map {t = java.lang.Thread.new {}; t.start; t}.map(&:join) -- -+ - # access maps and GC a couple times to flush things out - svc.ruby_thread_map.size -- GC_COUNT.times {JRuby.gc} -+ GC_COUNT.times {JRuby.gc; sleep 2} - - # confirm the size goes back to the same - assert_equal start_rt, svc.ruby_thread_map.size -@@ -62,9 +62,9 @@ class TestThreadService < Test::Unit::TestCase - - # access maps and GC a couple times to flush things out - svc.ruby_thread_map.size -- GC_COUNT.times {JRuby.gc} -+ GC_COUNT.times {JRuby.gc; sleep 2} - - # confirm the thread list is back to what it was - assert_equal start_list, Thread.list - end --end -\ No newline at end of file -+end diff --git a/dev-java/jruby/files/jruby-1.6.8-bash-launcher.patch b/dev-java/jruby/files/jruby-1.6.8-bash-launcher.patch deleted file mode 100644 index 521f23515494..000000000000 --- a/dev-java/jruby/files/jruby-1.6.8-bash-launcher.patch +++ /dev/null @@ -1,180 +0,0 @@ -Author: Ralph Sennhauser - -Set JRUBY_HOME, JRUBY_CP, CP and JAVACMD as appropriate for Gentoo. -Remove JFFI_OPTS as the system jar knows where to look for the native lib. - -diff --git a/bin/jruby.bash b/bin/jruby.bash -index 731f85e..8299557 100755 ---- a/bin/jruby.bash -+++ b/bin/jruby.bash -@@ -25,31 +25,7 @@ if [ -z "$JAVA_VM" ]; then - JAVA_VM=-client - fi - --## resolve links - $0 may be a link to home --PRG=$0 --progname=`basename "$0"` -- --while [ -h "$PRG" ] ; do -- ls=`ls -ld "$PRG"` -- link=`expr "$ls" : '.*-> \(.*\)$'` -- if expr "$link" : '.*/.*' > /dev/null; then -- if expr "$link" : '/' > /dev/null; then -- PRG="$link" -- else -- PRG="`dirname ${PRG}`/${link}" -- fi -- else -- PRG="`dirname $PRG`/$link" -- fi --done -- --JRUBY_HOME_1=`dirname "$PRG"` # the ./bin dir --if [ "$JRUBY_HOME_1" = '.' ] ; then -- cwd=`pwd` -- JRUBY_HOME=`dirname $cwd` # JRUBY-2699 --else -- JRUBY_HOME=`dirname "$JRUBY_HOME_1"` # the . dir --fi -+JRUBY_HOME="${JRUBY_HOME:-/usr/share/jruby}" - - if [ -z "$JRUBY_OPTS" ] ; then - JRUBY_OPTS="" -@@ -81,17 +57,7 @@ for opt in ${JRUBY_OPTS[@]}; do - done - JRUBY_OPTS=${JRUBY_OPTS_TEMP} - --if [ -z "$JAVACMD" ] ; then -- if [ -z "$JAVA_HOME" ] ; then -- JAVACMD='java' -- else -- if $cygwin; then -- JAVACMD="`cygpath -u "$JAVA_HOME"`/bin/java" -- else -- JAVACMD="$JAVA_HOME/bin/java" -- fi -- fi --fi -+JAVACMD=java - - if [ -z "$JAVA_MEM" ] ; then - JAVA_MEM=-Xmx500m -@@ -132,21 +98,7 @@ JRUBY_SHELL=/bin/sh - - CP_DELIMITER=":" - --# add main jruby jar to the bootclasspath --for j in "$JRUBY_HOME"/lib/jruby.jar "$JRUBY_HOME"/lib/jruby-complete.jar; do -- if [ ! -e "$j" ]; then -- continue -- fi -- if [ "$JRUBY_CP" ]; then -- JRUBY_CP="$JRUBY_CP$CP_DELIMITER$j" -- else -- JRUBY_CP="$j" -- fi -- if [ $JRUBY_ALREADY_ADDED ]; then -- echo "WARNING: more than one JRuby JAR found in lib directory" -- fi -- JRUBY_ALREADY_ADDED=true --done -+JRUBY_CP="$(java-config-2 -d -p jruby)" - - if $cygwin; then - JRUBY_CP=`cygpath -p -w "$JRUBY_CP"` -@@ -154,29 +106,7 @@ fi - - # ----- Set Up The System Classpath ------------------------------------------- - --if [ "$JRUBY_PARENT_CLASSPATH" != "" ]; then -- # Use same classpath propagated from parent jruby -- CP=$JRUBY_PARENT_CLASSPATH --else -- # add other jars in lib to CP for command-line execution -- for j in "$JRUBY_HOME"/lib/*.jar; do -- if [ "$j" == "$JRUBY_HOME"/lib/jruby.jar ]; then -- continue -- fi -- if [ "$j" == "$JRUBY_HOME"/lib/jruby-complete.jar ]; then -- continue -- fi -- if [ "$CP" ]; then -- CP="$CP$CP_DELIMITER$j" -- else -- CP="$j" -- fi -- done -- -- if [ "$CP" != "" ] && $cygwin; then -- CP=`cygpath -p -w "$CP"` -- fi --fi -+CP="${JRUBY_PARENT_CLASSPATH}" - - if $cygwin; then - # switch delimiter only after building Unix style classpaths -@@ -254,15 +184,7 @@ do - java_args=("${java_args[@]}" "-Djava.awt.headless=true") ;; - # Run under JDB - --jdb) -- if [ -z "$JAVA_HOME" ] ; then -- JAVACMD='jdb' -- else -- if $cygwin; then -- JAVACMD="`cygpath -u "$JAVA_HOME"`/bin/jdb" -- else -- JAVACMD="$JAVA_HOME/bin/jdb" -- fi -- fi -+ JAVACMD='jdb' - java_args=("${java_args[@]}" "-sourcepath" "$JRUBY_HOME/lib/ruby/1.8:.") - JRUBY_OPTS=("${JRUBY_OPTS[@]}" "-X+C") ;; - --client) -@@ -310,18 +232,6 @@ set -- "${ruby_args[@]}" - - JAVA_OPTS="$JAVA_OPTS $JAVA_MEM $JAVA_MEM_MIN $JAVA_STACK" - --JFFI_BOOT="" --if [ -d "$JRUBY_HOME/lib/native/" ]; then -- for d in $JRUBY_HOME/lib/native/*`uname -s`; do -- if [ -z "$JFFI_BOOT" ]; then -- JFFI_BOOT="$d" -- else -- JFFI_BOOT="$JFFI_BOOT:$d" -- fi -- done --fi --JFFI_OPTS="-Djffi.boot.library.path=$JFFI_BOOT" -- - if $cygwin; then - JRUBY_HOME=`cygpath --mixed "$JRUBY_HOME"` - JRUBY_SHELL=`cygpath --mixed "$JRUBY_SHELL"` -@@ -354,7 +264,8 @@ if [ "$VERIFY_JRUBY" != "" ]; then - echo "Running with instrumented profiler" - fi - -- "$JAVACMD" $PROFILE_ARGS $JAVA_OPTS "$JFFI_OPTS" "${java_args[@]}" -classpath "$JRUBY_CP$CP_DELIMITER$CP$CP_DELIMITER$CLASSPATH" \ -+ "$JAVACMD" $PROFILE_ARGS $JAVA_OPTS "${java_args[@]}" -classpath "$JRUBY_CP$CP_DELIMITER$CP$CP_DELIMITER$CLASSPATH" \ - "-Djruby.home=$JRUBY_HOME" \ -+ "-Djruby.bindir=/usr/bin" \ - "-Djruby.lib=$JRUBY_HOME/lib" -Djruby.script=jruby \ - "-Djruby.shell=$JRUBY_SHELL" \ -@@ -377,7 +287,7 @@ if [ "$VERIFY_JRUBY" != "" ]; then - else - if $cygwin; then - # exec doed not work correctly with cygwin bash -- "$JAVACMD" $JAVA_OPTS "$JFFI_OPTS" "${java_args[@]}" -Xbootclasspath/a:"$JRUBY_CP" -classpath "$CP$CP_DELIMITER$CLASSPATH" \ -+ "$JAVACMD" $JAVA_OPTS "${java_args[@]}" -Xbootclasspath/a:"$JRUBY_CP" -classpath "$CP$CP_DELIMITER$CLASSPATH" \ - "-Djruby.home=$JRUBY_HOME" \ - "-Djruby.lib=$JRUBY_HOME/lib" -Djruby.script=jruby \ - "-Djruby.shell=$JRUBY_SHELL" \ -@@ -390,7 +300,8 @@ else - - exit $JRUBY_STATUS - else -- exec "$JAVACMD" $JAVA_OPTS "$JFFI_OPTS" "${java_args[@]}" -Xbootclasspath/a:"$JRUBY_CP" -classpath "$CP$CP_DELIMITER$CLASSPATH" \ -+ exec "$JAVACMD" $JAVA_OPTS "${java_args[@]}" -Xbootclasspath/a:"$JRUBY_CP" -classpath "$CP$CP_DELIMITER$CLASSPATH" \ - "-Djruby.home=$JRUBY_HOME" \ -+ "-Djruby.bindir=/usr/bin" \ - "-Djruby.lib=$JRUBY_HOME/lib" -Djruby.script=jruby \ - "-Djruby.shell=$JRUBY_SHELL" \ diff --git a/dev-java/jruby/jruby-1.6.8-r1.ebuild b/dev-java/jruby/jruby-1.6.8-r1.ebuild deleted file mode 100644 index c43ca8614f7b..000000000000 --- a/dev-java/jruby/jruby-1.6.8-r1.ebuild +++ /dev/null @@ -1,198 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/jruby/jruby-1.6.8-r1.ebuild,v 1.4 2014/05/13 04:54:54 graaff Exp $ - -EAPI="4" -JAVA_PKG_IUSE="doc source test" -inherit eutils java-pkg-2 java-ant-2 - -MY_PV="${PV/_rc1/RC1}" - -DESCRIPTION="Java-based Ruby interpreter implementation" -HOMEPAGE="http://jruby.codehaus.org/" -SRC_URI="http://jruby.org.s3.amazonaws.com/downloads/${PV}/${PN}-src-${PV}.tar.gz" -LICENSE="|| ( CPL-1.0 GPL-2 LGPL-2.1 )" -SLOT="0" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~x86-macos" -IUSE="bsf ssl" - -# jffi still needed? Or do we call that jnr-ffi? -# jnr-ffi depends on jffi which depends on libffi -CDEPEND=">=dev-java/bytelist-1.0.8:0 - >=dev-java/jline-1.0:0 - >=dev-java/joni-1.1.3:0 - >=dev-java/jnr-netdb-1.0:0 - >=dev-java/jvyamlb-0.2.5:0 - >=dev-java/asm-3.3.1:3 - >=dev-java/jcodings-1.0.5:0 - dev-java/jffi:1.0 - dev-java/jnr-constants:0 - dev-java/jnr-ffi:0.5 - dev-java/jnr-posix:1.1 - >=dev-java/joda-time-1.6:0 - dev-util/jay:0[java] - dev-java/nailgun:0 - dev-java/jgrapht:0 - dev-java/ant-core:0 - dev-java/bsf:2.3 - dev-java/osgi-core-api:0 - dev-java/snakeyaml:1.9 - dev-java/jzlib:1.1" - -RDEPEND="${CDEPEND} - >=virtual/jre-1.6 ~/jruby.fix' - echo 'emerge -1C $(< ~/jruby.fix)' - echo "rm ${directory}" - echo 'emerge -1 $(< ~/jruby.fix)' - echo 'rm ~/jruby.fix' - - eerror "For more information, please see http://bugs.gentoo.org/show_bug.cgi?id=302187" - fail="true" - fi - done - - if [[ -n ${fail} ]]; then - die "Please address the above errors, then run emerge --resume" - fi -} - -java_prepare() { - epatch "${FILESDIR}"/${P}-bash-launcher.patch - epatch "${FILESDIR}/1.5.1/build.xml.patch" - - # We don't need to use Retroweaver. There is a jarjar and a regular jar - # target but even with jarjarclean, both are a pain. The latter target - # is slightly easier so go with this one. - sed -r -i \ - -e 's/maxmemory="128m"/maxmemory="192m"/' \ - -e "/RetroWeaverTask/d" \ - -e "/yecht/! { //d }" \ - build.xml || die - - sed -i -e '/Arndt/d' src/org/jruby/RubyBigDecimal.java - - # Delete the bundled JARs but keep invokedynamic.jar. - # No source is available and it's only a dummy anyway. - find build_lib -name "*.jar" ! -name "jsr292-mock.jar" ! -name "yecht.jar" ! -name 'coro-mock-1.0-SNAPSHOT.jar' -delete || die -} - -src_compile() { - # Avoid generating the ri cache since that currently fails. - local flags="-Dgenerate-ri-cache.hasrun=true" - #local flags="" - use bsf && flags="-Dbsf.present=true" - - export RUBYOPT="" - einfo $RUBYOPT - eant jar $(use_doc apidocs) -Djdk1.5+=true ${flags} -} - -src_test() { - if [ ${UID} == 0 ] ; then - ewarn 'The tests will fail if run as root so skipping them.' - ewarn 'Enable FEATURES="userpriv" if you want to run them.' - return - fi - # Our jruby.jar is unbundled so we need to add the classpath to this test. - sed -i "s:java -jar:java -Xbootclasspath/a\:#{ENV['JRUBY_CP']} -jar:g" test/test_load_compiled_ruby_class_from_classpath.rb || die - sed -i "s@:refid => 'build.classpath'@:path =>\"#{ENV['JRUBY_CP']}:lib/jruby.jar\"@g" \ - rakelib/commands.rake || die - #sed -i "s@:refid => 'test.class.path'@:path => \"#{ENV['JRUBY_CP']}@g" \ - # rakelib/commands.rake || die - - #bsf optionally depends on jruby, which means that the previously - #installed jruby will be added to classpath, nasty things will happen. - local cpath=`java-pkg_getjars ${EANT_GENTOO_CLASSPATH// /,},junit-4` - cpath="$(echo ${cpath} | sed -e "s_${EROOT}/usr/share/jruby/lib/jruby.jar:__g")" - cpath="${cpath}:$(java-pkg_getjars --build-only commons-logging,xalan)" - EANT_GENTOO_CLASSPATH="" - - local flags="" - use bsf && flags="-Dbsf.present=true" - - #Clear RUBYOPT - export RUBYOPT="" - export JRUBY_CP="${cpath}" - ANT_TASKS="ant-junit4 ant-trax" \ - JRUBY_OPTS="" eant test -Djdk1.5+=true -Djruby.bindir=bin \ - -Dgentoo.classpath="${cpath}" ${flags} -} - -src_install() { - java-pkg_dojar lib/${PN}.jar - dodoc README docs/{*.txt,README.*} || die - - use doc && java-pkg_dojavadoc docs/api - use source && java-pkg_dosrc src/org - -# Use the bash based launcher to preserve whitespace in arguments. -# Ie allow >jruby -e "puts 'hello'"< to work otherwise -# >jruby -e "\"puts 'hello'\""< is needed. -# -# # We run the sed here in install so that we don't get the wrong -# # data during the test phase! -# sed \ -# -e '/++ebuild-cut-here++/, /--ebuild-cut-here--/ d' \ -# -e '/^JRUBY_HOME=/s:=:=/usr/share/jruby:' \ -# bin/jruby.sh > "${T}"/jruby - - newbin bin/jruby.bash jruby - dobin bin/j{irb{,_swing},rubyc} - - insinto "${RUBY_HOME}" - doins -r "${S}"/lib/ruby/{1.8,1.9,site_ruby} - - # Remove all the references to RubyGems as we're just going to - # install it through dev-ruby/rubygems. - find "${ED}${RUBY_HOME}" -type f \ - '(' '(' -path '*rubygems*' -not -name 'jruby.rb' ')' -or -name 'ubygems.rb' -or -name 'datadir.rb' ')' \ - -delete || die -} diff --git a/dev-java/jython/jython-2.7_beta2-r2.ebuild b/dev-java/jython/jython-2.7_beta2-r2.ebuild new file mode 100644 index 000000000000..8dde2ff52c44 --- /dev/null +++ b/dev-java/jython/jython-2.7_beta2-r2.ebuild @@ -0,0 +1,182 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/jython/jython-2.7_beta2-r2.ebuild,v 1.1 2014/10/10 18:54:25 chutzpah Exp $ + +EAPI=5 +JAVA_PKG_IUSE="doc examples source" + +inherit eutils java-pkg-2 java-ant-2 python-utils-r1 flag-o-matic + +MY_PV=${PV/_beta/-b} +MY_P=${PN}-${MY_PV} + +DESCRIPTION="An implementation of Python written in Java" +HOMEPAGE="http://www.jython.org" +SRC_URI="http://search.maven.org/remotecontent?filepath=org/python/${PN}/${MY_PV}/${MY_P}-sources.jar" + +LICENSE="PSF-2" +SLOT="2.7" +KEYWORDS="~amd64 ~x86 ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos" +IUSE="+readline test" +REQUIRED_USE="test? ( readline )" + +COMMON_DEP=" + dev-java/antlr:3 + dev-java/asm:4 + dev-java/commons-compress:0 + dev-java/guava:13 + >=dev-java/java-config-2.1.11-r3 + dev-java/jffi:1.2 + dev-java/jline:0 + dev-java/icu4j:52 + dev-java/jnr-constants:0 + dev-java/jnr-posix:2.1 + dev-java/stringtemplate:0 + dev-java/xerces:2 + java-virtuals/script-api:0 + java-virtuals/servlet-api:2.5 + readline? ( >=dev-java/libreadline-java-0.8.0:0 )" +RDEPEND="${COMMON_DEP} + >=virtual/jre-1.7" +DEPEND="${COMMON_DEP} + >=virtual/jdk-1.7 + app-arch/unzip + test? ( + dev-java/junit:4 + dev-java/ant-junit:0 + )" + +S=${WORKDIR} + +RESTRICT="test" + +JAVA_ANT_REWRITE_CLASSPATH="yes" +EANT_GENTOO_CLASSPATH="asm-4,commons-compress,guava-13,jffi-1.2,jline,jnr-constants" +EANT_GENTOO_CLASSPATH+=",script-api,servlet-api-2.5,stringtemplate,xerces-2,icu4j-52" +JAVA_ANT_CLASSPATH_TAGS+=" java" + +EANT_BUILD_TARGET="developer-build" +EANT_TEST_EXTRA_ARGS="-Dpython.home=dist" + +# jdbc-informix and jdbc-oracle-bin (requires registration) aren't exposed. +# Uncomment and add to COMMON_DEP if you want either of them +#EANT_GENTOO_CLASSPATH+=",jdbc-informix" EANT_EXTRA_ARGS+=" -Dinformix.present" +#EANT_GENTOO_CLASSPATH+=",jdbc-oracle-bin" EANT_EXTRA_ARGS+=" -Doracle.present" + +PATCHES=( + "${FILESDIR}"/${PN}-2.5.2-distutils_scripts_location.patch + "${FILESDIR}"/${PN}-2.5.2-respect_PYTHONPATH.patch + "${FILESDIR}"/${PN}-2.7_beta1-ant.patch + "${FILESDIR}"/${PN}-2.7_beta1-dont-always-recompile-classes.patch + "${FILESDIR}"/${P}-maxrepeat-import.patch +) + +java_prepare() { + find \( -name '*.jar' -o -name '*.class' \ + -o -name '*.pyc' -o -name '*.exe' \) -delete + + epatch "${PATCHES[@]}" + + if ! use readline; then + rm -v src/org/python/util/ReadlineConsole.java || die + fi + + # needed for launchertest + chmod +x tests/shell/test-jython.sh || die + + # apparently this can cause problems + append-flags -fno-stack-protector +} + +src_compile() { + use readline && EANT_GENTOO_CLASSPATH+=",libreadline-java" + + EANT_GENTOO_CLASSPATH_EXTRA="$(java-pkg_getjars --with-dependencies antlr-3,jnr-posix-2.1)" + EANT_GENTOO_CLASSPATH_EXTRA+=":$(java-pkg_getjars --build-only ant-core)" + + sed -i -e "1 a\ + CLASSPATH=\"$(java-pkg_getjars "${EANT_GENTOO_CLASSPATH}"):${EANT_GENTOO_CLASSPATH_EXTRA}\"" \ + src/shell/jython || die + + java-pkg-2_src_compile +} + +src_test() { + java-pkg-2_src_test +} + +src_install() { + local instdir=/usr/share/${PN}-${SLOT} + + java-pkg_newjar dist/${PN}-dev.jar + + java-pkg_register-optional-dependency jdbc-mysql + java-pkg_register-optional-dependency jdbc-postgresql + + insinto ${instdir} + doins -r dist/{Lib,registry} + + dodoc ACKNOWLEDGMENTS NEWS README.txt + + use doc && java-pkg_dojavadoc dist/Doc/javadoc + use source && java-pkg_dosrc src/* + use examples && java-pkg_doexamples Demo/* + + local java_args=( + -Dpython.home="${EPREFIX}"/usr/share/${PN}-${SLOT} + -Dpython.executable="${EPREFIX}"/usr/bin/jython${SLOT} + -Dpython.cachedir="\${HOME}/.jythoncachedir" + ) + + java-pkg_dolauncher jython${SLOT} \ + --main org.python.util.jython \ + --java_args "${java_args[*]}" + + if use readline; then + sed \ + -e "s/#\(python.console=org.python.util.ReadlineConsole\)/\1/" \ + -e "/#python.console.readlinelib=JavaReadline/a python.console.readlinelib=GnuReadline" \ + -i "${ED}"/usr/share/${PN}-${SLOT}/registry || die + fi + + # we need a wrapper to help python_optimize + cat <<-EOF > "${T}"/jython + exec java -cp "$(java-pkg_getjars "${EANT_GENTOO_CLASSPATH}"):${EANT_GENTOO_CLASSPATH_EXTRA}:dist/${PN}-dev.jar" \ + -Dpython.home="${ED}${instdir}" \ + -Dpython.cachedir="${T}/.jythoncachedir" \ + -Duser.home="${T}" \ + org.python.util.jython "\${@}" + EOF + chmod +x "${T}"/jython || die + + python_export jython${SLOT} EPYTHON PYTHON_SITEDIR + local PYTHON="${T}"/jython + + # compile tests (everything else is compiled already) + # we're keeping it quiet since jython reports errors verbosely + # and some of the tests are supposed to trigger compile errors + python_optimize "${ED}${instdir}"/Lib/test &>/dev/null + + # for python-exec + echo "EPYTHON='${EPYTHON}'" > epython.py + python_domodule epython.py + + # some of the class files end up with newer timestamps than the files they + # were generated from, make sure this doesn't happen + find "${ED}${instdir}"/Lib/ -name '*.class' | xargs touch +} + +pkg_postinst() { + if ! has_version dev-java/jython ; then + elog + elog "readline can be configured in the registry:" + elog + elog "python.console=org.python.util.ReadlineConsole" + elog "python.console.readlinelib=GnuReadline" + elog + elog "Global registry: '${EROOT}usr/share/${PN}-${SLOT}/registry'" + elog "User registry: '~/.jython'" + elog "See http://www.jython.org/docs/registry.html for more information." + elog + fi +} diff --git a/dev-java/nekohtml/nekohtml-1.9.18.ebuild b/dev-java/nekohtml/nekohtml-1.9.18.ebuild index f0bbbb98c853..138b582c9198 100644 --- a/dev-java/nekohtml/nekohtml-1.9.18.ebuild +++ b/dev-java/nekohtml/nekohtml-1.9.18.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/nekohtml/nekohtml-1.9.18.ebuild,v 1.3 2014/08/14 17:09:19 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/nekohtml/nekohtml-1.9.18.ebuild,v 1.4 2014/10/10 15:21:36 ago Exp $ EAPI="5" @@ -15,7 +15,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~ppc x86" +KEYWORDS="amd64 ~ppc x86" COMMON_DEP=">=dev-java/xerces-2.7" DEPEND=">=virtual/jdk-1.4 diff --git a/dev-lang/parrot/Manifest b/dev-lang/parrot/Manifest index 0c8ecd50716a..49f002b611a6 100644 --- a/dev-lang/parrot/Manifest +++ b/dev-lang/parrot/Manifest @@ -1,4 +1,3 @@ -DIST parrot-6.1.0.tar.gz 4602229 SHA256 87d25119c73acdb26f89ac4c68d73f3d996451ada51f3cb2cd4878b6f0e0a34c SHA512 f6945a44566cb4a4f6e4cc6c056ecb0038caf0b1b20927c12427ec24f22ba77d19043b403bde3d212324bc8f1fa83fa619661255a13e13d7066bbeb1f407b74f WHIRLPOOL cac154c3d8c78ba9ac1b86144c809261229e16fa86236303cce193ca726c914ab39aa5dc093f2678e63d117a6628242f50b936430c9a2b774203d0382f6af179 DIST parrot-6.2.0.tar.gz 4608819 SHA256 a4c97e5974cf6e6ee1e34317aafd2d87a3bd63730098a050d4f09802b13da814 SHA512 a6d99285fc4158faef783b28c6dba441abc3ced513569880d9986fdd6b48d020ffb38792dc4e0fbb843c11b58b969f063387a7e7179181e3bc3db253ab761291 WHIRLPOOL 3fde9a41d124088d8c220932e0fd8b6fd6336a524f7337f6a87be01993cbd71388fbda4ee91960dc81543f4d7266c95f617d0e32b6c487dbf7993ea0f62d3a4f DIST parrot-6.3.0.tar.gz 4598294 SHA256 42aa409fa82d827019ebd218e8f9501b50e04ee81f3ccf705e03f59611317a1b SHA512 5b74c6f6d2044a49a1787a7e5b1b13c9367fc61452aafc8e4021d91080d569ec67e6017b044388b951abeb50391aef49fd88c35c8015a2cfd818cb08a1cce155 WHIRLPOOL 99461589a43f0e543496305010ae7861b66199f071a2adeca40649c3dbd4e8bed910560e7da883e463e4a212cf3f0d0840c71f482c5bdf8be6d773bd0749d931 DIST parrot-6.4.0.tar.gz 4601456 SHA256 025bfe953211d09af6a4d80b13b4e7fef2bfaa055963b76f1bf674440c0cdbba SHA512 25eb9c6d3e4da6668b5ccbbffcbad96b69d3edbdb0dcbab0c9303c50abbd1d3efab3318e86a0be978b261c2875b5adf0abae12239182eaa6801edfdfdbbb4a19 WHIRLPOOL 70ccb11e67b0e721f096435d8d5bc66e2fb5643a7d29d1a3601c6e31f808baeee37ad534b35534f79484054cc64483589d01756e5508ccc16eabbb7bf232d8eb diff --git a/dev-lang/parrot/parrot-6.1.0.ebuild b/dev-lang/parrot/parrot-6.1.0.ebuild deleted file mode 100644 index 5a87c54d82d3..000000000000 --- a/dev-lang/parrot/parrot-6.1.0.ebuild +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/parrot-6.1.0.ebuild,v 1.2 2014/03/02 21:34:47 dilfridge Exp $ - -EAPI=5 - -inherit eutils multilib - -# weird failures -RESTRICT="test" - -DESCRIPTION="Virtual machine designed to efficiently compile and execute bytecode for dynamic languages" -HOMEPAGE="http://www.parrot.org/" -SRC_URI="ftp://ftp.parrot.org/pub/parrot/releases/devel/${PV}/${P}.tar.gz" - -LICENSE="Artistic-2" -SLOT="0/6.1.0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" -IUSE="opengl nls doc examples gdbm gmp ssl +unicode pcre" - -RDEPEND="sys-libs/readline - opengl? ( media-libs/freeglut ) - nls? ( sys-devel/gettext ) - unicode? ( >=dev-libs/icu-2.6:= ) - gdbm? ( >=sys-libs/gdbm-1.8.3-r1 ) - gmp? ( >=dev-libs/gmp-4.1.4 ) - ssl? ( dev-libs/openssl ) - pcre? ( dev-libs/libpcre ) - doc? ( dev-perl/JSON )" - -DEPEND="dev-lang/perl[doc?] - ${RDEPEND}" - -src_configure() { - myconf="--disable-rpath" - use unicode || myconf+=" --without-icu" - use ssl || myconf+=" --without-crypto" - use gdbm || myconf+=" --without-gdbm" - use nls || myconf+=" --without-gettext" - use gmp || myconf+=" --without-gmp" - use opengl || myconf+=" --without-opengl" - use pcre || myconf+=" --without-pcre" - - perl Configure.pl \ - --ccflags="${CFLAGS}" \ - --linkflags="${LDFLAGS}" \ - --prefix="${EPREFIX}"/usr \ - --libdir="${EPREFIX}"/usr/$(get_libdir) \ - --mandir="${EPREFIX}"/usr/share/man \ - --sysconfdir="${EPREFIX}"/etc \ - --sharedstatedir="${EPREFIX}"/var/lib/parrot \ - $myconf || die -} - -src_compile() { - export LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}"${S}"/blib/lib - # occasionally dies in parallel make - emake -j1 || die - if use doc ; then - emake -j1 html || die - fi -} - -src_test() { - emake -j1 test || die -} - -src_install() { - emake -j1 install-dev DESTDIR="${D}" DOC_DIR="${EPREFIX}/usr/share/doc/${PF}" || die - dodoc CREDITS DONORS.pod PBC_COMPAT PLATFORMS RESPONSIBLE_PARTIES TODO || die - if use examples; then - insinto "/usr/share/doc/${PF}/examples" - doins -r examples/* || die - fi - if use doc; then - insinto "/usr/share/doc/${PF}/editor" - doins -r editor || die - cd docs/html - dohtml -r developer.html DONORS.pod.html index.html ops.html parrotbug.html pdds.html \ - pmc.html tools.html docs src tools || die - fi -} diff --git a/dev-lang/parrot/parrot-6.2.0.ebuild b/dev-lang/parrot/parrot-6.2.0-r1.ebuild similarity index 94% rename from dev-lang/parrot/parrot-6.2.0.ebuild rename to dev-lang/parrot/parrot-6.2.0-r1.ebuild index 8a061ece0091..12b12ffe9134 100644 --- a/dev-lang/parrot/parrot-6.2.0.ebuild +++ b/dev-lang/parrot/parrot-6.2.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/parrot-6.2.0.ebuild,v 1.1 2014/03/26 10:28:22 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/parrot-6.2.0-r1.ebuild,v 1.1 2014/10/10 08:24:14 patrick Exp $ EAPI=5 @@ -14,7 +14,7 @@ HOMEPAGE="http://www.parrot.org/" SRC_URI="ftp://ftp.parrot.org/pub/parrot/releases/devel/${PV}/${P}.tar.gz" LICENSE="Artistic-2" -SLOT="0/6.1.0" +SLOT="0/${PV}" KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="opengl nls doc examples gdbm gmp ssl +unicode pcre" diff --git a/dev-lang/parrot/parrot-6.4.0.ebuild b/dev-lang/parrot/parrot-6.3.0-r1.ebuild similarity index 94% rename from dev-lang/parrot/parrot-6.4.0.ebuild rename to dev-lang/parrot/parrot-6.3.0-r1.ebuild index e56748492c26..5351615ad6fb 100644 --- a/dev-lang/parrot/parrot-6.4.0.ebuild +++ b/dev-lang/parrot/parrot-6.3.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/parrot-6.4.0.ebuild,v 1.1 2014/07/21 04:08:34 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/parrot-6.3.0-r1.ebuild,v 1.1 2014/10/10 08:24:14 patrick Exp $ EAPI=5 @@ -14,7 +14,7 @@ HOMEPAGE="http://www.parrot.org/" SRC_URI="ftp://ftp.parrot.org/pub/parrot/releases/all/${PV}/${P}.tar.gz" LICENSE="Artistic-2" -SLOT="0/6.1.0" +SLOT="0/${PV}" KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="opengl nls doc examples gdbm gmp ssl +unicode pcre" diff --git a/dev-lang/parrot/parrot-6.3.0.ebuild b/dev-lang/parrot/parrot-6.4.0-r1.ebuild similarity index 94% rename from dev-lang/parrot/parrot-6.3.0.ebuild rename to dev-lang/parrot/parrot-6.4.0-r1.ebuild index e6d1f074f8d6..3266369ed397 100644 --- a/dev-lang/parrot/parrot-6.3.0.ebuild +++ b/dev-lang/parrot/parrot-6.4.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/parrot-6.3.0.ebuild,v 1.1 2014/04/18 02:52:04 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/parrot-6.4.0-r1.ebuild,v 1.1 2014/10/10 08:24:14 patrick Exp $ EAPI=5 @@ -14,7 +14,7 @@ HOMEPAGE="http://www.parrot.org/" SRC_URI="ftp://ftp.parrot.org/pub/parrot/releases/all/${PV}/${P}.tar.gz" LICENSE="Artistic-2" -SLOT="0/6.1.0" +SLOT="0/${PV}" KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="opengl nls doc examples gdbm gmp ssl +unicode pcre" diff --git a/dev-lang/parrot/parrot-6.6.0.ebuild b/dev-lang/parrot/parrot-6.5.0-r1.ebuild similarity index 94% rename from dev-lang/parrot/parrot-6.6.0.ebuild rename to dev-lang/parrot/parrot-6.5.0-r1.ebuild index 034eb0897658..1b0c509ad1ab 100644 --- a/dev-lang/parrot/parrot-6.6.0.ebuild +++ b/dev-lang/parrot/parrot-6.5.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/parrot-6.6.0.ebuild,v 1.1 2014/07/21 04:08:34 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/parrot-6.5.0-r1.ebuild,v 1.1 2014/10/10 08:24:14 patrick Exp $ EAPI=5 @@ -14,7 +14,7 @@ HOMEPAGE="http://www.parrot.org/" SRC_URI="ftp://ftp.parrot.org/pub/parrot/releases/all/${PV}/${P}.tar.gz" LICENSE="Artistic-2" -SLOT="0/6.1.0" +SLOT="0/${PV}" KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="opengl nls doc examples gdbm gmp ssl +unicode pcre" diff --git a/dev-lang/parrot/parrot-6.5.0.ebuild b/dev-lang/parrot/parrot-6.6.0-r1.ebuild similarity index 94% rename from dev-lang/parrot/parrot-6.5.0.ebuild rename to dev-lang/parrot/parrot-6.6.0-r1.ebuild index da4704d5f347..eef0926825d4 100644 --- a/dev-lang/parrot/parrot-6.5.0.ebuild +++ b/dev-lang/parrot/parrot-6.6.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/parrot-6.5.0.ebuild,v 1.1 2014/06/27 06:34:08 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/parrot-6.6.0-r1.ebuild,v 1.1 2014/10/10 08:24:14 patrick Exp $ EAPI=5 @@ -14,7 +14,7 @@ HOMEPAGE="http://www.parrot.org/" SRC_URI="ftp://ftp.parrot.org/pub/parrot/releases/all/${PV}/${P}.tar.gz" LICENSE="Artistic-2" -SLOT="0/6.1.0" +SLOT="0/${PV}" KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="opengl nls doc examples gdbm gmp ssl +unicode pcre" diff --git a/dev-lang/parrot/parrot-6.7.0-r1.ebuild b/dev-lang/parrot/parrot-6.7.0-r1.ebuild new file mode 100644 index 000000000000..880b0393ec5a --- /dev/null +++ b/dev-lang/parrot/parrot-6.7.0-r1.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/parrot-6.7.0-r1.ebuild,v 1.1 2014/10/10 08:24:14 patrick Exp $ + +EAPI=5 + +inherit eutils multilib + +# weird failures +RESTRICT="test" + +DESCRIPTION="Virtual machine designed to efficiently compile and execute bytecode for dynamic languages" +HOMEPAGE="http://www.parrot.org/" +SRC_URI="ftp://ftp.parrot.org/pub/parrot/releases/all/${PV}/${P}.tar.gz" + +LICENSE="Artistic-2" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="opengl nls doc examples gdbm gmp ssl +unicode pcre" + +RDEPEND="sys-libs/readline + opengl? ( media-libs/freeglut ) + nls? ( sys-devel/gettext ) + unicode? ( >=dev-libs/icu-2.6:= ) + gdbm? ( >=sys-libs/gdbm-1.8.3-r1 ) + gmp? ( >=dev-libs/gmp-4.1.4 ) + ssl? ( dev-libs/openssl ) + pcre? ( dev-libs/libpcre ) + doc? ( dev-perl/JSON )" + +DEPEND="dev-lang/perl[doc?] + ${RDEPEND}" + +src_configure() { + myconf="--disable-rpath" + use unicode || myconf+=" --without-icu" + use ssl || myconf+=" --without-crypto" + use gdbm || myconf+=" --without-gdbm" + use nls || myconf+=" --without-gettext" + use gmp || myconf+=" --without-gmp" + use opengl || myconf+=" --without-opengl" + use pcre || myconf+=" --without-pcre" + + perl Configure.pl \ + --ccflags="${CFLAGS}" \ + --linkflags="${LDFLAGS}" \ + --prefix="${EPREFIX}"/usr \ + --libdir="${EPREFIX}"/usr/$(get_libdir) \ + --mandir="${EPREFIX}"/usr/share/man \ + --sysconfdir="${EPREFIX}"/etc \ + --sharedstatedir="${EPREFIX}"/var/lib/parrot \ + $myconf || die +} + +src_compile() { + export LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}"${S}"/blib/lib + # occasionally dies in parallel make + emake -j1 || die + if use doc ; then + emake -j1 html || die + fi +} + +src_test() { + emake -j1 test || die +} + +src_install() { + emake -j1 install-dev DESTDIR="${D}" DOC_DIR="${EPREFIX}/usr/share/doc/${PF}" || die + dodoc CREDITS DONORS.pod PBC_COMPAT PLATFORMS RESPONSIBLE_PARTIES TODO || die + if use examples; then + insinto "/usr/share/doc/${PF}/examples" + doins -r examples/* || die + fi + if use doc; then + insinto "/usr/share/doc/${PF}/editor" + doins -r editor || die + cd docs/html + dohtml -r developer.html DONORS.pod.html index.html ops.html parrotbug.html pdds.html \ + pmc.html tools.html docs src tools || die + fi +} diff --git a/dev-lang/parrot/parrot-6.7.0.ebuild b/dev-lang/parrot/parrot-6.7.0.ebuild deleted file mode 100644 index c44ffe32dad0..000000000000 --- a/dev-lang/parrot/parrot-6.7.0.ebuild +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/parrot-6.7.0.ebuild,v 1.1 2014/08/25 04:44:41 patrick Exp $ - -EAPI=5 - -inherit eutils multilib - -# weird failures -RESTRICT="test" - -DESCRIPTION="Virtual machine designed to efficiently compile and execute bytecode for dynamic languages" -HOMEPAGE="http://www.parrot.org/" -SRC_URI="ftp://ftp.parrot.org/pub/parrot/releases/all/${PV}/${P}.tar.gz" - -LICENSE="Artistic-2" -SLOT="0/6.1.0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" -IUSE="opengl nls doc examples gdbm gmp ssl +unicode pcre" - -RDEPEND="sys-libs/readline - opengl? ( media-libs/freeglut ) - nls? ( sys-devel/gettext ) - unicode? ( >=dev-libs/icu-2.6:= ) - gdbm? ( >=sys-libs/gdbm-1.8.3-r1 ) - gmp? ( >=dev-libs/gmp-4.1.4 ) - ssl? ( dev-libs/openssl ) - pcre? ( dev-libs/libpcre ) - doc? ( dev-perl/JSON )" - -DEPEND="dev-lang/perl[doc?] - ${RDEPEND}" - -src_configure() { - myconf="--disable-rpath" - use unicode || myconf+=" --without-icu" - use ssl || myconf+=" --without-crypto" - use gdbm || myconf+=" --without-gdbm" - use nls || myconf+=" --without-gettext" - use gmp || myconf+=" --without-gmp" - use opengl || myconf+=" --without-opengl" - use pcre || myconf+=" --without-pcre" - - perl Configure.pl \ - --ccflags="${CFLAGS}" \ - --linkflags="${LDFLAGS}" \ - --prefix="${EPREFIX}"/usr \ - --libdir="${EPREFIX}"/usr/$(get_libdir) \ - --mandir="${EPREFIX}"/usr/share/man \ - --sysconfdir="${EPREFIX}"/etc \ - --sharedstatedir="${EPREFIX}"/var/lib/parrot \ - $myconf || die -} - -src_compile() { - export LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}"${S}"/blib/lib - # occasionally dies in parallel make - emake -j1 || die - if use doc ; then - emake -j1 html || die - fi -} - -src_test() { - emake -j1 test || die -} - -src_install() { - emake -j1 install-dev DESTDIR="${D}" DOC_DIR="${EPREFIX}/usr/share/doc/${PF}" || die - dodoc CREDITS DONORS.pod PBC_COMPAT PLATFORMS RESPONSIBLE_PARTIES TODO || die - if use examples; then - insinto "/usr/share/doc/${PF}/examples" - doins -r examples/* || die - fi - if use doc; then - insinto "/usr/share/doc/${PF}/editor" - doins -r editor || die - cd docs/html - dohtml -r developer.html DONORS.pod.html index.html ops.html parrotbug.html pdds.html \ - pmc.html tools.html docs src tools || die - fi -} diff --git a/dev-lang/parrot/parrot-6.8.0-r1.ebuild b/dev-lang/parrot/parrot-6.8.0-r1.ebuild new file mode 100644 index 000000000000..32ca983d3b1b --- /dev/null +++ b/dev-lang/parrot/parrot-6.8.0-r1.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/parrot-6.8.0-r1.ebuild,v 1.1 2014/10/10 08:24:14 patrick Exp $ + +EAPI=5 + +inherit eutils multilib + +# weird failures +RESTRICT="test" + +DESCRIPTION="Virtual machine designed to efficiently compile and execute bytecode for dynamic languages" +HOMEPAGE="http://www.parrot.org/" +SRC_URI="ftp://ftp.parrot.org/pub/parrot/releases/all/${PV}/${P}.tar.gz" + +LICENSE="Artistic-2" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="opengl nls doc examples gdbm gmp ssl +unicode pcre" + +RDEPEND="sys-libs/readline + opengl? ( media-libs/freeglut ) + nls? ( sys-devel/gettext ) + unicode? ( >=dev-libs/icu-2.6:= ) + gdbm? ( >=sys-libs/gdbm-1.8.3-r1 ) + gmp? ( >=dev-libs/gmp-4.1.4 ) + ssl? ( dev-libs/openssl ) + pcre? ( dev-libs/libpcre ) + doc? ( dev-perl/JSON )" + +DEPEND="dev-lang/perl[doc?] + ${RDEPEND}" + +src_configure() { + myconf="--disable-rpath" + use unicode || myconf+=" --without-icu" + use ssl || myconf+=" --without-crypto" + use gdbm || myconf+=" --without-gdbm" + use nls || myconf+=" --without-gettext" + use gmp || myconf+=" --without-gmp" + use opengl || myconf+=" --without-opengl" + use pcre || myconf+=" --without-pcre" + + perl Configure.pl \ + --ccflags="${CFLAGS}" \ + --linkflags="${LDFLAGS}" \ + --prefix="${EPREFIX}"/usr \ + --libdir="${EPREFIX}"/usr/$(get_libdir) \ + --mandir="${EPREFIX}"/usr/share/man \ + --sysconfdir="${EPREFIX}"/etc \ + --sharedstatedir="${EPREFIX}"/var/lib/parrot \ + $myconf || die +} + +src_compile() { + export LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}"${S}"/blib/lib + # occasionally dies in parallel make + emake -j1 || die + if use doc ; then + emake -j1 html || die + fi +} + +src_test() { + emake -j1 test || die +} + +src_install() { + emake -j1 install-dev DESTDIR="${D}" DOC_DIR="${EPREFIX}/usr/share/doc/${PF}" || die + dodoc CREDITS DONORS.pod PBC_COMPAT PLATFORMS RESPONSIBLE_PARTIES TODO || die + if use examples; then + insinto "/usr/share/doc/${PF}/examples" + doins -r examples/* || die + fi + if use doc; then + insinto "/usr/share/doc/${PF}/editor" + doins -r editor || die + cd docs/html + dohtml -r developer.html DONORS.pod.html index.html ops.html parrotbug.html pdds.html \ + pmc.html tools.html docs src tools || die + fi +} diff --git a/dev-lang/parrot/parrot-6.8.0.ebuild b/dev-lang/parrot/parrot-6.8.0.ebuild deleted file mode 100644 index bb50e0f67926..000000000000 --- a/dev-lang/parrot/parrot-6.8.0.ebuild +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/parrot-6.8.0.ebuild,v 1.1 2014/09/19 05:37:11 patrick Exp $ - -EAPI=5 - -inherit eutils multilib - -# weird failures -RESTRICT="test" - -DESCRIPTION="Virtual machine designed to efficiently compile and execute bytecode for dynamic languages" -HOMEPAGE="http://www.parrot.org/" -SRC_URI="ftp://ftp.parrot.org/pub/parrot/releases/all/${PV}/${P}.tar.gz" - -LICENSE="Artistic-2" -SLOT="0/6.1.0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" -IUSE="opengl nls doc examples gdbm gmp ssl +unicode pcre" - -RDEPEND="sys-libs/readline - opengl? ( media-libs/freeglut ) - nls? ( sys-devel/gettext ) - unicode? ( >=dev-libs/icu-2.6:= ) - gdbm? ( >=sys-libs/gdbm-1.8.3-r1 ) - gmp? ( >=dev-libs/gmp-4.1.4 ) - ssl? ( dev-libs/openssl ) - pcre? ( dev-libs/libpcre ) - doc? ( dev-perl/JSON )" - -DEPEND="dev-lang/perl[doc?] - ${RDEPEND}" - -src_configure() { - myconf="--disable-rpath" - use unicode || myconf+=" --without-icu" - use ssl || myconf+=" --without-crypto" - use gdbm || myconf+=" --without-gdbm" - use nls || myconf+=" --without-gettext" - use gmp || myconf+=" --without-gmp" - use opengl || myconf+=" --without-opengl" - use pcre || myconf+=" --without-pcre" - - perl Configure.pl \ - --ccflags="${CFLAGS}" \ - --linkflags="${LDFLAGS}" \ - --prefix="${EPREFIX}"/usr \ - --libdir="${EPREFIX}"/usr/$(get_libdir) \ - --mandir="${EPREFIX}"/usr/share/man \ - --sysconfdir="${EPREFIX}"/etc \ - --sharedstatedir="${EPREFIX}"/var/lib/parrot \ - $myconf || die -} - -src_compile() { - export LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}"${S}"/blib/lib - # occasionally dies in parallel make - emake -j1 || die - if use doc ; then - emake -j1 html || die - fi -} - -src_test() { - emake -j1 test || die -} - -src_install() { - emake -j1 install-dev DESTDIR="${D}" DOC_DIR="${EPREFIX}/usr/share/doc/${PF}" || die - dodoc CREDITS DONORS.pod PBC_COMPAT PLATFORMS RESPONSIBLE_PARTIES TODO || die - if use examples; then - insinto "/usr/share/doc/${PF}/examples" - doins -r examples/* || die - fi - if use doc; then - insinto "/usr/share/doc/${PF}/editor" - doins -r editor || die - cd docs/html - dohtml -r developer.html DONORS.pod.html index.html ops.html parrotbug.html pdds.html \ - pmc.html tools.html docs src tools || die - fi -} diff --git a/dev-lang/php/php-5.3.29.ebuild b/dev-lang/php/php-5.3.29.ebuild index fb42d05b7b41..93d1f0133303 100644 --- a/dev-lang/php/php-5.3.29.ebuild +++ b/dev-lang/php/php-5.3.29.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.3.29.ebuild,v 1.10 2014/08/25 11:56:47 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.3.29.ebuild,v 1.11 2014/10/10 18:04:18 grknight Exp $ EAPI=5 @@ -793,7 +793,7 @@ pkg_postinst() { fi done - elog "Make sure that PHP_TARGETS in /etc/make.conf includes php${SLOT/./-} in order" + elog "Make sure that PHP_TARGETS in /etc/portage/make.conf includes php${SLOT/./-} in order" elog "to compile extensions for the ${SLOT} ABI" elog if ! use readline && use cli ; then @@ -803,7 +803,7 @@ pkg_postinst() { elog elog "This ebuild installed a version of php.ini based on php.ini-${PHP_INI_VERSION} version." elog "You can chose which version of php.ini to install by default by setting PHP_INI_VERSION to either" - elog "'production' or 'development' in /etc/make.conf" + elog "'production' or 'development' in /etc/portage/make.conf" ewarn "Both versions of php.ini can be found in /usr/share/doc/${PF}" elog diff --git a/dev-lang/php/php-5.4.32.ebuild b/dev-lang/php/php-5.4.32.ebuild index 0eef05a53755..7e986b6dfd6a 100644 --- a/dev-lang/php/php-5.4.32.ebuild +++ b/dev-lang/php/php-5.4.32.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.4.32.ebuild,v 1.9 2014/08/26 09:37:19 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.4.32.ebuild,v 1.10 2014/10/10 18:04:18 grknight Exp $ EAPI=5 @@ -778,7 +778,7 @@ pkg_postinst() { fi done - elog "Make sure that PHP_TARGETS in ${EPREFIX}/etc/make.conf includes php${SLOT/./-} in order" + elog "Make sure that PHP_TARGETS in ${EPREFIX}/etc/portage/make.conf includes php${SLOT/./-} in order" elog "to compile extensions for the ${SLOT} ABI" elog if ! use readline && use cli ; then @@ -788,7 +788,7 @@ pkg_postinst() { elog elog "This ebuild installed a version of php.ini based on php.ini-${PHP_INI_VERSION} version." elog "You can chose which version of php.ini to install by default by setting PHP_INI_VERSION to either" - elog "'production' or 'development' in ${EPREFIX}/etc/make.conf" + elog "'production' or 'development' in ${EPREFIX}/etc/portage/make.conf" elog "Both versions of php.ini can be found in ${EPREFIX}/usr/share/doc/${PF}" elog diff --git a/dev-lang/php/php-5.4.33.ebuild b/dev-lang/php/php-5.4.33.ebuild index f53f238f115a..46c54d8d97c6 100644 --- a/dev-lang/php/php-5.4.33.ebuild +++ b/dev-lang/php/php-5.4.33.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.4.33.ebuild,v 1.1 2014/09/19 12:14:27 olemarkus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.4.33.ebuild,v 1.2 2014/10/10 18:04:18 grknight Exp $ EAPI=5 @@ -778,7 +778,7 @@ pkg_postinst() { fi done - elog "Make sure that PHP_TARGETS in ${EPREFIX}/etc/make.conf includes php${SLOT/./-} in order" + elog "Make sure that PHP_TARGETS in ${EPREFIX}/etc/portage/make.conf includes php${SLOT/./-} in order" elog "to compile extensions for the ${SLOT} ABI" elog if ! use readline && use cli ; then @@ -788,7 +788,7 @@ pkg_postinst() { elog elog "This ebuild installed a version of php.ini based on php.ini-${PHP_INI_VERSION} version." elog "You can chose which version of php.ini to install by default by setting PHP_INI_VERSION to either" - elog "'production' or 'development' in ${EPREFIX}/etc/make.conf" + elog "'production' or 'development' in ${EPREFIX}/etc/portage/make.conf" elog "Both versions of php.ini can be found in ${EPREFIX}/usr/share/doc/${PF}" elog diff --git a/dev-lang/php/php-5.5.16.ebuild b/dev-lang/php/php-5.5.16.ebuild index b2a22828f97b..e7259343d3d7 100644 --- a/dev-lang/php/php-5.5.16.ebuild +++ b/dev-lang/php/php-5.5.16.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.5.16.ebuild,v 1.9 2014/08/26 09:37:19 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.5.16.ebuild,v 1.10 2014/10/10 18:04:18 grknight Exp $ EAPI=5 @@ -760,7 +760,7 @@ pkg_postinst() { fi done - elog "Make sure that PHP_TARGETS in ${EPREFIX}/etc/make.conf includes php${SLOT/./-} in order" + elog "Make sure that PHP_TARGETS in ${EPREFIX}/etc/portage/make.conf includes php${SLOT/./-} in order" elog "to compile extensions for the ${SLOT} ABI" elog if ! use readline && use cli ; then @@ -770,7 +770,7 @@ pkg_postinst() { elog elog "This ebuild installed a version of php.ini based on php.ini-${PHP_INI_VERSION} version." elog "You can chose which version of php.ini to install by default by setting PHP_INI_VERSION to either" - elog "'production' or 'development' in ${EPREFIX}/etc/make.conf" + elog "'production' or 'development' in ${EPREFIX}/etc/portage/make.conf" elog "Both versions of php.ini can be found in ${EPREFIX}/usr/share/doc/${PF}" elog diff --git a/dev-lang/php/php-5.5.17.ebuild b/dev-lang/php/php-5.5.17.ebuild index b53390aab779..b11e918f5e7d 100644 --- a/dev-lang/php/php-5.5.17.ebuild +++ b/dev-lang/php/php-5.5.17.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.5.17.ebuild,v 1.1 2014/09/19 12:14:27 olemarkus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.5.17.ebuild,v 1.2 2014/10/10 18:04:18 grknight Exp $ EAPI=5 @@ -760,7 +760,7 @@ pkg_postinst() { fi done - elog "Make sure that PHP_TARGETS in ${EPREFIX}/etc/make.conf includes php${SLOT/./-} in order" + elog "Make sure that PHP_TARGETS in ${EPREFIX}/etc/portage/make.conf includes php${SLOT/./-} in order" elog "to compile extensions for the ${SLOT} ABI" elog if ! use readline && use cli ; then @@ -770,7 +770,7 @@ pkg_postinst() { elog elog "This ebuild installed a version of php.ini based on php.ini-${PHP_INI_VERSION} version." elog "You can chose which version of php.ini to install by default by setting PHP_INI_VERSION to either" - elog "'production' or 'development' in ${EPREFIX}/etc/make.conf" + elog "'production' or 'development' in ${EPREFIX}/etc/portage/make.conf" elog "Both versions of php.ini can be found in ${EPREFIX}/usr/share/doc/${PF}" elog diff --git a/dev-lang/php/php-5.6.0.ebuild b/dev-lang/php/php-5.6.0.ebuild index a4f977aee7da..2a8314468b01 100644 --- a/dev-lang/php/php-5.6.0.ebuild +++ b/dev-lang/php/php-5.6.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.6.0.ebuild,v 1.1 2014/08/28 14:05:32 olemarkus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.6.0.ebuild,v 1.2 2014/10/10 18:04:18 grknight Exp $ EAPI=5 @@ -760,7 +760,7 @@ pkg_postinst() { fi done - elog "Make sure that PHP_TARGETS in ${EPREFIX}/etc/make.conf includes php${SLOT/./-} in order" + elog "Make sure that PHP_TARGETS in ${EPREFIX}/etc/portage/make.conf includes php${SLOT/./-} in order" elog "to compile extensions for the ${SLOT} ABI" elog if ! use readline && use cli ; then @@ -770,7 +770,7 @@ pkg_postinst() { elog elog "This ebuild installed a version of php.ini based on php.ini-${PHP_INI_VERSION} version." elog "You can chose which version of php.ini to install by default by setting PHP_INI_VERSION to either" - elog "'production' or 'development' in ${EPREFIX}/etc/make.conf" + elog "'production' or 'development' in ${EPREFIX}/etc/portage/make.conf" elog "Both versions of php.ini can be found in ${EPREFIX}/usr/share/doc/${PF}" elog diff --git a/dev-lang/php/php-5.6.1.ebuild b/dev-lang/php/php-5.6.1.ebuild index 3578b45589f7..6dffdf4f6e6b 100644 --- a/dev-lang/php/php-5.6.1.ebuild +++ b/dev-lang/php/php-5.6.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.6.1.ebuild,v 1.1 2014/10/03 09:04:04 olemarkus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-5.6.1.ebuild,v 1.2 2014/10/10 18:04:18 grknight Exp $ EAPI=5 @@ -760,7 +760,7 @@ pkg_postinst() { fi done - elog "Make sure that PHP_TARGETS in ${EPREFIX}/etc/make.conf includes php${SLOT/./-} in order" + elog "Make sure that PHP_TARGETS in ${EPREFIX}/etc/portage/make.conf includes php${SLOT/./-} in order" elog "to compile extensions for the ${SLOT} ABI" elog if ! use readline && use cli ; then @@ -770,7 +770,7 @@ pkg_postinst() { elog elog "This ebuild installed a version of php.ini based on php.ini-${PHP_INI_VERSION} version." elog "You can chose which version of php.ini to install by default by setting PHP_INI_VERSION to either" - elog "'production' or 'development' in ${EPREFIX}/etc/make.conf" + elog "'production' or 'development' in ${EPREFIX}/etc/portage/make.conf" elog "Both versions of php.ini can be found in ${EPREFIX}/usr/share/doc/${PF}" elog diff --git a/dev-lang/python/python-3.4.1.ebuild b/dev-lang/python/python-3.4.1.ebuild index c21008c5b47a..965e7768119c 100644 --- a/dev-lang/python/python-3.4.1.ebuild +++ b/dev-lang/python/python-3.4.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-3.4.1.ebuild,v 1.2 2014/09/26 10:08:32 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-3.4.1.ebuild,v 1.3 2014/10/10 15:24:11 ago Exp $ EAPI="4" WANT_AUTOMAKE="none" @@ -18,7 +18,7 @@ SRC_URI="http://www.python.org/ftp/python/${PV%_rc*}/${MY_P}.tar.xz LICENSE="PSF-2" SLOT="3.4" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" +KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" IUSE="build elibc_uclibc examples gdbm hardened ipv6 +ncurses +readline sqlite +ssl +threads tk wininst +xml" # Do not add a dependency on dev-lang/python to this ebuild. diff --git a/dev-libs/geoip/geoip-1.6.2.ebuild b/dev-libs/geoip/geoip-1.6.2.ebuild index cb12836b06e0..b6fdef2e9aba 100644 --- a/dev-libs/geoip/geoip-1.6.2.ebuild +++ b/dev-libs/geoip/geoip-1.6.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/geoip/geoip-1.6.2.ebuild,v 1.5 2014/10/09 09:55:14 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/geoip/geoip-1.6.2.ebuild,v 1.6 2014/10/10 11:04:13 ago Exp $ EAPI=5 inherit autotools eutils @@ -14,7 +14,7 @@ SRC_URI=" # GPL-2 for md5.c - part of libGeoIPUpdate, MaxMind for GeoLite Country db LICENSE="LGPL-2.1 GPL-2 MaxMind2" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos" +KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos" IUSE="static-libs" RESTRICT="test" diff --git a/dev-libs/gnulib/gnulib-9999-r1.ebuild b/dev-libs/gnulib/gnulib-9999-r1.ebuild index d47f4cfab861..6d92a236e898 100644 --- a/dev-libs/gnulib/gnulib-9999-r1.ebuild +++ b/dev-libs/gnulib/gnulib-9999-r1.ebuild @@ -1,43 +1,38 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/gnulib/gnulib-9999-r1.ebuild,v 1.6 2014/08/10 20:33:44 slyfox Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/gnulib/gnulib-9999-r1.ebuild,v 1.7 2014/10/10 15:26:13 jer Exp $ -EGIT_REPO_URI="git://git.savannah.gnu.org/${PN}.git - http://git.savannah.gnu.org/r/${PN}.git" +EAPI=5 -inherit eutils git-2 +inherit eutils git-r3 DESCRIPTION="Gnulib is a library of common routines intended to be shared at the source level" HOMEPAGE="http://www.gnu.org/software/gnulib" +EGIT_REPO_URI=" + git://git.savannah.gnu.org/${PN}.git + http://git.savannah.gnu.org/r/${PN}.git +" LICENSE="GPL-2" SLOT="0" KEYWORDS="" IUSE="doc" -DEPEND="" -RDEPEND="" - -S="${WORKDIR}"/${PN} - src_compile() { if use doc; then - emake -C doc info html || die "emake failed" + emake -C doc info html fi } src_install() { dodoc README ChangeLog - if use doc; then - dohtml doc/gnulib.html - doinfo doc/gnulib.info - fi insinto /usr/share/${PN} + doins -r build-aux + doins -r doc doins -r lib doins -r m4 doins -r modules - doins -r build-aux doins -r top # install the real script diff --git a/dev-libs/libgdata/libgdata-0.16.0.ebuild b/dev-libs/libgdata/libgdata-0.16.0.ebuild index f8b516cc2d67..803f29722cd7 100644 --- a/dev-libs/libgdata/libgdata-0.16.0.ebuild +++ b/dev-libs/libgdata/libgdata-0.16.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgdata/libgdata-0.16.0.ebuild,v 1.2 2014/09/25 11:26:43 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgdata/libgdata-0.16.0.ebuild,v 1.3 2014/10/10 20:09:35 maekke Exp $ EAPI="5" GCONF_DEBUG="yes" @@ -15,7 +15,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/libgdata" LICENSE="LGPL-2.1+" SLOT="0/19" # subslot = libgdata soname version IUSE="gnome +introspection static-libs vala" -KEYWORDS="~amd64 ~hppa ~x86" +KEYWORDS="~amd64 ~arm ~hppa ~x86" REQUIRED_IUSE="vala? ( introspection )" # gtk+ is needed for gdk diff --git a/dev-libs/liblouis/liblouis-2.5.3.ebuild b/dev-libs/liblouis/liblouis-2.5.3.ebuild index 31b7f08e00a1..8a8e27533ba6 100644 --- a/dev-libs/liblouis/liblouis-2.5.3.ebuild +++ b/dev-libs/liblouis/liblouis-2.5.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/liblouis/liblouis-2.5.3.ebuild,v 1.7 2014/10/09 09:13:00 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/liblouis/liblouis-2.5.3.ebuild,v 1.8 2014/10/10 10:59:36 ago Exp $ EAPI="5" @@ -15,7 +15,7 @@ SRC_URI="http://liblouis.googlecode.com/files/${P}.tar.gz" LICENSE="LGPL-3" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86" IUSE="python" RDEPEND="python? ( ${PYTHON_DEPS} )" DEPEND="${RDEPEND}" diff --git a/dev-libs/librevenge/librevenge-0.0.1.ebuild b/dev-libs/librevenge/librevenge-0.0.1.ebuild index 6168cc4599f5..23ca6088d583 100644 --- a/dev-libs/librevenge/librevenge-0.0.1.ebuild +++ b/dev-libs/librevenge/librevenge-0.0.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/librevenge/librevenge-0.0.1.ebuild,v 1.6 2014/08/28 09:28:11 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/librevenge/librevenge-0.0.1.ebuild,v 1.7 2014/10/10 20:15:17 maekke Exp $ EAPI="5" @@ -14,7 +14,7 @@ if [[ ${PV} == "9999" ]] ; then KEYWORDS="" else SRC_URI="http://sf.net/projects/libwpd/files/${PN}/${P}/${P}.tar.xz" - KEYWORDS="~amd64 ~hppa ~mips ~x86 ~x86-fbsd" + KEYWORDS="~amd64 ~arm ~hppa ~mips ~x86 ~x86-fbsd" fi LICENSE="|| ( MPL-2.0 LGPL-2.1 )" diff --git a/dev-libs/newt/newt-0.52.15.ebuild b/dev-libs/newt/newt-0.52.15.ebuild index c71440ca485f..992948bcc3cb 100644 --- a/dev-libs/newt/newt-0.52.15.ebuild +++ b/dev-libs/newt/newt-0.52.15.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/newt/newt-0.52.15.ebuild,v 1.11 2014/08/14 16:51:44 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/newt/newt-0.52.15.ebuild,v 1.12 2014/10/10 15:22:25 ago Exp $ EAPI="5" @@ -14,7 +14,7 @@ SRC_URI="https://fedorahosted.org/releases/n/e/newt/${P}.tar.gz" LICENSE="LGPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~x86-fbsd" +KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~x86-fbsd" IUSE="gpm tcl nls" REQUIRED_USE="${PYTHON_REQUIRED_USE}" diff --git a/dev-libs/pakchois/pakchois-0.4-r2.ebuild b/dev-libs/pakchois/pakchois-0.4-r2.ebuild index 6a031d467f01..921acc6ee602 100644 --- a/dev-libs/pakchois/pakchois-0.4-r2.ebuild +++ b/dev-libs/pakchois/pakchois-0.4-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/pakchois/pakchois-0.4-r2.ebuild,v 1.3 2014/09/13 11:50:39 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/pakchois/pakchois-0.4-r2.ebuild,v 1.4 2014/10/10 15:23:40 ago Exp $ EAPI="5" @@ -12,7 +12,7 @@ SRC_URI="http://www.manyfish.co.uk/pakchois/${P}.tar.gz" LICENSE="LGPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" IUSE="nls" DEPEND="" diff --git a/dev-libs/protobuf/protobuf-2.6.0.ebuild b/dev-libs/protobuf/protobuf-2.6.0.ebuild index fefdeab81c33..ab54cba250d3 100644 --- a/dev-libs/protobuf/protobuf-2.6.0.ebuild +++ b/dev-libs/protobuf/protobuf-2.6.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/protobuf-2.6.0.ebuild,v 1.4 2014/10/07 06:47:27 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/protobuf/protobuf-2.6.0.ebuild,v 1.5 2014/10/10 20:17:24 maekke Exp $ EAPI=5 JAVA_PKG_IUSE="source" @@ -15,7 +15,7 @@ SRC_URI="https://protobuf.googlecode.com/svn/rc/${P}.tar.bz2" LICENSE="Apache-2.0" SLOT="0/9" # subslot = soname major version -KEYWORDS="~amd64 -hppa ~mips -ppc -ppc64 ~x86 ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos" +KEYWORDS="~amd64 ~arm -hppa ~mips -ppc -ppc64 ~x86 ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos" IUSE="emacs examples java python static-libs vim-syntax" CDEPEND="emacs? ( virtual/emacs ) diff --git a/dev-perl/CGI-FormBuilder/CGI-FormBuilder-3.90.0.ebuild b/dev-perl/CGI-FormBuilder/CGI-FormBuilder-3.90.0.ebuild new file mode 100644 index 000000000000..d16080b84728 --- /dev/null +++ b/dev-perl/CGI-FormBuilder/CGI-FormBuilder-3.90.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/CGI-FormBuilder/CGI-FormBuilder-3.90.0.ebuild,v 1.1 2014/10/10 13:46:09 zlogene Exp $ + +EAPI=5 + +MODULE_AUTHOR=NWIGER +MODULE_VERSION=3.09 +MODULE_A_EXT=tgz +inherit perl-module + +DESCRIPTION="Extremely fast, reliable form generation and processing module" +HOMEPAGE="http://www.formbuilder.org/ ${HOMEPAGE}" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +# Templates that can be used - but they are optional +# >=dev-perl/HTML-Template-2.60.0 +# >=dev-perl/text-template-1.430.0 +# >=dev-perl/CGI-FastTemplate-1.90.0 +# >=dev-perl/Template-Toolkit-2.80.0 +# >=dev-perl/CGI-SSI-0.920.0 + +SRC_TEST=do diff --git a/dev-perl/CGI-FormBuilder/Manifest b/dev-perl/CGI-FormBuilder/Manifest index 0c6c72f38b1a..859060cae381 100644 --- a/dev-perl/CGI-FormBuilder/Manifest +++ b/dev-perl/CGI-FormBuilder/Manifest @@ -1 +1,2 @@ DIST CGI-FormBuilder-3.08.tgz 155393 SHA256 f7af79df9af541d1ed12dc41a8d3e61b9a1037710308bd29213020d4e3ab074c SHA512 6e184b9cd87b70012004a3893e11904629eb7e7f2770b51930d18d164970e11c2119b5dd8279a85129867802a5fd61741bd652f7180b60e0f4ce4e47df2c3918 WHIRLPOOL a13adb45b8c686dccaa8f3d3a9f749759531e048d040d5cb278b2195fbd3c4299e83ad2a7fba78de13ae517191c8b5c751a0d41a3b9e4a5cda48c1ce7f84c129 +DIST CGI-FormBuilder-3.09.tgz 163526 SHA256 654907527717c3bbb169c739a9a817f14552054619ab3c93d6a5f808649fa863 SHA512 6907131de95ac0188a4a80e380fd81554bd9fb8d2566e961e5ff05a30e4498bccb157ecfdc77bdcd05427ebc5882caaea47b044aaaddae85f48231c0b7eef240 WHIRLPOOL 1424607dc1d931e9fc71717ccb05c8b42d12b9d65cecf3b36ace4e5b5bb79db9075abae6110ed59ee3f169c853a450c2c8f065e038f49dbb4b4386799db42a51 diff --git a/dev-perl/Cache-Memcached-Fast/Cache-Memcached-Fast-0.190.0.ebuild b/dev-perl/Cache-Memcached-Fast/Cache-Memcached-Fast-0.190.0.ebuild deleted file mode 100644 index 7f629bb44759..000000000000 --- a/dev-perl/Cache-Memcached-Fast/Cache-Memcached-Fast-0.190.0.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/Cache-Memcached-Fast/Cache-Memcached-Fast-0.190.0.ebuild,v 1.1 2012/06/28 19:07:51 tove Exp $ - -EAPI=4 - -MODULE_AUTHOR=KROKI -MODULE_VERSION=0.19 -inherit perl-module - -DESCRIPTION="Perl client for memcached, in C language" - -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -SRC_TEST="do" - -MAKEOPTS="${MAKEOPTS} -j1" diff --git a/dev-perl/Cache-Memcached-Fast/Manifest b/dev-perl/Cache-Memcached-Fast/Manifest index d96d2876a32f..a6a0f235a69f 100644 --- a/dev-perl/Cache-Memcached-Fast/Manifest +++ b/dev-perl/Cache-Memcached-Fast/Manifest @@ -1,2 +1 @@ -DIST Cache-Memcached-Fast-0.19.tar.gz 93883 SHA256 75340f00302b39562211b37909ef2d73fd99f28ba7c90b4af205de506affd82c SHA512 f1d5f95edfbd6b33354afa7eb9f242ffd1101a2052b1132d42a982067c5167430b7ecb0b78991d8d8f3d5f1c48d0ccba6ecb17623a9cba994b094e8ef9ad6dac WHIRLPOOL 7dc322711ff119d2486a07cd928a59483677512cdd4b1b831510fc298b127e180d0be3f5cd26b9440dc0018965cae9a8fb3575221579d6892eb11cacd103f369 DIST Cache-Memcached-Fast-0.21.tar.gz 95139 SHA256 b17c2bc65f886dcd3a8b822d76a50de2f8addfd0b5a857988967adaffc9c7c53 SHA512 e81c2c0dc57e0823dc2df4f6ee5fc62bb53af248def15d8e7693631b615ebb896950cf5d12b22aa34132ff9e12a8f53727849522b839aca4f7dd080addc90202 WHIRLPOOL cd17f8fd029cc0ccf1bee2b49591367faef827f47cf0f09ca08969edfec8f63838082d5a47ac3482534ee6c9c2fa6757c490fddc5c6df338295ec3cc12035520 diff --git a/dev-perl/Class-C3/Class-C3-0.230.0.ebuild b/dev-perl/Class-C3/Class-C3-0.230.0.ebuild deleted file mode 100644 index c57c60ba16cc..000000000000 --- a/dev-perl/Class-C3/Class-C3-0.230.0.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/Class-C3/Class-C3-0.230.0.ebuild,v 1.6 2012/09/01 11:17:37 grobian Exp $ - -EAPI=4 - -MODULE_AUTHOR=FLORA -MODULE_VERSION=0.23 -inherit perl-module - -DESCRIPTION="A pragma to use the C3 method resolution order algortihm" - -SLOT="0" -KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~ppc-aix ~ppc-macos ~x64-macos ~x86-solaris" -IUSE="test" - -RDEPEND=" - || ( >=dev-lang/perl-5.10 - >=dev-perl/Class-C3-XS-0.07 )" -DEPEND="${RDEPEND} - test? ( dev-perl/Test-Pod - dev-perl/Test-Pod-Coverage )" - -SRC_TEST=do diff --git a/dev-perl/Class-C3/Manifest b/dev-perl/Class-C3/Manifest index 016b63880b29..a8ac1b1fb223 100644 --- a/dev-perl/Class-C3/Manifest +++ b/dev-perl/Class-C3/Manifest @@ -1,2 +1 @@ -DIST Class-C3-0.23.tar.gz 36194 SHA256 194587bce162d714359c1d3149883296a2d4ebcb575e36d825e42038d38e1c46 SHA512 70e194781519f77a9a8514f5a7c998f4d99f5b6dbd8faa4d99dc8af4fa733a72f58b7acd3ac96ae946a417b195d7003729fd0f3f67ae31b613be7d3588fa57ab WHIRLPOOL f132b41d1dd6c97cde41818d584415bb303ea1322e7f904d656ab69ba432a58c9f46eb39354ca425a733e282729b97577ffe80494523bcab06536c94aa873aa5 DIST Class-C3-0.25.tar.gz 39566 SHA256 344506d60e2e5b045a3bdeba7925cc0d5e1e161129ee44131a8c2a3a4d4acf4f SHA512 6c61f85d60869173d726f05debc018575118b4856065ce17fad82d56c279f76b3a68ec9d3286648834833fe696dae27f38f96813767c9a51a43f84355805175c WHIRLPOOL adc2c76c9fcde122ccf03671916c9762350badfcbf05b9caae36e967ff4cb61143ff5a3f18e3a7e83f3e4a56352658ca7ecbf1dd7688831aca70d2e7b5745df0 diff --git a/dev-perl/Class-DBI-AbstractSearch/Class-DBI-AbstractSearch-0.70.0.ebuild b/dev-perl/Class-DBI-AbstractSearch/Class-DBI-AbstractSearch-0.70.0.ebuild index b08bc8247927..95e3d378414f 100644 --- a/dev-perl/Class-DBI-AbstractSearch/Class-DBI-AbstractSearch-0.70.0.ebuild +++ b/dev-perl/Class-DBI-AbstractSearch/Class-DBI-AbstractSearch-0.70.0.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/Class-DBI-AbstractSearch/Class-DBI-AbstractSearch-0.70.0.ebuild,v 1.1 2011/09/01 11:22:52 tove Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Class-DBI-AbstractSearch/Class-DBI-AbstractSearch-0.70.0.ebuild,v 1.2 2014/10/10 17:49:54 zlogene Exp $ -EAPI=4 +EAPI=5 MODULE_AUTHOR=MIYAGAWA MODULE_VERSION=0.07 diff --git a/dev-perl/DBIx-Class-InflateColumn-Boolean/DBIx-Class-InflateColumn-Boolean-0.2.0.ebuild b/dev-perl/DBIx-Class-InflateColumn-Boolean/DBIx-Class-InflateColumn-Boolean-0.2.0.ebuild index cbbdd8020f24..bde6ca56251e 100644 --- a/dev-perl/DBIx-Class-InflateColumn-Boolean/DBIx-Class-InflateColumn-Boolean-0.2.0.ebuild +++ b/dev-perl/DBIx-Class-InflateColumn-Boolean/DBIx-Class-InflateColumn-Boolean-0.2.0.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBIx-Class-InflateColumn-Boolean/DBIx-Class-InflateColumn-Boolean-0.2.0.ebuild,v 1.1 2012/11/04 16:05:42 tove Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBIx-Class-InflateColumn-Boolean/DBIx-Class-InflateColumn-Boolean-0.2.0.ebuild,v 1.2 2014/10/10 22:17:38 zlogene Exp $ -EAPI=4 +EAPI=5 MODULE_AUTHOR=GRAF MODULE_VERSION=0.002000 diff --git a/dev-perl/Devel-NYTProf/Devel-NYTProf-5.60.0.ebuild b/dev-perl/Devel-NYTProf/Devel-NYTProf-5.60.0.ebuild new file mode 100644 index 000000000000..d91e2e5cd4eb --- /dev/null +++ b/dev-perl/Devel-NYTProf/Devel-NYTProf-5.60.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Devel-NYTProf/Devel-NYTProf-5.60.0.ebuild,v 1.1 2014/10/10 16:43:30 zlogene Exp $ + +EAPI=5 + +MODULE_AUTHOR=TIMB +MODULE_VERSION=5.06 +inherit perl-module + +DESCRIPTION="Powerful feature-rich perl source code profiler" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=" + virtual/perl-Getopt-Long + dev-perl/JSON-Any + sys-libs/zlib +" +# virtual/perl-XSLoader +DEPEND="${RDEPEND} + test? ( + virtual/perl-Scalar-List-Utils + >=virtual/perl-Test-Simple-0.84 + dev-perl/Test-Differences + ) +" +SRC_TEST="do" diff --git a/dev-perl/Devel-NYTProf/Manifest b/dev-perl/Devel-NYTProf/Manifest index d953a243cf58..d96d02d9f316 100644 --- a/dev-perl/Devel-NYTProf/Manifest +++ b/dev-perl/Devel-NYTProf/Manifest @@ -1,3 +1,4 @@ DIST Devel-NYTProf-4.23.tar.gz 415108 SHA256 92357ba28e399287942b9bdd0a7750460bbbae0d793c3c172a3dc15b38ac172d SHA512 24a463630bc7874e532432f0490cfbb76cf5edd2764126ba425f89fbde72197601aebcd8927fa1c3bbaa05bf7b64b2ed1337144dabab16a60d3e7be9b6b8947e WHIRLPOOL abe5b32dfcb6eea086e1aa84e37f270deddfa5a4b0aec9b0796ece8117d7111c1033efbd8623c88c7adf21edfad3ddf894c65cb855cc72c1952ecd3289e0adca DIST Devel-NYTProf-4.25.tar.gz 417049 SHA256 673195de92733a817bf5d2c0055f400d0d02d420fa081af517b637add241f167 SHA512 75ebf60eef1e180fef441a5d85f8962bd3a0257643f35cd3ee82f002e827841777c0934587393327d488d96add47f3ee7fa9fac3070d8ce9b2365165e95ae29a WHIRLPOOL 0ab44f46704c668f0ff06fc8e173e50c1015358f5687b658a96317130918c42aa7b95a4fd94975efa8073e5c784bed624f9936c857e8db1752ee5c5e5267db97 DIST Devel-NYTProf-5.05.tar.gz 430878 SHA256 45c2c77f42012c4ffc95f59bcbaa4e5677987acf7a8fdfe2118bf051de646e32 SHA512 ca2e5c0410a701ced306258dd8f6cce7e71d0a3c63660cfdd30493a678ed6bf81c7c65b83a155be1baa6fc5cc339fee69c38b4f90d7f15e872dc88df97ef874f WHIRLPOOL 61db5352e5d14ae297b4fe2655676bbabbba05eaaac929076cadd7770c3cf7ef6e7779299f0b3805f5551fb8c6ab254a9cbf9da4455323ca1cfdad673705dfcb +DIST Devel-NYTProf-5.06.tar.gz 427853 SHA256 c6733e8676773b1e15e98725e5f817e4354ae2e2c8472fdfc2a7d327380b35e0 SHA512 add2c4272243f2d729370354c43715217b1bba3c00b9eeeef006adc2f9ec2e88c0b9568a0b5c5296b5118d15957918b1e2a9ce4943fbc197089b80b208abeceb WHIRLPOOL 3856887532fa0f8d1e1500847cc0b3a928e011d94fad281cf831c6abc152034dc5564e9dda01d1433c1162aaad06f46aee0318211fd626e4ee9de5ab92d24f5a diff --git a/dev-perl/Import-Into/Import-Into-1.1.0.ebuild b/dev-perl/Import-Into/Import-Into-1.1.0.ebuild deleted file mode 100644 index de2403b66702..000000000000 --- a/dev-perl/Import-Into/Import-Into-1.1.0.ebuild +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/Import-Into/Import-Into-1.1.0.ebuild,v 1.2 2013/07/20 17:31:01 grobian Exp $ - -EAPI=4 - -MODULE_AUTHOR=MSTROUT -MODULE_VERSION=1.001000 -inherit perl-module - -DESCRIPTION="Import packages into other packages" - -SLOT="0" -KEYWORDS="~amd64 ~x86 ~ppc-aix ~x86-solaris" -IUSE="" - -SRC_TEST=do diff --git a/dev-perl/Import-Into/Manifest b/dev-perl/Import-Into/Manifest index 948134aedaa3..8c1f03a72c7f 100644 --- a/dev-perl/Import-Into/Manifest +++ b/dev-perl/Import-Into/Manifest @@ -1,2 +1 @@ -DIST Import-Into-1.001000.tar.gz 4762 SHA256 340d5fefa73428804dd45adfedb43e9bfa9a5337b9d2717c5b5fb1e637402c27 SHA512 1c62e0ce9b85f897d498f7035c7c30df2df6c549563e9729b807617609bcff75919c4002601130a836944d42b9be8d9eaf97f9d0f433262aca25d5af5c4e0dc7 WHIRLPOOL a7e0eea03cc41e2b027805c44718bab17082d1e50ea43d402184ee16d5ece95e50c783096068d871eb36dfbd44c30f46bbb08823ae91f6bcac3801c4645ad852 DIST Import-Into-1.002000.tar.gz 6483 SHA256 122277b33b42a1232681b457440309a031489bdb73a97d3c33b6bda9b1d8adbf SHA512 a36a59850adccd8cd2e25d4565627695c129a8e2a4097accb8afa90144c26f3f2e214679c35ac5ee269a672b352c9c9f1e1f49e35d17f08da257eef5e528bedd WHIRLPOOL 91571abc0e8f1dd4abb4020b8cb25d658bc68dd7c0771a1e6201259745b83bdd0ae4820d5a56ba3f1290b6f299926e99398221af7e323e435dd0077db57618d8 diff --git a/dev-perl/List-AllUtils/List-AllUtils-0.80.0.ebuild b/dev-perl/List-AllUtils/List-AllUtils-0.80.0.ebuild index ae1f619d382a..a0e9d75608ef 100644 --- a/dev-perl/List-AllUtils/List-AllUtils-0.80.0.ebuild +++ b/dev-perl/List-AllUtils/List-AllUtils-0.80.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/List-AllUtils/List-AllUtils-0.80.0.ebuild,v 1.2 2014/10/05 16:51:07 zlogene Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/List-AllUtils/List-AllUtils-0.80.0.ebuild,v 1.3 2014/10/10 18:20:13 mrueg Exp $ EAPI=5 @@ -15,7 +15,7 @@ KEYWORDS="~amd64 ~x86" IUSE="test" RDEPEND=">=dev-perl/List-MoreUtils-0.280.0 - >=virtual/perl-Scalar-List-Utils-1.190.0" + >=virtual/perl-Scalar-List-Utils-1.310.0" DEPEND="${RDEPEND} >=virtual/perl-ExtUtils-MakeMaker-6.300.0 diff --git a/dev-perl/List-AllUtils/List-AllUtils-0.90.0.ebuild b/dev-perl/List-AllUtils/List-AllUtils-0.90.0.ebuild new file mode 100644 index 000000000000..f81ab647ed10 --- /dev/null +++ b/dev-perl/List-AllUtils/List-AllUtils-0.90.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/List-AllUtils/List-AllUtils-0.90.0.ebuild,v 1.1 2014/10/10 18:20:13 mrueg Exp $ + +EAPI=5 + +MODULE_AUTHOR=DROLSKY +MODULE_VERSION=0.08 +inherit perl-module + +DESCRIPTION='Combines List::Util and List::MoreUtils in one bite-sized package' + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=">=dev-perl/List-MoreUtils-0.280.0 + >=virtual/perl-Scalar-List-Utils-1.310.0" + +DEPEND="${RDEPEND} + >=virtual/perl-ExtUtils-MakeMaker-6.300.0 + test? ( + virtual/perl-File-Temp + >=virtual/perl-Test-Simple-0.880.0 + dev-perl/Test-Warnings )" + +SRC_TEST="do" diff --git a/dev-perl/Module-Locate/Manifest b/dev-perl/Module-Locate/Manifest index fdf51e3bd05a..322f80bf49dd 100644 --- a/dev-perl/Module-Locate/Manifest +++ b/dev-perl/Module-Locate/Manifest @@ -1,3 +1 @@ -DIST Module-Locate-1.72.tar.gz 6335 SHA256 9efd0e731c2219bd8c91cde58196494c8de3dd979c4ba3df74b395944754a812 SHA512 55d14b93348077b478be63db90fb7032c66a82603067d40289d8d634fc1794e1610b5bb5be1295594a02ca5789941b668d29cf76000c0fa23791246f3e821722 WHIRLPOOL 9f48ffe7b08a8400d0b13bb6ea693895c7c7e168bef67fa9194c5b3ebb3b790f8bfe29474600fe33e232b0051164be48e0ad9f064bd9a857a71df5bffd40d951 -DIST Module-Locate-1.74.tar.gz 6463 SHA256 6ae5d085ad9f52d8a1bdfc43b29db8d527ebe4d4ad0dc6a9ac642bc90d94ab6f SHA512 b904052affa1671a66b1d0bcc988b27da9b92cf1a5d8d8fd527134429e052c05aad5a544947bef3850844cf3b563f189623a33ccef7662156b054e0b7dd6c8b3 WHIRLPOOL 8c0be5d663bf141d6762e7466a41f57398d10d846315b50684271188f92461384e4ab3f634230213aa0080c77f54503cd03d0f433c12571f4e740eb1d2f72b2d DIST Module-Locate-1.76.tar.gz 6574 SHA256 c249def507fc8f072e1cd10c1131b45c4f8fb0a1e6d39787539728b0d91002f5 SHA512 241fb679fe80af2360938fbf2fe0d4d20286386a3811e30c03d9daea37bbb498586122a5179bbc87994ee32f6de0b2c4211e2ba4740547f0d6f4c149a26ab70e WHIRLPOOL 171437376ce28159fd9e927a37ac0a8a99ee84173b2d73ed6aff800ed63d973959fb07c561efa40fa13dd3331b9bd92e46de48b3781b16737b5e341d036a2d6f diff --git a/dev-perl/Module-Locate/Module-Locate-1.720.0.ebuild b/dev-perl/Module-Locate/Module-Locate-1.720.0.ebuild deleted file mode 100644 index 04fa3d45ddaf..000000000000 --- a/dev-perl/Module-Locate/Module-Locate-1.720.0.ebuild +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/Module-Locate/Module-Locate-1.720.0.ebuild,v 1.1 2012/09/30 07:21:48 tove Exp $ - -EAPI=4 - -MODULE_AUTHOR=NEILB -MODULE_VERSION=1.72 -inherit perl-module - -DESCRIPTION="Locate modules in the same fashion as require and use" - -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris" -IUSE="" - -SRC_TEST="do" diff --git a/dev-perl/Module-Locate/Module-Locate-1.740.0.ebuild b/dev-perl/Module-Locate/Module-Locate-1.740.0.ebuild deleted file mode 100644 index a78af9c8dbc6..000000000000 --- a/dev-perl/Module-Locate/Module-Locate-1.740.0.ebuild +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/Module-Locate/Module-Locate-1.740.0.ebuild,v 1.1 2013/08/17 12:52:23 patrick Exp $ - -EAPI=4 - -MODULE_AUTHOR=NEILB -MODULE_VERSION=1.74 -inherit perl-module - -DESCRIPTION="Locate modules in the same fashion as require and use" - -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris" -IUSE="" - -SRC_TEST="do" diff --git a/dev-perl/MooseX-AttributeHelpers/MooseX-AttributeHelpers-0.230.0.ebuild b/dev-perl/MooseX-AttributeHelpers/MooseX-AttributeHelpers-0.230.0.ebuild index 1759509cee00..2df8ef1164ed 100644 --- a/dev-perl/MooseX-AttributeHelpers/MooseX-AttributeHelpers-0.230.0.ebuild +++ b/dev-perl/MooseX-AttributeHelpers/MooseX-AttributeHelpers-0.230.0.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/MooseX-AttributeHelpers/MooseX-AttributeHelpers-0.230.0.ebuild,v 1.1 2011/08/29 17:47:58 tove Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/MooseX-AttributeHelpers/MooseX-AttributeHelpers-0.230.0.ebuild,v 1.2 2014/10/10 17:48:16 zlogene Exp $ -EAPI=4 +EAPI=5 MODULE_AUTHOR=DROLSKY MODULE_VERSION=0.23 diff --git a/dev-perl/MooseX-Types-DateTime-ButMaintained/MooseX-Types-DateTime-ButMaintained-0.160.0.ebuild b/dev-perl/MooseX-Types-DateTime-ButMaintained/MooseX-Types-DateTime-ButMaintained-0.160.0.ebuild index c5994628293f..8a12effc1397 100644 --- a/dev-perl/MooseX-Types-DateTime-ButMaintained/MooseX-Types-DateTime-ButMaintained-0.160.0.ebuild +++ b/dev-perl/MooseX-Types-DateTime-ButMaintained/MooseX-Types-DateTime-ButMaintained-0.160.0.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/MooseX-Types-DateTime-ButMaintained/MooseX-Types-DateTime-ButMaintained-0.160.0.ebuild,v 1.1 2012/11/18 19:23:52 tove Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/MooseX-Types-DateTime-ButMaintained/MooseX-Types-DateTime-ButMaintained-0.160.0.ebuild,v 1.2 2014/10/10 17:46:25 zlogene Exp $ -EAPI=4 +EAPI=5 MODULE_AUTHOR=ECARROLL MODULE_VERSION=0.16 diff --git a/dev-perl/Proc-Simple/Manifest b/dev-perl/Proc-Simple/Manifest index 1f7a7873c64d..7503a470c1a1 100644 --- a/dev-perl/Proc-Simple/Manifest +++ b/dev-perl/Proc-Simple/Manifest @@ -1,2 +1 @@ -DIST Proc-Simple-1.30.tar.gz 16543 SHA256 e7f2255d23f37031c2d20f1ca25e7146803f7afd448346dd1187a84e33af7bd0 SHA512 2a394df69ca432825ded64cde2a5851710b3c8df35cedb3f750119a27f83dcba801f4a2583aeecf2ed887af2ed96014d5eff59081e27173dfbd20422432bed25 WHIRLPOOL ed283fe782a2f52d1e12b84931ea18a257b071a48e00b67dd697c5a1e60085ef73f8a78a4a04a40a7594921fdc9220f62338eeaf0c9908be061e1a56e5985a62 DIST Proc-Simple-1.31.tar.gz 17151 SHA256 5ed596d70693ebc62a75c56775766aa66808ea917e1765815dcc7cbe5299c3c2 SHA512 0000011949b9c725f2af18f02bddbcfa1e70edea4be7a1d730ac3dd8a4335e658e4852db1230180fb27ee86144d0b0eb57ac6bb1fbca72952960cd9e0abd3b8a WHIRLPOOL 73de82cf416ad9987d3f9d1286a886bbc00d74fa2ebb4b20ac6d7aa1433b8862147fb18690134a293298f259a85662f8bc1b229b27ab817095465734272c9235 diff --git a/dev-perl/Proc-Simple/Proc-Simple-1.300.0.ebuild b/dev-perl/Proc-Simple/Proc-Simple-1.300.0.ebuild deleted file mode 100644 index e07ea5015520..000000000000 --- a/dev-perl/Proc-Simple/Proc-Simple-1.300.0.ebuild +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/Proc-Simple/Proc-Simple-1.300.0.ebuild,v 1.5 2012/03/25 16:58:34 armin76 Exp $ - -EAPI=4 - -MODULE_AUTHOR=MSCHILLI -MODULE_VERSION=1.30 -inherit perl-module - -DESCRIPTION="Perl Proc-Simple - Launch and control background processes" - -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="" - -SRC_TEST="do" diff --git a/dev-perl/Sub-Override/Manifest b/dev-perl/Sub-Override/Manifest index 6b40317c6d9d..945c37aa8b2c 100644 --- a/dev-perl/Sub-Override/Manifest +++ b/dev-perl/Sub-Override/Manifest @@ -1,2 +1 @@ -DIST Sub-Override-0.08.tar.gz 5524 SHA256 72d2ef2d340f80b273a6b2798750026fbf64616dbc2eb2372858808f4dfc458f SHA512 3750305bb74aa54d3ae160ae36841a64e458221b1513846caa159173ffef9ee2229987097d1ec3fd8232958e2fc505ac5d91ccfbc1d79f37dcecf866ed6d44bf WHIRLPOOL d0b822a7647241e07bf347e9897dbe66bb52a5dfad6a59090232ca564e6838df6ffc4440c93023c32aa62e227972968973f33c2bd521e02c82a6d7ed0eabcdaa DIST Sub-Override-0.09.tar.gz 6462 SHA256 939a67c1f729968e0cc81b74958db750e1bdb7c020bee1a263332f422c2e25b5 SHA512 35000e8cabb6ca4cc0cac53af99fc9cb8ac14b1e71dbfa27dc58a339cb1b54e439064f2241798e351cc5ad297a2f9e4fde870ca97e2eb09a2430c11af589d412 WHIRLPOOL 8a1aea66177babe222c8b48f60a920f9888cf62a072fa236d9799f722fad3df262424d279299160cb5eb44b407a2d785683f2ea6e8bcb54c77bc8a5841038d5c diff --git a/dev-perl/Sub-Override/Sub-Override-0.80.0.ebuild b/dev-perl/Sub-Override/Sub-Override-0.80.0.ebuild deleted file mode 100644 index 4e7b3c18221b..000000000000 --- a/dev-perl/Sub-Override/Sub-Override-0.80.0.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/Sub-Override/Sub-Override-0.80.0.ebuild,v 1.3 2012/04/14 16:58:58 zmedico Exp $ - -EAPI=4 - -MODULE_AUTHOR=OVID -MODULE_VERSION=0.08 -inherit perl-module - -DESCRIPTION="Perl extension for easily overriding subroutines" - -SLOT="0" -KEYWORDS="amd64 ia64 ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux" -IUSE="test" - -DEPEND=" - test? ( - virtual/perl-Test-Simple - >=dev-perl/Test-Exception-0.21 - dev-perl/Test-Pod - dev-perl/Test-Pod-Coverage - )" - -SRC_TEST="do" diff --git a/dev-perl/Test-Portability-Files/Manifest b/dev-perl/Test-Portability-Files/Manifest index d6d51972e5cd..965be4bb13f9 100644 --- a/dev-perl/Test-Portability-Files/Manifest +++ b/dev-perl/Test-Portability-Files/Manifest @@ -1,2 +1 @@ -DIST Test-Portability-Files-0.05.tar.gz 14539 SHA256 60714e29ceab47962ce624593e1e972e0b92ab4c07711a686ad0d650d90be7f7 SHA512 029220f33aecb6610d8477bee91089fbd5c4f0150826f91b482ca9988fdffa106326c6f5d411a935204aa82b57d2fe470ba7b30927bf3d45ee248087407b789e WHIRLPOOL 4b6882b93dc0119115b9d2db1a1f763da414b23170cda8f73e1c52906de3c5588cbcf3861cd21c367811312f40966aff2d65b92ba001bb5b155453948b771748 DIST Test-Portability-Files-0.06.tar.gz 16892 SHA256 3e0fd033387ab82df8aedd42a14a8e64200aebd59447ad62a3bc411ff4a808a8 SHA512 ca6e913088850a9b147a7e11cb2207437413890d8cf301603f53d4901e7d1fa0272805c81458a12878ba6d26d178f174d925d41d7f9f072e96b84d687bb9ed4d WHIRLPOOL e688d5b4c8e4f28ad6d719d8c51901336d212a7c3211822ca7f81e3e97797cdff9db586c6a42d30be0b2a154324ca67bab24357cecd02e229e8c1d72bcc062e5 diff --git a/dev-perl/Test-Portability-Files/Test-Portability-Files-0.50.0.ebuild b/dev-perl/Test-Portability-Files/Test-Portability-Files-0.50.0.ebuild deleted file mode 100644 index 388a9d7896b9..000000000000 --- a/dev-perl/Test-Portability-Files/Test-Portability-Files-0.50.0.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-Portability-Files/Test-Portability-Files-0.50.0.ebuild,v 1.1 2011/08/28 13:34:00 tove Exp $ - -EAPI=4 - -MODULE_AUTHOR=SAPER -MODULE_VERSION=0.05 -inherit perl-module - -DESCRIPTION="Check file names portability" - -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="virtual/perl-File-Spec - virtual/perl-Test-Simple" -DEPEND="${RDEPEND} - virtual/perl-Module-Build" - -SRC_TEST="do" diff --git a/dev-perl/locale-maketext-lexicon/Manifest b/dev-perl/locale-maketext-lexicon/Manifest index 1a5eba37d1a9..e10c5ad33db2 100644 --- a/dev-perl/locale-maketext-lexicon/Manifest +++ b/dev-perl/locale-maketext-lexicon/Manifest @@ -1,3 +1 @@ -DIST Locale-Maketext-Lexicon-0.91.tar.gz 123815 SHA256 dd9b52d1893446536e72bb19332a4952afccd6707986b64740e9c28524892d4e SHA512 7d08917712590c30c755645b02fe93353e59a2a5a344cc64d539adc2d7ff978fc10c48cb2f254dd75cba7df79d774649d90970e45d83171ef535db1f84400f60 WHIRLPOOL cb58bdbe72f1b1a9a80f04ae2fc2f9811bfbb2298bb1d4ebd29c0b37dca0c8cb4612af876f2e76cf3218845c4f63238810b041f2f085db8752253980c8c07bdb -DIST Locale-Maketext-Lexicon-0.92.tar.gz 122825 SHA256 ff9a55ef66407973852bc0186e146f338512881205229dd1a0e02a436520b672 SHA512 572755bd54d718733509ffbfa8c353037b12c05ad19a633de19b58efd08fa0508f7c950c9bce00ed68f3b3658290b25ff6083cf136e36bab505bcfb254c35c82 WHIRLPOOL 0dd772098e907fb70500e81f047baccdb8870a3548ab5d6fe0862ff96a7e46ea90b9c98c852516fc8e46dfc29b218d25db03effb602704694be2d7edee222626 DIST Locale-Maketext-Lexicon-0.96.tar.gz 94819 SHA256 9b6edcd85bc93a6387daeacac30687ece8d5af1d4c43c7e1609f8e1d30915c76 SHA512 83d9c6503b4b31ea786c9c7c1d242c7d12df35e9aa735901b833cd582c0078a1136571841c2d7872e6e64ea8043159eb848e37f679747568d2fadfd14854b46f WHIRLPOOL 3234154a058d90e46bedd151d59a1b328b5b898c5f790a29a4026764aaa0e06add53799f4a9b0a58803027bfb04b70edcdcf7a41fe5407797aca878919e00eba diff --git a/dev-perl/locale-maketext-lexicon/locale-maketext-lexicon-0.910.0.ebuild b/dev-perl/locale-maketext-lexicon/locale-maketext-lexicon-0.910.0.ebuild deleted file mode 100644 index dd83c43d457c..000000000000 --- a/dev-perl/locale-maketext-lexicon/locale-maketext-lexicon-0.910.0.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/locale-maketext-lexicon/locale-maketext-lexicon-0.910.0.ebuild,v 1.8 2014/07/23 00:06:58 dilfridge Exp $ - -EAPI=4 - -MY_PN=Locale-Maketext-Lexicon -MODULE_AUTHOR=DRTECH -MODULE_VERSION=0.91 -inherit perl-module - -DESCRIPTION="Use other catalog formats in Maketext" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="alpha amd64 hppa ia64 ~ppc sparc x86 ~amd64-fbsd" -IUSE="test" - -RDEPEND=">=virtual/perl-Locale-Maketext-1.17" -DEPEND="${RDEPEND} - test? ( dev-perl/Test-Pod )" - -SRC_TEST="do" diff --git a/dev-perl/locale-maketext-lexicon/locale-maketext-lexicon-0.920.0.ebuild b/dev-perl/locale-maketext-lexicon/locale-maketext-lexicon-0.920.0.ebuild deleted file mode 100644 index 28f8ef02be39..000000000000 --- a/dev-perl/locale-maketext-lexicon/locale-maketext-lexicon-0.920.0.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/locale-maketext-lexicon/locale-maketext-lexicon-0.920.0.ebuild,v 1.8 2014/07/23 00:06:58 dilfridge Exp $ - -EAPI=4 - -MY_PN=Locale-Maketext-Lexicon -MODULE_AUTHOR=AUDREYT -MODULE_VERSION=0.92 -inherit perl-module - -DESCRIPTION="Use other catalog formats in Maketext" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="alpha amd64 hppa ia64 ~ppc sparc x86 ~amd64-fbsd" -IUSE="test" - -RDEPEND=" - >=virtual/perl-Locale-Maketext-1.170.0 -" -DEPEND="${RDEPEND} - test? ( - dev-perl/Test-Pod - ) -" - -SRC_TEST="do" diff --git a/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.3.11.ebuild b/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.3.11.ebuild index 92b0379ba46b..3cf7e41571ba 100644 --- a/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.3.11.ebuild +++ b/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.3.11.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.3.11.ebuild,v 1.3 2014/09/13 11:41:29 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.3.11.ebuild,v 1.4 2014/10/10 15:22:09 ago Exp $ EAPI="4" @@ -11,7 +11,7 @@ DESCRIPTION="Tar file management class" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" IUSE="" SRC_URI="http://pear.php.net/get/${MY_P}.tgz" DEPEND="|| ( =dev-lang/php-5.3 ) diff --git a/dev-php/PEAR-Net_CheckIP/Manifest b/dev-php/PEAR-Net_CheckIP/Manifest index 0c48803c550d..65fb5f3d6c4f 100644 --- a/dev-php/PEAR-Net_CheckIP/Manifest +++ b/dev-php/PEAR-Net_CheckIP/Manifest @@ -1,2 +1,2 @@ -DIST Net_CheckIP-1.1.tgz 1385 SHA256 39e19c6e30aefd461f782c56f00d707c7a2768a59d4be336b6756879905f9e7a SHA512 583c9630218e63902e1c783a60b0b5e995031a8894e6ab31de55d365cc19446555128ded46751237171d927b337fa5db60d828a8be06dee5681f6e3e61c2d4fb WHIRLPOOL c1d9499516c4afd060d6f752cc5c798fe5f2f3fa3d05b90c24709cfbc8d58d3a5054d4fe1e74762a18002a7e36086b1921ab7e2cc8d03fa6b315b653035ff82b DIST Net_CheckIP-1.2.1.tgz 1963 SHA256 dd98aa64fee36c26de8186b167d3ebc46fe6781d07a09ff5cffc67447de4f96f SHA512 8a6ca9328498bcfa56b7da2bb32e5093becdd32025be1615c610ea650511bfd3dab5218b6d400e14dd5b6f8429999c9c76024e95d042819c3a4dbd3a1b9a21b1 WHIRLPOOL c9eacaf33c10fee1f6d9129ea3d9f7409822e7557fc8e8bb051efdbce1c4da410c8e5b9ed4375b72c9eee5b2e5b1e0cd18f2faeef0225e39c47677d6fd462458 +DIST Net_CheckIP-1.2.2.tgz 2021 SHA256 bd2fcf134c7f113b7042880e49954a50d6a6df53e131ea720b8beec7a8191b47 SHA512 8b3fbf39e36782d9f1f364615809adddd834a1eca0aef09ea349cff358d1de7376c5df1b1148d3fb80fcf5aaa1d7545a1387978d53b7efc175644744ce345feb WHIRLPOOL 398bb701f2fd09ac64a1970e71829b94f8878fed646ec59d756e0ec11b688f5171c81396cb950bf090b45c44098598da791998fceac2ad3d7b3705c64d436956 diff --git a/dev-php/PEAR-Net_CheckIP/PEAR-Net_CheckIP-1.1-r1.ebuild b/dev-php/PEAR-Net_CheckIP/PEAR-Net_CheckIP-1.2.2.ebuild similarity index 63% rename from dev-php/PEAR-Net_CheckIP/PEAR-Net_CheckIP-1.1-r1.ebuild rename to dev-php/PEAR-Net_CheckIP/PEAR-Net_CheckIP-1.2.2.ebuild index 80d8348f4756..883e53daca12 100644 --- a/dev-php/PEAR-Net_CheckIP/PEAR-Net_CheckIP-1.1-r1.ebuild +++ b/dev-php/PEAR-Net_CheckIP/PEAR-Net_CheckIP-1.2.2.ebuild @@ -1,11 +1,13 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Net_CheckIP/PEAR-Net_CheckIP-1.1-r1.ebuild,v 1.17 2014/08/10 20:51:47 slyfox Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-Net_CheckIP/PEAR-Net_CheckIP-1.2.2.ebuild,v 1.1 2014/10/10 13:58:29 grknight Exp $ + +EAPI="5" inherit php-pear-r1 DESCRIPTION="Check the syntax of IPv4 addresses" -LICENSE="PHP-2.02" +LICENSE="MIT" SLOT="0" -KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="" diff --git a/dev-php/PEAR-PEAR/PEAR-PEAR-1.9.4.ebuild b/dev-php/PEAR-PEAR/PEAR-PEAR-1.9.4.ebuild index e4e0e9630c85..787d463e7229 100644 --- a/dev-php/PEAR-PEAR/PEAR-PEAR-1.9.4.ebuild +++ b/dev-php/PEAR-PEAR/PEAR-PEAR-1.9.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-PEAR/PEAR-PEAR-1.9.4.ebuild,v 1.11 2014/01/26 18:38:39 olemarkus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/PEAR-PEAR/PEAR-PEAR-1.9.4.ebuild,v 1.12 2014/10/10 16:59:08 grknight Exp $ EAPI="4" @@ -40,7 +40,7 @@ pkg_setup() { elog elog "If you want to change the above values, you need to set" elog "PEAR_CACHEDIR, PEAR_DOWNLOADDIR and PEAR_TEMPDIR variable(s)" - elog "accordingly in /etc/make.conf and re-emerge ${PN}." + elog "accordingly in /etc/portage/make.conf and re-emerge ${PN}." elog } diff --git a/dev-php/pecl-ssh2/pecl-ssh2-0.12-r1.ebuild b/dev-php/pecl-ssh2/pecl-ssh2-0.12-r1.ebuild index ae9999530310..3324953fb693 100644 --- a/dev-php/pecl-ssh2/pecl-ssh2-0.12-r1.ebuild +++ b/dev-php/pecl-ssh2/pecl-ssh2-0.12-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-ssh2/pecl-ssh2-0.12-r1.ebuild,v 1.3 2014/10/09 14:47:51 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-ssh2/pecl-ssh2-0.12-r1.ebuild,v 1.4 2014/10/10 11:06:20 ago Exp $ EAPI=5 @@ -17,6 +17,6 @@ DESCRIPTION="Provides bindings to the functions of libssh2 which implements the LICENSE="PHP-3" SLOT="0" IUSE="" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" DEPEND=">=net-libs/libssh2-1.2" RDEPEND="${DEPEND}" diff --git a/dev-php/phing/Manifest b/dev-php/phing/Manifest index 28cd74268b62..2676c0308de0 100644 --- a/dev-php/phing/Manifest +++ b/dev-php/phing/Manifest @@ -1,2 +1,3 @@ DIST phing-2.4.9.tgz 422585 SHA256 db87acb5258217fc57d5199aac603c3d4fba5e6af2cc448c6b1a685fd46d9235 SHA512 2012ba60e495fe77a920ffcccfeae100d0c640fa21f0882408abb9488a465430c585fed7814dec2f77e73d247b95831f9829f4f1f476c5f2376ec3fd13f5de14 WHIRLPOOL 6c208843946529d3157172bb2fb8d3bbc5ce037cd59d1b811b6478c48d02748a05751945943d21ff195128b6cac8ddf40dc795499fd63da91f7babd4186ad3b4 DIST phing-2.6.1.tgz 481484 SHA256 6437e74d969800d2e9bcb3da247cb1b9dc3c65055e519b8d1735d90ff80e9910 SHA512 11396c702079993d579303ab68cdfa928525caf882edd385860a00dee9a36dc93b05974c38011ab1ea419f434188cfaf299c434af943394b17645c0afb684373 WHIRLPOOL 1237441ac795822dde22800b9e0d1ad21f17d1a17d57d5745f045e8a8d34ff5a5bb92c9b74f984e93cfe399ccf2bdd165b08a5aac1f2409e9a41a0207f283c2a +DIST phing-2.8.2.phar 813699 SHA256 253ab59905ecb60b0be2d95bb4e222f0a71b9368fc24f022b64b9b23fc60198e SHA512 55304054a2c90787a29958143276be58bcfc8165db0594360853531dec3c9efaf3330ca1d217007fe0f700adb19b6cf98755f3f2b7dc4e1cd1bbfe7ee338b56f WHIRLPOOL afd5f76dd253691d725380532dabbdc69500bc290d1cb11fb343ed848f4f6f8417fb69ee49fe2f9455a6d202787fb6dd2834b788f8899e3640379286b2775323 diff --git a/dev-php/phing/phing-2.8.2.ebuild b/dev-php/phing/phing-2.8.2.ebuild new file mode 100644 index 000000000000..7ee52df35a77 --- /dev/null +++ b/dev-php/phing/phing-2.8.2.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/phing/phing-2.8.2.ebuild,v 1.1 2014/10/10 20:46:25 grknight Exp $ + +EAPI="5" + +DESCRIPTION="PHP project build system based on Apache Ant" +HOMEPAGE="http://www.phing.info/" +SRC_URI="http://www.phing.info/get/phing-${PV}.phar" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+minimal" + +DEPEND="" +RDEPEND="!minimal? ( dev-php/phpDocumentor + dev-php/PHP_CodeCoverage + >=dev-php/PEAR-HTTP_Request2-2.1.1 + >=dev-php/PEAR-PEAR_PackageFileManager-1.5.2 + >=dev-php/PEAR-VersionControl_SVN-0.3.0_alpha1 + >=dev-php/phpmd-1.1.0 + >=dev-php/phpunit-4.0 + >=dev-php/xdebug-2.0.5 + >=dev-php/simpletest-1.0.1_beta2 ) + dev-lang/php[phar,xml,xslt] + " + +S=${WORKDIR} + +src_unpack() { :; } + +src_install() { + insinto /usr/share/php/phing + insopts -m755 + newins "${DISTDIR}/${P}.phar" phing.phar + dosym /usr/share/php/phing/phing.phar /usr/bin/phing +} + +pkg_postinst() { + if use minimal; then + elog "You have enabled the minimal USE flag. If you want to use features" + elog "from xdebug, phpunit, simpletest and more, disable the" + elog "USE flag or emerge the packages manually" + fi +} diff --git a/dev-php/phpDocumentor/Manifest b/dev-php/phpDocumentor/Manifest index 353844361a89..ebf2206bb59a 100644 --- a/dev-php/phpDocumentor/Manifest +++ b/dev-php/phpDocumentor/Manifest @@ -1,2 +1,2 @@ -DIST phpDocumentor-2.2.0.tgz 4177835 SHA256 6de1fc5ea2c000cea791adc6f4074e6eab68c812448715b06ed7966a4e2dfc09 SHA512 d77f15a4661b6485d844144109f44abfba153874a84747d41d7d4e1b6e8fc9300860f382c60b89024a1abab219f591d80288c8a9bdc475b1df76126ec71b489f WHIRLPOOL b0f9c930f213ac8e30c50ba38944fb564649efc310b210306103e3fb6f238ac5428d0b0cbea85b833f9be7d71bdb82574ffda8bc080df8d8f21190c540a6d31e DIST phpDocumentor-2.3.0.tgz 17137438 SHA256 1b093f41ecadb0c541a9adb6dc520d4fe06eaf0a6c74a752ffe5e7bff63b751a SHA512 74ad4329d90e71a76977a38ed39dfeff33f557d68a1393f834f2eeb5d4b5e880a4b1813ecb1f4edff638fc5633a3a4b4c7156c5c6cb15e755db283780305c435 WHIRLPOOL 1b14119cbeb21f0887401423ddf50b6afdc379a433ad09db1229d8e53f7e7312df64055d69932d21deec1b3842c3cab78afe5212f7cd6eb1c9ebd8102acc3895 +DIST phpDocumentor-2.7.0.tgz 16118916 SHA256 4d0acb78e6233990595461b70f11db66d91fd38d4e8de5616b788db104caa746 SHA512 068f2470f73ea6940077c23f5565e737d6065e881b9d1456fc617b00c285cc2358773afc16e97e3d9403b5caaaa32a9dcd360bfc91decf349f4b100fee4a9129 WHIRLPOOL 29833d4cdf28f13bb4c78d3d9cb6a6c28acb9a60a1adfa5e6d30b4768afcec157aaecb32b85a75953e987bbda98d717076ebcc723c344af67f4ec32339fe7ba1 diff --git a/dev-php/phpDocumentor/phpDocumentor-2.2.0.ebuild b/dev-php/phpDocumentor/phpDocumentor-2.7.0.ebuild similarity index 86% rename from dev-php/phpDocumentor/phpDocumentor-2.2.0.ebuild rename to dev-php/phpDocumentor/phpDocumentor-2.7.0.ebuild index 198d999b8e64..2b0fcc0c2315 100644 --- a/dev-php/phpDocumentor/phpDocumentor-2.2.0.ebuild +++ b/dev-php/phpDocumentor/phpDocumentor-2.7.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/phpDocumentor/phpDocumentor-2.2.0.ebuild,v 1.3 2014/08/10 21:04:56 slyfox Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/phpDocumentor/phpDocumentor-2.7.0.ebuild,v 1.1 2014/10/10 14:18:14 grknight Exp $ EAPI=5 @@ -19,7 +19,7 @@ IUSE="doc" # block old version that provides the same binary DEPEND="!dev-php/PEAR-PhpDocumentor" RDEPEND="media-gfx/graphviz - dev-lang/php[iconv,intl,xslt]" + dev-lang/php[iconv,intl,xmlreader,xslt]" src_install() { php-pear-r1_src_install diff --git a/dev-php/phpunit/Manifest b/dev-php/phpunit/Manifest index 482b08c2c4d2..2e071e6bce6d 100644 --- a/dev-php/phpunit/Manifest +++ b/dev-php/phpunit/Manifest @@ -1 +1,2 @@ DIST phpunit-3.7.20.phar 2769487 SHA256 7972291d498a425f7daaf0274eed45d8ba564b87da3250fc975e1af2b0d60602 SHA512 9263364087ad2f4870ce4d849c31b75c82799088809e444206b9e113e917d05923ece62264568ee5f2a6d7aeb04d75cbdc375ddd7825ceff16704431de5f68bf WHIRLPOOL 7e6399ccfe01f5e59bd14e243ee4fed760a40d36708aea8c1c5be08b2814125effb89f351f8ea0777d280d7a5557aadfe6142330bbc020d4c1159658cfc99baa +DIST phpunit-4.3.1.phar 3324489 SHA256 1bac0c5f53bc04efa680bf9b3dcb35e804714eb8f497931ba81bdf08ae432c37 SHA512 de123e2301dc1d64e7401ceaec48c9458c3ab0dfc78faa488bed12c5b30b1367e1f9f6dfbbd5a07b427a56aad6d989f36a11b4642a0a843eed9c39e551be0490 WHIRLPOOL dbe5bed2251832c6c905b09c131bc2dc98de6247ef55077d9882c41a0b20b2e8b1c2489dbc0b3c1ed746f81c2b7163042e73790fff2b2ca78f8470875d77d88f diff --git a/dev-php/phpunit/files/channel.xml b/dev-php/phpunit/files/channel.xml deleted file mode 100644 index 91bb6786f543..000000000000 --- a/dev-php/phpunit/files/channel.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - pear.phpunit.de - PHPUnit PEAR Channel - phpunit - - - - http://pear.phpunit.de/rest/ - http://pear.phpunit.de/rest/ - http://pear.phpunit.de/rest/ - http://pear.phpunit.de/rest/ - - - - \ No newline at end of file diff --git a/dev-php/phpunit/phpunit-4.3.1.ebuild b/dev-php/phpunit/phpunit-4.3.1.ebuild new file mode 100644 index 000000000000..2bf11528530c --- /dev/null +++ b/dev-php/phpunit/phpunit-4.3.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/phpunit/phpunit-4.3.1.ebuild,v 1.1 2014/10/10 14:45:39 grknight Exp $ + +EAPI=5 + +DESCRIPTION="A PHP Unit Testing framework" +HOMEPAGE="http://phpunit.de" + +PHPUNIT_PHAR="${P}.phar" + +SRC_URI="https://phar.phpunit.de/${PHPUNIT_PHAR}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~x86" +IUSE="" + +DEPEND="dev-lang/php[phar,xml]" +RDEPEND="${DEPEND}" + +S="${WORKDIR}" + +src_unpack() { + return +} + +src_install() { + insinto /usr/share/php/phpunit + insopts -m755 + newins "${DISTDIR}"/${PHPUNIT_PHAR} phpunit.phar + dosym /usr/share/php/phpunit/phpunit.phar /usr/bin/phpunit +} + +pkg_postinst() { + elog "${PN} can optionally use json, pdo-sqlite and pdo-mysql features." + elog "If you want those, emerge dev-lang/php with USE=\"json pdo sqlite mysql\"." +} diff --git a/dev-php/tcpdf/Manifest b/dev-php/tcpdf/Manifest index cf22869b99dd..16d178bb6ac0 100644 --- a/dev-php/tcpdf/Manifest +++ b/dev-php/tcpdf/Manifest @@ -1 +1,2 @@ DIST tcpdf_5_9_149.zip 11636507 SHA256 f08579dff46ef648bd3f076ca679b3932604edbef188cc504f38c243f8e9b362 SHA512 c1821f59a5e46088bca424c047f3cf10bf9b9f68a63b2cd714d449a6cb6e06270285604b08be8fc660b5cd3785c3db00e46fc6a8d8f54e9f3bd86704f5a9aa07 WHIRLPOOL 4a357e5a689ceb2eb143d17957365b76a2ea0363c9003d3c8944e1bfb377f61bb053938235e8b56c62a6a1dffc6021e7c6a142d0dfee6a18d3ac3299bc19d6ed +DIST tcpdf_6_0_096.zip 16734285 SHA256 352086268b86900b9c6a68353ac5f31a86438d10f20f49797248f3f4b41e605b SHA512 99a554d02ee5e1f5288a09c95aa11c3a1384112a133bf98069a08ec6b02d87459366645b6d0548cc293f71f85f2b9b661644e5151dab50834b6b5d70cc1126a5 WHIRLPOOL 31dc13ca81f927f8be84e425839088af0092b2e96246ce10480897ee3fa32d3d22020e45f29aa7ccf9d7f1ea5fbb480d8261138bb7e3f60e1c07554720435d5d diff --git a/dev-php/tcpdf/tcpdf-6.0.096.ebuild b/dev-php/tcpdf/tcpdf-6.0.096.ebuild new file mode 100644 index 000000000000..41b9a6701e24 --- /dev/null +++ b/dev-php/tcpdf/tcpdf-6.0.096.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/tcpdf/tcpdf-6.0.096.ebuild,v 1.1 2014/10/10 16:27:03 grknight Exp $ + +EAPI=5 + +KEYWORDS="~amd64 ~x86" + +MY_P=${PN}_${PV//./_} + +DESCRIPTION="TCPDF is a FLOSS PHP class for generating PDF documents" +HOMEPAGE="http://www.tcpdf.org/" +SRC_URI="mirror://sourceforge/tcpdf/${MY_P}.zip" +# Main source is LGPL-3+, some included fonts have other licenses +LICENSE="LGPL-3+ GPL-3 BitstreamVera GPL-2" +SLOT="0" +IUSE="examples" + +RDEPEND="dev-lang/php" +DEPEND="app-arch/unzip" + +S="${WORKDIR}/${PN}" + +src_install() { + insinto "/usr/share/php/${PN}" + doins *.php tcpdf.* + doins -r config include fonts tools + + dodoc CHANGELOG.TXT README.TXT + + use examples && dodoc -r examples +} diff --git a/dev-python/argh/argh-0.25.0.ebuild b/dev-python/argh/argh-0.25.0.ebuild index c746dfa5f252..135e66278811 100644 --- a/dev-python/argh/argh-0.25.0.ebuild +++ b/dev-python/argh/argh-0.25.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/argh/argh-0.25.0.ebuild,v 1.3 2014/08/14 16:32:46 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/argh/argh-0.25.0.ebuild,v 1.4 2014/10/10 15:24:05 ago Exp $ EAPI=5 @@ -13,7 +13,7 @@ HOMEPAGE="http://packages.python.org/argh/" SRC_URI="mirror://pypi/a/${PN}/${P}.tar.gz" SLOT="0" -KEYWORDS="~amd64 x86" +KEYWORDS="amd64 x86" LICENSE="LGPL-3" IUSE="test" diff --git a/dev-python/clint/clint-0.3.1-r1.ebuild b/dev-python/clint/clint-0.3.1-r1.ebuild new file mode 100644 index 000000000000..abd38ea95a7f --- /dev/null +++ b/dev-python/clint/clint-0.3.1-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/clint/clint-0.3.1-r1.ebuild,v 1.1 2014/10/11 05:02:55 idella4 Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 python3_3 ) + +inherit distutils-r1 vcs-snapshot + +DESCRIPTION="Python Command-line Application Tools" +HOMEPAGE="https://github.com/kennethreitz/clint" +SRC_URI="https://github.com/kennethreitz/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64" +IUSE="doc examples test" + +DEPEND=" + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) + test? ( dev-python/pytest[${PYTHON_USEDEP}] ) +" +RDEPEND="" + +# Prevent install of files to wrong location +PATCHES=( "${FILESDIR}"/${PN}-setup.patch ) + +python_compile_all() { + use doc && emake -C docs html +} + +python_test() { + py.test || die "Tests failed under ${EPYTHON}" +} + +python_install_all() { + use doc && local HTML_DOCS=( docs/_build/html/. ) + use examples && local EXAMPLES=( examples/. ) + + distutils-r1_python_install_all +} diff --git a/dev-python/clint/files/clint-setup.patch b/dev-python/clint/files/clint-setup.patch new file mode 100644 index 000000000000..960dc99be429 --- /dev/null +++ b/dev-python/clint/files/clint-setup.patch @@ -0,0 +1,15 @@ +setup.py installs data files to /usr/ !!!??!! +diff -ur clint-0.3.1.orig/setup.py clint-0.3.1/setup.py +--- setup.py 2012-01-16 22:25:54.000000000 +0800 ++++ setup.py 2014-10-11 12:20:29.174133572 +0800 +@@ -29,10 +29,6 @@ + author='Kenneth Reitz', + author_email='me@kennethreitz.com', + url='https://github.com/kennethreitz/clint', +- data_files=[ +- 'README.rst', +- 'HISTORY.rst', +- ], + packages= [ + 'clint', + 'clint.textui', diff --git a/dev-python/dnspython/dnspython-1.12.0.ebuild b/dev-python/dnspython/dnspython-1.12.0.ebuild index 0f739d6a04ea..9f1e95a8e3a7 100644 --- a/dev-python/dnspython/dnspython-1.12.0.ebuild +++ b/dev-python/dnspython/dnspython-1.12.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/dnspython/dnspython-1.12.0.ebuild,v 1.1 2014/09/04 15:29:11 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/dnspython/dnspython-1.12.0.ebuild,v 1.2 2014/10/11 06:27:33 idella4 Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) @@ -24,15 +24,9 @@ DISTUTILS_IN_SOURCE_BUILD=1 python_test() { pushd "${BUILD_DIR}"/../tests &> /dev/null - local test - for test in *.py; do - if ! "${PYTHON}" ${test}; then - die "test $test failed under ${EPYTHON}" - else - einfo "test $test" - fi - done + "${PYTHON}" utest.py || die "tests failed under ${EPYTHON}" einfo "Testsuite passed under ${EPYTHON}" + popd &> /dev/null } python_install_all() { diff --git a/dev-python/execnet/execnet-1.2.0-r2.ebuild b/dev-python/execnet/execnet-1.2.0-r2.ebuild new file mode 100644 index 000000000000..9b992b1c5024 --- /dev/null +++ b/dev-python/execnet/execnet-1.2.0-r2.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/execnet/execnet-1.2.0-r2.ebuild,v 1.1 2014/10/10 13:34:07 idella4 Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) + +inherit distutils-r1 + +DESCRIPTION="Rapid multi-Python deployment" +HOMEPAGE="http://codespeak.net/execnet/ http://pypi.python.org/pypi/execnet/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc test" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) + test? ( dev-python/pytest[${PYTHON_USEDEP}] )" +RDEPEND="" + +PATCHES=( "${FILESDIR}"/1.2.0-tests.patch ) + +python_prepare_all() { + # Remove doctest that access an i'net site + rm doc/example/test_info.txt || die + + distutils-r1_python_prepare_all +} + +python_compile_all() { + use doc && emake -C doc html +} + +src_test() { + # Tests are a bit fragile to failures in parallel. + local DISTUTILS_NO_PARALLEL_BUILD=1 + distutils-r1_src_test +} + +python_test() { + # https://bitbucket.org/hpk42/execnet/issue/10 + unset PYTHONDONTWRITEBYTECODE + + # https://bitbucket.org/hpk42/execnet/issue/35/test-failures-in-execnet-120 + py.test || die "Tests fail with ${EPYTHON}" +} + +python_install_all() { + use doc && local HTML_DOCS=( doc/_build/html/. ) + + distutils-r1_python_install_all +} diff --git a/dev-python/execnet/files/1.2.0-tests.patch b/dev-python/execnet/files/1.2.0-tests.patch new file mode 100644 index 000000000000..13bed5d59605 --- /dev/null +++ b/dev-python/execnet/files/1.2.0-tests.patch @@ -0,0 +1,115 @@ +# HG changeset patch +# User holger krekel +# Date 1412585605 -7200 +# Node ID c9303c302995a4fb844553d4977c55abc72e2020 +# Parent 47ff3652b0aed191f7bafc741c211d1415f65224 +fix issue35: adapt some doctests, fix some channel tests for py3. +Also modernize tox.ini a bit. +--rebased +diff -ur execnet-1.2.0.orig/doc/example/test_group.txt execnet-1.2.0/doc/example/test_group.txt +--- doc/example/test_group.txt 2014-01-29 19:50:22.000000000 +0800 ++++ doc/example/test_group.txt 2014-10-10 19:51:00.108828123 +0800 +@@ -14,7 +14,7 @@ + >>> group + + >>> list(group) +- [, ] ++ [, ] + >>> 'gw0' in group and 'gw1' in group + True + >>> group['gw0'] == group[0] +@@ -37,7 +37,7 @@ + >>> gw = group.makegateway("popen//id=sub1") + >>> assert gw.id == "sub1" + >>> group['sub1'] +- ++ + + Getting (auto) IDs before instantiation + ------------------------------------------------------ +diff -ur execnet-1.2.0.orig/doc/example/test_proxy.txt execnet-1.2.0/doc/example/test_proxy.txt +--- doc/example/test_proxy.txt 2014-01-29 19:50:22.000000000 +0800 ++++ doc/example/test_proxy.txt 2014-10-10 19:16:50.380156509 +0800 +@@ -18,10 +18,10 @@ + >>> group.defaultspec = 'popen//via=master' + >>> master = group.makegateway('popen//id=master') + >>> master +- ++ + >>> slave = group.makegateway() + >>> slave +- ++ + >>> group + + +diff -ur execnet-1.2.0.orig/testing/test_channel.py execnet-1.2.0/testing/test_channel.py +--- testing/test_channel.py 2014-01-29 19:50:22.000000000 +0800 ++++ testing/test_channel.py 2014-10-10 19:21:00.943955387 +0800 +@@ -68,25 +68,19 @@ + + def test_channel_error_reporting(self, gw): + channel = gw.remote_exec('def foo():\n return foobar()\nfoo()\n') +- try: +- channel.receive() +- except channel.RemoteError: +- e = sys.exc_info()[1] +- assert str(e).startswith('Traceback (most recent call last):') +- assert str(e).find('NameError: global name \'foobar\' ' +- 'is not defined') > -1 +- else: +- pytest.fail('No exception raised') ++ excinfo = pytest.raises(channel.RemoteError, channel.receive) ++ msg = str(excinfo.value) ++ assert msg.startswith('Traceback (most recent call last):') ++ assert "NameError" in msg ++ assert "foobar" in msg + + def test_channel_syntax_error(self, gw): + # missing colon + channel = gw.remote_exec('def foo()\n return 1\nfoo()\n') +- try: +- channel.receive() +- except channel.RemoteError: +- e = sys.exc_info()[1] +- assert str(e).startswith('Traceback (most recent call last):') +- assert str(e).find('SyntaxError') > -1 ++ excinfo = pytest.raises(channel.RemoteError, channel.receive) ++ msg = str(excinfo.value) ++ assert msg.startswith('Traceback (most recent call last):') ++ assert "SyntaxError" in msg + + def test_channel_iter(self, gw): + channel = gw.remote_exec(""" +diff -ur execnet-1.2.0.orig/tox.ini execnet-1.2.0/tox.ini +--- tox.ini 2014-01-29 19:50:22.000000000 +0800 ++++ tox.ini 2014-10-10 20:14:22.806301771 +0800 +@@ -1,16 +1,11 @@ + [tox] +-envlist=py26,py27,py32,py33,pypy,flakes +-distshare={homedir}/.tox/distshare +- +-[tox:hudson] +-distshare={toxworkdir}/distshare +-sdistsrc={distshare}/execnet-* ++envlist=py26,py27,py33,py34,pypy,flakes + + [testenv] + changedir=testing + deps=pytest + pytest-timeout +-commands=py.test -rsfxX --junitxml={envlogdir}/junit-{envname}.xml [] ++commands=py.test -rsfxX {posargs} + + [testenv:flakes] + changedir= +@@ -26,8 +21,7 @@ + deps=sphinx + pytest + commands= +- py.test \ +- -rsfxX -v --junitxml={envlogdir}/junit-{envname}.xml check_sphinx.py ++ py.test -rsfxX -v check_sphinx.py + + [pytest] + timeout = 20 diff --git a/dev-python/extras/extras-0.0.3.ebuild b/dev-python/extras/extras-0.0.3.ebuild index e8e8cfdf9c66..d49af8b3f33a 100644 --- a/dev-python/extras/extras-0.0.3.ebuild +++ b/dev-python/extras/extras-0.0.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/extras/extras-0.0.3.ebuild,v 1.20 2014/07/19 19:47:49 klausman Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/extras/extras-0.0.3.ebuild,v 1.21 2014/10/10 15:24:29 ago Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy pypy2_0 ) @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="alpha ~amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd" IUSE="test" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] diff --git a/dev-python/google-apputils/google-apputils-0.4.0.ebuild b/dev-python/google-apputils/google-apputils-0.4.0.ebuild index 4a18608be250..bbe3e03c0ccc 100644 --- a/dev-python/google-apputils/google-apputils-0.4.0.ebuild +++ b/dev-python/google-apputils/google-apputils-0.4.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/google-apputils/google-apputils-0.4.0.ebuild,v 1.2 2014/09/30 09:54:58 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/google-apputils/google-apputils-0.4.0.ebuild,v 1.3 2014/10/10 20:16:49 maekke Exp $ EAPI="5" @@ -14,7 +14,7 @@ SRC_URI="http://google-apputils-python.googlecode.com/files/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~x86" IUSE="test" RDEPEND="dev-python/python-dateutil[${PYTHON_USEDEP}] diff --git a/dev-python/markupsafe/markupsafe-0.23.ebuild b/dev-python/markupsafe/markupsafe-0.23.ebuild index 703bd0968fba..1766c8ed9886 100644 --- a/dev-python/markupsafe/markupsafe-0.23.ebuild +++ b/dev-python/markupsafe/markupsafe-0.23.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/markupsafe/markupsafe-0.23.ebuild,v 1.3 2014/10/09 09:13:40 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/markupsafe/markupsafe-0.23.ebuild,v 1.5 2014/10/10 20:12:18 maekke Exp $ EAPI=5 @@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="BSD" 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 ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris" +KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris" IUSE="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" diff --git a/dev-python/mimeparse/mimeparse-0.1.4-r1.ebuild b/dev-python/mimeparse/mimeparse-0.1.4-r1.ebuild index 6b067615d2a3..e1a6cda6cebf 100644 --- a/dev-python/mimeparse/mimeparse-0.1.4-r1.ebuild +++ b/dev-python/mimeparse/mimeparse-0.1.4-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/mimeparse/mimeparse-0.1.4-r1.ebuild,v 1.19 2014/07/19 19:47:59 klausman Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/mimeparse/mimeparse-0.1.4-r1.ebuild,v 1.20 2014/10/10 15:24:33 ago Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy ) @@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="alpha ~amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" IUSE="" S="${WORKDIR}/${MY_P}" diff --git a/dev-python/mox/mox-0.5.3-r1.ebuild b/dev-python/mox/mox-0.5.3-r1.ebuild index a9c11878727e..3e1e60f98f18 100644 --- a/dev-python/mox/mox-0.5.3-r1.ebuild +++ b/dev-python/mox/mox-0.5.3-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/mox/mox-0.5.3-r1.ebuild,v 1.5 2013/09/05 18:47:01 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/mox/mox-0.5.3-r1.ebuild,v 1.7 2014/10/10 20:16:44 maekke Exp $ EAPI=5 PYTHON_COMPAT=( python2_6 python2_7 ) @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="amd64 ppc ~sparc x86" +KEYWORDS="amd64 ~arm ppc ~sparc x86" IUSE="test" python_test() { diff --git a/dev-python/pathtools/pathtools-0.1.2.ebuild b/dev-python/pathtools/pathtools-0.1.2.ebuild index 3d8414dd3f53..b5ee660ce8bc 100644 --- a/dev-python/pathtools/pathtools-0.1.2.ebuild +++ b/dev-python/pathtools/pathtools-0.1.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pathtools/pathtools-0.1.2.ebuild,v 1.3 2014/08/14 16:31:20 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pathtools/pathtools-0.1.2.ebuild,v 1.4 2014/10/10 15:23:57 ago Exp $ EAPI=5 @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/p/pathtools/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 x86" +KEYWORDS="amd64 x86" IUSE="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" diff --git a/dev-python/pillow/pillow-2.5.3.ebuild b/dev-python/pillow/pillow-2.5.3.ebuild index b47fdf38bd7e..3b2f4c0e5d7e 100644 --- a/dev-python/pillow/pillow-2.5.3.ebuild +++ b/dev-python/pillow/pillow-2.5.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pillow/pillow-2.5.3.ebuild,v 1.7 2014/10/09 14:48:16 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pillow/pillow-2.5.3.ebuild,v 1.8 2014/10/10 11:07:15 ago Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy ) @@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.zip" LICENSE="HPND" SLOT="0" -KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" +KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" IUSE="doc examples jpeg jpeg2k lcms scanner test tiff tk truetype webp zlib" REQUIRED_USE="test? ( jpeg )" diff --git a/dev-python/pylast/pylast-0.5.11-r1.ebuild b/dev-python/pylast/pylast-0.5.11-r1.ebuild index 758fa789e875..204e526c8620 100644 --- a/dev-python/pylast/pylast-0.5.11-r1.ebuild +++ b/dev-python/pylast/pylast-0.5.11-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pylast/pylast-0.5.11-r1.ebuild,v 1.2 2013/09/05 18:47:04 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pylast/pylast-0.5.11-r1.ebuild,v 1.3 2014/10/10 15:23:29 ago Exp $ EAPI=5 @@ -14,5 +14,5 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="" diff --git a/dev-python/pystache/pystache-0.5.4.ebuild b/dev-python/pystache/pystache-0.5.4.ebuild index ad4a21965429..ca82ce901cc6 100644 --- a/dev-python/pystache/pystache-0.5.4.ebuild +++ b/dev-python/pystache/pystache-0.5.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pystache/pystache-0.5.4.ebuild,v 1.2 2014/10/09 09:13:50 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pystache/pystache-0.5.4.ebuild,v 1.3 2014/10/10 10:58:19 ago Exp $ EAPI=5 @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" IUSE="test" RDEPEND="" diff --git a/dev-python/pysvn/pysvn-1.7.8.ebuild b/dev-python/pysvn/pysvn-1.7.8.ebuild index eac3f147bdec..5cffc2e43303 100644 --- a/dev-python/pysvn/pysvn-1.7.8.ebuild +++ b/dev-python/pysvn/pysvn-1.7.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.8.ebuild,v 1.4 2014/10/09 14:48:01 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pysvn/pysvn-1.7.8.ebuild,v 1.5 2014/10/10 11:06:57 ago Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} ) @@ -13,7 +13,7 @@ SRC_URI="http://pysvn.barrys-emacs.org/source_kits/${P}.tar.gz" LICENSE="Apache-1.1" SLOT="0" -KEYWORDS="amd64 ~arm ~ppc ~x86 ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" +KEYWORDS="amd64 ~arm ~ppc x86 ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" IUSE="doc examples" DEPEND=" diff --git a/dev-python/python-ldap/python-ldap-2.4.10-r1.ebuild b/dev-python/python-ldap/python-ldap-2.4.10-r1.ebuild index d4a6669135a7..7afff8682527 100644 --- a/dev-python/python-ldap/python-ldap-2.4.10-r1.ebuild +++ b/dev-python/python-ldap/python-ldap-2.4.10-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.10-r1.ebuild,v 1.7 2014/06/14 10:38:54 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ldap/python-ldap-2.4.10-r1.ebuild,v 1.8 2014/10/10 15:21:06 ago Exp $ EAPI=5 @@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="PSF-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-solaris" +KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-solaris" IUSE="doc examples sasl ssl" # If you need support for openldap-2.3.x, please use python-ldap-2.3.9. diff --git a/dev-python/south/south-0.8.4.ebuild b/dev-python/south/south-0.8.4.ebuild index afc5a3d81a25..8a47f4bb5d9d 100644 --- a/dev-python/south/south-0.8.4.ebuild +++ b/dev-python/south/south-0.8.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/south/south-0.8.4.ebuild,v 1.3 2014/10/09 09:13:30 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/south/south-0.8.4.ebuild,v 1.4 2014/10/10 10:59:18 ago Exp $ EAPI=5 @@ -14,7 +14,7 @@ SRC_URI="https://bitbucket.org/andrewgodwin/south/get/${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="doc test" RDEPEND="dev-python/django[${PYTHON_USEDEP}]" diff --git a/dev-python/subunit/subunit-0.0.16.ebuild b/dev-python/subunit/subunit-0.0.16.ebuild index 5448208d2a4f..af43afd8cd42 100644 --- a/dev-python/subunit/subunit-0.0.16.ebuild +++ b/dev-python/subunit/subunit-0.0.16.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/subunit/subunit-0.0.16.ebuild,v 1.9 2014/07/19 19:48:21 klausman Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/subunit/subunit-0.0.16.ebuild,v 1.10 2014/10/10 15:24:25 ago Exp $ EAPI=5 @@ -14,7 +14,7 @@ SRC_URI="http://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz" LICENSE="Apache-2.0 BSD" SLOT="0" -KEYWORDS="alpha ~amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 x86 ~x86-fbsd" #need to keyword the following in =dev-python/extras-0.0.3 then readd the keywords here #ia64 s390 sh sparc amd64-fbsd IUSE="static-libs" diff --git a/dev-python/testtools/testtools-0.9.34.ebuild b/dev-python/testtools/testtools-0.9.34.ebuild index ad4ec6eb72b2..d775984ac0c7 100644 --- a/dev-python/testtools/testtools-0.9.34.ebuild +++ b/dev-python/testtools/testtools-0.9.34.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/testtools/testtools-0.9.34.ebuild,v 1.7 2014/07/19 19:48:10 klausman Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/testtools/testtools-0.9.34.ebuild,v 1.8 2014/10/10 15:24:37 ago Exp $ EAPI=5 @@ -17,7 +17,7 @@ SRC_URI="http://launchpad.net/${PN}/${SERIES}/${PV}/+download/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="alpha ~amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" IUSE="test" RDEPEND="dev-python/mimeparse[${PYTHON_USEDEP}] diff --git a/dev-python/waitress/waitress-0.8.9.ebuild b/dev-python/waitress/waitress-0.8.9.ebuild index 49bd324d51e2..d07680404943 100644 --- a/dev-python/waitress/waitress-0.8.9.ebuild +++ b/dev-python/waitress/waitress-0.8.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/waitress/waitress-0.8.9.ebuild,v 1.2 2014/05/21 05:45:44 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/waitress/waitress-0.8.9.ebuild,v 1.3 2014/10/10 23:53:40 idella4 Exp $ EAPI=5 @@ -21,7 +21,7 @@ IUSE="doc test" RDEPEND="" DEPEND="${RDEPEND} app-arch/unzip - test? ( dev-python/nose )" + test? ( dev-python/nose[${PYTHON_USEDEP}] )" python_prepare_all() { if use doc; then diff --git a/dev-python/watchdog/watchdog-0.8.0.ebuild b/dev-python/watchdog/watchdog-0.8.0.ebuild index a9b7cbeeefa1..bee942acd00e 100644 --- a/dev-python/watchdog/watchdog-0.8.0.ebuild +++ b/dev-python/watchdog/watchdog-0.8.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/watchdog/watchdog-0.8.0.ebuild,v 1.2 2014/08/14 16:32:05 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/watchdog/watchdog-0.8.0.ebuild,v 1.3 2014/10/10 15:24:01 ago Exp $ EAPI=5 @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/w/watchdog/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 x86" +KEYWORDS="amd64 x86" IUSE="" DEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]" diff --git a/dev-python/webtest/webtest-2.0.15.ebuild b/dev-python/webtest/webtest-2.0.15.ebuild index 55924e539c42..6f9a8d528fed 100644 --- a/dev-python/webtest/webtest-2.0.15.ebuild +++ b/dev-python/webtest/webtest-2.0.15.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/webtest/webtest-2.0.15.ebuild,v 1.2 2014/07/06 13:04:55 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/webtest/webtest-2.0.15.ebuild,v 1.3 2014/10/10 16:11:53 idella4 Exp $ EAPI=5 @@ -25,7 +25,8 @@ RDEPEND=" dev-python/six[${PYTHON_USEDEP}] >=dev-python/waitress-0.8.5[${PYTHON_USEDEP}] >=dev-python/webob-1.2[${PYTHON_USEDEP}] - dev-python/beautifulsoup:4[${PYTHON_USEDEP}]" + dev-python/beautifulsoup:4[${PYTHON_USEDEP}] + dev-python/lxml[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} app-arch/unzip dev-python/setuptools[${PYTHON_USEDEP}] diff --git a/dev-qt/qtmultimedia/qtmultimedia-5.3.2.ebuild b/dev-qt/qtmultimedia/qtmultimedia-5.3.2.ebuild index ddd2a8e536cb..f9b74822e667 100644 --- a/dev-qt/qtmultimedia/qtmultimedia-5.3.2.ebuild +++ b/dev-qt/qtmultimedia/qtmultimedia-5.3.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtmultimedia/qtmultimedia-5.3.2.ebuild,v 1.1 2014/09/16 14:46:01 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtmultimedia/qtmultimedia-5.3.2.ebuild,v 1.2 2014/10/11 02:58:05 pesa Exp $ EAPI=5 @@ -14,7 +14,7 @@ else KEYWORDS="~amd64 ~x86" fi -IUSE="+alsa +gstreamer openal +opengl pulseaudio qml widgets" +IUSE="alsa +gstreamer openal +opengl pulseaudio qml widgets" REQUIRED_USE="?? ( alsa pulseaudio )" # "widgets? ( qtgui[opengl=] )" because of bug 518542 comment 2 @@ -35,7 +35,7 @@ RDEPEND=" ) widgets? ( >=dev-qt/qtgui-${PV}:5[debug=,opengl=] - >=dev-qt/qtwidgets-${PV}:5[debug=] + >=dev-qt/qtwidgets-${PV}:5[debug=,opengl=] opengl? ( >=dev-qt/qtopengl-${PV}:5[debug=] ) ) " diff --git a/dev-ruby/coolio/coolio-1.2.1.ebuild b/dev-ruby/coolio/coolio-1.2.1.ebuild index 94a82e2899f6..ece940d34314 100644 --- a/dev-ruby/coolio/coolio-1.2.1.ebuild +++ b/dev-ruby/coolio/coolio-1.2.1.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/coolio/coolio-1.2.1.ebuild,v 1.2 2014/05/13 20:36:19 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/coolio/coolio-1.2.1.ebuild,v 1.3 2014/10/11 00:39:27 mrueg Exp $ EAPI=5 # iobuffer: -jruby -rbx -USE_RUBY="ruby19 ruby20" +USE_RUBY="ruby19 ruby20 ruby21" RUBY_FAKEGEM_RECIPE_TEST="rspec" RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md" diff --git a/dev-ruby/dnsruby/Manifest b/dev-ruby/dnsruby/Manifest index 4ae5102cf97c..d0d0eaa77bd4 100644 --- a/dev-ruby/dnsruby/Manifest +++ b/dev-ruby/dnsruby/Manifest @@ -1 +1,2 @@ DIST dnsruby-1.54.gem 206848 SHA256 089a03dbb4a9311749083bc4fabfed4effdd4c1a87c40615886400b84f4701aa SHA512 97a02fa3832e12dca7094855df34a0fbb70f5c8c71db89da4bd837ffc74ebba554695e46a5ab1d6175b147e4a26365f1a5c618ef5e4a9264bb134684f00ed498 WHIRLPOOL a0c766dd2ded0ac5d4fd09ce86818ac0d211ace60ae90c8d53221beec3119900eb70667549267f3ce64cfb5b26f941c7f6d35851987ff9a0b8a94b8390acfa0e +DIST dnsruby-1.55.gem 206336 SHA256 5c80d3885a4dc793775cf99a8e2ec93dfc0dc2d8552a8d712f135d0ffe96a4ee SHA512 6a663c1fd730590634d3b1d96feb2c7ce2b8abe33b5f6b94d8c8337531ab43899e78f8152176162057ab1c2905fa3a3bce917757f01237c5a51c9cfa0d6c837a WHIRLPOOL f916623dcde34cfd5d02b6f9504558b448ce3b372d2c77ce9d5f5821ebf978c7e287e29891dc26117f137a7420de10c92c227e0cb24c6f73623068954adeea46 diff --git a/dev-ruby/dnsruby/dnsruby-1.55.ebuild b/dev-ruby/dnsruby/dnsruby-1.55.ebuild new file mode 100644 index 000000000000..4048d143b758 --- /dev/null +++ b/dev-ruby/dnsruby/dnsruby-1.55.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/dnsruby/dnsruby-1.55.ebuild,v 1.1 2014/10/11 06:47:41 graaff Exp $ + +EAPI=5 + +USE_RUBY="ruby19 ruby20 ruby21" + +RUBY_FAKEGEM_TASK_TEST="" +RUBY_FAKEGEM_DOCDIR="html" +RUBY_FAKEGEM_EXTRADOC="DNSSEC EXAMPLES README" +inherit ruby-fakegem + +DESCRIPTION="A pure Ruby DNS client library" +HOMEPAGE="http://rubyforge.org/projects/dnsruby" + +KEYWORDS="~amd64 ~x86" +LICENSE="Apache-2.0" +SLOT="0" +IUSE="" + +each_ruby_test() { + # only run offline tests + #${RUBY} -I .:lib test/ts_dnsruby.rb || die "test failed" + ${RUBY} -I .:lib test/ts_offline.rb || die "test failed" +} diff --git a/dev-ruby/gruff/gruff-0.5.1-r1.ebuild b/dev-ruby/gruff/gruff-0.5.1-r1.ebuild new file mode 100644 index 000000000000..203ce95f687c --- /dev/null +++ b/dev-ruby/gruff/gruff-0.5.1-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/gruff/gruff-0.5.1-r1.ebuild,v 1.1 2014/10/11 00:35:55 mrueg Exp $ + +EAPI=5 +USE_RUBY="ruby19 ruby20 ruby21" + +RUBY_FAKEGEM_TASK_DOC="" + +RUBY_FAKEGEM_DOCDIR="doc" +RUBY_FAKEGEM_EXTRADOC="History.txt Manifest.txt README.md RELEASE.md" + +RUBY_FAKEGEM_EXTRAINSTALL="assets rails_generators" + +inherit ruby-fakegem + +ruby_add_rdepend '>=dev-ruby/rmagick-2' +ruby_add_bdepend " + test? ( + dev-ruby/hoe + )" + +DESCRIPTION="RMagick Implementation for JRuby" +HOMEPAGE="http://rubyforge.org/projects/gruff/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~x86-macos" +IUSE="" + +RUBY_PATCHES=( + ${PN}-0.3.6-spider.patch +) + +# imagemagick is an indirect dependency through rmagick. However, for +# gruff to work properly imagemagick needs to be compiled with +# truetype support and this cannot be expressed in the rmagick +# dependency. Test also require imagemagick to have jpeg support. +DEPEND="${DEPEND} test? ( media-gfx/imagemagick[jpeg,truetype] )" +RDEPEND="${RDEPEND} media-gfx/imagemagick[truetype]" + +ruby_add_bdepend "test? ( dev-ruby/test-unit )" + +each_ruby_test() { + ruby-ng_testrb-2 test/test_*.rb +} diff --git a/dev-ruby/letter_opener/letter_opener-1.2.0.ebuild b/dev-ruby/letter_opener/letter_opener-1.2.0.ebuild index 0f590e8d2398..c206d88ff130 100644 --- a/dev-ruby/letter_opener/letter_opener-1.2.0.ebuild +++ b/dev-ruby/letter_opener/letter_opener-1.2.0.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/letter_opener/letter_opener-1.2.0.ebuild,v 1.2 2014/07/25 13:42:34 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/letter_opener/letter_opener-1.2.0.ebuild,v 1.3 2014/10/11 02:44:02 mrueg Exp $ EAPI=5 -USE_RUBY="ruby19 ruby20" +USE_RUBY="ruby19 ruby20 ruby21" RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc" RUBY_FAKEGEM_TASK_DOC="" diff --git a/dev-ruby/log4r/log4r-1.1.10-r1.ebuild b/dev-ruby/log4r/log4r-1.1.10-r1.ebuild index cc5c8f3b0e4d..3d68028cfc64 100644 --- a/dev-ruby/log4r/log4r-1.1.10-r1.ebuild +++ b/dev-ruby/log4r/log4r-1.1.10-r1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/log4r/log4r-1.1.10-r1.ebuild,v 1.3 2014/08/05 16:00:51 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/log4r/log4r-1.1.10-r1.ebuild,v 1.4 2014/10/11 05:18:18 mrueg Exp $ EAPI=5 -USE_RUBY="ruby19 ruby20" +USE_RUBY="ruby19 ruby20 ruby21" RUBY_FAKEGEM_TASK_DOC="" diff --git a/dev-ruby/mixlib-config/mixlib-config-1.1.2.ebuild b/dev-ruby/mixlib-config/mixlib-config-1.1.2.ebuild index 32381717ecdd..1549591717d8 100644 --- a/dev-ruby/mixlib-config/mixlib-config-1.1.2.ebuild +++ b/dev-ruby/mixlib-config/mixlib-config-1.1.2.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mixlib-config/mixlib-config-1.1.2.ebuild,v 1.6 2014/04/05 23:10:27 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mixlib-config/mixlib-config-1.1.2.ebuild,v 1.7 2014/10/11 05:27:04 mrueg Exp $ EAPI=4 -USE_RUBY="ruby19" +USE_RUBY="ruby19 ruby20 ruby21" RUBY_FAKEGEM_TASK_DOC="" RUBY_FAKEGEM_RECIPE_TEST="none" diff --git a/dev-ruby/mixlib-config/mixlib-config-2.1.0.ebuild b/dev-ruby/mixlib-config/mixlib-config-2.1.0.ebuild index cd04362a5454..fde3c07efc93 100644 --- a/dev-ruby/mixlib-config/mixlib-config-2.1.0.ebuild +++ b/dev-ruby/mixlib-config/mixlib-config-2.1.0.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mixlib-config/mixlib-config-2.1.0.ebuild,v 1.1 2014/07/22 06:10:01 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mixlib-config/mixlib-config-2.1.0.ebuild,v 1.2 2014/10/11 05:27:04 mrueg Exp $ EAPI=5 -USE_RUBY="ruby19 ruby20" +USE_RUBY="ruby19 ruby20 ruby21" RUBY_FAKEGEM_RECIPE_DOC="rdoc" RUBY_FAKEGEM_RECIPE_TEST="none" diff --git a/dev-ruby/mixlib-log/mixlib-log-1.4.1-r1.ebuild b/dev-ruby/mixlib-log/mixlib-log-1.4.1-r1.ebuild index d4a6fe7c308b..51e5c017ba17 100644 --- a/dev-ruby/mixlib-log/mixlib-log-1.4.1-r1.ebuild +++ b/dev-ruby/mixlib-log/mixlib-log-1.4.1-r1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mixlib-log/mixlib-log-1.4.1-r1.ebuild,v 1.1 2014/07/22 06:22:27 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mixlib-log/mixlib-log-1.4.1-r1.ebuild,v 1.2 2014/10/11 05:28:06 mrueg Exp $ EAPI=5 -USE_RUBY="ruby19 ruby20" +USE_RUBY="ruby19 ruby20 ruby21" RUBY_FAKEGEM_RECIPE_TEST="none" diff --git a/dev-ruby/nagios_analyzer/nagios_analyzer-0.0.5-r1.ebuild b/dev-ruby/nagios_analyzer/nagios_analyzer-0.0.5-r1.ebuild index db819ef5c499..44b80ba936a4 100644 --- a/dev-ruby/nagios_analyzer/nagios_analyzer-0.0.5-r1.ebuild +++ b/dev-ruby/nagios_analyzer/nagios_analyzer-0.0.5-r1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/nagios_analyzer/nagios_analyzer-0.0.5-r1.ebuild,v 1.2 2014/05/21 02:08:27 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/nagios_analyzer/nagios_analyzer-0.0.5-r1.ebuild,v 1.3 2014/10/11 05:22:19 mrueg Exp $ EAPI=5 -USE_RUBY="ruby19 ruby20 jruby" +USE_RUBY="ruby19 ruby20 ruby21 jruby" RUBY_FAKEGEM_RECIPE_TEST="rspec" diff --git a/dev-ruby/net-ssh-gateway/net-ssh-gateway-1.2.0-r1.ebuild b/dev-ruby/net-ssh-gateway/net-ssh-gateway-1.2.0-r1.ebuild index c80813dd4173..62edaaab6afb 100644 --- a/dev-ruby/net-ssh-gateway/net-ssh-gateway-1.2.0-r1.ebuild +++ b/dev-ruby/net-ssh-gateway/net-ssh-gateway-1.2.0-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/net-ssh-gateway/net-ssh-gateway-1.2.0-r1.ebuild,v 1.2 2013/12/22 19:19:50 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/net-ssh-gateway/net-ssh-gateway-1.2.0-r1.ebuild,v 1.3 2014/10/11 05:25:49 mrueg Exp $ EAPI=5 -USE_RUBY="ruby19 ruby20" +USE_RUBY="ruby19 ruby20 ruby21" RUBY_FAKEGEM_RECIPE_DOC="rdoc" @@ -19,10 +19,15 @@ SLOT="2" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="" -ruby_add_bdepend "dev-ruby/test-unit:2" +ruby_add_bdepend "dev-ruby/test-unit:2 + =dev-ruby/net-ssh-2.6.5" +all_ruby_prepare() { + sed -i -e "1igem 'mocha', '~>0.10'" test/gateway_test.rb || die +} + each_ruby_test() { RUBYLIB=lib ruby-ng_testrb-2 test/* } diff --git a/dev-ruby/redis/redis-3.0.6.ebuild b/dev-ruby/redis/redis-3.0.6.ebuild index a2676f1f2f18..09f0bd52d7b8 100644 --- a/dev-ruby/redis/redis-3.0.6.ebuild +++ b/dev-ruby/redis/redis-3.0.6.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/redis/redis-3.0.6.ebuild,v 1.1 2014/01/21 19:05:09 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/redis/redis-3.0.6.ebuild,v 1.2 2014/10/11 00:18:18 mrueg Exp $ EAPI=5 -USE_RUBY="ruby19 ruby20" +USE_RUBY="ruby19 ruby20 ruby21" MY_P="redis-rb-${PV}" RUBY_FAKEGEM_RECIPE_TEST="rake" diff --git a/dev-ruby/ruby-elf/ruby-elf-9999.ebuild b/dev-ruby/ruby-elf/ruby-elf-9999.ebuild index 694d6447cec8..1e2508248c3d 100644 --- a/dev-ruby/ruby-elf/ruby-elf-9999.ebuild +++ b/dev-ruby/ruby-elf/ruby-elf-9999.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-elf/ruby-elf-9999.ebuild,v 1.2 2014/04/24 17:42:32 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-elf/ruby-elf-9999.ebuild,v 1.3 2014/10/11 06:37:11 graaff Exp $ EAPI=5 -USE_RUBY="ruby19 jruby" +USE_RUBY="ruby19" GITHUB_URI="https://github.com/Flameeyes/${PN}" diff --git a/dev-ruby/ruby-romkan/ruby-romkan-0.4-r5.ebuild b/dev-ruby/ruby-romkan/ruby-romkan-0.4-r5.ebuild index 20caffdafcdd..5148d4c904f1 100644 --- a/dev-ruby/ruby-romkan/ruby-romkan-0.4-r5.ebuild +++ b/dev-ruby/ruby-romkan/ruby-romkan-0.4-r5.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-romkan/ruby-romkan-0.4-r5.ebuild,v 1.2 2014/04/05 17:57:57 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-romkan/ruby-romkan-0.4-r5.ebuild,v 1.3 2014/10/11 00:13:21 mrueg Exp $ EAPI=5 # jruby -USE_RUBY="ruby19 ruby20" +USE_RUBY="ruby19 ruby20 ruby21" inherit ruby-ng diff --git a/dev-ruby/ruby-tcpwrap/ruby-tcpwrap-0.6-r2.ebuild b/dev-ruby/ruby-tcpwrap/ruby-tcpwrap-0.6-r2.ebuild index 681ec25dd33f..fb72fa067e06 100644 --- a/dev-ruby/ruby-tcpwrap/ruby-tcpwrap-0.6-r2.ebuild +++ b/dev-ruby/ruby-tcpwrap/ruby-tcpwrap-0.6-r2.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-tcpwrap/ruby-tcpwrap-0.6-r2.ebuild,v 1.2 2014/04/05 14:52:21 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-tcpwrap/ruby-tcpwrap-0.6-r2.ebuild,v 1.3 2014/10/11 05:36:24 mrueg Exp $ EAPI=5 -USE_RUBY="ruby19 ruby20" +USE_RUBY="ruby19 ruby20 ruby21" inherit ruby-ng diff --git a/dev-ruby/ruby-xslt/ruby-xslt-0.9.9-r3.ebuild b/dev-ruby/ruby-xslt/ruby-xslt-0.9.9-r3.ebuild new file mode 100644 index 000000000000..a97e0597460f --- /dev/null +++ b/dev-ruby/ruby-xslt/ruby-xslt-0.9.9-r3.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-xslt/ruby-xslt-0.9.9-r3.ebuild,v 1.1 2014/10/11 00:12:14 mrueg Exp $ + +EAPI=5 +USE_RUBY="ruby19 ruby20 ruby21" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_TASK_TEST="" + +RUBY_FAKEGEM_EXTRADOC="ChangeLog.rdoc AUTHORS.rdoc README.rdoc" + +inherit multilib ruby-fakegem + +DESCRIPTION="A Ruby class for processing XSLT" +HOMEPAGE="http://www.rubyfr.net/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~x86" +IUSE="" + +DEPEND+=" >=dev-libs/libxslt-1.1.12" +RDEPEND+=" >=dev-libs/libxslt-1.1.12" + +all_ruby_prepare() { + # Remove forced -g compiler flag. + sed -i -e 's/-g //' ext/xslt_lib/extconf.rb || die + + # One test fails but we have installed this code already for a long + # time so this probably isn't a regression. No upstream bug tracker + # to report the problem :-( + sed -i -e '/test_transformation_error/,/^ end/ s:^:#:' test/test.rb || die +} + +each_ruby_configure() { + ${RUBY} -C ext/xslt_lib extconf.rb || die +} + +each_ruby_compile() { + emake -C ext/xslt_lib V=1 + cp ext/xslt_lib/xslt_lib$(get_modname) lib/xml/ || die +} + +each_ruby_test() { + ${RUBY} -I../lib:lib -Ctest test.rb || die +} diff --git a/dev-ruby/sdoc/sdoc-0.3.20.ebuild b/dev-ruby/sdoc/sdoc-0.3.20.ebuild index 1a8396bc2e83..b5a23adce4cd 100644 --- a/dev-ruby/sdoc/sdoc-0.3.20.ebuild +++ b/dev-ruby/sdoc/sdoc-0.3.20.ebuild @@ -1,11 +1,14 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sdoc/sdoc-0.3.20.ebuild,v 1.2 2013/12/25 18:09:51 naota Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sdoc/sdoc-0.3.20.ebuild,v 1.3 2014/10/11 00:29:46 mrueg Exp $ EAPI=5 -USE_RUBY="ruby19 ruby20" +USE_RUBY="ruby19 ruby20 ruby21" -inherit multilib ruby-fakegem +inherit ruby-fakegem + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_RECIPE_TEST="" DESCRIPTION="rdoc generator html with javascript search index" HOMEPAGE="https://rubygems.org/gems/sdoc" diff --git a/dev-ruby/seed-fu/seed-fu-2.3.3.ebuild b/dev-ruby/seed-fu/seed-fu-2.3.3.ebuild index 2b6cfad68394..a23f4e73bb41 100644 --- a/dev-ruby/seed-fu/seed-fu-2.3.3.ebuild +++ b/dev-ruby/seed-fu/seed-fu-2.3.3.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/seed-fu/seed-fu-2.3.3.ebuild,v 1.1 2014/08/06 06:16:23 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/seed-fu/seed-fu-2.3.3.ebuild,v 1.2 2014/10/10 23:56:48 mrueg Exp $ EAPI=5 -USE_RUBY="ruby19 ruby20" +USE_RUBY="ruby19 ruby20 ruby21" RUBY_FAKEGEM_RECIPE_TEST="rspec" RUBY_FAKEGEM_RECIPE_DOC="yard" diff --git a/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild b/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild index 595d013e1c2d..023a252327c8 100644 --- a/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild +++ b/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild,v 1.4 2014/08/18 01:42:40 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/shoulda-context/shoulda-context-1.1.6.ebuild,v 1.6 2014/10/10 22:47:28 mrueg Exp $ EAPI=5 -USE_RUBY="ruby19 ruby20 jruby" +USE_RUBY="ruby19 ruby20 ruby21 jruby" RUBY_FAKEGEM_RECIPE_DOC="rdoc" RUBY_FAKEGEM_EXTRADOC="CONTRIBUTING.md README.md" @@ -25,8 +25,12 @@ SLOT="0" KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64" IUSE="doc test" -ruby_add_bdepend "test? ( dev-ruby/test-unit:2 dev-ruby/mocha )" +ruby_add_bdepend "test? ( dev-ruby/test-unit:2 + 0.10'\n" test/test_helper.rb || die +} each_ruby_test() { ruby-ng_testrb-2 -Itest test/shoulda/*_test.rb || die } diff --git a/dev-ruby/shoulda/shoulda-3.5.0-r1.ebuild b/dev-ruby/shoulda/shoulda-3.5.0-r1.ebuild index 64aa07ee3382..23b4da564695 100644 --- a/dev-ruby/shoulda/shoulda-3.5.0-r1.ebuild +++ b/dev-ruby/shoulda/shoulda-3.5.0-r1.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/shoulda/shoulda-3.5.0-r1.ebuild,v 1.5 2014/08/18 01:44:55 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/shoulda/shoulda-3.5.0-r1.ebuild,v 1.6 2014/10/10 23:40:57 mrueg Exp $ EAPI=5 -USE_RUBY="ruby19 ruby20" +USE_RUBY="ruby19 ruby20 ruby21" RUBY_FAKEGEM_TASK_DOC="" RUBY_FAKEGEM_EXTRADOC="README.md" diff --git a/dev-ruby/sigar/sigar-0.7.2-r1.ebuild b/dev-ruby/sigar/sigar-0.7.2-r1.ebuild index d99cc165c5db..a976733ecf4a 100644 --- a/dev-ruby/sigar/sigar-0.7.2-r1.ebuild +++ b/dev-ruby/sigar/sigar-0.7.2-r1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sigar/sigar-0.7.2-r1.ebuild,v 1.2 2014/04/24 16:41:54 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sigar/sigar-0.7.2-r1.ebuild,v 1.3 2014/10/10 23:55:57 mrueg Exp $ EAPI=5 -USE_RUBY="ruby19 ruby20" +USE_RUBY="ruby19 ruby20 ruby21" RUBY_FAKEGEM_RECIPE_TEST="none" RUBY_FAKEGEM_TASK_DOC="" diff --git a/dev-ruby/simple_oauth/Manifest b/dev-ruby/simple_oauth/Manifest index 8fa6a7e83098..11c4bab7aac4 100644 --- a/dev-ruby/simple_oauth/Manifest +++ b/dev-ruby/simple_oauth/Manifest @@ -1 +1,2 @@ DIST simple_oauth-0.2.0.gem 11776 SHA256 2f76cd61c643086db19cbabacbd73b6f4a0c90e31036d2e52839b9b87c8752ef SHA512 86f785e271470fa1f160216f0bb85bbde2358c2e621ca028dcfef2aac01edc03a977a086122ad2bfdb40e385e9989c4f61f19f2a1605c29b40e3bdc8c9d448a2 WHIRLPOOL 061667b32d310b4f64f8a12dcbe33b919ee1ab2399601145a771419858ae6a48a726a5c339bbd5d7431ff6c3fb79e5b96e358f24b90aff2407531e8db119f589 +DIST simple_oauth-0.3.0.gem 13824 SHA256 6f343847a198b1acca025e02fc6794cba622287360279399e05ed681c9fe5c2a SHA512 b1b322e8363cf8b1774abe48b18af350a5cf68f0e2a6ccc7c293fdeeaad95528e1feadfb727e5b34faa6d18a536934136b3adfab013fa2488b18067977870861 WHIRLPOOL 3ff7f2297f1e016057689ed6ed3161bc482ad8c85d6c55bc1f1dff82a46a5563269cb1e1736f1dde32b95303490319d7838c953008abe3c7f49aedda979e9a4a diff --git a/dev-ruby/simple_oauth/simple_oauth-0.3.0.ebuild b/dev-ruby/simple_oauth/simple_oauth-0.3.0.ebuild new file mode 100644 index 000000000000..6d46136121df --- /dev/null +++ b/dev-ruby/simple_oauth/simple_oauth-0.3.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/simple_oauth/simple_oauth-0.3.0.ebuild,v 1.1 2014/10/10 22:06:17 mrueg Exp $ + +EAPI=5 + +USE_RUBY="ruby19 ruby20 ruby21 jruby" + +RUBY_FAKEGEM_RECIPE_TEST="rspec" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="README.md" + +inherit ruby-fakegem + +DESCRIPTION="Simply builds and verifies OAuth headers" +HOMEPAGE="https://github.com/laserlemon/simple_oauth" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +all_ruby_prepare() { + sed -i -e "/simplecov/,+8d" spec/helper.rb || die +} +each_ruby_test() { + export CI=true + each_fakegem_test +} diff --git a/dev-ruby/slop/slop-2.4.4-r1.ebuild b/dev-ruby/slop/slop-2.4.4-r1.ebuild index 749d6e7066f3..6b645c8c07d4 100644 --- a/dev-ruby/slop/slop-2.4.4-r1.ebuild +++ b/dev-ruby/slop/slop-2.4.4-r1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/slop/slop-2.4.4-r1.ebuild,v 1.3 2014/08/05 16:00:44 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/slop/slop-2.4.4-r1.ebuild,v 1.4 2014/10/11 00:07:54 mrueg Exp $ EAPI=5 -USE_RUBY="ruby19 ruby20 jruby" +USE_RUBY="ruby19 ruby20 ruby21 jruby" RUBY_FAKEGEM_TASK_DOC="" RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md" diff --git a/dev-ruby/sparklines/sparklines-0.5.2-r4.ebuild b/dev-ruby/sparklines/sparklines-0.5.2-r4.ebuild index 5594976debaa..0385f83d2cf8 100644 --- a/dev-ruby/sparklines/sparklines-0.5.2-r4.ebuild +++ b/dev-ruby/sparklines/sparklines-0.5.2-r4.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sparklines/sparklines-0.5.2-r4.ebuild,v 1.3 2014/08/05 16:00:56 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sparklines/sparklines-0.5.2-r4.ebuild,v 1.4 2014/10/11 00:10:53 mrueg Exp $ EAPI=5 -USE_RUBY="ruby19 ruby20" +USE_RUBY="ruby19 ruby20 ruby21" RUBY_FAKEGEM_TASK_DOC="" @@ -21,4 +21,8 @@ IUSE="" RDEPEND="dev-ruby/rmagick" -ruby_add_bdepend test "dev-ruby/hoe dev-ruby/tidy_table dev-ruby/dust" +ruby_add_bdepend test "dev-ruby/tidy_table dev-ruby/dust" + +each_ruby_test() { + ${RUBY} -I. test/test_all.rb || die +} diff --git a/dev-ruby/tokyocabinet/tokyocabinet-1.29.1.ebuild b/dev-ruby/tokyocabinet/tokyocabinet-1.29.1.ebuild index 2d257415411d..48404655f9e4 100644 --- a/dev-ruby/tokyocabinet/tokyocabinet-1.29.1.ebuild +++ b/dev-ruby/tokyocabinet/tokyocabinet-1.29.1.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tokyocabinet/tokyocabinet-1.29.1.ebuild,v 1.3 2014/04/24 20:20:45 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tokyocabinet/tokyocabinet-1.29.1.ebuild,v 1.4 2014/10/11 00:00:40 mrueg Exp $ EAPI=5 -USE_RUBY="ruby19 ruby20" +USE_RUBY="ruby19 ruby20 ruby21" RUBY_FAKEGEM_TASK_DOC="" RUBY_FAKEGEM_TASK_TEST="" diff --git a/dev-ruby/trollop/trollop-1.16.2-r4.ebuild b/dev-ruby/trollop/trollop-1.16.2-r4.ebuild index c2816815f770..dfbb29392444 100644 --- a/dev-ruby/trollop/trollop-1.16.2-r4.ebuild +++ b/dev-ruby/trollop/trollop-1.16.2-r4.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/trollop/trollop-1.16.2-r4.ebuild,v 1.3 2014/08/05 16:00:37 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/trollop/trollop-1.16.2-r4.ebuild,v 1.4 2014/10/11 00:03:21 mrueg Exp $ EAPI=5 -USE_RUBY="ruby19 ruby20 jruby" +USE_RUBY="ruby19 ruby20 ruby21 jruby" RUBY_FAKEGEM_TASK_DOC="" RUBY_FAKEGEM_EXTRADOC="FAQ.txt History.txt README.txt" diff --git a/dev-ruby/trollop/trollop-2.0.ebuild b/dev-ruby/trollop/trollop-2.0.ebuild index 8a4a476241c7..e12b4e91bb48 100644 --- a/dev-ruby/trollop/trollop-2.0.ebuild +++ b/dev-ruby/trollop/trollop-2.0.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/trollop/trollop-2.0.ebuild,v 1.7 2014/08/05 16:00:37 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/trollop/trollop-2.0.ebuild,v 1.8 2014/10/11 00:03:21 mrueg Exp $ -EAPI=4 -USE_RUBY="ruby19 ruby20 jruby" +EAPI=5 +USE_RUBY="ruby19 ruby20 ruby21 jruby" RUBY_FAKEGEM_TASK_DOC="" RUBY_FAKEGEM_EXTRADOC="FAQ.txt History.txt README.txt" diff --git a/dev-ruby/ttfunk/ttfunk-1.0.3-r1.ebuild b/dev-ruby/ttfunk/ttfunk-1.0.3-r1.ebuild index 1637c7686662..a91b8734c2ca 100644 --- a/dev-ruby/ttfunk/ttfunk-1.0.3-r1.ebuild +++ b/dev-ruby/ttfunk/ttfunk-1.0.3-r1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ttfunk/ttfunk-1.0.3-r1.ebuild,v 1.3 2014/08/05 16:00:33 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ttfunk/ttfunk-1.0.3-r1.ebuild,v 1.4 2014/10/10 21:57:11 mrueg Exp $ EAPI=5 -USE_RUBY="ruby19 ruby20 jruby" +USE_RUBY="ruby19 ruby20 ruby21 jruby" RUBY_FAKEGEM_TASK_DOC="" RUBY_FAKEGEM_TASK_TEST="" diff --git a/dev-ruby/ttfunk/ttfunk-1.1.1.ebuild b/dev-ruby/ttfunk/ttfunk-1.1.1.ebuild index 424263f7cdd5..88c8f8d79172 100644 --- a/dev-ruby/ttfunk/ttfunk-1.1.1.ebuild +++ b/dev-ruby/ttfunk/ttfunk-1.1.1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ttfunk/ttfunk-1.1.1.ebuild,v 1.6 2014/08/19 11:29:58 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ttfunk/ttfunk-1.1.1.ebuild,v 1.7 2014/10/10 21:57:11 mrueg Exp $ EAPI=5 -USE_RUBY="ruby19 ruby20 jruby" +USE_RUBY="ruby19 ruby20 ruby21 jruby" RUBY_FAKEGEM_TASK_DOC="" RUBY_FAKEGEM_RECIPE_TEST="rspec" diff --git a/dev-ruby/twitter/twitter-5.11.0.ebuild b/dev-ruby/twitter/twitter-5.11.0.ebuild index 921b8afdc9f6..711475d1883a 100644 --- a/dev-ruby/twitter/twitter-5.11.0.ebuild +++ b/dev-ruby/twitter/twitter-5.11.0.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/twitter/twitter-5.11.0.ebuild,v 1.2 2014/07/18 09:18:32 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/twitter/twitter-5.11.0.ebuild,v 1.3 2014/10/10 22:12:50 mrueg Exp $ EAPI=5 -USE_RUBY="ruby19 ruby20" +USE_RUBY="ruby19 ruby20 ruby21" RUBY_FAKEGEM_RECIPE_DOC="yard" RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" diff --git a/dev-ruby/xpath/xpath-0.1.4-r1.ebuild b/dev-ruby/xpath/xpath-0.1.4-r1.ebuild index b4ed5b74863c..134f6cf4074a 100644 --- a/dev-ruby/xpath/xpath-0.1.4-r1.ebuild +++ b/dev-ruby/xpath/xpath-0.1.4-r1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/xpath/xpath-0.1.4-r1.ebuild,v 1.3 2014/08/05 16:00:31 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/xpath/xpath-0.1.4-r1.ebuild,v 1.4 2014/10/10 21:53:39 mrueg Exp $ EAPI=5 -USE_RUBY="ruby19 ruby20" +USE_RUBY="ruby19 ruby20 ruby21" RUBY_FAKEGEM_EXTRADOC="README.rdoc" diff --git a/dev-ruby/xpath/xpath-1.0.0-r1.ebuild b/dev-ruby/xpath/xpath-1.0.0-r1.ebuild index 674c75feee51..7b008a93f03c 100644 --- a/dev-ruby/xpath/xpath-1.0.0-r1.ebuild +++ b/dev-ruby/xpath/xpath-1.0.0-r1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/xpath/xpath-1.0.0-r1.ebuild,v 1.3 2014/08/05 16:00:31 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/xpath/xpath-1.0.0-r1.ebuild,v 1.4 2014/10/10 21:53:39 mrueg Exp $ EAPI=5 -USE_RUBY="ruby19 ruby20 jruby" +USE_RUBY="ruby19 ruby20 ruby21 jruby" RUBY_FAKEGEM_EXTRADOC="README.md" diff --git a/dev-util/cppcheck/Manifest b/dev-util/cppcheck/Manifest index 0754527143a5..4c9d6238f5f5 100644 --- a/dev-util/cppcheck/Manifest +++ b/dev-util/cppcheck/Manifest @@ -1,2 +1,3 @@ DIST cppcheck-1.63.tar.bz2 1157231 SHA256 924bfc4593215b7bab6b049dbbce9a6f343dbf15f4bdd869ef1d378f09f92064 SHA512 4c2f6080ce72ffa24f929a2b74c656538d9f555fb14b3e6f3a2632eca8973a8b711831ddd698e13059643446b0e90619f71e13b1d06b6fefc4b4562622939508 WHIRLPOOL af095e4f0b84ded78f9fa10baedc5266a66ac52ffa6813eeb38697d1c55e02b76670eb09228c4ce356f2d3402f4247a66fe2ccd666e5637326e0913a75c2732e DIST cppcheck-1.65.tar.bz2 1227353 SHA256 16577a2423ad6cbb7506e1b4032172b0b27d65b8a4174fb0c671472f37b65d67 SHA512 ce1ef2771470383e33e159b99ce5bcf1c7f570c7a539d9488bf771a5d23b4511acd7ad7e14b839e5433f47032f4d662b6c053579d4e353caf7bf22588e1d2916 WHIRLPOOL 5101d970f7d8ad19c3dea4f0d95713fe9c8afd3ac3f7bde04cf51c11ecbecfe4fc97f57c780408a15af0ef4e5a0bf4aa7780bd994bc59548c91efaee6cf80edb +DIST cppcheck-1.66.tar.bz2 1064369 SHA256 9469c23d39df5f03301fb0f9c29d75e9d63ed80d486cc6633145e3c95293c1b7 SHA512 de61b64f9085244a0f8c511ffe19e5ef18b6ff0274a3317328f72178f92843171c1e3ca7e60d496504703c7ec4f6e458247b1a3f16c371de6a2eb21b1b41d305 WHIRLPOOL 2b1fb4c1bff14153c36d52a2c1b60f3bbe93e0bedc3bff71e65aa73bb3c343e2f2db8c86f24e2ba9d227513d0a0fe627ee92858e782a63ec1b03ea285252b6f4 diff --git a/dev-util/cppcheck/cppcheck-1.65-r1.ebuild b/dev-util/cppcheck/cppcheck-1.65-r1.ebuild index d76216bb5289..1c31f01f613e 100644 --- a/dev-util/cppcheck/cppcheck-1.65-r1.ebuild +++ b/dev-util/cppcheck/cppcheck-1.65-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cppcheck/cppcheck-1.65-r1.ebuild,v 1.2 2014/10/10 06:31:14 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/cppcheck/cppcheck-1.65-r1.ebuild,v 1.3 2014/10/10 13:23:54 xmw Exp $ EAPI=5 @@ -10,35 +10,38 @@ inherit distutils-r1 eutils flag-o-matic qt4-r2 toolchain-funcs DESCRIPTION="static analyzer of C/C++ code" HOMEPAGE="http://cppcheck.sourceforge.net" -SRC_URI="mirror://sourceforge/cppcheck/${P}.tar.bz2" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="htmlreport qt4" +IUSE="htmlreport pcre qt4" RDEPEND="htmlreport? ( ${PYTHON_DEPS} ) >=dev-libs/tinyxml2-2 - qt4? ( dev-qt/qtgui:4 )" + qt4? ( dev-qt/qtgui:4 ) + pcre? ( dev-libs/libpcre )" DEPEND="${RDEPEND} + app-text/docbook-xsl-stylesheets + dev-libs/libxslt virtual/pkgconfig" src_prepare() { # Drop bundled libs, patch Makefile generator and re-run it rm -r externals || die epatch "${FILESDIR}"/${P}-tinyxml2.patch - emake dmake \ - CPPFLAGS="${CPPFLAGS}" \ - CXX="$(tc-getCXX)" \ - CXXFLAGS="${CXXFLAGS}" \ - LDFLAGS="${LDFLAGS}" \ + tc-export CXX + emake dmake ./dmake || die epatch "${FILESDIR}"/${P}-c++0x.patch } src_configure() { - tc-export CXX + if use pcre ; then + sed -e '/HAVE_RULES=/s:=no:=yes:' \ + -i Makefile + fi if use qt4 ; then pushd gui qt4-r2_src_configure @@ -47,16 +50,10 @@ src_configure() { } src_compile() { - local my_inc=$(pkg-config --cflags-only-I tinyxml2) - emake CFGDIR="/usr/share/${PN}/cfg" \ - CPPFLAGS="${CPPFLAGS}" \ - CXX="$(tc-getCXX)" \ - CXXFLAGS="${CXXFLAGS}" \ - LDFLAGS="${LDFLAGS}" \ - INCLUDE_FOR_LIB="-Ilib ${my_inc}" \ - INCLUDE_FOR_CLI="-Ilib ${my_inc}" \ - INCLUDE_FOR_TEST="-Ilib -Icli ${my_inc}" \ - LIBS="$(pkg-config --libs tinyxml2)" + export LIBS="$(pkg-config --libs tinyxml2)" + emake ${PN} man \ + CFGDIR="${EROOT}usr/share/${PN}/cfg" \ + DB2MAN="${EROOT}usr/share/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl" if use qt4 ; then pushd gui @@ -71,18 +68,25 @@ src_compile() { } src_test() { - emake check \ - LIBS="$(pkg-config --libs tinyxml2)" + # safe final version + mv -v ${PN}{,.final} + mv -v lib/library.o{,.final} + mv -v cli/cppcheckexecutor.o{,.final} + #trigger recompile with CFGDIR inside ${S} + emake check CFGDIR="${S}/cfg" + # restore + mv -v ${PN}{.final,} + mv -v lib/library.o{.final,} + mv -v cli/cppcheckexecutor.o{.final,} } src_install() { emake install DESTDIR="${D}" - dodoc readme.txt insinto "/usr/share/${PN}/cfg" doins cfg/*.cfg if use qt4 ; then dobin gui/${PN}-gui - dodoc readme_gui.txt gui/{projectfile.txt,gui.cppcheck} + dodoc readme_gui.txt gui/{projectfile.txt,gui.${PN}} fi if use htmlreport ; then pushd htmlreport @@ -90,4 +94,6 @@ src_install() { popd find "${D}" -name "*.egg-info" -delete fi + doman ${PN}.1 + dodoc readme.txt } diff --git a/dev-util/cppcheck/cppcheck-1.66.ebuild b/dev-util/cppcheck/cppcheck-1.66.ebuild new file mode 100644 index 000000000000..7aac05e4a787 --- /dev/null +++ b/dev-util/cppcheck/cppcheck-1.66.ebuild @@ -0,0 +1,99 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/cppcheck/cppcheck-1.66.ebuild,v 1.1 2014/10/10 13:04:51 xmw Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} ) + +inherit distutils-r1 eutils flag-o-matic qt4-r2 toolchain-funcs + +DESCRIPTION="static analyzer of C/C++ code" +HOMEPAGE="http://cppcheck.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="htmlreport pcre qt4" + +RDEPEND="htmlreport? ( ${PYTHON_DEPS} ) + >=dev-libs/tinyxml2-2 + qt4? ( dev-qt/qtgui:4 ) + pcre? ( dev-libs/libpcre )" +DEPEND="${RDEPEND} + app-text/docbook-xsl-stylesheets + dev-libs/libxslt + virtual/pkgconfig" + +src_prepare() { + # Drop bundled libs, patch Makefile generator and re-run it + rm -r externals || die + epatch "${FILESDIR}"/${P}-tinyxml2.patch + tc-export CXX + emake dmake + ./dmake || die + + epatch "${FILESDIR}"/${PN}-1.65-c++0x.patch +} + +src_configure() { + if use pcre ; then + sed -e '/HAVE_RULES=/s:=no:=yes:' \ + -i Makefile + fi + if use qt4 ; then + pushd gui + qt4-r2_src_configure + popd + fi +} + +src_compile() { + export LIBS="$(pkg-config --libs tinyxml2)" + emake ${PN} man \ + CFGDIR="${EROOT}usr/share/${PN}/cfg" \ + DB2MAN="${EROOT}usr/share/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl" + + if use qt4 ; then + pushd gui + qt4-r2_src_compile + popd + fi + if use htmlreport ; then + pushd htmlreport + distutils-r1_src_compile + popd + fi +} + +src_test() { + # safe final version + mv -v ${PN}{,.final} + mv -v lib/library.o{,.final} + mv -v cli/cppcheckexecutor.o{,.final} + #trigger recompile with CFGDIR inside ${S} + emake check CFGDIR="${S}/cfg" + # restore + mv -v ${PN}{.final,} + mv -v lib/library.o{.final,} + mv -v cli/cppcheckexecutor.o{.final,} +} + +src_install() { + emake install DESTDIR="${D}" + insinto "/usr/share/${PN}/cfg" + doins cfg/*.cfg + if use qt4 ; then + dobin gui/${PN}-gui + dodoc readme_gui.txt gui/{projectfile.txt,gui.${PN}} + fi + if use htmlreport ; then + pushd htmlreport + distutils-r1_src_install + popd + find "${D}" -name "*.egg-info" -delete + fi + doman ${PN}.1 + dodoc readme.txt +} diff --git a/dev-util/cppcheck/files/cppcheck-1.66-tinyxml2.patch b/dev-util/cppcheck/files/cppcheck-1.66-tinyxml2.patch new file mode 100644 index 000000000000..1417ea321d7d --- /dev/null +++ b/dev-util/cppcheck/files/cppcheck-1.66-tinyxml2.patch @@ -0,0 +1,67 @@ +--- cppcheck-1.65/tools/dmake.cpp ++++ cppcheck-1.65/tools/dmake.cpp +@@ -170,7 +170,6 @@ + } + + std::vector externalfiles; +- getCppFiles(externalfiles, "externals/"); + + + // QMAKE - lib/lib.pri +@@ -179,10 +178,6 @@ + if (fout1.is_open()) { + fout1 << "# no manual edits - this file is autogenerated by dmake\n\n"; + fout1 << "include($$PWD/pcrerules.pri)\n"; +- fout1 << "BASEPATH = ../externals/tinyxml/\n"; +- fout1 << "include($$PWD/../externals/tinyxml/tinyxml.pri)\n"; +- fout1 << "BASEPATH = ../lib/\n"; +- fout1 << "INCLUDEPATH += ../externals/tinyxml\n"; + fout1 << "HEADERS += $${BASEPATH}check.h \\\n"; + for (unsigned int i = 0; i < libfiles.size(); ++i) { + std::string fname(libfiles[i].substr(4)); +@@ -208,7 +203,6 @@ + std::ofstream fout1("test/testfiles.pri"); + if (fout1.is_open()) { + fout1 << "# no manual edits - this file is autogenerated by dmake\n\n"; +- fout1 << "INCLUDEPATH += ../externals/tinyxml\n"; + fout1 << "\n\nSOURCES += "; + for (unsigned int i = 0; i < testfiles.size(); ++i) { + const std::string filename(testfiles[i].substr(5)); +@@ -354,9 +348,9 @@ + + makeConditionalVariable(fout, "CXX", "g++"); + makeConditionalVariable(fout, "PREFIX", "/usr"); +- makeConditionalVariable(fout, "INCLUDE_FOR_LIB", "-Ilib -Iexternals/tinyxml"); +- makeConditionalVariable(fout, "INCLUDE_FOR_CLI", "-Ilib -Iexternals/tinyxml"); +- makeConditionalVariable(fout, "INCLUDE_FOR_TEST", "-Ilib -Icli -Iexternals/tinyxml"); ++ makeConditionalVariable(fout, "INCLUDE_FOR_LIB", "-Ilib"); ++ makeConditionalVariable(fout, "INCLUDE_FOR_CLI", "-Ilib"); ++ makeConditionalVariable(fout, "INCLUDE_FOR_TEST", "-Ilib -Icli"); + + fout << "BIN=$(DESTDIR)$(PREFIX)/bin\n\n"; + fout << "# For 'make man': sudo apt-get install xsltproc docbook-xsl docbook-xml on Linux\n"; +@@ -401,10 +401,10 @@ + fout << "dmake:\ttools/dmake.o cli/filelister.o lib/path.o\n"; + fout << "\t$(CXX) $(CXXFLAGS) -std=c++0x -o dmake tools/dmake.o cli/filelister.o lib/path.o -Ilib $(LDFLAGS)\n"; + fout << "\t./dmake\n\n"; +- fout << "reduce:\ttools/reduce.o externals/tinyxml/tinyxml2.o $(LIBOBJ)\n"; +- fout << "\t$(CXX) $(CPPFLAGS) $(CXXFLAGS) -std=c++0x -g -o reduce tools/reduce.o -Ilib -Iexternals/tinyxml $(LIBOBJ) $(LIBS) externals/tinyxml/tinyxml2.o $(LDFLAGS) $(RDYNAMIC)\n\n"; ++ fout << "reduce:\ttools/reduce.o $(LIBOBJ)\n"; ++ fout << "\t$(CXX) $(CPPFLAGS) $(CXXFLAGS) -std=c++0x -g -o reduce tools/reduce.o -Ilib $(LIBOBJ) $(LIBS) $(LDFLAGS) $(RDYNAMIC)\n\n"; + fout << "clean:\n"; +- fout << "\trm -f build/*.o lib/*.o cli/*.o test/*.o tools/*.o externals/tinyxml/*.o testrunner reduce dmake cppcheck cppcheck.1\n\n"; ++ fout << "\trm -f build/*.o lib/*.o cli/*.o test/*.o tools/*.o testrunner reduce dmake cppcheck cppcheck.1\n\n"; + fout << "man:\tman/cppcheck.1\n\n"; + fout << "man/cppcheck.1:\t$(MAN_SOURCE)\n\n"; + fout << "\t$(XP) $(DB2MAN) $(MAN_SOURCE)\n\n"; +--- cppcheck-1.65/gui/gui.pro ++++ cppcheck-1.65/gui/gui.pro +@@ -15,7 +15,7 @@ + LIBS += -l../bin/cppcheck-core + DEFINES += CPPCHECKLIB_IMPORT + } +-LIBS += -L../externals ++LIBS += `pkg-config --libs tinyxml2` + + DESTDIR = . + RCC_DIR = temp diff --git a/dev-util/dialog/Manifest b/dev-util/dialog/Manifest index 0678d16646eb..5e82e582b360 100644 --- a/dev-util/dialog/Manifest +++ b/dev-util/dialog/Manifest @@ -1 +1,2 @@ DIST dialog-1.2-20140219.tgz 453535 SHA256 ccf07eedf147ac901aff1d984ab63ddd6986b615ddf67435f270d5462ea4ca81 SHA512 9f8fa31db531647a176e67c223198da29e6f9b7c43d8d7b59afbdeab27a9320ed32afe22352b2757732371c4ccc6c1a885f82cef9c635bcfc2f42a20859fca89 WHIRLPOOL ce66b1f4adbe5274dec50cc5bb94bea0da9ffcd16c8d3d0c6482d7172c43b771f67bbe887af2a430c33b9758fa94249bf14e3cdc86690787ca4ea1a633aa20d3 +DIST dialog-1.2-20140911.tgz 455139 SHA256 d054766fba3dac828851f1c9852e5992eb824fd0a0dd26d87ee517242027bafc SHA512 8a6f724fcf0baba1152dcf39d9225eaf720bbec9fb8821cf58ca186852ee6af2f53e904dc998e025a6548b163c63a3ce6a58742252d0bb5c2dc2d0e5c7aaf041 WHIRLPOOL 22821b21820d61ba04a8bad85ce7be757ddb932dd54cb6a179c5bfbbafe1a06e9f2ba02fe298ac957d9a21f63258b48895fe6cab313098bd8a657270423f7370 diff --git a/dev-util/dialog/dialog-1.2.20140219.ebuild b/dev-util/dialog/dialog-1.2.20140219.ebuild index 86216ad830e5..033788a21270 100644 --- a/dev-util/dialog/dialog-1.2.20140219.ebuild +++ b/dev-util/dialog/dialog-1.2.20140219.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20140219.ebuild,v 1.11 2014/07/31 19:26:35 tgall Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20140219.ebuild,v 1.12 2014/10/11 07:09:31 jer Exp $ EAPI=5 inherit eutils multilib versionator @@ -17,8 +17,7 @@ KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc IUSE="examples minimal nls static-libs unicode" RDEPEND=" - >=sys-libs/ncurses-5.2-r5 - unicode? ( sys-libs/ncurses[unicode] ) + >=sys-libs/ncurses-5.2-r5[unicode?] " DEPEND=" ${RDEPEND} diff --git a/dev-util/dialog/dialog-1.2.20140911.ebuild b/dev-util/dialog/dialog-1.2.20140911.ebuild new file mode 100644 index 000000000000..9458a0e30b5b --- /dev/null +++ b/dev-util/dialog/dialog-1.2.20140911.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20140911.ebuild,v 1.1 2014/10/11 07:09:31 jer Exp $ + +EAPI=5 +inherit eutils multilib versionator + +MY_PV="$(get_version_component_range 1-2)-$(get_version_component_range 3)" +S=${WORKDIR}/${PN}-${MY_PV} +DESCRIPTION="tool to display dialog boxes from a shell" +HOMEPAGE="http://invisible-island.net/dialog/dialog.html" +SRC_URI="ftp://invisible-island.net/${PN}/${PN}-${MY_PV}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" +IUSE="examples minimal nls static-libs unicode" + +RDEPEND=" + >=sys-libs/ncurses-5.2-r5[unicode?] +" +DEPEND=" + ${RDEPEND} + nls? ( sys-devel/gettext ) + !minimal? ( sys-devel/libtool ) + !<=sys-freebsd/freebsd-contrib-8.9999 +" + +src_prepare() { + sed -i -e '/LIB_CREATE=/s:${CC}:& ${LDFLAGS}:g' configure || die + sed -i '/$(LIBTOOL_COMPILE)/s:$: $(LIBTOOL_OPTS):' makefile.in || die +} + +src_configure() { + econf \ + --disable-rpath-hack \ + $(use_enable nls) \ + $(use_with !minimal libtool) \ + --with-libtool-opts=$(usex static-libs '' '-shared') \ + --with-ncurses$(usex unicode w '') +} + +src_install() { + use minimal && default || emake DESTDIR="${D}" install-full + + use examples && dodoc -r samples + + dodoc CHANGES README + + prune_libtool_files +} diff --git a/dev-util/global/global-6.3.1.ebuild b/dev-util/global/global-6.3.1.ebuild index 77fb8229880f..116e55b7e34a 100644 --- a/dev-util/global/global-6.3.1.ebuild +++ b/dev-util/global/global-6.3.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/global/global-6.3.1.ebuild,v 1.3 2014/10/09 09:13:45 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/global/global-6.3.1.ebuild,v 1.4 2014/10/10 10:57:01 ago Exp $ EAPI="5" @@ -12,7 +12,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="amd64 ~ppc ~x86 ~x86-fbsd" +KEYWORDS="amd64 ~ppc x86 ~x86-fbsd" IUSE="doc emacs vim" RDEPEND="sys-devel/libtool diff --git a/dev-util/trinity/trinity-9999.ebuild b/dev-util/trinity/trinity-9999.ebuild index c2c84116a7cf..e6de18d589b6 100644 --- a/dev-util/trinity/trinity-9999.ebuild +++ b/dev-util/trinity/trinity-9999.ebuild @@ -1,15 +1,15 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/trinity/trinity-9999.ebuild,v 1.5 2014/06/25 04:57:32 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/trinity/trinity-9999.ebuild,v 1.6 2014/10/10 19:41:03 radhermit Exp $ EAPI=5 inherit toolchain-funcs git-r3 -EGIT_REPO_URI="git://git.codemonkey.org.uk/trinity" +EGIT_REPO_URI="https://github.com/kernelslacker/trinity.git" DESCRIPTION="A Linux system call fuzz tester" -HOMEPAGE="http://codemonkey.org.uk/projects/trinity/" +HOMEPAGE="http://codemonkey.org.uk/projects/trinity/ https://github.com/kernelslacker/trinity/" LICENSE="GPL-2" SLOT="0" diff --git a/dev-vcs/cssc/Manifest b/dev-vcs/cssc/Manifest index 22efb8db2d31..d4dc69fb292e 100644 --- a/dev-vcs/cssc/Manifest +++ b/dev-vcs/cssc/Manifest @@ -1,2 +1 @@ -DIST CSSC-1.3.0.tar.gz 1608481 SHA256 95053aab534c111648ea5b096037673b541a0c2960574d8addf70201a5337c2e SHA512 26d7b7757e59cd1eec900517fba671050308e61d841a47fbeb79a101749839fec8d7a9ea5dc938fc8cf669c36411fc850419503681e80e4292d4e3cc37d47a53 WHIRLPOOL a2d1f520838897310fc509b41715186dcf60487ae143149be30da9a87ecd7f4d831571e46ea86fa08d5b280add7d218aea45a75d0036ab97b64251da859c6415 DIST CSSC-1.4.0.tar.gz 2012122 SHA256 30146f96c26c2a4c6b742bc8a498993ec6ea9f289becaaf566866488600b2994 SHA512 7abb38ecfb5120e807d1f09d16ce81306b3eb16746e44da5029f626feba67dfb46db20bd2b89daffb2e3cdc51ffadc51cd666eef7d1b94e56b4c7dc24f93ea76 WHIRLPOOL 725702d94cf5e0d2b393e98ab3b2d552d59d562626d4778dfe6a0ff1b4211577123c3fa3689a14738499780413ab73e7e1c10897793a89190c0bcd5b36a65829 diff --git a/dev-vcs/cssc/cssc-1.3.0-r1.ebuild b/dev-vcs/cssc/cssc-1.3.0-r1.ebuild deleted file mode 100644 index bec1533c00a3..000000000000 --- a/dev-vcs/cssc/cssc-1.3.0-r1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/cssc/cssc-1.3.0-r1.ebuild,v 1.7 2012/11/21 11:25:55 ago Exp $ - -EAPI=4 -inherit eutils - -DESCRIPTION="CSSC is the GNU Project's replacement for SCCS" -SRC_URI="mirror://gnu/${PN}/${P^^}.tar.gz" -HOMEPAGE="http://www.gnu.org/software/cssc/" -SLOT="0" -LICENSE="GPL-3" -S="${WORKDIR}/${P^^}" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" -IUSE="" - -DOCS=( README NEWS ChangeLog AUTHORS ) - -src_prepare() { - epatch \ - "${FILESDIR}"/${P}-gcc47.patch \ - "${FILESDIR}"/${P}-gets.patch - - # The large test takes a long time - sed -i tests/Makefile.* \ - -e 's|\([[:space:]]\)test-large |\1|g' \ - || die "sed failed" -} - -src_configure() { - econf --enable-binary --without-valgrind -} - -src_compile() { - emake all -} - -src_test() { - if [[ ${UID} = 0 ]]; then - einfo "The test suite can not be run as root" - else - emake check - fi -} diff --git a/dev-vcs/cssc/cssc-1.4.0.ebuild b/dev-vcs/cssc/cssc-1.4.0.ebuild index b1efab075009..4589efb96550 100644 --- a/dev-vcs/cssc/cssc-1.4.0.ebuild +++ b/dev-vcs/cssc/cssc-1.4.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/cssc/cssc-1.4.0.ebuild,v 1.2 2014/10/09 09:12:55 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/cssc/cssc-1.4.0.ebuild,v 1.3 2014/10/10 10:58:58 ago Exp $ EAPI=5 inherit autotools eutils @@ -11,7 +11,7 @@ HOMEPAGE="http://www.gnu.org/software/cssc/" SLOT="0" LICENSE="GPL-3" -KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" IUSE="test valgrind" DEPEND=" diff --git a/dev-vcs/cssc/files/cssc-1.3.0-gets.patch b/dev-vcs/cssc/files/cssc-1.3.0-gets.patch deleted file mode 100644 index d844b83a0990..000000000000 --- a/dev-vcs/cssc/files/cssc-1.3.0-gets.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- a/gl/lib/stdio.in.h -+++ b/gl/lib/stdio.in.h -@@ -138,8 +138,10 @@ - /* It is very rare that the developer ever has full control of stdin, - so any use of gets warrants an unconditional warning. Assume it is - always declared, since it is required by C89. */ -+#ifdef gets - #undef gets - _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead"); -+#endif - - #if @GNULIB_FOPEN@ - # if @REPLACE_FOPEN@ diff --git a/dev-vcs/monotone/monotone-1.0-r4.ebuild b/dev-vcs/monotone/monotone-1.0-r4.ebuild index 2c6040e3558e..c64e6d2abf6d 100644 --- a/dev-vcs/monotone/monotone-1.0-r4.ebuild +++ b/dev-vcs/monotone/monotone-1.0-r4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/monotone/monotone-1.0-r4.ebuild,v 1.3 2014/10/09 14:48:11 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/monotone/monotone-1.0-r4.ebuild,v 1.4 2014/10/10 11:06:38 ago Exp $ # QA failiures reported in https://code.monotone.ca/p/monotone/issues/181/ EAPI="4" @@ -12,7 +12,7 @@ SRC_URI="http://monotone.ca/downloads/${PV}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="1" -KEYWORDS="amd64 ~ia64 ~x86" +KEYWORDS="amd64 ~ia64 x86" IUSE="doc ipv6 nls test" RDEPEND="sys-libs/zlib diff --git a/games-action/openclonk/Manifest b/games-action/openclonk/Manifest index 9765fe71bb0f..3973c34ea7b9 100644 --- a/games-action/openclonk/Manifest +++ b/games-action/openclonk/Manifest @@ -1,2 +1,3 @@ DIST openclonk-5.3.3.tar.xz 46516448 SHA256 e6352a695ccb1f7905b2e3014b229e25a9660e82f2a96696521862efaa163abe SHA512 2351b2ec8d3931a05c7f8a4c7ca9ef0285535b1a15da0b02de9046139806211ed64fe3b08a56c3d1712aad07e0a6eea0074ff47d9dbaa874605a788f4c3ab100 WHIRLPOOL 6cc87894b2ab03de35c42fcd3e617f82b66ac06ccdb2ad167a67a0d14ad22fecc048d2d3f2504a5c96efe94103830bcf2f0deaa7a535bea66fb115f12aab4e82 +DIST openclonk-5.5.1-src.tar.bz2 65383438 SHA256 c038d6dc2ef9a3d7966b18ba6147b9dd136f353dfaa5796455f9917b79255743 SHA512 eb111a1f19e2373e6999850dddafa9a5653694904f470690ef39300e4cc3105f0394637e7dbea0a4cff9d91dd30b04f9037252eb0e8830966696f01f6424b977 WHIRLPOOL 990e90ff0daf9aa9dc4826ff621f0647089a68b5ba7d798a4d6cd5ef5d9ec78a666ae897241a6d556f90110f6739206fb09ebc2bc6c9558df65ee67dba0ea8af DIST openclonk.png 8487 SHA256 93ff9f479e166f30f1c1042c32624b7e54b4d917813a4f46cce57e39a1f30233 SHA512 3bd2bb20167349130d767719f6732d9682ec32a09f5e8c13fe6245648185eee28edfe564ae64bdc5539c19de701f321887c7fa71e8d1f1f640e0ec6b933544de WHIRLPOOL 190876380614e82092a0d825612cec9dbd0294aec1caf9fe00a137d75525736d87e56507851f61292b736601c1124aac1d1724e94cd0846fa60f5fcab714ef13 diff --git a/games-action/openclonk/files/openclonk-5.5.1-paths.patch b/games-action/openclonk/files/openclonk-5.5.1-paths.patch new file mode 100644 index 000000000000..02776e21ed69 --- /dev/null +++ b/games-action/openclonk/files/openclonk-5.5.1-paths.patch @@ -0,0 +1,67 @@ +From: Julian Ospald +Date: Thu Feb 6 19:58:45 UTC 2014 +Subject: make paths modifiable + +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -35,6 +35,16 @@ + set(${_var} "${_string}" PARENT_SCOPE) + endfunction() + ++ ++############################################################################ ++# User selectable paths ++############################################################################ ++set(INSTALL_BINDIR "bin/" CACHE PATH "Binary install destination") ++set(INSTALL_GAMES_BINDIR "games/bin" CACHE PATH "Games binary install destination") ++set(INSTALL_DATAROOTDIR "share/" CACHE PATH "Data root install destination") ++set(INSTALL_DATADIR "${INSTALL_DATAROOTDIR}" CACHE PATH "Data install destination") ++ ++ + ############################################################################ + # User selectable options + ############################################################################ +@@ -1170,10 +1180,16 @@ + # Assemble compiler flags + ############################################################################ + if(UNIX) ++ if(NOT IS_ABSOLUTE "${INSTALL_DATADIR}") ++ set(ABSOLUTE_INSTALL_DATADIR "${CMAKE_INSTALL_PREFIX}/${INSTALL_DATADIR}") ++ else() ++ set(ABSOLUTE_INSTALL_DATADIR "${INSTALL_DATADIR}") ++ endif() ++ + # Don't put this into CMAKE_CXX_FLAGS because otherwise it is cached, + # and when the path is changed both the old and new definition appears + # in the list of flags. +- add_definitions("-DOC_SYSTEM_DATA_DIR=\"${CMAKE_INSTALL_PREFIX}/share/games/openclonk\"") ++ add_definitions("-DOC_SYSTEM_DATA_DIR=\"${ABSOLUTE_INSTALL_DATADIR}/openclonk\"") + endif() + if(OC_CXX_FLAGS) + list(REMOVE_DUPLICATES OC_CXX_FLAGS) +@@ -1474,20 +1490,20 @@ + DEPENDS c4group + VERBATIM + ) +- install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${group} DESTINATION share/games/openclonk) ++ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${group} DESTINATION "${INSTALL_DATADIR}/openclonk") + endif() + endforeach() + + if (NOT APPLE) + add_custom_target(groups DEPENDS ${OC_C4GROUPS}) + add_dependencies(data groups) +- ++ + # Install new files +- install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/openclonk.desktop DESTINATION share/applications) ++ install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/openclonk.desktop DESTINATION "${INSTALL_DATAROOTDIR}/applications") + + # Install binaries +- install(TARGETS openclonk DESTINATION games) +- install(TARGETS c4group DESTINATION bin) ++ install(TARGETS openclonk DESTINATION "${INSTALL_GAMES_BINDIR}") ++ install(TARGETS c4group DESTINATION "${INSTALL_BINDIR}") + else() + install(TARGETS openclonk + BUNDLE DESTINATION . diff --git a/games-action/openclonk/files/openclonk-5.5.1-tinyxml-shared.patch b/games-action/openclonk/files/openclonk-5.5.1-tinyxml-shared.patch new file mode 100644 index 000000000000..a55943fc3135 --- /dev/null +++ b/games-action/openclonk/files/openclonk-5.5.1-tinyxml-shared.patch @@ -0,0 +1,25 @@ +From: Julian Ospald +Date: Thu Feb 6 19:58:45 UTC 2014 +Subject: use shared tinyxml + +--- a/CMakeLists.txt.old.new ++++ b/CMakeLists.txt +@@ -1292,7 +1292,6 @@ + CHECK_INCLUDE_FILE_CXX(getopt.h HAVE_GETOPT_H) + + # TinyXML +-add_subdirectory(thirdparty/tinyxml) + target_link_libraries(openclonk tinyxml) + + if(WIN32) +--- a/src/lib/StdMeshLoaderXml.cpp ++++ b/src/lib/StdMeshLoaderXml.cpp +@@ -19,7 +19,7 @@ + #include "C4Include.h" + #include "StdMesh.h" + #include "StdMeshLoader.h" +-#include ++#include + + // Helper class to load things from an XML file with error checking + class StdMeshLoader::StdMeshXML diff --git a/games-action/openclonk/openclonk-5.5.1.ebuild b/games-action/openclonk/openclonk-5.5.1.ebuild new file mode 100644 index 000000000000..7f3bb2f97309 --- /dev/null +++ b/games-action/openclonk/openclonk-5.5.1.ebuild @@ -0,0 +1,120 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/openclonk/openclonk-5.5.1.ebuild,v 1.1 2014/10/10 19:18:22 hasufell Exp $ + +# FIXME: does not compile with gtk+3 + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) +inherit cmake-utils eutils gnome2-utils python-any-r1 games + +MY_P=${PN}-release-${PV}-src + +DESCRIPTION="A free multiplayer action game where you control clonks" +HOMEPAGE="http://openclonk.org/" +SRC_URI="http://www.openclonk.org/builds/release/${PV}/openclonk-${PV}-src.tar.bz2 + http://${PN}.org/homepage/icon.png -> ${PN}.png" + +LICENSE="BSD ISC CLONK-trademark LGPL-2.1 POSTGRESQL" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="dedicated doc" + +RDEPEND=" + >=dev-libs/boost-1.40 + dev-libs/tinyxml + net-libs/libupnp + media-libs/libpng:0 + sys-libs/zlib + !dedicated? ( + dev-libs/glib:2 + media-libs/freealut + media-libs/freetype:2 + media-libs/glew + media-libs/libsdl[X,opengl,sound,video] + media-libs/libvorbis + media-libs/openal + media-libs/sdl-mixer[mp3,vorbis,wav] + virtual/jpeg + virtual/opengl + virtual/glu + x11-libs/gdk-pixbuf + x11-libs/gtk+:2 + x11-libs/libXrandr + x11-libs/libX11 + ) + dedicated? ( sys-libs/readline:0 )" +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( + ${PYTHON_DEPS} + dev-libs/libxml2[python] + sys-devel/gettext + )" + +PATCHES=( + "${FILESDIR}"/${P}-tinyxml-shared.patch + "${FILESDIR}"/${P}-paths.patch +) +S=${WORKDIR}/${PN}-release-${PV}-src + +pkg_setup() { + games_pkg_setup + use doc && python-any-r1_pkg_setup +} + +src_prepare() { + rm -r thirdparty/tinyxml || die + cmake-utils_src_prepare +} + +src_configure() { + local mycmakeargs=( + $(usex dedicated \ + "-DUSE_CONSOLE=ON -DUSE_X11=OFF -DUSE_GTK=OFF -DUSE_GTK3=OFF" \ + "-DUSE_CONSOLE=OFF -DUSE_X11=ON -DUSE_GTK=ON -DUSE_GTK3=OFF") + -DWITH_AUTOMATIC_UPDATE=OFF + -DINSTALL_GAMES_BINDIR="${GAMES_BINDIR}" + -DINSTALL_DATADIR="${GAMES_DATADIR}" + -DUSE_STATIC_BOOST=OFF + ) + + cmake-utils_src_configure +} + +src_compile() { + cmake-utils_src_compile + + if use doc ; then + emake -C docs + fi +} + +src_install() { + cmake-utils_src_install + + if ! use dedicated; then + mv "${ED%/}${GAMES_BINDIR}/openclonk" "${ED%/}${GAMES_BINDIR}/clonk" || die + newgamesbin "${FILESDIR}"/${PN}-wrapper-script.sh ${PN} + doicon -s 64 "${DISTDIR}"/${PN}.png + make_desktop_entry ${PN} + fi + use doc && dohtml -r docs/online/* + + prepgamesdirs +} + +pkg_preinst() { + games_pkg_preinst + gnome2_icon_savelist +} + +pkg_postinst() { + games_pkg_postinst + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} diff --git a/games-arcade/openmortal/openmortal-0.7-r1.ebuild b/games-arcade/openmortal/openmortal-0.7-r1.ebuild index dd0076cc97a1..0796ca10fe59 100644 --- a/games-arcade/openmortal/openmortal-0.7-r1.ebuild +++ b/games-arcade/openmortal/openmortal-0.7-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/openmortal/openmortal-0.7-r1.ebuild,v 1.1 2014/09/02 21:50:25 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/openmortal/openmortal-0.7-r1.ebuild,v 1.2 2014/10/10 15:20:45 ago Exp $ EAPI=5 inherit autotools eutils games @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" DEPEND="media-libs/libsdl[video] diff --git a/games-board/atakks/Manifest b/games-board/atakks/Manifest index abee33401026..ec4eae85feb9 100644 --- a/games-board/atakks/Manifest +++ b/games-board/atakks/Manifest @@ -1 +1 @@ -DIST atakks-1.0.tar.gz 62464 SHA256 40603b7029f0092bcd810b6930b595f29ee9b3a645d5a5037c52b7bbad499d81 +DIST atakks-1.0.tar.gz 62464 SHA256 40603b7029f0092bcd810b6930b595f29ee9b3a645d5a5037c52b7bbad499d81 SHA512 a4b31635ef74198c86002fc930922266f462926bffa5b1fd7fb8ba1186dbc1efd8ae8c84ac0a429737916d1350b5432967221a67505bfe73d47a6dadd7600e39 WHIRLPOOL d525ed8363738041d43f5776a27ea55489ab4a15bfc3beea1a2ee4240622cd10b234942681ae7cf03b4cd97a95eb685b11cf0baf15449b5eedb514d277648220 diff --git a/games-board/atakks/atakks-1.0.ebuild b/games-board/atakks/atakks-1.0.ebuild index 163565faf510..d02ce20f8905 100644 --- a/games-board/atakks/atakks-1.0.ebuild +++ b/games-board/atakks/atakks-1.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/atakks/atakks-1.0.ebuild,v 1.11 2014/09/11 08:13:26 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/atakks/atakks-1.0.ebuild,v 1.12 2014/10/10 15:22:00 ago Exp $ EAPI=5 inherit eutils games @@ -14,7 +14,7 @@ SRC_URI="mirror://gentoo/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ppc x86" +KEYWORDS="amd64 ppc x86" IUSE="" DEPEND="media-libs/libsdl:0" diff --git a/games-board/biloba/biloba-0.9.3.ebuild b/games-board/biloba/biloba-0.9.3.ebuild index 4e30b7e07ed2..b109e160e5a5 100644 --- a/games-board/biloba/biloba-0.9.3.ebuild +++ b/games-board/biloba/biloba-0.9.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/biloba/biloba-0.9.3.ebuild,v 1.7 2014/09/12 07:00:31 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/biloba/biloba-0.9.3.ebuild,v 1.8 2014/10/10 15:25:42 ago Exp $ EAPI=5 inherit autotools eutils gnome2-utils games @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/biloba/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 x86" +KEYWORDS="amd64 x86" IUSE="" DEPEND="media-libs/libsdl:0[X,video,sound] diff --git a/games-board/capicity/capicity-1.0.ebuild b/games-board/capicity/capicity-1.0.ebuild index d290347da985..9f4ee515e6be 100644 --- a/games-board/capicity/capicity-1.0.ebuild +++ b/games-board/capicity/capicity-1.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/capicity/capicity-1.0.ebuild,v 1.1 2014/01/23 19:45:38 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/capicity/capicity-1.0.ebuild,v 1.2 2014/10/10 15:23:04 ago Exp $ EAPI=5 inherit eutils gnome2-utils qmake-utils games @@ -12,7 +12,7 @@ SRC_URI="dedicated? ( mirror://sourceforge/project/capitalism/Capi%20City/${PV}/ LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="dedicated" RDEPEND=" diff --git a/games-board/ccgo/ccgo-0.3.6.4.ebuild b/games-board/ccgo/ccgo-0.3.6.4.ebuild index 25119eadc955..38ec5723b712 100644 --- a/games-board/ccgo/ccgo-0.3.6.4.ebuild +++ b/games-board/ccgo/ccgo-0.3.6.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/ccgo/ccgo-0.3.6.4.ebuild,v 1.6 2014/09/12 07:31:53 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/ccgo/ccgo-0.3.6.4.ebuild,v 1.7 2014/10/10 15:20:30 ago Exp $ EAPI=5 inherit autotools toolchain-funcs games @@ -11,7 +11,7 @@ SRC_URI="http://ccdw.org/~cjj/prog/ccgo/src/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~ppc x86" +KEYWORDS="amd64 ~ppc x86" IUSE="nls" RDEPEND=">=dev-cpp/gtkmm-2.4:2.4 diff --git a/games-board/gnuchess/gnuchess-6.1.2.ebuild b/games-board/gnuchess/gnuchess-6.1.2.ebuild index e0f2879302cf..acdd72a08360 100644 --- a/games-board/gnuchess/gnuchess-6.1.2.ebuild +++ b/games-board/gnuchess/gnuchess-6.1.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/gnuchess/gnuchess-6.1.2.ebuild,v 1.1 2014/08/04 21:12:46 sping Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/gnuchess/gnuchess-6.1.2.ebuild,v 1.2 2014/10/10 15:20:54 ago Exp $ EAPI=5 inherit flag-o-matic games @@ -9,7 +9,7 @@ DESCRIPTION="Console based chess interface" HOMEPAGE="http://www.gnu.org/software/chess/chess.html" SRC_URI="mirror://gnu/chess/${P}.tar.gz" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" +KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86" LICENSE="GPL-3" SLOT="0" IUSE="" diff --git a/games-board/mah-jong/mah-jong-1.14.ebuild b/games-board/mah-jong/mah-jong-1.14.ebuild index b50b7a3836eb..7fa4df563aad 100644 --- a/games-board/mah-jong/mah-jong-1.14.ebuild +++ b/games-board/mah-jong/mah-jong-1.14.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/mah-jong/mah-jong-1.14.ebuild,v 1.1 2014/05/20 00:52:42 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/mah-jong/mah-jong-1.14.ebuild,v 1.2 2014/10/10 15:22:30 ago Exp $ EAPI=5 inherit eutils toolchain-funcs games @@ -12,7 +12,7 @@ SRC_URI="http://mahjong.julianbradfield.org/Source/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" RDEPEND="x11-libs/gtk+:2" diff --git a/games-board/natch/natch-2.4.ebuild b/games-board/natch/natch-2.4.ebuild index 515b43b70035..956ab0fbef0b 100644 --- a/games-board/natch/natch-2.4.ebuild +++ b/games-board/natch/natch-2.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/natch/natch-2.4.ebuild,v 1.3 2014/09/11 07:43:13 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/natch/natch-2.4.ebuild,v 1.4 2014/10/10 15:25:17 ago Exp $ EAPI=5 inherit games @@ -12,7 +12,7 @@ SRC_URI="http://natch.free.fr/Natch/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc x86" +KEYWORDS="amd64 ~ppc x86" IUSE="" DEPEND="sys-libs/ncurses" diff --git a/games-board/pioneers/pioneers-15.1-r1.ebuild b/games-board/pioneers/pioneers-15.1-r1.ebuild index ab969f7492c4..e29b7bdf4369 100644 --- a/games-board/pioneers/pioneers-15.1-r1.ebuild +++ b/games-board/pioneers/pioneers-15.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/pioneers/pioneers-15.1-r1.ebuild,v 1.1 2014/06/12 20:03:25 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/pioneers/pioneers-15.1-r1.ebuild,v 1.2 2014/10/10 15:25:06 ago Exp $ # NOTE: "QA Notice: Unrecognized configure options --with-gtk" is a false-positive @@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/pio/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="dedicated help nls" # dev-util/gob only for autoreconf diff --git a/games-board/pouetchess/pouetchess-0.2.0-r1.ebuild b/games-board/pouetchess/pouetchess-0.2.0-r1.ebuild index 2ab7e4c3927f..f05a5c3cfe33 100644 --- a/games-board/pouetchess/pouetchess-0.2.0-r1.ebuild +++ b/games-board/pouetchess/pouetchess-0.2.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/pouetchess/pouetchess-0.2.0-r1.ebuild,v 1.14 2014/09/12 07:56:16 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/pouetchess/pouetchess-0.2.0-r1.ebuild,v 1.15 2014/10/10 15:20:35 ago Exp $ EAPI=5 inherit eutils scons-utils games @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${PN}_src_${PV}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc x86" +KEYWORDS="amd64 ~ppc x86" IUSE="debug" DEPEND="media-libs/libsdl:0[opengl,video] diff --git a/games-board/qcheckers/qcheckers-20091230.ebuild b/games-board/qcheckers/qcheckers-20091230.ebuild index 80bb93ae89bc..614ac9ab6aaa 100644 --- a/games-board/qcheckers/qcheckers-20091230.ebuild +++ b/games-board/qcheckers/qcheckers-20091230.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/qcheckers/qcheckers-20091230.ebuild,v 1.5 2014/09/12 03:18:57 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/qcheckers/qcheckers-20091230.ebuild,v 1.6 2014/10/10 15:25:11 ago Exp $ EAPI=5 inherit eutils qt4-r2 games @@ -13,7 +13,7 @@ SRC_URI="http://qcheckers.googlecode.com/files/${MY_PN}-${PV}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 x86" +KEYWORDS="amd64 x86" IUSE="" DEPEND="dev-qt/qtgui:4" diff --git a/games-board/tetzle/Manifest b/games-board/tetzle/Manifest index f1d79b9540b0..c688a8c47982 100644 --- a/games-board/tetzle/Manifest +++ b/games-board/tetzle/Manifest @@ -1,2 +1 @@ -DIST tetzle-2.0.1-src.tar.bz2 617348 SHA256 fd7e2343fc30cfa8912f8a108882a2650584a269d439f042916701c8af4c0ac0 SHA512 964c639a365e2c78f1c14c37693a28ed83957d6d94ed6823029616619c4e1301bac1c0292bdf9a676be1e0aa37fe3d10d89577f92f8eb754a9d1ff2a2dcc5f7b WHIRLPOOL d19c8a6c5699a9ac95a2fc2163c518f7a869f5ec54b6292ea53575a6bc361d3219f2ebaf2d0f3af93cd43ee0ea4b0b297cedde2336ec0487989b2cfdf4ca5815 DIST tetzle-2.0.3-src.tar.bz2 641065 SHA256 6c29ea61501dcc0149ece879217df5710d1169bfae940a667af2a19605415b51 SHA512 39853cc37b0bae676fc516e56c2bb6a54d5cacccd5978d5bd9cd735bf9fcb09948871af06cdb3b3d1a510c51ea71ac3720bbfe2558c2effaa00e00708a70f7d9 WHIRLPOOL 7bc9d4973deb2b9d1b32316c40b13203d0dcab244d1805639c640331b4b582e0a81d821987a8e0275cd28edc59d9e419b03b7280efb0d7e55d5057398c94d4c9 diff --git a/games-board/tetzle/tetzle-2.0.1.ebuild b/games-board/tetzle/tetzle-2.0.1.ebuild deleted file mode 100644 index 75304774be16..000000000000 --- a/games-board/tetzle/tetzle-2.0.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/games-board/tetzle/tetzle-2.0.1.ebuild,v 1.5 2013/12/24 12:44:51 ago Exp $ - -EAPI=2 -inherit qt4-r2 gnome2-utils games - -DESCRIPTION="A jigsaw puzzle game that uses tetrominoes for the pieces" -HOMEPAGE="http://gottcode.org/tetzle/" -SRC_URI="http://gottcode.org/${PN}/${P}-src.tar.bz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -DEPEND=">=dev-qt/qtgui-4.7:4 - >=dev-qt/qtopengl-4.7:4" - -DOCS="ChangeLog CREDITS" - -src_prepare() { - sed -i \ - -e "s:appdir + \"/../share/\":\"${GAMES_DATADIR}/\":" \ - src/locale_dialog.cpp || die - sed -i \ - -e "/qm.path/s:\$\$PREFIX/share:${GAMES_DATADIR}:" \ - ${PN}.pro || die - sed -i \ - -e '/Categories/s/$/;/' \ - data/unix/tetzle.desktop || die -} - -src_configure() { - eqmake4 BINDIR="${GAMES_BINDIR/\/usr}" PREFIX="/usr" -} - -src_install() { - qt4-r2_src_install - prepgamesdirs -} - -pkg_preinst() { - games_pkg_preinst - gnome2_icon_savelist -} - -pkg_postinst() { - games_pkg_postinst - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -} diff --git a/games-board/tetzle/tetzle-2.0.3.ebuild b/games-board/tetzle/tetzle-2.0.3.ebuild index 4e9d54ab9630..43e5871e7522 100644 --- a/games-board/tetzle/tetzle-2.0.3.ebuild +++ b/games-board/tetzle/tetzle-2.0.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/tetzle/tetzle-2.0.3.ebuild,v 1.2 2014/10/09 09:34:49 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/tetzle/tetzle-2.0.3.ebuild,v 1.3 2014/10/10 10:59:54 ago Exp $ EAPI=5 inherit qt4-r2 gnome2-utils games @@ -11,7 +11,7 @@ SRC_URI="http://gottcode.org/${PN}/${P}-src.tar.bz2" LICENSE="GPL-3" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="" DEPEND=">=dev-qt/qtgui-4.7:4 diff --git a/games-engines/renpy/Manifest b/games-engines/renpy/Manifest index 93e4e527f5f6..9260af506cb3 100644 --- a/games-engines/renpy/Manifest +++ b/games-engines/renpy/Manifest @@ -2,5 +2,4 @@ DIST renpy-6.14.1-source.tar.bz2 9806538 SHA256 18be3630d1956131a1f010732d15292c DIST renpy-6.15.7-source.tar.bz2 10421736 SHA256 b4280b62f7c8f730a37c7e567b16216b4578fc3640fbcdf5df7c65a73ae52e52 SHA512 d79b1d6b931f281ff208b8ece3889c116ceb05c58fe115e9f7f470788e74e63cfeb3df4f804b4a37a4f1da6ba194c883023808fafc8e8beddf864424958204e6 WHIRLPOOL 202ddb045f440f9abd06f5ac02ebd92a7b0300b14f4755271f1fc4e91bdea21cda19a432f45516f68ba3ad7ead98d7491382ad5c633da277a674f799458795f3 DIST renpy-6.16.5-source.tar.bz2 14455622 SHA256 5ecb00fa84a048ff6e1f1d8a0114373425375e9c0b2a0596bf2d47e996b9d056 SHA512 1a718d86a689135e5a280f64cdc3c0340d712b7804af2169ed4cb4a12528e01088c919b87d36176b3fb8a05e8201f226146c46c4f4d5ebf1d89c3cebd1263c4d WHIRLPOOL b06638c284089ba79d12d95ba604c40fffe595d67e75551bbe8a08ddc57403f1644dd713c5eb15a39fcc34b92722589437935666d172379bb1164d2a02ef9433 DIST renpy-6.17.7-source.tar.bz2 17932988 SHA256 fef01de9e482b73d9d409de7a43bada6dd3e2a0549b99dd487306371190ed038 SHA512 22b0e08b18ee35317b11451205233cbd8a29617d9c3d298bbdcfc5757f67c2f0e4c8a748aa83d5c8b43786c062ffca109d07e981efa750fcee26f45f08a33ea2 WHIRLPOOL fef82eb6c958a2525797e5d8bfae3488fba606b70eeed5c94f7afcab4fa46e7a7eb43d91b4bd55f553b65a72b12236e02ecdee55e8852c1fafc055332f9d131d -DIST renpy-6.18.0-source.tar.bz2 19639455 SHA256 5c22ac631692c1dd48f17f3a6dc0c8e79f79d128878818ad0d7c47c2fb0ac805 SHA512 c54010c95a6075aaec95f256c456e2959d2daa0ff9b9e313c2bd6647dc5d0e971a717f8a1361d9afa59badb177d8e9e8afa3cd9f3d69b603a9045ea79c35d92d WHIRLPOOL 988eba8d56b3ddc0830e1558093c295c331b48da0408ffd4e6dc524adb8fa845ea2b15b33deead32c6e54e38f8b10598cbdb7d086a817f1d3f2d508dfe219a6f -DIST renpy-6.18.1-source.tar.bz2 19836141 SHA256 86690760f6ed0a48835e67d81be64142349546a529d122ba18bf34419c5aa9a6 SHA512 3d71b459f62aeb67410b4fc46cad35884e3471a120dd720fe04646440b8b9ed89d4e75431de4b073cbb6c0c312439062d5085ba1cec046978a49b4dbb180de87 WHIRLPOOL 0137d1cdb88a679c4d01826f40d61d0d0ab0c579ae61ebb5d1fae15468c6aaa00f41dc02d7113d0acbe3dd5d4946ab0c6539855e446c46d34bb6117ca814986c +DIST renpy-6.18.2-source.tar.bz2 19854257 SHA256 635c7495d5ced298183793cafbe8631981a5a75aec106b4ba145d3dd870a544c SHA512 239de63f7e015076aeb05d4f7da7caa676e151b0f3cbd710b0fe59a592f7af02cd8994ddb0d6225ccec337579eb2de1a5b83759a28572ead631fe3b5df515e8b WHIRLPOOL 85ac745891bf2ab729cb8ad44cab0cdd03399956455a4fbf73d638b87cf49d44c7395658e3882509dc0652492da931f7932297eb39974d7c890e772cfe1f13ff diff --git a/games-engines/renpy/files/renpy-6.18.0-multiple-abi.patch b/games-engines/renpy/files/renpy-6.18.0-multiple-abi.patch deleted file mode 100644 index 335af4e9b8d1..000000000000 --- a/games-engines/renpy/files/renpy-6.18.0-multiple-abi.patch +++ /dev/null @@ -1,245 +0,0 @@ -commit 7451ba936ca2f3358ca51ab562371774199c7052 -Author: hasufell -Date: Tue Jan 21 01:02:00 2014 +0100 - - fix multiple abi support - -diff --git a/renpy.py b/renpy.py -index 9f2977f..394e4e1 100644 ---- a/renpy.py -+++ b/renpy.py -@@ -28,82 +28,9 @@ - import os - import sys - import warnings -- --# Functions to be customized by distributors. ################################ -- --# Given the Ren'Py base directory (usually the directory containing --# this file), this is expected to return the path to the common directory. --def path_to_common(renpy_base): -- return renpy_base + "/renpy/common" -- --# Given a directory holding a Ren'Py game, this is expected to return --# the path to a directory that will hold save files. --def path_to_saves(gamedir): -- import renpy #@UnresolvedImport -- -- # Android. -- if renpy.android: -- paths = [ -- os.path.join(os.environ["ANDROID_OLD_PUBLIC"], "game/saves"), -- os.path.join(os.environ["ANDROID_PRIVATE"], "saves"), -- os.path.join(os.environ["ANDROID_PUBLIC"], "saves"), -- ] -- -- for rv in paths: -- if os.path.isdir(rv): -- break -- -- print "Using savedir", rv -- -- # We return the last path as the default. -- -- return rv -- -- -- # No save directory given. -- if not renpy.config.save_directory: -- return gamedir + "/saves" -- -- # Search the path above Ren'Py for a directory named "Ren'Py Data". -- # If it exists, then use that for our save directory. -- path = renpy.config.renpy_base -- -- while True: -- if os.path.isdir(path + "/Ren'Py Data"): -- return path + "/Ren'Py Data/" + renpy.config.save_directory -- -- newpath = os.path.dirname(path) -- if path == newpath: -- break -- path = newpath -- -- # Otherwise, put the saves in a platform-specific location. -- if renpy.macintosh: -- rv = "~/Library/RenPy/" + renpy.config.save_directory -- return os.path.expanduser(rv) -- -- elif renpy.windows: -- if 'APPDATA' in os.environ: -- return os.environ['APPDATA'] + "/RenPy/" + renpy.config.save_directory -- else: -- rv = "~/RenPy/" + renpy.config.save_directory -- return os.path.expanduser(rv) -- -- else: -- rv = "~/.renpy/" + renpy.config.save_directory -- return os.path.expanduser(rv) -- -- --# Returns the path to the Ren'Py base directory (containing common and --# the launcher, usually.) --def path_to_renpy_base(): -- renpy_base = os.path.dirname(os.path.realpath(sys.argv[0])) -- renpy_base = os.environ.get('RENPY_BASE', renpy_base) -- renpy_base = os.path.abspath(renpy_base) -- -- return renpy_base -- --############################################################################## -+from distutils.sysconfig import get_python_lib -+sys.path.append(get_python_lib() + "/renpy@SLOT@") -+import renpy.common as common - - # The version of the Mac Launcher and py4renpy that we require. - macos_version = (6, 14, 0) -@@ -131,7 +58,7 @@ if android: - - def main(): - -- renpy_base = path_to_renpy_base() -+ renpy_base = common.path_to_renpy_base() - - # Add paths. - if os.path.exists(renpy_base + "/module"): -diff --git a/renpy/common.py b/renpy/common.py -new file mode 100644 -index 0000000..1f15b3c ---- /dev/null -+++ b/renpy/common.py -@@ -0,0 +1,103 @@ -+# This file is part of Ren'Py. The license below applies to Ren'Py only. -+# Games and other projects that use Ren'Py may use a different license. -+ -+# Copyright 2004-2014 Tom Rothamel -+# -+# Permission is hereby granted, free of charge, to any person -+# obtaining a copy of this software and associated documentation files -+# (the "Software"), to deal in the Software without restriction, -+# including without limitation the rights to use, copy, modify, merge, -+# publish, distribute, sublicense, and/or sell copies of the Software, -+# and to permit persons to whom the Software is furnished to do so, -+# subject to the following conditions: -+# -+# The above copyright notice and this permission notice shall be -+# included in all copies or substantial portions of the Software. -+# -+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -+# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -+# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -+# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -+# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -+# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -+# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -+ -+import os -+import sys -+import warnings -+from distutils.sysconfig import get_python_lib -+ -+# Functions to be customized by distributors. ################################ -+ -+# Given the Ren'Py base directory (usually the directory containing -+# this file), this is expected to return the path to the common directory. -+def path_to_common(renpy_base): -+ return renpy_base + "/renpy/common" -+ -+# Given a directory holding a Ren'Py game, this is expected to return -+# the path to a directory that will hold save files. -+def path_to_saves(gamedir): -+ import renpy #@UnresolvedImport -+ -+ # Android. -+ if renpy.android: -+ paths = [ -+ os.path.join(os.environ["ANDROID_OLD_PUBLIC"], "game/saves"), -+ os.path.join(os.environ["ANDROID_PRIVATE"], "saves"), -+ os.path.join(os.environ["ANDROID_PUBLIC"], "saves"), -+ ] -+ -+ for rv in paths: -+ if os.path.isdir(rv): -+ break -+ -+ print "Using savedir", rv -+ -+ # We return the last path as the default. -+ -+ return rv -+ -+ -+ # No save directory given. -+ if not renpy.config.save_directory: -+ return gamedir + "/saves" -+ -+ # Search the path above Ren'Py for a directory named "Ren'Py Data". -+ # If it exists, then use that for our save directory. -+ path = renpy.config.renpy_base -+ -+ while True: -+ if os.path.isdir(path + "/Ren'Py Data"): -+ return path + "/Ren'Py Data/" + renpy.config.save_directory -+ -+ newpath = os.path.dirname(path) -+ if path == newpath: -+ break -+ path = newpath -+ -+ # Otherwise, put the saves in a platform-specific location. -+ if renpy.macintosh: -+ rv = "~/Library/RenPy/" + renpy.config.save_directory -+ return os.path.expanduser(rv) -+ -+ elif renpy.windows: -+ if 'APPDATA' in os.environ: -+ return os.environ['APPDATA'] + "/RenPy/" + renpy.config.save_directory -+ else: -+ rv = "~/RenPy/" + renpy.config.save_directory -+ return os.path.expanduser(rv) -+ -+ else: -+ rv = "~/.renpy/" + renpy.config.save_directory -+ return os.path.expanduser(rv) -+ -+ -+# Returns the path to the Ren'Py base directory (containing common and -+# the launcher, usually.) -+def path_to_renpy_base(): -+ renpy_base = os.path.dirname(os.path.realpath(sys.argv[0])) -+ renpy_base = get_python_lib() + "/renpy@SLOT@" -+ renpy_base = os.environ.get('RENPY_BASE', renpy_base) -+ renpy_base = os.path.abspath(renpy_base) -+ -+ return renpy_base -diff --git a/renpy/main.py b/renpy/main.py -index 143007d..6c55bbc 100644 ---- a/renpy/main.py -+++ b/renpy/main.py -@@ -25,7 +25,7 @@ import os - import sys - import time - import zipfile --import __main__ -+import renpy.common as common - - - def run(restart): -@@ -167,7 +167,7 @@ def main(): - renpy.config.searchpath = [ renpy.config.gamedir ] - - # Find the common directory. -- commondir = __main__.path_to_common(renpy.config.renpy_base) # E1101 @UndefinedVariable -+ commondir = common.path_to_common(renpy.config.renpy_base) # E1101 @UndefinedVariable - - if os.path.isdir(commondir): - renpy.config.searchpath.append(commondir) -@@ -230,7 +230,7 @@ def main(): - - # Find the save directory. - if renpy.config.savedir is None: -- renpy.config.savedir = __main__.path_to_saves(renpy.config.gamedir) # E1101 @UndefinedVariable -+ renpy.config.savedir = common.path_to_saves(renpy.config.gamedir) # E1101 @UndefinedVariable - - if renpy.game.args.savedir: #@UndefinedVariable - renpy.config.savedir = renpy.game.args.savedir #@UndefinedVariable diff --git a/games-engines/renpy/files/renpy-6.18.1-multiple-abi.patch b/games-engines/renpy/files/renpy-6.18.2-multiple-abi.patch similarity index 100% rename from games-engines/renpy/files/renpy-6.18.1-multiple-abi.patch rename to games-engines/renpy/files/renpy-6.18.2-multiple-abi.patch diff --git a/games-engines/renpy/renpy-6.18.0-r1.ebuild b/games-engines/renpy/renpy-6.18.0-r1.ebuild deleted file mode 100644 index 1553030b1735..000000000000 --- a/games-engines/renpy/renpy-6.18.0-r1.ebuild +++ /dev/null @@ -1,111 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/renpy/renpy-6.18.0-r1.ebuild,v 1.1 2014/08/23 02:27:27 hasufell Exp $ - -EAPI=5 -PYTHON_COMPAT=( python2_7 ) -DISTUTILS_IN_SOURCE_BUILD=1 -inherit eutils toolchain-funcs python-r1 versionator gnome2-utils games distutils-r1 - -DESCRIPTION="Visual novel engine written in python" -HOMEPAGE="http://www.renpy.org" -SRC_URI="http://www.renpy.org/dl/${PV}/${P}-source.tar.bz2" - -LICENSE="MIT" -SLOT="$(get_version_component_range 1-2)" -MYSLOT=$(delete_all_version_separators ${SLOT}) -KEYWORDS="~amd64 ~x86" -IUSE="development doc examples" -REQUIRED_USE="examples? ( development )" - -RDEPEND=" - >=app-admin/eselect-renpy-0.5 - dev-libs/fribidi - dev-python/pygame[X,${PYTHON_USEDEP}] - >=dev-lang/python-exec-0.3[${PYTHON_USEDEP}] - media-libs/glew - media-libs/libpng:0 - media-libs/libsdl[X,video] - media-libs/freetype:2 - sys-libs/zlib - virtual/ffmpeg" -DEPEND="${RDEPEND} - dev-python/cython[${PYTHON_USEDEP}] - virtual/pkgconfig" - -S=${WORKDIR}/${P}-source - -pkg_setup() { - games_pkg_setup - export CFLAGS="${CFLAGS} $($(tc-getPKG_CONFIG) --cflags fribidi)" -} - -python_prepare_all() { - # wooosh! this should fix multiple abi - epatch "${FILESDIR}"/${P}-multiple-abi.patch - - einfo "Deleting precompiled python files" - find . -name '*.py[co]' -print -delete || die - - sed -i \ - -e "s/@SLOT@/${MYSLOT}/" \ - renpy.py renpy/common.py || die "setting slot failed!" - - distutils-r1_python_prepare_all -} - -python_compile() { - cd "${S}"/module || die - distutils-r1_python_compile -} - -python_install() { - cd "${S}"/module || die - distutils-r1_python_install --install-lib="$(python_get_sitedir)/renpy${MYSLOT}" - - cd "${S}" || die - python_scriptinto "${GAMES_BINDIR}" - python_newscript renpy.py ${PN}-${SLOT} - - python_moduleinto renpy${MYSLOT} - python_domodule renpy - if use development ; then - python_domodule launcher templates - fi - if use examples ; then - python_domodule the_question tutorial - fi -} - -python_install_all() { - if use development; then - newicon -s 32 launcher/game/images/logo32.png ${P}.png - make_desktop_entry ${PN}-${SLOT} "Ren'Py ${PV}" ${P} - fi - - if use doc; then - dohtml -r doc - fi - - prepgamesdirs -} - -pkg_preinst() { - games_pkg_preinst - use development && gnome2_icon_savelist -} - -pkg_postinst() { - games_pkg_postinst - use development && gnome2_icon_cache_update - - einfo "running: eselect renpy update --if-unset" - eselect renpy update --if-unset -} - -pkg_postrm() { - use development && gnome2_icon_cache_update - - einfo "running: eselect renpy update --if-unset" - eselect renpy update --if-unset -} diff --git a/games-engines/renpy/renpy-6.18.1.ebuild b/games-engines/renpy/renpy-6.18.2.ebuild similarity index 98% rename from games-engines/renpy/renpy-6.18.1.ebuild rename to games-engines/renpy/renpy-6.18.2.ebuild index 3407f82a613f..8c62f65377d3 100644 --- a/games-engines/renpy/renpy-6.18.1.ebuild +++ b/games-engines/renpy/renpy-6.18.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/renpy/renpy-6.18.1.ebuild,v 1.1 2014/09/23 16:05:13 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-engines/renpy/renpy-6.18.2.ebuild,v 1.1 2014/10/10 18:21:07 hasufell Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) diff --git a/games-engines/scummvm-tools/scummvm-tools-1.7.0.ebuild b/games-engines/scummvm-tools/scummvm-tools-1.7.0.ebuild index e85eb7ee686c..a9166f6b003b 100644 --- a/games-engines/scummvm-tools/scummvm-tools-1.7.0.ebuild +++ b/games-engines/scummvm-tools/scummvm-tools-1.7.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-1.7.0.ebuild,v 1.1 2014/07/23 04:55:59 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-1.7.0.ebuild,v 1.2 2014/10/10 15:21:55 ago Exp $ EAPI=5 WX_GTK_VER=2.8 @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/scummvm/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd" +KEYWORDS="amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd" IUSE="flac iconv mad png vorbis" RESTRICT="test" # some tests require external files diff --git a/games-engines/scummvm/scummvm-1.7.0.ebuild b/games-engines/scummvm/scummvm-1.7.0.ebuild index 097e6287c519..8732f6dc03a4 100644 --- a/games-engines/scummvm/scummvm-1.7.0.ebuild +++ b/games-engines/scummvm/scummvm-1.7.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-1.7.0.ebuild,v 1.2 2014/07/24 18:39:36 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-1.7.0.ebuild,v 1.3 2014/10/10 15:21:50 ago Exp $ EAPI=5 inherit eutils flag-o-matic gnome2-utils toolchain-funcs games @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/scummvm/${P/_/}.tar.bz2" LICENSE="GPL-2 LGPL-2.1 BSD GPL-3-with-font-exception" SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd" +KEYWORDS="amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd" IUSE="aac alsa debug flac fluidsynth jpeg mpeg2 mp3 opengl png theora jpeg truetype vorbis zlib" RESTRICT="test" # it only looks like there's a test there #77507 diff --git a/games-fps/urbanterror/urbanterror-4.2.018-r1.ebuild b/games-fps/urbanterror/urbanterror-4.2.018-r1.ebuild index 3efad5ace43f..f36de536f164 100644 --- a/games-fps/urbanterror/urbanterror-4.2.018-r1.ebuild +++ b/games-fps/urbanterror/urbanterror-4.2.018-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/urbanterror/urbanterror-4.2.018-r1.ebuild,v 1.3 2014/08/14 16:30:09 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/urbanterror/urbanterror-4.2.018-r1.ebuild,v 1.4 2014/10/10 15:23:50 ago Exp $ EAPI=5 @@ -27,7 +27,7 @@ unset UPDATE_I LICENSE="GPL-2 Q3AEULA-20000111 urbanterror-4.2-maps" SLOT="0" -KEYWORDS="~amd64 x86" +KEYWORDS="amd64 x86" IUSE="+curl debug dedicated openal +sdl server smp vorbis" RESTRICT="mirror" diff --git a/games-fps/xonotic/xonotic-0.7.0.ebuild b/games-fps/xonotic/xonotic-0.7.0.ebuild index 4fb231ce5b18..4cfc28d9978d 100644 --- a/games-fps/xonotic/xonotic-0.7.0.ebuild +++ b/games-fps/xonotic/xonotic-0.7.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/xonotic/xonotic-0.7.0.ebuild,v 1.4 2014/05/15 16:47:18 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/xonotic/xonotic-0.7.0.ebuild,v 1.5 2014/10/10 15:25:27 ago Exp $ EAPI=5 inherit eutils check-reqs games @@ -12,7 +12,7 @@ SRC_URI="http://dl.xonotic.org/${P}.zip" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="alsa debug dedicated doc sdl" UIRDEPEND=" diff --git a/games-misc/opengfx/opengfx-0.5.1.ebuild b/games-misc/opengfx/opengfx-0.5.1.ebuild index 4e8a3bcf6fc0..ece257972151 100644 --- a/games-misc/opengfx/opengfx-0.5.1.ebuild +++ b/games-misc/opengfx/opengfx-0.5.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-misc/opengfx/opengfx-0.5.1.ebuild,v 1.2 2014/06/30 06:39:35 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-misc/opengfx/opengfx-0.5.1.ebuild,v 1.3 2014/10/10 15:22:55 ago Exp $ EAPI=5 inherit eutils games @@ -11,7 +11,7 @@ SRC_URI="http://bundles.openttdcoop.org/opengfx/releases/${PV}/${P}-source.tar.x LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~x86" +KEYWORDS="amd64 ~arm ~ppc ~x86" IUSE="" RESTRICT="test" # nml version affects the checksums that the test uses (bug #451444) diff --git a/games-roguelike/stone-soup/stone-soup-0.14.2.ebuild b/games-roguelike/stone-soup/stone-soup-0.14.2.ebuild index 4aef68fd5067..2be224690ab5 100644 --- a/games-roguelike/stone-soup/stone-soup-0.14.2.ebuild +++ b/games-roguelike/stone-soup/stone-soup-0.14.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-roguelike/stone-soup/stone-soup-0.14.2.ebuild,v 1.2 2014/10/09 09:35:14 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-roguelike/stone-soup/stone-soup-0.14.2.ebuild,v 1.3 2014/10/10 11:01:11 ago Exp $ ## TODO # add sound support (no build switch, no sound files) @@ -26,7 +26,7 @@ SRC_URI="mirror://sourceforge/crawl-ref/Stone%20Soup/${PV}/${MY_P}-nodeps.tar.xz # MIT: json.cc/json.h, some .js files in webserver/static/scripts/contrib/ LICENSE="GPL-2 BSD BSD-2 public-domain CC0-1.0 MIT" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="debug luajit ncurses test +tiles" # test is broken # see https://crawl.develz.org/mantis/view.php?id=6121 diff --git a/games-simulation/simutrans/simutrans-0.112.3.ebuild b/games-simulation/simutrans/simutrans-0.112.3.ebuild index 15bb746af9f6..7eb83b2b18b2 100644 --- a/games-simulation/simutrans/simutrans-0.112.3.ebuild +++ b/games-simulation/simutrans/simutrans-0.112.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-simulation/simutrans/simutrans-0.112.3.ebuild,v 1.2 2014/05/15 17:01:35 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-simulation/simutrans/simutrans-0.112.3.ebuild,v 1.3 2014/10/10 15:20:59 ago Exp $ EAPI=5 inherit flag-o-matic eutils games @@ -15,7 +15,7 @@ SRC_URI="mirror://sourceforge/simutrans/simutrans-src-${MY_PV}.zip LICENSE="Artistic" SLOT="0" -KEYWORDS="-* ~amd64 ~x86" +KEYWORDS="-* amd64 ~x86" IUSE="" RDEPEND="media-libs/libsdl[sound,video] diff --git a/games-strategy/liquidwar6/liquidwar6-0.4.3681.ebuild b/games-strategy/liquidwar6/liquidwar6-0.4.3681.ebuild index d5fdcb9b3de5..9365fdf67765 100644 --- a/games-strategy/liquidwar6/liquidwar6-0.4.3681.ebuild +++ b/games-strategy/liquidwar6/liquidwar6-0.4.3681.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/liquidwar6/liquidwar6-0.4.3681.ebuild,v 1.4 2014/08/14 16:42:35 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/liquidwar6/liquidwar6-0.4.3681.ebuild,v 1.5 2014/10/10 15:24:42 ago Exp $ EAPI=5 @@ -16,7 +16,7 @@ SRC_URI="http://www.ufoot.org/download/liquidwar/v6/${MY_PV}/${MY_P}.tar.gz LICENSE="GPL-3+" SLOT="0" -KEYWORDS="~amd64 x86" +KEYWORDS="amd64 x86" IUSE="doc gles2 gtk libcaca +maps nls +ogg openmp readline test" # yes, cunit is rdep diff --git a/games-strategy/openra/openra-20140722.ebuild b/games-strategy/openra/openra-20140722.ebuild index fee801fdbb80..2046e7e31324 100644 --- a/games-strategy/openra/openra-20140722.ebuild +++ b/games-strategy/openra/openra-20140722.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/openra/openra-20140722.ebuild,v 1.1 2014/08/13 02:08:48 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/openra/openra-20140722.ebuild,v 1.2 2014/10/10 15:21:41 ago Exp $ EAPI=5 @@ -12,7 +12,7 @@ SRC_URI="https://github.com/OpenRA/OpenRA/tarball/release-${PV} -> ${P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="tools" QA_PREBUILT="$(games_get_libdir)/openra/liblua*" diff --git a/games-util/grfcodec/grfcodec-6.0.4.ebuild b/games-util/grfcodec/grfcodec-6.0.4.ebuild index 6e85126b878a..2d6ccc9c1f7c 100644 --- a/games-util/grfcodec/grfcodec-6.0.4.ebuild +++ b/games-util/grfcodec/grfcodec-6.0.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/grfcodec/grfcodec-6.0.4.ebuild,v 1.3 2014/10/05 10:47:34 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-util/grfcodec/grfcodec-6.0.4.ebuild,v 1.4 2014/10/10 10:49:54 ago Exp $ EAPI=5 @@ -17,7 +17,7 @@ HOMEPAGE="http://dev.openttdcoop.org/projects/grfcodec" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ~arm ppc ~ppc64 ~x86" +KEYWORDS="amd64 ~arm ppc ~ppc64 x86" IUSE="" [[ -n ${SCM} ]] && S=${WORKDIR}/${PN} diff --git a/games-util/nml/nml-0.3.1.ebuild b/games-util/nml/nml-0.3.1.ebuild index 0986d726b7e7..4df8887af0ba 100644 --- a/games-util/nml/nml-0.3.1.ebuild +++ b/games-util/nml/nml-0.3.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/nml/nml-0.3.1.ebuild,v 1.1 2014/06/11 15:17:53 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-util/nml/nml-0.3.1.ebuild,v 1.2 2014/10/10 15:21:11 ago Exp $ EAPI=5 PYTHON_COMPAT=( python2_6 python2_7 ) @@ -13,7 +13,7 @@ SRC_URI="http://bundles.openttdcoop.org/nml/releases/${PV}/nml-0.3.1.r5242-f6a3a LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~x86" +KEYWORDS="amd64 ~arm ~ppc ~x86" RDEPEND="dev-python/pillow[zlib,${PYTHON_USEDEP}] dev-python/ply[${PYTHON_USEDEP}]" diff --git a/kde-misc/kcm-touchpad/Manifest b/kde-misc/kcm-touchpad/Manifest new file mode 100644 index 000000000000..881c99c119c4 --- /dev/null +++ b/kde-misc/kcm-touchpad/Manifest @@ -0,0 +1 @@ +DIST kcm-touchpad-1.1.tar.gz 93601 SHA256 48faca2ab3f5e77fcfa44ff777d002f1b02393c139032884fdcb9181c5a9dff2 SHA512 91c4559845efaf8eb8f65081e02baf8eea89faa79addab9784c5b38e45408c8d7540bab249224c05dfc24ff50b31c5b4ba1a0e76da0aca68ad18ed57b8f57be0 WHIRLPOOL 5c935f42d4d7eb9f3436a7e8e0c7f263511fee9086c560bbc7c672f2a391c56971aae575e0d4cf7ba4436c8ea08052090e613b89ad47d74ed5e7fa1dfec60709 diff --git a/kde-misc/kcm-touchpad/kcm-touchpad-1.1.ebuild b/kde-misc/kcm-touchpad/kcm-touchpad-1.1.ebuild new file mode 100644 index 000000000000..9aa83ba2e05e --- /dev/null +++ b/kde-misc/kcm-touchpad/kcm-touchpad-1.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-misc/kcm-touchpad/kcm-touchpad-1.1.ebuild,v 1.1 2014/10/11 01:59:09 mrueg Exp $ + +EAPI=5 + +inherit kde4-base + +DESCRIPTION="KCM, daemon and applet for touchpad" +HOMEPAGE="https://projects.kde.org/projects/playground/utils/kcm-touchpad" +if [[ "${PV}" == *9999 ]]; then + KEYWORDS="" +else + SRC_URI="http://quickgit.kde.org/?p=kcm-touchpad.git&a=snapshot&t=v${PV} -> ${P}.tar.gz" + S=${WORKDIR}/${PN} + KEYWORDS="~amd64" +fi +LICENSE="GPL-2+" +SLOT="4" +IUSE="debug" + +DEPEND="x11-drivers/xf86-input-synaptics + x11-libs/libxcb +" +RDEPEND="${DEPEND}" diff --git a/kde-misc/kcm-touchpad/metadata.xml b/kde-misc/kcm-touchpad/metadata.xml new file mode 100644 index 000000000000..a23f444b67d6 --- /dev/null +++ b/kde-misc/kcm-touchpad/metadata.xml @@ -0,0 +1,5 @@ + + + + kde + diff --git a/licenses/Vidyo-EULA b/licenses/Vidyo-EULA new file mode 100644 index 000000000000..d049a24f2931 --- /dev/null +++ b/licenses/Vidyo-EULA @@ -0,0 +1,53 @@ + +Vidyo End User License Agreement including Limited Warranty, and Disclaimer of Warranty + +End User License Agreement + +VIDYO, Inc. is a Delaware corporation with a principal place of business 433 Hackensack Ave., 6th floor, Hackensack, NJ 07601 (Vidyo). + +IMPORTANT: PLEASE READ THIS END USER LICENSE AGREEMENT CAREFULLY. DOWNLOADING, INSTALLING OR USING VIDYO OR VIDYO-SUPPLIED SOFTWARE CONSTITUTES ACCEPTANCE OF THIS AGREEMENT. +THIS LICENSE OF THE SOFTWARE IS VALID ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS LICENSE AGREEMENT. YOUR ACCEPTANCE WILL BE BY INSTALLING OR DOWNLOADING THE SOFTWARE, OR USING THE EQUIPMENT THAT CONTAINS THIS SOFTWARE. YOU ARE BINDING YOURSELF AND THE BUSINESS ENTITY THAT YOU REPRESENT (COLLECTIVELY, "CUSTOMER") TO THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL OF THE TERMS OF THIS AGREEMENT, THEN VIDYO IS UNWILLING TO LICENSE THE SOFTWARE TO YOU AND (A) DO NOT DOWNLOAD, INSTALL OR USE THE SOFTWARE, (B) YOU MAY RETURN THE SOFTWARE FOR A FULL REFUND, OR, IF THE SOFTWARE IS SUPPLIED AS PART OF ANOTHER VIDYO PRODUCT, YOU MAY RETURN THE ENTIRE PRODUCT FOR A FULL REFUND. YOUR RIGHT TO RETURN AND REFUND EXPIRES 30 DAYS AFTER YOUR RECEIPT OF THE SOFTWARE FROM VIDYO OR AN AUTHORIZED VIDYO RESELLER, AND APPLIES ONLY IF YOU ARE THE ORIGINAL END USER PURCHASER. + +Vidyo's technology is covered by U.S Pat. Nos. 7,593,032 B3 and 7,643,560, as well as additional International patents or pending U.S. or International patent applications owned by Vidyo, Inc. + +Conditioned upon compliance with the terms and conditions of this Agreement, Vidyo grants to Customer a nonexclusive and nontransferable license to use for Customer's internal business purposes the Software and the Documentation for which Customer has paid the required license fees. "Documentation" means written information (whether contained in user or technical manuals, training materials, specifications or otherwise) specifically pertaining to the Software and made available by Vidyo with the Software in any manner (including on CD-Rom, or on-line). Customer's license to use the Software shall be limited to, and Customer shall not use the Software in excess of, a single Vidyo Product as set forth in the applicable Purchase Order which has been accepted by Vidyo and for which Vidyo has been paid the required license fee. Unless otherwise expressly provided in the Documentation, Customer shall use the Software solely as embedded in, for execution on, or (where the applicable documentation permits installation on non-Vidyo equipment) for communication with Vidyo equipment owned or leased by Customer and used for Customer's internal business purposes. No other uses of the Software are authorized by this Agreement and any unauthorized use of the Software shall be a violation of the terms of this license and Agreement. + +Note For evaluation or beta copies for which Vidyo does not charge a license fee, the above requirement to pay license fees does not apply. + +Use of Products. Products are not authorized for use in critical safety or other applications where any failure may reasonably be anticipated to result in bodily injury, loss of life, or catastrophic damage to property. If Customer uses or sells the Products for use in any such applications, Customer acknowledges that such sale or use is at Customer's sole risk. Customer will indemnify, defend and hold Vidyo and its suppliers harmless from and against any and all liabilities and costs arising out of or in connection with such sale or use. + +Limited Warranty + +Express Warranty : Vidyo warrants that for a period of one (1) year following shipment of the Product (i) the Product hardware shall be free from defects in materials and workmanship and (ii) the Licensed Software substantially conforms to its published specification. For instructions to make and process claims under this warranty, please contact the Vidyo authorized reseller from whom you acquired the Product + +Except for the foregoing, the Software is provided AS IS. This limited warranty extends only to the Customer who is the original licensee. Customer's sole and exclusive remedy and the entire liability of Vidyo and its suppliers and licensors under this limited warranty will be, at Vidyo's option, repair, replacement, or refund of the Product if reported (or, upon request, returned) to Vidyo or the party supplying the Product to Customer. In no event does Vidyo warrant that the Software is error free or that Customer will be able to operate the Software without problems or interruptions. In addition, due to the continual development of new techniques for intruding upon and attacking networks, Vidyo does not warrant that the Software or any equipment, system or network on which the Software is used will be free of vulnerability to intrusion or attack. + +Restrictions. This warranty does not apply if the Software, Product or any other equipment upon which the Software is authorized to be used (a) has been altered, except by Vidyo or its authorized representative, (b) has not been installed, operated, repaired, or maintained in accordance with instructions supplied by Vidyo, (c) has been subjected to abnormal physical or electrical stress, misuse, negligence, or accident; or (d) is licensed, for beta, evaluation, testing or demonstration purposes. This warranty also does not apply to (e) any temporary Soft-ware modules; (f) any Software for which Vidyo does not receive a license fee. + +DISCLAIMER OF WARRANTY + +EXCEPT AS SPECIFIED IN THIS WARRANTY, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS, AND WARRANTIES INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTY OR CONDITION OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, SATISFACTORY QUALITY, NON-INTERFERENCE, ACCURACY OF INFOR-MATIONAL CONTENT, OR ARISING FROM A COURSE OF DEALING, LAW, USAGE, OR TRADE PRACTICE, ARE HEREBY EXCLUDED TO THE EXTENT ALLOWED BY APPLICABLE LAW AND ARE EXPRESSLY DISCLAIMED BY VIDYO, ITS SUPPLIERS AND LICENSORS.TO THE EXTENT AN IMPLIED WARRANTY CANNOT BE EXCLUDED, SUCH WARRANTY IS LIMITED IN DURATION TO THE EXPRESS WARRANTY PERIOD. BECAUSE SOME STATES OR JURISDICTIONS DO NOT ALLOW LIMITATIONS ON HOW LONG AN IMPLIED WARRANTY LASTS, THE ABOVE LIMITATION MAY NOT APPLY. THIS WARRANTY GIVES CUSTOMER SPECIFIC LEGAL RIGHTS, AND CUSTOMER MAY ALSO HAVE OTHER RIGHTS WHICH VARY FROM JURISDICTION TO JURISDICTION. This disclaimer and exclusion shall apply even if the express warranty set forth above fails of its essential purpose. + +General Limitations. +This is a license, not a transfer of title, to the Software and Documentation, and Vidyo and/or its licensor(s), retain(s) ownership of all copies of the Software and Documentation and intellectual property rights of the Product and Software. Customer acknowledges that the Products, Software and Documentation contain intellectual property rights (such as international and united states trade secrets, copyrights, patents, and patents pending) of Vidyo, its suppliers or licensors including but not limited to the specific internal design and structure of individual programs and associated interface information. Accordingly, except as otherwise expressly provided under this Agreement, Customer shall have no right and Customer specifically agrees not to: (i) transfer, assign or sublicense its license rights to any other person or entity, or use the Software on unauthorized or secondhand Vidyo equipment, and Customer acknowledges that any attempted transfer, assignment, sublicense or use shall be void; (ii) make error corrections to or otherwise modify or adapt the Product, Software or create derivative works based upon the Software, or permit third parties to do the same;(iii) reverse engineer or decompile, decrypt, disassemble or otherwise reduce the Software to human-readable form, except to the extent otherwise expressly permitted under applicable law notwithstanding this restriction; (iv) use or permit the Software to be used to perform services for third parties, whether on a service bureau or time sharing basis or otherwise, without the express written authorization of Vidyo; or (v) disclose, provide, or otherwise make available trade secrets contained within the Products, Software and Document-ation in any form to any third party without the prior written consent of Vidyo. Customer shall implement reasonable security measures to protect such trade secrets. To the extent required by law, and at Customer's written request, Vidyo shall provide Customer with the interface information needed to achieve interoperability between the Software and another independently created program, on payment of Vidyo's applicable fee, if any. Customer shall observe strict obligations of confidentiality with respect to such information and shall use such information in compliance with any applicable terms and conditions upon which Vidyo makes such information available. + +Unless otherwise expressly specified all taxes and duties relating to this Agreement, the Products, or Software are excluded and shall be Customer's responsibility. + +Software, Upgrades and Additional Copies. + +For purposes of this Agreement, "Software" shall include (and the terms and conditions of this Agreement shall apply to) computer programs, including firmware, as provided to Customer by Vidyo or an authorized Vidyo reseller, and any upgrades, updates, bug fixes or modified versions thereto (collectively, "Upgrades") or backup copies of the Software licensed or provided to Customer by Vidyo or an authorized Vidyo reseller. NOTWITHSTANDING ANY OTHER PROVISION OF THIS AGREEMENT: (1) CUSTOMER HAS NO LICENSE OR RIGHT TO USE ANY ADDITIONAL COPIES OR UPGRADES UNLESS CUSTOMER, AT THE TIME OF ACQUIRING SUCH COPY OR UPGRADE, ALREADY HOLDS A VALID LICENSE TO THE ORIGINAL SOFTWARE AND HAS PAID THE APPLICABLE FEE FOR THE UPGRADE OR ADDITIONAL COPIES; (2) USE OF UPGRADES IS LIMITED TO VIDYO EQUIPMENT FOR WHICH CUSTOMER IS THE ORIGINAL END USER PURCHASER OR LESSEE OR WHO OTHERWISE HOLDS A VALID LICENSE TO USE THE SOFTWARE WHICH IS BEING UPGRADED; AND (3) THE MAKING AND USE OF ADDITIONAL COPIES IS LIMITED TO NECESSARY BACKUP PURPOSES ONLY. + +Proprietary Notices. Customer agrees to maintain and reproduce all copyright and other proprietary notices on all copies, in any form, of the Software in the same form and manner that such copyright and other proprietary notices are included on the Software. Except as expressly authorized in this Agreement, Customer shall not make any copies or duplicates of any Software without the prior written permission of Vidyo. + +Term and Termination. This Agreement and the license granted herein shall remain effective until terminated as specified in the related order or under this section. Customer may terminate this Agreement and the license any time by destroying all copies of Software and any Documentation. Customer's rights under this Agreement will terminate immediately without notice from Vidyo if Customer fails to comply with any provision of this Agreement. Upon termination, Customer shall destroy all copies of Software and Documentation in its possession or control. All confidentiality obligations of Customer and all limitations of liability and disclaimers and restrictions of warranty shall survive termination of this Agreement. In addition, the provisions of the sections titled " United States Government Restricted Rights." and "General Terms Applicable to the Limited Warranty Statement and End User License" shall survive termination of this Agreement. Any other clauses which by their terms are required for the enforcement of this Agreement shall survive termination. + +Export. Products, Software and Documentation, including technical data, may be subject to U.S. export control laws, including the U.S. Export Administration Act and its associated regulations, and may be subject to export or import regulations in other countries. Customer agrees to comply strictly with all such regulations and acknowledges that it has the responsibility to obtain licenses to export, re-export, or import Products, Software and Documentation. + +United States Government Restricted Rights. +The Software and Documentation are provided with Restricted Rights and qualify as `commercial items' consisting of `commercial computer software' and`computer software documentation' as such terms are defined and used at FAR (48 C.F.R.) 2.101 and FAR 12.212 . Use, duplication, or disclosure by the government is subject to restrictions as set forth in subparagraph (c)(f)(ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 or subparagraphs (c) (1) and (2) of the Commercial Computer Software-Restricted Rights at 48 C.F.R. S:52.227-19, as applicable. + +General Terms Applicable to the End User License, Limited Warrant Statement and Disclaimer of Liabilities. REGARDLESS WHETHER ANY REMEDY SET FORTH HEREIN FAILS OF ITS ESSENTIAL PURPOSE OR OTHERWISE, IN NO EVENT WILL VIDYO OR ITS SUPPLIERS BE LIABLE FOR ANY LOST REVENUE, PROFIT, OR LOST OR DAMAGED DATA, BUSINESS INTERRUPTION, LOSS OF CAPITAL, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL, OR PUNITIVE DAMAGES HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY OR WHETHER ARISING OUT OF THE USE OF OR INABILITYTO USE SOFTWARE OR OTHERWISE AND EVEN IF VIDYO OR ITS SUPPLIERS OR LICENSORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event shall Vidyo's or its suppliers' or licensors' liability to Customer, whether in contract, tort (including negligence), breach of warranty,or otherwise, exceed the price paid by Customer for the Software that gave rise to the claim or if the Software is part of another Vidyo Product, the price paid for such other Vidyo Product. BECAUSE SOME STATES OR JURISDICTIONS DO NOT ALLOW LIMITATION OR EXCLUSION OF CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE LIMITATION MAY NOT APPLY TO YOU. + +Customer agrees that the limitations of liability and disclaimers set forth herein will apply regardless of whether Customer has accepted the Software or any other product or service delivered by Vidyo. Customer acknowledges and agrees that Vidyo has set its prices to end users and to Vidyo's authorized resellers and entered into this Agreement in reliance upon the disclaimers of warranty and the limitations of liability set forth herein, that the same reflect an allocation of risk between the parties (including the risk that a contract remedy may fail of its essential purpose and cause consequential loss), and that the same form an essential basis of the bargain between the parties. The validity, construction and performance of this Agreement shall be governed by and construed in accordance with the laws of the State of New Jersey, United States, without reference to or application of choice of law rules or principles. The exclusive venue for any dispute arising under this Agreement shall be within the competent courts in the State of New Jersey, USA. The United Nations Convention on the International Sale of Goods shall not apply. If any portion hereof is found to be void or unenforceable, the remaining provisions of the Agreement shall remain in full force and effect. Except as expressly provided herein, this Agreement constitutes the entire agreement between the parties with respect to the terms herein and Documentation and supersedes any conflicting or additional terms contained in any purchase order or elsewhere, all of which terms are excluded. This Agreement has been written in the English language, and the parties agree that the English version will govern. + +Infringement Indemnification.(a) Vidyo will defend or settle, at its expense, any action brought against Customer based upon the claim that the Software or Product, if used within the scope of the License granted under this Agreement, directly infringe a registered United States, European Union or Commonwealth patent or copyright; provided, however, that: (i) Customer shall notify Vidyo promptly in writing of any such claim; (ii) Customer shall not enter into any settlement or compromise any claim without Vidyo's prior written consent; (iii) Vidyo shall have sole control of any such action and settlement negotiations; and (iv) Customer shall provide Vidyo with information and assistance, at Vidyo's request, necessary to settle or defend such claim. Vidyo agrees to pay all damages and costs finally awarded against Customer attributable to such claim. The foregoing states the sole liability of Vidyo and the exclusive remedy of Customer for any infringement of intellectual property rights by the Product or any other items provided by Vidyo hereunder.(b) If the Product or Software becomes, or in the opinion of Vidyo may become, the subject of a claim of infringement of any third party right, Vidyo may, at its option and in its discretion: (i) procure for Customer the right to use the Product free of any liability; (ii) replace or modify the Product to make it non-infringing; or (iii) repurchase the applicable licenses or Products. (c) Customer will defend or settle, at its expense, any action brought against Vidyo based upon the claim that any modifications to the Product or combination of the Product with products infringes or violates any third party right; provided, however, that: (i) Vidyo shall notify Customer promptly in writing of any such claim; (ii) Vidyo shall not enter into any settlement or compromise any such claim without Customer's prior written consent; iii) Customer shall have sole control of any such action and settlement negotiations; and (iv) Vidyo shall provide Customer with information and assistance, at Customer's request and expense, necessary to settle or defend such claim. Customer agrees to pay all damages and costs finally awarded against Vidyo attributable to such claim.(d) Notwithstanding Subsection (a) above, Vidyo assumes no liability hereunder for, and shall have no obligation to defend Customer or to pay costs, damages or attorney's fees for, any claim based upon any modifications to the Product not provided by Vidyo or combination of the Product with other products. diff --git a/mail-client/geary/Manifest b/mail-client/geary/Manifest index bf7bd69a4853..a403c8f98d13 100644 --- a/mail-client/geary/Manifest +++ b/mail-client/geary/Manifest @@ -1,3 +1,4 @@ DIST geary-0.6.3.tar.xz 791248 SHA256 2fa2612bf3821f8ff74664463a430729776f6f9bf31795156be2ca7959b52eca SHA512 4a4f26b3e88032191f2b683d8ed0d48401b278c4d1cc69c09731d9ca878450847a35c0653a8b9907ce81b989e713d1a41a40b7b6193f6e84a6e6f4eb4d5053f4 WHIRLPOOL 83e4a648a792639a10fde6eccf78db2fb582ebea4f5f0806091e4cc9f8550387e976e46b383b33819b32a25ec665116cfecfa3417acb72950f1eba3ffa48d403 DIST geary-0.7.2.tar.xz 811104 SHA256 a121c808d41a735b1d36c04bca742014a35baec423ebcfb97e43fd7bd9767b30 SHA512 151f20f064d88bc9c29ecef81c7c5a4c373929ea245b28108e152a91c729c1cfcf78794db443ef08bc594d2980f427dce16ddf8a630c8a44ce4b6f7b456f4c57 WHIRLPOOL 2e24c06d26ddf45ab94652800b6c5ab77f1243fd942e973deb51a6cc78a572d519fd92502d4c6f3f4e273465787205539d92966d37362882fef660eb0199acb2 DIST geary-0.8.0.tar.xz 820800 SHA256 4d4c168180d1c5193ba2784902f75b90b9c13d674204da4014e70d5bee14bd48 SHA512 52b41504a45057387d8b35f660781b861a2e8a899022531408ccc6cbc651d11055014447e56bdee092f4c2eeefc60cdd90cdbd828218666f43126a817909a985 WHIRLPOOL 65530823b8e3aabd002959172971a8f305d818cce7bd0d47b3ee77496de75e9ebd1adb321ab995229ea91cd317b294744414df635b6a3bdf63b91d569265d699 +DIST geary-0.8.1.tar.xz 827708 SHA256 9049b4b056ff89d2a2f6fa5438a7f2fcd623f6264b8b0d9568495752604e9e6f SHA512 7d099d10edfa3f20fe663126d1f2ce4a5afc3ace65ca4855f83c977195d7978be5bcc16ba6e6eaed50191df955308daf508fcd20663bfc63c8174089614f3de2 WHIRLPOOL 516a9c172f3fe18a5146e7e177f5f2aa080063bbfb05a5d7906913618d08d385ad5031b29779e678615be1837607425fbec64e5aa0add10ebb14d01218489191 diff --git a/mail-client/geary/geary-0.8.1.ebuild b/mail-client/geary/geary-0.8.1.ebuild new file mode 100644 index 000000000000..2373f09a71de --- /dev/null +++ b/mail-client/geary/geary-0.8.1.ebuild @@ -0,0 +1,101 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/mail-client/geary/geary-0.8.1.ebuild,v 1.1 2014/10/10 18:45:12 hasufell Exp $ + +EAPI=5 + +VALA_MIN_API_VERSION=0.22 + +inherit eutils fdo-mime gnome2-utils vala cmake-utils + +MY_P=${P/_pre/pr} +DESCRIPTION="A lightweight, easy-to-use, feature-rich email client" +HOMEPAGE="http://www.yorba.org/projects/geary/" +SRC_URI="ftp://ftp.gnome.org/pub/GNOME/sources/geary/${PV:0:3}/${MY_P}.tar.xz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nls" + +DEPEND=" + >=app-crypt/gcr-3.10.1[gtk,introspection,vala] + app-crypt/libsecret + dev-db/sqlite:3 + dev-libs/glib:2 + >=dev-libs/libgee-0.8.5:0.8 + dev-libs/libxml2:2 + dev-libs/gmime:2.6 + media-libs/libcanberra + >=net-libs/webkit-gtk-1.10.0:3[introspection] + >=x11-libs/gtk+-3.10.0:3[introspection] + x11-libs/libnotify" +RDEPEND="${DEPEND} + gnome-base/gsettings-desktop-schemas + nls? ( virtual/libintl )" +DEPEND="${DEPEND} + app-text/gnome-doc-utils + dev-util/desktop-file-utils + nls? ( sys-devel/gettext ) + $(vala_depend) + virtual/pkgconfig" + +DOCS=( AUTHORS MAINTAINERS README NEWS THANKS ) + +S=${WORKDIR}/${MY_P} + +src_prepare() { + epatch "${FILESDIR}"/${PN}-0.7.2-cflags.patch \ + "${FILESDIR}"/${PN}-0.5.3-vapigen.patch \ + "${FILESDIR}"/${PN}-0.6.0-desktopfile.patch + + local i + if use nls ; then + if [[ -n "${LINGUAS+x}" ]] ; then + for i in $(cd po ; echo *.po) ; do + if ! has ${i%.po} ${LINGUAS} ; then + sed -i -e "/^${i%.po}$/d" po/LINGUAS || die + fi + done + fi + else + sed -i -e 's#add_subdirectory(po)##' CMakeLists.txt || die + fi + + cmake-utils_src_prepare + vala_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DDESKTOP_UPDATE=OFF + -DGSETTINGS_COMPILE=OFF + -DICON_UPDATE=OFF + -DVALA_EXECUTABLE="${VALAC}" + -DWITH_UNITY=OFF + -DDESKTOP_VALIDATE=OFF + ) + + cmake-utils_src_configure +} + +pkg_preinst() { + gnome2_icon_savelist + gnome2_schemas_savelist +} + +pkg_postinst() { + elog "For libnotify sounds you will need" + elog "\"alsa\" or \"pulseaudio\" useflag of media-libs/libcanberra" + elog "enabled." + + fdo-mime_desktop_database_update + gnome2_icon_cache_update + gnome2_schemas_update +} + +pkg_postrm() { + fdo-mime_desktop_database_update + gnome2_icon_cache_update + gnome2_schemas_update +} diff --git a/media-gfx/hugin/Manifest b/media-gfx/hugin/Manifest index 6945fe7d5c7d..e4345f3ce9a6 100644 --- a/media-gfx/hugin/Manifest +++ b/media-gfx/hugin/Manifest @@ -1,3 +1,3 @@ DIST hugin-2012.0.0.tar.bz2 11658665 SHA256 63dfd88ac90d3af4b958111db951bb7fbf2c66ad6b0246e6305403eb5de971b3 SHA512 acf97d383091eca300074a8e207ec5500a8b96a5116708a6ff23fb8f5359a77016867ee2ae21a4e40c4d07d056b5c27844c03c275ec29c0b604ecb31b73ee0a8 WHIRLPOOL d058639202aef1f6beb475bc8c170ac4269bf5050bfcbc48678ddde67188e12eb29c216b6ce8f79571c91ff43e271dac706bd4f432d3f640d549f87b371caa43 DIST hugin-2013.0.0.tar.bz2 11247583 SHA256 484e1ed58fa6fe4bae1f423967101549345bcca2653b992afbc0ed9ec0dbebd5 SHA512 dea1682c16991441278a881e5e0916ffdbe8e0012f0dcf45875ee97fe7dc698d4d98037916e63c9a651557adc45c89e4e350ad976fec020562bc17a31f608a86 WHIRLPOOL c3d8e175ff23c8761815406039a8027da327925f07a18b00bde4d457228a2562f30f5df3fb5dff17f8003f985d7b51ec39d557a064c7e228b09ff73473c41e6a -DIST hugin-2014.0.0_rc4.tar.bz2 10974604 SHA256 ae3c7b5d18603abd851a3bcccdb2ae46fe2ad0e09b120ffd7db9763f36cf47d2 SHA512 ce05e56b30f0440cc3167dde46ac08bbd460268b6b47293c268b9dbf5c68a6a0fab7e2625c2989864f0e10aa2eb8d625e5ddbd5f78ed5e9a16cd4d6d55be66d3 WHIRLPOOL c8396c2cbbc6471280cdf53e031933b1acba2b930f604fda2e7ff79b6333b5860a7b7346266dcf6ddaa3b4c54b831fa7ecdc8cc5eb568d3937de4bd1cf7624ba +DIST hugin-2014.0.0.tar.bz2 10974274 SHA256 f098aa0ede44010d3bb2bb38693177533fd776c45063a338c4c483d7e471ec29 SHA512 f4dd7a59f96d4574d420691d221265309d1ff18b7df04df2c2f0946f3d669e78823e2a53f038ac7bddaaf2037e21c45bf54f19d2a90ce9d5d95a836331e34ca5 WHIRLPOOL e8915454fcc5d54037289b0e91b8c441288706874891b72541414cad83556f6587d15d18be38405917da6c69b590121bc74a2ffa130bb9f1abea223c6fb1375d diff --git a/media-gfx/hugin/files/hugin-2014.0.0-lensfun-0.3.0.patch b/media-gfx/hugin/files/hugin-2014.0.0-lensfun-0.3.0.patch new file mode 100644 index 000000000000..f60e68663484 --- /dev/null +++ b/media-gfx/hugin/files/hugin-2014.0.0-lensfun-0.3.0.patch @@ -0,0 +1,15 @@ +https://bugs.gentoo.org/show_bug.cgi?id=524700 + +diff -Naur hugin-2014.0.0.orig/src/hugin_base/lensdb/LensDB.cpp hugin-2014.0.0/src/hugin_base/lensdb/LensDB.cpp +--- hugin-2014.0.0.orig/src/hugin_base/lensdb/LensDB.cpp 2014-04-27 08:26:57.000000000 +0200 ++++ hugin-2014.0.0/src/hugin_base/lensdb/LensDB.cpp 2014-10-08 10:44:29.445076647 +0200 +@@ -620,7 +620,9 @@ + break; + case LF_DIST_MODEL_NONE: + case LF_DIST_MODEL_POLY5: ++#ifdef LF_DIST_MODEL_FOV1 + case LF_DIST_MODEL_FOV1: ++#endif + default: + return false; + break; diff --git a/media-gfx/hugin/hugin-2014.0.0_rc4.ebuild b/media-gfx/hugin/hugin-2014.0.0.ebuild similarity index 95% rename from media-gfx/hugin/hugin-2014.0.0_rc4.ebuild rename to media-gfx/hugin/hugin-2014.0.0.ebuild index 228cffd31e5b..5d4e69616a6e 100644 --- a/media-gfx/hugin/hugin-2014.0.0_rc4.ebuild +++ b/media-gfx/hugin/hugin-2014.0.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/hugin/hugin-2014.0.0_rc4.ebuild,v 1.3 2014/09/27 11:33:09 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/hugin/hugin-2014.0.0.ebuild,v 1.1 2014/10/10 20:12:04 maekke Exp $ EAPI=5 @@ -51,6 +51,8 @@ REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" S=${WORKDIR}/${PN}-$(get_version_component_range 1-3) +PATCHES=( "${FILESDIR}"/${P}-lensfun-0.3.0.patch ) + pkg_setup() { DOCS="authors.txt README TODO" mycmakeargs=( diff --git a/media-gfx/xli/xli-1.17.0-r5.ebuild b/media-gfx/xli/xli-1.17.0-r5.ebuild index 9fdaa2a0d99f..2af08cc82148 100644 --- a/media-gfx/xli/xli-1.17.0-r5.ebuild +++ b/media-gfx/xli/xli-1.17.0-r5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/xli/xli-1.17.0-r5.ebuild,v 1.5 2014/10/05 11:50:47 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/xli/xli-1.17.0-r5.ebuild,v 1.6 2014/10/10 10:52:48 ago Exp $ EAPI="5" @@ -13,7 +13,7 @@ SRC_URI="http://pantransit.reptiles.org/prog/xli/xli-${SNAPSHOT}.tar.gz" LICENSE="HPND" SLOT="0" -KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" RDEPEND="app-arch/bzip2 >=media-libs/libpng-1.0.5 diff --git a/media-libs/glm/glm-0.9.5.1.ebuild b/media-libs/glm/glm-0.9.5.1.ebuild index 809133355dfb..f4536f9090ef 100644 --- a/media-libs/glm/glm-0.9.5.1.ebuild +++ b/media-libs/glm/glm-0.9.5.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/glm/glm-0.9.5.1.ebuild,v 1.1 2014/01/24 18:26:09 mattst88 Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/glm/glm-0.9.5.1.ebuild,v 1.2 2014/10/10 20:20:11 maekke Exp $ EAPI=5 @@ -12,7 +12,7 @@ S="${WORKDIR}/${PN}" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~x86" IUSE="" RDEPEND="" diff --git a/media-libs/libcdr/libcdr-0.1.0.ebuild b/media-libs/libcdr/libcdr-0.1.0.ebuild index 76c6680671ee..1d60a626d1d7 100644 --- a/media-libs/libcdr/libcdr-0.1.0.ebuild +++ b/media-libs/libcdr/libcdr-0.1.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libcdr/libcdr-0.1.0.ebuild,v 1.1 2014/09/14 08:48:56 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libcdr/libcdr-0.1.0.ebuild,v 1.2 2014/10/10 20:23:15 maekke Exp $ EAPI=5 @@ -14,7 +14,7 @@ HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libcdr" LICENSE="MPL-2.0" SLOT="0" -[[ ${PV} == 9999 ]] || KEYWORDS="~amd64 ~x86" +[[ ${PV} == 9999 ]] || KEYWORDS="~amd64 ~arm ~x86" IUSE="doc static-libs" RDEPEND=" diff --git a/media-libs/libfreehand/libfreehand-0.1.0.ebuild b/media-libs/libfreehand/libfreehand-0.1.0.ebuild index 2598c3792ca7..ae85daa9964d 100644 --- a/media-libs/libfreehand/libfreehand-0.1.0.ebuild +++ b/media-libs/libfreehand/libfreehand-0.1.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libfreehand/libfreehand-0.1.0.ebuild,v 1.1 2014/09/14 09:04:00 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libfreehand/libfreehand-0.1.0.ebuild,v 1.2 2014/10/10 20:23:08 maekke Exp $ EAPI=5 @@ -15,7 +15,7 @@ HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libfreehand" LICENSE="MPL-2.0" SLOT="0" [[ ${PV} == 9999 ]] || \ -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~x86" IUSE="doc static-libs" RDEPEND=" diff --git a/media-libs/libvisio/libvisio-0.1.0.ebuild b/media-libs/libvisio/libvisio-0.1.0.ebuild index 7b9a085bfc0e..8b94a90c8beb 100644 --- a/media-libs/libvisio/libvisio-0.1.0.ebuild +++ b/media-libs/libvisio/libvisio-0.1.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisio/libvisio-0.1.0.ebuild,v 1.1 2014/09/14 09:21:44 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisio/libvisio-0.1.0.ebuild,v 1.2 2014/10/10 20:23:36 maekke Exp $ EAPI=5 @@ -15,7 +15,7 @@ HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libvisio" LICENSE="|| ( GPL-2+ LGPL-2.1 MPL-1.1 )" SLOT="0" [[ ${PV} == 9999 ]] || \ -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~x86" IUSE="doc static-libs" RDEPEND=" diff --git a/media-libs/plib/Manifest b/media-libs/plib/Manifest index 44c0dd469832..47b51fac83cf 100644 --- a/media-libs/plib/Manifest +++ b/media-libs/plib/Manifest @@ -1 +1 @@ -DIST plib-1.8.5.tar.gz 779133 RMD160 55019bf3758ec2542804d8e3994f4bed5a188e60 SHA1 c2cf7e3e1e58f7b63dae4bb21e4fa82c3e4d4cfc SHA256 485b22bf6fdc0da067e34ead5e26f002b76326f6371e2ae006415dea6a380a32 +DIST plib-1.8.5.tar.gz 779133 SHA256 485b22bf6fdc0da067e34ead5e26f002b76326f6371e2ae006415dea6a380a32 SHA512 17154cc77243fe576c2bcbcb0285b98aef1a0634658f5473e95fe0ac8fa3ed477dbe5620e44ccf0b7cc616f812af0cd44d6fcbba0c563180d3b61c9d6f158e1d WHIRLPOOL 98ccfc78eff5e27539a4d046dbb761aaed6a53410026b1ae19cb3681a691f644000ad775e0b0211e45b582a8bb06c9d3cfc33849a6e02309b840d2db1f736b32 diff --git a/media-libs/plib/plib-1.8.5.ebuild b/media-libs/plib/plib-1.8.5.ebuild index 19068f744579..5d65416182c8 100644 --- a/media-libs/plib/plib-1.8.5.ebuild +++ b/media-libs/plib/plib-1.8.5.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/plib/plib-1.8.5.ebuild,v 1.8 2010/11/11 04:33:41 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/plib/plib-1.8.5.ebuild,v 1.9 2014/10/10 22:12:34 jer Exp $ -inherit flag-o-matic eutils +EAPI=5 +inherit flag-o-matic DESCRIPTION="multimedia library used by many games" HOMEPAGE="http://plib.sourceforge.net/" @@ -11,18 +12,17 @@ SRC_URI="http://plib.sourceforge.net/dist/${P}.tar.gz" LICENSE="LGPL-2" SLOT="0" KEYWORDS="alpha amd64 hppa ppc sparc x86" -IUSE="" DEPEND="virtual/opengl" +RDEPEND="${DEPEND}" -src_unpack() { - unpack ${A} +src_prepare() { # Since plib only provides static libraries, force # building as PIC or plib is useless to amd64/etc... append-flags -fPIC } src_install() { - emake DESTDIR="${D}" install || die + default dodoc AUTHORS ChangeLog KNOWN_BUGS NOTICE README* TODO* } diff --git a/media-radio/flrig/flrig-1.3.16.ebuild b/media-radio/flrig/flrig-1.3.16.ebuild index 1e880f18f53d..6e8b3b8e863d 100644 --- a/media-radio/flrig/flrig-1.3.16.ebuild +++ b/media-radio/flrig/flrig-1.3.16.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-radio/flrig/flrig-1.3.16.ebuild,v 1.2 2014/10/09 15:18:15 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-radio/flrig/flrig-1.3.16.ebuild,v 1.3 2014/10/10 11:07:34 ago Exp $ EAPI=5 @@ -10,7 +10,7 @@ SRC_URI="http://www.w1hkj.com/downloads/flrig/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="nls" RDEPEND="x11-libs/libX11 diff --git a/media-radio/qsstv/qsstv-8.2.7.ebuild b/media-radio/qsstv/qsstv-8.2.7.ebuild index 0f95f61102da..27ca54de7cc1 100644 --- a/media-radio/qsstv/qsstv-8.2.7.ebuild +++ b/media-radio/qsstv/qsstv-8.2.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-radio/qsstv/qsstv-8.2.7.ebuild,v 1.3 2014/10/09 15:18:51 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-radio/qsstv/qsstv-8.2.7.ebuild,v 1.4 2014/10/10 11:08:09 ago Exp $ EAPI=5 @@ -14,7 +14,7 @@ SRC_URI="http://users.telenet.be/on4qz/qsstv/downloads/${MY_P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="" DEPEND="dev-qt/qtcore:4[qt3support] diff --git a/media-radio/tlf/tlf-1.2.1.ebuild b/media-radio/tlf/tlf-1.2.1.ebuild index c26c69d8a435..370b65ec6bd3 100644 --- a/media-radio/tlf/tlf-1.2.1.ebuild +++ b/media-radio/tlf/tlf-1.2.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-radio/tlf/tlf-1.2.1.ebuild,v 1.2 2014/10/09 15:18:40 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-radio/tlf/tlf-1.2.1.ebuild,v 1.3 2014/10/10 11:08:44 ago Exp $ EAPI="5" @@ -12,7 +12,7 @@ SRC_URI="http://www.hs-mittweida.de/tb/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="" RDEPEND="sys-libs/ncurses diff --git a/media-radio/unixcw/Manifest b/media-radio/unixcw/Manifest index 9be4633c62cb..890c2e6ab626 100644 --- a/media-radio/unixcw/Manifest +++ b/media-radio/unixcw/Manifest @@ -1,7 +1,2 @@ -DIST unixcw-2.3-qt3to4.patch.gz 5784 SHA256 db4dd65951e39179abf6b2fdc69c9bdd166902cf402f768f117bde1e9872b263 SHA512 ec478c1bbfe471fd18c0113fd218d0d3bdcdb857a89f7571be6ceb2d2e371fce04316925ebfdf8cdfc6c9b16c890d2500edf0626c83dbc172956745e8877ae31 WHIRLPOOL 94c248396b5cfd6ba90f86e39c24cbc2ed97b9dab04c9ebc2e0aa67249747815fe8c0ec173c7b9acddae1545fc8dd2af6d67922f53b8846dc777a74560eb3e9f -DIST unixcw-2.3.tgz 202048 SHA256 124c60c6c7ef596a7c96c94a0e76204c7d986373564121155f0f206ad71f30a0 SHA512 9c8b037b7849e6637385cd2b4e074252cdad9140a79d1e2f7576c4da5883ef551fcfe9fdace79d1b9fbf7c453bf500523c7aaa9e0c6a38e85fd33fb2a6797435 WHIRLPOOL 87b6a3e22e1332be915567c3f74a843e9ac674fda64ff04f86d68b38e3879b78e37138ba9aea94ad1b06941fd5504c0b7e3bd702574091add137752e4a14e50b -DIST unixcw-3.0.2.tar.gz 240132 SHA256 1578b0e37c51ebf2668ea4683ed7edf0e114e7dcc2a6296349ca705bc6ec2602 SHA512 5141ab2e89563bba8c8d982db81c0b7870db0ebb648b6c3a9e7adaba31d840f8d17cf124c0cbeb977e95ae5bf14f6a0bd35b1be84e6fc5f74a67ba65fd2920cb WHIRLPOOL 401bccaa71ba197f0fbf882b99148347c0a257df768fdb3b21453ae6975b6c1fe82dfa67dc9795d3e4446bdd99b904d07dc8e819ee449927c75269596e6b7b38 -DIST unixcw-3.1.1.tar.gz 587093 SHA256 25c355fa437589d22d4f101e58ba968c8de41ef34d99b17b5ad984a442adf60c SHA512 86be7b7c242a486c69279ba853a35fa0d2776530f87fc7a95c59bcfd06c4d04d548bd4d076dcc0c8d79b82b087dd8a7e3fc49b9bbcafd836ce117f9f9802a037 WHIRLPOOL 7817f98db7c9c905c9756d4070fae632ca29aa0ba62726946ea0e82053064493268cbf5e0636a8426a75c613dd09688866d926cbe305bb56dad43d59960a318c -DIST unixcw-3.2.0.tar.gz 623406 SHA256 c1ba9c90741e82c311223dc05f2a54e3dc23e0661d73097cc9b9a7fbd7a50023 SHA512 39a09eca2c6f9f8721048a849f32a9c89d9311267492be85b6e914a221c4be117cf61f80a5c5fbdc296efa7d2525f4633c09be91be926dcc1fca71b46e0ec1d9 WHIRLPOOL 5744902b99977fc60912639779ef66bbdd52cb6787d2d82abeead47a46e248506172f4cfbf05c7c9a9622eee8f949f9cef0bf8fa0c276353e1e8f74e195dd6a0 DIST unixcw-3.3.0.tar.gz 676649 SHA256 5acaeef7c1c8803161820458f0dd21cf1f401ff910f7641685951224ffe53fb7 SHA512 eb2085818d3a6735ebaa33477366e556685f8796dc0baf2123cfdecbc4c9548a06993e83ed70f54da498fad593e7b2641ae775e0d3561d7012a039c1442e6a2e WHIRLPOOL f23688051c211b6cc7d46f0e3bafd6f1437d6523d2afa0590fd04240e845b0059b4efb47dbb2f79e4ec3fe0fed575f3ef2b6fa16c8415027070cd1e4c0c60132 DIST unixcw-3.3.1.tar.gz 677296 SHA256 ec905e3f5ef84e4d28ce1b3524c9128c5c61db9967ba213572a3be043a9928db SHA512 11dd17af3bf88a5e84aad137ed8cb130fc61ee466129f431d8d810e48d7d10e2f2bc90cec4e7a9ab6db35bd796a6f8a3b698592bfac33b9bb07862116ed3eac0 WHIRLPOOL 7346e3b83f42298db57921bdddcfe8f4067b3dfa2c6f6ad5ca41aa0fc51f4232176251b6d00b3fc25f4579c2b2cca8f83b9ba484f6ca68cedc4886180af00761 diff --git a/media-radio/unixcw/unixcw-2.3-r6.ebuild b/media-radio/unixcw/unixcw-2.3-r6.ebuild deleted file mode 100644 index 87edd1c491e5..000000000000 --- a/media-radio/unixcw/unixcw-2.3-r6.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-radio/unixcw/unixcw-2.3-r6.ebuild,v 1.7 2014/08/10 21:04:02 slyfox Exp $ - -EAPI=2 - -inherit autotools eutils multilib - -DESCRIPTION="A package of programs that fit together to form a morse code tutor program" -HOMEPAGE="http://radio.linux.org.au/?sectpat=morse" -SRC_URI="ftp://metalab.unc.edu/pub/Linux/apps/ham/morse/${P}.tgz - qt4? ( mirror://gentoo/unixcw-2.3-qt3to4.patch.gz )" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~ppc ~x86" -IUSE="ncurses suid qt4" - -RDEPEND="ncurses? ( sys-libs/ncurses ) - qt4? ( dev-qt/qtgui:4[qt3support] )" -DEPEND="${RDEPEND} - virtual/pkgconfig - !<=app-misc/cw-1.0.16-r1" - -src_prepare() { - epatch "${FILESDIR}"/${P}-destdir.patch \ - "${FILESDIR}"/${P}-config.patch \ - "${FILESDIR}"/${P}-parallel-make.patch \ - "${FILESDIR}"/${P}--as-needed.patch \ - "${FILESDIR}"/${P}-ldflags.patch \ - "${FILESDIR}"/${P}-fPIC.patch \ - "${FILESDIR}"/${P}-audio.patch \ - "${FILESDIR}"/${P}-gcc43.patch - if use qt4 ; then - epatch "${DISTDIR}"/${P}-qt3to4.patch.gz - fi - eautoreconf -} - -src_configure() { - econf --libdir=/usr/$(get_libdir) \ - $(use_enable ncurses) \ - $(use_enable qt4) -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc README || die "dodoc failed" - if ! use suid ; then - fperms 711 /usr/bin/cw || die "fperms failed" - if use ncurses ; then - fperms 711 /usr/bin/cwcp || die "fperms failed" - fi - if use qt4 ; then - fperms 711 /usr/bin/xcwcp || die "fperms failed" - fi - fi -} - -pkg_postinst() { - if use suid ; then - ewarn "You have choosen to install 'cw', 'cwcp' and 'xcwcp' setuid" - ewarn "by setting USE=suid." - ewarn "Be aware that this is a security risk and not recommended." - ewarn "" - ewarn "These files do only need root access if you want to use the" - ewarn "PC speaker for morse sidetone output. You can alternativly" - ewarn "drop USE=suid and use sudo." - else - elog "Be aware that 'cw', 'cwcp' and 'xcwcp' needs root access if" - elog "you want to use the PC speaker for morse sidetone output." - elog "You can call the programs via sudo for that (see 'man sudo')." - fi -} diff --git a/media-radio/unixcw/unixcw-3.0.2.ebuild b/media-radio/unixcw/unixcw-3.0.2.ebuild deleted file mode 100644 index 651d14719efe..000000000000 --- a/media-radio/unixcw/unixcw-3.0.2.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-radio/unixcw/unixcw-3.0.2.ebuild,v 1.3 2014/08/10 21:04:02 slyfox Exp $ - -EAPI=4 - -inherit autotools eutils flag-o-matic multilib - -DESCRIPTION="A package of programs that fit together to form a morse code tutor program" -HOMEPAGE="http://unixcw.sourceforge.net" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~ppc ~x86" -IUSE="ncurses suid qt4" - -RDEPEND="ncurses? ( sys-libs/ncurses ) - qt4? ( dev-qt/qtgui:4[qt3support] )" -DEPEND="${RDEPEND} - virtual/pkgconfig - !<=app-misc/cw-1.0.16-r1" - -src_prepare() { - append-cflags -std=gnu99 - epatch \ - "${FILESDIR}"/${P}-config.patch \ - "${FILESDIR}"/${P}-destdir.patch \ - "${FILESDIR}"/${P}-parallel-make.patch \ - "${FILESDIR}"/${P}-qt4.patch - eautoreconf -} - -src_configure() { - econf --libdir=/usr/$(get_libdir) \ - $(use_enable ncurses) \ - $(use_enable qt4) -} - -src_install() { - emake DESTDIR="${D}" install - dodoc README - if ! use suid ; then - fperms 711 /usr/bin/cw - if use ncurses ; then - fperms 711 /usr/bin/cwcp - fi - if use qt4 ; then - fperms 711 /usr/bin/xcwcp - fi - fi -} - -pkg_postinst() { - if use suid ; then - ewarn "You have choosen to install 'cw', 'cwcp' and 'xcwcp' setuid" - ewarn "by setting USE=suid." - ewarn "Be aware that this is a security risk and not recommended." - ewarn "" - ewarn "These files do only need root access if you want to use the" - ewarn "PC speaker for morse sidetone output. You can alternativly" - ewarn "drop USE=suid and use sudo." - else - elog "Be aware that 'cw', 'cwcp' and 'xcwcp' needs root access if" - elog "you want to use the PC speaker for morse sidetone output." - elog "You can call the programs via sudo for that (see 'man sudo')." - fi -} diff --git a/media-radio/unixcw/unixcw-3.1.1.ebuild b/media-radio/unixcw/unixcw-3.1.1.ebuild deleted file mode 100644 index 3c04c0a101da..000000000000 --- a/media-radio/unixcw/unixcw-3.1.1.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-radio/unixcw/unixcw-3.1.1.ebuild,v 1.3 2014/08/10 21:04:02 slyfox Exp $ - -EAPI=4 - -inherit autotools eutils flag-o-matic multilib - -DESCRIPTION="A package of programs that fit together to form a morse code tutor program" -HOMEPAGE="http://unixcw.sourceforge.net" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~ppc ~x86" -IUSE="alsa ncurses pulseaudio suid qt4" - -RDEPEND="ncurses? ( sys-libs/ncurses ) - qt4? ( dev-qt/qtgui:4[qt3support] ) - alsa? ( media-libs/alsa-lib ) - pulseaudio? ( media-sound/pulseaudio )" -DEPEND="${RDEPEND} - virtual/pkgconfig - sys-devel/libtool - !<=app-misc/cw-1.0.16-r1" - -src_prepare() { - append-cflags -std=gnu99 - epatch \ - "${FILESDIR}"/${P}-config.patch - # add path to qt4 libs - sed -i -e "s#LDADD = -L#LDADD = -L/usr/$(get_libdir)/qt4 -L#g" \ - src/xcwcp/Makefile.am - eautoreconf -} - -src_configure() { - econf --libdir=/usr/$(get_libdir) \ - $(use_enable pulseaudio ) \ - $(use_enable alsa ) \ - $(use_enable ncurses cwcp ) \ - $(use_enable qt4 xcwcp ) -} - -src_install() { - emake DESTDIR="${D}" install - dodoc ChangeLog NEWS README - if ! use suid ; then - fperms 711 /usr/bin/cw - if use ncurses ; then - fperms 711 /usr/bin/cwcp - fi - if use qt4 ; then - fperms 711 /usr/bin/xcwcp - fi - fi -} - -pkg_postinst() { - if use suid ; then - ewarn "You have choosen to install 'cw', 'cwcp' and 'xcwcp' setuid" - ewarn "by setting USE=suid." - ewarn "Be aware that this is a security risk and not recommended." - ewarn "" - ewarn "These files do only need root access if you want to use the" - ewarn "PC speaker for morse sidetone output. You can alternativly" - ewarn "drop USE=suid and use sudo." - else - elog "Be aware that 'cw', 'cwcp' and 'xcwcp' needs root access if" - elog "you want to use the PC speaker for morse sidetone output." - elog "You can call the programs via sudo for that (see 'man sudo')." - fi -} diff --git a/media-radio/unixcw/unixcw-3.2.0.ebuild b/media-radio/unixcw/unixcw-3.2.0.ebuild deleted file mode 100644 index 66ae67216f61..000000000000 --- a/media-radio/unixcw/unixcw-3.2.0.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-radio/unixcw/unixcw-3.2.0.ebuild,v 1.5 2014/08/10 21:04:02 slyfox Exp $ - -EAPI=4 - -inherit autotools eutils flag-o-matic multilib - -DESCRIPTION="A package of programs that fit together to form a morse code tutor program" -HOMEPAGE="http://unixcw.sourceforge.net" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~ppc ~x86" -IUSE="alsa ncurses pulseaudio suid qt4" - -RDEPEND="ncurses? ( sys-libs/ncurses ) - qt4? ( dev-qt/qtgui:4[qt3support] ) - alsa? ( media-libs/alsa-lib ) - pulseaudio? ( media-sound/pulseaudio )" -DEPEND="${RDEPEND} - virtual/pkgconfig - sys-devel/libtool - !<=app-misc/cw-1.0.16-r1" - -src_prepare() { - epatch "${FILESDIR}"/${P}-console.patch \ - "${FILESDIR}"/${P}-pulseaudio.patch - - append-cflags -std=gnu99 - # add path to qt4 libs - sed -i -e "s#LDADD = -L#LDADD = -L/usr/$(get_libdir)/qt4 -L#g" \ - src/xcwcp/Makefile.am - eautoreconf -} - -src_configure() { - econf --libdir=/usr/$(get_libdir) \ - $(use_enable pulseaudio ) \ - $(use_enable alsa ) \ - $(use_enable ncurses cwcp ) \ - $(use_enable qt4 xcwcp ) -} - -src_install() { - emake DESTDIR="${D}" install - prune_libtool_files - dodoc ChangeLog NEWS README - if ! use suid ; then - fperms 711 /usr/bin/cw - if use ncurses ; then - fperms 711 /usr/bin/cwcp - fi - if use qt4 ; then - fperms 711 /usr/bin/xcwcp - fi - fi -} - -pkg_postinst() { - if use suid ; then - ewarn "You have choosen to install 'cw', 'cwcp' and 'xcwcp' setuid" - ewarn "by setting USE=suid." - ewarn "Be aware that this is a security risk and not recommended." - ewarn "" - ewarn "These files do only need root access if you want to use the" - ewarn "PC speaker for morse sidetone output. You can alternativly" - ewarn "drop USE=suid and use sudo." - else - elog "Be aware that 'cw', 'cwcp' and 'xcwcp' needs root access if" - elog "you want to use the PC speaker for morse sidetone output." - elog "You can call the programs via sudo for that (see 'man sudo')." - fi -} diff --git a/media-radio/unixcw/unixcw-3.3.1.ebuild b/media-radio/unixcw/unixcw-3.3.1.ebuild index d1829c5191bb..ba24507fc9e4 100644 --- a/media-radio/unixcw/unixcw-3.3.1.ebuild +++ b/media-radio/unixcw/unixcw-3.3.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-radio/unixcw/unixcw-3.3.1.ebuild,v 1.3 2014/10/09 15:18:23 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-radio/unixcw/unixcw-3.3.1.ebuild,v 1.4 2014/10/10 11:08:27 ago Exp $ EAPI=4 @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~ppc ~x86" +KEYWORDS="~alpha amd64 ~ppc x86" IUSE="alsa ncurses pulseaudio suid qt4" RDEPEND="ncurses? ( sys-libs/ncurses ) diff --git a/media-radio/xlog/xlog-2.0.12.ebuild b/media-radio/xlog/xlog-2.0.12.ebuild index de9d42bd3e6b..dd77bf7bd394 100644 --- a/media-radio/xlog/xlog-2.0.12.ebuild +++ b/media-radio/xlog/xlog-2.0.12.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-radio/xlog/xlog-2.0.12.ebuild,v 1.2 2014/10/09 15:19:04 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-radio/xlog/xlog-2.0.12.ebuild,v 1.3 2014/10/10 11:07:51 ago Exp $ EAPI=4 @@ -13,7 +13,7 @@ SRC_URI="http://download.savannah.gnu.org/releases/${PN}/${MY_P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="" RDEPEND="media-libs/hamlib diff --git a/media-sound/audex/audex-0.78.ebuild b/media-sound/audex/audex-0.78.ebuild index 58cee7fa8428..8de1a9789cd3 100644 --- a/media-sound/audex/audex-0.78.ebuild +++ b/media-sound/audex/audex-0.78.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/audex/audex-0.78.ebuild,v 1.1 2014/06/14 11:41:12 creffett Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/audex/audex-0.78.ebuild,v 1.2 2014/10/10 15:20:40 ago Exp $ EAPI=5 @@ -15,7 +15,7 @@ SRC_URI="http://kde.maniatek.com/${PN}/files/${PN}-${MY_PV}.tar.xz" LICENSE="GPL-3" SLOT="4" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="debug" DEPEND=" diff --git a/media-sound/google-musicmanager/google-musicmanager-1.0.129.6633_beta.ebuild b/media-sound/google-musicmanager/google-musicmanager-1.0.129.6633_beta.ebuild index adcbf899b098..da33b7b42836 100644 --- a/media-sound/google-musicmanager/google-musicmanager-1.0.129.6633_beta.ebuild +++ b/media-sound/google-musicmanager/google-musicmanager-1.0.129.6633_beta.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/google-musicmanager/google-musicmanager-1.0.129.6633_beta.ebuild,v 1.1 2014/10/08 09:50:12 ottxor Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/google-musicmanager/google-musicmanager-1.0.129.6633_beta.ebuild,v 1.2 2014/10/10 15:23:00 ago Exp $ EAPI=5 @@ -17,7 +17,7 @@ SRC_URI="x86? ( ${MY_URL}/${MY_PKG} ) LICENSE="Google-TOS Apache-2.0 MIT LGPL-2.1 gSOAP BSD FDL-1.2 MPL-1.1 openssl ZLIB libtiff" SLOT="0" -KEYWORDS="-* ~amd64 ~x86" +KEYWORDS="-* amd64 ~x86" IUSE="log" OBSOLETE="no" diff --git a/media-sound/lilypond/lilypond-2.18.2.ebuild b/media-sound/lilypond/lilypond-2.18.2.ebuild index bd8ac97c0c04..c4d0d085599e 100644 --- a/media-sound/lilypond/lilypond-2.18.2.ebuild +++ b/media-sound/lilypond/lilypond-2.18.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-2.18.2.ebuild,v 1.3 2014/10/09 09:13:20 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-2.18.2.ebuild,v 1.4 2014/10/10 10:56:21 ago Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) @@ -13,7 +13,7 @@ HOMEPAGE="http://lilypond.org/" LICENSE="GPL-3 FDL-1.3" SLOT="0" -KEYWORDS="amd64 ~hppa ~x86" +KEYWORDS="amd64 ~hppa x86" LANGS=" ca cs da de el eo es fi fr it ja nl ru sv tr uk vi zh_TW" IUSE="debug emacs profile vim-syntax ${LANGS// / linguas_}" REQUIRED_USE="${PYTHON_REQUIRED_USE}" diff --git a/media-sound/snd/Manifest b/media-sound/snd/Manifest index bf8feef6afe8..101eccb4caf9 100644 --- a/media-sound/snd/Manifest +++ b/media-sound/snd/Manifest @@ -1,3 +1,3 @@ DIST snd-12.7.tar.gz 15545295 SHA256 7da276c4ad9163d77f92847a5d535cda8a5b28bb153bb5ba1bcac29be41aefb8 -DIST snd-12.8.tar.gz 15546751 SHA256 1ff683615ec6d0c7e2c8359e921117f4fd78695675bb06eb765667edb55a1939 +DIST snd-12.8.tar.gz 15546751 SHA256 1ff683615ec6d0c7e2c8359e921117f4fd78695675bb06eb765667edb55a1939 SHA512 99a8600a175a889ad597053e9f52af69124cab8feca693c852cb03d34df5b80bcc50994ea66d070fe61e318eca715fdfe095a458b22da80d95f88a1d695baebd WHIRLPOOL b8903b138ab31f2ee51aeabe66068943c24e15e2cd82e628bc446224ebb0e697365c0070ec99d126379a02c1ef7544a1c6195e0bb3a0c8ecb167751eb3c673ef DIST snd-9.11.tar.gz 13455864 SHA256 364fa4ee39d9909e7cffc400aff5723712bfa19960ecb2271d83bf2fe1909165 diff --git a/media-sound/snd/snd-12.8.ebuild b/media-sound/snd/snd-12.8.ebuild index cc06710b0005..749642a48742 100644 --- a/media-sound/snd/snd-12.8.ebuild +++ b/media-sound/snd/snd-12.8.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/snd/snd-12.8.ebuild,v 1.6 2013/04/17 18:22:42 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/snd/snd-12.8.ebuild,v 1.7 2014/10/10 15:25:37 ago Exp $ EAPI="4" @@ -12,7 +12,7 @@ SRC_URI="ftp://ccrma-ftp.stanford.edu/pub/Lisp/${P}.tar.gz" LICENSE="Snd BSD-2 HPND GPL-2+ LGPL-2.1+ LGPL-3+ ruby? ( free-noncomm ) s7? ( free-noncomm )" SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86 ~x86-interix ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~ppc ~x86 ~x86-interix ~amd64-linux ~x86-linux" IUSE="alsa doc fam fftw gmp gsl gtk jack ladspa motif opengl oss portaudio pulseaudio readline ruby +s7" RDEPEND="media-libs/audiofile diff --git a/media-video/binkplayer/binkplayer-1.99w.ebuild b/media-video/binkplayer/binkplayer-1.99w.ebuild index d082d552d93b..5a4eb5b4a9a7 100644 --- a/media-video/binkplayer/binkplayer-1.99w.ebuild +++ b/media-video/binkplayer/binkplayer-1.99w.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/binkplayer/binkplayer-1.99w.ebuild,v 1.4 2014/09/04 00:57:12 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/binkplayer/binkplayer-1.99w.ebuild,v 1.5 2014/10/10 15:25:01 ago Exp $ EAPI=5 DESCRIPTION="Bink Video! Player" @@ -12,7 +12,7 @@ SRC_URI="mirror://gentoo/${P}.zip" # distributable per http://www.radgametools.com/binkfaq.htm LICENSE="freedist" SLOT="0" -KEYWORDS="-* ~amd64 ~x86" +KEYWORDS="-* amd64 ~x86" IUSE="" DEPEND="app-arch/unzip" diff --git a/metadata/dtd/timestamp.chk b/metadata/dtd/timestamp.chk index 682c5bdefcac..ed69a60436dc 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Fri, 10 Oct 2014 08:07:01 +0000 +Sat, 11 Oct 2014 08:07:01 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index 682c5bdefcac..ed69a60436dc 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Fri, 10 Oct 2014 08:07:01 +0000 +Sat, 11 Oct 2014 08:07:01 +0000 diff --git a/metadata/md5-cache/app-admin/salt-2014.1.12 b/metadata/md5-cache/app-admin/salt-2014.1.12 new file mode 100644 index 000000000000..94172ea09a24 --- /dev/null +++ b/metadata/md5-cache/app-admin/salt-2014.1.12 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=test? ( dev-python/pip dev-python/virtualenv dev-python/timelib >=dev-python/SaltTesting-2014.4.24 >=dev-python/pyzmq-2.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] libcloud? ( >=dev-python/libcloud-0.14.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) sys-apps/pciutils mako? ( dev-python/mako[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) libvirt? ( || ( dev-python/libvirt-python[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] app-emulation/libvirt[python,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ) mongodb? ( dev-python/pymongo[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) timelib? ( dev-python/timelib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/pkgconfig +DESCRIPTION=Salt is a remote execution and configuration manager +EAPI=5 +HOMEPAGE=http://saltstack.org/ +IUSE=ldap libcloud libvirt mako mongodb mysql openssl redis timelib test python_targets_python2_7 +KEYWORDS=~x86 ~amd64 +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/pyzmq-2.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] libcloud? ( >=dev-python/libcloud-0.14.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) sys-apps/pciutils mako? ( dev-python/mako[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) libvirt? ( || ( dev-python/libvirt-python[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] app-emulation/libvirt[python,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ) mongodb? ( dev-python/pymongo[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) timelib? ( dev-python/timelib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 ) +SLOT=0 +SRC_URI=mirror://pypi/s/salt/salt-2014.1.12.tar.gz +_eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0f1760274637a138b99bb649202ea402 +_md5_=00798ab245b5d966648bc0d3ce2dae39 diff --git a/metadata/md5-cache/app-admin/sudo-1.8.11_p1 b/metadata/md5-cache/app-admin/sudo-1.8.11_p1 index 38ed0736f91b..c62ed8254a08 100644 --- a/metadata/md5-cache/app-admin/sudo-1.8.11_p1 +++ b/metadata/md5-cache/app-admin/sudo-1.8.11_p1 @@ -4,11 +4,11 @@ DESCRIPTION=Allows users or groups to run commands as other users EAPI=5 HOMEPAGE=http://www.sudo.ws/ IUSE=ldap nls pam offensive selinux skey +sendmail -KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~sparc-solaris +KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~sparc-solaris LICENSE=ISC BSD RDEPEND=pam? ( virtual/pam ) skey? ( >=sys-auth/skey-1.1.5-r1 ) ldap? ( >=net-nds/openldap-2.1.30-r1 dev-libs/cyrus-sasl ) sys-libs/zlib selinux? ( sec-policy/selinux-sudo ) ldap? ( dev-lang/perl ) pam? ( sys-auth/pambase ) >=app-misc/editor-wrapper-3 virtual/editor sendmail? ( virtual/mta ) REQUIRED_USE=pam? ( !skey ) skey? ( !pam ) SLOT=0 SRC_URI=http://www.sudo.ws/sudo/dist/sudo-1.8.11p1.tar.gz ftp://ftp.sudo.ws/pub/sudo/sudo-1.8.11p1.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf pam aa1ebb3ab720ea04dbbdd6eaaf9554ed toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=bd41705cbf7fb687244e6128d12f520a +_md5_=4a3cdd922219b0aa1115da55d2c6868c diff --git a/metadata/md5-cache/app-antivirus/clamav-0.98.4 b/metadata/md5-cache/app-antivirus/clamav-0.98.4 index a302c56169df..5c700fb070a1 100644 --- a/metadata/md5-cache/app-antivirus/clamav-0.98.4 +++ b/metadata/md5-cache/app-antivirus/clamav-0.98.4 @@ -4,10 +4,10 @@ DESCRIPTION=Clam Anti-Virus Scanner EAPI=5 HOMEPAGE=http://www.clamav.net/ IUSE=bzip2 clamdtop iconv ipv6 milter selinux static-libs uclibc -KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=bzip2? ( app-arch/bzip2 ) clamdtop? ( sys-libs/ncurses ) iconv? ( virtual/libiconv ) milter? ( || ( mail-filter/libmilter mail-mta/sendmail ) ) dev-libs/libtommath >=sys-libs/zlib-1.2.2 dev-libs/openssl sys-devel/libtool selinux? ( sec-policy/selinux-clamav ) SLOT=0 SRC_URI=mirror://sourceforge/clamav/clamav-0.98.4.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 multilib 3bf24e6abb9b76d9f6c20600f0b716bf systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=4df503f4769d4db936353837f1b7b746 +_md5_=0bf9ca6b65a373bf8d35735d71fdc59c diff --git a/metadata/md5-cache/app-arch/pigz-2.3.1-r1 b/metadata/md5-cache/app-arch/pigz-2.3.1-r1 index 0186c395ce00..aff502bc025c 100644 --- a/metadata/md5-cache/app-arch/pigz-2.3.1-r1 +++ b/metadata/md5-cache/app-arch/pigz-2.3.1-r1 @@ -4,10 +4,10 @@ DESCRIPTION=A parallel implementation of gzip EAPI=5 HOMEPAGE=http://www.zlib.net/pigz/ IUSE=static symlink test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~sparc ~x86 ~amd64-linux ~sparc64-solaris +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~mips ~sparc ~x86 ~amd64-linux ~sparc64-solaris LICENSE=ZLIB RDEPEND=!static? ( sys-libs/zlib ) SLOT=0 SRC_URI=http://www.zlib.net/pigz/pigz-2.3.1.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=e5ed77df7805e1fd31e503b7862ffd02 +_md5_=39790650c8b2ace979c413869ada3cc5 diff --git a/metadata/md5-cache/app-backup/fsarchiver-0.6.19 b/metadata/md5-cache/app-backup/fsarchiver-0.6.19 index 2b27396274b4..f064264b6b7a 100644 --- a/metadata/md5-cache/app-backup/fsarchiver-0.6.19 +++ b/metadata/md5-cache/app-backup/fsarchiver-0.6.19 @@ -4,10 +4,10 @@ DESCRIPTION=Flexible filesystem archiver for backup and deployment tool EAPI=5 HOMEPAGE=http://www.fsarchiver.org IUSE=debug lzma lzo static -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=GPL-2 RDEPEND=dev-libs/libgcrypt:0 >=sys-fs/e2fsprogs-1.41.4 lzma? ( >=app-arch/xz-utils-4.999.9_beta ) lzo? ( >=dev-libs/lzo-2.02 ) static? ( lzma? ( app-arch/xz-utils[static-libs] ) ) SLOT=0 SRC_URI=mirror://sourceforge/fsarchiver/fsarchiver-0.6.19.tar.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=c4cd76623c9f99f50168fb020dc157dd +_md5_=d816eda1b9217188dd9d3cc9842ee046 diff --git a/metadata/md5-cache/app-backup/spideroak-bin-5.1.8-r2 b/metadata/md5-cache/app-backup/spideroak-bin-5.1.8-r2 index a6bfbe0d835e..9f18241c9f44 100644 --- a/metadata/md5-cache/app-backup/spideroak-bin-5.1.8-r2 +++ b/metadata/md5-cache/app-backup/spideroak-bin-5.1.8-r2 @@ -4,11 +4,11 @@ DESCRIPTION=An easy, secure and consolidated free online backup, storage, access EAPI=5 HOMEPAGE=https://spideroak.com IUSE=dbus X -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=spideroak RDEPEND=app-crypt/mit-krb5[keyutils] dbus? ( sys-apps/dbus ) X? ( media-libs/fontconfig media-libs/freetype:2 dev-libs/glib:2 x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXmu x11-libs/libXrender x11-libs/libXt ) RESTRICT=mirror strip SLOT=0 SRC_URI=x86? ( https://spideroak.com/getbuild?platform=ubuntu&arch=i386&version=5.1.8 -> spideroak-bin-5.1.8_x86.deb ) amd64? ( https://spideroak.com/getbuild?platform=ubuntu&arch=x86_64&version=5.1.8 -> spideroak-bin-5.1.8_amd64.deb ) _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 unpacker f300a7ca9131b1024a79762e8edd3c52 -_md5_=fcfda767d89eac0321cb37d1eda5b3c1 +_md5_=4cf21f7c6aff6642de30270171e9276f diff --git a/metadata/md5-cache/app-benchmarks/ramspeed-2.6.0 b/metadata/md5-cache/app-benchmarks/ramspeed-2.6.0 deleted file mode 100644 index 59ec7a1f13a3..000000000000 --- a/metadata/md5-cache/app-benchmarks/ramspeed-2.6.0 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=configure install prepare -DESCRIPTION=Benchmarking for memory and cache -EAPI=2 -HOMEPAGE=http://www.alasir.com/software/ramspeed/ -IUSE=sse -KEYWORDS=amd64 x86 -LICENSE=Alasir -SLOT=0 -SRC_URI=http://www.alasir.com/software/ramspeed/ramspeed-2.6.0.tar.gz -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=efb833a986ba1de08310706f3d4a9ca9 diff --git a/metadata/md5-cache/app-benchmarks/ramspeed-3.5.0-r1 b/metadata/md5-cache/app-benchmarks/ramspeed-3.5.0-r1 deleted file mode 100644 index f85a2e42d0c8..000000000000 --- a/metadata/md5-cache/app-benchmarks/ramspeed-3.5.0-r1 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=configure install -DESCRIPTION=Benchmarking for memory and cache -EAPI=4 -HOMEPAGE=http://www.alasir.com/software/ramspeed/ -IUSE=sse pic -KEYWORDS=~amd64 ~x86 -LICENSE=Alasir -SLOT=0 -SRC_URI=http://www.alasir.com/software/ramspeed/ramsmp-3.5.0.tar.gz -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=aaa74750cc17033c9830c97f10f8120a diff --git a/metadata/md5-cache/app-benchmarks/ramspeed-3.5.0-r2 b/metadata/md5-cache/app-benchmarks/ramspeed-3.5.0-r2 index b64ba87d031e..edb03396239a 100644 --- a/metadata/md5-cache/app-benchmarks/ramspeed-3.5.0-r2 +++ b/metadata/md5-cache/app-benchmarks/ramspeed-3.5.0-r2 @@ -3,9 +3,9 @@ DESCRIPTION=Benchmarking for memory and cache EAPI=5 HOMEPAGE=http://www.alasir.com/software/ramspeed/ IUSE=sse pic -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=Alasir SLOT=0 SRC_URI=http://www.alasir.com/software/ramspeed/ramsmp-3.5.0.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=daee7dd14b99fdacb2d15272376180c7 +_md5_=f00a80fbedf340468377b169469329fe diff --git a/metadata/md5-cache/app-dicts/gjiten-2.6-r3 b/metadata/md5-cache/app-dicts/gjiten-2.6-r3 index e05c78883758..c03c7ac335cd 100644 --- a/metadata/md5-cache/app-dicts/gjiten-2.6-r3 +++ b/metadata/md5-cache/app-dicts/gjiten-2.6-r3 @@ -3,11 +3,11 @@ DEPEND=>=gnome-base/libgnome-2.2 >=gnome-base/libgnomeui-2.2 >=gnome-base/libgla DESCRIPTION=A Japanese dictionary program for Gnome EAPI=5 HOMEPAGE=http://gjiten.sourceforge.net/ -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=GPL-2 RDEPEND=>=gnome-base/libgnome-2.2 >=gnome-base/libgnomeui-2.2 >=gnome-base/libglade-2 RESTRICT=test SLOT=0 SRC_URI=http://gjiten.sourceforge.net/gjiten-2.6.tar.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 9637c29fc715b17a6328f24251129557 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 readme.gentoo 106edea5533517715013de909a333abd toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=25c055b482b67f881b803b3e44572509 +_md5_=1a139ccb36d278a73a9790755dd2d5e0 diff --git a/metadata/md5-cache/app-dicts/kasumi-2.5 b/metadata/md5-cache/app-dicts/kasumi-2.5 deleted file mode 100644 index c4fbb1bca6a0..000000000000 --- a/metadata/md5-cache/app-dicts/kasumi-2.5 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile install -DEPEND=>=x11-libs/gtk+-2.6:2 nls? ( virtual/libintl ) virtual/libiconv >=app-i18n/anthy-6131 virtual/pkgconfig nls? ( sys-devel/gettext ) -DESCRIPTION=Anthy dictionary maintenance tool -EAPI=1 -HOMEPAGE=http://kasumi.sourceforge.jp/ -IUSE=nls -KEYWORDS=amd64 ppc x86 ~x86-fbsd -LICENSE=GPL-2 -RDEPEND=>=x11-libs/gtk+-2.6:2 nls? ( virtual/libintl ) virtual/libiconv >=app-i18n/anthy-6131 -SLOT=0 -SRC_URI=mirror://sourceforge.jp/kasumi/41436/kasumi-2.5.tar.gz -_md5_=04d3852d126350735482c5c26eb5d278 diff --git a/metadata/md5-cache/app-dicts/kasumi-2.5-r1 b/metadata/md5-cache/app-dicts/kasumi-2.5-r1 index 6ff0e3d5e4dc..19758046bd18 100644 --- a/metadata/md5-cache/app-dicts/kasumi-2.5-r1 +++ b/metadata/md5-cache/app-dicts/kasumi-2.5-r1 @@ -4,10 +4,10 @@ DESCRIPTION=Anthy dictionary maintenance tool EAPI=5 HOMEPAGE=http://kasumi.sourceforge.jp/ IUSE=nls -KEYWORDS=amd64 ppc ~x86 ~x86-fbsd +KEYWORDS=amd64 ppc x86 ~x86-fbsd LICENSE=GPL-2 RDEPEND=>=x11-libs/gtk+-2.6:2 nls? ( virtual/libintl ) virtual/libiconv >=app-i18n/anthy-6131 SLOT=0 SRC_URI=mirror://sourceforge.jp/kasumi/41436/kasumi-2.5.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=920ef40dc1f020b5a3540ca9d802b282 +_md5_=7e311dbe1cd80d00782d6910e457c649 diff --git a/metadata/md5-cache/app-editors/scite-3.5.0 b/metadata/md5-cache/app-editors/scite-3.5.0 index 5d6ec64ada22..06b9c2643dde 100644 --- a/metadata/md5-cache/app-editors/scite-3.5.0 +++ b/metadata/md5-cache/app-editors/scite-3.5.0 @@ -4,10 +4,10 @@ DESCRIPTION=A very powerful editor for programmers EAPI=5 HOMEPAGE=http://www.scintilla.org/SciTE.html IUSE=lua -KEYWORDS=~amd64 ~ppc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux +KEYWORDS=amd64 ~ppc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux LICENSE=HPND lua? ( MIT ) RDEPEND=dev-libs/glib x11-libs/cairo x11-libs/gtk+:2 x11-libs/gdk-pixbuf x11-libs/pango lua? ( >=dev-lang/lua-5 ) SLOT=0 SRC_URI=mirror://sourceforge/scintilla/scite350.tgz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=f7549edd586da0c856a18547618495b1 +_md5_=bbadc78bdaa847c03c13b1a22e069749 diff --git a/metadata/md5-cache/app-emacs/mew-6.6 b/metadata/md5-cache/app-emacs/mew-6.6 index a46cd279dc73..d598f572a949 100644 --- a/metadata/md5-cache/app-emacs/mew-6.6 +++ b/metadata/md5-cache/app-emacs/mew-6.6 @@ -4,11 +4,11 @@ DESCRIPTION=Great MIME mail reader for Emacs/XEmacs EAPI=5 HOMEPAGE=http://www.mew.org/ IUSE=ssl linguas_ja -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=BSD RDEPEND=sys-libs/zlib ssl? ( net-misc/stunnel ) >=virtual/emacs-23 RESTRICT=test SLOT=0 SRC_URI=http://www.mew.org/Release/mew-6.6.tar.gz _eclasses_=elisp b7ff113c97bf466ace6f3235f80af600 elisp-common 1aa23b3de5dae55456fa2071428eb5bf eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf readme.gentoo 106edea5533517715013de909a333abd toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=d9a4bc43cfc356bccd8478e788882af9 +_md5_=166c0481efe853c827c6df8c462823f7 diff --git a/metadata/md5-cache/app-emulation/e-uae-0.8.29_rc4-r2 b/metadata/md5-cache/app-emulation/e-uae-0.8.29_rc4-r2 index 6645dea1f609..26f2e0ba8311 100644 --- a/metadata/md5-cache/app-emulation/e-uae-0.8.29_rc4-r2 +++ b/metadata/md5-cache/app-emulation/e-uae-0.8.29_rc4-r2 @@ -4,10 +4,10 @@ DESCRIPTION=The Ubiquitous Amiga Emulator with an emulation core largely based o EAPI=3 HOMEPAGE=http://www.rcdrummond.net/uae/ IUSE=X dga ncurses sdl alsa oss sdl-sound capslib -KEYWORDS=amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc x86 LICENSE=GPL-2 RDEPEND=X? ( x11-libs/libXt x11-libs/libxkbfile x11-libs/libXext x11-misc/xkeyboard-config dga? ( x11-libs/libXxf86dga x11-libs/libXxf86vm ) ) !X? ( sdl? ( media-libs/libsdl ) !sdl? ( sys-libs/ncurses ) ) alsa? ( media-libs/alsa-lib ) !alsa? ( sdl-sound? ( media-libs/sdl-sound ) ) capslib? ( >=games-emulation/caps-20060612 ) sys-libs/zlib virtual/cdrtools SLOT=0 SRC_URI=http://www.rcdrummond.net/uae/e-uae-0.8.29-WIP4/e-uae-0.8.29-WIP4.tar.bz2 _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 multilib 3bf24e6abb9b76d9f6c20600f0b716bf pax-utils dfe060cb70d89757fde5c1ff8405e950 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=3d8e567e486f1a515cade3dbda97e383 +_md5_=5c1dd9036a1f992af1e18e9a1b44756e diff --git a/metadata/md5-cache/app-misc/figlet-2.2.5 b/metadata/md5-cache/app-misc/figlet-2.2.5 index 7ce54e2ff0b3..f7b2658318f5 100644 --- a/metadata/md5-cache/app-misc/figlet-2.2.5 +++ b/metadata/md5-cache/app-misc/figlet-2.2.5 @@ -2,9 +2,9 @@ DEFINED_PHASES=compile install DESCRIPTION=program for making large letters out of ordinary text EAPI=5 HOMEPAGE=http://www.figlet.org/ -KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos +KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos LICENSE=BSD SLOT=0 SRC_URI=ftp://ftp.figlet.org/pub/figlet/program/unix/figlet-2.2.5.tar.gz _eclasses_=bash-completion-r1 c8399c7c7ecbcf7ed6e5bd3abb3d4af3 eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=cdb75c977bfc146e1c81b864d9bacb4f +_md5_=636bbb486ea7bd3a38386b6d4c9d62cf diff --git a/metadata/md5-cache/app-misc/muttprint-0.73-r2 b/metadata/md5-cache/app-misc/muttprint-0.73-r2 index f4ad5db9c78a..a98a8306fbb4 100644 --- a/metadata/md5-cache/app-misc/muttprint-0.73-r2 +++ b/metadata/md5-cache/app-misc/muttprint-0.73-r2 @@ -4,10 +4,10 @@ DESCRIPTION=Script for pretty printing of your mails EAPI=5 HOMEPAGE=http://muttprint.sourceforge.net IUSE=doc -KEYWORDS=amd64 ~ppc ~ppc64 ~x86 +KEYWORDS=amd64 ~ppc ~ppc64 x86 LICENSE=GPL-2 RDEPEND=dev-lang/perl virtual/latex-base dev-texlive/texlive-latexextra SLOT=0 SRC_URI=mirror://sourceforge/muttprint/muttprint-0.73.tar.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 autotools-utils 3727db64c7b960903d5033280f108080 eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=8c82bb3413ed6f8c0ccd632b3ee6b947 +_md5_=90857b086b83f11d0163b3317d5afd81 diff --git a/metadata/md5-cache/app-misc/vifm-0.7.7 b/metadata/md5-cache/app-misc/vifm-0.7.7 index 12574f84ae0d..e72767c4857f 100644 --- a/metadata/md5-cache/app-misc/vifm-0.7.7 +++ b/metadata/md5-cache/app-misc/vifm-0.7.7 @@ -4,10 +4,10 @@ DESCRIPTION=Console file manager with vi(m)-like keybindings EAPI=5 HOMEPAGE=http://vifm.sourceforge.net/ IUSE=X developer +extended-keys gtk +magic vim vim-syntax -KEYWORDS=~amd64 ~ppc ~s390 ~x86 +KEYWORDS=amd64 ~ppc ~s390 ~x86 LICENSE=GPL-2 RDEPEND=>=sys-libs/ncurses-5.7-r7 magic? ( sys-apps/file ) gtk? ( x11-libs/gtk+:2 ) X? ( x11-libs/libX11 ) vim? ( || ( app-editors/vim app-editors/gvim ) ) vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) SLOT=0 SRC_URI=mirror://sourceforge/vifm/vifm-0.7.7.tar.bz2 _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 vim-doc 1c18baeec98cec3287524cbf2fee2bd2 -_md5_=f82395f4dd2517cf850174bbfebf4271 +_md5_=8b5b58f7a4375332a5d40bd43e445a18 diff --git a/metadata/md5-cache/app-office/libreoffice-4.3.1.2 b/metadata/md5-cache/app-office/libreoffice-4.3.1.2 index ae05a2045389..5799a09ec99e 100644 --- a/metadata/md5-cache/app-office/libreoffice-4.3.1.2 +++ b/metadata/md5-cache/app-office/libreoffice-4.3.1.2 @@ -4,7 +4,7 @@ DESCRIPTION=LibreOffice, a full office productivity suite EAPI=5 HOMEPAGE=http://www.libreoffice.org IUSE=bluetooth +branding coinmp collada +cups dbus debug eds firebird gltf gnome gstreamer +gtk gtk3 jemalloc kde mysql odk opengl postgres telepathy test +vba vlc libreoffice_extensions_nlpsolver libreoffice_extensions_scripting-beanshell libreoffice_extensions_scripting-javascript libreoffice_extensions_wiki-publisher elibc_FreeBSD java aqua kde python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_single_target_python2_7 python_single_target_python3_3 python_single_target_python3_4 -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~arm ~x86 LICENSE=|| ( LGPL-3 MPL-1.1 ) PDEPEND=~app-office/libreoffice-l10n-4.3.1.2 RDEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads,xml] ) python_single_target_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3[threads,xml] ) python_single_target_python3_4? ( dev-lang/python:3.4[threads,xml] ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_single_target_python2_7(+)?,python_single_target_python3_3(+)?,python_single_target_python3_4(+)?] app-arch/zip app-arch/unzip >=app-text/hunspell-1.3.2-r3 app-text/mythes >=app-text/libabw-0.1.0 >=app-text/libexttextcat-3.2 >=app-text/libebook-0.1.1 >=app-text/libetonyek-0.1.1 app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.1 >=app-text/libodfgen-0.1.0 app-text/libwpd:0.10[tools] app-text/libwpg:0.3 >=app-text/libwps-0.3.0 >=app-text/poppler-0.16:=[xpdf-headers(+),cxx] >=dev-cpp/clucene-2.3.3.4-r2 dev-cpp/libcmis:0.4 dev-db/unixODBC >=dev-libs/boost-1.46:= dev-libs/expat >=dev-libs/hyphen-2.7.1 >=dev-libs/icu-4.8.1.1:= >=dev-libs/libatomic_ops-7.2d >=dev-libs/liborcus-0.7.0 >=dev-libs/librevenge-0.0.1 >=dev-libs/nspr-4.8.8 >=dev-libs/nss-3.12.9 >=dev-lang/perl-5.0 >=dev-libs/openssl-1.0.0d:0 >=dev-libs/redland-1.0.16 media-gfx/graphite2 >=media-libs/fontconfig-2.8.0 media-libs/freetype:2 >=media-libs/glew-1.10 >=media-libs/harfbuzz-0.9.18:=[icu(+)] media-libs/lcms:2 >=media-libs/libpng-1.4 >=media-libs/libcdr-0.1.0 >=media-libs/libfreehand-0.1.0 >=media-libs/libvisio-0.1.0 >=net-misc/curl-7.21.4 net-libs/neon net-nds/openldap sci-mathematics/lpsolve virtual/jpeg:0 >=x11-libs/cairo-1.10.0[X] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender bluetooth? ( net-wireless/bluez ) coinmp? ( sci-libs/coinor-mp ) cups? ( net-print/cups ) dbus? ( >=dev-libs/dbus-glib-0.92 ) eds? ( gnome-extra/evolution-data-server ) firebird? ( >=dev-db/firebird-2.5 ) gltf? ( media-libs/libgltf ) gnome? ( gnome-base/gconf:2 ) gtk? ( x11-libs/gdk-pixbuf[X] >=x11-libs/gtk+-2.24:2 ) gtk3? ( >=x11-libs/gtk+-3.2:3 ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) jemalloc? ( dev-libs/jemalloc ) libreoffice_extensions_scripting-beanshell? ( >=dev-java/bsh-2.0_beta4 ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) libreoffice_extensions_wiki-publisher? ( dev-java/commons-codec:0 dev-java/commons-httpclient:3 dev-java/commons-lang:2.1 dev-java/commons-logging:0 dev-java/tomcat-servlet-api:3.0 ) mysql? ( >=dev-db/mysql-connector-c++-1.1.0 ) opengl? ( virtual/glu virtual/opengl ) postgres? ( >=dev-db/postgresql-base-9.0[kerberos] ) telepathy? ( dev-libs/glib:2 >=net-libs/telepathy-glib-0.18.0 >=x11-libs/gtk+-2.24:2 ) !app-office/libreoffice-bin !app-office/libreoffice-bin-debug !=virtual/jre-1.6 ) vlc? ( media-video/vlc ) java? ( >=dev-java/java-config-2.1.9-r1 ) kde? ( >=kde-base/oxygen-icons-4.4:4[aqua=] ) kde? ( dev-lang/perl >=dev-qt/qt3support-4.7.4:4[accessibility] >=dev-qt/qtcore-4.7.4:4[qt3support,ssl] >=dev-qt/qtdbus-4.7.4:4 >=dev-qt/designer-4.7.4:4[-phonon] >=dev-qt/qtgui-4.7.4:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.7.4:4 >=dev-qt/qtsql-4.7.4:4[qt3support] >=dev-qt/qtsvg-4.7.4:4 >=dev-qt/qttest-4.7.4:4 >=dev-qt/qtwebkit-4.7.4:4 >=kde-base/kdelibs-4.4:4[aqua=] ) @@ -12,4 +12,4 @@ REQUIRED_USE=python_single_target_python2_7? ( python_targets_python2_7 ) python SLOT=0 SRC_URI=branding? ( http://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.8.tar.xz ) http://dev-builds.libreoffice.org/pre-releases/src/libreoffice-4.3.1.2.tar.xz http://dev-builds.libreoffice.org/pre-releases/src/libreoffice-help-4.3.1.2.tar.xz http://download.documentfoundation.org/libreoffice/src/4.3.1//libreoffice-4.3.1.2.tar.xz http://download.documentfoundation.org/libreoffice/src/4.3.1//libreoffice-help-4.3.1.2.tar.xz http://download.documentfoundation.org/libreoffice/old/4.3.1.2//libreoffice-4.3.1.2.tar.xz http://download.documentfoundation.org/libreoffice/old/4.3.1.2//libreoffice-help-4.3.1.2.tar.xz http://dev-www.libreoffice.org/src//d62650a6f908e85643e557a236ea989c-vigra1.6.0.tar.gz http://dev-www.libreoffice.org/src//1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz collada? ( http://dev-www.libreoffice.org/src//4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2 ) collada? ( http://dev-www.libreoffice.org/src//OpenCOLLADA-master-6509aa13af.tar.bz2 ) java? ( http://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) libreoffice_extensions_wiki-publisher? ( http://dev-www.libreoffice.org/src//a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll ) _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 base 87f7447ccfc06fd0729ff4684e11e0d6 bash-completion-r1 c8399c7c7ecbcf7ed6e5bd3abb3d4af3 check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 32548a82e42dc26e3312581476d2f20c fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 75e24bac8423c515dd9c5717f08feb83 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 kde4-base 4eedf91460a42478a541aa78b13f9779 kde4-functions 492237eb2823bdc02bc769530501f0ea libtool 52d0e17251d04645ffaa61bfdd858944 mozextension ba6829881080a663d68531424a3dfbc6 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 nsplugins 7ea51b2f6cbd5b36b9c0163cc3ee03a2 pax-utils dfe060cb70d89757fde5c1ff8405e950 python-single-r1 a71a169a881e0a11d04a7fe12dc39f6e python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=b21715de51845523a08dc4000f891d7c +_md5_=f69de0684bb26e4f523a71f928e9cb2a diff --git a/metadata/md5-cache/app-office/lyx-2.0.8.1 b/metadata/md5-cache/app-office/lyx-2.0.8.1 index 661f73ba68cd..e992524b0761 100644 --- a/metadata/md5-cache/app-office/lyx-2.0.8.1 +++ b/metadata/md5-cache/app-office/lyx-2.0.8.1 @@ -4,11 +4,11 @@ DESCRIPTION=WYSIWYM frontend for LaTeX, DocBook, etc. EAPI=5 HOMEPAGE=http://www.lyx.org/ IUSE=cups debug nls +latex monolithic-build html rtf dot docbook dia subversion rcs svg gnumeric +hunspell aspell enchant linguas_ar linguas_ca linguas_cs linguas_de linguas_da linguas_el linguas_en linguas_es linguas_eu linguas_fi linguas_fr linguas_gl linguas_he linguas_hu linguas_ia linguas_id linguas_it linguas_ja linguas_nb linguas_nn linguas_pl linguas_pt linguas_ro linguas_ru linguas_sk linguas_sr linguas_sv linguas_tr linguas_uk linguas_zh_CN linguas_zh_TW X python_targets_python2_7 python_single_target_python2_7 -KEYWORDS=~alpha amd64 hppa ~ia64 ppc ~ppc64 ~sparc ~x86 ~x64-macos ~x86-macos +KEYWORDS=~alpha amd64 hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x64-macos ~x86-macos LICENSE=GPL-2 RDEPEND=dev-qt/qtgui:4 dev-qt/qtcore:4 >=dev-libs/boost-1.34 python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] dev-texlive/texlive-fontsextra || ( media-gfx/imagemagick[png] media-gfx/graphicsmagick[png] ) cups? ( net-print/cups ) latex? ( app-text/texlive app-text/ghostscript-gpl app-text/noweb app-text/dvipng dev-tex/dvipost dev-tex/chktex app-text/ps2eps dev-texlive/texlive-latexextra dev-texlive/texlive-pictures dev-texlive/texlive-science dev-texlive/texlive-genericextra dev-texlive/texlive-fontsrecommended || ( dev-tex/latex2html dev-tex/tth dev-tex/hevea dev-tex/tex4ht[java] ) ) html? ( dev-tex/html2latex ) rtf? ( dev-tex/latex2rtf app-text/unrtf dev-tex/html2latex ) linguas_he? ( dev-tex/culmus-latex ) docbook? ( app-text/sgmltools-lite ) dot? ( media-gfx/graphviz ) dia? ( app-office/dia ) subversion? ( =app-shells/bash-3.2 app-shells/zsh ) sys-apps/miscfiles SLOT=0 SRC_URI=http://bash-completion.alioth.debian.org/files/bash-completion-2.1.tar.bz2 _eclasses_=bash-completion-r1 c8399c7c7ecbcf7ed6e5bd3abb3d4af3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf prefix 21058c21ca48453d771df15500873ede toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=f7becdbf4c52e9854ce2f53925dba1d8 +_md5_=bb5407fcce77f0dac6a14fb0c40a0082 diff --git a/metadata/md5-cache/app-shells/dash-0.5.7.4 b/metadata/md5-cache/app-shells/dash-0.5.7.4 index 26465dc531cf..a91212842a79 100644 --- a/metadata/md5-cache/app-shells/dash-0.5.7.4 +++ b/metadata/md5-cache/app-shells/dash-0.5.7.4 @@ -4,10 +4,10 @@ DESCRIPTION=DASH is a direct descendant of the NetBSD version of ash (the Almqui EAPI=4 HOMEPAGE=http://gondor.apana.org.au/~herbert/dash/ IUSE=libedit static -KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos +KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos LICENSE=BSD RDEPEND=!static? ( libedit? ( dev-libs/libedit ) ) SLOT=0 SRC_URI=http://gondor.apana.org.au/~herbert/dash/files/dash-0.5.7.tar.gz mirror://debian/pool/main/d/dash/dash_0.5.7-4.diff.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=9ddca9ae9da285f92ce5332f9e7ecf5a +_md5_=710ce2ec660834b4c84af786281e8f74 diff --git a/metadata/md5-cache/app-text/fbreader-0.99.4-r2 b/metadata/md5-cache/app-text/fbreader-0.99.4-r2 index 18b0f62890cd..2dee916d7c3a 100644 --- a/metadata/md5-cache/app-text/fbreader-0.99.4-r2 +++ b/metadata/md5-cache/app-text/fbreader-0.99.4-r2 @@ -4,10 +4,10 @@ DESCRIPTION=E-Book Reader. Supports many e-book formats EAPI=5 HOMEPAGE=http://www.fbreader.org/ IUSE=debug -KEYWORDS=amd64 ~arm ~ppc ~x86 +KEYWORDS=amd64 ~arm ~ppc x86 LICENSE=GPL-2 RDEPEND=app-arch/bzip2 dev-libs/expat dev-libs/liblinebreak dev-libs/fribidi dev-db/sqlite net-misc/curl sys-libs/zlib dev-qt/qtcore:4[ssl] dev-qt/qtgui:4 SLOT=0 SRC_URI=http://www.fbreader.org/files/desktop/fbreader-sources-0.99.4.tgz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=6cb73601dc9b092e56bf90f47041acc0 +_md5_=fd6f83e458cb67c2344129b35706c3be diff --git a/metadata/md5-cache/app-text/krop-0.4.6 b/metadata/md5-cache/app-text/krop-0.4.6 new file mode 100644 index 000000000000..0b0c107d50b6 --- /dev/null +++ b/metadata/md5-cache/app-text/krop-0.4.6 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/python-poppler-qt4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pyPdf[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DESCRIPTION=A tool to crop PDF files +EAPI=5 +HOMEPAGE=http://arminstraub.com/software/krop +IUSE=python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=dev-python/python-poppler-qt4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pyPdf[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 ) +SLOT=0 +SRC_URI=http://arminstraub.com/downloads/krop/krop-0.4.6.tar.gz +_eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 +_md5_=cd686b960ed02d58d637f108234b9905 diff --git a/metadata/md5-cache/app-text/lcdf-typetools-2.104 b/metadata/md5-cache/app-text/lcdf-typetools-2.104 new file mode 100644 index 000000000000..8a1a2a8c3668 --- /dev/null +++ b/metadata/md5-cache/app-text/lcdf-typetools-2.104 @@ -0,0 +1,12 @@ +DEFINED_PHASES=configure install +DEPEND=kpathsea? ( virtual/tex-base ) +DESCRIPTION=Font utilities for eg manipulating OTF +EAPI=2 +HOMEPAGE=http://www.lcdf.org/type/#typetools +IUSE=+kpathsea +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +LICENSE=GPL-2 +RDEPEND=kpathsea? ( virtual/tex-base ) +SLOT=0 +SRC_URI=http://www.lcdf.org/type/lcdf-typetools-2.104.tar.gz +_md5_=939ad45c6dc74814a04db0362f24e2cf diff --git a/metadata/md5-cache/app-text/libabw-0.1.0 b/metadata/md5-cache/app-text/libabw-0.1.0 index 83e5474ddfb2..0a58678c4c30 100644 --- a/metadata/md5-cache/app-text/libabw-0.1.0 +++ b/metadata/md5-cache/app-text/libabw-0.1.0 @@ -4,10 +4,10 @@ DESCRIPTION=Library parsing abiword documents EAPI=5 HOMEPAGE=http://www.freedesktop.org/wiki/Software/libabw/ IUSE=doc static-libs -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~arm ~x86 LICENSE=MPL-2.0 RDEPEND=dev-libs/librevenge dev-libs/libxml2 sys-libs/zlib SLOT=0 SRC_URI=http://dev-www.libreoffice.org/src/libabw/libabw-0.1.0.tar.xz _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=46a908c0e07f557e2e2905a832b69a77 +_md5_=6f6461c9acae8c3d8b2e87d29f3ef4f5 diff --git a/metadata/md5-cache/app-text/libebook-0.1.1 b/metadata/md5-cache/app-text/libebook-0.1.1 index 66c700be552c..47288e89da1c 100644 --- a/metadata/md5-cache/app-text/libebook-0.1.1 +++ b/metadata/md5-cache/app-text/libebook-0.1.1 @@ -4,10 +4,10 @@ DESCRIPTION=Library parsing various ebook formats EAPI=5 HOMEPAGE=http://www.sourceforge.net/projects/libebook/ IUSE=doc test -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~arm ~x86 LICENSE=MPL-2.0 RDEPEND=dev-libs/icu:= dev-libs/librevenge dev-libs/libxml2 sys-libs/zlib SLOT=0 SRC_URI=mirror://sourceforge/libebook/libe-book-0.1.1.tar.bz2 _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=12516c1165179b66ef0528ff694f8b23 +_md5_=7676122b3f650994b4d162022a448241 diff --git a/metadata/md5-cache/app-text/libetonyek-0.1.1 b/metadata/md5-cache/app-text/libetonyek-0.1.1 index a65a0e99acf8..fc1fd7f12a1d 100644 --- a/metadata/md5-cache/app-text/libetonyek-0.1.1 +++ b/metadata/md5-cache/app-text/libetonyek-0.1.1 @@ -4,10 +4,10 @@ DESCRIPTION=Library parsing Apple Keynote presentations EAPI=5 HOMEPAGE=https://wiki.documentfoundation.org/DLP/Libraries/libetonyek IUSE=doc static-libs test -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~arm ~x86 LICENSE=|| ( GPL-2+ LGPL-2.1 MPL-1.1 ) RDEPEND=dev-libs/boost:= dev-libs/librevenge dev-libs/libxml2 sys-libs/zlib SLOT=0 SRC_URI=http://dev-www.libreoffice.org/src/libetonyek/libetonyek-0.1.1.tar.xz _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=8100d742d8f15fca6f42718e4e962bde +_md5_=4bff7593c7199079757e201357fe0561 diff --git a/metadata/md5-cache/app-text/libmspub-0.1.1 b/metadata/md5-cache/app-text/libmspub-0.1.1 index a1dc42e2d34c..5be2c84a6340 100644 --- a/metadata/md5-cache/app-text/libmspub-0.1.1 +++ b/metadata/md5-cache/app-text/libmspub-0.1.1 @@ -4,10 +4,10 @@ DESCRIPTION=Library parsing Microsoft Publisher documents EAPI=5 HOMEPAGE=https://wiki.documentfoundation.org/DLP/Libraries/libmspub IUSE=doc static-libs -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~arm ~x86 LICENSE=LGPL-2.1 RDEPEND=dev-libs/icu:= dev-libs/librevenge sys-libs/zlib SLOT=0 SRC_URI=http://dev-www.libreoffice.org/src/libmspub/libmspub-0.1.1.tar.xz _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=8f4d7d58a247cd6e0d93c56a6dd38280 +_md5_=aab830c178f8de2cba8b42f709dde98d diff --git a/metadata/md5-cache/app-text/libmwaw-0.3.1 b/metadata/md5-cache/app-text/libmwaw-0.3.1 index be6af3a9c87e..3841300d9f84 100644 --- a/metadata/md5-cache/app-text/libmwaw-0.3.1 +++ b/metadata/md5-cache/app-text/libmwaw-0.3.1 @@ -4,10 +4,10 @@ DESCRIPTION=Library parsing many pre-OSX MAC text formats EAPI=5 HOMEPAGE=http://sourceforge.net/p/libmwaw/wiki/Home/ IUSE=doc static-libs -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~arm ~x86 LICENSE=LGPL-2.1 RDEPEND=dev-libs/librevenge dev-libs/libxml2 sys-libs/zlib SLOT=0 SRC_URI=mirror://sourceforge/libmwaw/libmwaw-0.3.1.tar.xz _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=a62f409fc2444a286f50aa0f03b4bc5f +_md5_=41c7d144a7b8d10df643305de35b0c3e diff --git a/metadata/md5-cache/app-text/libodfgen-0.1.1 b/metadata/md5-cache/app-text/libodfgen-0.1.1 index 365e6ebe7bf7..67d4e051b1e4 100644 --- a/metadata/md5-cache/app-text/libodfgen-0.1.1 +++ b/metadata/md5-cache/app-text/libodfgen-0.1.1 @@ -3,10 +3,10 @@ DEPEND=dev-libs/librevenge >=dev-libs/boost-1.46 virtual/pkgconfig DESCRIPTION=Library to generate ODF documents from libwpd and libwpg EAPI=5 HOMEPAGE=http://libwpd.sf.net -KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=~amd64 ~arm ~x86 ~amd64-linux ~x86-linux LICENSE=|| ( LGPL-2.1 MPL-2.0 ) RDEPEND=dev-libs/librevenge SLOT=0 SRC_URI=mirror://sourceforge/libwpd/libodfgen-0.1.1.tar.xz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=f819686865f722cc50a6c92a5f8a372f +_md5_=ed429d6b170fd90adf7c470bde41ed31 diff --git a/metadata/md5-cache/app-text/libwpd-0.10.0 b/metadata/md5-cache/app-text/libwpd-0.10.0 index cf3a630a7eda..d41b3b9016b9 100644 --- a/metadata/md5-cache/app-text/libwpd-0.10.0 +++ b/metadata/md5-cache/app-text/libwpd-0.10.0 @@ -4,10 +4,10 @@ DESCRIPTION=WordPerfect Document import/export library EAPI=5 HOMEPAGE=http://libwpd.sf.net IUSE=doc test +tools -KEYWORDS=~amd64 ~hppa ~mips ~x86 ~x86-fbsd +KEYWORDS=~amd64 ~arm ~hppa ~mips ~x86 ~x86-fbsd LICENSE=|| ( LGPL-2.1 MPL-2.0 ) RDEPEND=dev-libs/librevenge ! mupdf-1.5.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 -_md5_=9761492425ff46c8079ee7059f605586 +_md5_=e64d417ceb08d8f23efb68111c4aaccd diff --git a/metadata/md5-cache/app-text/mupdf-9999 b/metadata/md5-cache/app-text/mupdf-9999 index 5300179227d4..def5d9f77b2d 100644 --- a/metadata/md5-cache/app-text/mupdf-9999 +++ b/metadata/md5-cache/app-text/mupdf-9999 @@ -8,4 +8,4 @@ LICENSE=AGPL-3 RDEPEND=dev-libs/openssl[static-libs?] media-libs/freetype:2[static-libs?] media-libs/jbig2dec[static-libs?] media-libs/openjpeg:2[static-libs?] net-misc/curl[static-libs?] virtual/jpeg[static-libs?] X? ( x11-libs/libX11[static-libs?] x11-libs/libXext[static-libs?] ) SLOT=0/1.5 _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c git-2 2027b81a576527fa16bece425941e094 git-r3 6ebae45064cb04482f3c702632dd9528 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=ea3c4110a4b7d5bbd325b340e6be97df +_md5_=99dea73972f801743d021c91dff2b3d4 diff --git a/metadata/md5-cache/app-text/wgetpaste-2.25-r2 b/metadata/md5-cache/app-text/wgetpaste-2.25-r2 index 65fefcf0fca1..2fab1bcd56fa 100644 --- a/metadata/md5-cache/app-text/wgetpaste-2.25-r2 +++ b/metadata/md5-cache/app-text/wgetpaste-2.25-r2 @@ -2,10 +2,10 @@ DEFINED_PHASES=install prepare DESCRIPTION=Command-line interface to various pastebins EAPI=5 HOMEPAGE=http://wgetpaste.zlin.dk/ -KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris LICENSE=public-domain RDEPEND=net-misc/wget SLOT=0 SRC_URI=http://wgetpaste.zlin.dk/wgetpaste-2.25.tar.bz2 _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=eed76f368836a87f3f34e173a3333044 +_md5_=490b7589ea5ff1e356e90e4ab6eef1e1 diff --git a/metadata/md5-cache/app-text/wgetpaste-2.25-r3 b/metadata/md5-cache/app-text/wgetpaste-2.25-r3 index 363254e18ba5..6e2951088a99 100644 --- a/metadata/md5-cache/app-text/wgetpaste-2.25-r3 +++ b/metadata/md5-cache/app-text/wgetpaste-2.25-r3 @@ -2,10 +2,10 @@ DEFINED_PHASES=install prepare DESCRIPTION=Command-line interface to various pastebins EAPI=5 HOMEPAGE=http://wgetpaste.zlin.dk/ -KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris LICENSE=public-domain RDEPEND=net-misc/wget SLOT=0 SRC_URI=http://wgetpaste.zlin.dk/wgetpaste-2.25.tar.bz2 _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=b301feaec194c4d68fccc69b19aac18a +_md5_=2acfcd504f331610ef764b0b645e2bc9 diff --git a/metadata/md5-cache/dev-cpp/eigen-3.1.3 b/metadata/md5-cache/dev-cpp/eigen-3.1.3 index 4ecd50f7d34a..198b0ea33dde 100644 --- a/metadata/md5-cache/dev-cpp/eigen-3.1.3 +++ b/metadata/md5-cache/dev-cpp/eigen-3.1.3 @@ -4,10 +4,10 @@ DESCRIPTION=C++ template library for linear algebra: vectors, matrices, and rela EAPI=4 HOMEPAGE=http://eigen.tuxfamily.org/ IUSE=debug doc -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux LICENSE=LGPL-2 GPL-3 RDEPEND=!dev-cpp/eigen:0 SLOT=3 SRC_URI=http://bitbucket.org/eigen/eigen/get/3.1.3.tar.bz2 -> eigen-3.1.3.tar.bz2 _eclasses_=cmake-utils da2974fcb060ec927e93a17c835afa67 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=a8611228f48e772f347773c8798db44a +_md5_=136afe02fda115c46e3559345ecf8e58 diff --git a/metadata/md5-cache/dev-db/mysql-connector-c++-1.1.3 b/metadata/md5-cache/dev-db/mysql-connector-c++-1.1.3 index 29bc30ab9a7c..15bb286dfd1a 100644 --- a/metadata/md5-cache/dev-db/mysql-connector-c++-1.1.3 +++ b/metadata/md5-cache/dev-db/mysql-connector-c++-1.1.3 @@ -4,10 +4,10 @@ DESCRIPTION=MySQL database connector for C++ (mimics JDBC 4.0 API) EAPI=5 HOMEPAGE=http://dev.mysql.com/downloads/connector/cpp/ IUSE=debug examples gcov static-libs -KEYWORDS=amd64 arm ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=amd64 arm ~ppc ~ppc64 ~sparc x86 LICENSE=GPL-2 RDEPEND=>=virtual/mysql-5.1 dev-libs/boost dev-libs/openssl SLOT=0 SRC_URI=mirror://mysql/Downloads/Connector-C++/mysql-connector-c++-1.1.3.tar.gz _eclasses_=cmake-utils da2974fcb060ec927e93a17c835afa67 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=70b8454765289af6da4af3ac72910547 +_md5_=a71ac114b82a42fb2ab3ee061ba1ce04 diff --git a/metadata/md5-cache/dev-db/sqlite-3.8.6 b/metadata/md5-cache/dev-db/sqlite-3.8.6 index b03fd1080ee7..951ed14f5727 100644 --- a/metadata/md5-cache/dev-db/sqlite-3.8.6 +++ b/metadata/md5-cache/dev-db/sqlite-3.8.6 @@ -4,10 +4,10 @@ DESCRIPTION=A SQL Database Engine in a C Library EAPI=5 HOMEPAGE=http://sqlite.org/ IUSE=debug doc icu +readline secure-delete static-libs tcl test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=public-domain RDEPEND=icu? ( dev-libs/icu:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) readline? ( sys-libs/readline[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tcl? ( dev-lang/tcl:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20131008-r14 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) SLOT=3 SRC_URI=doc? ( http://sqlite.org/2014/sqlite-doc-3080600.zip ) tcl? ( http://sqlite.org/2014/sqlite-src-3080600.zip ) !tcl? ( test? ( http://sqlite.org/2014/sqlite-src-3080600.zip ) !test? ( http://sqlite.org/2014/sqlite-autoconf-3080600.tar.gz ) ) _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 libtool 52d0e17251d04645ffaa61bfdd858944 multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multilib-build 9eb4b5fb858228316d8bb32ada51f6a5 multilib-minimal 5bbdc77877c1aa3c6bd89ca3f9196d11 multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=040bcc2bbd1b4d000d03e60e3aa9e33f +_md5_=7c69713bdc11898c62d8feceacb3ee79 diff --git a/metadata/md5-cache/dev-db/tinycdb-0.77-r2 b/metadata/md5-cache/dev-db/tinycdb-0.77-r2 index bf6b1168b60f..10ce0e5d19a8 100644 --- a/metadata/md5-cache/dev-db/tinycdb-0.77-r2 +++ b/metadata/md5-cache/dev-db/tinycdb-0.77-r2 @@ -10,4 +10,4 @@ RESTRICT=test SLOT=0 SRC_URI=http://www.corpit.ru/mjt/tinycdb/tinycdb_0.77.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=e528cbee3ceadc89b59f3122f188b8cc +_md5_=1d0fa584125b3318de0956fccd461e9b diff --git a/metadata/md5-cache/dev-games/openscenegraph-3.2.1 b/metadata/md5-cache/dev-games/openscenegraph-3.2.1 new file mode 100644 index 000000000000..12ccd23f7684 --- /dev/null +++ b/metadata/md5-cache/dev-games/openscenegraph-3.2.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=x11-libs/libSM x11-libs/libXext virtual/glu virtual/opengl asio? ( dev-cpp/asio ) curl? ( net-misc/curl ) examples? ( fltk? ( x11-libs/fltk:1[opengl] ) fox? ( x11-libs/fox:1.6[opengl] ) glut? ( media-libs/freeglut ) gtk? ( x11-libs/gtkglext ) qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtopengl:4 ) sdl? ( media-libs/libsdl ) wxwidgets? ( x11-libs/wxGTK[opengl,X] ) ) ffmpeg? ( virtual/ffmpeg ) gdal? ( sci-libs/gdal ) gif? ( media-libs/giflib ) jpeg? ( virtual/jpeg ) jpeg2k? ( media-libs/jasper ) openexr? ( media-libs/ilmbase media-libs/openexr ) openinventor? ( media-libs/coin ) pdf? ( app-text/poppler[cairo] ) png? ( media-libs/libpng:0 ) svg? ( gnome-base/librsvg x11-libs/cairo ) tiff? ( media-libs/tiff:0 ) truetype? ( media-libs/freetype:2 ) vnc? ( net-libs/libvncserver ) xine? ( media-libs/xine-lib ) xrandr? ( x11-libs/libXrandr ) zlib? ( sys-libs/zlib ) app-arch/unzip virtual/pkgconfig x11-proto/xextproto doc? ( app-doc/doxygen ) xrandr? ( x11-proto/randrproto ) sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) +DESCRIPTION=Open source high performance 3D graphics toolkit +EAPI=5 +HOMEPAGE=http://www.openscenegraph.org/projects/osg/ +IUSE=asio curl debug doc examples ffmpeg fltk fox gdal gif glut gtk jpeg jpeg2k openexr openinventor osgapps pdf png qt4 sdl svg tiff truetype vnc wxwidgets xine xrandr zlib +KEYWORDS=~amd64 ~ppc ~x86 +LICENSE=wxWinLL-3 LGPL-2.1 +RDEPEND=x11-libs/libSM x11-libs/libXext virtual/glu virtual/opengl asio? ( dev-cpp/asio ) curl? ( net-misc/curl ) examples? ( fltk? ( x11-libs/fltk:1[opengl] ) fox? ( x11-libs/fox:1.6[opengl] ) glut? ( media-libs/freeglut ) gtk? ( x11-libs/gtkglext ) qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtopengl:4 ) sdl? ( media-libs/libsdl ) wxwidgets? ( x11-libs/wxGTK[opengl,X] ) ) ffmpeg? ( virtual/ffmpeg ) gdal? ( sci-libs/gdal ) gif? ( media-libs/giflib ) jpeg? ( virtual/jpeg ) jpeg2k? ( media-libs/jasper ) openexr? ( media-libs/ilmbase media-libs/openexr ) openinventor? ( media-libs/coin ) pdf? ( app-text/poppler[cairo] ) png? ( media-libs/libpng:0 ) svg? ( gnome-base/librsvg x11-libs/cairo ) tiff? ( media-libs/tiff:0 ) truetype? ( media-libs/freetype:2 ) vnc? ( net-libs/libvncserver ) xine? ( media-libs/xine-lib ) xrandr? ( x11-libs/libXrandr ) zlib? ( sys-libs/zlib ) +SLOT=0 +SRC_URI=http://www.openscenegraph.org/downloads/developer_releases/OpenSceneGraph-3.2.1.zip +_eclasses_=cmake-utils da2974fcb060ec927e93a17c835afa67 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 wxwidgets 6d6eec2685256d35511e7b6d5461bec9 +_md5_=433cf6439f77406fc6d94e0d9b510e40 diff --git a/metadata/md5-cache/dev-haskell/hspec-expectations-0.5.0.1 b/metadata/md5-cache/dev-haskell/hspec-expectations-0.5.0.1 index 97bc89fadc7c..5b1acaa79974 100644 --- a/metadata/md5-cache/dev-haskell/hspec-expectations-0.5.0.1 +++ b/metadata/md5-cache/dev-haskell/hspec-expectations-0.5.0.1 @@ -4,10 +4,10 @@ DESCRIPTION=Catchy combinators for HUnit EAPI=5 HOMEPAGE=https://github.com/sol/hspec-expectations#readme IUSE=doc hscolour profile test -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=MIT RDEPEND=dev-haskell/hunit:=[profile?] >=dev-lang/ghc-6.10.4:= SLOT=0/0.5.0.1 SRC_URI=mirror://hackage/packages/archive/hspec-expectations/0.5.0.1/hspec-expectations-0.5.0.1.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c ghc-package 9dd58db252d8252779bb74ed015196e3 haskell-cabal b6154aeaa4dfbbc6d8a66d7f739c22d1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=53060c270751c0efe51005ff04e6d8b9 +_md5_=9163b579df96894aa402ce5181c169cc diff --git a/metadata/md5-cache/dev-java/jruby-1.6.8-r1 b/metadata/md5-cache/dev-java/jruby-1.6.8-r1 deleted file mode 100644 index d4c45ba06c0e..000000000000 --- a/metadata/md5-cache/dev-java/jruby-1.6.8-r1 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup test -DEPEND=>=dev-java/bytelist-1.0.8:0 >=dev-java/jline-1.0:0 >=dev-java/joni-1.1.3:0 >=dev-java/jnr-netdb-1.0:0 >=dev-java/jvyamlb-0.2.5:0 >=dev-java/asm-3.3.1:3 >=dev-java/jcodings-1.0.5:0 dev-java/jffi:1.0 dev-java/jnr-constants:0 dev-java/jnr-ffi:0.5 dev-java/jnr-posix:1.1 >=dev-java/joda-time-1.6:0 dev-util/jay:0[java] dev-java/nailgun:0 dev-java/jgrapht:0 dev-java/ant-core:0 dev-java/bsf:2.3 dev-java/osgi-core-api:0 dev-java/snakeyaml:1.9 dev-java/jzlib:1.1 >=virtual/jdk-1.6 =dev-java/java-config-2.1.9-r1 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=Java-based Ruby interpreter implementation -EAPI=4 -HOMEPAGE=http://jruby.codehaus.org/ -IUSE=bsf ssl elibc_FreeBSD doc source test elibc_FreeBSD -KEYWORDS=amd64 x86 ~amd64-linux ~x86-linux ~x86-macos -LICENSE=|| ( CPL-1.0 GPL-2 LGPL-2.1 ) -PDEPEND=ssl? ( dev-ruby/jruby-openssl ) -RDEPEND=>=dev-java/bytelist-1.0.8:0 >=dev-java/jline-1.0:0 >=dev-java/joni-1.1.3:0 >=dev-java/jnr-netdb-1.0:0 >=dev-java/jvyamlb-0.2.5:0 >=dev-java/asm-3.3.1:3 >=dev-java/jcodings-1.0.5:0 dev-java/jffi:1.0 dev-java/jnr-constants:0 dev-java/jnr-ffi:0.5 dev-java/jnr-posix:1.1 >=dev-java/joda-time-1.6:0 dev-util/jay:0[java] dev-java/nailgun:0 dev-java/jgrapht:0 dev-java/ant-core:0 dev-java/bsf:2.3 dev-java/osgi-core-api:0 dev-java/snakeyaml:1.9 dev-java/jzlib:1.1 >=virtual/jre-1.6 =dev-java/java-config-2.1.9-r1 source? ( app-arch/zip ) -RESTRICT=test -SLOT=0 -SRC_URI=http://jruby.org.s3.amazonaws.com/downloads/1.6.8/jruby-src-1.6.8.tar.gz -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-ant-2 5f5bada6517ed26bc25083134e42b146 java-pkg-2 65bbb59987d777c1106ae8aa4bf36e7b java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=a39de335b57c6a166396ff829917ab0f diff --git a/metadata/md5-cache/dev-java/jython-2.7_beta2-r2 b/metadata/md5-cache/dev-java/jython-2.7_beta2-r2 new file mode 100644 index 000000000000..86b44c450e2a --- /dev/null +++ b/metadata/md5-cache/dev-java/jython-2.7_beta2-r2 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install postinst preinst prepare setup test +DEPEND=dev-java/antlr:3 dev-java/asm:4 dev-java/commons-compress:0 dev-java/guava:13 >=dev-java/java-config-2.1.11-r3 dev-java/jffi:1.2 dev-java/jline:0 dev-java/icu4j:52 dev-java/jnr-constants:0 dev-java/jnr-posix:2.1 dev-java/stringtemplate:0 dev-java/xerces:2 java-virtuals/script-api:0 java-virtuals/servlet-api:2.5 readline? ( >=dev-java/libreadline-java-0.8.0:0 ) >=virtual/jdk-1.7 app-arch/unzip test? ( dev-java/junit:4 dev-java/ant-junit:0 ) >=dev-java/java-config-2.1.9-r1 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2 >=dev-java/javatoolkit-0.3.0-r2 +DESCRIPTION=An implementation of Python written in Java +EAPI=5 +HOMEPAGE=http://www.jython.org +IUSE=+readline test elibc_FreeBSD doc examples source elibc_FreeBSD +KEYWORDS=~amd64 ~x86 ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos +LICENSE=PSF-2 +RDEPEND=dev-java/antlr:3 dev-java/asm:4 dev-java/commons-compress:0 dev-java/guava:13 >=dev-java/java-config-2.1.11-r3 dev-java/jffi:1.2 dev-java/jline:0 dev-java/icu4j:52 dev-java/jnr-constants:0 dev-java/jnr-posix:2.1 dev-java/stringtemplate:0 dev-java/xerces:2 java-virtuals/script-api:0 java-virtuals/servlet-api:2.5 readline? ( >=dev-java/libreadline-java-0.8.0:0 ) >=virtual/jre-1.7 >=dev-java/java-config-2.1.9-r1 source? ( app-arch/zip ) +REQUIRED_USE=test? ( readline ) +RESTRICT=test +SLOT=2.7 +SRC_URI=http://search.maven.org/remotecontent?filepath=org/python/jython/2.7-b2/jython-2.7-b2-sources.jar +_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 java-ant-2 5f5bada6517ed26bc25083134e42b146 java-pkg-2 65bbb59987d777c1106ae8aa4bf36e7b java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f +_md5_=055a97c18e3c1b48681a40b51d2983b5 diff --git a/metadata/md5-cache/dev-java/nekohtml-1.9.18 b/metadata/md5-cache/dev-java/nekohtml-1.9.18 index 1d03c93a7c7b..aa8dc68efaff 100644 --- a/metadata/md5-cache/dev-java/nekohtml-1.9.18 +++ b/metadata/md5-cache/dev-java/nekohtml-1.9.18 @@ -4,10 +4,10 @@ DESCRIPTION=A simple HTML scanner and tag balancer using standard XML interfaces EAPI=5 HOMEPAGE=http://nekohtml.sourceforge.net/ IUSE=elibc_FreeBSD doc examples source test elibc_FreeBSD -KEYWORDS=~amd64 ~ppc x86 +KEYWORDS=amd64 ~ppc x86 LICENSE=Apache-2.0 RDEPEND=>=virtual/jre-1.4 >=dev-java/xerces-2.7 >=dev-java/java-config-2.1.9-r1 source? ( app-arch/zip ) SLOT=0 SRC_URI=mirror://sourceforge/nekohtml/nekohtml-1.9.18.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-ant-2 5f5bada6517ed26bc25083134e42b146 java-pkg-2 65bbb59987d777c1106ae8aa4bf36e7b java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=1222373b9d409c2de5a026d2bf468abe +_md5_=163702a62e3f0ddcf189d77cefddd515 diff --git a/metadata/md5-cache/dev-lang/parrot-6.1.0 b/metadata/md5-cache/dev-lang/parrot-6.1.0 deleted file mode 100644 index ccff4b874f7e..000000000000 --- a/metadata/md5-cache/dev-lang/parrot-6.1.0 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install test -DEPEND=dev-lang/perl[doc?] sys-libs/readline opengl? ( media-libs/freeglut ) nls? ( sys-devel/gettext ) unicode? ( >=dev-libs/icu-2.6:= ) gdbm? ( >=sys-libs/gdbm-1.8.3-r1 ) gmp? ( >=dev-libs/gmp-4.1.4 ) ssl? ( dev-libs/openssl ) pcre? ( dev-libs/libpcre ) doc? ( dev-perl/JSON ) -DESCRIPTION=Virtual machine designed to efficiently compile and execute bytecode for dynamic languages -EAPI=5 -HOMEPAGE=http://www.parrot.org/ -IUSE=opengl nls doc examples gdbm gmp ssl +unicode pcre -KEYWORDS=~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos -LICENSE=Artistic-2 -RDEPEND=sys-libs/readline opengl? ( media-libs/freeglut ) nls? ( sys-devel/gettext ) unicode? ( >=dev-libs/icu-2.6:= ) gdbm? ( >=sys-libs/gdbm-1.8.3-r1 ) gmp? ( >=dev-libs/gmp-4.1.4 ) ssl? ( dev-libs/openssl ) pcre? ( dev-libs/libpcre ) doc? ( dev-perl/JSON ) -RESTRICT=test -SLOT=0/6.1.0 -SRC_URI=ftp://ftp.parrot.org/pub/parrot/releases/devel/6.1.0/parrot-6.1.0.tar.gz -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=a5a108ae052795663c20cd7526166b07 diff --git a/metadata/md5-cache/dev-lang/parrot-6.2.0 b/metadata/md5-cache/dev-lang/parrot-6.2.0-r1 similarity index 95% rename from metadata/md5-cache/dev-lang/parrot-6.2.0 rename to metadata/md5-cache/dev-lang/parrot-6.2.0-r1 index 64bcecf0c61d..896d73776480 100644 --- a/metadata/md5-cache/dev-lang/parrot-6.2.0 +++ b/metadata/md5-cache/dev-lang/parrot-6.2.0-r1 @@ -8,7 +8,7 @@ KEYWORDS=~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64- LICENSE=Artistic-2 RDEPEND=sys-libs/readline opengl? ( media-libs/freeglut ) nls? ( sys-devel/gettext ) unicode? ( >=dev-libs/icu-2.6:= ) gdbm? ( >=sys-libs/gdbm-1.8.3-r1 ) gmp? ( >=dev-libs/gmp-4.1.4 ) ssl? ( dev-libs/openssl ) pcre? ( dev-libs/libpcre ) doc? ( dev-perl/JSON ) RESTRICT=test -SLOT=0/6.1.0 +SLOT=0/6.2.0 SRC_URI=ftp://ftp.parrot.org/pub/parrot/releases/devel/6.2.0/parrot-6.2.0.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=0ae61dd0079cf91eab70c340e49594fd +_md5_=c0e7d54b8b8bf5edb6abe44a2158bf1e diff --git a/metadata/md5-cache/dev-lang/parrot-6.3.0 b/metadata/md5-cache/dev-lang/parrot-6.3.0-r1 similarity index 95% rename from metadata/md5-cache/dev-lang/parrot-6.3.0 rename to metadata/md5-cache/dev-lang/parrot-6.3.0-r1 index 071ff971a81a..36be1b4ebd60 100644 --- a/metadata/md5-cache/dev-lang/parrot-6.3.0 +++ b/metadata/md5-cache/dev-lang/parrot-6.3.0-r1 @@ -8,7 +8,7 @@ KEYWORDS=~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64- LICENSE=Artistic-2 RDEPEND=sys-libs/readline opengl? ( media-libs/freeglut ) nls? ( sys-devel/gettext ) unicode? ( >=dev-libs/icu-2.6:= ) gdbm? ( >=sys-libs/gdbm-1.8.3-r1 ) gmp? ( >=dev-libs/gmp-4.1.4 ) ssl? ( dev-libs/openssl ) pcre? ( dev-libs/libpcre ) doc? ( dev-perl/JSON ) RESTRICT=test -SLOT=0/6.1.0 +SLOT=0/6.3.0 SRC_URI=ftp://ftp.parrot.org/pub/parrot/releases/all/6.3.0/parrot-6.3.0.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=4a8a2bcbde69dbc86280b127a10d8774 +_md5_=d92ca888d4119db955384852d5d9f009 diff --git a/metadata/md5-cache/dev-lang/parrot-6.4.0 b/metadata/md5-cache/dev-lang/parrot-6.4.0-r1 similarity index 95% rename from metadata/md5-cache/dev-lang/parrot-6.4.0 rename to metadata/md5-cache/dev-lang/parrot-6.4.0-r1 index fab6f6d1e61d..bf690da6ed0d 100644 --- a/metadata/md5-cache/dev-lang/parrot-6.4.0 +++ b/metadata/md5-cache/dev-lang/parrot-6.4.0-r1 @@ -8,7 +8,7 @@ KEYWORDS=~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64- LICENSE=Artistic-2 RDEPEND=sys-libs/readline opengl? ( media-libs/freeglut ) nls? ( sys-devel/gettext ) unicode? ( >=dev-libs/icu-2.6:= ) gdbm? ( >=sys-libs/gdbm-1.8.3-r1 ) gmp? ( >=dev-libs/gmp-4.1.4 ) ssl? ( dev-libs/openssl ) pcre? ( dev-libs/libpcre ) doc? ( dev-perl/JSON ) RESTRICT=test -SLOT=0/6.1.0 +SLOT=0/6.4.0 SRC_URI=ftp://ftp.parrot.org/pub/parrot/releases/all/6.4.0/parrot-6.4.0.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=d19835c1ed6e67c7383828f2c9e0db89 +_md5_=92e19e7683a4d653c2803cfe86bb8b38 diff --git a/metadata/md5-cache/dev-lang/parrot-6.5.0 b/metadata/md5-cache/dev-lang/parrot-6.5.0-r1 similarity index 95% rename from metadata/md5-cache/dev-lang/parrot-6.5.0 rename to metadata/md5-cache/dev-lang/parrot-6.5.0-r1 index f3db8fa6a761..e296806ede29 100644 --- a/metadata/md5-cache/dev-lang/parrot-6.5.0 +++ b/metadata/md5-cache/dev-lang/parrot-6.5.0-r1 @@ -8,7 +8,7 @@ KEYWORDS=~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64- LICENSE=Artistic-2 RDEPEND=sys-libs/readline opengl? ( media-libs/freeglut ) nls? ( sys-devel/gettext ) unicode? ( >=dev-libs/icu-2.6:= ) gdbm? ( >=sys-libs/gdbm-1.8.3-r1 ) gmp? ( >=dev-libs/gmp-4.1.4 ) ssl? ( dev-libs/openssl ) pcre? ( dev-libs/libpcre ) doc? ( dev-perl/JSON ) RESTRICT=test -SLOT=0/6.1.0 +SLOT=0/6.5.0 SRC_URI=ftp://ftp.parrot.org/pub/parrot/releases/all/6.5.0/parrot-6.5.0.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=5a4418c03eeb252bf0d67202950111dc +_md5_=ceef1c0fdbf5bf84e139b86a3cf2922b diff --git a/metadata/md5-cache/dev-lang/parrot-6.6.0 b/metadata/md5-cache/dev-lang/parrot-6.6.0-r1 similarity index 95% rename from metadata/md5-cache/dev-lang/parrot-6.6.0 rename to metadata/md5-cache/dev-lang/parrot-6.6.0-r1 index 45fa2cc24293..adc7c28a655b 100644 --- a/metadata/md5-cache/dev-lang/parrot-6.6.0 +++ b/metadata/md5-cache/dev-lang/parrot-6.6.0-r1 @@ -8,7 +8,7 @@ KEYWORDS=~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64- LICENSE=Artistic-2 RDEPEND=sys-libs/readline opengl? ( media-libs/freeglut ) nls? ( sys-devel/gettext ) unicode? ( >=dev-libs/icu-2.6:= ) gdbm? ( >=sys-libs/gdbm-1.8.3-r1 ) gmp? ( >=dev-libs/gmp-4.1.4 ) ssl? ( dev-libs/openssl ) pcre? ( dev-libs/libpcre ) doc? ( dev-perl/JSON ) RESTRICT=test -SLOT=0/6.1.0 +SLOT=0/6.6.0 SRC_URI=ftp://ftp.parrot.org/pub/parrot/releases/all/6.6.0/parrot-6.6.0.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=a9bb9aeae9b57ad23c04a0160abe114f +_md5_=eb2f3b4077a8e4f3479f50f74f12588b diff --git a/metadata/md5-cache/dev-lang/parrot-6.7.0 b/metadata/md5-cache/dev-lang/parrot-6.7.0-r1 similarity index 95% rename from metadata/md5-cache/dev-lang/parrot-6.7.0 rename to metadata/md5-cache/dev-lang/parrot-6.7.0-r1 index 30fb15276597..8bfed2ef3c69 100644 --- a/metadata/md5-cache/dev-lang/parrot-6.7.0 +++ b/metadata/md5-cache/dev-lang/parrot-6.7.0-r1 @@ -8,7 +8,7 @@ KEYWORDS=~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64- LICENSE=Artistic-2 RDEPEND=sys-libs/readline opengl? ( media-libs/freeglut ) nls? ( sys-devel/gettext ) unicode? ( >=dev-libs/icu-2.6:= ) gdbm? ( >=sys-libs/gdbm-1.8.3-r1 ) gmp? ( >=dev-libs/gmp-4.1.4 ) ssl? ( dev-libs/openssl ) pcre? ( dev-libs/libpcre ) doc? ( dev-perl/JSON ) RESTRICT=test -SLOT=0/6.1.0 +SLOT=0/6.7.0 SRC_URI=ftp://ftp.parrot.org/pub/parrot/releases/all/6.7.0/parrot-6.7.0.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=0643b378f393a0a3af0fd53a73c97545 +_md5_=5a6591145310c7b858ae6c6c1e312617 diff --git a/metadata/md5-cache/dev-lang/parrot-6.8.0 b/metadata/md5-cache/dev-lang/parrot-6.8.0-r1 similarity index 95% rename from metadata/md5-cache/dev-lang/parrot-6.8.0 rename to metadata/md5-cache/dev-lang/parrot-6.8.0-r1 index 4c7889504a2e..d30da8c2948c 100644 --- a/metadata/md5-cache/dev-lang/parrot-6.8.0 +++ b/metadata/md5-cache/dev-lang/parrot-6.8.0-r1 @@ -8,7 +8,7 @@ KEYWORDS=~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64- LICENSE=Artistic-2 RDEPEND=sys-libs/readline opengl? ( media-libs/freeglut ) nls? ( sys-devel/gettext ) unicode? ( >=dev-libs/icu-2.6:= ) gdbm? ( >=sys-libs/gdbm-1.8.3-r1 ) gmp? ( >=dev-libs/gmp-4.1.4 ) ssl? ( dev-libs/openssl ) pcre? ( dev-libs/libpcre ) doc? ( dev-perl/JSON ) RESTRICT=test -SLOT=0/6.1.0 +SLOT=0/6.8.0 SRC_URI=ftp://ftp.parrot.org/pub/parrot/releases/all/6.8.0/parrot-6.8.0.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=a0e58d6411d2693862fada3087c9da47 +_md5_=22d427d743e0746f3765d646c7c0d0c3 diff --git a/metadata/md5-cache/dev-lang/php-5.3.29 b/metadata/md5-cache/dev-lang/php-5.3.29 index 4087a7cf9b17..6f5c89f9ae6f 100644 --- a/metadata/md5-cache/dev-lang/php-5.3.29 +++ b/metadata/md5-cache/dev-lang/php-5.3.29 @@ -11,4 +11,4 @@ REQUIRED_USE=truetype? ( gd ) cjk? ( gd ) exif? ( gd ) xpm? ( gd ) gd? ( zlib ) SLOT=5.3 SRC_URI=http://www.php.net/distributions/php-5.3.29.tar.bz2 http://dev.gentoo.org/~olemarkus/php/php-patchset-5.3-r0.tar.bz2 _eclasses_=apache-module 5c4c90da2d68c2dc8391666824f1293c autotools ebea507d219855923e3438c953cf4ab8 db-use 82d0e62839f20e1e0d5a2259abd5316f depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=0c41ed7782438a68c494458ef3540ce0 +_md5_=920200ceb5e4ee0a32827418c84f07c6 diff --git a/metadata/md5-cache/dev-lang/php-5.4.32 b/metadata/md5-cache/dev-lang/php-5.4.32 index 82fb40a8b973..2836322f9195 100644 --- a/metadata/md5-cache/dev-lang/php-5.4.32 +++ b/metadata/md5-cache/dev-lang/php-5.4.32 @@ -11,4 +11,4 @@ REQUIRED_USE=truetype? ( gd ) cjk? ( gd ) exif? ( gd ) xpm? ( gd ) gd? ( zlib ) SLOT=5.4 SRC_URI=http://www.php.net/distributions/php-5.4.32.tar.bz2 http://dev.gentoo.org/~olemarkus/php/php-patchset-5.4-r2.tar.bz2 _eclasses_=apache-module 5c4c90da2d68c2dc8391666824f1293c autotools ebea507d219855923e3438c953cf4ab8 db-use 82d0e62839f20e1e0d5a2259abd5316f depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=3ea24e7dd50d9421c74d825d437b451e +_md5_=8880ac3b41554c022f15d526bec73dfb diff --git a/metadata/md5-cache/dev-lang/php-5.4.33 b/metadata/md5-cache/dev-lang/php-5.4.33 index 3e44588f4ab0..4f8f9b673a82 100644 --- a/metadata/md5-cache/dev-lang/php-5.4.33 +++ b/metadata/md5-cache/dev-lang/php-5.4.33 @@ -11,4 +11,4 @@ REQUIRED_USE=truetype? ( gd ) cjk? ( gd ) exif? ( gd ) xpm? ( gd ) gd? ( zlib ) SLOT=5.4 SRC_URI=http://www.php.net/distributions/php-5.4.33.tar.bz2 http://dev.gentoo.org/~olemarkus/php/php-patchset-5.4-r2.tar.bz2 _eclasses_=apache-module 5c4c90da2d68c2dc8391666824f1293c autotools ebea507d219855923e3438c953cf4ab8 db-use 82d0e62839f20e1e0d5a2259abd5316f depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=045faecdbf0a7b36246b824a7d2b1523 +_md5_=550d1facd05bc5a55968cc313eda26d3 diff --git a/metadata/md5-cache/dev-lang/php-5.5.16 b/metadata/md5-cache/dev-lang/php-5.5.16 index eafeb21704c6..1977c078bc51 100644 --- a/metadata/md5-cache/dev-lang/php-5.5.16 +++ b/metadata/md5-cache/dev-lang/php-5.5.16 @@ -11,4 +11,4 @@ REQUIRED_USE=truetype? ( gd ) vpx? ( gd ) cjk? ( gd ) exif? ( gd ) xpm? ( gd ) g SLOT=5.5 SRC_URI=http://www.php.net/distributions/php-5.5.16.tar.bz2 _eclasses_=apache-module 5c4c90da2d68c2dc8391666824f1293c autotools ebea507d219855923e3438c953cf4ab8 db-use 82d0e62839f20e1e0d5a2259abd5316f depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=4a283d84aea0b75e8c662260dbbfd768 +_md5_=6c26a5bec64e85ff16b0549911f728c5 diff --git a/metadata/md5-cache/dev-lang/php-5.5.17 b/metadata/md5-cache/dev-lang/php-5.5.17 index 946d02453e4e..58e53b55b63b 100644 --- a/metadata/md5-cache/dev-lang/php-5.5.17 +++ b/metadata/md5-cache/dev-lang/php-5.5.17 @@ -11,4 +11,4 @@ REQUIRED_USE=truetype? ( gd ) vpx? ( gd ) cjk? ( gd ) exif? ( gd ) xpm? ( gd ) g SLOT=5.5 SRC_URI=http://www.php.net/distributions/php-5.5.17.tar.bz2 _eclasses_=apache-module 5c4c90da2d68c2dc8391666824f1293c autotools ebea507d219855923e3438c953cf4ab8 db-use 82d0e62839f20e1e0d5a2259abd5316f depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=8b9c175bd9595029c9fddabbba9a3321 +_md5_=7ab025eb6c26ef16ce1c4929a7ea41b6 diff --git a/metadata/md5-cache/dev-lang/php-5.6.0 b/metadata/md5-cache/dev-lang/php-5.6.0 index e2e5640d6cdf..4f4f63214c91 100644 --- a/metadata/md5-cache/dev-lang/php-5.6.0 +++ b/metadata/md5-cache/dev-lang/php-5.6.0 @@ -11,4 +11,4 @@ REQUIRED_USE=truetype? ( gd ) vpx? ( gd ) cjk? ( gd ) exif? ( gd ) xpm? ( gd ) g SLOT=5.6 SRC_URI=http://www.php.net/distributions/php-5.6.0.tar.bz2 _eclasses_=apache-module 5c4c90da2d68c2dc8391666824f1293c autotools ebea507d219855923e3438c953cf4ab8 db-use 82d0e62839f20e1e0d5a2259abd5316f depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=57975b5a4bc879b62b618c2ecfa80e64 +_md5_=3c097f3a4010a363ab03a65dacfc9c0c diff --git a/metadata/md5-cache/dev-lang/php-5.6.1 b/metadata/md5-cache/dev-lang/php-5.6.1 index 8f2c439b9280..0e9ebf7968ee 100644 --- a/metadata/md5-cache/dev-lang/php-5.6.1 +++ b/metadata/md5-cache/dev-lang/php-5.6.1 @@ -11,4 +11,4 @@ REQUIRED_USE=truetype? ( gd ) vpx? ( gd ) cjk? ( gd ) exif? ( gd ) xpm? ( gd ) g SLOT=5.6 SRC_URI=http://www.php.net/distributions/php-5.6.1.tar.bz2 _eclasses_=apache-module 5c4c90da2d68c2dc8391666824f1293c autotools ebea507d219855923e3438c953cf4ab8 db-use 82d0e62839f20e1e0d5a2259abd5316f depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=d351b95dc567d5fcc497766b534be230 +_md5_=21013188fb164f9bc710afcbf88802bc diff --git a/metadata/md5-cache/dev-lang/python-3.4.1 b/metadata/md5-cache/dev-lang/python-3.4.1 index 9db7cefc9f17..524056c05e5c 100644 --- a/metadata/md5-cache/dev-lang/python-3.4.1 +++ b/metadata/md5-cache/dev-lang/python-3.4.1 @@ -4,11 +4,11 @@ DESCRIPTION=An interpreted, interactive, object-oriented programming language EAPI=4 HOMEPAGE=http://www.python.org/ IUSE=build elibc_uclibc examples gdbm hardened ipv6 +ncurses +readline sqlite +ssl +threads tk wininst +xml -KEYWORDS=~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd +KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd LICENSE=PSF-2 PDEPEND=app-admin/eselect-python app-admin/python-updater RDEPEND=app-arch/bzip2 app-arch/xz-utils >=sys-libs/zlib-1.1.3 virtual/libffi virtual/libintl !build? ( gdbm? ( sys-libs/gdbm[berkdb] ) ncurses? ( >=sys-libs/ncurses-5.2 readline? ( >=sys-libs/readline-4.1 ) ) sqlite? ( >=dev-db/sqlite-3.3.8:3 ) ssl? ( dev-libs/openssl ) tk? ( >=dev-lang/tk-8.0 dev-tcltk/blt dev-tcltk/tix ) xml? ( >=dev-libs/expat-2.1 ) ) !! geoip-1.6.2.tar.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=a096b01ec31dd36220bf27667217c1be +_md5_=e538dc61048cc5226e815ec75b2c9a65 diff --git a/metadata/md5-cache/dev-libs/gnulib-9999-r1 b/metadata/md5-cache/dev-libs/gnulib-9999-r1 index 4951926a8c47..90d4432d5d91 100644 --- a/metadata/md5-cache/dev-libs/gnulib-9999-r1 +++ b/metadata/md5-cache/dev-libs/gnulib-9999-r1 @@ -1,9 +1,10 @@ DEFINED_PHASES=compile install unpack -DEPEND=dev-vcs/git +DEPEND=>=dev-vcs/git-1.8.2.1 DESCRIPTION=Gnulib is a library of common routines intended to be shared at the source level +EAPI=5 HOMEPAGE=http://www.gnu.org/software/gnulib IUSE=doc LICENSE=GPL-2 SLOT=0 -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c git-2 2027b81a576527fa16bece425941e094 git-r3 6ebae45064cb04482f3c702632dd9528 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=6a8306680735d4b1545b4403171bf4d8 +_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c git-r3 6ebae45064cb04482f3c702632dd9528 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 +_md5_=f8d0dffdb8aa550d983dc88cdcba1844 diff --git a/metadata/md5-cache/dev-libs/libgdata-0.16.0 b/metadata/md5-cache/dev-libs/libgdata-0.16.0 index a5cb9015f9a5..2a224fe10142 100644 --- a/metadata/md5-cache/dev-libs/libgdata-0.16.0 +++ b/metadata/md5-cache/dev-libs/libgdata-0.16.0 @@ -4,10 +4,10 @@ DESCRIPTION=GLib-based library for accessing online service APIs using the GData EAPI=5 HOMEPAGE=https://wiki.gnome.org/Projects/libgdata IUSE=gnome +introspection static-libs vala debug -KEYWORDS=~amd64 ~hppa ~x86 +KEYWORDS=~amd64 ~arm ~hppa ~x86 LICENSE=LGPL-2.1+ RDEPEND=>=dev-libs/glib-2.32:2 >=dev-libs/json-glib-0.15 >=dev-libs/libxml2-2:2 >=net-libs/liboauth-0.9.4 >=net-libs/libsoup-2.42.0:2.4[introspection?] net-libs/uhttpmock >=x11-libs/gdk-pixbuf-2.14:2 gnome? ( app-crypt/gcr:= >=net-libs/gnome-online-accounts-3.8 ) introspection? ( >=dev-libs/gobject-introspection-0.9.7 ) SLOT=0/19 SRC_URI=mirror://gnome/sources/libgdata/0.16/libgdata-0.16.0.tar.xz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 9637c29fc715b17a6328f24251129557 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 vala d8f392783fdc2395fc64af046f2ca961 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=bbb532bedff56d063e6ac4888cadc398 +_md5_=797530ead498feaf8ce1521d75da6c05 diff --git a/metadata/md5-cache/dev-libs/liblouis-2.5.3 b/metadata/md5-cache/dev-libs/liblouis-2.5.3 index 54f4e57a840f..295e7b957a18 100644 --- a/metadata/md5-cache/dev-libs/liblouis-2.5.3 +++ b/metadata/md5-cache/dev-libs/liblouis-2.5.3 @@ -4,11 +4,11 @@ DESCRIPTION=An open-source braille translator and back-translator EAPI=5 HOMEPAGE=http://code.google.com/p/liblouis/ IUSE=python python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 -KEYWORDS=~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 LICENSE=LGPL-3 RDEPEND=python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[wide-unicode(+)] ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2[wide-unicode(+)] ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3[wide-unicode(+)] ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) REQUIRED_USE=python? ( || ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) ) SLOT=0 SRC_URI=http://liblouis.googlecode.com/files/liblouis-2.5.3.tar.gz _eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=754036865b96e1122d45a6cb6bb6bf48 +_md5_=bf2747cd8d7e17d17ad5749d1da64461 diff --git a/metadata/md5-cache/dev-libs/librevenge-0.0.1 b/metadata/md5-cache/dev-libs/librevenge-0.0.1 index 9a6cbb81d642..41938c3a6667 100644 --- a/metadata/md5-cache/dev-libs/librevenge-0.0.1 +++ b/metadata/md5-cache/dev-libs/librevenge-0.0.1 @@ -4,10 +4,10 @@ DESCRIPTION=A helper library for REVerse ENGineered formats filters EAPI=5 HOMEPAGE=http://sf.net/p/libwpd/librevenge IUSE=doc test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~amd64 ~hppa ~mips ~x86 ~x86-fbsd +KEYWORDS=~amd64 ~arm ~hppa ~mips ~x86 ~x86-fbsd LICENSE=|| ( MPL-2.0 LGPL-2.1 ) RDEPEND=dev-libs/boost:= sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] SLOT=0 SRC_URI=http://sf.net/projects/libwpd/files/librevenge/librevenge-0.0.1/librevenge-0.0.1.tar.xz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multilib-build 9eb4b5fb858228316d8bb32ada51f6a5 multilib-minimal 5bbdc77877c1aa3c6bd89ca3f9196d11 multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=f3c1b0fab9f0c1ca49ade6735902d356 +_md5_=144f646116da28c1db932901c6877459 diff --git a/metadata/md5-cache/dev-libs/newt-0.52.15 b/metadata/md5-cache/dev-libs/newt-0.52.15 index 2baf3004da11..26c7a612d35a 100644 --- a/metadata/md5-cache/dev-libs/newt-0.52.15 +++ b/metadata/md5-cache/dev-libs/newt-0.52.15 @@ -4,11 +4,11 @@ DESCRIPTION=Redhat's Newt windowing toolkit development files EAPI=5 HOMEPAGE=https://fedorahosted.org/newt/ IUSE=gpm tcl nls python_targets_python2_7 -KEYWORDS=~alpha ~amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~x86-fbsd +KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~x86-fbsd LICENSE=LGPL-2 RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-libs/popt-1.6 =sys-libs/slang-2* elibc_uclibc? ( sys-libs/ncurses ) gpm? ( sys-libs/gpm ) tcl? ( >=dev-lang/tcl-8.5 ) REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=https://fedorahosted.org/releases/n/e/newt/newt-0.52.15.tar.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=b11f0ce46276204911e08878783087c5 +_md5_=aee16ab159e62fbf75fd0e0a22b74173 diff --git a/metadata/md5-cache/dev-libs/pakchois-0.4-r2 b/metadata/md5-cache/dev-libs/pakchois-0.4-r2 index 3cec8ec5c880..fc1e22e79707 100644 --- a/metadata/md5-cache/dev-libs/pakchois-0.4-r2 +++ b/metadata/md5-cache/dev-libs/pakchois-0.4-r2 @@ -3,9 +3,9 @@ DESCRIPTION=PaKChoiS - PKCS #11 wrapper library EAPI=5 HOMEPAGE=http://www.manyfish.co.uk/pakchois/ IUSE=nls abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 LICENSE=LGPL-2 SLOT=0 SRC_URI=http://www.manyfish.co.uk/pakchois/pakchois-0.4.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multilib-build 9eb4b5fb858228316d8bb32ada51f6a5 multilib-minimal 5bbdc77877c1aa3c6bd89ca3f9196d11 multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=1adcae0b61513732a2c5a2157048de0d +_md5_=adbff19d41f3870c13df40c653630ba3 diff --git a/metadata/md5-cache/dev-libs/protobuf-2.6.0 b/metadata/md5-cache/dev-libs/protobuf-2.6.0 index be8e77703936..65b53a87771d 100644 --- a/metadata/md5-cache/dev-libs/protobuf-2.6.0 +++ b/metadata/md5-cache/dev-libs/protobuf-2.6.0 @@ -4,10 +4,10 @@ DESCRIPTION=Google's Protocol Buffers -- an efficient method of encoding structu EAPI=5 HOMEPAGE=http://code.google.com/p/protobuf/ https://github.com/google/protobuf/ IUSE=emacs examples java python static-libs vim-syntax python_targets_python2_7 elibc_FreeBSD source java -KEYWORDS=~amd64 -hppa ~mips -ppc -ppc64 ~x86 ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos +KEYWORDS=~amd64 ~arm -hppa ~mips -ppc -ppc64 ~x86 ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos LICENSE=Apache-2.0 RDEPEND=emacs? ( virtual/emacs ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) java? ( >=virtual/jre-1.5 ) java? ( >=dev-java/java-config-2.1.9-r1 source? ( app-arch/zip ) ) SLOT=0/9 SRC_URI=https://protobuf.googlecode.com/svn/rc/protobuf-2.6.0.tar.bz2 _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 distutils-r1 90e7008a7d21e3b1597bea444bb85827 elisp-common 1aa23b3de5dae55456fa2071428eb5bf eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 libtool 52d0e17251d04645ffaa61bfdd858944 multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=2447f7ad7f45bf2c1be9c50c47f50045 +_md5_=d76ba48c8374b260c68d8ef8f5302b99 diff --git a/metadata/md5-cache/dev-perl/Cache-Memcached-Fast-0.190.0 b/metadata/md5-cache/dev-perl/CGI-FormBuilder-3.90.0 similarity index 53% rename from metadata/md5-cache/dev-perl/Cache-Memcached-Fast-0.190.0 rename to metadata/md5-cache/dev-perl/CGI-FormBuilder-3.90.0 index a8cc8d06a767..13f7d688bf3f 100644 --- a/metadata/md5-cache/dev-perl/Cache-Memcached-Fast-0.190.0 +++ b/metadata/md5-cache/dev-perl/CGI-FormBuilder-3.90.0 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=|| ( >=dev-lang/perl-5.16 =dev-lang/perl-5.16 =dev-lang/perl-5.10 >=dev-perl/Class-C3-XS-0.07 ) test? ( dev-perl/Test-Pod dev-perl/Test-Pod-Coverage ) || ( >=dev-lang/perl-5.16 =dev-lang/perl-5.10 >=dev-perl/Class-C3-XS-0.07 ) || ( >=dev-lang/perl-5.16 =dev-perl/SQL-Abstract-Limit-0.12 dev-perl/Class-DBI || ( >=dev-lang/perl-5.16 =dev-perl/SQL-Abstract-Limit-0.12 dev-perl/Class-DBI dev-lang/perl:=[-build(-)] DESCRIPTION=Abstract Class::DBI's SQL with SQL::Abstract::Limit -EAPI=4 +EAPI=5 HOMEPAGE=http://search.cpan.org/dist/Class-DBI-AbstractSearch/ KEYWORDS=~amd64 ~ppc ~x86 LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) -RDEPEND=>=dev-perl/SQL-Abstract-Limit-0.12 dev-perl/Class-DBI || ( >=dev-lang/perl-5.16 =dev-perl/SQL-Abstract-Limit-0.12 dev-perl/Class-DBI dev-lang/perl:=[-build(-)] SLOT=0 SRC_URI=mirror://cpan/authors/id/M/MI/MIYAGAWA/Class-DBI-AbstractSearch-0.07.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 perl-module f889e8437ffc64d766053d029c422c4e toolchain-funcs 0f1760274637a138b99bb649202ea402 unpacker f300a7ca9131b1024a79762e8edd3c52 -_md5_=6ca0f86eaae552382570f535c3f0aa2f +_md5_=8ee3cdf40de789a46731a96f1d750ed5 diff --git a/metadata/md5-cache/dev-perl/DBIx-Class-InflateColumn-Boolean-0.2.0 b/metadata/md5-cache/dev-perl/DBIx-Class-InflateColumn-Boolean-0.2.0 index 349ee68840c1..e53708cb1a11 100644 --- a/metadata/md5-cache/dev-perl/DBIx-Class-InflateColumn-Boolean-0.2.0 +++ b/metadata/md5-cache/dev-perl/DBIx-Class-InflateColumn-Boolean-0.2.0 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-perl/SQL-Translator dev-perl/Path-Class >=dev-perl/DBIx-Class-0.81.70 >=dev-perl/Contextual-Return-0.4.7 test? ( dev-perl/Test-Pod dev-perl/Test-Pod-Coverage ) || ( >=dev-lang/perl-5.16 =dev-perl/DBIx-Class-0.81.70 >=dev-perl/Contextual-Return-0.4.7 test? ( dev-perl/Test-Pod dev-perl/Test-Pod-Coverage ) dev-lang/perl:=[-build(-)] DESCRIPTION=Auto-create boolean objects from columns -EAPI=4 +EAPI=5 HOMEPAGE=http://search.cpan.org/dist/DBIx-Class-InflateColumn-Boolean/ IUSE=test KEYWORDS=~amd64 ~x86 LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) -RDEPEND=dev-perl/SQL-Translator dev-perl/Path-Class >=dev-perl/DBIx-Class-0.81.70 >=dev-perl/Contextual-Return-0.4.7 || ( >=dev-lang/perl-5.16 =dev-perl/DBIx-Class-0.81.70 >=dev-perl/Contextual-Return-0.4.7 dev-lang/perl:=[-build(-)] SLOT=0 SRC_URI=mirror://cpan/authors/id/G/GR/GRAF/DBIx-Class-InflateColumn-Boolean-0.002000.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 perl-module f889e8437ffc64d766053d029c422c4e toolchain-funcs 0f1760274637a138b99bb649202ea402 unpacker f300a7ca9131b1024a79762e8edd3c52 -_md5_=0467362a0bedae3ac2c7b26f03c4a19b +_md5_=b195ccfcb8086895df7db1d5cbb235f2 diff --git a/metadata/md5-cache/dev-perl/Devel-NYTProf-5.60.0 b/metadata/md5-cache/dev-perl/Devel-NYTProf-5.60.0 new file mode 100644 index 000000000000..d4345276682a --- /dev/null +++ b/metadata/md5-cache/dev-perl/Devel-NYTProf-5.60.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=virtual/perl-Getopt-Long dev-perl/JSON-Any sys-libs/zlib test? ( virtual/perl-Scalar-List-Utils >=virtual/perl-Test-Simple-0.84 dev-perl/Test-Differences ) dev-lang/perl:=[-build(-)] +DESCRIPTION=Powerful feature-rich perl source code profiler +EAPI=5 +HOMEPAGE=http://search.cpan.org/dist/Devel-NYTProf/ +IUSE=test +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) +RDEPEND=virtual/perl-Getopt-Long dev-perl/JSON-Any sys-libs/zlib dev-lang/perl:=[-build(-)] +SLOT=0 +SRC_URI=mirror://cpan/authors/id/T/TI/TIMB/Devel-NYTProf-5.06.tar.gz +_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 perl-module f889e8437ffc64d766053d029c422c4e toolchain-funcs 0f1760274637a138b99bb649202ea402 unpacker f300a7ca9131b1024a79762e8edd3c52 +_md5_=3f2f57fde26cc7afb42445003d7ad22d diff --git a/metadata/md5-cache/dev-perl/Import-Into-1.1.0 b/metadata/md5-cache/dev-perl/Import-Into-1.1.0 deleted file mode 100644 index 4a4032308b9d..000000000000 --- a/metadata/md5-cache/dev-perl/Import-Into-1.1.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=|| ( >=dev-lang/perl-5.16 =dev-lang/perl-5.16 =dev-perl/List-MoreUtils-0.280.0 >=virtual/perl-Scalar-List-Utils-1.190.0 >=virtual/perl-ExtUtils-MakeMaker-6.300.0 test? ( virtual/perl-File-Temp >=virtual/perl-Test-Simple-0.880.0 dev-perl/Test-Warnings ) dev-lang/perl:=[-build(-)] +DEPEND=>=dev-perl/List-MoreUtils-0.280.0 >=virtual/perl-Scalar-List-Utils-1.310.0 >=virtual/perl-ExtUtils-MakeMaker-6.300.0 test? ( virtual/perl-File-Temp >=virtual/perl-Test-Simple-0.880.0 dev-perl/Test-Warnings ) dev-lang/perl:=[-build(-)] DESCRIPTION=Combines List::Util and List::MoreUtils in one bite-sized package EAPI=5 HOMEPAGE=http://search.cpan.org/dist/List-AllUtils/ IUSE=test KEYWORDS=~amd64 ~x86 LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) -RDEPEND=>=dev-perl/List-MoreUtils-0.280.0 >=virtual/perl-Scalar-List-Utils-1.190.0 dev-lang/perl:=[-build(-)] +RDEPEND=>=dev-perl/List-MoreUtils-0.280.0 >=virtual/perl-Scalar-List-Utils-1.310.0 dev-lang/perl:=[-build(-)] SLOT=0 SRC_URI=mirror://cpan/authors/id/D/DR/DROLSKY/List-AllUtils-0.08.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 perl-module f889e8437ffc64d766053d029c422c4e toolchain-funcs 0f1760274637a138b99bb649202ea402 unpacker f300a7ca9131b1024a79762e8edd3c52 -_md5_=770707d898c1451e317685425f3ae133 +_md5_=e40eeda6fd24be87cc9728b2580d3020 diff --git a/metadata/md5-cache/dev-perl/List-AllUtils-0.90.0 b/metadata/md5-cache/dev-perl/List-AllUtils-0.90.0 new file mode 100644 index 000000000000..77199099cc6e --- /dev/null +++ b/metadata/md5-cache/dev-perl/List-AllUtils-0.90.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=>=dev-perl/List-MoreUtils-0.280.0 >=virtual/perl-Scalar-List-Utils-1.310.0 >=virtual/perl-ExtUtils-MakeMaker-6.300.0 test? ( virtual/perl-File-Temp >=virtual/perl-Test-Simple-0.880.0 dev-perl/Test-Warnings ) dev-lang/perl:=[-build(-)] +DESCRIPTION=Combines List::Util and List::MoreUtils in one bite-sized package +EAPI=5 +HOMEPAGE=http://search.cpan.org/dist/List-AllUtils/ +IUSE=test +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) +RDEPEND=>=dev-perl/List-MoreUtils-0.280.0 >=virtual/perl-Scalar-List-Utils-1.310.0 dev-lang/perl:=[-build(-)] +SLOT=0 +SRC_URI=mirror://cpan/authors/id/D/DR/DROLSKY/List-AllUtils-0.08.tar.gz +_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 perl-module f889e8437ffc64d766053d029c422c4e toolchain-funcs 0f1760274637a138b99bb649202ea402 unpacker f300a7ca9131b1024a79762e8edd3c52 +_md5_=c12a9b2cc3065fe341e3c56e8f13d02a diff --git a/metadata/md5-cache/dev-perl/Module-Locate-1.720.0 b/metadata/md5-cache/dev-perl/Module-Locate-1.720.0 deleted file mode 100644 index d6e9253a26a7..000000000000 --- a/metadata/md5-cache/dev-perl/Module-Locate-1.720.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=|| ( >=dev-lang/perl-5.16 =dev-lang/perl-5.16 =dev-lang/perl-5.16 =dev-lang/perl-5.16 =dev-perl/Moose-0.56 test? ( >=dev-perl/Test-Exception-0.21 >=virtual/perl-Test-Simple-0.62 ) || ( >=dev-lang/perl-5.16 =dev-perl/Moose-0.56 test? ( >=dev-perl/Test-Exception-0.21 >=virtual/perl-Test-Simple-0.62 ) dev-lang/perl:=[-build(-)] DESCRIPTION=Extend your attribute interfaces -EAPI=4 +EAPI=5 HOMEPAGE=http://search.cpan.org/dist/MooseX-AttributeHelpers/ IUSE=test KEYWORDS=~amd64 ~x86 LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) -RDEPEND=>=dev-perl/Moose-0.56 || ( >=dev-lang/perl-5.16 =dev-perl/Moose-0.56 dev-lang/perl:=[-build(-)] SLOT=0 SRC_URI=mirror://cpan/authors/id/D/DR/DROLSKY/MooseX-AttributeHelpers-0.23.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 perl-module f889e8437ffc64d766053d029c422c4e toolchain-funcs 0f1760274637a138b99bb649202ea402 unpacker f300a7ca9131b1024a79762e8edd3c52 -_md5_=dc26e830a20caeb70bd12e2b9aecc80b +_md5_=fdbbe6dc92734906b3d0bc908184292d diff --git a/metadata/md5-cache/dev-perl/MooseX-Types-DateTime-ButMaintained-0.160.0 b/metadata/md5-cache/dev-perl/MooseX-Types-DateTime-ButMaintained-0.160.0 index 34314ba15bed..b9ffa15e6ed6 100644 --- a/metadata/md5-cache/dev-perl/MooseX-Types-DateTime-ButMaintained-0.160.0 +++ b/metadata/md5-cache/dev-perl/MooseX-Types-DateTime-ButMaintained-0.160.0 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=>=dev-perl/DateTime-0.43.02 >=dev-perl/DateTime-Format-DateParse-0.04 >=dev-perl/DateTime-Format-Flexible-0.05 >=dev-perl/DateTime-Format-Natural-0.71 >=dev-perl/DateTime-Locale-0.40.01 >=dev-perl/DateTime-TimeZone-0.77.01 >=dev-perl/DateTimeX-Easy-0.082 >=dev-perl/Moose-0.41 >=dev-perl/MooseX-Types-0.300.0 dev-perl/namespace-autoclean >=dev-perl/Olson-Abbreviations-0.30.0 test? ( >=dev-perl/Test-Exception-0.27 >=dev-perl/Test-use-ok-0.02 >=dev-perl/Time-Duration-Parse-0.06 ) || ( >=dev-lang/perl-5.16 =dev-perl/DateTime-0.43.02 >=dev-perl/DateTime-Format-DateParse-0.04 >=dev-perl/DateTime-Format-Flexible-0.05 >=dev-perl/DateTime-Format-Natural-0.71 >=dev-perl/DateTime-Locale-0.40.01 >=dev-perl/DateTime-TimeZone-0.77.01 >=dev-perl/DateTimeX-Easy-0.082 >=dev-perl/Moose-0.41 >=dev-perl/MooseX-Types-0.300.0 dev-perl/namespace-autoclean >=dev-perl/Olson-Abbreviations-0.30.0 test? ( >=dev-perl/Test-Exception-0.27 >=dev-perl/Test-use-ok-0.02 >=dev-perl/Time-Duration-Parse-0.06 ) dev-lang/perl:=[-build(-)] DESCRIPTION=DateTime related constraints and coercions for Moose -EAPI=4 +EAPI=5 HOMEPAGE=http://search.cpan.org/dist/MooseX-Types-DateTime-ButMaintained/ IUSE=test KEYWORDS=~amd64 ~x86 LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) -RDEPEND=>=dev-perl/DateTime-0.43.02 >=dev-perl/DateTime-Format-DateParse-0.04 >=dev-perl/DateTime-Format-Flexible-0.05 >=dev-perl/DateTime-Format-Natural-0.71 >=dev-perl/DateTime-Locale-0.40.01 >=dev-perl/DateTime-TimeZone-0.77.01 >=dev-perl/DateTimeX-Easy-0.082 >=dev-perl/Moose-0.41 >=dev-perl/MooseX-Types-0.300.0 dev-perl/namespace-autoclean >=dev-perl/Olson-Abbreviations-0.30.0 || ( >=dev-lang/perl-5.16 =dev-perl/DateTime-0.43.02 >=dev-perl/DateTime-Format-DateParse-0.04 >=dev-perl/DateTime-Format-Flexible-0.05 >=dev-perl/DateTime-Format-Natural-0.71 >=dev-perl/DateTime-Locale-0.40.01 >=dev-perl/DateTime-TimeZone-0.77.01 >=dev-perl/DateTimeX-Easy-0.082 >=dev-perl/Moose-0.41 >=dev-perl/MooseX-Types-0.300.0 dev-perl/namespace-autoclean >=dev-perl/Olson-Abbreviations-0.30.0 dev-lang/perl:=[-build(-)] SLOT=0 SRC_URI=mirror://cpan/authors/id/E/EC/ECARROLL/MooseX-Types-DateTime-ButMaintained-0.16.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 perl-module f889e8437ffc64d766053d029c422c4e toolchain-funcs 0f1760274637a138b99bb649202ea402 unpacker f300a7ca9131b1024a79762e8edd3c52 -_md5_=34ea4f3bd3ffa6260271b7edcd4d9284 +_md5_=35783ccb843fb2c6efb959149bc74283 diff --git a/metadata/md5-cache/dev-perl/Proc-Simple-1.300.0 b/metadata/md5-cache/dev-perl/Proc-Simple-1.300.0 deleted file mode 100644 index a30590e8de40..000000000000 --- a/metadata/md5-cache/dev-perl/Proc-Simple-1.300.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=|| ( >=dev-lang/perl-5.16 =dev-lang/perl-5.16 =dev-perl/Test-Exception-0.21 dev-perl/Test-Pod dev-perl/Test-Pod-Coverage ) || ( >=dev-lang/perl-5.16 =dev-lang/perl-5.16 =dev-lang/perl-5.16 =dev-lang/perl-5.16 =virtual/perl-Locale-Maketext-1.17 test? ( dev-perl/Test-Pod ) || ( >=dev-lang/perl-5.16 =virtual/perl-Locale-Maketext-1.17 || ( >=dev-lang/perl-5.16 =virtual/perl-Locale-Maketext-1.170.0 test? ( dev-perl/Test-Pod ) || ( >=dev-lang/perl-5.16 =virtual/perl-Locale-Maketext-1.170.0 || ( >=dev-lang/perl-5.16 =dev-lang/php-5.3 ) >=dev-php/PEAR-PEAR-1.8 DESCRIPTION=Tar file management class EAPI=4 HOMEPAGE=http://pear.php.net/package/Archive_Tar -KEYWORDS=~alpha ~amd64 arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +KEYWORDS=~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 LICENSE=BSD PDEPEND=dev-php/pear RDEPEND=|| ( =dev-lang/php-5.3 ) >=dev-php/PEAR-PEAR-1.8.1 SLOT=0 SRC_URI=http://pear.php.net/get/Archive_Tar-1.3.11.tgz -_md5_=167e7065a41893076af6726c3912cbba +_md5_=3ef1c4ab76536e57e177c6b8e5d552ec diff --git a/metadata/md5-cache/dev-php/PEAR-Net_CheckIP-1.1-r1 b/metadata/md5-cache/dev-php/PEAR-Net_CheckIP-1.2.2 similarity index 67% rename from metadata/md5-cache/dev-php/PEAR-Net_CheckIP-1.1-r1 rename to metadata/md5-cache/dev-php/PEAR-Net_CheckIP-1.2.2 index 9dcefe97ee91..13f10d76ef60 100644 --- a/metadata/md5-cache/dev-php/PEAR-Net_CheckIP-1.1-r1 +++ b/metadata/md5-cache/dev-php/PEAR-Net_CheckIP-1.2.2 @@ -1,11 +1,12 @@ DEFINED_PHASES=install setup DEPEND=dev-lang/php >=dev-php/pear-1.8.1 DESCRIPTION=Check the syntax of IPv4 addresses +EAPI=5 HOMEPAGE=http://pear.php.net/Net_CheckIP -KEYWORDS=alpha amd64 hppa ia64 ppc ppc64 sparc x86 -LICENSE=PHP-2.02 +KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=MIT RDEPEND=dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 -SRC_URI=http://pear.php.net/get/Net_CheckIP-1.1.tgz +SRC_URI=http://pear.php.net/get/Net_CheckIP-1.2.2.tgz _eclasses_=multilib 3bf24e6abb9b76d9f6c20600f0b716bf php-pear-r1 c984187b1bfa4f9c980f68a3682211d2 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=ea1c55f09f6ce3fed17a436faa8977ca +_md5_=90985359ce87e7f18b20a49fc6dd6ad9 diff --git a/metadata/md5-cache/dev-php/PEAR-PEAR-1.9.4 b/metadata/md5-cache/dev-php/PEAR-PEAR-1.9.4 index 742e4b483c1d..eb615fe00167 100644 --- a/metadata/md5-cache/dev-php/PEAR-PEAR-1.9.4 +++ b/metadata/md5-cache/dev-php/PEAR-PEAR-1.9.4 @@ -10,4 +10,4 @@ RDEPEND=|| ( =dev-lang/php-5.3 ) dev-lang/php[cli,xml,z SLOT=0 SRC_URI=http://pear.php.net/get/PEAR-1.9.4.tgz _eclasses_=depend.php df169a364e191b840b695604097e3c21 eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf phpconfutils e108303831029e5b8a9d24b991b1d62a toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=8f2bf27317ec8301142fec319e2f9c24 +_md5_=b489c0f39a616d42680f8e5747c07422 diff --git a/metadata/md5-cache/dev-php/pecl-ssh2-0.12-r1 b/metadata/md5-cache/dev-php/pecl-ssh2-0.12-r1 index b71119cee634..76874615842f 100644 --- a/metadata/md5-cache/dev-php/pecl-ssh2-0.12-r1 +++ b/metadata/md5-cache/dev-php/pecl-ssh2-0.12-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Provides bindings to the functions of libssh2 which implements the S EAPI=5 HOMEPAGE=http://pecl.php.net/ssh2 IUSE=php_targets_php5-5 php_targets_php5-4 -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=PHP-3 RDEPEND=>=net-libs/libssh2-1.2 php_targets_php5-5? ( dev-lang/php:5.5 ) php_targets_php5-4? ( dev-lang/php:5.4 ) REQUIRED_USE=|| ( php_targets_php5-5 php_targets_php5-4 ) SLOT=0 SRC_URI=http://pecl.php.net/get/ssh2-0.12.tgz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 php-ext-pecl-r2 de1308bcf4fef59a8ee8793efc7c3051 php-ext-source-r2 39437168059a2166e012420b3ba12815 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=df443432f67e6a87206cdbea5d4a21f9 +_md5_=a7ce2a9b472cc51ab6e81d87212acda1 diff --git a/metadata/md5-cache/dev-php/phing-2.8.2 b/metadata/md5-cache/dev-php/phing-2.8.2 new file mode 100644 index 000000000000..f81b808222e0 --- /dev/null +++ b/metadata/md5-cache/dev-php/phing-2.8.2 @@ -0,0 +1,11 @@ +DEFINED_PHASES=install postinst unpack +DESCRIPTION=PHP project build system based on Apache Ant +EAPI=5 +HOMEPAGE=http://www.phing.info/ +IUSE=+minimal +KEYWORDS=~amd64 ~x86 +LICENSE=LGPL-2.1 +RDEPEND=!minimal? ( dev-php/phpDocumentor dev-php/PHP_CodeCoverage >=dev-php/PEAR-HTTP_Request2-2.1.1 >=dev-php/PEAR-PEAR_PackageFileManager-1.5.2 >=dev-php/PEAR-VersionControl_SVN-0.3.0_alpha1 >=dev-php/phpmd-1.1.0 >=dev-php/phpunit-4.0 >=dev-php/xdebug-2.0.5 >=dev-php/simpletest-1.0.1_beta2 ) dev-lang/php[phar,xml,xslt] +SLOT=0 +SRC_URI=http://www.phing.info/get/phing-2.8.2.phar +_md5_=45f091a99653ec22517e9ee314fa0af6 diff --git a/metadata/md5-cache/dev-php/phpDocumentor-2.2.0 b/metadata/md5-cache/dev-php/phpDocumentor-2.7.0 similarity index 71% rename from metadata/md5-cache/dev-php/phpDocumentor-2.2.0 rename to metadata/md5-cache/dev-php/phpDocumentor-2.7.0 index 17a41d490638..0f7ef75b6960 100644 --- a/metadata/md5-cache/dev-php/phpDocumentor-2.2.0 +++ b/metadata/md5-cache/dev-php/phpDocumentor-2.7.0 @@ -6,8 +6,8 @@ HOMEPAGE=http://pear.phpdoc.org/phpDocumentor IUSE=doc KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=MIT -RDEPEND=media-gfx/graphviz dev-lang/php[iconv,intl,xslt] dev-lang/php >=dev-php/pear-1.8.1 +RDEPEND=media-gfx/graphviz dev-lang/php[iconv,intl,xmlreader,xslt] dev-lang/php >=dev-php/pear-1.8.1 SLOT=0 -SRC_URI=http://pear.phpdoc.org/get/phpDocumentor-2.2.0.tgz +SRC_URI=http://pear.phpdoc.org/get/phpDocumentor-2.7.0.tgz _eclasses_=multilib 3bf24e6abb9b76d9f6c20600f0b716bf php-pear-r1 c984187b1bfa4f9c980f68a3682211d2 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=df72f4e224c094dcc1df3f54eb263004 +_md5_=18101a0ffd44c9ceddaab8a04c701cc9 diff --git a/metadata/md5-cache/dev-php/phpunit-4.3.1 b/metadata/md5-cache/dev-php/phpunit-4.3.1 new file mode 100644 index 000000000000..9a81a0022b76 --- /dev/null +++ b/metadata/md5-cache/dev-php/phpunit-4.3.1 @@ -0,0 +1,11 @@ +DEFINED_PHASES=install postinst unpack +DEPEND=dev-lang/php[phar,xml] +DESCRIPTION=A PHP Unit Testing framework +EAPI=5 +HOMEPAGE=http://phpunit.de +KEYWORDS=~amd64 ~hppa ~x86 +LICENSE=BSD +RDEPEND=dev-lang/php[phar,xml] +SLOT=0 +SRC_URI=https://phar.phpunit.de/phpunit-4.3.1.phar +_md5_=7a7f1308e28dace9c281e149f034bc9d diff --git a/metadata/md5-cache/dev-php/tcpdf-6.0.096 b/metadata/md5-cache/dev-php/tcpdf-6.0.096 new file mode 100644 index 000000000000..891f6357498d --- /dev/null +++ b/metadata/md5-cache/dev-php/tcpdf-6.0.096 @@ -0,0 +1,12 @@ +DEFINED_PHASES=install +DEPEND=app-arch/unzip +DESCRIPTION=TCPDF is a FLOSS PHP class for generating PDF documents +EAPI=5 +HOMEPAGE=http://www.tcpdf.org/ +IUSE=examples +KEYWORDS=~amd64 ~x86 +LICENSE=LGPL-3+ GPL-3 BitstreamVera GPL-2 +RDEPEND=dev-lang/php +SLOT=0 +SRC_URI=mirror://sourceforge/tcpdf/tcpdf_6_0_096.zip +_md5_=56356749239153bced5ca81e5b0fed99 diff --git a/metadata/md5-cache/dev-python/argh-0.25.0 b/metadata/md5-cache/dev-python/argh-0.25.0 index 9b78cd005eaa..f7a0c066c408 100644 --- a/metadata/md5-cache/dev-python/argh-0.25.0 +++ b/metadata/md5-cache/dev-python/argh-0.25.0 @@ -4,11 +4,11 @@ DESCRIPTION=A simple argparse wrapper EAPI=5 HOMEPAGE=http://packages.python.org/argh/ IUSE=test python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_python3_4 python_targets_pypy -KEYWORDS=~amd64 x86 +KEYWORDS=amd64 x86 LICENSE=LGPL-3 RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_pypy? ( virtual/pypy:0= ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_python3_4 python_targets_pypy ) SLOT=0 SRC_URI=mirror://pypi/a/argh/argh-0.25.0.tar.gz _eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=0910ba01216b6eb16c860a597dfa7c79 +_md5_=64b6ec2a74264e4771d7304859755972 diff --git a/metadata/md5-cache/dev-python/clint-0.3.1-r1 b/metadata/md5-cache/dev-python/clint-0.3.1-r1 new file mode 100644 index 000000000000..4467f36c1cd0 --- /dev/null +++ b/metadata/md5-cache/dev-python/clint-0.3.1-r1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=doc? ( dev-python/sphinx[python_targets_python2_7(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-)] ) test? ( dev-python/pytest[python_targets_python2_7(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-)] +DESCRIPTION=Python Command-line Application Tools +EAPI=5 +HOMEPAGE=https://github.com/kennethreitz/clint +IUSE=doc examples test python_targets_python2_7 python_targets_python3_3 +KEYWORDS=~amd64 +LICENSE=ISC +RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 ) +SLOT=0 +SRC_URI=https://github.com/kennethreitz/clint/archive/v0.3.1.tar.gz -> clint-0.3.1.tar.gz +_eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_md5_=d7c95283cadf600c78a0c8b60eec9d53 diff --git a/metadata/md5-cache/dev-python/dnspython-1.12.0 b/metadata/md5-cache/dev-python/dnspython-1.12.0 index 20c1415d8032..41b153181fb6 100644 --- a/metadata/md5-cache/dev-python/dnspython-1.12.0 +++ b/metadata/md5-cache/dev-python/dnspython-1.12.0 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.dnspython.org/kits/1.12.0/dnspython-1.12.0.tar.gz _eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=2c604581998422ca493226c8fcbd3407 +_md5_=92e8062a0a03772d35f0723935e9168a diff --git a/metadata/md5-cache/dev-python/execnet-1.2.0-r2 b/metadata/md5-cache/dev-python/execnet-1.2.0-r2 new file mode 100644 index 000000000000..a6dc6bdae509 --- /dev/null +++ b/metadata/md5-cache/dev-python/execnet-1.2.0-r2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] doc? ( dev-python/sphinx[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] ) test? ( dev-python/pytest[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_pypy? ( virtual/pypy:0= ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] +DESCRIPTION=Rapid multi-Python deployment +EAPI=5 +HOMEPAGE=http://codespeak.net/execnet/ http://pypi.python.org/pypi/execnet/ +IUSE=doc test python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_pypy +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_pypy? ( virtual/pypy:0= ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_pypy ) +SLOT=0 +SRC_URI=mirror://pypi/e/execnet/execnet-1.2.0.tar.gz +_eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 +_md5_=05967523e009ec87d79477cd4a057866 diff --git a/metadata/md5-cache/dev-python/extras-0.0.3 b/metadata/md5-cache/dev-python/extras-0.0.3 index 613b72092df4..b92ad8a6965c 100644 --- a/metadata/md5-cache/dev-python/extras-0.0.3 +++ b/metadata/md5-cache/dev-python/extras-0.0.3 @@ -4,11 +4,11 @@ DESCRIPTION=Useful extra bits for Python that should be in the standard library EAPI=5 HOMEPAGE=https://github.com/testing-cabal/extras/ http://pypi.python.org/pypi/extras/ IUSE=test python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_python3_4 python_targets_pypy -KEYWORDS=alpha ~amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd +KEYWORDS=alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd LICENSE=MIT RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_pypy? ( virtual/pypy:0= ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_python3_4 python_targets_pypy ) SLOT=0 SRC_URI=mirror://pypi/e/extras/extras-0.0.3.tar.gz _eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=89cc141c8872e2f247deab2cd81a467f +_md5_=8c6ef976318a7790cb1f036316769cec diff --git a/metadata/md5-cache/dev-python/google-apputils-0.4.0 b/metadata/md5-cache/dev-python/google-apputils-0.4.0 index df688468a09f..4fa3809d05e2 100644 --- a/metadata/md5-cache/dev-python/google-apputils-0.4.0 +++ b/metadata/md5-cache/dev-python/google-apputils-0.4.0 @@ -4,11 +4,11 @@ DESCRIPTION=Collection of utilities for building Python applications EAPI=5 HOMEPAGE=http://code.google.com/p/google-apputils-python/ IUSE=test python_targets_python2_7 -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~arm ~x86 LICENSE=Apache-2.0 RDEPEND=dev-python/python-dateutil[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-gflags[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pytz[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://google-apputils-python.googlecode.com/files/google-apputils-0.4.0.tar.gz _eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=e745c9a214d8cb22a7c23a8dfa4b1452 +_md5_=e3830a9c0e05202fb20fd2a204205b45 diff --git a/metadata/md5-cache/dev-python/markupsafe-0.23 b/metadata/md5-cache/dev-python/markupsafe-0.23 index 1c3e0679941d..57de38311736 100644 --- a/metadata/md5-cache/dev-python/markupsafe-0.23 +++ b/metadata/md5-cache/dev-python/markupsafe-0.23 @@ -4,11 +4,11 @@ DESCRIPTION=Implements a XML/HTML/XHTML Markup safe string for Python EAPI=5 HOMEPAGE=http://pypi.python.org/pypi/MarkupSafe IUSE=python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_python3_4 python_targets_pypy -KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris +KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris LICENSE=BSD RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_pypy? ( virtual/pypy:0= ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_python3_4 python_targets_pypy ) SLOT=0 SRC_URI=mirror://pypi/M/MarkupSafe/MarkupSafe-0.23.tar.gz _eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=c4f7b619bd157e0cbe3662bfa0e26a57 +_md5_=bb69b298ad8dcd0a3eed89d33a27d150 diff --git a/metadata/md5-cache/dev-python/mimeparse-0.1.4-r1 b/metadata/md5-cache/dev-python/mimeparse-0.1.4-r1 index f54710d949f2..f06da191039b 100644 --- a/metadata/md5-cache/dev-python/mimeparse-0.1.4-r1 +++ b/metadata/md5-cache/dev-python/mimeparse-0.1.4-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Basic functions for handling mime-types in python EAPI=5 HOMEPAGE=http://code.google.com/p/mimeparse https://github.com/dbtsai/python-mimeparse IUSE=python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_python3_4 python_targets_pypy -KEYWORDS=alpha ~amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux +KEYWORDS=alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux LICENSE=MIT RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_pypy? ( virtual/pypy:0= ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_python3_4 python_targets_pypy ) SLOT=0 SRC_URI=mirror://pypi/p/python-mimeparse/python-mimeparse-0.1.4.tar.gz _eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=a7bf8caf6461386adfeebe40c9873653 +_md5_=6ad8fea4c1874f7f2ed5f61158008829 diff --git a/metadata/md5-cache/dev-python/mox-0.5.3-r1 b/metadata/md5-cache/dev-python/mox-0.5.3-r1 index 4b3fe720414a..c8bd5075321c 100644 --- a/metadata/md5-cache/dev-python/mox-0.5.3-r1 +++ b/metadata/md5-cache/dev-python/mox-0.5.3-r1 @@ -4,11 +4,11 @@ DESCRIPTION=A mock object framework for Python, loosely based on EasyMock for Ja EAPI=5 HOMEPAGE=http://code.google.com/p/pymox/ IUSE=test python_targets_python2_7 -KEYWORDS=amd64 ppc ~sparc x86 +KEYWORDS=amd64 ~arm ppc ~sparc x86 LICENSE=Apache-2.0 RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/m/mox/mox-0.5.3.tar.gz _eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=3a9015dcccbd2c84768918dcf3867868 +_md5_=6ebb98c8e1a8a3897448ef839a60483a diff --git a/metadata/md5-cache/dev-python/pathtools-0.1.2 b/metadata/md5-cache/dev-python/pathtools-0.1.2 index fcf954e16ef9..62a726eee4ca 100644 --- a/metadata/md5-cache/dev-python/pathtools-0.1.2 +++ b/metadata/md5-cache/dev-python/pathtools-0.1.2 @@ -4,11 +4,11 @@ DESCRIPTION=Pattern matching and various utilities for file systems paths EAPI=5 HOMEPAGE=https://pypi.python.org/pypi/pathtools/ IUSE=python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 -KEYWORDS=~amd64 x86 +KEYWORDS=amd64 x86 LICENSE=MIT RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pathtools/pathtools-0.1.2.tar.gz _eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=fd07b88242f9b4a2a62fb68cb31f64a0 +_md5_=03425dee786ade04f0b3b4ce9a83da86 diff --git a/metadata/md5-cache/dev-python/pillow-2.5.3 b/metadata/md5-cache/dev-python/pillow-2.5.3 index 86a1f51cf9b7..a40e5857efa2 100644 --- a/metadata/md5-cache/dev-python/pillow-2.5.3 +++ b/metadata/md5-cache/dev-python/pillow-2.5.3 @@ -4,11 +4,11 @@ DESCRIPTION=Python Imaging Library (fork) EAPI=5 HOMEPAGE=https://github.com/python-imaging/Pillow https://pypi.python.org/pypi/Pillow IUSE=doc examples jpeg jpeg2k lcms scanner test tiff tk truetype webp zlib python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_python3_4 python_targets_pypy -KEYWORDS=~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris +KEYWORDS=~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris LICENSE=HPND RDEPEND=truetype? ( media-libs/freetype:2= ) jpeg? ( virtual/jpeg:0 ) jpeg2k? ( media-libs/openjpeg:2= ) lcms? ( media-libs/lcms:0= ) scanner? ( media-gfx/sane-backends:0= ) tiff? ( media-libs/tiff:0= ) webp? ( media-libs/libwebp:0= ) zlib? ( sys-libs/zlib:0= ) !dev-python/imaging python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[tk?] ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2[tk?] ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3[tk?] ) python_targets_python3_4? ( dev-lang/python:3.4[tk?] ) python_targets_pypy? ( virtual/pypy:0=[tk?] ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] REQUIRED_USE=test? ( jpeg ) || ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_python3_4 python_targets_pypy ) SLOT=0 SRC_URI=mirror://pypi/P/Pillow/Pillow-2.5.3.zip _eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=c0d4e308dc076074be9a687c6bc4236f +_md5_=6e8d90a8f781b0427ff662e972e31511 diff --git a/metadata/md5-cache/dev-python/pylast-0.5.11-r1 b/metadata/md5-cache/dev-python/pylast-0.5.11-r1 index 55d633f0a29a..7f6787231f12 100644 --- a/metadata/md5-cache/dev-python/pylast-0.5.11-r1 +++ b/metadata/md5-cache/dev-python/pylast-0.5.11-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Python interface to last.fm and other api-compatible websites EAPI=5 HOMEPAGE=http://code.google.com/p/pylast/ IUSE=python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=Apache-2.0 RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pylast/pylast-0.5.11.tar.gz _eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=4dda698b25a6e65c1c2f2ded24a57ebd +_md5_=b7dfd82768c943e582faa1a7e5c5a80e diff --git a/metadata/md5-cache/dev-python/pystache-0.5.4 b/metadata/md5-cache/dev-python/pystache-0.5.4 index 184717c07614..2925da564d80 100644 --- a/metadata/md5-cache/dev-python/pystache-0.5.4 +++ b/metadata/md5-cache/dev-python/pystache-0.5.4 @@ -4,11 +4,11 @@ DESCRIPTION=Mustache for Python EAPI=5 HOMEPAGE=http://github.com/defunkt/pystache IUSE=test python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_pypy -KEYWORDS=amd64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 x86 ~amd64-linux ~x86-linux LICENSE=MIT RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_pypy? ( virtual/pypy:0= ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_pypy ) SLOT=0 SRC_URI=mirror://pypi/p/pystache/pystache-0.5.4.tar.gz _eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=1ad4f183752ed2c303c9dea38ab11ee4 +_md5_=30c9fab8ca4ea52220d5f7a108d018d4 diff --git a/metadata/md5-cache/dev-python/pysvn-1.7.8 b/metadata/md5-cache/dev-python/pysvn-1.7.8 index bc697a33a7b1..3159b5ec693c 100644 --- a/metadata/md5-cache/dev-python/pysvn-1.7.8 +++ b/metadata/md5-cache/dev-python/pysvn-1.7.8 @@ -4,7 +4,7 @@ DESCRIPTION=Object-oriented python bindings for subversion EAPI=5 HOMEPAGE=http://pysvn.tigris.org/ IUSE=doc examples python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 -KEYWORDS=amd64 ~arm ~ppc ~x86 ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris +KEYWORDS=amd64 ~arm ~ppc x86 ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris LICENSE=Apache-1.1 RDEPEND=>=dev-python/pycxx-6.2.0[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] =dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=http://pysvn.barrys-emacs.org/source_kits/pysvn-1.7.8.tar.gz _eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=57088c9e58ce4ba377fe60a88cf478eb +_md5_=04a1371cd4c323344e1798121ebf0e01 diff --git a/metadata/md5-cache/dev-python/python-ldap-2.4.10-r1 b/metadata/md5-cache/dev-python/python-ldap-2.4.10-r1 index 6a029a9ebebd..fa75794f3051 100644 --- a/metadata/md5-cache/dev-python/python-ldap-2.4.10-r1 +++ b/metadata/md5-cache/dev-python/python-ldap-2.4.10-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Various LDAP-related Python modules EAPI=5 HOMEPAGE=http://www.python-ldap.org http://pypi.python.org/pypi/python-ldap IUSE=doc examples sasl ssl python_targets_python2_7 -KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-solaris +KEYWORDS=~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-solaris LICENSE=PSF-2 RDEPEND=>=net-nds/openldap-2.4 dev-python/pyasn1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] sasl? ( dev-libs/cyrus-sasl ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/python-ldap/python-ldap-2.4.10.tar.gz _eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=e4dc15d478626251cedb8d6a5ee8d62e +_md5_=4f637962620191f7fa74a8b8aae7bc68 diff --git a/metadata/md5-cache/dev-python/south-0.8.4 b/metadata/md5-cache/dev-python/south-0.8.4 index 57a9d127d46f..db870e7af053 100644 --- a/metadata/md5-cache/dev-python/south-0.8.4 +++ b/metadata/md5-cache/dev-python/south-0.8.4 @@ -4,11 +4,11 @@ DESCRIPTION=Intelligent schema migrations for Django apps EAPI=5 HOMEPAGE=http://south.aeracode.org/ IUSE=doc test python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_pypy -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=Apache-2.0 RDEPEND=dev-python/django[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_pypy? ( virtual/pypy:0= ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 python_targets_pypy ) SLOT=0 SRC_URI=https://bitbucket.org/andrewgodwin/south/get/0.8.4.tar.gz -> south-0.8.4.tar.gz _eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 -_md5_=f5c1701f027013e501b43337c8a96a86 +_md5_=097d7d1ee68b085038395141143118fb diff --git a/metadata/md5-cache/dev-python/subunit-0.0.16 b/metadata/md5-cache/dev-python/subunit-0.0.16 index 75c166408336..e005b5c2b168 100644 --- a/metadata/md5-cache/dev-python/subunit-0.0.16 +++ b/metadata/md5-cache/dev-python/subunit-0.0.16 @@ -4,11 +4,11 @@ DESCRIPTION=A streaming protocol for test results EAPI=5 HOMEPAGE=https://launchpad.net/subunit http://pypi.python.org/pypi/python-subunit IUSE=static-libs python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy -KEYWORDS=alpha ~amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 x86 ~x86-fbsd +KEYWORDS=alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 x86 ~x86-fbsd LICENSE=Apache-2.0 BSD RDEPEND=>=dev-python/testtools-0.9.34[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy(-)] dev-python/extras[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_pypy? ( virtual/pypy:0= ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy ) SLOT=0 SRC_URI=http://launchpad.net/subunit/trunk/0.0.16/+download/subunit-0.0.16.tar.gz _eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=761e31902dc0f6c526cdfb2be2a29751 +_md5_=deff0486268a408401c3cdd064140d32 diff --git a/metadata/md5-cache/dev-python/testtools-0.9.34 b/metadata/md5-cache/dev-python/testtools-0.9.34 index 18d5d3dd28d3..22b28715f572 100644 --- a/metadata/md5-cache/dev-python/testtools-0.9.34 +++ b/metadata/md5-cache/dev-python/testtools-0.9.34 @@ -4,11 +4,11 @@ DESCRIPTION=Extensions to the Python unittest library EAPI=5 HOMEPAGE=https://launchpad.net/testtools http://pypi.python.org/pypi/testtools IUSE=test python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy -KEYWORDS=alpha ~amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux +KEYWORDS=alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux LICENSE=MIT RDEPEND=dev-python/mimeparse[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy(-)] dev-python/extras[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_pypy? ( virtual/pypy:0= ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy ) SLOT=0 SRC_URI=http://launchpad.net/testtools/trunk/0.9.34/+download/testtools-0.9.34.tar.gz _eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=9e3066e92f03f4e52a996864ba186482 +_md5_=c25b944d97b6d68be1d9264b07f3e1b8 diff --git a/metadata/md5-cache/dev-python/waitress-0.8.9 b/metadata/md5-cache/dev-python/waitress-0.8.9 index 04970058a210..6d089550f117 100644 --- a/metadata/md5-cache/dev-python/waitress-0.8.9 +++ b/metadata/md5-cache/dev-python/waitress-0.8.9 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND=app-arch/unzip test? ( dev-python/nose ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_pypy? ( virtual/pypy:0= ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] +DEPEND=app-arch/unzip test? ( dev-python/nose[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_pypy? ( virtual/pypy:0= ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,python_targets_pypy(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-),-python_single_target_pypy(-)] DESCRIPTION=A pure-Python WSGI server EAPI=5 HOMEPAGE=http://docs.pylonsproject.org/projects/waitress/en/latest/ https://pypi.python.org/pypi/waitress/ https://github.com/Pylons/waitress @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targe SLOT=0 SRC_URI=mirror://pypi/w/waitress/waitress-0.8.9.tar.gz doc? ( http://dev.gentoo.org/~idella4/pylons_sphinx_theme.tar.gz ) _eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=6a66b05baffef5a12b2fd04785f6dc1e +_md5_=35c79c06da88be7df992e9f15f882a2b diff --git a/metadata/md5-cache/dev-python/watchdog-0.8.0 b/metadata/md5-cache/dev-python/watchdog-0.8.0 index 449a431a07cf..8fdcf5512745 100644 --- a/metadata/md5-cache/dev-python/watchdog-0.8.0 +++ b/metadata/md5-cache/dev-python/watchdog-0.8.0 @@ -4,11 +4,11 @@ DESCRIPTION=Python API and shell utilities to monitor file system events EAPI=5 HOMEPAGE=http://github.com/gorakhargosh/watchdog IUSE=python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 -KEYWORDS=~amd64 x86 +KEYWORDS=amd64 x86 LICENSE=Apache-2.0 RDEPEND=dev-python/pyyaml[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/argh[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/pathtools[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/w/watchdog/watchdog-0.8.0.tar.gz _eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=735e0360b318245ea4bd4e7ce46e0b6f +_md5_=500625c9a1fcb7360c1d4a55a0aa11fa diff --git a/metadata/md5-cache/dev-python/webtest-2.0.15 b/metadata/md5-cache/dev-python/webtest-2.0.15 index 66b054af342f..623018645270 100644 --- a/metadata/md5-cache/dev-python/webtest-2.0.15 +++ b/metadata/md5-cache/dev-python/webtest-2.0.15 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/six[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=dev-python/waitress-0.8.5[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=dev-python/webob-1.2[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/beautifulsoup:4[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] app-arch/unzip dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] doc? ( dev-python/sphinx[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) test? ( dev-python/nose[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/pyquery[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/pastedeploy[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/wsgiproxy2[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/coverage[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/mock[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] +DEPEND=dev-python/six[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=dev-python/waitress-0.8.5[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=dev-python/webob-1.2[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/beautifulsoup:4[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/lxml[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] app-arch/unzip dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] doc? ( dev-python/sphinx[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) test? ( dev-python/nose[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/pyquery[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/pastedeploy[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/wsgiproxy2[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/coverage[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/mock[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] DESCRIPTION=Helper to test WSGI applications EAPI=5 HOMEPAGE=http://pythonpaste.org/webtest/ http://pypi.python.org/pypi/WebTest IUSE=doc test python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 KEYWORDS=~amd64 ~x86 LICENSE=MIT -RDEPEND=dev-python/six[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=dev-python/waitress-0.8.5[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=dev-python/webob-1.2[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/beautifulsoup:4[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] +RDEPEND=dev-python/six[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=dev-python/waitress-0.8.5[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=dev-python/webob-1.2[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/beautifulsoup:4[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/lxml[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/W/WebTest/WebTest-2.0.15.zip _eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=d563fa6178270abc400923a056ea2c16 +_md5_=bb35723f7400537c71e97bdc88e313e8 diff --git a/metadata/md5-cache/dev-qt/qtmultimedia-5.3.2 b/metadata/md5-cache/dev-qt/qtmultimedia-5.3.2 index 8cad3b9b1bcb..06355c1b036f 100644 --- a/metadata/md5-cache/dev-qt/qtmultimedia-5.3.2 +++ b/metadata/md5-cache/dev-qt/qtmultimedia-5.3.2 @@ -1,15 +1,15 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=>=dev-qt/qtcore-5.3.2:5[debug=] >=dev-qt/qtgui-5.3.2:5[debug=] >=dev-qt/qtnetwork-5.3.2:5[debug=] alsa? ( media-libs/alsa-lib ) gstreamer? ( media-libs/gstreamer:0.10 media-libs/gst-plugins-bad:0.10 media-libs/gst-plugins-base:0.10 ) pulseaudio? ( media-sound/pulseaudio ) qml? ( >=dev-qt/qtdeclarative-5.3.2:5[debug=] openal? ( media-libs/openal ) ) widgets? ( >=dev-qt/qtgui-5.3.2:5[debug=,opengl=] >=dev-qt/qtwidgets-5.3.2:5[debug=] opengl? ( >=dev-qt/qtopengl-5.3.2:5[debug=] ) ) x11-proto/videoproto test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-lang/perl virtual/pkgconfig test? ( >=dev-qt/qttest-5.3.2:5[debug=] ) +DEPEND=>=dev-qt/qtcore-5.3.2:5[debug=] >=dev-qt/qtgui-5.3.2:5[debug=] >=dev-qt/qtnetwork-5.3.2:5[debug=] alsa? ( media-libs/alsa-lib ) gstreamer? ( media-libs/gstreamer:0.10 media-libs/gst-plugins-bad:0.10 media-libs/gst-plugins-base:0.10 ) pulseaudio? ( media-sound/pulseaudio ) qml? ( >=dev-qt/qtdeclarative-5.3.2:5[debug=] openal? ( media-libs/openal ) ) widgets? ( >=dev-qt/qtgui-5.3.2:5[debug=,opengl=] >=dev-qt/qtwidgets-5.3.2:5[debug=,opengl=] opengl? ( >=dev-qt/qtopengl-5.3.2:5[debug=] ) ) x11-proto/videoproto test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-lang/perl virtual/pkgconfig test? ( >=dev-qt/qttest-5.3.2:5[debug=] ) DESCRIPTION=The Multimedia module for the Qt5 framework EAPI=5 HOMEPAGE=https://www.qt.io/ https://qt-project.org/ -IUSE=+alsa +gstreamer openal +opengl pulseaudio qml widgets test debug test +IUSE=alsa +gstreamer openal +opengl pulseaudio qml widgets test debug test KEYWORDS=~amd64 ~x86 LICENSE=|| ( LGPL-2.1 GPL-3 ) -RDEPEND=>=dev-qt/qtcore-5.3.2:5[debug=] >=dev-qt/qtgui-5.3.2:5[debug=] >=dev-qt/qtnetwork-5.3.2:5[debug=] alsa? ( media-libs/alsa-lib ) gstreamer? ( media-libs/gstreamer:0.10 media-libs/gst-plugins-bad:0.10 media-libs/gst-plugins-base:0.10 ) pulseaudio? ( media-sound/pulseaudio ) qml? ( >=dev-qt/qtdeclarative-5.3.2:5[debug=] openal? ( media-libs/openal ) ) widgets? ( >=dev-qt/qtgui-5.3.2:5[debug=,opengl=] >=dev-qt/qtwidgets-5.3.2:5[debug=] opengl? ( >=dev-qt/qtopengl-5.3.2:5[debug=] ) ) +RDEPEND=>=dev-qt/qtcore-5.3.2:5[debug=] >=dev-qt/qtgui-5.3.2:5[debug=] >=dev-qt/qtnetwork-5.3.2:5[debug=] alsa? ( media-libs/alsa-lib ) gstreamer? ( media-libs/gstreamer:0.10 media-libs/gst-plugins-bad:0.10 media-libs/gst-plugins-base:0.10 ) pulseaudio? ( media-sound/pulseaudio ) qml? ( >=dev-qt/qtdeclarative-5.3.2:5[debug=] openal? ( media-libs/openal ) ) widgets? ( >=dev-qt/qtgui-5.3.2:5[debug=,opengl=] >=dev-qt/qtwidgets-5.3.2:5[debug=,opengl=] opengl? ( >=dev-qt/qtopengl-5.3.2:5[debug=] ) ) REQUIRED_USE=?? ( alsa pulseaudio ) RESTRICT=test SLOT=5 SRC_URI=http://download.qt-project.org/archive/qt/5.3/5.3.2/submodules/qtmultimedia-opensource-src-5.3.2.tar.xz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 multilib 3bf24e6abb9b76d9f6c20600f0b716bf qt5-build e9aff1ae76d75e1ad9b6a3a3c1fc9145 toolchain-funcs 0f1760274637a138b99bb649202ea402 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=df26adf89198cf8d07c5684a6bdb7910 +_md5_=5d661d42366e9ec0a182c9a583a4d43b diff --git a/metadata/md5-cache/dev-ruby/coolio-1.2.1 b/metadata/md5-cache/dev-ruby/coolio-1.2.1 index a430fc736ae9..2d862fd92262 100644 --- a/metadata/md5-cache/dev-ruby/coolio-1.2.1 +++ b/metadata/md5-cache/dev-ruby/coolio-1.2.1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=dev-libs/libev test? ( ruby_targets_ruby19? ( >=dev-ruby/iobuffer-1[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/iobuffer-1[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( doc? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ) +DEPEND=dev-libs/libev test? ( ruby_targets_ruby19? ( >=dev-ruby/iobuffer-1[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/iobuffer-1[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/iobuffer-1[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( doc? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( doc? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) DESCRIPTION=A high performance event framework for Ruby which uses the libev C library EAPI=5 HOMEPAGE=http://coolio.github.com/ -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 doc test test +IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 doc test test KEYWORDS=~amd64 ~x86 LICENSE=MIT -RDEPEND=dev-libs/libev ruby_targets_ruby19? ( >=dev-ruby/iobuffer-1[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/iobuffer-1[ruby_targets_ruby20] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ) +RDEPEND=dev-libs/libev ruby_targets_ruby19? ( >=dev-ruby/iobuffer-1[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/iobuffer-1[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/iobuffer-1[ruby_targets_ruby21] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ) SLOT=0 SRC_URI=mirror://rubygems/cool.io-1.2.1.gem _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=84998bcb4cd653bdab896ae78ca4d9f5 +_md5_=dd58d743c2c6348fcbfbc81b5fd54f55 diff --git a/metadata/md5-cache/dev-ruby/dnsruby-1.55 b/metadata/md5-cache/dev-ruby/dnsruby-1.55 new file mode 100644 index 000000000000..61aae80be129 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/dnsruby-1.55 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( doc? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( doc? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) +DESCRIPTION=A pure Ruby DNS client library +EAPI=5 +HOMEPAGE=http://rubyforge.org/projects/dnsruby +IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 doc test +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ) +SLOT=0 +SRC_URI=mirror://rubygems/dnsruby-1.55.gem +_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f +_md5_=8c902c9ae5d506bbc01be9bd76384e5f diff --git a/metadata/md5-cache/dev-ruby/gruff-0.5.1-r1 b/metadata/md5-cache/dev-ruby/gruff-0.5.1-r1 new file mode 100644 index 000000000000..0afc499141fe --- /dev/null +++ b/metadata/md5-cache/dev-ruby/gruff-0.5.1-r1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=test? ( ruby_targets_ruby19? ( >=dev-ruby/rmagick-2[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/rmagick-2[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/rmagick-2[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/hoe[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/hoe[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/hoe[ruby_targets_ruby21] ) ) test? ( media-gfx/imagemagick[jpeg,truetype] ) ruby_targets_ruby19? ( test? ( dev-ruby/test-unit[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/test-unit[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/test-unit[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) +DESCRIPTION=RMagick Implementation for JRuby +EAPI=5 +HOMEPAGE=http://rubyforge.org/projects/gruff/ +IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 doc test test +KEYWORDS=~amd64 ~x86 ~x86-macos +LICENSE=MIT +RDEPEND=ruby_targets_ruby19? ( >=dev-ruby/rmagick-2[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/rmagick-2[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/rmagick-2[ruby_targets_ruby21] ) media-gfx/imagemagick[truetype] ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ) +SLOT=0 +SRC_URI=mirror://rubygems/gruff-0.5.1.gem +_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f +_md5_=3f2550c323b2d11fed18ded1406e3fb2 diff --git a/metadata/md5-cache/dev-ruby/letter_opener-1.2.0 b/metadata/md5-cache/dev-ruby/letter_opener-1.2.0 index 9162566a3876..7907348d5816 100644 --- a/metadata/md5-cache/dev-ruby/letter_opener-1.2.0 +++ b/metadata/md5-cache/dev-ruby/letter_opener-1.2.0 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby19? ( test? ( dev-ruby/mail:2.5[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/mail:2.5[ruby_targets_ruby20] ) ) test? ( ruby_targets_ruby19? ( dev-ruby/launchy[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/launchy[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ) +DEPEND=ruby_targets_ruby19? ( test? ( dev-ruby/mail:2.5[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/mail:2.5[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/mail:2.5[ruby_targets_ruby21] ) ) test? ( ruby_targets_ruby19? ( dev-ruby/launchy[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/launchy[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/launchy[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) DESCRIPTION=Preview mail in the browser instead of sending EAPI=5 HOMEPAGE=https://github.com/ryanb/letter_opener -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 test test +IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 test test KEYWORDS=~amd64 LICENSE=MIT -RDEPEND=ruby_targets_ruby19? ( dev-ruby/launchy[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/launchy[ruby_targets_ruby20] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ) +RDEPEND=ruby_targets_ruby19? ( dev-ruby/launchy[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/launchy[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/launchy[ruby_targets_ruby21] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ) SLOT=0 SRC_URI=https://github.com/ryanb/letter_opener/archive/v1.2.0.tar.gz -> letter_opener-1.2.0.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=8797f8f343b889c207d78197fda09f64 +_md5_=f761c9015729f7dd0b7bf4aa783fa53b diff --git a/metadata/md5-cache/dev-ruby/log4r-1.1.10-r1 b/metadata/md5-cache/dev-ruby/log4r-1.1.10-r1 index 82c35ce4832e..f62fc8bc82ed 100644 --- a/metadata/md5-cache/dev-ruby/log4r-1.1.10-r1 +++ b/metadata/md5-cache/dev-ruby/log4r-1.1.10-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ) +DEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) DESCRIPTION=A comprehensive and flexible logging library written in Ruby for use in Ruby programs EAPI=5 HOMEPAGE=http://log4r.sourceforge.net/ -IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 doc test +IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 doc test KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=LGPL-3 -RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ) +RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ) SLOT=0 SRC_URI=mirror://rubygems/log4r-1.1.10.gem _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=bd007312ece422c73662a47808682df1 +_md5_=1622148112901905cff15380c9e422f9 diff --git a/metadata/md5-cache/dev-ruby/mixlib-config-1.1.2 b/metadata/md5-cache/dev-ruby/mixlib-config-1.1.2 index 924995df0686..c893e26f8808 100644 --- a/metadata/md5-cache/dev-ruby/mixlib-config-1.1.2 +++ b/metadata/md5-cache/dev-ruby/mixlib-config-1.1.2 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] dev-util/cucumber[ruby_targets_ruby19] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ) +DEPEND=ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] dev-util/cucumber[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby20] dev-util/cucumber[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby21] dev-util/cucumber[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) DESCRIPTION=Simple class based Config mechanism EAPI=4 HOMEPAGE=http://github.com/opscode/mixlib-config -IUSE=test elibc_FreeBSD ruby_targets_ruby19 test +IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 test KEYWORDS=~amd64 ~x86 ~x86-fbsd LICENSE=Apache-2.0 -RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ) +RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ) SLOT=0 SRC_URI=https://github.com/opscode/mixlib-config/tarball/1.1.2 -> mixlib-config-1.1.2.tgz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=bb3612dcc5af3662fbdece5bf91dd453 +_md5_=73a846dd981e134d53e77dbd6714612d diff --git a/metadata/md5-cache/dev-ruby/mixlib-config-2.1.0 b/metadata/md5-cache/dev-ruby/mixlib-config-2.1.0 index 7fa4e2cef13d..fc8e52eca55b 100644 --- a/metadata/md5-cache/dev-ruby/mixlib-config-2.1.0 +++ b/metadata/md5-cache/dev-ruby/mixlib-config-2.1.0 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] dev-util/cucumber[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby20] dev-util/cucumber[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ) +DEPEND=ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] dev-util/cucumber[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby20] dev-util/cucumber[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby21] dev-util/cucumber[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) DESCRIPTION=Simple class based Config mechanism EAPI=5 HOMEPAGE=http://github.com/opscode/mixlib-config -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 doc test +IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 doc test KEYWORDS=~amd64 ~x86 ~x86-fbsd LICENSE=Apache-2.0 -RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ) +RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ) SLOT=2 SRC_URI=https://github.com/opscode/mixlib-config/archive/v2.1.0.tar.gz -> mixlib-config-2.1.0.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=70e5d8ec89a8a702f169cbdca16d55ac +_md5_=065209b79fa8e00b3dff8b62fa2779ef diff --git a/metadata/md5-cache/dev-ruby/mixlib-log-1.4.1-r1 b/metadata/md5-cache/dev-ruby/mixlib-log-1.4.1-r1 index 0cbbc8744e79..3fdb34f787ea 100644 --- a/metadata/md5-cache/dev-ruby/mixlib-log-1.4.1-r1 +++ b/metadata/md5-cache/dev-ruby/mixlib-log-1.4.1-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] dev-util/cucumber[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby20] dev-util/cucumber[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( doc? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ) +DEPEND=ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] dev-util/cucumber[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby20] dev-util/cucumber[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby21] dev-util/cucumber[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( doc? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( doc? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) DESCRIPTION=Simple class based Log mechanism EAPI=5 HOMEPAGE=http://github.com/opscode/mixlib-log -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 doc test +IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 doc test KEYWORDS=~amd64 ~x86 LICENSE=Apache-2.0 -RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ) +RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ) SLOT=0 SRC_URI=https://github.com/opscode/mixlib-log/tarball/1.4.1 -> mixlib-log-1.4.1.tgz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=f9511e73532b60947ec29ef8729adf3d +_md5_=05db2fe82c7fdda35bcebb93d6f6aac2 diff --git a/metadata/md5-cache/dev-ruby/nagios_analyzer-0.0.5-r1 b/metadata/md5-cache/dev-ruby/nagios_analyzer-0.0.5-r1 index 207536dd8ea7..c4a881c71bef 100644 --- a/metadata/md5-cache/dev-ruby/nagios_analyzer-0.0.5-r1 +++ b/metadata/md5-cache/dev-ruby/nagios_analyzer-0.0.5-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby20] ) ) ruby_targets_jruby? ( doc? ( dev-ruby/rdoc[ruby_targets_jruby] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby20] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rspec:2[ruby_targets_jruby] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) +DEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby21] ) ) ruby_targets_jruby? ( doc? ( dev-ruby/rdoc[ruby_targets_jruby] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby21] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rspec:2[ruby_targets_jruby] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) DESCRIPTION=A simple parser for Nagios status files EAPI=5 HOMEPAGE=https://github.com/jbbarth/nagios_analyzer -IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_jruby doc test test +IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_jruby doc test test KEYWORDS=~amd64 ~x86 LICENSE=MIT -RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_jruby ) +RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_jruby ) SLOT=0 SRC_URI=mirror://rubygems/nagios_analyzer-0.0.5.gem _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=968e078aa777a5a6a3a0ee528790efcb +_md5_=4a5e18b2f32acdf7eff868245b5952ed diff --git a/metadata/md5-cache/dev-ruby/net-ssh-gateway-1.2.0-r1 b/metadata/md5-cache/dev-ruby/net-ssh-gateway-1.2.0-r1 index 988573821b5a..43cea78ae4b4 100644 --- a/metadata/md5-cache/dev-ruby/net-ssh-gateway-1.2.0-r1 +++ b/metadata/md5-cache/dev-ruby/net-ssh-gateway-1.2.0-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby19? ( dev-ruby/test-unit:2[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/test-unit:2[ruby_targets_ruby20] ) test? ( ruby_targets_ruby19? ( >=dev-ruby/net-ssh-2.6.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/net-ssh-2.6.5[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ) +DEPEND=ruby_targets_ruby19? ( dev-ruby/test-unit:2[ruby_targets_ruby19] =dev-ruby/net-ssh-2.6.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/net-ssh-2.6.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/net-ssh-2.6.5[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) DESCRIPTION=A simple library to assist in enabling tunneled Net::SSH connections EAPI=5 HOMEPAGE=http://net-ssh.rubyforge.org/gateway -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 doc test test +IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 doc test test KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 -RDEPEND=ruby_targets_ruby19? ( >=dev-ruby/net-ssh-2.6.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/net-ssh-2.6.5[ruby_targets_ruby20] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ) +RDEPEND=ruby_targets_ruby19? ( >=dev-ruby/net-ssh-2.6.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/net-ssh-2.6.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/net-ssh-2.6.5[ruby_targets_ruby21] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ) SLOT=2 SRC_URI=mirror://rubygems/net-ssh-gateway-1.2.0.gem _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=856036c42452c7b5afdedb20be30e5e1 +_md5_=e8302c450124b68d37fa041d7dd6084d diff --git a/metadata/md5-cache/dev-ruby/redis-3.0.6 b/metadata/md5-cache/dev-ruby/redis-3.0.6 index 380ff0b53120..1b6f90441026 100644 --- a/metadata/md5-cache/dev-ruby/redis-3.0.6 +++ b/metadata/md5-cache/dev-ruby/redis-3.0.6 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( dev-db/redis ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( doc? ( dev-ruby/yard[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/yard[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ) +DEPEND=test? ( dev-db/redis ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( doc? ( dev-ruby/yard[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/yard[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( doc? ( dev-ruby/yard[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) DESCRIPTION=A Ruby client library for Redis EAPI=5 HOMEPAGE=https://github.com/redis/redis-rb -IUSE=doc test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 doc test test +IUSE=doc test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 doc test test KEYWORDS=~amd64 LICENSE=MIT -RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ) +RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ) SLOT=0 SRC_URI=https://github.com/redis/redis-rb/archive/v3.0.6.tar.gz -> redis-rb-3.0.6.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=a34d9e25f1a290ee7001160541a4b3a8 +_md5_=62594e4244a2a015ce19e608da092156 diff --git a/metadata/md5-cache/dev-ruby/ruby-elf-9999 b/metadata/md5-cache/dev-ruby/ruby-elf-9999 index 5d54b1587607..b91b7f8de1db 100644 --- a/metadata/md5-cache/dev-ruby/ruby-elf-9999 +++ b/metadata/md5-cache/dev-ruby/ruby-elf-9999 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby19? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby19] ) dev-ruby/rake[ruby_targets_ruby19] ) ruby_targets_jruby? ( test? ( dev-ruby/test-unit:2[ruby_targets_jruby] ) dev-ruby/rake[ruby_targets_jruby] ) dev-libs/libxslt app-text/docbook-xsl-ns-stylesheets ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) dev-vcs/git +DEPEND=ruby_targets_ruby19? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby19] ) dev-ruby/rake[ruby_targets_ruby19] ) dev-libs/libxslt app-text/docbook-xsl-ns-stylesheets ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ) dev-vcs/git DESCRIPTION=Ruby library to access ELF files information EAPI=5 HOMEPAGE=http://www.flameeyes.eu/projects/ruby-elf -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_jruby test +IUSE=test elibc_FreeBSD ruby_targets_ruby19 test LICENSE=GPL-2+ -RDEPEND=virtual/man ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_jruby ) +RDEPEND=virtual/man ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ) SLOT=0 _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c git-2 2027b81a576527fa16bece425941e094 git-r3 6ebae45064cb04482f3c702632dd9528 java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=addb7fe3f5f832e59a0b2d6dae2f5fda +_md5_=50e7e1302c2a196b314979fc6faf9210 diff --git a/metadata/md5-cache/dev-ruby/ruby-romkan-0.4-r5 b/metadata/md5-cache/dev-ruby/ruby-romkan-0.4-r5 index 9f22d3249327..b647ffb31314 100644 --- a/metadata/md5-cache/dev-ruby/ruby-romkan-0.4-r5 +++ b/metadata/md5-cache/dev-ruby/ruby-romkan-0.4-r5 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) +DEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) DESCRIPTION=A Romaji <-> Kana conversion library for Ruby EAPI=5 HOMEPAGE=http://0xcc.net/ruby-romkan/ -IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 +IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos LICENSE=Ruby -RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ) +RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ) SLOT=0 SRC_URI=http://0xcc.net/ruby-romkan/ruby-romkan-0.4.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=79a589462d4003e167a12375fcebf506 +_md5_=2555a1604cff5a6b33b8e47bf562ce55 diff --git a/metadata/md5-cache/dev-ruby/ruby-tcpwrap-0.6-r2 b/metadata/md5-cache/dev-ruby/ruby-tcpwrap-0.6-r2 index f4e7d0aa8851..a02b489993a1 100644 --- a/metadata/md5-cache/dev-ruby/ruby-tcpwrap-0.6-r2 +++ b/metadata/md5-cache/dev-ruby/ruby-tcpwrap-0.6-r2 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=net-libs/libident sys-apps/tcp-wrappers ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) +DEPEND=net-libs/libident sys-apps/tcp-wrappers ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) DESCRIPTION=A TCP wrappers library for Ruby EAPI=5 HOMEPAGE=http://raa.ruby-lang.org/list.rhtml?name=ruby-tcpwrap -IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 +IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 KEYWORDS=~amd64 ~hppa ~mips ~ppc ~x86 LICENSE=BSD -RDEPEND=net-libs/libident sys-apps/tcp-wrappers ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ) +RDEPEND=net-libs/libident sys-apps/tcp-wrappers ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ) SLOT=0 SRC_URI=http://shugo.net/archive/ruby-tcpwrap/ruby-tcpwrap-0.6.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=efebe8e808d07fdd836695e6d1e469da +_md5_=e9e7b979be372633ad02bb48bb5bb6c0 diff --git a/metadata/md5-cache/dev-ruby/ruby-xslt-0.9.9-r3 b/metadata/md5-cache/dev-ruby/ruby-xslt-0.9.9-r3 new file mode 100644 index 000000000000..f7fe7457ef20 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/ruby-xslt-0.9.9-r3 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=>=dev-libs/libxslt-1.1.12 ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) +DESCRIPTION=A Ruby class for processing XSLT +EAPI=5 +HOMEPAGE=http://www.rubyfr.net/ +IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 test +KEYWORDS=~amd64 ~ppc64 ~x86 +LICENSE=GPL-2 +RDEPEND=>=dev-libs/libxslt-1.1.12 ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ) +SLOT=0 +SRC_URI=mirror://rubygems/ruby-xslt-0.9.9.gem +_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f +_md5_=02cba9d6867a4e59f3ce8c2968cff8cb diff --git a/metadata/md5-cache/dev-ruby/sdoc-0.3.20 b/metadata/md5-cache/dev-ruby/sdoc-0.3.20 index 45210bec0bfc..9e13c873f977 100644 --- a/metadata/md5-cache/dev-ruby/sdoc-0.3.20 +++ b/metadata/md5-cache/dev-ruby/sdoc-0.3.20 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby19? ( >=dev-ruby/json-1.1.3[ruby_targets_ruby19] >=dev-ruby/rdoc-3.10[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/json-1.1.3[ruby_targets_ruby20] >=dev-ruby/rdoc-3.10[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( doc? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ) +DEPEND=test? ( ruby_targets_ruby19? ( >=dev-ruby/json-1.1.3[ruby_targets_ruby19] >=dev-ruby/rdoc-3.10[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/json-1.1.3[ruby_targets_ruby20] >=dev-ruby/rdoc-3.10[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/json-1.1.3[ruby_targets_ruby21] >=dev-ruby/rdoc-3.10[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( doc? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( doc? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) DESCRIPTION=rdoc generator html with javascript search index EAPI=5 HOMEPAGE=https://rubygems.org/gems/sdoc -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 doc test test +IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 doc test test KEYWORDS=~amd64 ~arm ~x86 LICENSE=MIT -RDEPEND=ruby_targets_ruby19? ( >=dev-ruby/json-1.1.3[ruby_targets_ruby19] >=dev-ruby/rdoc-3.10[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/json-1.1.3[ruby_targets_ruby20] >=dev-ruby/rdoc-3.10[ruby_targets_ruby20] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ) +RDEPEND=ruby_targets_ruby19? ( >=dev-ruby/json-1.1.3[ruby_targets_ruby19] >=dev-ruby/rdoc-3.10[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/json-1.1.3[ruby_targets_ruby20] >=dev-ruby/rdoc-3.10[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/json-1.1.3[ruby_targets_ruby21] >=dev-ruby/rdoc-3.10[ruby_targets_ruby21] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ) SLOT=0 SRC_URI=mirror://rubygems/sdoc-0.3.20.gem _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=2a9593dd8c90edf1032485f4108571ef +_md5_=1e456ba305bf3f7ad6ba9fb6f5ed5ee2 diff --git a/metadata/md5-cache/dev-ruby/seed-fu-2.3.3 b/metadata/md5-cache/dev-ruby/seed-fu-2.3.3 index 24669eb724b4..c7d13e860b2c 100644 --- a/metadata/md5-cache/dev-ruby/seed-fu-2.3.3 +++ b/metadata/md5-cache/dev-ruby/seed-fu-2.3.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby19? ( >=dev-ruby/activerecord-3.1[ruby_targets_ruby19] >=dev-ruby/activesupport-3.1[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/activerecord-3.1[ruby_targets_ruby20] >=dev-ruby/activesupport-3.1[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/sqlite3[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/sqlite3[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( doc? ( dev-ruby/yard[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/yard[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ) +DEPEND=test? ( ruby_targets_ruby19? ( >=dev-ruby/activerecord-3.1[ruby_targets_ruby19] >=dev-ruby/activesupport-3.1[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/activerecord-3.1[ruby_targets_ruby20] >=dev-ruby/activesupport-3.1[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/activerecord-3.1[ruby_targets_ruby21] >=dev-ruby/activesupport-3.1[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/sqlite3[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/sqlite3[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/sqlite3[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( doc? ( dev-ruby/yard[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/yard[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( doc? ( dev-ruby/yard[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) DESCRIPTION=Advanced seed data handling for Rails, combining the best practices of several methods together EAPI=5 HOMEPAGE=https://github.com/mbleigh/seed-fu -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 doc test test +IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 doc test test KEYWORDS=~amd64 LICENSE=MIT -RDEPEND=ruby_targets_ruby19? ( >=dev-ruby/activerecord-3.1[ruby_targets_ruby19] >=dev-ruby/activesupport-3.1[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/activerecord-3.1[ruby_targets_ruby20] >=dev-ruby/activesupport-3.1[ruby_targets_ruby20] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ) +RDEPEND=ruby_targets_ruby19? ( >=dev-ruby/activerecord-3.1[ruby_targets_ruby19] >=dev-ruby/activesupport-3.1[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/activerecord-3.1[ruby_targets_ruby20] >=dev-ruby/activesupport-3.1[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/activerecord-3.1[ruby_targets_ruby21] >=dev-ruby/activesupport-3.1[ruby_targets_ruby21] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ) SLOT=0 SRC_URI=https://github.com/mbleigh/seed-fu/archive/v2.3.3.tar.gz -> seed-fu-2.3.3.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=78aec79654cf31f99b1731118e7bc628 +_md5_=cc981afda634a839ff461e509e1915c9 diff --git a/metadata/md5-cache/dev-ruby/shoulda-3.5.0-r1 b/metadata/md5-cache/dev-ruby/shoulda-3.5.0-r1 index af7c82134666..da17ff4a0e32 100644 --- a/metadata/md5-cache/dev-ruby/shoulda-3.5.0-r1 +++ b/metadata/md5-cache/dev-ruby/shoulda-3.5.0-r1 @@ -1,15 +1,15 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby19? ( >=dev-ruby/shoulda-context-1.0.1[ruby_targets_ruby19] >=dev-ruby/shoulda-matchers-1.4.1[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/shoulda-context-1.0.1[ruby_targets_ruby20] >=dev-ruby/shoulda-matchers-1.4.1[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ) +DEPEND=test? ( ruby_targets_ruby19? ( >=dev-ruby/shoulda-context-1.0.1[ruby_targets_ruby19] >=dev-ruby/shoulda-matchers-1.4.1[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/shoulda-context-1.0.1[ruby_targets_ruby20] >=dev-ruby/shoulda-matchers-1.4.1[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/shoulda-context-1.0.1[ruby_targets_ruby21] >=dev-ruby/shoulda-matchers-1.4.1[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) DESCRIPTION=Making tests easy on the fingers and eyes EAPI=5 HOMEPAGE=http://thoughtbot.com/projects/shoulda -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 test test +IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 test test KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 LICENSE=MIT -RDEPEND=ruby_targets_ruby19? ( >=dev-ruby/shoulda-context-1.0.1[ruby_targets_ruby19] >=dev-ruby/shoulda-matchers-1.4.1[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/shoulda-context-1.0.1[ruby_targets_ruby20] >=dev-ruby/shoulda-matchers-1.4.1[ruby_targets_ruby20] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ) +RDEPEND=ruby_targets_ruby19? ( >=dev-ruby/shoulda-context-1.0.1[ruby_targets_ruby19] >=dev-ruby/shoulda-matchers-1.4.1[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/shoulda-context-1.0.1[ruby_targets_ruby20] >=dev-ruby/shoulda-matchers-1.4.1[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/shoulda-context-1.0.1[ruby_targets_ruby21] >=dev-ruby/shoulda-matchers-1.4.1[ruby_targets_ruby21] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ) RESTRICT=test SLOT=3 SRC_URI=https://github.com/thoughtbot/shoulda/archive/v3.5.0.tar.gz -> shoulda-3.5.0.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=3401e2eabe628efb70657f074e08eaae +_md5_=0ec5c3762e4cda25c693551929fc34c2 diff --git a/metadata/md5-cache/dev-ruby/shoulda-context-1.1.6 b/metadata/md5-cache/dev-ruby/shoulda-context-1.1.6 index a7178f15cc2c..055927178102 100644 --- a/metadata/md5-cache/dev-ruby/shoulda-context-1.1.6 +++ b/metadata/md5-cache/dev-ruby/shoulda-context-1.1.6 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby19? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby19] dev-ruby/mocha[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby20] dev-ruby/mocha[ruby_targets_ruby20] ) ) ruby_targets_jruby? ( test? ( dev-ruby/test-unit:2[ruby_targets_jruby] dev-ruby/mocha[ruby_targets_jruby] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby20] ) ) ruby_targets_jruby? ( doc? ( dev-ruby/rdoc[ruby_targets_jruby] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) +DEPEND=ruby_targets_ruby19? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby19] =dev-ruby/test-unit-2.5.1-r1[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( >=dev-ruby/test-unit-2.5.1-r1[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ) +DEPEND=ruby_targets_ruby19? ( test? ( >=dev-ruby/test-unit-2.5.1-r1[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( >=dev-ruby/test-unit-2.5.1-r1[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( >=dev-ruby/test-unit-2.5.1-r1[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) DESCRIPTION=System Information Gatherer And Reporter EAPI=5 HOMEPAGE=http://sigar.hyperic.com/ -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 test +IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 test KEYWORDS=~amd64 ~x86 LICENSE=Apache-2.0 -RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ) +RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ) SLOT=0 SRC_URI=mirror://rubygems/sigar-0.7.2.gem _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=7da19381792b45e8233386e1507815bb +_md5_=a7ffe791bc8f4ffbf0ef8a781707bd66 diff --git a/metadata/md5-cache/dev-ruby/simple_oauth-0.3.0 b/metadata/md5-cache/dev-ruby/simple_oauth-0.3.0 new file mode 100644 index 000000000000..53a5a71906a4 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/simple_oauth-0.3.0 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby21] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rspec:2[ruby_targets_jruby] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) +DESCRIPTION=Simply builds and verifies OAuth headers +EAPI=5 +HOMEPAGE=https://github.com/laserlemon/simple_oauth +IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_jruby test test +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_jruby ) +SLOT=0 +SRC_URI=mirror://rubygems/simple_oauth-0.3.0.gem +_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f +_md5_=846e13c7037830398100bc01823ce39c diff --git a/metadata/md5-cache/dev-ruby/slop-2.4.4-r1 b/metadata/md5-cache/dev-ruby/slop-2.4.4-r1 index ec377b5db6b5..e9cf686011f3 100644 --- a/metadata/md5-cache/dev-ruby/slop-2.4.4-r1 +++ b/metadata/md5-cache/dev-ruby/slop-2.4.4-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby19? ( test? ( dev-ruby/minitest[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/minitest[ruby_targets_ruby20] ) ) ruby_targets_jruby? ( test? ( dev-ruby/minitest[ruby_targets_jruby] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) +DEPEND=ruby_targets_ruby19? ( test? ( dev-ruby/minitest[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/minitest[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/minitest[ruby_targets_ruby21] ) ) ruby_targets_jruby? ( test? ( dev-ruby/minitest[ruby_targets_jruby] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) DESCRIPTION=A simple option parser with an easy to remember syntax and friendly API EAPI=5 HOMEPAGE=https://github.com/injekt/slop -IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_jruby test test +IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_jruby test test KEYWORDS=~amd64 ~x86 LICENSE=MIT -RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_jruby ) +RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_jruby ) SLOT=0 SRC_URI=https://github.com/injekt/slop/tarball/v2.4.4 -> slop-2.4.4.tgz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=616ee981203454c4becfef7c5b600240 +_md5_=a10ea9e8d632212cd518896a3637466f diff --git a/metadata/md5-cache/dev-ruby/sparklines-0.5.2-r4 b/metadata/md5-cache/dev-ruby/sparklines-0.5.2-r4 index 89c807f9d15d..aa76ea6dda5a 100644 --- a/metadata/md5-cache/dev-ruby/sparklines-0.5.2-r4 +++ b/metadata/md5-cache/dev-ruby/sparklines-0.5.2-r4 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby19? ( test? ( dev-ruby/hoe[ruby_targets_ruby19] dev-ruby/tidy_table[ruby_targets_ruby19] dev-ruby/dust[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/hoe[ruby_targets_ruby20] dev-ruby/tidy_table[ruby_targets_ruby20] dev-ruby/dust[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ) +DEPEND=ruby_targets_ruby19? ( test? ( dev-ruby/tidy_table[ruby_targets_ruby19] dev-ruby/dust[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/tidy_table[ruby_targets_ruby20] dev-ruby/dust[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/tidy_table[ruby_targets_ruby21] dev-ruby/dust[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) DESCRIPTION=Create sparklines, small graphs to be used inline in texts EAPI=5 HOMEPAGE=http://sparklines.rubyforge.org/ -IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 test test +IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 test test KEYWORDS=~amd64 ~x86 ~x86-macos LICENSE=MIT -RDEPEND=dev-ruby/rmagick ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ) +RDEPEND=dev-ruby/rmagick ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ) SLOT=0 SRC_URI=mirror://rubygems/sparklines-0.5.2.gem _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=d5950a02f46a253e1fe9ebc68f7eb5a4 +_md5_=63f27cf62d60b5e7c03f39008af1bced diff --git a/metadata/md5-cache/dev-ruby/tokyocabinet-1.29.1 b/metadata/md5-cache/dev-ruby/tokyocabinet-1.29.1 index fd568270ea47..59619ba4b726 100644 --- a/metadata/md5-cache/dev-ruby/tokyocabinet-1.29.1 +++ b/metadata/md5-cache/dev-ruby/tokyocabinet-1.29.1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ) +DEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) DESCRIPTION=Ruby bindings for Tokyo Cabinet EAPI=5 HOMEPAGE=http://fallabs.com/tokyocabinet/ -IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 test +IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 test KEYWORDS=~amd64 ~ppc ~x86 LICENSE=GPL-2 -RDEPEND=dev-db/tokyocabinet ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ) +RDEPEND=dev-db/tokyocabinet ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ) SLOT=0 SRC_URI=mirror://rubygems/tokyocabinet-1.29.1.gem _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=5017a24c105ef20ea84634ef1c7ca03d +_md5_=b7b0864f8e23b8d8542dbbef199f33dc diff --git a/metadata/md5-cache/dev-ruby/trollop-1.16.2-r4 b/metadata/md5-cache/dev-ruby/trollop-1.16.2-r4 index b32d8abb0d83..ef25fd08aebc 100644 --- a/metadata/md5-cache/dev-ruby/trollop-1.16.2-r4 +++ b/metadata/md5-cache/dev-ruby/trollop-1.16.2-r4 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) +DEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) DESCRIPTION=Trollop is a commandline option parser for Ruby EAPI=5 HOMEPAGE=http://trollop.rubyforge.org/ -IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_jruby test test +IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_jruby test test KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris LICENSE=Ruby -RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_jruby ) +RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_jruby ) SLOT=0 SRC_URI=mirror://rubygems/trollop-1.16.2.gem _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=e7135453625ff463f66c99bf60aaef36 +_md5_=a5351e209096536140be6f5fcd523bc2 diff --git a/metadata/md5-cache/dev-ruby/trollop-2.0 b/metadata/md5-cache/dev-ruby/trollop-2.0 index 3bc8ab5fcc1a..e7734fb90cef 100644 --- a/metadata/md5-cache/dev-ruby/trollop-2.0 +++ b/metadata/md5-cache/dev-ruby/trollop-2.0 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) +DEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) DESCRIPTION=Trollop is a commandline option parser for Ruby -EAPI=4 +EAPI=5 HOMEPAGE=http://trollop.rubyforge.org/ -IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_jruby test test +IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_jruby test test KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris LICENSE=Ruby -RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_jruby ) +RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_jruby ) SLOT=2 SRC_URI=mirror://rubygems/trollop-2.0.gem _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=c8fbbaf5b81b4a94171b9cbcb5c2293e +_md5_=494b837ab8c10740e7b3fab0084c33e7 diff --git a/metadata/md5-cache/dev-ruby/ttfunk-1.0.3-r1 b/metadata/md5-cache/dev-ruby/ttfunk-1.0.3-r1 index 25a117c0f9f1..a05bef7e7fdd 100644 --- a/metadata/md5-cache/dev-ruby/ttfunk-1.0.3-r1 +++ b/metadata/md5-cache/dev-ruby/ttfunk-1.0.3-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) +DEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) DESCRIPTION=A TrueType font parser written in pure ruby EAPI=5 HOMEPAGE=https://github.com/sandal/ttfunk/ -IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_jruby test +IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_jruby test KEYWORDS=~amd64 LICENSE=|| ( GPL-2 GPL-3 Ruby ) -RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_jruby ) +RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_jruby ) SLOT=1.0 SRC_URI=mirror://rubygems/ttfunk-1.0.3.gem _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=f22256804582803339bec01338469ad9 +_md5_=6eada6c32f5ee215c87d414d5530aab9 diff --git a/metadata/md5-cache/dev-ruby/ttfunk-1.1.1 b/metadata/md5-cache/dev-ruby/ttfunk-1.1.1 index ab343ede21c1..7ce6e47813d2 100644 --- a/metadata/md5-cache/dev-ruby/ttfunk-1.1.1 +++ b/metadata/md5-cache/dev-ruby/ttfunk-1.1.1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby20] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rspec:2[ruby_targets_jruby] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) +DEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby21] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rspec:2[ruby_targets_jruby] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) DESCRIPTION=A TrueType font parser written in pure ruby EAPI=5 HOMEPAGE=https://github.com/prawnpdf/ttfunk/ -IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_jruby test test +IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_jruby test test KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=|| ( GPL-2 GPL-3 Ruby ) -RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_jruby ) +RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_jruby ) SLOT=1.1 SRC_URI=https://github.com/prawnpdf/ttfunk/archive/1.1.1.tar.gz -> ttfunk-1.1.1.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=83b58acc78e456e79cc17760c25ecb92 +_md5_=df09127e0ae908a2b6705f62a447e586 diff --git a/metadata/md5-cache/dev-ruby/twitter-5.11.0 b/metadata/md5-cache/dev-ruby/twitter-5.11.0 index 68facb8ecb50..92530f326484 100644 --- a/metadata/md5-cache/dev-ruby/twitter-5.11.0 +++ b/metadata/md5-cache/dev-ruby/twitter-5.11.0 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby19? ( >=dev-ruby/addressable-2.3[ruby_targets_ruby19] >=dev-ruby/buftok-0.2.0[ruby_targets_ruby19] >=dev-ruby/equalizer-0.0.9[ruby_targets_ruby19] =dev-ruby/faraday-0*[ruby_targets_ruby19] >=dev-ruby/faraday-0.9.0[ruby_targets_ruby19] >=dev-ruby/http-0.6.0:0.6[ruby_targets_ruby19] >=dev-ruby/http_parser_rb-0.6.0[ruby_targets_ruby19] >=dev-ruby/json-1.8[ruby_targets_ruby19] >=dev-ruby/memoizable-0.4.0[ruby_targets_ruby19] >=dev-ruby/naught-1.0[ruby_targets_ruby19] =dev-ruby/simple_oauth-0*[ruby_targets_ruby19] >=dev-ruby/simple_oauth-0.2[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/addressable-2.3[ruby_targets_ruby20] >=dev-ruby/buftok-0.2.0[ruby_targets_ruby20] >=dev-ruby/equalizer-0.0.9[ruby_targets_ruby20] =dev-ruby/faraday-0*[ruby_targets_ruby20] >=dev-ruby/faraday-0.9.0[ruby_targets_ruby20] >=dev-ruby/http-0.6.0:0.6[ruby_targets_ruby20] >=dev-ruby/http_parser_rb-0.6.0[ruby_targets_ruby20] >=dev-ruby/json-1.8[ruby_targets_ruby20] >=dev-ruby/memoizable-0.4.0[ruby_targets_ruby20] >=dev-ruby/naught-1.0[ruby_targets_ruby20] =dev-ruby/simple_oauth-0*[ruby_targets_ruby20] >=dev-ruby/simple_oauth-0.2[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] dev-ruby/webmock[ruby_targets_ruby19] ) doc? ( dev-ruby/yard[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby20] dev-ruby/webmock[ruby_targets_ruby20] ) doc? ( dev-ruby/yard[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( doc? ( dev-ruby/yard[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/yard[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ) +DEPEND=test? ( ruby_targets_ruby19? ( >=dev-ruby/addressable-2.3[ruby_targets_ruby19] >=dev-ruby/buftok-0.2.0[ruby_targets_ruby19] >=dev-ruby/equalizer-0.0.9[ruby_targets_ruby19] =dev-ruby/faraday-0*[ruby_targets_ruby19] >=dev-ruby/faraday-0.9.0[ruby_targets_ruby19] >=dev-ruby/http-0.6.0:0.6[ruby_targets_ruby19] >=dev-ruby/http_parser_rb-0.6.0[ruby_targets_ruby19] >=dev-ruby/json-1.8[ruby_targets_ruby19] >=dev-ruby/memoizable-0.4.0[ruby_targets_ruby19] >=dev-ruby/naught-1.0[ruby_targets_ruby19] =dev-ruby/simple_oauth-0*[ruby_targets_ruby19] >=dev-ruby/simple_oauth-0.2[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/addressable-2.3[ruby_targets_ruby20] >=dev-ruby/buftok-0.2.0[ruby_targets_ruby20] >=dev-ruby/equalizer-0.0.9[ruby_targets_ruby20] =dev-ruby/faraday-0*[ruby_targets_ruby20] >=dev-ruby/faraday-0.9.0[ruby_targets_ruby20] >=dev-ruby/http-0.6.0:0.6[ruby_targets_ruby20] >=dev-ruby/http_parser_rb-0.6.0[ruby_targets_ruby20] >=dev-ruby/json-1.8[ruby_targets_ruby20] >=dev-ruby/memoizable-0.4.0[ruby_targets_ruby20] >=dev-ruby/naught-1.0[ruby_targets_ruby20] =dev-ruby/simple_oauth-0*[ruby_targets_ruby20] >=dev-ruby/simple_oauth-0.2[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/addressable-2.3[ruby_targets_ruby21] >=dev-ruby/buftok-0.2.0[ruby_targets_ruby21] >=dev-ruby/equalizer-0.0.9[ruby_targets_ruby21] =dev-ruby/faraday-0*[ruby_targets_ruby21] >=dev-ruby/faraday-0.9.0[ruby_targets_ruby21] >=dev-ruby/http-0.6.0:0.6[ruby_targets_ruby21] >=dev-ruby/http_parser_rb-0.6.0[ruby_targets_ruby21] >=dev-ruby/json-1.8[ruby_targets_ruby21] >=dev-ruby/memoizable-0.4.0[ruby_targets_ruby21] >=dev-ruby/naught-1.0[ruby_targets_ruby21] =dev-ruby/simple_oauth-0*[ruby_targets_ruby21] >=dev-ruby/simple_oauth-0.2[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] dev-ruby/webmock[ruby_targets_ruby19] ) doc? ( dev-ruby/yard[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby20] dev-ruby/webmock[ruby_targets_ruby20] ) doc? ( dev-ruby/yard[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby21] dev-ruby/webmock[ruby_targets_ruby21] ) doc? ( dev-ruby/yard[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( doc? ( dev-ruby/yard[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/yard[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( doc? ( dev-ruby/yard[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) DESCRIPTION=Ruby wrapper around the Twitter API EAPI=5 HOMEPAGE=http://sferik.github.com/twitter/ -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 doc test test +IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 doc test test KEYWORDS=~amd64 LICENSE=MIT -RDEPEND=ruby_targets_ruby19? ( >=dev-ruby/addressable-2.3[ruby_targets_ruby19] >=dev-ruby/buftok-0.2.0[ruby_targets_ruby19] >=dev-ruby/equalizer-0.0.9[ruby_targets_ruby19] =dev-ruby/faraday-0*[ruby_targets_ruby19] >=dev-ruby/faraday-0.9.0[ruby_targets_ruby19] >=dev-ruby/http-0.6.0:0.6[ruby_targets_ruby19] >=dev-ruby/http_parser_rb-0.6.0[ruby_targets_ruby19] >=dev-ruby/json-1.8[ruby_targets_ruby19] >=dev-ruby/memoizable-0.4.0[ruby_targets_ruby19] >=dev-ruby/naught-1.0[ruby_targets_ruby19] =dev-ruby/simple_oauth-0*[ruby_targets_ruby19] >=dev-ruby/simple_oauth-0.2[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/addressable-2.3[ruby_targets_ruby20] >=dev-ruby/buftok-0.2.0[ruby_targets_ruby20] >=dev-ruby/equalizer-0.0.9[ruby_targets_ruby20] =dev-ruby/faraday-0*[ruby_targets_ruby20] >=dev-ruby/faraday-0.9.0[ruby_targets_ruby20] >=dev-ruby/http-0.6.0:0.6[ruby_targets_ruby20] >=dev-ruby/http_parser_rb-0.6.0[ruby_targets_ruby20] >=dev-ruby/json-1.8[ruby_targets_ruby20] >=dev-ruby/memoizable-0.4.0[ruby_targets_ruby20] >=dev-ruby/naught-1.0[ruby_targets_ruby20] =dev-ruby/simple_oauth-0*[ruby_targets_ruby20] >=dev-ruby/simple_oauth-0.2[ruby_targets_ruby20] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ) +RDEPEND=ruby_targets_ruby19? ( >=dev-ruby/addressable-2.3[ruby_targets_ruby19] >=dev-ruby/buftok-0.2.0[ruby_targets_ruby19] >=dev-ruby/equalizer-0.0.9[ruby_targets_ruby19] =dev-ruby/faraday-0*[ruby_targets_ruby19] >=dev-ruby/faraday-0.9.0[ruby_targets_ruby19] >=dev-ruby/http-0.6.0:0.6[ruby_targets_ruby19] >=dev-ruby/http_parser_rb-0.6.0[ruby_targets_ruby19] >=dev-ruby/json-1.8[ruby_targets_ruby19] >=dev-ruby/memoizable-0.4.0[ruby_targets_ruby19] >=dev-ruby/naught-1.0[ruby_targets_ruby19] =dev-ruby/simple_oauth-0*[ruby_targets_ruby19] >=dev-ruby/simple_oauth-0.2[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/addressable-2.3[ruby_targets_ruby20] >=dev-ruby/buftok-0.2.0[ruby_targets_ruby20] >=dev-ruby/equalizer-0.0.9[ruby_targets_ruby20] =dev-ruby/faraday-0*[ruby_targets_ruby20] >=dev-ruby/faraday-0.9.0[ruby_targets_ruby20] >=dev-ruby/http-0.6.0:0.6[ruby_targets_ruby20] >=dev-ruby/http_parser_rb-0.6.0[ruby_targets_ruby20] >=dev-ruby/json-1.8[ruby_targets_ruby20] >=dev-ruby/memoizable-0.4.0[ruby_targets_ruby20] >=dev-ruby/naught-1.0[ruby_targets_ruby20] =dev-ruby/simple_oauth-0*[ruby_targets_ruby20] >=dev-ruby/simple_oauth-0.2[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/addressable-2.3[ruby_targets_ruby21] >=dev-ruby/buftok-0.2.0[ruby_targets_ruby21] >=dev-ruby/equalizer-0.0.9[ruby_targets_ruby21] =dev-ruby/faraday-0*[ruby_targets_ruby21] >=dev-ruby/faraday-0.9.0[ruby_targets_ruby21] >=dev-ruby/http-0.6.0:0.6[ruby_targets_ruby21] >=dev-ruby/http_parser_rb-0.6.0[ruby_targets_ruby21] >=dev-ruby/json-1.8[ruby_targets_ruby21] >=dev-ruby/memoizable-0.4.0[ruby_targets_ruby21] >=dev-ruby/naught-1.0[ruby_targets_ruby21] =dev-ruby/simple_oauth-0*[ruby_targets_ruby21] >=dev-ruby/simple_oauth-0.2[ruby_targets_ruby21] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ) SLOT=5 SRC_URI=mirror://rubygems/twitter-5.11.0.gem _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=f05d299e369c25d44413db1d5fb60a06 +_md5_=07f0b5f415de8dfa31df46e2b6850ef0 diff --git a/metadata/md5-cache/dev-ruby/xpath-0.1.4-r1 b/metadata/md5-cache/dev-ruby/xpath-0.1.4-r1 index 8be8fd6aa45d..f336a6fb273d 100644 --- a/metadata/md5-cache/dev-ruby/xpath-0.1.4-r1 +++ b/metadata/md5-cache/dev-ruby/xpath-0.1.4-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby19? ( test? ( dev-ruby/nokogiri[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/nokogiri[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ) +DEPEND=ruby_targets_ruby19? ( test? ( dev-ruby/nokogiri[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/nokogiri[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/nokogiri[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby21] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) DESCRIPTION=XPath is a Ruby DSL around a subset of XPath 1.0 EAPI=5 HOMEPAGE=https://github.com/jnicklas/xpath -IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 test test +IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 test test KEYWORDS=~amd64 LICENSE=MIT -RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ) +RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ) SLOT=0 SRC_URI=mirror://rubygems/xpath-0.1.4.gem _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=b56dc2989dc091db894dd8124128f868 +_md5_=b9bd1d310cbd9063f720a27ededf5d26 diff --git a/metadata/md5-cache/dev-ruby/xpath-1.0.0-r1 b/metadata/md5-cache/dev-ruby/xpath-1.0.0-r1 index a1d86553399e..541803113e45 100644 --- a/metadata/md5-cache/dev-ruby/xpath-1.0.0-r1 +++ b/metadata/md5-cache/dev-ruby/xpath-1.0.0-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby20] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rspec:2[ruby_targets_jruby] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) +DEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby21] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rspec:2[ruby_targets_jruby] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) DESCRIPTION=XPath is a Ruby DSL around a subset of XPath 1.0 EAPI=5 HOMEPAGE=https://github.com/jnicklas/xpath -IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_jruby test test +IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_jruby test test KEYWORDS=~amd64 LICENSE=MIT -RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_jruby ) +RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_jruby ) SLOT=1 SRC_URI=mirror://rubygems/xpath-1.0.0.gem _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-fakegem 738ee4b7f8b16d4a734b4d37717db89b ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=d71dee4aa533b2360dc2e95657d2014e +_md5_=6bfdde12a48664cd5586ddc3513c0f39 diff --git a/metadata/md5-cache/dev-util/cppcheck-1.65-r1 b/metadata/md5-cache/dev-util/cppcheck-1.65-r1 index 5f6e1b5e6a46..0c69d772d5e8 100644 --- a/metadata/md5-cache/dev-util/cppcheck-1.65-r1 +++ b/metadata/md5-cache/dev-util/cppcheck-1.65-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=htmlreport? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) >=dev-libs/tinyxml2-2 qt4? ( dev-qt/qtgui:4 ) virtual/pkgconfig python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] +DEPEND=htmlreport? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) >=dev-libs/tinyxml2-2 qt4? ( dev-qt/qtgui:4 ) pcre? ( dev-libs/libpcre ) app-text/docbook-xsl-stylesheets dev-libs/libxslt virtual/pkgconfig python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] DESCRIPTION=static analyzer of C/C++ code EAPI=5 HOMEPAGE=http://cppcheck.sourceforge.net -IUSE=htmlreport qt4 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 +IUSE=htmlreport pcre qt4 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 KEYWORDS=~amd64 ~x86 LICENSE=GPL-3 -RDEPEND=htmlreport? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) >=dev-libs/tinyxml2-2 qt4? ( dev-qt/qtgui:4 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] +RDEPEND=htmlreport? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) >=dev-libs/tinyxml2-2 qt4? ( dev-qt/qtgui:4 ) pcre? ( dev-libs/libpcre ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://sourceforge/cppcheck/cppcheck-1.65.tar.bz2 _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 qmake-utils 40136c5fe0002a0d3937e869ae4ee0e2 qt4-r2 b40473dafd07d7c5fe4aef1c1b902f39 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=e23103dc50e2a2afcfd629774217702b +_md5_=904d4d27e28454b14b5619829f4867d5 diff --git a/metadata/md5-cache/dev-util/cppcheck-1.66 b/metadata/md5-cache/dev-util/cppcheck-1.66 new file mode 100644 index 000000000000..53d8ca5005aa --- /dev/null +++ b/metadata/md5-cache/dev-util/cppcheck-1.66 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=htmlreport? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) >=dev-libs/tinyxml2-2 qt4? ( dev-qt/qtgui:4 ) pcre? ( dev-libs/libpcre ) app-text/docbook-xsl-stylesheets dev-libs/libxslt virtual/pkgconfig python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] +DESCRIPTION=static analyzer of C/C++ code +EAPI=5 +HOMEPAGE=http://cppcheck.sourceforge.net +IUSE=htmlreport pcre qt4 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=htmlreport? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) >=dev-libs/tinyxml2-2 qt4? ( dev-qt/qtgui:4 ) pcre? ( dev-libs/libpcre ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) +SLOT=0 +SRC_URI=mirror://sourceforge/cppcheck/cppcheck-1.66.tar.bz2 +_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 qmake-utils 40136c5fe0002a0d3937e869ae4ee0e2 qt4-r2 b40473dafd07d7c5fe4aef1c1b902f39 toolchain-funcs 0f1760274637a138b99bb649202ea402 +_md5_=130422b516cc9c5a7b4f4d07bf28c6a1 diff --git a/metadata/md5-cache/dev-util/dialog-1.2.20140219 b/metadata/md5-cache/dev-util/dialog-1.2.20140219 index 6874299fcd1a..49bc10f2f7b8 100644 --- a/metadata/md5-cache/dev-util/dialog-1.2.20140219 +++ b/metadata/md5-cache/dev-util/dialog-1.2.20140219 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install prepare -DEPEND=>=sys-libs/ncurses-5.2-r5 unicode? ( sys-libs/ncurses[unicode] ) nls? ( sys-devel/gettext ) !minimal? ( sys-devel/libtool ) !<=sys-freebsd/freebsd-contrib-8.9999 +DEPEND=>=sys-libs/ncurses-5.2-r5[unicode?] nls? ( sys-devel/gettext ) !minimal? ( sys-devel/libtool ) !<=sys-freebsd/freebsd-contrib-8.9999 DESCRIPTION=tool to display dialog boxes from a shell EAPI=5 HOMEPAGE=http://invisible-island.net/dialog/dialog.html IUSE=examples minimal nls static-libs unicode KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd LICENSE=GPL-2 -RDEPEND=>=sys-libs/ncurses-5.2-r5 unicode? ( sys-libs/ncurses[unicode] ) +RDEPEND=>=sys-libs/ncurses-5.2-r5[unicode?] SLOT=0 SRC_URI=ftp://invisible-island.net/dialog/dialog-1.2-20140219.tgz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=63432699f263a78bcdc9783d35da5c5d +_md5_=9d0836425e26079653731511037df198 diff --git a/metadata/md5-cache/dev-util/dialog-1.2.20140911 b/metadata/md5-cache/dev-util/dialog-1.2.20140911 new file mode 100644 index 000000000000..d31462704802 --- /dev/null +++ b/metadata/md5-cache/dev-util/dialog-1.2.20140911 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure install prepare +DEPEND=>=sys-libs/ncurses-5.2-r5[unicode?] nls? ( sys-devel/gettext ) !minimal? ( sys-devel/libtool ) !<=sys-freebsd/freebsd-contrib-8.9999 +DESCRIPTION=tool to display dialog boxes from a shell +EAPI=5 +HOMEPAGE=http://invisible-island.net/dialog/dialog.html +IUSE=examples minimal nls static-libs unicode +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd +LICENSE=GPL-2 +RDEPEND=>=sys-libs/ncurses-5.2-r5[unicode?] +SLOT=0 +SRC_URI=ftp://invisible-island.net/dialog/dialog-1.2-20140911.tgz +_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f +_md5_=7e1353b1d37df4ff4f6d7e9b5e444a32 diff --git a/metadata/md5-cache/dev-util/global-6.3.1 b/metadata/md5-cache/dev-util/global-6.3.1 index a18265b38dc1..baf86ffab996 100644 --- a/metadata/md5-cache/dev-util/global-6.3.1 +++ b/metadata/md5-cache/dev-util/global-6.3.1 @@ -4,10 +4,10 @@ DESCRIPTION=GNU Global is a tag system to find the locations of a specified obje EAPI=5 HOMEPAGE=http://www.gnu.org/software/global/global.html IUSE=doc emacs vim -KEYWORDS=amd64 ~ppc ~x86 ~x86-fbsd +KEYWORDS=amd64 ~ppc x86 ~x86-fbsd LICENSE=GPL-3 RDEPEND=sys-devel/libtool sys-libs/ncurses emacs? ( virtual/emacs ) vim? ( || ( app-editors/vim app-editors/gvim ) ) SLOT=0 SRC_URI=mirror://gnu/global/global-6.3.1.tar.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 elisp-common 1aa23b3de5dae55456fa2071428eb5bf eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=8d6d2b755f0c781cb685ffbcba49683f +_md5_=3baa971b470b43e49b566f4836ecc970 diff --git a/metadata/md5-cache/dev-util/trinity-9999 b/metadata/md5-cache/dev-util/trinity-9999 index fd3a64129411..d0bc4480834e 100644 --- a/metadata/md5-cache/dev-util/trinity-9999 +++ b/metadata/md5-cache/dev-util/trinity-9999 @@ -2,9 +2,9 @@ DEFINED_PHASES=compile configure install prepare unpack DEPEND=sys-kernel/linux-headers >=dev-vcs/git-1.8.2.1 DESCRIPTION=A Linux system call fuzz tester EAPI=5 -HOMEPAGE=http://codemonkey.org.uk/projects/trinity/ +HOMEPAGE=http://codemonkey.org.uk/projects/trinity/ https://github.com/kernelslacker/trinity/ IUSE=examples LICENSE=GPL-2 SLOT=0 _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c git-r3 6ebae45064cb04482f3c702632dd9528 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=f713cdce69930bec0eb4edeecd8eeb69 +_md5_=63a5acd4bab695e2678983ea0f2853a6 diff --git a/metadata/md5-cache/dev-vcs/cssc-1.3.0-r1 b/metadata/md5-cache/dev-vcs/cssc-1.3.0-r1 deleted file mode 100644 index a5937fa7ee97..000000000000 --- a/metadata/md5-cache/dev-vcs/cssc-1.3.0-r1 +++ /dev/null @@ -1,10 +0,0 @@ -DEFINED_PHASES=compile configure prepare test -DESCRIPTION=CSSC is the GNU Project's replacement for SCCS -EAPI=4 -HOMEPAGE=http://www.gnu.org/software/cssc/ -KEYWORDS=amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos -LICENSE=GPL-3 -SLOT=0 -SRC_URI=mirror://gnu/cssc/CSSC-1.3.0.tar.gz -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=c52132554e3cae3132f26e8dd54d0e12 diff --git a/metadata/md5-cache/dev-vcs/cssc-1.4.0 b/metadata/md5-cache/dev-vcs/cssc-1.4.0 index 0a20bd7bcdef..03d2e5e3c936 100644 --- a/metadata/md5-cache/dev-vcs/cssc-1.4.0 +++ b/metadata/md5-cache/dev-vcs/cssc-1.4.0 @@ -4,9 +4,9 @@ DESCRIPTION=The GNU Project's replacement for SCCS EAPI=5 HOMEPAGE=http://www.gnu.org/software/cssc/ IUSE=test valgrind -KEYWORDS=amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos +KEYWORDS=amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos LICENSE=GPL-3 SLOT=0 SRC_URI=mirror://gnu/cssc/CSSC-1.4.0.tar.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=373abdc97a0cb6c1fcf0d09f4022e215 +_md5_=3447f35cce46d639cca1ebb5bb703b6d diff --git a/metadata/md5-cache/dev-vcs/monotone-1.0-r4 b/metadata/md5-cache/dev-vcs/monotone-1.0-r4 index 26c4643ad401..8744cd845b98 100644 --- a/metadata/md5-cache/dev-vcs/monotone-1.0-r4 +++ b/metadata/md5-cache/dev-vcs/monotone-1.0-r4 @@ -4,10 +4,10 @@ DESCRIPTION=Monotone Distributed Version Control System EAPI=4 HOMEPAGE=http://monotone.ca IUSE=doc ipv6 nls test -KEYWORDS=amd64 ~ia64 ~x86 +KEYWORDS=amd64 ~ia64 x86 LICENSE=GPL-2 RDEPEND=sys-libs/zlib >=dev-libs/libpcre-7.6 >=dev-libs/botan-1.8.0 >=dev-db/sqlite-3.3.8 >=dev-lang/lua-5.1 net-dns/libidn SLOT=1 SRC_URI=http://monotone.ca/downloads/1.0/monotone-1.0.tar.bz2 _eclasses_=bash-completion-r1 c8399c7c7ecbcf7ed6e5bd3abb3d4af3 elisp-common 1aa23b3de5dae55456fa2071428eb5bf eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=534dcb47e335e23ba56e9dfa1eb70fa3 +_md5_=446ce1f76b415a2473a586ceee64c5fd diff --git a/metadata/md5-cache/games-action/openclonk-5.5.1 b/metadata/md5-cache/games-action/openclonk-5.5.1 new file mode 100644 index 000000000000..5bb634948dbe --- /dev/null +++ b/metadata/md5-cache/games-action/openclonk-5.5.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack +DEPEND=>=dev-libs/boost-1.40 dev-libs/tinyxml net-libs/libupnp media-libs/libpng:0 sys-libs/zlib !dedicated? ( dev-libs/glib:2 media-libs/freealut media-libs/freetype:2 media-libs/glew media-libs/libsdl[X,opengl,sound,video] media-libs/libvorbis media-libs/openal media-libs/sdl-mixer[mp3,vorbis,wav] virtual/jpeg virtual/opengl virtual/glu x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libXrandr x11-libs/libX11 ) dedicated? ( sys-libs/readline:0 ) virtual/pkgconfig doc? ( || ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-libs/libxml2[python] sys-devel/gettext ) sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) >=sys-apps/sed-4 +DESCRIPTION=A free multiplayer action game where you control clonks +EAPI=5 +HOMEPAGE=http://openclonk.org/ +IUSE=dedicated doc +KEYWORDS=~amd64 ~x86 +LICENSE=BSD ISC CLONK-trademark LGPL-2.1 POSTGRESQL +RDEPEND=>=dev-libs/boost-1.40 dev-libs/tinyxml net-libs/libupnp media-libs/libpng:0 sys-libs/zlib !dedicated? ( dev-libs/glib:2 media-libs/freealut media-libs/freetype:2 media-libs/glew media-libs/libsdl[X,opengl,sound,video] media-libs/libvorbis media-libs/openal media-libs/sdl-mixer[mp3,vorbis,wav] virtual/jpeg virtual/opengl virtual/glu x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libXrandr x11-libs/libX11 ) dedicated? ( sys-libs/readline:0 ) games-misc/games-envd +SLOT=0 +SRC_URI=http://www.openclonk.org/builds/release/5.5.1/openclonk-5.5.1-src.tar.bz2 http://openclonk.org/homepage/icon.png -> openclonk.png +_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 cmake-utils da2974fcb060ec927e93a17c835afa67 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 games e221fed675714bd5545b7488aed9f822 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-any-r1 4560effd96d3d2a82e50af7cf87166da python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 +_md5_=c170f2074813269bd093a410d372d57d diff --git a/metadata/md5-cache/games-arcade/openmortal-0.7-r1 b/metadata/md5-cache/games-arcade/openmortal-0.7-r1 index ecbe0334cca3..023407ce9854 100644 --- a/metadata/md5-cache/games-arcade/openmortal-0.7-r1 +++ b/metadata/md5-cache/games-arcade/openmortal-0.7-r1 @@ -3,10 +3,10 @@ DEPEND=media-libs/libsdl[video] media-libs/sdl-image media-libs/sdl-mixer media- DESCRIPTION=A spoof of the famous Mortal Kombat game EAPI=5 HOMEPAGE=http://openmortal.sourceforge.net/ -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=GPL-2 RDEPEND=media-libs/libsdl[video] media-libs/sdl-image media-libs/sdl-mixer media-libs/sdl-ttf media-libs/sdl-net >=media-libs/freetype-2.4.0 dev-lang/perl games-misc/games-envd SLOT=0 SRC_URI=mirror://sourceforge/openmortal/openmortal-0.7.tar.bz2 _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c games e221fed675714bd5545b7488aed9f822 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=09b2367c44a19ef6f85fe1c1e70a5435 +_md5_=7ba8c9e68ddeabb021ef117b92ae759e diff --git a/metadata/md5-cache/games-board/atakks-1.0 b/metadata/md5-cache/games-board/atakks-1.0 index 4d639bc380de..e0a1b4032f75 100644 --- a/metadata/md5-cache/games-board/atakks-1.0 +++ b/metadata/md5-cache/games-board/atakks-1.0 @@ -3,10 +3,10 @@ DEPEND=media-libs/libsdl:0 DESCRIPTION=A clone of Ataxx EAPI=5 HOMEPAGE=http://team.gcu-squad.org/~fab -KEYWORDS=~amd64 ppc x86 +KEYWORDS=amd64 ppc x86 LICENSE=GPL-2 RDEPEND=media-libs/libsdl:0 games-misc/games-envd SLOT=0 SRC_URI=mirror://gentoo/atakks-1.0.tar.gz _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c games e221fed675714bd5545b7488aed9f822 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=7e5f097d80cc3ecfbbc6eee4be86e905 +_md5_=f4c225fce6ac611ca6ac00683ff06837 diff --git a/metadata/md5-cache/games-board/biloba-0.9.3 b/metadata/md5-cache/games-board/biloba-0.9.3 index d5cf499498ec..aee397267027 100644 --- a/metadata/md5-cache/games-board/biloba-0.9.3 +++ b/metadata/md5-cache/games-board/biloba-0.9.3 @@ -3,10 +3,10 @@ DEPEND=media-libs/libsdl:0[X,video,sound] media-libs/sdl-image[png] media-libs/s DESCRIPTION=a board game, up to 4 players, with AI and network EAPI=5 HOMEPAGE=http://biloba.sourceforge.net/ -KEYWORDS=~amd64 x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 RDEPEND=media-libs/libsdl:0[X,video,sound] media-libs/sdl-image[png] media-libs/sdl-mixer games-misc/games-envd SLOT=0 SRC_URI=mirror://sourceforge/biloba/biloba-0.9.3.tar.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c games e221fed675714bd5545b7488aed9f822 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=e291a425a219c5cfc314a4f822888253 +_md5_=711c08c4ae5723d5a871a7bf107ab623 diff --git a/metadata/md5-cache/games-board/capicity-1.0 b/metadata/md5-cache/games-board/capicity-1.0 index db6eb9df37bd..9ebe55cc0555 100644 --- a/metadata/md5-cache/games-board/capicity-1.0 +++ b/metadata/md5-cache/games-board/capicity-1.0 @@ -4,10 +4,10 @@ DESCRIPTION=A monopd compatible boardgame to play Monopoly-like games (previousl EAPI=5 HOMEPAGE=http://linux-ecke.de/CapiCity/ IUSE=dedicated -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=GPL-2 RDEPEND=dev-qt/qtcore:4 dev-qt/qtscript:4 !dedicated? ( dev-qt/qtgui:4 ) games-misc/games-envd SLOT=0 SRC_URI=dedicated? ( mirror://sourceforge/project/capitalism/Capi%20City/1.0/Capid_1.0.tar.gz ) !dedicated? ( mirror://sourceforge/project/capitalism/Capi%20City/1.0/CapiCity_1.0.tar.gz ) _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c games e221fed675714bd5545b7488aed9f822 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 multilib 3bf24e6abb9b76d9f6c20600f0b716bf qmake-utils 40136c5fe0002a0d3937e869ae4ee0e2 toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=f6a28e6275ad9ccffe3917c74ed8bd33 +_md5_=4a942c3c1c4c05dde1b79ac76edfd888 diff --git a/metadata/md5-cache/games-board/ccgo-0.3.6.4 b/metadata/md5-cache/games-board/ccgo-0.3.6.4 index 2707f539555e..0dbaf626e56e 100644 --- a/metadata/md5-cache/games-board/ccgo-0.3.6.4 +++ b/metadata/md5-cache/games-board/ccgo-0.3.6.4 @@ -4,10 +4,10 @@ DESCRIPTION=An IGS client written in C++ EAPI=5 HOMEPAGE=http://ccdw.org/~cjj/prog/ccgo/ IUSE=nls -KEYWORDS=~amd64 ~ppc x86 +KEYWORDS=amd64 ~ppc x86 LICENSE=GPL-3 RDEPEND=>=dev-cpp/gtkmm-2.4:2.4 >=dev-cpp/gconfmm-2.6 nls? ( virtual/libintl ) games-misc/games-envd SLOT=0 SRC_URI=http://ccdw.org/~cjj/prog/ccgo/src/ccgo-0.3.6.4.tar.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c games e221fed675714bd5545b7488aed9f822 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=82bdaa3cc89ec7b24be09cf6fc6a667e +_md5_=ac1eb288a54af085aadd142376a2b37f diff --git a/metadata/md5-cache/games-board/gnuchess-6.1.2 b/metadata/md5-cache/games-board/gnuchess-6.1.2 index 737386af9c81..ae51efd571d0 100644 --- a/metadata/md5-cache/games-board/gnuchess-6.1.2 +++ b/metadata/md5-cache/games-board/gnuchess-6.1.2 @@ -2,10 +2,10 @@ DEFINED_PHASES=compile configure install postinst preinst prepare setup unpack DESCRIPTION=Console based chess interface EAPI=5 HOMEPAGE=http://www.gnu.org/software/chess/chess.html -KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 +KEYWORDS=amd64 ~arm ~ppc ~ppc64 ~x86 LICENSE=GPL-3 RDEPEND=games-misc/games-envd SLOT=0 SRC_URI=mirror://gnu/chess/gnuchess-6.1.2.tar.gz _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 games e221fed675714bd5545b7488aed9f822 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=8dac280f3a30fc444857947a9b7d5d2e +_md5_=d203f0f879a4062348c39113fa1f30c8 diff --git a/metadata/md5-cache/games-board/mah-jong-1.14 b/metadata/md5-cache/games-board/mah-jong-1.14 index 492312e67b80..6bd7123fb5d2 100644 --- a/metadata/md5-cache/games-board/mah-jong-1.14 +++ b/metadata/md5-cache/games-board/mah-jong-1.14 @@ -3,10 +3,10 @@ DEPEND=x11-libs/gtk+:2 dev-lang/perl DESCRIPTION=A networked Mah Jong program, together with a computer player EAPI=5 HOMEPAGE=http://www.stevens-bradfield.com/MahJong/ -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=GPL-2 RDEPEND=x11-libs/gtk+:2 games-misc/games-envd SLOT=0 SRC_URI=http://mahjong.julianbradfield.org/Source/mj-1.14-src.tar.gz _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c games e221fed675714bd5545b7488aed9f822 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=d43c906f676c00c6b98e1088d6d02dd5 +_md5_=1084d06af03a002a22b76913f9d1da7e diff --git a/metadata/md5-cache/games-board/natch-2.4 b/metadata/md5-cache/games-board/natch-2.4 index 54206f04e2ec..8538b2c611d8 100644 --- a/metadata/md5-cache/games-board/natch-2.4 +++ b/metadata/md5-cache/games-board/natch-2.4 @@ -3,10 +3,10 @@ DEPEND=sys-libs/ncurses DESCRIPTION=A program to solve chess proof games EAPI=5 HOMEPAGE=http://natch.free.fr/Natch.html -KEYWORDS=~amd64 ~ppc x86 +KEYWORDS=amd64 ~ppc x86 LICENSE=GPL-2 RDEPEND=sys-libs/ncurses games-misc/games-envd SLOT=0 SRC_URI=http://natch.free.fr/Natch/Natch-2.4.tar.gz _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c games e221fed675714bd5545b7488aed9f822 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=92014b8e77a455fee49c8ac106b792f3 +_md5_=907a2bb726a1b9fb0114621104ddbbe7 diff --git a/metadata/md5-cache/games-board/pioneers-15.1-r1 b/metadata/md5-cache/games-board/pioneers-15.1-r1 index 703c68c40a9d..8ff44cd9c318 100644 --- a/metadata/md5-cache/games-board/pioneers-15.1-r1 +++ b/metadata/md5-cache/games-board/pioneers-15.1-r1 @@ -4,10 +4,10 @@ DESCRIPTION=A clone of the popular board game The Settlers of Catan EAPI=5 HOMEPAGE=http://pio.sourceforge.net/ IUSE=dedicated help nls debug -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.6:2 !dedicated? ( >=x11-libs/gtk+-2.6:2 x11-libs/libnotify help? ( >=app-text/scrollkeeper-0.3.8 >=gnome-base/libgnome-2.10 ) ) nls? ( virtual/libintl ) games-misc/games-envd !gnome-extra/gnome-games SLOT=0 SRC_URI=mirror://sourceforge/pio/pioneers-15.1.tar.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c fdo-mime 0acfe1a88fd8751a1d5dc671168219fa games e221fed675714bd5545b7488aed9f822 gnome-games 7f53729f215f511269a6397612dd96da gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 9637c29fc715b17a6328f24251129557 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=aaf5d593a1c5ec0ca6a6294dae8f7d88 +_md5_=f1f916e6b8d032cc8c5656a61c8ce957 diff --git a/metadata/md5-cache/games-board/pouetchess-0.2.0-r1 b/metadata/md5-cache/games-board/pouetchess-0.2.0-r1 index 0311727768d2..07a8ee995628 100644 --- a/metadata/md5-cache/games-board/pouetchess-0.2.0-r1 +++ b/metadata/md5-cache/games-board/pouetchess-0.2.0-r1 @@ -4,10 +4,10 @@ DESCRIPTION=3D and open source chess game EAPI=5 HOMEPAGE=http://pouetchess.sourceforge.net/ IUSE=debug -KEYWORDS=~amd64 ~ppc x86 +KEYWORDS=amd64 ~ppc x86 LICENSE=GPL-2 RDEPEND=media-libs/libsdl:0[opengl,video] media-libs/sdl-image[jpeg,png] virtual/glu virtual/opengl games-misc/games-envd SLOT=0 SRC_URI=mirror://sourceforge/pouetchess/pouetchess_src_0.2.0.tar.gz _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c games e221fed675714bd5545b7488aed9f822 multilib 3bf24e6abb9b76d9f6c20600f0b716bf scons-utils 988e24b9e2e4642189b4e97c03e5ae71 toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=1c4dc13988f08aff2810de7ec9f61e60 +_md5_=35537d2de145f3867ae1e1957cb5ac8b diff --git a/metadata/md5-cache/games-board/qcheckers-20091230 b/metadata/md5-cache/games-board/qcheckers-20091230 index 57bf8a510bb5..b692845fb299 100644 --- a/metadata/md5-cache/games-board/qcheckers-20091230 +++ b/metadata/md5-cache/games-board/qcheckers-20091230 @@ -3,10 +3,10 @@ DEPEND=dev-qt/qtgui:4 DESCRIPTION=Qt4 based checkers game EAPI=5 HOMEPAGE=http://code.google.com/p/qcheckers/ -KEYWORDS=~amd64 x86 +KEYWORDS=amd64 x86 LICENSE=GPL-3 RDEPEND=dev-qt/qtgui:4 games-misc/games-envd SLOT=0 SRC_URI=http://qcheckers.googlecode.com/files/QCheckers-20091230.tar.gz _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c games e221fed675714bd5545b7488aed9f822 multilib 3bf24e6abb9b76d9f6c20600f0b716bf qmake-utils 40136c5fe0002a0d3937e869ae4ee0e2 qt4-r2 b40473dafd07d7c5fe4aef1c1b902f39 toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=48c769ef6b8370de8beb1da4ea0d01bb +_md5_=4e36fec01bd9949c46ffab009a151f85 diff --git a/metadata/md5-cache/games-board/tetzle-2.0.1 b/metadata/md5-cache/games-board/tetzle-2.0.1 deleted file mode 100644 index 0006be0f421b..000000000000 --- a/metadata/md5-cache/games-board/tetzle-2.0.1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=dev-qt/qtgui-4.7:4 >=dev-qt/qtopengl-4.7:4 >=sys-apps/sed-4 -DESCRIPTION=A jigsaw puzzle game that uses tetrominoes for the pieces -EAPI=2 -HOMEPAGE=http://gottcode.org/tetzle/ -KEYWORDS=amd64 x86 -LICENSE=GPL-3 -RDEPEND=>=dev-qt/qtgui-4.7:4 >=dev-qt/qtopengl-4.7:4 games-misc/games-envd -SLOT=0 -SRC_URI=http://gottcode.org/tetzle/tetzle-2.0.1-src.tar.bz2 -_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c games e221fed675714bd5545b7488aed9f822 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 multilib 3bf24e6abb9b76d9f6c20600f0b716bf qmake-utils 40136c5fe0002a0d3937e869ae4ee0e2 qt4-r2 b40473dafd07d7c5fe4aef1c1b902f39 toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=d9989d4b763761476ed35db7911473a4 diff --git a/metadata/md5-cache/games-board/tetzle-2.0.3 b/metadata/md5-cache/games-board/tetzle-2.0.3 index 8f467c963423..e43d48f86e67 100644 --- a/metadata/md5-cache/games-board/tetzle-2.0.3 +++ b/metadata/md5-cache/games-board/tetzle-2.0.3 @@ -3,10 +3,10 @@ DEPEND=>=dev-qt/qtgui-4.7:4 >=dev-qt/qtopengl-4.7:4 >=sys-apps/sed-4 DESCRIPTION=A jigsaw puzzle game that uses tetrominoes for the pieces EAPI=5 HOMEPAGE=http://gottcode.org/tetzle/ -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-3 RDEPEND=>=dev-qt/qtgui-4.7:4 >=dev-qt/qtopengl-4.7:4 games-misc/games-envd SLOT=0 SRC_URI=http://gottcode.org/tetzle/tetzle-2.0.3-src.tar.bz2 _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c games e221fed675714bd5545b7488aed9f822 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 multilib 3bf24e6abb9b76d9f6c20600f0b716bf qmake-utils 40136c5fe0002a0d3937e869ae4ee0e2 qt4-r2 b40473dafd07d7c5fe4aef1c1b902f39 toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=ab0b3e989a488e138d817933b7b3079b +_md5_=5dac824fd960d9c6d8a9791935ce6c2a diff --git a/metadata/md5-cache/games-engines/renpy-6.18.1 b/metadata/md5-cache/games-engines/renpy-6.18.1 deleted file mode 100644 index 78197bbde0d9..000000000000 --- a/metadata/md5-cache/games-engines/renpy-6.18.1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=app-admin/eselect-renpy-0.5 dev-libs/fribidi dev-python/pygame[X,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-lang/python-exec-0.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] media-libs/glew media-libs/libpng:0 media-libs/libsdl[X,video] media-libs/freetype:2 sys-libs/zlib virtual/ffmpeg dev-python/cython[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/pkgconfig >=sys-apps/sed-4 python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] -DESCRIPTION=Visual novel engine written in python -EAPI=5 -HOMEPAGE=http://www.renpy.org -IUSE=development doc examples python_targets_python2_7 -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=>=app-admin/eselect-renpy-0.5 dev-libs/fribidi dev-python/pygame[X,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-lang/python-exec-0.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] media-libs/glew media-libs/libpng:0 media-libs/libsdl[X,video] media-libs/freetype:2 sys-libs/zlib virtual/ffmpeg games-misc/games-envd python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] -REQUIRED_USE=examples? ( development ) || ( python_targets_python2_7 ) -SLOT=6.18 -SRC_URI=http://www.renpy.org/dl/6.18.1/renpy-6.18.1-source.tar.bz2 -_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c games e221fed675714bd5545b7488aed9f822 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=134bf4d87a0a4bb5ed61abf89ee71431 diff --git a/metadata/md5-cache/games-engines/renpy-6.18.0-r1 b/metadata/md5-cache/games-engines/renpy-6.18.2 similarity index 95% rename from metadata/md5-cache/games-engines/renpy-6.18.0-r1 rename to metadata/md5-cache/games-engines/renpy-6.18.2 index 842027dde90c..2aede5ae5bf3 100644 --- a/metadata/md5-cache/games-engines/renpy-6.18.0-r1 +++ b/metadata/md5-cache/games-engines/renpy-6.18.2 @@ -9,6 +9,6 @@ LICENSE=MIT RDEPEND=>=app-admin/eselect-renpy-0.5 dev-libs/fribidi dev-python/pygame[X,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-lang/python-exec-0.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] media-libs/glew media-libs/libpng:0 media-libs/libsdl[X,video] media-libs/freetype:2 sys-libs/zlib virtual/ffmpeg games-misc/games-envd python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=examples? ( development ) || ( python_targets_python2_7 ) SLOT=6.18 -SRC_URI=http://www.renpy.org/dl/6.18.0/renpy-6.18.0-source.tar.bz2 +SRC_URI=http://www.renpy.org/dl/6.18.2/renpy-6.18.2-source.tar.bz2 _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c games e221fed675714bd5545b7488aed9f822 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=f6cf3dd783cec9300765214f4ee3cff2 +_md5_=44836bb1394b11f88410be73af70daf7 diff --git a/metadata/md5-cache/games-engines/scummvm-1.7.0 b/metadata/md5-cache/games-engines/scummvm-1.7.0 index 86c5be0f3514..18be39416c15 100644 --- a/metadata/md5-cache/games-engines/scummvm-1.7.0 +++ b/metadata/md5-cache/games-engines/scummvm-1.7.0 @@ -4,11 +4,11 @@ DESCRIPTION=Reimplementation of the SCUMM game engine used in Lucasarts adventur EAPI=5 HOMEPAGE=http://scummvm.sourceforge.net/ IUSE=aac alsa debug flac fluidsynth jpeg mpeg2 mp3 opengl png theora jpeg truetype vorbis zlib -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd +KEYWORDS=amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd LICENSE=GPL-2 LGPL-2.1 BSD GPL-3-with-font-exception RDEPEND=>=media-libs/libsdl-1.2.2[sound,joystick,video] zlib? ( sys-libs/zlib ) jpeg? ( virtual/jpeg:0 ) png? ( media-libs/libpng:0 ) vorbis? ( media-libs/libogg media-libs/libvorbis ) theora? ( media-libs/libtheora ) aac? ( media-libs/faad2 ) alsa? ( media-libs/alsa-lib ) mp3? ( media-libs/libmad ) mpeg2? ( media-libs/libmpeg2 ) flac? ( media-libs/flac ) opengl? ( virtual/opengl ) truetype? ( media-libs/freetype:2 ) fluidsynth? ( media-sound/fluidsynth ) games-misc/games-envd RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/scummvm/scummvm-1.7.0.tar.bz2 _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 games e221fed675714bd5545b7488aed9f822 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=ad0f2893eb87fd4a1d14050986585018 +_md5_=576a4a74a12afdbffe93f54e3d9c4547 diff --git a/metadata/md5-cache/games-engines/scummvm-tools-1.7.0 b/metadata/md5-cache/games-engines/scummvm-tools-1.7.0 index 611bf3d1724f..29b5e4733753 100644 --- a/metadata/md5-cache/games-engines/scummvm-tools-1.7.0 +++ b/metadata/md5-cache/games-engines/scummvm-tools-1.7.0 @@ -4,11 +4,11 @@ DESCRIPTION=utilities for the SCUMM game engine EAPI=5 HOMEPAGE=http://scummvm.sourceforge.net/ IUSE=flac iconv mad png vorbis -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd +KEYWORDS=amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd LICENSE=GPL-2 RDEPEND=png? ( media-libs/libpng:0 ) mad? ( media-libs/libmad ) flac? ( media-libs/flac ) vorbis? ( media-libs/libvorbis ) iconv? ( virtual/libiconv media-libs/freetype:2 ) sys-libs/zlib >=dev-libs/boost-1.32 x11-libs/wxGTK:2.8 games-misc/games-envd RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/scummvm/scummvm-tools-1.7.0.tar.bz2 _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 games e221fed675714bd5545b7488aed9f822 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 wxwidgets 6d6eec2685256d35511e7b6d5461bec9 -_md5_=9d51b7e9e6abe2b0a077bc78bd5e1cf4 +_md5_=5a15727e75a0044d5e66f0e626bc70f5 diff --git a/metadata/md5-cache/games-fps/urbanterror-4.2.018-r1 b/metadata/md5-cache/games-fps/urbanterror-4.2.018-r1 index 171cf25f2be1..d60c5d67598d 100644 --- a/metadata/md5-cache/games-fps/urbanterror-4.2.018-r1 +++ b/metadata/md5-cache/games-fps/urbanterror-4.2.018-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Hollywood tactical shooter based on the ioquake3 engine EAPI=5 HOMEPAGE=http://www.urbanterror.info/home/ IUSE=+curl debug dedicated openal +sdl server smp vorbis -KEYWORDS=~amd64 x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 Q3AEULA-20000111 urbanterror-4.2-maps RDEPEND=!dedicated? ( virtual/opengl curl? ( net-misc/curl ) openal? ( media-libs/openal ) sdl? ( media-libs/libsdl[X,sound,joystick,opengl,video] ) !sdl? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXxf86dga x11-libs/libXxf86vm ) vorbis? ( media-libs/libogg media-libs/libvorbis ) ) games-misc/games-envd RESTRICT=mirror SLOT=0 SRC_URI=http://cdn.urbanterror.info/urt/42/zips/UrbanTerror42_full017.zip https://github.com/Barbatos/ioq3-for-UrbanTerror-4/archive/release-4.2.018.tar.gz -> urbanterror-4.2.018.tar.gz http://upload.wikimedia.org/wikipedia/en/5/56/Urbanterror.svg -> urbanterror.svg http://cdn.urbanterror.info/urt/42/zips/UrbanTerror-4.2.017-to-4.2.018.zip _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 32548a82e42dc26e3312581476d2f20c games e221fed675714bd5545b7488aed9f822 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=809117d41a17a9da67fe7cbdd851fcd7 +_md5_=f9d00c990f47609c7d900dc48b92450c diff --git a/metadata/md5-cache/games-fps/xonotic-0.7.0 b/metadata/md5-cache/games-fps/xonotic-0.7.0 index e497aefa2116..b9aebadaea24 100644 --- a/metadata/md5-cache/games-fps/xonotic-0.7.0 +++ b/metadata/md5-cache/games-fps/xonotic-0.7.0 @@ -4,10 +4,10 @@ DESCRIPTION=Fork of Nexuiz, Deathmatch FPS based on DarkPlaces, an advanced Quak EAPI=5 HOMEPAGE=http://www.xonotic.org/ IUSE=alsa debug dedicated doc sdl -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=GPL-2 RDEPEND=sys-libs/zlib virtual/jpeg media-libs/libpng net-misc/curl ~dev-libs/d0_blind_id-0.5 !dedicated? ( media-libs/libogg media-libs/libtheora media-libs/libvorbis media-libs/libmodplug x11-libs/libX11 x11-libs/libXau x11-libs/libXpm x11-libs/libXext x11-libs/libXdmcp x11-libs/libXxf86dga x11-libs/libXxf86vm virtual/opengl media-libs/freetype:2 alsa? ( media-libs/alsa-lib ) sdl? ( media-libs/libsdl[X,sound,joystick,opengl,video,alsa?] ) ) games-misc/games-envd SLOT=0 SRC_URI=http://dl.xonotic.org/xonotic-0.7.0.zip _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 check-reqs a7f404bfb16e0a996700c5d3ac4edad3 eutils 32548a82e42dc26e3312581476d2f20c games e221fed675714bd5545b7488aed9f822 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=dbae2adaf4d99ba53f50ddcba017334b +_md5_=365938de9612c49ea7cdb31c8696f78a diff --git a/metadata/md5-cache/games-misc/opengfx-0.5.1 b/metadata/md5-cache/games-misc/opengfx-0.5.1 index 5b64e445849f..185a061fde32 100644 --- a/metadata/md5-cache/games-misc/opengfx-0.5.1 +++ b/metadata/md5-cache/games-misc/opengfx-0.5.1 @@ -3,11 +3,11 @@ DEPEND=>=games-util/nml-0.3.0 games-util/grfcodec DESCRIPTION=OpenGFX data files for OpenTTD EAPI=5 HOMEPAGE=http://bundles.openttdcoop.org/opengfx/ -KEYWORDS=~amd64 ~arm ~ppc ~x86 +KEYWORDS=amd64 ~arm ~ppc ~x86 LICENSE=GPL-2 RDEPEND=games-misc/games-envd RESTRICT=test SLOT=0 SRC_URI=http://bundles.openttdcoop.org/opengfx/releases/0.5.1/opengfx-0.5.1-source.tar.xz _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c games e221fed675714bd5545b7488aed9f822 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=0c52f2fe837690420e3f127724fa5e64 +_md5_=a92102b60640fe161716f17ae796a257 diff --git a/metadata/md5-cache/games-roguelike/stone-soup-0.14.2 b/metadata/md5-cache/games-roguelike/stone-soup-0.14.2 index ca1267964ca5..a0ba00c0c234 100644 --- a/metadata/md5-cache/games-roguelike/stone-soup-0.14.2 +++ b/metadata/md5-cache/games-roguelike/stone-soup-0.14.2 @@ -4,11 +4,11 @@ DESCRIPTION=Dungeon Crawl Stone Soup is a role-playing roguelike game of explora EAPI=5 HOMEPAGE=http://crawl.develz.org/wordpress/ IUSE=debug luajit ncurses test +tiles -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 BSD BSD-2 public-domain CC0-1.0 MIT RDEPEND=dev-db/sqlite:3 luajit? ( >=dev-lang/luajit-2.0.0 ) !luajit? ( >=dev-lang/lua-5.1.0[deprecated] ) sys-libs/zlib !ncurses? ( !tiles? ( sys-libs/ncurses ) ) ncurses? ( sys-libs/ncurses ) tiles? ( media-fonts/dejavu media-libs/freetype:2 media-libs/libpng:0 media-libs/libsdl[X,opengl,video] media-libs/sdl-image[png] virtual/glu virtual/opengl ) games-misc/games-envd RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/crawl-ref/Stone%20Soup/0.14.2/stone_soup-0.14.2-nodeps.tar.xz http://dev.gentoo.org/~hasufell/distfiles/stone-soup.png http://dev.gentoo.org/~hasufell/distfiles/stone-soup.svg _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c games e221fed675714bd5545b7488aed9f822 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=e5386f964f86728396fa0068fff812aa +_md5_=ee720d93e8686ac5f01c5ecbb739051c diff --git a/metadata/md5-cache/games-simulation/simutrans-0.112.3 b/metadata/md5-cache/games-simulation/simutrans-0.112.3 index 1b16aa3b98e6..3662c0cce070 100644 --- a/metadata/md5-cache/games-simulation/simutrans-0.112.3 +++ b/metadata/md5-cache/games-simulation/simutrans-0.112.3 @@ -3,10 +3,10 @@ DEPEND=media-libs/libsdl[sound,video] sys-libs/zlib app-arch/bzip2 media-libs/li DESCRIPTION=A free Transport Tycoon clone EAPI=5 HOMEPAGE=http://www.simutrans.com/ -KEYWORDS=-* ~amd64 ~x86 +KEYWORDS=-* amd64 ~x86 LICENSE=Artistic RDEPEND=media-libs/libsdl[sound,video] sys-libs/zlib app-arch/bzip2 media-libs/libpng:0 media-libs/sdl-mixer games-misc/games-envd SLOT=0 SRC_URI=mirror://sourceforge/simutrans/simutrans-src-112-3.zip mirror://sourceforge/simutrans/simulinux-112-3.zip mirror://sourceforge/simutrans/simupak64-112-3.zip _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 games e221fed675714bd5545b7488aed9f822 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=a6aa0c302d2f8cc4f0fbf574912ec6d1 +_md5_=0af1645683009a24c3e357f58d97cefd diff --git a/metadata/md5-cache/games-strategy/liquidwar6-0.4.3681 b/metadata/md5-cache/games-strategy/liquidwar6-0.4.3681 index 90cd846df966..592c0c675836 100644 --- a/metadata/md5-cache/games-strategy/liquidwar6-0.4.3681 +++ b/metadata/md5-cache/games-strategy/liquidwar6-0.4.3681 @@ -4,10 +4,10 @@ DESCRIPTION=Unique multiplayer wargame between liquids EAPI=5 HOMEPAGE=http://www.gnu.org/software/liquidwar6/ IUSE=doc gles2 gtk libcaca +maps nls +ogg openmp readline test -KEYWORDS=~amd64 x86 +KEYWORDS=amd64 x86 LICENSE=GPL-3+ RDEPEND=dev-db/sqlite:3 dev-libs/expat dev-scheme/guile dev-util/cunit media-libs/freetype:2 media-libs/libpng:0 media-libs/libsdl[X,opengl,video] media-libs/sdl-image[jpeg,png] media-libs/sdl-ttf net-misc/curl sys-devel/libtool:2 sys-libs/zlib virtual/glu virtual/jpeg virtual/opengl libcaca? ( media-libs/libcaca ) gles2? ( media-libs/mesa[gles2] ) gtk? ( x11-libs/gtk+:2 ) nls? ( virtual/libintl virtual/libiconv ) ogg? ( media-libs/libsdl[X,sound,opengl,video] media-libs/sdl-mixer[vorbis] ) readline? ( sys-libs/ncurses sys-libs/readline ) games-misc/games-envd SLOT=0 SRC_URI=http://www.ufoot.org/download/liquidwar/v6/0.4.3681/liquidwar6-0.4.3681.tar.gz maps? ( http://www.ufoot.org/download/liquidwar/v6/0.4.3681/liquidwar6-extra-maps-0.4.3681.tar.gz ) _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c games e221fed675714bd5545b7488aed9f822 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=d0f470b6720a51c6e3af7bf8b801e5cf +_md5_=ac18c4d5c9df684413f27ff36df72145 diff --git a/metadata/md5-cache/games-strategy/openra-20140722 b/metadata/md5-cache/games-strategy/openra-20140722 index b6447ad57aac..bc819fa02d63 100644 --- a/metadata/md5-cache/games-strategy/openra-20140722 +++ b/metadata/md5-cache/games-strategy/openra-20140722 @@ -4,10 +4,10 @@ DESCRIPTION=A free RTS engine supporting games like Command & Conquer and Red Al EAPI=5 HOMEPAGE=http://open-ra.org/ IUSE=tools -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=GPL-3 RDEPEND=dev-dotnet/libgdiplus dev-lang/mono media-libs/freetype:2[X] media-libs/libsdl2[X,opengl,video] media-libs/openal virtual/jpeg virtual/opengl games-misc/games-envd SLOT=0 SRC_URI=https://github.com/OpenRA/OpenRA/tarball/release-20140722 -> openra-20140722.tar.gz _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c games e221fed675714bd5545b7488aed9f822 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 mono-env 59ca1177366cc9e14521d3501e9bb281 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 -_md5_=7f74ff8796939ff835ea680da7886abc +_md5_=e89488f152de415298a931255f8086c6 diff --git a/metadata/md5-cache/games-util/grfcodec-6.0.4 b/metadata/md5-cache/games-util/grfcodec-6.0.4 index c6d8cd644940..6d6798e4983a 100644 --- a/metadata/md5-cache/games-util/grfcodec-6.0.4 +++ b/metadata/md5-cache/games-util/grfcodec-6.0.4 @@ -3,9 +3,9 @@ DEPEND=!games-util/nforenum dev-lang/perl dev-libs/boost media-libs/libpng:0 DESCRIPTION=A suite of programs to modify openttd/Transport Tycoon Deluxe's GRF files EAPI=5 HOMEPAGE=http://dev.openttdcoop.org/projects/grfcodec -KEYWORDS=amd64 ~arm ppc ~ppc64 ~x86 +KEYWORDS=amd64 ~arm ppc ~ppc64 x86 LICENSE=GPL-2 SLOT=0 SRC_URI=http://binaries.openttd.org/extra/grfcodec/6.0.4/grfcodec-6.0.4-source.tar.xz _eclasses_=multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=0b0bb6bed8393572627b08ab14417ee9 +_md5_=7e327cba79428c2c50d8b1cb3bd842cb diff --git a/metadata/md5-cache/games-util/nml-0.3.1 b/metadata/md5-cache/games-util/nml-0.3.1 index 49adc829ac40..edfda767404e 100644 --- a/metadata/md5-cache/games-util/nml-0.3.1 +++ b/metadata/md5-cache/games-util/nml-0.3.1 @@ -4,11 +4,11 @@ DESCRIPTION=Compiler of NML files into grf/nfo files EAPI=5 HOMEPAGE=http://dev.openttdcoop.org/projects/nml IUSE=python_targets_python2_7 -KEYWORDS=~amd64 ~arm ~ppc ~x86 +KEYWORDS=amd64 ~arm ~ppc ~x86 LICENSE=GPL-2 RDEPEND=dev-python/pillow[zlib,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/ply[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://bundles.openttdcoop.org/nml/releases/0.3.1/nml-0.3.1.r5242-f6a3ae1163ab.tar.gz -> nml-0.3.1.tar.gz _eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=a0f8fd66822548e9c2f95144010241f5 +_md5_=c23b660fa3426db10c586921a2a9ceee diff --git a/metadata/md5-cache/kde-misc/kcm-touchpad-1.1 b/metadata/md5-cache/kde-misc/kcm-touchpad-1.1 new file mode 100644 index 000000000000..a46301467870 --- /dev/null +++ b/metadata/md5-cache/kde-misc/kcm-touchpad-1.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack +DEPEND=x11-drivers/xf86-input-synaptics x11-libs/libxcb >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4[-phonon] >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] +DESCRIPTION=KCM, daemon and applet for touchpad +EAPI=5 +HOMEPAGE=https://projects.kde.org/projects/playground/utils/kcm-touchpad +IUSE=debug aqua +KEYWORDS=~amd64 +LICENSE=GPL-2+ +RDEPEND=x11-drivers/xf86-input-synaptics x11-libs/libxcb >=kde-base/oxygen-icons-4.4:4[aqua=] dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4[-phonon] >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] +SLOT=4 +SRC_URI=http://quickgit.kde.org/?p=kcm-touchpad.git&a=snapshot&t=v1.1 -> kcm-touchpad-1.1.tar.gz +_eclasses_=cmake-utils da2974fcb060ec927e93a17c835afa67 eutils 32548a82e42dc26e3312581476d2f20c fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 75e24bac8423c515dd9c5717f08feb83 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 kde4-base 4eedf91460a42478a541aa78b13f9779 kde4-functions 492237eb2823bdc02bc769530501f0ea multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_md5_=e2d42a224dc7a3244de3622415b86263 diff --git a/metadata/md5-cache/mail-client/geary-0.8.1 b/metadata/md5-cache/mail-client/geary-0.8.1 new file mode 100644 index 000000000000..3811ea4fc015 --- /dev/null +++ b/metadata/md5-cache/mail-client/geary-0.8.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=>=app-crypt/gcr-3.10.1[gtk,introspection,vala] app-crypt/libsecret dev-db/sqlite:3 dev-libs/glib:2 >=dev-libs/libgee-0.8.5:0.8 dev-libs/libxml2:2 dev-libs/gmime:2.6 media-libs/libcanberra >=net-libs/webkit-gtk-1.10.0:3[introspection] >=x11-libs/gtk+-3.10.0:3[introspection] x11-libs/libnotify app-text/gnome-doc-utils dev-util/desktop-file-utils nls? ( sys-devel/gettext ) || ( dev-lang/vala:0.24 dev-lang/vala:0.22 ) virtual/pkgconfig >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) +DESCRIPTION=A lightweight, easy-to-use, feature-rich email client +EAPI=5 +HOMEPAGE=http://www.yorba.org/projects/geary/ +IUSE=nls +KEYWORDS=~amd64 ~x86 +LICENSE=LGPL-2.1 +RDEPEND=>=app-crypt/gcr-3.10.1[gtk,introspection,vala] app-crypt/libsecret dev-db/sqlite:3 dev-libs/glib:2 >=dev-libs/libgee-0.8.5:0.8 dev-libs/libxml2:2 dev-libs/gmime:2.6 media-libs/libcanberra >=net-libs/webkit-gtk-1.10.0:3[introspection] >=x11-libs/gtk+-3.10.0:3[introspection] x11-libs/libnotify gnome-base/gsettings-desktop-schemas nls? ( virtual/libintl ) +SLOT=0 +SRC_URI=ftp://ftp.gnome.org/pub/GNOME/sources/geary/0.8/geary-0.8.1.tar.xz +_eclasses_=cmake-utils da2974fcb060ec927e93a17c835afa67 eutils 32548a82e42dc26e3312581476d2f20c fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 75e24bac8423c515dd9c5717f08feb83 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 vala d8f392783fdc2395fc64af046f2ca961 +_md5_=a3c2c39c5121a0e8bbbae190debe7608 diff --git a/metadata/md5-cache/media-gfx/hugin-2014.0.0_rc4 b/metadata/md5-cache/media-gfx/hugin-2014.0.0 similarity index 96% rename from metadata/md5-cache/media-gfx/hugin-2014.0.0_rc4 rename to metadata/md5-cache/media-gfx/hugin-2014.0.0 index 8495e54c3cbf..2206f8d1582f 100644 --- a/metadata/md5-cache/media-gfx/hugin-2014.0.0_rc4 +++ b/metadata/md5-cache/media-gfx/hugin-2014.0.0 @@ -9,6 +9,6 @@ LICENSE=GPL-2 SIFT RDEPEND=!!dev-util/cocom app-arch/zip dev-cpp/tclap >=dev-libs/boost-1.49.0-r1:= dev-libs/zthread >=media-gfx/enblend-4.0 media-gfx/exiv2 media-libs/freeglut media-libs/glew:= media-libs/lensfun >=media-libs/libpano13-2.9.19_beta1:0= media-libs/libpng:0= media-libs/openexr:= media-libs/tiff sys-libs/zlib virtual/jpeg x11-libs/wxGTK:2.8=[X,opengl,-odbc] lapack? ( virtual/lapack ) sift? ( media-gfx/autopano-sift-C ) media-libs/exiftool REQUIRED_USE=python? ( python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_2? ( python_targets_python3_2 ) python_single_target_python3_3? ( python_targets_python3_3 ) ^^ ( python_single_target_python2_7 python_single_target_python3_2 python_single_target_python3_3 ) ) SLOT=0 -SRC_URI=mirror://sourceforge/hugin/hugin-2014.0.0_rc4.tar.bz2 +SRC_URI=mirror://sourceforge/hugin/hugin-2014.0.0.tar.bz2 _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 cmake-utils da2974fcb060ec927e93a17c835afa67 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-single-r1 a71a169a881e0a11d04a7fe12dc39f6e python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f wxwidgets 6d6eec2685256d35511e7b6d5461bec9 -_md5_=f4c11873af429c30f4fc76d812faee1c +_md5_=154411c6ad72f1dd07aa76a5c7ea47b1 diff --git a/metadata/md5-cache/media-gfx/xli-1.17.0-r5 b/metadata/md5-cache/media-gfx/xli-1.17.0-r5 index 12b441bed448..9e0c4a639f06 100644 --- a/metadata/md5-cache/media-gfx/xli-1.17.0-r5 +++ b/metadata/md5-cache/media-gfx/xli-1.17.0-r5 @@ -3,10 +3,10 @@ DEPEND=app-arch/bzip2 >=media-libs/libpng-1.0.5 >=sys-libs/zlib-1.1.4 virtual/jp DESCRIPTION=X Load Image: view images or load them to root window EAPI=5 HOMEPAGE=ftp://ftp.ibiblio.org/pub/Linux/apps/graphics/viewers/X/xli-1.16.README -KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos +KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos LICENSE=HPND RDEPEND=app-arch/bzip2 >=media-libs/libpng-1.0.5 >=sys-libs/zlib-1.1.4 virtual/jpeg:0 x11-libs/libXext SLOT=0 SRC_URI=http://pantransit.reptiles.org/prog/xli/xli-2005-02-27.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=9ee298268aea53782bccd2be85d7c70b +_md5_=1aa6821d726f228d2c6a0e8f2669233c diff --git a/metadata/md5-cache/media-libs/glm-0.9.5.1 b/metadata/md5-cache/media-libs/glm-0.9.5.1 index c6597fb3841a..e9350fa9820a 100644 --- a/metadata/md5-cache/media-libs/glm-0.9.5.1 +++ b/metadata/md5-cache/media-libs/glm-0.9.5.1 @@ -3,8 +3,8 @@ DEPEND=app-arch/unzip DESCRIPTION=OpenGL Mathematics EAPI=5 HOMEPAGE=http://glm.g-truc.net/ -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~arm ~x86 LICENSE=MIT SLOT=0 SRC_URI=mirror://sourceforge/ogl-math/glm-0.9.5.1.zip -_md5_=ac485cf1e2fa1b18b865bf4230115110 +_md5_=fe5cdb4b9f4e48f91e047491e650969d diff --git a/metadata/md5-cache/media-libs/libcdr-0.1.0 b/metadata/md5-cache/media-libs/libcdr-0.1.0 index b64923f40edd..686ff4a06c70 100644 --- a/metadata/md5-cache/media-libs/libcdr-0.1.0 +++ b/metadata/md5-cache/media-libs/libcdr-0.1.0 @@ -4,10 +4,10 @@ DESCRIPTION=Library parsing the Corel cdr documents EAPI=5 HOMEPAGE=https://wiki.documentfoundation.org/DLP/Libraries/libcdr IUSE=doc static-libs -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~arm ~x86 LICENSE=MPL-2.0 RDEPEND=dev-libs/icu:= dev-libs/librevenge media-libs/lcms:2 sys-libs/zlib SLOT=0 SRC_URI=http://dev-www.libreoffice.org/src/libcdr/libcdr-0.1.0.tar.xz _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=37f3a98267cb221222c959deb391c423 +_md5_=ff9ef042144e77e6b1f99b8bda545ce1 diff --git a/metadata/md5-cache/media-libs/libfreehand-0.1.0 b/metadata/md5-cache/media-libs/libfreehand-0.1.0 index 061c51c6be9a..c739e63d535d 100644 --- a/metadata/md5-cache/media-libs/libfreehand-0.1.0 +++ b/metadata/md5-cache/media-libs/libfreehand-0.1.0 @@ -4,10 +4,10 @@ DESCRIPTION=Library for import of FreeHand drawings EAPI=5 HOMEPAGE=https://wiki.documentfoundation.org/DLP/Libraries/libfreehand IUSE=doc static-libs -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~arm ~x86 LICENSE=MPL-2.0 RDEPEND=dev-libs/librevenge sys-libs/zlib SLOT=0 SRC_URI=http://dev-www.libreoffice.org/src/libfreehand/libfreehand-0.1.0.tar.xz _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=32fb1cff9e3ea52e2702a1297ebde538 +_md5_=275bc561d8c34444ae758df4253814aa diff --git a/metadata/md5-cache/media-libs/libvisio-0.1.0 b/metadata/md5-cache/media-libs/libvisio-0.1.0 index f73e02d01b16..4865a66ff06c 100644 --- a/metadata/md5-cache/media-libs/libvisio-0.1.0 +++ b/metadata/md5-cache/media-libs/libvisio-0.1.0 @@ -4,10 +4,10 @@ DESCRIPTION=Library parsing the visio documents EAPI=5 HOMEPAGE=https://wiki.documentfoundation.org/DLP/Libraries/libvisio IUSE=doc static-libs -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~arm ~x86 LICENSE=|| ( GPL-2+ LGPL-2.1 MPL-1.1 ) RDEPEND=dev-libs/icu:= dev-libs/librevenge dev-libs/libxml2 sys-libs/zlib SLOT=0 SRC_URI=http://dev-www.libreoffice.org/src/libvisio/libvisio-0.1.0.tar.xz _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=eac52955e7d45981ecd73552bfd43708 +_md5_=24d09cce52be54d0bf3e776ce3ca16b2 diff --git a/metadata/md5-cache/media-libs/plib-1.8.5 b/metadata/md5-cache/media-libs/plib-1.8.5 index b31a43bfebc7..a0360e71f6d3 100644 --- a/metadata/md5-cache/media-libs/plib-1.8.5 +++ b/metadata/md5-cache/media-libs/plib-1.8.5 @@ -1,6 +1,7 @@ -DEFINED_PHASES=install unpack +DEFINED_PHASES=install prepare DEPEND=virtual/opengl DESCRIPTION=multimedia library used by many games +EAPI=5 HOMEPAGE=http://plib.sourceforge.net/ KEYWORDS=alpha amd64 hppa ppc sparc x86 LICENSE=LGPL-2 @@ -8,4 +9,4 @@ RDEPEND=virtual/opengl SLOT=0 SRC_URI=http://plib.sourceforge.net/dist/plib-1.8.5.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=4e512ee9496c3d197b27561ea4512956 +_md5_=fe73d5faf90636a990f30894eed9a612 diff --git a/metadata/md5-cache/media-radio/flrig-1.3.16 b/metadata/md5-cache/media-radio/flrig-1.3.16 index 804f0d46f91e..4e7777954cb5 100644 --- a/metadata/md5-cache/media-radio/flrig-1.3.16 +++ b/metadata/md5-cache/media-radio/flrig-1.3.16 @@ -4,9 +4,9 @@ DESCRIPTION=Transceiver control program for Amateur Radio use EAPI=5 HOMEPAGE=http://www.w1hkj.com/flrig-help/index.html IUSE=nls -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 RDEPEND=x11-libs/libX11 x11-libs/fltk:1 x11-misc/xdg-utils SLOT=0 SRC_URI=http://www.w1hkj.com/downloads/flrig/flrig-1.3.16.tar.gz -_md5_=7d43c8d83361b32d87c63ece1a3b39b7 +_md5_=cbac843f01ac1ed89595fe45b89ec203 diff --git a/metadata/md5-cache/media-radio/qsstv-8.2.7 b/metadata/md5-cache/media-radio/qsstv-8.2.7 index 9b72e5917251..9084252726b2 100644 --- a/metadata/md5-cache/media-radio/qsstv-8.2.7 +++ b/metadata/md5-cache/media-radio/qsstv-8.2.7 @@ -3,10 +3,10 @@ DEPEND=dev-qt/qtcore:4[qt3support] dev-qt/qtgui:4 media-libs/hamlib media-libs/j DESCRIPTION=Amateur radio SSTV software EAPI=5 HOMEPAGE=http://users.telenet.be/on4qz/ -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-3 RDEPEND=dev-qt/qtcore:4[qt3support] dev-qt/qtgui:4 media-libs/hamlib media-libs/jasper media-libs/alsa-lib sci-libs/fftw:3.0 x11-misc/xdg-utils SLOT=0 SRC_URI=http://users.telenet.be/on4qz/qsstv/downloads/qsstv_8.2.7.tar.gz _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf qmake-utils 40136c5fe0002a0d3937e869ae4ee0e2 qt4-r2 b40473dafd07d7c5fe4aef1c1b902f39 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=0d6eced6abf449cdda1eb1bb8acded7c +_md5_=2eddf3d9c848e163af068cdc61182be6 diff --git a/metadata/md5-cache/media-radio/tlf-1.2.1 b/metadata/md5-cache/media-radio/tlf-1.2.1 index 727366eeb693..7e670c640b01 100644 --- a/metadata/md5-cache/media-radio/tlf-1.2.1 +++ b/metadata/md5-cache/media-radio/tlf-1.2.1 @@ -3,10 +3,10 @@ DEPEND=sys-libs/ncurses dev-libs/glib:2 media-libs/hamlib media-sound/sox DESCRIPTION=Console-mode amateur radio contest logger EAPI=5 HOMEPAGE=http://home.iae.nl/users/reinc/TLF-0.2.html -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 RDEPEND=sys-libs/ncurses dev-libs/glib:2 media-libs/hamlib media-sound/sox SLOT=0 SRC_URI=http://www.hs-mittweida.de/tb/tlf-1.2.1.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=34abf98b26f919d1a6f8d9bc9844107a +_md5_=3583ea1544588af9a6622a6aa763f965 diff --git a/metadata/md5-cache/media-radio/unixcw-2.3-r6 b/metadata/md5-cache/media-radio/unixcw-2.3-r6 deleted file mode 100644 index f63fd330df27..000000000000 --- a/metadata/md5-cache/media-radio/unixcw-2.3-r6 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install postinst prepare -DEPEND=ncurses? ( sys-libs/ncurses ) qt4? ( dev-qt/qtgui:4[qt3support] ) virtual/pkgconfig !<=app-misc/cw-1.0.16-r1 !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) >=sys-devel/autoconf-2.69 sys-devel/libtool -DESCRIPTION=A package of programs that fit together to form a morse code tutor program -EAPI=2 -HOMEPAGE=http://radio.linux.org.au/?sectpat=morse -IUSE=ncurses suid qt4 -KEYWORDS=~alpha ~amd64 ~ppc ~x86 -LICENSE=GPL-2 -RDEPEND=ncurses? ( sys-libs/ncurses ) qt4? ( dev-qt/qtgui:4[qt3support] ) -SLOT=0 -SRC_URI=ftp://metalab.unc.edu/pub/Linux/apps/ham/morse/unixcw-2.3.tgz qt4? ( mirror://gentoo/unixcw-2.3-qt3to4.patch.gz ) -_eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=f9dde340fede01051b617af09df90298 diff --git a/metadata/md5-cache/media-radio/unixcw-3.0.2 b/metadata/md5-cache/media-radio/unixcw-3.0.2 deleted file mode 100644 index aedb6aea287e..000000000000 --- a/metadata/md5-cache/media-radio/unixcw-3.0.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install postinst prepare -DEPEND=ncurses? ( sys-libs/ncurses ) qt4? ( dev-qt/qtgui:4[qt3support] ) virtual/pkgconfig !<=app-misc/cw-1.0.16-r1 !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) >=sys-devel/autoconf-2.69 sys-devel/libtool -DESCRIPTION=A package of programs that fit together to form a morse code tutor program -EAPI=4 -HOMEPAGE=http://unixcw.sourceforge.net -IUSE=ncurses suid qt4 -KEYWORDS=~alpha ~amd64 ~ppc ~x86 -LICENSE=GPL-2 -RDEPEND=ncurses? ( sys-libs/ncurses ) qt4? ( dev-qt/qtgui:4[qt3support] ) -SLOT=0 -SRC_URI=mirror://sourceforge/unixcw/unixcw-3.0.2.tar.gz -_eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=9f4be03a41dccf3f9f7b2b2c6eebc10e diff --git a/metadata/md5-cache/media-radio/unixcw-3.1.1 b/metadata/md5-cache/media-radio/unixcw-3.1.1 deleted file mode 100644 index 20ed3d948ccb..000000000000 --- a/metadata/md5-cache/media-radio/unixcw-3.1.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install postinst prepare -DEPEND=ncurses? ( sys-libs/ncurses ) qt4? ( dev-qt/qtgui:4[qt3support] ) alsa? ( media-libs/alsa-lib ) pulseaudio? ( media-sound/pulseaudio ) virtual/pkgconfig sys-devel/libtool !<=app-misc/cw-1.0.16-r1 !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) >=sys-devel/autoconf-2.69 sys-devel/libtool -DESCRIPTION=A package of programs that fit together to form a morse code tutor program -EAPI=4 -HOMEPAGE=http://unixcw.sourceforge.net -IUSE=alsa ncurses pulseaudio suid qt4 -KEYWORDS=~alpha ~amd64 ~ppc ~x86 -LICENSE=GPL-2 -RDEPEND=ncurses? ( sys-libs/ncurses ) qt4? ( dev-qt/qtgui:4[qt3support] ) alsa? ( media-libs/alsa-lib ) pulseaudio? ( media-sound/pulseaudio ) -SLOT=0 -SRC_URI=mirror://sourceforge/unixcw/unixcw-3.1.1.tar.gz -_eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=183cd8572d3dd1a61b5456f87b11a67c diff --git a/metadata/md5-cache/media-radio/unixcw-3.2.0 b/metadata/md5-cache/media-radio/unixcw-3.2.0 deleted file mode 100644 index cfb52c76c7a8..000000000000 --- a/metadata/md5-cache/media-radio/unixcw-3.2.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install postinst prepare -DEPEND=ncurses? ( sys-libs/ncurses ) qt4? ( dev-qt/qtgui:4[qt3support] ) alsa? ( media-libs/alsa-lib ) pulseaudio? ( media-sound/pulseaudio ) virtual/pkgconfig sys-devel/libtool !<=app-misc/cw-1.0.16-r1 !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) >=sys-devel/autoconf-2.69 sys-devel/libtool -DESCRIPTION=A package of programs that fit together to form a morse code tutor program -EAPI=4 -HOMEPAGE=http://unixcw.sourceforge.net -IUSE=alsa ncurses pulseaudio suid qt4 -KEYWORDS=~alpha ~amd64 ~ppc ~x86 -LICENSE=GPL-2 -RDEPEND=ncurses? ( sys-libs/ncurses ) qt4? ( dev-qt/qtgui:4[qt3support] ) alsa? ( media-libs/alsa-lib ) pulseaudio? ( media-sound/pulseaudio ) -SLOT=0 -SRC_URI=mirror://sourceforge/unixcw/unixcw-3.2.0.tar.gz -_eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=da5ee90d1cdab967c214457bb739acca diff --git a/metadata/md5-cache/media-radio/unixcw-3.3.1 b/metadata/md5-cache/media-radio/unixcw-3.3.1 index 0a31fb910cb8..f80f640a0a5e 100644 --- a/metadata/md5-cache/media-radio/unixcw-3.3.1 +++ b/metadata/md5-cache/media-radio/unixcw-3.3.1 @@ -4,10 +4,10 @@ DESCRIPTION=A package of programs that fit together to form a morse code tutor p EAPI=4 HOMEPAGE=http://unixcw.sourceforge.net IUSE=alsa ncurses pulseaudio suid qt4 -KEYWORDS=~alpha amd64 ~ppc ~x86 +KEYWORDS=~alpha amd64 ~ppc x86 LICENSE=GPL-2 RDEPEND=ncurses? ( sys-libs/ncurses ) qt4? ( dev-qt/qtgui:4[qt3support] ) alsa? ( media-libs/alsa-lib ) pulseaudio? ( media-sound/pulseaudio ) SLOT=0 SRC_URI=mirror://sourceforge/unixcw/unixcw-3.3.1.tar.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=ab52419d9dd011a36b105e5667d1b50b +_md5_=25862fbb9646842a254ff93b1738e7af diff --git a/metadata/md5-cache/media-radio/xlog-2.0.12 b/metadata/md5-cache/media-radio/xlog-2.0.12 index 8ba927330caf..d88235ce4297 100644 --- a/metadata/md5-cache/media-radio/xlog-2.0.12 +++ b/metadata/md5-cache/media-radio/xlog-2.0.12 @@ -3,10 +3,10 @@ DEPEND=media-libs/hamlib dev-libs/glib:2 x11-libs/gtk+:2 sys-devel/gettext virtu DESCRIPTION=An amateur radio logging program EAPI=4 HOMEPAGE=http://www.nongnu.org/xlog -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-3 RDEPEND=media-libs/hamlib dev-libs/glib:2 x11-libs/gtk+:2 SLOT=0 SRC_URI=http://download.savannah.gnu.org/releases/xlog/xlog-2.0.12.tar.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c fdo-mime 0acfe1a88fd8751a1d5dc671168219fa libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=be9b2d81d913dc345a24c541db64297e +_md5_=de8263c738e9074926a6449139937944 diff --git a/metadata/md5-cache/media-sound/audex-0.78 b/metadata/md5-cache/media-sound/audex-0.78 index 3c5f0de047aa..d97e897daf8c 100644 --- a/metadata/md5-cache/media-sound/audex-0.78 +++ b/metadata/md5-cache/media-sound/audex-0.78 @@ -4,10 +4,10 @@ DESCRIPTION=KDE based CDDA extraction tool EAPI=5 HOMEPAGE=http://kde.maniatek.com/audex/ IUSE=debug linguas_bs linguas_cs linguas_da linguas_de linguas_en_GB linguas_eo linguas_es linguas_et linguas_fi linguas_fr linguas_ga linguas_gl linguas_hu linguas_it linguas_ja linguas_km linguas_lt linguas_mai linguas_nds linguas_nl linguas_pl linguas_pt linguas_pt_BR linguas_ru linguas_sk linguas_sv linguas_tr linguas_ug linguas_uk linguas_zh_CN aqua -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=GPL-3 RDEPEND=>=kde-base/libkcddb-4.4:4[aqua=] >=kde-base/libkcompactdisc-4.4:4[aqua=] app-arch/xz-utils media-sound/cdparanoia >=kde-base/oxygen-icons-4.4:4[aqua=] linguas_bs? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_bs(+)] ) linguas_cs? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_cs(+)] ) linguas_da? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_da(+)] ) linguas_de? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_de(+)] ) linguas_en_GB? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_en_GB(+)] ) linguas_eo? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_eo(+)] ) linguas_es? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_es(+)] ) linguas_et? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_et(+)] ) linguas_fi? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fi(+)] ) linguas_fr? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fr(+)] ) linguas_ga? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ga(+)] ) linguas_gl? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_gl(+)] ) linguas_hu? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_hu(+)] ) linguas_it? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_it(+)] ) linguas_ja? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ja(+)] ) linguas_km? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_km(+)] ) linguas_lt? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_lt(+)] ) linguas_mai? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_mai(+)] ) linguas_nds? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nds(+)] ) linguas_nl? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nl(+)] ) linguas_pl? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pl(+)] ) linguas_pt? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt(+)] ) linguas_pt_BR? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt_BR(+)] ) linguas_ru? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ru(+)] ) linguas_sk? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sk(+)] ) linguas_sv? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sv(+)] ) linguas_tr? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_tr(+)] ) linguas_ug? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ug(+)] ) linguas_uk? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_uk(+)] ) linguas_zh_CN? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_zh_CN(+)] ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4[-phonon] >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] SLOT=4 SRC_URI=http://kde.maniatek.com/audex/files/audex-0.78.tar.xz _eclasses_=cmake-utils da2974fcb060ec927e93a17c835afa67 eutils 32548a82e42dc26e3312581476d2f20c fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 75e24bac8423c515dd9c5717f08feb83 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 kde4-base 4eedf91460a42478a541aa78b13f9779 kde4-functions 492237eb2823bdc02bc769530501f0ea multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=7d499228a7634f0b17dd27d23f5f3531 +_md5_=c93d2e2563a5ba5ad9562af54d49f732 diff --git a/metadata/md5-cache/media-sound/google-musicmanager-1.0.129.6633_beta b/metadata/md5-cache/media-sound/google-musicmanager-1.0.129.6633_beta index 8970e153d74e..8badf5cd24fa 100644 --- a/metadata/md5-cache/media-sound/google-musicmanager-1.0.129.6633_beta +++ b/metadata/md5-cache/media-sound/google-musicmanager-1.0.129.6633_beta @@ -4,11 +4,11 @@ DESCRIPTION=Google Music Manager is a application for adding music to your Googl EAPI=5 HOMEPAGE=http://music.google.com IUSE=log -KEYWORDS=-* ~amd64 ~x86 +KEYWORDS=-* amd64 ~x86 LICENSE=Google-TOS Apache-2.0 MIT LGPL-2.1 gSOAP BSD FDL-1.2 MPL-1.1 openssl ZLIB libtiff RDEPEND=dev-libs/expat dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtwebkit:4 media-libs/flac media-libs/libvorbis net-dns/libidn sys-libs/glibc log? ( dev-libs/log4cxx ) RESTRICT=strip mirror SLOT=0 SRC_URI=x86? ( http://dl.google.com/linux/musicmanager/deb/pool/main/g/google-musicmanager-beta/google-musicmanager-beta_1.0.129.6633-r0_i386.deb ) amd64? ( http://dl.google.com/linux/musicmanager/deb/pool/main/g/google-musicmanager-beta/google-musicmanager-beta_1.0.129.6633-r0_amd64.deb ) _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 unpacker f300a7ca9131b1024a79762e8edd3c52 -_md5_=c301212e0a73abdc1604c99fb2510488 +_md5_=6e83903973f5c5fc7925c10e0e78742a diff --git a/metadata/md5-cache/media-sound/lilypond-2.18.2 b/metadata/md5-cache/media-sound/lilypond-2.18.2 index c99ab64ae8b1..8f70e01d4bb3 100644 --- a/metadata/md5-cache/media-sound/lilypond-2.18.2 +++ b/metadata/md5-cache/media-sound/lilypond-2.18.2 @@ -4,7 +4,7 @@ DESCRIPTION=GNU Music Typesetter EAPI=5 HOMEPAGE=http://lilypond.org/ IUSE=debug emacs profile vim-syntax linguas_ca linguas_cs linguas_da linguas_de linguas_el linguas_eo linguas_es linguas_fi linguas_fr linguas_it linguas_ja linguas_nl linguas_ru linguas_sv linguas_tr linguas_uk linguas_vi linguas_zh_TW python_targets_python2_7 python_single_target_python2_7 -KEYWORDS=amd64 ~hppa ~x86 +KEYWORDS=amd64 ~hppa x86 LICENSE=GPL-3 FDL-1.3 RDEPEND=>=app-text/ghostscript-gpl-8.15 >=dev-scheme/guile-1.8.2[deprecated,regex] media-fonts/urw-fonts media-libs/fontconfig media-libs/freetype:2 >=x11-libs/pango-1.12.3 emacs? ( virtual/emacs ) python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] REQUIRED_USE=python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_7 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=http://download.linuxaudio.org/lilypond/sources/v2.18/lilypond-2.18.2.tar.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 elisp-common 1aa23b3de5dae55456fa2071428eb5bf eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-single-r1 a71a169a881e0a11d04a7fe12dc39f6e python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=e5d27643a5627b680dbe16f9bb5a2b52 +_md5_=a6f06452d8cca69cadf649f0f90c4431 diff --git a/metadata/md5-cache/media-sound/snd-12.8 b/metadata/md5-cache/media-sound/snd-12.8 index 914e8f38bfa9..a1b32a4fcd7c 100644 --- a/metadata/md5-cache/media-sound/snd-12.8 +++ b/metadata/md5-cache/media-sound/snd-12.8 @@ -4,11 +4,11 @@ DESCRIPTION=Snd is a sound editor EAPI=4 HOMEPAGE=http://ccrma.stanford.edu/software/snd/ IUSE=alsa doc fam fftw gmp gsl gtk jack ladspa motif opengl oss portaudio pulseaudio readline ruby +s7 -KEYWORDS=~amd64 ~ppc ~x86 ~x86-interix ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~ppc ~x86 ~x86-interix ~amd64-linux ~x86-linux LICENSE=Snd BSD-2 HPND GPL-2+ LGPL-2.1+ LGPL-3+ ruby? ( free-noncomm ) s7? ( free-noncomm ) RDEPEND=media-libs/audiofile alsa? ( media-libs/alsa-lib ) fam? ( virtual/fam ) fftw? ( sci-libs/fftw ) gmp? ( dev-libs/gmp dev-libs/mpc dev-libs/mpfr ) gsl? ( sci-libs/gsl ) gtk? ( x11-libs/gtk+:3 x11-libs/pango x11-libs/cairo opengl? ( x11-libs/gtkglext ) ) jack? ( media-sound/jack-audio-connection-kit ) ladspa? ( media-libs/ladspa-sdk ) motif? ( >=x11-libs/motif-2.3:0 ) opengl? ( virtual/opengl ) portaudio? ( media-libs/portaudio ) pulseaudio? ( media-sound/pulseaudio ) readline? ( sys-libs/readline ) ruby? ( dev-lang/ruby ) REQUIRED_USE=portaudio? ( !pulseaudio ) pulseaudio? ( !portaudio ) ^^ ( ( !ruby !s7 ) ( ruby !s7 ) ( !ruby s7 ) ) SLOT=0 SRC_URI=ftp://ccrma-ftp.stanford.edu/pub/Lisp/snd-12.8.tar.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=dfa5e3dadc2af349e39301461273a3ac +_md5_=9edbd4c2ee187141e5c7650c13ef5f8b diff --git a/metadata/md5-cache/media-video/binkplayer-1.99w b/metadata/md5-cache/media-video/binkplayer-1.99w index be47920ebece..5ecff36cf4ac 100644 --- a/metadata/md5-cache/media-video/binkplayer-1.99w +++ b/metadata/md5-cache/media-video/binkplayer-1.99w @@ -3,9 +3,9 @@ DEPEND=app-arch/unzip DESCRIPTION=Bink Video! Player EAPI=5 HOMEPAGE=http://www.radgametools.com/default.htm -KEYWORDS=-* ~amd64 ~x86 +KEYWORDS=-* amd64 ~x86 LICENSE=freedist RDEPEND=amd64? ( app-emulation/emul-linux-x86-sdl ) x86? ( media-libs/libsdl media-libs/sdl-mixer ) SLOT=0 SRC_URI=mirror://gentoo/binkplayer-1.99w.zip -_md5_=6f079be7d82b5d07e41683401d1baf27 +_md5_=cdb17dae22d8a869beca11ffb1c43600 diff --git a/metadata/md5-cache/net-analyzer/fping-2.4_beta2_p161-r2 b/metadata/md5-cache/net-analyzer/fping-2.4_beta2_p161-r2 index 6c9723ee77e5..39ae6afd0f6a 100644 --- a/metadata/md5-cache/net-analyzer/fping-2.4_beta2_p161-r2 +++ b/metadata/md5-cache/net-analyzer/fping-2.4_beta2_p161-r2 @@ -4,9 +4,9 @@ DESCRIPTION=A utility to ping multiple hosts at once EAPI=5 HOMEPAGE=http://fping.sourceforge.net/ http://packages.qa.debian.org/f/fping.html IUSE=ipv6 -KEYWORDS=~alpha ~amd64 hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos +KEYWORDS=~alpha ~amd64 hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos LICENSE=fping SLOT=0 SRC_URI=mirror://debian/pool/main/f/fping/fping_2.4b2-to-ipv6.orig.tar.gz mirror://debian/pool/main/f/fping/fping_2.4b2-to-ipv6-16.1.diff.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=4690c2366bdf213658a07539697a6f41 +_md5_=2bc5f0d3d3baba38692df47339be19f5 diff --git a/metadata/md5-cache/net-analyzer/fping-3.10 b/metadata/md5-cache/net-analyzer/fping-3.10 index d819a0575dd9..477ad02a1406 100644 --- a/metadata/md5-cache/net-analyzer/fping-3.10 +++ b/metadata/md5-cache/net-analyzer/fping-3.10 @@ -3,8 +3,8 @@ DESCRIPTION=A utility to ping multiple hosts at once EAPI=5 HOMEPAGE=http://fping.org/ IUSE=ipv6 suid -KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos +KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos LICENSE=fping SLOT=0 SRC_URI=http://fping.org/dist/fping-3.10.tar.gz -_md5_=e5671247c5a2cb697c88eb5b350ee3a3 +_md5_=3f04d18ae9abe56f7aac1f18609c858d diff --git a/metadata/md5-cache/net-analyzer/zabbix-2.2.5 b/metadata/md5-cache/net-analyzer/zabbix-2.2.5 index 2adca84cb5a8..fe06b57c195c 100644 --- a/metadata/md5-cache/net-analyzer/zabbix-2.2.5 +++ b/metadata/md5-cache/net-analyzer/zabbix-2.2.5 @@ -4,10 +4,10 @@ DESCRIPTION=ZABBIX is software for monitoring of your applications, network and EAPI=5 HOMEPAGE=http://www.zabbix.com/ IUSE=agent java curl frontend ipv6 jabber ldap libxml2 mysql openipmi oracle postgres proxy server ssh snmp sqlite odbc static elibc_FreeBSD java -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=GPL-2 RDEPEND=snmp? ( net-analyzer/net-snmp ) ldap? ( net-nds/openldap =dev-libs/cyrus-sasl-2* net-libs/gnutls ) mysql? ( >=virtual/mysql-5.0.3 ) sqlite? ( >=dev-db/sqlite-3.3.5 ) postgres? ( >=dev-db/postgresql-base-8.3.0 ) oracle? ( >=dev-db/oracle-instantclient-basic-10.0.0.0 ) jabber? ( dev-libs/iksemel ) libxml2? ( dev-libs/libxml2 ) curl? ( net-misc/curl ) openipmi? ( sys-libs/openipmi ) ssh? ( net-libs/libssh2 ) java? ( >=virtual/jdk-1.4 ) odbc? ( dev-db/unixODBC ) proxy? ( <=net-analyzer/fping-2.9 ) server? ( <=net-analyzer/fping-2.9 app-admin/webapp-config ) java? ( >=virtual/jre-1.4 dev-java/slf4j-api dev-java/json-simple ) frontend? ( >=dev-lang/php-5.3.0[bcmath,ctype,sockets,gd,truetype,xml,session,xmlreader,xmlwriter,nls,sysvipc,unicode] || ( dev-lang/php[apache2] dev-lang/php[cgi] dev-lang/php[fpm] ) media-libs/gd[png] app-admin/webapp-config ) java? ( >=dev-java/java-config-2.1.9-r1 ) SLOT=0 SRC_URI=http://prdownloads.sourceforge.net/zabbix/zabbix-2.2.5.tar.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 depend.php df169a364e191b840b695604097e3c21 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 phpconfutils e108303831029e5b8a9d24b991b1d62a systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 versionator cd0bcdb170807e4a1984115e9d53a26f webapp 25b9b1696f5e698711f47d45c3d45e3e -_md5_=ba37128dbd45d3f11bb068ed85d86713 +_md5_=3250ce25d936e508330ea3a28fda9242 diff --git a/metadata/md5-cache/net-ftp/lftp-4.5.5 b/metadata/md5-cache/net-ftp/lftp-4.5.5 index 7e32c08d7123..0f8211a24c90 100644 --- a/metadata/md5-cache/net-ftp/lftp-4.5.5 +++ b/metadata/md5-cache/net-ftp/lftp-4.5.5 @@ -4,11 +4,11 @@ DESCRIPTION=A sophisticated ftp/sftp/http/https/torrent client and file transfer EAPI=5 HOMEPAGE=http://lftp.yar.ru/ IUSE=convert-mozilla-cookies +gnutls nls openssl socks5 +ssl verify-file linguas_cs linguas_de linguas_es linguas_fr linguas_it linguas_ja linguas_ko linguas_pl linguas_pt_BR linguas_ru linguas_uk linguas_zh_CN linguas_zh_HK linguas_zh_TW -KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris LICENSE=GPL-3 RDEPEND=>=sys-libs/ncurses-5.1 >=sys-libs/readline-5.1 dev-libs/expat sys-libs/zlib convert-mozilla-cookies? ( dev-perl/DBI ) socks5? ( >=net-proxy/dante-1.1.12 virtual/pam ) ssl? ( gnutls? ( >=net-libs/gnutls-1.2.3 ) openssl? ( >=dev-libs/openssl-0.9.6 ) ) verify-file? ( dev-perl/string-crc32 virtual/perl-Digest-MD5 ) REQUIRED_USE=ssl? ( ^^ ( openssl gnutls ) ) SLOT=0 SRC_URI=http://lftp.yar.ru/ftp/lftp-4.5.5.tar.xz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=2dcb858a9a4753288abf7e49015ba7a4 +_md5_=84d0872536f39d8e081a0708ceb67fba diff --git a/metadata/md5-cache/net-ftp/lftp-4.5.5.20141003 b/metadata/md5-cache/net-ftp/lftp-4.5.5.20141003 index d90a746a4be0..eb25aa505c95 100644 --- a/metadata/md5-cache/net-ftp/lftp-4.5.5.20141003 +++ b/metadata/md5-cache/net-ftp/lftp-4.5.5.20141003 @@ -10,4 +10,4 @@ REQUIRED_USE=ssl? ( ^^ ( openssl gnutls ) ) SLOT=0 SRC_URI=http://lftp.yar.ru//ftp/devel/lftp-4.5.5.20141003.tar.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=bbc4abbbdfcff6bab0c6a1114635f451 +_md5_=95bd1008839d337f0450c65e403dff76 diff --git a/metadata/md5-cache/net-ftp/lftp-9999 b/metadata/md5-cache/net-ftp/lftp-9999 new file mode 100644 index 000000000000..2fa39280fdab --- /dev/null +++ b/metadata/md5-cache/net-ftp/lftp-9999 @@ -0,0 +1,12 @@ +DEFINED_PHASES=configure install prepare unpack +DEPEND=>=sys-libs/ncurses-5.1 >=sys-libs/readline-5.1 dev-libs/expat sys-libs/zlib convert-mozilla-cookies? ( dev-perl/DBI ) socks5? ( >=net-proxy/dante-1.1.12 virtual/pam ) ssl? ( gnutls? ( >=net-libs/gnutls-1.2.3 ) openssl? ( >=dev-libs/openssl-0.9.6 ) ) verify-file? ( dev-perl/string-crc32 virtual/perl-Digest-MD5 ) dev-libs/gnulib =sys-devel/libtool-2* app-arch/xz-utils nls? ( sys-devel/gettext ) virtual/pkgconfig !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) >=sys-devel/autoconf-2.69 sys-devel/libtool >=dev-vcs/git-1.8.2.1 +DESCRIPTION=A sophisticated ftp/sftp/http/https/torrent client and file transfer program +EAPI=5 +HOMEPAGE=http://lftp.yar.ru/ +IUSE=convert-mozilla-cookies +gnutls nls openssl socks5 +ssl verify-file linguas_cs linguas_de linguas_es linguas_fr linguas_it linguas_ja linguas_ko linguas_pl linguas_pt_BR linguas_ru linguas_uk linguas_zh_CN linguas_zh_HK linguas_zh_TW +LICENSE=GPL-3 +RDEPEND=>=sys-libs/ncurses-5.1 >=sys-libs/readline-5.1 dev-libs/expat sys-libs/zlib convert-mozilla-cookies? ( dev-perl/DBI ) socks5? ( >=net-proxy/dante-1.1.12 virtual/pam ) ssl? ( gnutls? ( >=net-libs/gnutls-1.2.3 ) openssl? ( >=dev-libs/openssl-0.9.6 ) ) verify-file? ( dev-perl/string-crc32 virtual/perl-Digest-MD5 ) +REQUIRED_USE=ssl? ( ^^ ( openssl gnutls ) ) +SLOT=0 +_eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c git-r3 6ebae45064cb04482f3c702632dd9528 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 +_md5_=5f9060c924b84cf98c9a5f301a21f19c diff --git a/metadata/md5-cache/net-im/bitlbee-3.2.2 b/metadata/md5-cache/net-im/bitlbee-3.2.2 new file mode 100644 index 000000000000..721f9af3b4c3 --- /dev/null +++ b/metadata/md5-cache/net-im/bitlbee-3.2.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=configure install postinst prepare setup +DEPEND=>=dev-libs/glib-2.14 purple? ( net-im/pidgin ) libevent? ( dev-libs/libevent ) otr? ( >=net-libs/libotr-4 ) gnutls? ( net-libs/gnutls ) !gnutls? ( nss? ( dev-libs/nss ) !nss? ( ssl? ( dev-libs/openssl ) ) ) selinux? ( sec-policy/selinux-bitlbee ) virtual/pkgconfig skype? ( app-text/asciidoc ) test? ( dev-libs/check ) virtual/pkgconfig +DESCRIPTION=irc to IM gateway that support multiple IM protocols +EAPI=5 +HOMEPAGE=http://www.bitlbee.org/ +IUSE=debug gnutls ipv6 +jabber libevent msn nss +oscar otr +plugins purple selinux skype ssl test twitter +yahoo xinetd python_targets_python2_7 python_single_target_python2_7 +KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd +LICENSE=GPL-2 +RDEPEND=>=dev-libs/glib-2.14 purple? ( net-im/pidgin ) libevent? ( dev-libs/libevent ) otr? ( >=net-libs/libotr-4 ) gnutls? ( net-libs/gnutls ) !gnutls? ( nss? ( dev-libs/nss ) !nss? ( ssl? ( dev-libs/openssl ) ) ) selinux? ( sec-policy/selinux-bitlbee ) virtual/logger skype? ( dev-python/skype4py[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] net-im/skype ) xinetd? ( sys-apps/xinetd ) +REQUIRED_USE=|| ( purple jabber msn oscar yahoo ) msn? ( || ( gnutls nss ssl ) ) jabber? ( !nss ) +SLOT=0 +SRC_URI=http://get.bitlbee.org/src/bitlbee-3.2.2.tar.gz +_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-single-r1 a71a169a881e0a11d04a7fe12dc39f6e python-utils-r1 47dda904cf91c61f45b564d9f834fde1 systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 +_md5_=28c3b0cc684a3b0c4027aa04797f486f diff --git a/metadata/md5-cache/net-irc/inspircd-2.0.17 b/metadata/md5-cache/net-irc/inspircd-2.0.17 index e89fd1c4731b..ef168fb848d9 100644 --- a/metadata/md5-cache/net-irc/inspircd-2.0.17 +++ b/metadata/md5-cache/net-irc/inspircd-2.0.17 @@ -4,10 +4,10 @@ DESCRIPTION=Inspire IRCd - The Stable, High-Performance Modular IRCd EAPI=5 HOMEPAGE=http://inspircd.github.com/ IUSE=geoip gnutls ipv6 ldap mysql pcre posix postgres sqlite ssl tre -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=GPL-2 RDEPEND=dev-lang/perl ssl? ( dev-libs/openssl ) geoip? ( dev-libs/geoip ) gnutls? ( net-libs/gnutls dev-libs/libgcrypt:0 ) ldap? ( net-nds/openldap ) mysql? ( virtual/mysql ) postgres? ( dev-db/postgresql-server ) pcre? ( dev-libs/libpcre ) sqlite? ( >=dev-db/sqlite-3.0 ) tre? ( dev-libs/tre ) SLOT=0 SRC_URI=http://www.github.com/inspircd/inspircd/archive/v2.0.17.tar.gz -> inspircd-2.0.17.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=d8a593d6199e1d087005926fc510a0ce +_md5_=6e420634ad282c2eb80ff307e56c8830 diff --git a/metadata/md5-cache/net-irc/unrealircd-3.2.10.4 b/metadata/md5-cache/net-irc/unrealircd-3.2.10.4 index a74b2e9ec21b..6186fbd55dfa 100644 --- a/metadata/md5-cache/net-irc/unrealircd-3.2.10.4 +++ b/metadata/md5-cache/net-irc/unrealircd-3.2.10.4 @@ -4,10 +4,10 @@ DESCRIPTION=An advanced Internet Relay Chat daemon EAPI=4 HOMEPAGE=http://www.unrealircd.com/ IUSE=class-nofakelag curl ipv6 +extban-stacking +operoverride operoverride-verify +prefixaq showlistmodes shunnotices ssl topicisnuhost +usermod zlib ssl -KEYWORDS=amd64 ppc ~x86 ~x86-fbsd ~amd64-linux +KEYWORDS=amd64 ppc x86 ~x86-fbsd ~amd64-linux LICENSE=GPL-2 RDEPEND=ssl? ( dev-libs/openssl ) zlib? ( sys-libs/zlib ) curl? ( net-misc/curl[adns] ) dev-libs/tre >=net-dns/c-ares-1.7 SLOT=0 SRC_URI=http://www.unrealircd.com/downloads/Unreal3.2.10.4.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf ssl-cert b53367370fde96e19beca78050a47c61 toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=f78d655a0ab566ea0dd6a1f14fc1aa0e +_md5_=d3d14ac665636b92412bc2696898fa4e diff --git a/metadata/md5-cache/net-libs/axtls-1.4.9-r1 b/metadata/md5-cache/net-libs/axtls-1.4.9-r1 index 5c2adc888a0c..53d1ad85af40 100644 --- a/metadata/md5-cache/net-libs/axtls-1.4.9-r1 +++ b/metadata/md5-cache/net-libs/axtls-1.4.9-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Embedded client/server TLSv1 SSL library and small HTTP(S) server EAPI=5 HOMEPAGE=http://axtls.sourceforge.net/ IUSE=httpd cgi-lua cgi-php static static-libs doc abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 savedconfig -KEYWORDS=amd64 arm hppa ~mips ~ppc ~ppc64 ~s390 ~x86 +KEYWORDS=amd64 arm hppa ~mips ~ppc ~ppc64 ~s390 x86 LICENSE=BSD GPL-2 RDEPEND=httpd? ( cgi-lua? ( dev-lang/lua ) cgi-php? ( dev-lang/php[cgi] ) ) REQUIRED_USE=static? ( httpd ) cgi-lua? ( httpd ) cgi-php? ( httpd ) SLOT=0 SRC_URI=mirror://sourceforge/axtls/axTLS-1.4.9.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multilib-build 9eb4b5fb858228316d8bb32ada51f6a5 multilib-minimal 5bbdc77877c1aa3c6bd89ca3f9196d11 multiprocessing d7f2985a2c76c365ee20269db5261414 portability a45c088f246ef5091e029f6285d7ce42 savedconfig 5313100f525c41f6c72c6e04edeb4f65 toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=0f9375189e6e99f026e00449cfbe5d55 +_md5_=5702c16342eeed9c5e83f4411d189704 diff --git a/metadata/md5-cache/net-libs/libgrss-0.5.0-r1 b/metadata/md5-cache/net-libs/libgrss-0.5.0-r1 index 521a38f759e3..39c29cd37a6c 100644 --- a/metadata/md5-cache/net-libs/libgrss-0.5.0-r1 +++ b/metadata/md5-cache/net-libs/libgrss-0.5.0-r1 @@ -4,10 +4,10 @@ DESCRIPTION=LibGRSS is a library for easy management of RSS/Atom/Pie feeds EAPI=5 HOMEPAGE=http://live.gnome.org/Libgrss IUSE=examples debug -KEYWORDS=~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 LICENSE=LGPL-3 RDEPEND=>=dev-libs/glib-2.30.2:2 >=dev-libs/libxml2-2.7.8:2 >=net-libs/libsoup-2.36.1:2.4 SLOT=0.5 SRC_URI=http://gtk.mplat.es/libgrss/tarballs/libgrss-0.5.0.tar.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 9637c29fc715b17a6328f24251129557 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=356912610786b3f6642862da77134407 +_md5_=90e21c6a52ae7f14df026fd4afce986a diff --git a/metadata/md5-cache/net-libs/libmicrohttpd-0.9.37 b/metadata/md5-cache/net-libs/libmicrohttpd-0.9.37 index 9aaca996aad7..a7bd8ae01ac7 100644 --- a/metadata/md5-cache/net-libs/libmicrohttpd-0.9.37 +++ b/metadata/md5-cache/net-libs/libmicrohttpd-0.9.37 @@ -4,9 +4,9 @@ DESCRIPTION=A small C library that makes it easy to run an HTTP server as part o EAPI=5 HOMEPAGE=http://www.gnu.org/software/libmicrohttpd/ IUSE=epoll messages ssl static-libs test -KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 +KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 LICENSE=LGPL-2.1 RDEPEND=ssl? ( dev-libs/libgcrypt:0 net-libs/gnutls ) SLOT=0 SRC_URI=mirror://gnu/libmicrohttpd/libmicrohttpd-0.9.37.tar.gz -_md5_=964ef1b35950e594bfef71ee609a6380 +_md5_=1078ceb72e7bd06cac94a43420e2e7bd diff --git a/metadata/md5-cache/net-libs/libmnl-1.0.3-r1 b/metadata/md5-cache/net-libs/libmnl-1.0.3-r1 index 124526bc8f42..588a11f790fb 100644 --- a/metadata/md5-cache/net-libs/libmnl-1.0.3-r1 +++ b/metadata/md5-cache/net-libs/libmnl-1.0.3-r1 @@ -3,9 +3,9 @@ DESCRIPTION=Minimalistic netlink library EAPI=4 HOMEPAGE=http://netfilter.org/projects/libmnl IUSE=examples static-libs -KEYWORDS=~alpha ~amd64 arm ~arm64 hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux +KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux LICENSE=LGPL-2.1 SLOT=0 SRC_URI=http://www.netfilter.org/projects/libmnl/files/libmnl-1.0.3.tar.bz2 _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=a761a29f02a6ec5c80e96fb5e72a77af +_md5_=b350ccaa9445fa0e6ab01ff1ff9d6f85 diff --git a/metadata/md5-cache/net-libs/libtorrent-0.13.3 b/metadata/md5-cache/net-libs/libtorrent-0.13.3 index eec882d9b6a2..02ccfd4cf693 100644 --- a/metadata/md5-cache/net-libs/libtorrent-0.13.3 +++ b/metadata/md5-cache/net-libs/libtorrent-0.13.3 @@ -4,10 +4,10 @@ DESCRIPTION=BitTorrent library written in C++ for *nix EAPI=4 HOMEPAGE=http://libtorrent.rakshasa.no/ IUSE=debug ipv6 ssl -KEYWORDS=~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris +KEYWORDS=amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris LICENSE=GPL-2 RDEPEND=>=dev-libs/libsigc++-2.2.2:2 ssl? ( dev-libs/openssl ) SLOT=0 SRC_URI=http://libtorrent.rakshasa.no/downloads/libtorrent-0.13.3.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=d28bd9c622ce36d7f6b3741e4a7d5117 +_md5_=5c510239e76de4c86907e2f0f1da0bd7 diff --git a/metadata/md5-cache/net-libs/neon-0.30.0-r1 b/metadata/md5-cache/net-libs/neon-0.30.0-r1 index 35cdf6d03acd..cfc56ad2fe5d 100644 --- a/metadata/md5-cache/net-libs/neon-0.30.0-r1 +++ b/metadata/md5-cache/net-libs/neon-0.30.0-r1 @@ -4,11 +4,11 @@ DESCRIPTION=HTTP and WebDAV client library EAPI=5 HOMEPAGE=http://www.webdav.org/neon/ IUSE=doc expat gnutls kerberos libproxy nls pkcs11 ssl static-libs zlib linguas_cs linguas_de linguas_fr linguas_ja linguas_nn linguas_pl linguas_ru linguas_tr linguas_zh_CN abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=expat? ( >=dev-libs/expat-2.1.0-r3:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !expat? ( >=dev-libs/libxml2-2.9.1-r4:2=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gnutls? ( app-misc/ca-certificates >=net-libs/gnutls-2.12.23-r6:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] pkcs11? ( >=dev-libs/pakchois-0.4-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) !gnutls? ( ssl? ( >=dev-libs/openssl-1.0.1h-r2:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] pkcs11? ( >=dev-libs/pakchois-0.4-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) ) kerberos? ( >=virtual/krb5-0-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libproxy? ( >=net-libs/libproxy-0.4.11-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( >=virtual/libintl-0-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20140508-r8 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) RESTRICT=test SLOT=0/27 SRC_URI=http://www.webdav.org/neon/neon-0.30.0.tar.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multilib-build 9eb4b5fb858228316d8bb32ada51f6a5 multilib-minimal 5bbdc77877c1aa3c6bd89ca3f9196d11 multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=dd5684136d653d643ca7a778ef7a2da8 +_md5_=40f562a24795ddb6458f2c07c0baa774 diff --git a/metadata/md5-cache/net-libs/rb_libtorrent-0.15.10 b/metadata/md5-cache/net-libs/rb_libtorrent-0.15.10 deleted file mode 100644 index 2b7093056b87..000000000000 --- a/metadata/md5-cache/net-libs/rb_libtorrent-0.15.10 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=configure install prepare setup -DEPEND=>=dev-libs/boost-1.48[python?,threads(+)] >=sys-devel/libtool-2.2 sys-libs/zlib examples? ( !net-p2p/mldonkey ) ssl? ( dev-libs/openssl ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) python? ( || ( =dev-lang/python-2.7*[threads] =dev-lang/python-2.6*[threads] ) ) -DESCRIPTION=C++ BitTorrent implementation focusing on efficiency and scalability -EAPI=4 -HOMEPAGE=http://www.rasterbar.com/products/libtorrent/ -IUSE=debug doc examples python ssl static-libs -KEYWORDS=amd64 ~arm ppc ~ppc64 ~sparc x86 ~x86-fbsd -LICENSE=BSD -RDEPEND=>=dev-libs/boost-1.48[python?,threads(+)] >=sys-devel/libtool-2.2 sys-libs/zlib examples? ( !net-p2p/mldonkey ) ssl? ( dev-libs/openssl ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) python? ( || ( =dev-lang/python-2.7*[threads] =dev-lang/python-2.6*[threads] ) ) -RESTRICT=test -SLOT=0 -SRC_URI=http://libtorrent.googlecode.com/files/libtorrent-rasterbar-0.15.10.tar.gz -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf python be9965681d83c3980660a2660ac95e95 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=0a619cabd19165b504f46033df3868f9 diff --git a/metadata/md5-cache/net-libs/rb_libtorrent-0.16.10 b/metadata/md5-cache/net-libs/rb_libtorrent-0.16.10 index 5de6b41d3256..3594303f2491 100644 --- a/metadata/md5-cache/net-libs/rb_libtorrent-0.16.10 +++ b/metadata/md5-cache/net-libs/rb_libtorrent-0.16.10 @@ -1,14 +1,14 @@ DEFINED_PHASES=configure install prepare setup -DEPEND=>=dev-libs/boost-1.48[python?,threads(+)] >=sys-devel/libtool-2.2 sys-libs/zlib examples? ( !net-p2p/mldonkey ) ssl? ( dev-libs/openssl ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) python? ( || ( =dev-lang/python-2.7*[threads] =dev-lang/python-2.6*[threads] ) ) +DEPEND=>=dev-libs/boost-1.48[python?,threads(+)] >=sys-devel/libtool-2.2 sys-libs/zlib examples? ( !net-p2p/mldonkey ) ssl? ( dev-libs/openssl ) python? ( =dev-lang/python-2.7* ) python? ( =dev-lang/python-2.7*[threads] ) DESCRIPTION=C++ BitTorrent implementation focusing on efficiency and scalability EAPI=4 HOMEPAGE=http://www.rasterbar.com/products/libtorrent/ IUSE=debug doc examples python ssl static-libs KEYWORDS=amd64 arm ppc ppc64 sparc x86 ~x86-fbsd LICENSE=BSD -RDEPEND=>=dev-libs/boost-1.48[python?,threads(+)] >=sys-devel/libtool-2.2 sys-libs/zlib examples? ( !net-p2p/mldonkey ) ssl? ( dev-libs/openssl ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) python? ( || ( =dev-lang/python-2.7*[threads] =dev-lang/python-2.6*[threads] ) ) +RDEPEND=>=dev-libs/boost-1.48[python?,threads(+)] >=sys-devel/libtool-2.2 sys-libs/zlib examples? ( !net-p2p/mldonkey ) ssl? ( dev-libs/openssl ) python? ( =dev-lang/python-2.7* ) python? ( =dev-lang/python-2.7*[threads] ) RESTRICT=test SLOT=0 SRC_URI=http://libtorrent.googlecode.com/files/libtorrent-rasterbar-0.16.10.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf python be9965681d83c3980660a2660ac95e95 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=a59b5d9bdb9d449be617d399895be188 +_md5_=bfba748398d7bedd06102d0568563a2a diff --git a/metadata/md5-cache/net-libs/rb_libtorrent-0.16.15 b/metadata/md5-cache/net-libs/rb_libtorrent-0.16.15 deleted file mode 100644 index a642e9724389..000000000000 --- a/metadata/md5-cache/net-libs/rb_libtorrent-0.16.15 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=configure install prepare setup -DEPEND=>=dev-libs/boost-1.48[python?,threads(+)] >=sys-devel/libtool-2.2 sys-libs/zlib examples? ( !net-p2p/mldonkey ) ssl? ( dev-libs/openssl ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) python? ( || ( =dev-lang/python-2.7*[threads] =dev-lang/python-2.6*[threads] ) ) -DESCRIPTION=C++ BitTorrent implementation focusing on efficiency and scalability -EAPI=4 -HOMEPAGE=http://www.rasterbar.com/products/libtorrent/ -IUSE=debug doc examples python ssl static-libs -KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd -LICENSE=BSD -RDEPEND=>=dev-libs/boost-1.48[python?,threads(+)] >=sys-devel/libtool-2.2 sys-libs/zlib examples? ( !net-p2p/mldonkey ) ssl? ( dev-libs/openssl ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) python? ( || ( =dev-lang/python-2.7*[threads] =dev-lang/python-2.6*[threads] ) ) -RESTRICT=test -SLOT=0 -SRC_URI=mirror://sourceforge/libtorrent/libtorrent-rasterbar-0.16.15.tar.gz -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf python be9965681d83c3980660a2660ac95e95 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=689348e061e0e3beb51ac193b2b35cd8 diff --git a/metadata/md5-cache/net-libs/rb_libtorrent-0.16.16 b/metadata/md5-cache/net-libs/rb_libtorrent-0.16.16 deleted file mode 100644 index db000918a98d..000000000000 --- a/metadata/md5-cache/net-libs/rb_libtorrent-0.16.16 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=configure install prepare setup -DEPEND=>=dev-libs/boost-1.48[python?,threads(+)] >=sys-devel/libtool-2.2 sys-libs/zlib examples? ( !net-p2p/mldonkey ) ssl? ( dev-libs/openssl ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) python? ( || ( =dev-lang/python-2.7*[threads] =dev-lang/python-2.6*[threads] ) ) -DESCRIPTION=C++ BitTorrent implementation focusing on efficiency and scalability -EAPI=4 -HOMEPAGE=http://www.rasterbar.com/products/libtorrent/ -IUSE=debug doc examples python ssl static-libs -KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd -LICENSE=BSD -RDEPEND=>=dev-libs/boost-1.48[python?,threads(+)] >=sys-devel/libtool-2.2 sys-libs/zlib examples? ( !net-p2p/mldonkey ) ssl? ( dev-libs/openssl ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) python? ( || ( =dev-lang/python-2.7*[threads] =dev-lang/python-2.6*[threads] ) ) -RESTRICT=test -SLOT=0 -SRC_URI=mirror://sourceforge/libtorrent/libtorrent-rasterbar-0.16.16.tar.gz -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf python be9965681d83c3980660a2660ac95e95 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=525683f60f6cd2013568cc1d56aaca0d diff --git a/metadata/md5-cache/net-libs/rb_libtorrent-0.16.17 b/metadata/md5-cache/net-libs/rb_libtorrent-0.16.17 index 60e7d2d50107..389c45b76438 100644 --- a/metadata/md5-cache/net-libs/rb_libtorrent-0.16.17 +++ b/metadata/md5-cache/net-libs/rb_libtorrent-0.16.17 @@ -1,14 +1,14 @@ DEFINED_PHASES=configure install prepare setup -DEPEND=>=dev-libs/boost-1.48[python?,threads(+)] >=sys-devel/libtool-2.2 sys-libs/zlib examples? ( !net-p2p/mldonkey ) ssl? ( dev-libs/openssl ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) python? ( || ( =dev-lang/python-2.7*[threads] =dev-lang/python-2.6*[threads] ) ) +DEPEND=>=dev-libs/boost-1.48[python?,threads(+)] >=sys-devel/libtool-2.2 sys-libs/zlib examples? ( !net-p2p/mldonkey ) ssl? ( dev-libs/openssl ) python? ( =dev-lang/python-2.7* ) python? ( =dev-lang/python-2.7*[threads] ) DESCRIPTION=C++ BitTorrent implementation focusing on efficiency and scalability EAPI=4 HOMEPAGE=http://www.rasterbar.com/products/libtorrent/ IUSE=debug doc examples python ssl static-libs -KEYWORDS=amd64 arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd +KEYWORDS=amd64 arm ~ppc ~ppc64 ~sparc x86 ~x86-fbsd LICENSE=BSD -RDEPEND=>=dev-libs/boost-1.48[python?,threads(+)] >=sys-devel/libtool-2.2 sys-libs/zlib examples? ( !net-p2p/mldonkey ) ssl? ( dev-libs/openssl ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) python? ( || ( =dev-lang/python-2.7*[threads] =dev-lang/python-2.6*[threads] ) ) +RDEPEND=>=dev-libs/boost-1.48[python?,threads(+)] >=sys-devel/libtool-2.2 sys-libs/zlib examples? ( !net-p2p/mldonkey ) ssl? ( dev-libs/openssl ) python? ( =dev-lang/python-2.7* ) python? ( =dev-lang/python-2.7*[threads] ) RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/libtorrent/libtorrent-rasterbar-0.16.17.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf python be9965681d83c3980660a2660ac95e95 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=7aadc140f603e16228c4b395be4a6759 +_md5_=aeb604dca9aa89110bf0eaa04865cd9c diff --git a/metadata/md5-cache/net-libs/uhttpmock-0.3.1 b/metadata/md5-cache/net-libs/uhttpmock-0.3.1 index 1b1c3079c49b..55f4421d9dbd 100644 --- a/metadata/md5-cache/net-libs/uhttpmock-0.3.1 +++ b/metadata/md5-cache/net-libs/uhttpmock-0.3.1 @@ -4,11 +4,11 @@ DESCRIPTION=HTTP web service mocking library EAPI=5 HOMEPAGE=http://gitorious.org/uhttpmock/ IUSE=+introspection vala debug -KEYWORDS=~amd64 ~hppa ~x86 +KEYWORDS=~amd64 ~arm ~hppa ~x86 LICENSE=LGPL-2 RDEPEND=>=dev-libs/glib-2.31:2 >=net-libs/libsoup-2.37.91:2.4 introspection? ( >=dev-libs/gobject-introspection-0.9.7 ) REQUIRED_USE=vala? ( introspection ) SLOT=0 SRC_URI=http://tecnocode.co.uk/downloads/uhttpmock/uhttpmock-0.3.1.tar.xz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 9637c29fc715b17a6328f24251129557 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 vala d8f392783fdc2395fc64af046f2ca961 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=aa8ebb1633576230677799269a00345c +_md5_=95a4fbf3a9a5c6444174a96af77be9c2 diff --git a/metadata/md5-cache/net-misc/dhcpcd-6.4.7 b/metadata/md5-cache/net-misc/dhcpcd-6.4.7 index c05824acfc1a..b315926acfc7 100644 --- a/metadata/md5-cache/net-misc/dhcpcd-6.4.7 +++ b/metadata/md5-cache/net-misc/dhcpcd-6.4.7 @@ -4,10 +4,10 @@ DESCRIPTION=A fully featured, yet light weight RFC2131 compliant DHCP client EAPI=5 HOMEPAGE=http://roy.marples.name/projects/dhcpcd/ IUSE=elibc_glibc ipv6 kernel_linux +udev -KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux +KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux LICENSE=BSD-2 RDEPEND=udev? ( virtual/udev ) SLOT=0 SRC_URI=http://roy.marples.name/downloads/dhcpcd/dhcpcd-6.4.7.tar.bz2 _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=36c949f67e797186cf70b0efca3dc722 +_md5_=7bd6910fe0b2045ce0391e379ca93ed6 diff --git a/metadata/md5-cache/net-misc/dropbox-cli-1.6.0 b/metadata/md5-cache/net-misc/dropbox-cli-1.6.0 index 0121ec72432f..dac9a5daa808 100644 --- a/metadata/md5-cache/net-misc/dropbox-cli-1.6.0 +++ b/metadata/md5-cache/net-misc/dropbox-cli-1.6.0 @@ -3,11 +3,11 @@ DESCRIPTION=Cli interface for dropbox (python), part of nautilus-dropbox EAPI=5 HOMEPAGE=http://www.dropbox.com/ IUSE=python_targets_python2_7 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=GPL-3 RDEPEND=net-misc/dropbox python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=https://dev.gentoo.org/~hasufell/distfiles/dropbox-cli-1.6.0.py.xz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=7975427f9f0f4c3a8a7311c722b5fa32 +_md5_=f5a06d6bd9536a8478e05a73c32d55f4 diff --git a/metadata/md5-cache/net-misc/geoipupdate-2.0.2 b/metadata/md5-cache/net-misc/geoipupdate-2.0.2 index 191f1e2ff734..72a759ded002 100644 --- a/metadata/md5-cache/net-misc/geoipupdate-2.0.2 +++ b/metadata/md5-cache/net-misc/geoipupdate-2.0.2 @@ -3,9 +3,9 @@ DEPEND=net-misc/curl sys-libs/zlib DESCRIPTION=performs automatic updates of GeoIP2 and GeoIP Legacy binary databases EAPI=5 HOMEPAGE=https://github.com/maxmind/geoipupdate -KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~x86 ~x86-fbsd +KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~s390 x86 ~x86-fbsd LICENSE=GPL-2 RDEPEND=net-misc/curl sys-libs/zlib !=gnome-base/libgnomeui-2 net-misc/rdesktop gnome-base/gconf:2 app-text/scrollkeeper virtual/pkgconfig >=sys-apps/sed-4 -DESCRIPTION=Gtk2 frontend for rdesktop -EAPI=1 -HOMEPAGE=http://www.nongnu.org/grdesktop/ -IUSE=debug -KEYWORDS=amd64 ppc sparc x86 ~x86-fbsd -LICENSE=GPL-2 -RDEPEND=x11-libs/gtk+:2 >=gnome-base/libgnomeui-2 net-misc/rdesktop gnome-base/gconf:2 -SLOT=0 -SRC_URI=http://savannah.nongnu.org/download/grdesktop/grdesktop-0.23.tar.gz -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 9637c29fc715b17a6328f24251129557 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=5f616b7f2fe760916b3e31eddac30aa9 diff --git a/metadata/md5-cache/net-misc/iperf-3.0.7 b/metadata/md5-cache/net-misc/iperf-3.0.7 index 942ca70d3089..3ea8ed169621 100644 --- a/metadata/md5-cache/net-misc/iperf-3.0.7 +++ b/metadata/md5-cache/net-misc/iperf-3.0.7 @@ -4,9 +4,9 @@ DESCRIPTION=A TCP, UDP, and SCTP network bandwidth measurement tool EAPI=5 HOMEPAGE=https://github.com/esnet/iperf/ IUSE=static-libs -KEYWORDS=amd64 ~arm hppa ~mips ppc ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~m68k-mint +KEYWORDS=amd64 ~arm hppa ~mips ppc ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~m68k-mint LICENSE=BSD SLOT=3 SRC_URI=https://codeload.github.com/esnet/iperf/tar.gz/3.0.7 -> iperf-3.0.7.tar.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=e60c4a0427807559e6e214eacda476d7 +_md5_=64ed4405cf2667223b51e2704a359480 diff --git a/metadata/md5-cache/net-misc/lldpd-0.7.9-r3 b/metadata/md5-cache/net-misc/lldpd-0.7.9-r3 index 768aa19490ff..2f68b496c4b0 100644 --- a/metadata/md5-cache/net-misc/lldpd-0.7.9-r3 +++ b/metadata/md5-cache/net-misc/lldpd-0.7.9-r3 @@ -4,11 +4,11 @@ DESCRIPTION=Implementation of IEEE 802.1ab (LLDP) EAPI=5 HOMEPAGE=http://vincentbernat.github.com/lldpd/ IUSE=cdp doc +dot1 +dot3 edp fdp graph json +lldpmed seccomp sonmp snmp static-libs readline xml -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=ISC RDEPEND=>=dev-libs/libevent-2.0.5 snmp? ( net-analyzer/net-snmp[extensible(+)] ) xml? ( dev-libs/libxml2 ) json? ( dev-libs/jansson ) seccomp? ( sys-libs/libseccomp ) REQUIRED_USE=graph? ( doc ) SLOT=0 SRC_URI=http://media.luffy.cx/files/lldpd/lldpd-0.7.9.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=431ac38ba0bbb88859224ae64f750f86 +_md5_=2a50f520d9e03229cd18183e94b650c7 diff --git a/metadata/md5-cache/net-misc/radvd-2.3 b/metadata/md5-cache/net-misc/radvd-2.8 similarity index 63% rename from metadata/md5-cache/net-misc/radvd-2.3 rename to metadata/md5-cache/net-misc/radvd-2.8 index 6a5b8db85aa8..b650454f66a2 100644 --- a/metadata/md5-cache/net-misc/radvd-2.3 +++ b/metadata/md5-cache/net-misc/radvd-2.8 @@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~arm ~hppa ~ppc ~sparc ~x86 ~x86-fbsd LICENSE=BSD RDEPEND=dev-libs/libdaemon selinux? ( sec-policy/selinux-radvd ) SLOT=0 -SRC_URI=http://v6web.litech.org/radvd/dist/radvd-2.3.tar.gz -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=0a61494af11d3d33cd017ef3aeb71096 +SRC_URI=http://v6web.litech.org/radvd/dist/radvd-2.8.tar.gz +_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf readme.gentoo 106edea5533517715013de909a333abd systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 +_md5_=4339a0b94091db75a1fcdd6c4ac4a073 diff --git a/metadata/md5-cache/net-misc/whois-5.1.5 b/metadata/md5-cache/net-misc/whois-5.1.5 index 5d631472b3d0..27604c591d1f 100644 --- a/metadata/md5-cache/net-misc/whois-5.1.5 +++ b/metadata/md5-cache/net-misc/whois-5.1.5 @@ -4,11 +4,11 @@ DESCRIPTION=improved Whois Client EAPI=4 HOMEPAGE=http://www.linux.it/~md/software/ IUSE=iconv idn nls -KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux +KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux LICENSE=GPL-2 RDEPEND=iconv? ( virtual/libiconv ) idn? ( net-dns/libidn ) nls? ( virtual/libintl ) RESTRICT=test SLOT=0 SRC_URI=mirror://debian/pool/main/w/whois/whois_5.1.5.tar.xz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=6e43a412c0a02c4e9a84b9446217028f +_md5_=017bd2afa5eaf8a5022e8ae9de3afd1e diff --git a/metadata/md5-cache/net-p2p/bitcoin-cli-0.9.3 b/metadata/md5-cache/net-p2p/bitcoin-cli-0.9.3 index 33342e1757fc..5ae96a8c2f86 100644 --- a/metadata/md5-cache/net-p2p/bitcoin-cli-0.9.3 +++ b/metadata/md5-cache/net-p2p/bitcoin-cli-0.9.3 @@ -1,12 +1,12 @@ DEFINED_PHASES=configure install prepare -DEPEND=>=dev-libs/boost-1.53.0[threads(+)] dev-libs/openssl:0[-bindist] !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) >=sys-devel/autoconf-2.69 sys-devel/libtool +DEPEND=>=dev-libs/boost-1.52.0[threads(+)] dev-libs/openssl:0[-bindist] !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) >=sys-devel/autoconf-2.69 sys-devel/libtool DESCRIPTION=Command-line JSON-RPC client specifically designed for talking to Bitcoin Core Daemon EAPI=4 HOMEPAGE=http://bitcoin.org/ KEYWORDS=~amd64 ~arm ~x86 LICENSE=MIT ISC -RDEPEND=>=dev-libs/boost-1.53.0[threads(+)] dev-libs/openssl:0[-bindist] +RDEPEND=>=dev-libs/boost-1.52.0[threads(+)] dev-libs/openssl:0[-bindist] SLOT=0 SRC_URI=https://github.com/bitcoin/bitcoin/archive/v0.9.3.tar.gz -> bitcoin-v0.9.3.tgz http://luke.dashjr.org/programs/bitcoin/files/bitcoind/luke-jr/0.9.x/0.9.3.ljr20141002/bitcoin-0.9.3.ljr20141002.patch.xz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=d121e54496e83c35fda3b49467922086 +_md5_=fefc39964d38ddd302986f6e1bcfab88 diff --git a/metadata/md5-cache/net-p2p/bitcoin-qt-0.9.3 b/metadata/md5-cache/net-p2p/bitcoin-qt-0.9.3 index 9e3b550ceada..5676a5e887d5 100644 --- a/metadata/md5-cache/net-p2p/bitcoin-qt-0.9.3 +++ b/metadata/md5-cache/net-p2p/bitcoin-qt-0.9.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=>=dev-libs/boost-1.53.0[threads(+)] dev-libs/openssl:0[-bindist] dev-libs/protobuf qrcode? ( media-gfx/qrencode ) upnp? ( net-libs/miniupnpc ) sys-libs/db:4.8[cxx] virtual/bitcoin-leveldb dev-qt/qtgui:4 dbus? ( dev-qt/qtdbus:4 ) >=app-shells/bash-4.1 !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) >=sys-devel/autoconf-2.69 sys-devel/libtool >=sys-apps/sed-4 +DEPEND=>=dev-libs/boost-1.52.0[threads(+)] dev-libs/openssl:0[-bindist] dev-libs/protobuf qrcode? ( media-gfx/qrencode ) upnp? ( net-libs/miniupnpc ) sys-libs/db:4.8[cxx] virtual/bitcoin-leveldb dev-qt/qtgui:4 dbus? ( dev-qt/qtdbus:4 ) >=app-shells/bash-4.1 !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) >=sys-devel/autoconf-2.69 sys-devel/libtool >=sys-apps/sed-4 DESCRIPTION=An end-user Qt4 GUI for the Bitcoin crypto-currency EAPI=4 HOMEPAGE=http://bitcoin.org/ -IUSE=1stclassmsg dbus kde +ljr +qrcode test upnp linguas_ach linguas_af_ZA linguas_ar linguas_be_BY linguas_bg linguas_bs linguas_ca linguas_ca@valencia linguas_ca_ES linguas_cmn linguas_cs linguas_cy linguas_da linguas_de linguas_el_GR linguas_en linguas_eo linguas_es linguas_es_CL linguas_es_DO linguas_es_MX linguas_es_UY linguas_et linguas_eu_ES linguas_fa linguas_fa_IR linguas_fi linguas_fr linguas_fr_CA linguas_gl linguas_gu_IN linguas_he linguas_hi_IN linguas_hr linguas_hu linguas_id_ID linguas_it linguas_ja linguas_ka linguas_kk_KZ linguas_ko_KR linguas_ky linguas_la linguas_lt linguas_lv_LV linguas_mn linguas_ms_MY linguas_nb linguas_nl linguas_pam linguas_pl linguas_pt_BR linguas_pt_PT linguas_ro_RO linguas_ru linguas_sah linguas_sk linguas_sl_SI linguas_sq linguas_sr linguas_sv linguas_th_TH linguas_tr linguas_uk linguas_ur_PK linguas_uz@Cyrl linguas_vi linguas_vi_VN linguas_zh_HK linguas_zh_CN linguas_zh_TW +IUSE=1stclassmsg dbus kde ljr ljr-antispam +qrcode test upnp linguas_ach linguas_af_ZA linguas_ar linguas_be_BY linguas_bg linguas_bs linguas_ca linguas_ca@valencia linguas_ca_ES linguas_cmn linguas_cs linguas_cy linguas_da linguas_de linguas_el_GR linguas_en linguas_eo linguas_es linguas_es_CL linguas_es_DO linguas_es_MX linguas_es_UY linguas_et linguas_eu_ES linguas_fa linguas_fa_IR linguas_fi linguas_fr linguas_fr_CA linguas_gl linguas_gu_IN linguas_he linguas_hi_IN linguas_hr linguas_hu linguas_id_ID linguas_it linguas_ja linguas_ka linguas_kk_KZ linguas_ko_KR linguas_ky linguas_la linguas_lt linguas_lv_LV linguas_mn linguas_ms_MY linguas_nb linguas_nl linguas_pam linguas_pl linguas_pt_BR linguas_pt_PT linguas_ro_RO linguas_ru linguas_sah linguas_sk linguas_sl_SI linguas_sq linguas_sr linguas_sv linguas_th_TH linguas_tr linguas_uk linguas_ur_PK linguas_uz@Cyrl linguas_vi linguas_vi_VN linguas_zh_HK linguas_zh_CN linguas_zh_TW KEYWORDS=~amd64 ~arm ~x86 LICENSE=MIT ISC GPL-3 LGPL-2.1 public-domain || ( CC-BY-SA-3.0 LGPL-2.1 ) -RDEPEND=>=dev-libs/boost-1.53.0[threads(+)] dev-libs/openssl:0[-bindist] dev-libs/protobuf qrcode? ( media-gfx/qrencode ) upnp? ( net-libs/miniupnpc ) sys-libs/db:4.8[cxx] virtual/bitcoin-leveldb dev-qt/qtgui:4 dbus? ( dev-qt/qtdbus:4 ) -REQUIRED_USE=1stclassmsg? ( ljr ) +RDEPEND=>=dev-libs/boost-1.52.0[threads(+)] dev-libs/openssl:0[-bindist] dev-libs/protobuf qrcode? ( media-gfx/qrencode ) upnp? ( net-libs/miniupnpc ) sys-libs/db:4.8[cxx] virtual/bitcoin-leveldb dev-qt/qtgui:4 dbus? ( dev-qt/qtdbus:4 ) +REQUIRED_USE=1stclassmsg? ( ljr ) ljr-antispam? ( ljr ) SLOT=0 SRC_URI=https://github.com/bitcoin/bitcoin/archive/v0.9.3.tar.gz -> bitcoin-v0.9.3.tgz ljr? ( http://luke.dashjr.org/programs/bitcoin/files/bitcoind/luke-jr/0.9.x/0.9.3.ljr20141002/bitcoin-0.9.3.ljr20141002.patch.xz ) _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 base 87f7447ccfc06fd0729ff4684e11e0d6 db-use 82d0e62839f20e1e0d5a2259abd5316f eutils 32548a82e42dc26e3312581476d2f20c fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils f658eba3cc594a21cf6eef4af47daa90 kde4-functions 492237eb2823bdc02bc769530501f0ea libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 qmake-utils 40136c5fe0002a0d3937e869ae4ee0e2 qt4-r2 b40473dafd07d7c5fe4aef1c1b902f39 toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=2bc5b5ef8935e1ef96c7c4ec955841ef +_md5_=07a47782b21af0394403aab29ed6cda1 diff --git a/metadata/md5-cache/net-p2p/bitcoind-0.9.3 b/metadata/md5-cache/net-p2p/bitcoind-0.9.3 index ddfdb83d7e3f..bcd4e2f3505d 100644 --- a/metadata/md5-cache/net-p2p/bitcoind-0.9.3 +++ b/metadata/md5-cache/net-p2p/bitcoind-0.9.3 @@ -1,13 +1,14 @@ DEFINED_PHASES=configure install prepare setup test -DEPEND=>=dev-libs/boost-1.53.0[threads(+)] dev-libs/openssl:0[-bindist] logrotate? ( app-admin/logrotate ) upnp? ( net-libs/miniupnpc ) wallet? ( sys-libs/db:4.8[cxx] ) virtual/bitcoin-leveldb >=app-shells/bash-4.1 sys-apps/sed !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) >=sys-devel/autoconf-2.69 sys-devel/libtool virtual/pkgconfig +DEPEND=>=dev-libs/boost-1.52.0[threads(+)] dev-libs/openssl:0[-bindist] logrotate? ( app-admin/logrotate ) upnp? ( net-libs/miniupnpc ) wallet? ( sys-libs/db:4.8[cxx] ) virtual/bitcoin-leveldb >=app-shells/bash-4.1 sys-apps/sed !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) >=sys-devel/autoconf-2.69 sys-devel/libtool virtual/pkgconfig DESCRIPTION=Original Bitcoin crypto-currency wallet for automated services EAPI=4 HOMEPAGE=http://bitcoin.org/ -IUSE=examples +ljr logrotate test upnp +wallet +IUSE=examples ljr ljr-antispam logrotate test upnp +wallet KEYWORDS=~amd64 ~arm ~x86 LICENSE=MIT ISC GPL-2 -RDEPEND=>=dev-libs/boost-1.53.0[threads(+)] dev-libs/openssl:0[-bindist] logrotate? ( app-admin/logrotate ) upnp? ( net-libs/miniupnpc ) wallet? ( sys-libs/db:4.8[cxx] ) virtual/bitcoin-leveldb +RDEPEND=>=dev-libs/boost-1.52.0[threads(+)] dev-libs/openssl:0[-bindist] logrotate? ( app-admin/logrotate ) upnp? ( net-libs/miniupnpc ) wallet? ( sys-libs/db:4.8[cxx] ) virtual/bitcoin-leveldb +REQUIRED_USE=ljr-antispam? ( ljr ) SLOT=0 SRC_URI=https://github.com/bitcoin/bitcoin/archive/v0.9.3.tar.gz -> bitcoin-v0.9.3.tgz ljr? ( http://luke.dashjr.org/programs/bitcoin/files/bitcoind/luke-jr/0.9.x/0.9.3.ljr20141002/bitcoin-0.9.3.ljr20141002.patch.xz ) _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 bash-completion-r1 c8399c7c7ecbcf7ed6e5bd3abb3d4af3 db-use 82d0e62839f20e1e0d5a2259abd5316f eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=787bc0c7a67c80629f141d05323a7bd4 +_md5_=bf1530fbf4c2dcbd8821bb2143f8b924 diff --git a/metadata/md5-cache/net-p2p/gtk-gnutella-1.1.1 b/metadata/md5-cache/net-p2p/gtk-gnutella-1.1.1 index 4b32e7a0bb7a..7a375d20e601 100644 --- a/metadata/md5-cache/net-p2p/gtk-gnutella-1.1.1 +++ b/metadata/md5-cache/net-p2p/gtk-gnutella-1.1.1 @@ -4,10 +4,10 @@ DESCRIPTION=A GTK+ Gnutella client EAPI=5 HOMEPAGE=http://gtk-gnutella.sourceforge.net/ IUSE=nls dbus ssl +gtk -KEYWORDS=amd64 ~ppc ~x86 ~x86-fbsd +KEYWORDS=amd64 ~ppc x86 ~x86-fbsd LICENSE=GPL-2 RDEPEND=dev-libs/glib:2 sys-libs/zlib gtk? ( >=x11-libs/gtk+-2.2.1:2 ) dbus? ( >=sys-apps/dbus-0.35.2 ) ssl? ( >=net-libs/gnutls-2.2.5 ) nls? ( >=sys-devel/gettext-0.11.5 ) SLOT=0 SRC_URI=mirror://sourceforge/gtk-gnutella/gtk-gnutella-1.1.1.tar.bz2 _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=3413118475c8484cf0aca86357434733 +_md5_=ff9f0e4de81ba9f94bf7844f06602198 diff --git a/metadata/md5-cache/net-p2p/qbittorrent-3.0.11 b/metadata/md5-cache/net-p2p/qbittorrent-3.0.11 deleted file mode 100644 index aa70e32240c5..000000000000 --- a/metadata/md5-cache/net-p2p/qbittorrent-3.0.11 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare unpack -DEPEND=dev-libs/boost dev-qt/qtcore:4 >=net-libs/rb_libtorrent-0.16.3 X? ( dev-qt/qtgui:4 ) dbus? ( dev-qt/qtdbus:4 ) virtual/pkgconfig -DESCRIPTION=BitTorrent client in C++ and Qt -EAPI=5 -HOMEPAGE=http://www.qbittorrent.org/ -IUSE=dbus +X geoip python_targets_python2_7 -KEYWORDS=amd64 ~arm x86 -LICENSE=GPL-2 -RDEPEND=dev-libs/boost dev-qt/qtcore:4 >=net-libs/rb_libtorrent-0.16.3 X? ( dev-qt/qtgui:4 ) dbus? ( dev-qt/qtdbus:4 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] geoip? ( dev-libs/geoip ) -SLOT=0 -SRC_URI=mirror://sourceforge/qbittorrent/qbittorrent-3.0.11.tar.gz -_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 qmake-utils 40136c5fe0002a0d3937e869ae4ee0e2 qt4-r2 b40473dafd07d7c5fe4aef1c1b902f39 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=35b812f3d0fc5a90552c735a095135f1 diff --git a/metadata/md5-cache/net-p2p/qbittorrent-3.1.9.2-r1 b/metadata/md5-cache/net-p2p/qbittorrent-3.1.9.2-r1 index 82d8fd957565..09f4c4dd0b1f 100644 --- a/metadata/md5-cache/net-p2p/qbittorrent-3.1.9.2-r1 +++ b/metadata/md5-cache/net-p2p/qbittorrent-3.1.9.2-r1 @@ -4,10 +4,10 @@ DESCRIPTION=BitTorrent client in C++ and Qt EAPI=5 HOMEPAGE=http://www.qbittorrent.org/ IUSE=dbus debug geoip +X python_targets_python2_7 -KEYWORDS=amd64 ~arm ~x86 +KEYWORDS=amd64 ~arm x86 LICENSE=GPL-2 RDEPEND=dev-libs/boost:= dev-qt/qtcore:4 >=dev-qt/qtsingleapplication-2.6.1_p20130904-r1[X?] >=net-libs/rb_libtorrent-0.16.10 dbus? ( dev-qt/qtdbus:4 ) X? ( dev-qt/qtgui:4 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] geoip? ( dev-libs/geoip ) SLOT=0 SRC_URI=mirror://sourceforge/qbittorrent/qbittorrent-3.1.9.2.tar.xz _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 qmake-utils 40136c5fe0002a0d3937e869ae4ee0e2 qt4-r2 b40473dafd07d7c5fe4aef1c1b902f39 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=5413a764ba1d69a5cc8d2837e8f88c67 +_md5_=bae67aac669256c96af696b00a5a0649 diff --git a/metadata/md5-cache/net-p2p/rtorrent-0.9.3 b/metadata/md5-cache/net-p2p/rtorrent-0.9.3 index 8416d102cfeb..8e695a93eea8 100644 --- a/metadata/md5-cache/net-p2p/rtorrent-0.9.3 +++ b/metadata/md5-cache/net-p2p/rtorrent-0.9.3 @@ -4,10 +4,10 @@ DESCRIPTION=BitTorrent Client using libtorrent EAPI=4 HOMEPAGE=http://libtorrent.rakshasa.no/ IUSE=daemon debug ipv6 selinux test xmlrpc -KEYWORDS=~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris +KEYWORDS=amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris LICENSE=GPL-2 RDEPEND=~net-libs/libtorrent-0.13.3 >=dev-libs/libsigc++-2.2.2:2 >=net-misc/curl-7.19.1 sys-libs/ncurses selinux? ( sec-policy/selinux-rtorrent ) xmlrpc? ( dev-libs/xmlrpc-c ) daemon? ( app-misc/screen ) SLOT=0 SRC_URI=http://libtorrent.rakshasa.no/downloads/rtorrent-0.9.3.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=f2a2af2d77232e8dcd5939f63d26b897 +_md5_=d66d0a06de46454d703df9e2b01aa29a diff --git a/metadata/md5-cache/net-proxy/haproxy-1.5.4 b/metadata/md5-cache/net-proxy/haproxy-1.5.4 index 203bff2273a0..ad116940bb90 100644 --- a/metadata/md5-cache/net-proxy/haproxy-1.5.4 +++ b/metadata/md5-cache/net-proxy/haproxy-1.5.4 @@ -4,10 +4,10 @@ DESCRIPTION=A TCP/HTTP reverse proxy for high availability environments EAPI=5 HOMEPAGE=http://haproxy.1wt.eu IUSE=+crypt examples +pcre ssl tools vim-syntax +zlib -KEYWORDS=amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc x86 LICENSE=GPL-2 LGPL-2.1 RDEPEND=pcre? ( dev-libs/libpcre ) ssl? ( dev-libs/openssl[zlib?] ) zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=http://haproxy.1wt.eu/download/1.5/src/haproxy-1.5.4.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 multilib 3bf24e6abb9b76d9f6c20600f0b716bf systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=c1a214d0220a5e62cf78700446116a45 +_md5_=683d31d5c281b2118b666a784a993851 diff --git a/metadata/md5-cache/net-proxy/squid-3.3.13-r1 b/metadata/md5-cache/net-proxy/squid-3.3.13-r1 index bcb14196ed7d..11c1eb4045c0 100644 --- a/metadata/md5-cache/net-proxy/squid-3.3.13-r1 +++ b/metadata/md5-cache/net-proxy/squid-3.3.13-r1 @@ -4,11 +4,11 @@ DESCRIPTION=A full-featured web proxy cache EAPI=5 HOMEPAGE=http://www.squid-cache.org/ IUSE=caps ipv6 pam ldap samba sasl kerberos nis radius ssl snmp selinux logrotate test ecap icap-client ssl-crtd mysql postgres sqlite qos tproxy pf-transparent ipf-transparent kqueue elibc_uclibc kernel_linux -KEYWORDS=alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 ~x86-fbsd +KEYWORDS=alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 ~x86-fbsd LICENSE=GPL-2 RDEPEND=caps? ( >=sys-libs/libcap-2.16 ) pam? ( virtual/pam ) ldap? ( net-nds/openldap ) kerberos? ( virtual/krb5 ) qos? ( net-libs/libnetfilter_conntrack ) ssl? ( dev-libs/openssl ) sasl? ( dev-libs/cyrus-sasl ) ecap? ( net-libs/libecap:0.2 ) selinux? ( sec-policy/selinux-squid ) !x86-fbsd? ( logrotate? ( app-admin/logrotate ) ) >=sys-libs/db-4 sys-devel/libtool dev-lang/perl sys-devel/libtool samba? ( net-fs/samba ) mysql? ( dev-perl/DBD-mysql ) postgres? ( dev-perl/DBD-Pg ) sqlite? ( dev-perl/DBD-SQLite ) !<=sci-biology/meme-4.8.1-r1 REQUIRED_USE=tproxy? ( caps ) qos? ( caps ) SLOT=0 SRC_URI=http://www.squid-cache.org/Versions/v3/3.3/squid-3.3.13.tar.xz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 libtool 52d0e17251d04645ffaa61bfdd858944 linux-info 2b8c53f6065bdee2d757472215a3088f multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 pam aa1ebb3ab720ea04dbbdd6eaaf9554ed toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=53cf5abb5f25c0c741482ab69add1ec2 +_md5_=c19c9f64ab2b94dc5cf7bae2a95345c5 diff --git a/metadata/md5-cache/net-voip/vidyodesktop-3.3.0.027 b/metadata/md5-cache/net-voip/vidyodesktop-3.3.0.027 new file mode 100644 index 000000000000..f479b59b4cec --- /dev/null +++ b/metadata/md5-cache/net-voip/vidyodesktop-3.3.0.027 @@ -0,0 +1,13 @@ +DEFINED_PHASES=install unpack +DEPEND=>=app-arch/rpm2targz-9.0.0.3g +DESCRIPTION=Enterprise video conferencing platform +EAPI=5 +HOMEPAGE=http://www.vidyo.com/ +KEYWORDS=~amd64 ~x86 +LICENSE=Vidyo-EULA +RDEPEND=app-arch/bzip2 dev-libs/expat dev-libs/glib dev-libs/libffi media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/glu media-libs/libpng media-libs/mesa net-dns/libidn sys-libs/zlib x11-libs/libdrm x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXau x11-libs/libxcb x11-libs/libXdamage x11-libs/libXdmcp x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libXv x11-libs/libXxf86vm +RESTRICT=mirror strip +SLOT=0 +SRC_URI=amd64? ( https://demo.vidyo.com/upload/VidyoDesktopInstaller-sl564-TAG_VD_3_3_0_027.rpm ) x86? ( https://demo.vidyo.com/upload/VidyoDesktopInstaller-sl5-TAG_VD_3_3_0_027.rpm ) +_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf rpm b94b54b44f14d6bee3e966c8f5c86fba toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f +_md5_=979dc438c8626a9fe1ab05f7c0746ca4 diff --git a/metadata/md5-cache/net-wireless/hostapd-2.2-r2 b/metadata/md5-cache/net-wireless/hostapd-2.3 similarity index 88% rename from metadata/md5-cache/net-wireless/hostapd-2.2-r2 rename to metadata/md5-cache/net-wireless/hostapd-2.3 index 040db8fa6692..67a9c0c80cc0 100644 --- a/metadata/md5-cache/net-wireless/hostapd-2.2-r2 +++ b/metadata/md5-cache/net-wireless/hostapd-2.3 @@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~mips ~ppc ~x86 LICENSE=|| ( GPL-2 BSD ) RDEPEND=ssl? ( dev-libs/openssl ) kernel_linux? ( dev-libs/libnl:3 crda? ( net-wireless/crda ) ) netlink? ( net-libs/libnfnetlink ) sqlite? ( >=dev-db/sqlite-3 ) SLOT=0 -SRC_URI=http://hostap.epitest.fi/releases/hostapd-2.2.tar.gz +SRC_URI=http://hostap.epitest.fi/releases/hostapd-2.3.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=ad0d0490d0b0316871a80c5012be3366 +_md5_=26a3c38c59793d4ee4df70a4de2d04d5 diff --git a/metadata/md5-cache/net-wireless/wpa_supplicant-2.3 b/metadata/md5-cache/net-wireless/wpa_supplicant-2.3 new file mode 100644 index 000000000000..c8defb811345 --- /dev/null +++ b/metadata/md5-cache/net-wireless/wpa_supplicant-2.3 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst prepare setup unpack +DEPEND=dbus? ( sys-apps/dbus ) kernel_linux? ( eap-sim? ( sys-apps/pcsc-lite ) dev-libs/libnl:3 net-wireless/crda ) !kernel_linux? ( net-libs/libpcap ) qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtsvg:4 ) readline? ( sys-libs/ncurses sys-libs/readline ) ssl? ( dev-libs/openssl ) !ssl? ( gnutls? ( net-libs/gnutls ) ) !ssl? ( !gnutls? ( dev-libs/libtommath ) ) selinux? ( sec-policy/selinux-networkmanager ) virtual/pkgconfig virtual/pkgconfig +DESCRIPTION=IEEE 802.1X/WPA supplicant for secure wireless transfers +EAPI=4 +HOMEPAGE=http://hostap.epitest.fi/wpa_supplicant/ +IUSE=ap dbus gnutls eap-sim fasteap p2p ps3 qt4 readline selinux smartcard ssl wimax wps kernel_linux kernel_FreeBSD +KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd +LICENSE=|| ( GPL-2 BSD ) +RDEPEND=dbus? ( sys-apps/dbus ) kernel_linux? ( eap-sim? ( sys-apps/pcsc-lite ) dev-libs/libnl:3 net-wireless/crda ) !kernel_linux? ( net-libs/libpcap ) qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtsvg:4 ) readline? ( sys-libs/ncurses sys-libs/readline ) ssl? ( dev-libs/openssl ) !ssl? ( gnutls? ( net-libs/gnutls ) ) !ssl? ( !gnutls? ( dev-libs/libtommath ) ) selinux? ( sec-policy/selinux-networkmanager ) +REQUIRED_USE=fasteap? ( !gnutls !ssl ) smartcard? ( ssl ) +SLOT=0 +SRC_URI=http://hostap.epitest.fi/releases/wpa_supplicant-2.3.tar.gz +_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf qmake-utils 40136c5fe0002a0d3937e869ae4ee0e2 qt4-r2 b40473dafd07d7c5fe4aef1c1b902f39 systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0f1760274637a138b99bb649202ea402 +_md5_=99f64acd14b7d61ae780a02791dae680 diff --git a/metadata/md5-cache/perl-core/Text-Tabs+Wrap-2012.81.800-r1 b/metadata/md5-cache/perl-core/Text-Tabs+Wrap-2012.81.800-r1 deleted file mode 100644 index c7c7388ce3f5..000000000000 --- a/metadata/md5-cache/perl-core/Text-Tabs+Wrap-2012.81.800-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=dev-lang/perl:=[-build(-)] -DESCRIPTION=Expand/unexpand tabs per unix expand and line wrapping -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/Text-Tabs+Wrap/ -KEYWORDS=alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris -LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) -RDEPEND=dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/M/MU/MUIR/modules/Text-Tabs+Wrap-2012.0818.tar.gz -_eclasses_=alternatives 326031758c86cd08f5844f475f03ac01 eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 perl-module f889e8437ffc64d766053d029c422c4e toolchain-funcs 0f1760274637a138b99bb649202ea402 unpacker f300a7ca9131b1024a79762e8edd3c52 -_md5_=79f93f3c2791bc848877064eac359842 diff --git a/metadata/md5-cache/perl-core/Text-Tabs+Wrap-2013.52.300-r1 b/metadata/md5-cache/perl-core/Text-Tabs+Wrap-2013.52.300-r1 index 7e3247bc1a02..2a94e8de4a43 100644 --- a/metadata/md5-cache/perl-core/Text-Tabs+Wrap-2013.52.300-r1 +++ b/metadata/md5-cache/perl-core/Text-Tabs+Wrap-2013.52.300-r1 @@ -3,10 +3,10 @@ DEPEND=dev-lang/perl:=[-build(-)] DESCRIPTION=Expand/unexpand tabs per unix expand and line wrapping EAPI=5 HOMEPAGE=http://search.cpan.org/dist/Text-Tabs+Wrap/ -KEYWORDS=~alpha ~amd64 hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris +KEYWORDS=alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) RDEPEND=dev-lang/perl:=[-build(-)] SLOT=0 SRC_URI=mirror://cpan/authors/id/M/MU/MUIR/modules/Text-Tabs+Wrap-2013.0523.tar.gz _eclasses_=alternatives 326031758c86cd08f5844f475f03ac01 eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 perl-module f889e8437ffc64d766053d029c422c4e toolchain-funcs 0f1760274637a138b99bb649202ea402 unpacker f300a7ca9131b1024a79762e8edd3c52 -_md5_=9aa9b8c74753f13625cec915df3db277 +_md5_=ccb6506c061db0f69b2bf10802982536 diff --git a/metadata/md5-cache/sci-chemistry/easychem-0.6 b/metadata/md5-cache/sci-chemistry/easychem-0.6 deleted file mode 100644 index f6fcbbb295ca..000000000000 --- a/metadata/md5-cache/sci-chemistry/easychem-0.6 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile install unpack -DEPEND=x11-libs/gtk+:2 app-text/ghostscript-gpl media-gfx/pstoedit virtual/pkgconfig -DESCRIPTION=Chemical structure drawing program - focused on presentation -EAPI=1 -HOMEPAGE=http://easychem.sourceforge.net/ -KEYWORDS=~amd64 ~ppc x86 -LICENSE=GPL-2 -RDEPEND=x11-libs/gtk+:2 app-text/ghostscript-gpl media-gfx/pstoedit -SLOT=0 -SRC_URI=mirror://sourceforge/easychem/easychem-0.6.tar.gz -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=9b912138978dd5c640ee51ddd3cfb81d diff --git a/metadata/md5-cache/sci-chemistry/easychem-0.6-r1 b/metadata/md5-cache/sci-chemistry/easychem-0.6-r1 index bdfbda2761fe..5383ba442166 100644 --- a/metadata/md5-cache/sci-chemistry/easychem-0.6-r1 +++ b/metadata/md5-cache/sci-chemistry/easychem-0.6-r1 @@ -3,10 +3,10 @@ DEPEND=x11-libs/gtk+:2 app-text/ghostscript-gpl media-gfx/pstoedit dev-lang/perl DESCRIPTION=Chemical structure drawing program - focused on presentation EAPI=5 HOMEPAGE=http://easychem.sourceforge.net/ -KEYWORDS=amd64 ~ppc ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~ppc x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 RDEPEND=x11-libs/gtk+:2 app-text/ghostscript-gpl media-gfx/pstoedit SLOT=0 SRC_URI=mirror://sourceforge/easychem/easychem-0.6.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=73ea526619dada60531facaeaa396a65 +_md5_=9f4b8b86739990aec1f5a92b66b9a658 diff --git a/metadata/md5-cache/sci-chemistry/relax-3.3.1 b/metadata/md5-cache/sci-chemistry/relax-3.3.1 new file mode 100644 index 000000000000..bd900b506ef9 --- /dev/null +++ b/metadata/md5-cache/sci-chemistry/relax-3.3.1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install prepare setup test +DEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] dev-python/Numdifftools[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] dev-python/matplotlib[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] dev-python/numpy[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] dev-python/wxpython:2.9[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] sci-chemistry/molmol sci-chemistry/pymol[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] sci-chemistry/vmd >=sci-libs/bmrblib-1.0.3[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] >=sci-libs/minfx-1.0.11[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] sci-libs/scipy[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] sci-visualization/grace sci-visualization/opendx x11-libs/wxGTK:2.9[X] media-gfx/pngcrush dev-util/scons test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +DESCRIPTION=Molecular dynamics by NMR data analysis +EAPI=5 +HOMEPAGE=http://www.nmr-relax.com/ +IUSE=python_targets_python2_7 python_single_target_python2_7 test +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +LICENSE=GPL-2 +RDEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] dev-python/Numdifftools[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] dev-python/matplotlib[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] dev-python/numpy[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] dev-python/wxpython:2.9[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] sci-chemistry/molmol sci-chemistry/pymol[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] sci-chemistry/vmd >=sci-libs/bmrblib-1.0.3[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] >=sci-libs/minfx-1.0.11[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] sci-libs/scipy[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] sci-visualization/grace sci-visualization/opendx x11-libs/wxGTK:2.9[X] +REQUIRED_USE=python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_7 ) +SLOT=0 +SRC_URI=http://download.gna.org/relax/relax-3.3.1.src.tar.bz2 +_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-single-r1 a71a169a881e0a11d04a7fe12dc39f6e python-utils-r1 47dda904cf91c61f45b564d9f834fde1 scons-utils 988e24b9e2e4642189b4e97c03e5ae71 toolchain-funcs 0f1760274637a138b99bb649202ea402 virtualx 73cfc129b4b9ba23aed1abb10c825d86 wxwidgets 6d6eec2685256d35511e7b6d5461bec9 +_md5_=d044c7c0479063ef26779ad3932217b5 diff --git a/metadata/md5-cache/sci-electronics/qelectrotech-0.22 b/metadata/md5-cache/sci-electronics/qelectrotech-0.22 deleted file mode 100644 index 28f67415ac35..000000000000 --- a/metadata/md5-cache/sci-electronics/qelectrotech-0.22 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare unpack -DEPEND=dev-qt/qtgui:4 dev-qt/qtsvg:4 doc? ( app-doc/doxygen ) -DESCRIPTION=Qt4 application to design electric diagrams -EAPI=2 -HOMEPAGE=http://www.qt-apps.org/content/show.php?content=90198 -IUSE=debug doc -KEYWORDS=amd64 x86 -LICENSE=GPL-3 -RDEPEND=dev-qt/qtgui:4 dev-qt/qtsvg:4 -SLOT=0 -SRC_URI=http://download.tuxfamily.org/qet/tags/20100313/qelectrotech-0.22-src.tar.gz -_eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf qmake-utils 40136c5fe0002a0d3937e869ae4ee0e2 qt4-r2 b40473dafd07d7c5fe4aef1c1b902f39 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=5b4ecb2cc1f2beac48a149a2ec5ed724 diff --git a/metadata/md5-cache/sci-electronics/qelectrotech-0.30 b/metadata/md5-cache/sci-electronics/qelectrotech-0.30 index 35848b7d84f1..075416b6c800 100644 --- a/metadata/md5-cache/sci-electronics/qelectrotech-0.30 +++ b/metadata/md5-cache/sci-electronics/qelectrotech-0.30 @@ -4,10 +4,10 @@ DESCRIPTION=Qt4 application to design electric diagrams EAPI=5 HOMEPAGE=http://qelectrotech.org/ IUSE=doc linguas_cs linguas_de linguas_el linguas_en linguas_es linguas_fr linguas_it linguas_pl linguas_pt linguas_ro linguas_ru -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-3 RDEPEND=dev-qt/designer:4 dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtsql:4[sqlite] dev-qt/qtsvg:4 SLOT=0 SRC_URI=http://download.tuxfamily.org/qet/tags/20130928/qelectrotech-0.3-src.tar.gz _eclasses_=base 87f7447ccfc06fd0729ff4684e11e0d6 eutils 32548a82e42dc26e3312581476d2f20c l10n 33bde4fb0cfd3a21a277b66bfd837e19 multilib 3bf24e6abb9b76d9f6c20600f0b716bf qmake-utils 40136c5fe0002a0d3937e869ae4ee0e2 qt4-r2 b40473dafd07d7c5fe4aef1c1b902f39 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=d8f9451daacf82ef24bb1bc55def6cfa +_md5_=534048406179f378635a103c63dab176 diff --git a/metadata/md5-cache/sci-geosciences/osgearth-2.6 b/metadata/md5-cache/sci-geosciences/osgearth-2.6 new file mode 100644 index 000000000000..65e70db70146 --- /dev/null +++ b/metadata/md5-cache/sci-geosciences/osgearth-2.6 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-db/sqlite:3 >=dev-games/openscenegraph-3.2.1[curl,qt4?] dev-libs/tinyxml net-misc/curl sci-libs/gdal sci-libs/geos sys-libs/zlib[minizip] virtual/opengl x11-libs/libX11 qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtopengl:4 ) virtual/pkgconfig doc? ( dev-python/sphinx ) sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) +DESCRIPTION=Dynamic map generation toolkit for OpenSceneGraph +EAPI=5 +HOMEPAGE=http://osgearth.org/ +IUSE=doc qt4 +KEYWORDS=~amd64 ~x86 +LICENSE=LGPL-2+ +RDEPEND=dev-db/sqlite:3 >=dev-games/openscenegraph-3.2.1[curl,qt4?] dev-libs/tinyxml net-misc/curl sci-libs/gdal sci-libs/geos sys-libs/zlib[minizip] virtual/opengl x11-libs/libX11 qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtopengl:4 ) +SLOT=0 +SRC_URI=https://github.com/gwaldron/osgearth/archive/osgearth-2.6.tar.gz +_eclasses_=cmake-utils da2974fcb060ec927e93a17c835afa67 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 +_md5_=d600825f0fb0f223a2f127473f8f9404 diff --git a/metadata/md5-cache/sci-libs/libspatialindex-1.8.1 b/metadata/md5-cache/sci-libs/libspatialindex-1.8.1 index 5fd036ff3b85..39b804e88a9a 100644 --- a/metadata/md5-cache/sci-libs/libspatialindex-1.8.1 +++ b/metadata/md5-cache/sci-libs/libspatialindex-1.8.1 @@ -4,9 +4,9 @@ DESCRIPTION=General framework for developing spatial indices EAPI=5 HOMEPAGE=http://libspatialindex.github.com/ IUSE=debug static-libs -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=MIT SLOT=0 SRC_URI=http://download.osgeo.org/libspatialindex/spatialindex-src-1.8.1.tar.bz2 _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=c014030d247702d8378e898992633c82 +_md5_=2778f5db502d419fc65dcb3825493ad1 diff --git a/metadata/md5-cache/sci-libs/libspatialindex-1.8.4 b/metadata/md5-cache/sci-libs/libspatialindex-1.8.4 new file mode 100644 index 000000000000..1c9f099a24a8 --- /dev/null +++ b/metadata/md5-cache/sci-libs/libspatialindex-1.8.4 @@ -0,0 +1,12 @@ +DEFINED_PHASES=configure install prepare +DEPEND=!=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) >=sys-devel/autoconf-2.69 sys-devel/libtool +DESCRIPTION=General framework for developing spatial indices +EAPI=5 +HOMEPAGE=http://libspatialindex.github.com/ +IUSE=debug static-libs +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +SLOT=0/4 +SRC_URI=http://download.osgeo.org/libspatialindex/spatialindex-src-1.8.4.tar.bz2 +_eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 +_md5_=28543153d0aef3f06b6d247b04c1c8ea diff --git a/metadata/md5-cache/sys-apps/file-5.18-r1 b/metadata/md5-cache/sys-apps/file-5.18-r1 deleted file mode 100644 index c3935c99f159..000000000000 --- a/metadata/md5-cache/sys-apps/file-5.18-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:2[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20131008-r21 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) -DESCRIPTION=identify a file's format by scanning binary data for patterns -EAPI=4 -HOMEPAGE=http://www.darwinsys.com/file/ -IUSE=python static-libs zlib python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd -LICENSE=BSD-2 -RDEPEND=python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-lang/python-exec:2[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20131008-r21 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) python? ( !dev-python/python-magic ) -SLOT=0 -SRC_URI=ftp://ftp.astron.com/pub/file/file-5.18.tar.gz ftp://ftp.gw.com/mirrors/pub/unix/file/file-5.18.tar.gz -_eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multilib-build 9eb4b5fb858228316d8bb32ada51f6a5 multilib-minimal 5bbdc77877c1aa3c6bd89ca3f9196d11 multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=624a4b71f7bf6790fddcef3329acae82 diff --git a/metadata/md5-cache/sys-apps/file-5.19 b/metadata/md5-cache/sys-apps/file-5.19 index 112983b60c55..a2650eed05d0 100644 --- a/metadata/md5-cache/sys-apps/file-5.19 +++ b/metadata/md5-cache/sys-apps/file-5.19 @@ -4,10 +4,10 @@ DESCRIPTION=identify a file's format by scanning binary data for patterns EAPI=4 HOMEPAGE=http://www.darwinsys.com/file/ IUSE=python static-libs zlib python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_python3_4 abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd +KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd LICENSE=BSD-2 RDEPEND=python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) dev-lang/python-exec:2[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20131008-r21 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) python? ( !dev-python/python-magic ) SLOT=0 SRC_URI=ftp://ftp.astron.com/pub/file/file-5.19.tar.gz ftp://ftp.gw.com/mirrors/pub/unix/file/file-5.19.tar.gz _eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multilib-build 9eb4b5fb858228316d8bb32ada51f6a5 multilib-minimal 5bbdc77877c1aa3c6bd89ca3f9196d11 multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=1ea4211989416f1ab1efb28680716107 +_md5_=5f844a24f1825aa9f08cfd5d0a99043c diff --git a/metadata/md5-cache/sys-apps/file-5.20 b/metadata/md5-cache/sys-apps/file-5.20 new file mode 100644 index 000000000000..79d9e897c981 --- /dev/null +++ b/metadata/md5-cache/sys-apps/file-5.20 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) dev-lang/python-exec:2[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20131008-r21 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) +DESCRIPTION=identify a file's format by scanning binary data for patterns +EAPI=4 +HOMEPAGE=http://www.darwinsys.com/file/ +IUSE=python static-libs zlib python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_python3_4 abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd +LICENSE=BSD-2 +RDEPEND=python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) dev-lang/python-exec:2[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20131008-r21 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) python? ( !dev-python/python-magic ) +SLOT=0 +SRC_URI=ftp://ftp.astron.com/pub/file/file-5.20.tar.gz ftp://ftp.gw.com/mirrors/pub/unix/file/file-5.20.tar.gz +_eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multilib-build 9eb4b5fb858228316d8bb32ada51f6a5 multilib-minimal 5bbdc77877c1aa3c6bd89ca3f9196d11 multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 +_md5_=854745826e77d0177290b84fd440bb84 diff --git a/metadata/md5-cache/sys-apps/help2man-1.45.1 b/metadata/md5-cache/sys-apps/help2man-1.45.1 index 062c4dbd232f..f789683a5ce0 100644 --- a/metadata/md5-cache/sys-apps/help2man-1.45.1 +++ b/metadata/md5-cache/sys-apps/help2man-1.45.1 @@ -4,10 +4,10 @@ DESCRIPTION=GNU utility to convert program --help output to a man page EAPI=4 HOMEPAGE=http://www.gnu.org/software/help2man/ IUSE=nls elibc_glibc -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-3 RDEPEND=dev-lang/perl elibc_glibc? ( nls? ( dev-perl/Locale-gettext ) ) SLOT=0 SRC_URI=mirror://gnu/help2man/help2man-1.45.1.tar.xz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=c203d36e9779abf2b546d14bfe893f19 +_md5_=3a922786d091ea43392af08f819494a7 diff --git a/metadata/md5-cache/sys-apps/help2man-1.46.2 b/metadata/md5-cache/sys-apps/help2man-1.46.4 similarity index 90% rename from metadata/md5-cache/sys-apps/help2man-1.46.2 rename to metadata/md5-cache/sys-apps/help2man-1.46.4 index 839e11229667..d0a654956775 100644 --- a/metadata/md5-cache/sys-apps/help2man-1.46.2 +++ b/metadata/md5-cache/sys-apps/help2man-1.46.4 @@ -8,6 +8,6 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh LICENSE=GPL-3 RDEPEND=dev-lang/perl elibc_glibc? ( nls? ( dev-perl/Locale-gettext ) ) SLOT=0 -SRC_URI=mirror://gnu/help2man/help2man-1.46.2.tar.xz +SRC_URI=mirror://gnu/help2man/help2man-1.46.4.tar.xz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=6dbc737f0c91d5e02966bd51b6d33843 +_md5_=5d8de3f60a8881d33599e84e5555b482 diff --git a/metadata/md5-cache/sys-apps/hwids-20140627 b/metadata/md5-cache/sys-apps/hwids-20140627 deleted file mode 100644 index 39d6df3cb1ee..000000000000 --- a/metadata/md5-cache/sys-apps/hwids-20140627 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install postinst prepare -DEPEND=udev? ( dev-lang/perl >=virtual/udev-206 ) virtual/pkgconfig -DESCRIPTION=Hardware (PCI, USB, OUI, IAB) IDs databases -EAPI=5 -HOMEPAGE=https://github.com/gentoo/hwids -IUSE=+net +pci +udev +usb -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~arm-linux ~x86-linux -LICENSE=|| ( GPL-2 BSD ) public-domain -RDEPEND=!=sys-block/parted-3 sys-apps/util-linux >=kde-base/oxygen-icons-4.4:4[aqua=] linguas_ar? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ar(+)] ) linguas_bg? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_bg(+)] ) linguas_bs? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_bs(+)] ) linguas_ca? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ca(+)] ) linguas_ca@valencia? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ca@valencia(+)] ) linguas_cs? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_cs(+)] ) linguas_da? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_da(+)] ) linguas_de? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_de(+)] ) linguas_el? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_el(+)] ) linguas_en_GB? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_en_GB(+)] ) linguas_es? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_es(+)] ) linguas_et? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_et(+)] ) linguas_fr? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fr(+)] ) linguas_gl? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_gl(+)] ) linguas_it? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_it(+)] ) linguas_lt? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_lt(+)] ) linguas_nb? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nb(+)] ) linguas_nds? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nds(+)] ) linguas_nl? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nl(+)] ) linguas_pa? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pa(+)] ) linguas_pl? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pl(+)] ) linguas_pt? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt(+)] ) linguas_pt_BR? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt_BR(+)] ) linguas_ro? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ro(+)] ) linguas_ru? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ru(+)] ) linguas_sk? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sk(+)] ) linguas_sl? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sl(+)] ) linguas_sr? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sr(+)] ) linguas_sr@ijekavian? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sr@ijekavian(+)] ) linguas_sr@ijekavianlatin? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sr@ijekavianlatin(+)] ) linguas_sr@latin? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sr@latin(+)] ) linguas_sv? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sv(+)] ) linguas_tr? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_tr(+)] ) linguas_uk? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_uk(+)] ) linguas_zh_CN? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_zh_CN(+)] ) linguas_zh_TW? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_zh_TW(+)] ) handbook? ( >=kde-base/kdelibs-4.4:4[aqua=,handbook] ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4[-phonon] >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] SLOT=0 SRC_URI=mirror://kde/stable/partitionmanager/1.1.0/src/partitionmanager-1.1.0.tar.xz _eclasses_=cmake-utils da2974fcb060ec927e93a17c835afa67 eutils 32548a82e42dc26e3312581476d2f20c fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 75e24bac8423c515dd9c5717f08feb83 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 kde4-base 4eedf91460a42478a541aa78b13f9779 kde4-functions 492237eb2823bdc02bc769530501f0ea multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=0a5365308f07ef78850d766aef1a786e +_md5_=a9801f6bb055f6ee66246cde3ebf7583 diff --git a/metadata/md5-cache/sys-cluster/drbd-kernel-8.3.8.1 b/metadata/md5-cache/sys-cluster/drbd-kernel-8.3.8.1 index 980d74a3ef56..10b9a133ea24 100644 --- a/metadata/md5-cache/sys-cluster/drbd-kernel-8.3.8.1 +++ b/metadata/md5-cache/sys-cluster/drbd-kernel-8.3.8.1 @@ -4,10 +4,10 @@ DESCRIPTION=mirror/replicate block-devices across a network-connection EAPI=2 HOMEPAGE=http://www.drbd.org IUSE=kernel_linux -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=GPL-2 RDEPEND=kernel_linux? ( virtual/modutils ) SLOT=0 SRC_URI=http://oss.linbit.com/drbd/8.3/drbd-8.3.8.1.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c linux-info 2b8c53f6065bdee2d757472215a3088f linux-mod 101302d4b7b694ea9622bbffb187d0de multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=f86271fb5b05ed447769ccb89c813115 +_md5_=09a8d5295bef83cade2a5db8fcf9fd65 diff --git a/metadata/md5-cache/sys-devel/make-4.0-r1 b/metadata/md5-cache/sys-devel/make-4.0-r1 index e338481c3c25..695b8ebb630c 100644 --- a/metadata/md5-cache/sys-devel/make-4.0-r1 +++ b/metadata/md5-cache/sys-devel/make-4.0-r1 @@ -4,10 +4,10 @@ DESCRIPTION=Standard tool to compile source trees EAPI=4 HOMEPAGE=http://www.gnu.org/software/make/make.html IUSE=guile nls static -KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-3+ RDEPEND=guile? ( >=dev-scheme/guile-1.8 ) nls? ( virtual/libintl ) SLOT=0 SRC_URI=mirror://gnu//make/make-4.0.tar.bz2 _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=0d80ad88ea2c5e582c56f305311d1cd8 +_md5_=754582e6f181edfe355c168ca9055d22 diff --git a/metadata/md5-cache/sys-fs/btrfs-progs-3.14.2 b/metadata/md5-cache/sys-fs/btrfs-progs-3.14.2 index ef6678cd0df5..9cec820147b6 100644 --- a/metadata/md5-cache/sys-fs/btrfs-progs-3.14.2 +++ b/metadata/md5-cache/sys-fs/btrfs-progs-3.14.2 @@ -3,10 +3,10 @@ DEPEND=dev-libs/lzo:2= sys-libs/zlib:0= sys-fs/e2fsprogs:0= sys-apps/acl app-tex DESCRIPTION=Btrfs filesystem utilities EAPI=5 HOMEPAGE=https://btrfs.wiki.kernel.org -KEYWORDS=~alpha ~amd64 arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha amd64 arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 LICENSE=GPL-2 RDEPEND=dev-libs/lzo:2= sys-libs/zlib:0= sys-fs/e2fsprogs:0= SLOT=0/0 SRC_URI=https://www.kernel.org/pub/linux/kernel/people/mason/btrfs-progs/btrfs-progs-v3.14.2.tar.xz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=2814ee841c3c9b7bf34000a80ddd16ec +_md5_=c5a57a875ffc024d543023863d8616ef diff --git a/metadata/md5-cache/sys-fs/ddrescue-1.18.1 b/metadata/md5-cache/sys-fs/ddrescue-1.18.1 index a0e57a1d305e..d417c936b2b7 100644 --- a/metadata/md5-cache/sys-fs/ddrescue-1.18.1 +++ b/metadata/md5-cache/sys-fs/ddrescue-1.18.1 @@ -4,9 +4,9 @@ DESCRIPTION=Copy data from one file or block device to another with read-error r EAPI=5 HOMEPAGE=http://www.gnu.org/software/ddrescue/ddrescue.html IUSE=static -KEYWORDS=amd64 ~arm ~ia64 ~ppc ~sparc ~x86 ~amd64-linux +KEYWORDS=amd64 ~arm ~ia64 ~ppc ~sparc x86 ~amd64-linux LICENSE=GPL-2 SLOT=0 SRC_URI=mirror://gnu/ddrescue/ddrescue-1.18.1.tar.lz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 unpacker f300a7ca9131b1024a79762e8edd3c52 -_md5_=4d30fbff3370f98b4e063cb00a8c8558 +_md5_=0fbaf6ee0e4fd222df97bc9b57897250 diff --git a/metadata/md5-cache/sys-fs/ext4magic-0.3.2 b/metadata/md5-cache/sys-fs/ext4magic-0.3.2 index 15a87f300bae..3fa6235235f1 100644 --- a/metadata/md5-cache/sys-fs/ext4magic-0.3.2 +++ b/metadata/md5-cache/sys-fs/ext4magic-0.3.2 @@ -4,10 +4,10 @@ DESCRIPTION=Linux admin tool, can help to recover deleted or overwritten files o EAPI=5 HOMEPAGE=http://sourceforge.net/projects/ext4magic/ IUSE=debug expert-mode file-attr -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 RDEPEND=app-arch/bzip2 >=sys-apps/file-5.04 sys-apps/util-linux >=sys-fs/e2fsprogs-1.41.9 sys-libs/zlib SLOT=0 SRC_URI=mirror://sourceforge/ext4magic/ext4magic-0.3.2.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=4167bf118c09838346bdd009ae701378 +_md5_=68446fbde5769663cb04d5f1fda3e160 diff --git a/metadata/md5-cache/sys-fs/lessfs-1.7.0 b/metadata/md5-cache/sys-fs/lessfs-1.7.0 index 994903dc670b..eff6e75ce31f 100644 --- a/metadata/md5-cache/sys-fs/lessfs-1.7.0 +++ b/metadata/md5-cache/sys-fs/lessfs-1.7.0 @@ -4,10 +4,10 @@ DESCRIPTION=A high performance inline data deduplicating filesystem EAPI=5 HOMEPAGE=http://www.lessfs.com IUSE=berkdb crypt debug filelog memtrace lzo snappy -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-3 RDEPEND=berkdb? ( sys-libs/db ) crypt? ( dev-libs/openssl ) lzo? ( dev-libs/lzo ) snappy? ( app-arch/snappy ) >=dev-db/tokyocabinet-1.4.42 app-crypt/mhash >=sys-fs/fuse-2.8.0 SLOT=0 SRC_URI=mirror://sourceforge/lessfs/lessfs/lessfs-1.7.0/lessfs-1.7.0.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf readme.gentoo 106edea5533517715013de909a333abd toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=3461697f07b1fe55364adaed0af28d3c +_md5_=52a050276dcc2ee4054b5845fcfb8ce3 diff --git a/metadata/md5-cache/sys-kernel/aufs-sources-3.12.21-r1 b/metadata/md5-cache/sys-kernel/aufs-sources-3.12.21-r1 index 1b3b517da18a..9f1d18177956 100644 --- a/metadata/md5-cache/sys-kernel/aufs-sources-3.12.21-r1 +++ b/metadata/md5-cache/sys-kernel/aufs-sources-3.12.21-r1 @@ -4,7 +4,7 @@ DESCRIPTION=Full sources including the Gentoo patchset for the 3.12 kernel tree EAPI=5 HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches http://aufs.sourceforge.net/ IUSE=deblob experimental module vanilla symlink build deblob -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=GPL-2 !deblob? ( freedist ) PDEPEND=>=sys-fs/aufs-util-3.9 !build? ( virtual/dev-manager ) RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) @@ -12,4 +12,4 @@ RESTRICT=binchecks strip SLOT=3.12.21-r1 SRC_URI=mirror://kernel/linux/kernel/v3.x/linux-3.12.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.12.N/deblob-3.12 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.12.N/deblob-check -> deblob-check-3.12 ) http://dev.gentoo.org/~jlec/distfiles/aufs-sources-3.12.x_p20140602.tar.xz !vanilla? ( mirror://gentoo/genpatches-3.12-23.base.tar.xz mirror://gentoo/genpatches-3.12-23.extras.tar.xz experimental? ( mirror://gentoo/genpatches-3.12-23.experimental.tar.xz ) ) _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c kernel-2 6fb31411472936acc8287129d3df7f43 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-any-r1 4560effd96d3d2a82e50af7cf87166da python-utils-r1 47dda904cf91c61f45b564d9f834fde1 readme.gentoo 106edea5533517715013de909a333abd toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=3654011b4a100a76020026bd3c76d8fd +_md5_=fcb8d44db75245bc1c183100ae3998a4 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-3.10.53 b/metadata/md5-cache/sys-kernel/gentoo-sources-3.10.53 deleted file mode 100644 index 37227c8d0527..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-3.10.53 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst setup test unpack -DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) deblob? ( || ( >=dev-lang/python-2.7.5-r2:2.7 ) ) -DESCRIPTION=Full sources including the Gentoo patchset for the 3.10 kernel tree -EAPI=5 -HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches -IUSE=deblob experimental symlink build deblob -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -LICENSE=GPL-2 !deblob? ( freedist ) -PDEPEND=!build? ( virtual/dev-manager ) -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=3.10.53 -SRC_URI=mirror://kernel/linux/kernel/v3.x/linux-3.10.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.10.N/deblob-3.10 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.10.N/deblob-check -> deblob-check-3.10 ) mirror://gentoo/genpatches-3.10-61.base.tar.xz mirror://gentoo/genpatches-3.10-61.extras.tar.xz experimental? ( mirror://gentoo/genpatches-3.10-61.experimental.tar.xz ) -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c kernel-2 6fb31411472936acc8287129d3df7f43 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-any-r1 4560effd96d3d2a82e50af7cf87166da python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=430f21358cd8302c1a818616f5fbcdf9 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-3.10.55 b/metadata/md5-cache/sys-kernel/gentoo-sources-3.10.55 deleted file mode 100644 index 72dffb26c215..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-3.10.55 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst setup test unpack -DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) deblob? ( || ( >=dev-lang/python-2.7.5-r2:2.7 ) ) -DESCRIPTION=Full sources including the Gentoo patchset for the 3.10 kernel tree -EAPI=5 -HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches -IUSE=deblob experimental symlink build deblob -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -LICENSE=GPL-2 !deblob? ( freedist ) -PDEPEND=!build? ( virtual/dev-manager ) -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=3.10.55 -SRC_URI=mirror://kernel/linux/kernel/v3.x/linux-3.10.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.10.N/deblob-3.10 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.10.N/deblob-check -> deblob-check-3.10 ) mirror://gentoo/genpatches-3.10-62.base.tar.xz mirror://gentoo/genpatches-3.10-62.extras.tar.xz experimental? ( mirror://gentoo/genpatches-3.10-62.experimental.tar.xz ) -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c kernel-2 6fb31411472936acc8287129d3df7f43 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-any-r1 4560effd96d3d2a82e50af7cf87166da python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=15b4642f108a00989d5cc73bfb23e941 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-3.10.56 b/metadata/md5-cache/sys-kernel/gentoo-sources-3.10.56 deleted file mode 100644 index e88e2ec0b88f..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-3.10.56 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst setup test unpack -DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) deblob? ( || ( >=dev-lang/python-2.7.5-r2:2.7 ) ) -DESCRIPTION=Full sources including the Gentoo patchset for the 3.10 kernel tree -EAPI=5 -HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches -IUSE=deblob experimental symlink build deblob -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -LICENSE=GPL-2 !deblob? ( freedist ) -PDEPEND=!build? ( virtual/dev-manager ) -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=3.10.56 -SRC_URI=mirror://kernel/linux/kernel/v3.x/linux-3.10.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.10.N/deblob-3.10 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.10.N/deblob-check -> deblob-check-3.10 ) mirror://gentoo/genpatches-3.10-63.base.tar.xz mirror://gentoo/genpatches-3.10-63.extras.tar.xz experimental? ( mirror://gentoo/genpatches-3.10-63.experimental.tar.xz ) -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c kernel-2 6fb31411472936acc8287129d3df7f43 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-any-r1 4560effd96d3d2a82e50af7cf87166da python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=ae546c1247ea1621a9e202e91a2c42bb diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-3.12.26 b/metadata/md5-cache/sys-kernel/gentoo-sources-3.12.26 deleted file mode 100644 index ab8823d9eca6..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-3.12.26 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst setup test unpack -DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) deblob? ( || ( >=dev-lang/python-2.7.5-r2:2.7 ) ) -DESCRIPTION=Full sources including the Gentoo patchset for the 3.12 kernel tree -EAPI=5 -HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches -IUSE=deblob experimental symlink build deblob -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -LICENSE=GPL-2 !deblob? ( freedist ) -PDEPEND=!build? ( virtual/dev-manager ) -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=3.12.26 -SRC_URI=mirror://kernel/linux/kernel/v3.x/linux-3.12.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.12.N/deblob-3.12 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.12.N/deblob-check -> deblob-check-3.12 ) mirror://gentoo/genpatches-3.12-29.base.tar.xz mirror://gentoo/genpatches-3.12-29.extras.tar.xz experimental? ( mirror://gentoo/genpatches-3.12-29.experimental.tar.xz ) -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c kernel-2 6fb31411472936acc8287129d3df7f43 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-any-r1 4560effd96d3d2a82e50af7cf87166da python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=bb674bfbe8e2fc1c84e1a6913f21730b diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-3.12.28 b/metadata/md5-cache/sys-kernel/gentoo-sources-3.12.30 similarity index 83% rename from metadata/md5-cache/sys-kernel/gentoo-sources-3.12.28 rename to metadata/md5-cache/sys-kernel/gentoo-sources-3.12.30 index 5098b8bb8949..45be15c0c4fa 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-3.12.28 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-3.12.30 @@ -9,7 +9,7 @@ LICENSE=GPL-2 !deblob? ( freedist ) PDEPEND=!build? ( virtual/dev-manager ) RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) RESTRICT=binchecks strip -SLOT=3.12.28 -SRC_URI=mirror://kernel/linux/kernel/v3.x/linux-3.12.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.12.N/deblob-3.12 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.12.N/deblob-check -> deblob-check-3.12 ) mirror://gentoo/genpatches-3.12-30.base.tar.xz mirror://gentoo/genpatches-3.12-30.extras.tar.xz experimental? ( mirror://gentoo/genpatches-3.12-30.experimental.tar.xz ) +SLOT=3.12.30 +SRC_URI=mirror://kernel/linux/kernel/v3.x/linux-3.12.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.12.N/deblob-3.12 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.12.N/deblob-check -> deblob-check-3.12 ) mirror://gentoo/genpatches-3.12-32.base.tar.xz mirror://gentoo/genpatches-3.12-32.extras.tar.xz experimental? ( mirror://gentoo/genpatches-3.12-32.experimental.tar.xz ) _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c kernel-2 6fb31411472936acc8287129d3df7f43 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-any-r1 4560effd96d3d2a82e50af7cf87166da python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=dc2f11d35a26a823dfcba06d2f5a5fb9 +_md5_=fbf51d020c076ec17ae5a510d6ed1bcc diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-3.14.16 b/metadata/md5-cache/sys-kernel/gentoo-sources-3.14.16 deleted file mode 100644 index 3696f04bd77f..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-3.14.16 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst setup test unpack -DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) deblob? ( || ( >=dev-lang/python-2.7.5-r2:2.7 ) ) -DESCRIPTION=Full sources including the Gentoo patchset for the 3.14 kernel tree -EAPI=5 -HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches -IUSE=deblob experimental symlink build deblob -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 -LICENSE=GPL-2 !deblob? ( freedist ) -PDEPEND=!build? ( virtual/dev-manager ) -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=3.14.16 -SRC_URI=mirror://kernel/linux/kernel/v3.x/linux-3.14.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.14.N/deblob-3.14 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.14.N/deblob-check -> deblob-check-3.14 ) mirror://gentoo/genpatches-3.14-20.base.tar.xz mirror://gentoo/genpatches-3.14-20.extras.tar.xz experimental? ( mirror://gentoo/genpatches-3.14-20.experimental.tar.xz ) -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c kernel-2 6fb31411472936acc8287129d3df7f43 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-any-r1 4560effd96d3d2a82e50af7cf87166da python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=6aa256fc7d58070f334f7f0a3c791368 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-3.14.17 b/metadata/md5-cache/sys-kernel/gentoo-sources-3.14.17 deleted file mode 100644 index 4d476ee735cd..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-3.14.17 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst setup test unpack -DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) deblob? ( || ( >=dev-lang/python-2.7.5-r2:2.7 ) ) -DESCRIPTION=Full sources including the Gentoo patchset for the 3.14 kernel tree -EAPI=5 -HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches -IUSE=deblob experimental symlink build deblob -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -LICENSE=GPL-2 !deblob? ( freedist ) -PDEPEND=!build? ( virtual/dev-manager ) -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=3.14.17 -SRC_URI=mirror://kernel/linux/kernel/v3.x/linux-3.14.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.14.N/deblob-3.14 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.14.N/deblob-check -> deblob-check-3.14 ) mirror://gentoo/genpatches-3.14-21.base.tar.xz mirror://gentoo/genpatches-3.14-21.extras.tar.xz experimental? ( mirror://gentoo/genpatches-3.14-21.experimental.tar.xz ) -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c kernel-2 6fb31411472936acc8287129d3df7f43 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-any-r1 4560effd96d3d2a82e50af7cf87166da python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=cbeb90b4ea6d136dad90d60e1343b5b5 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-3.14.18 b/metadata/md5-cache/sys-kernel/gentoo-sources-3.14.18 deleted file mode 100644 index d120dafc095d..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-3.14.18 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst setup test unpack -DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) deblob? ( || ( >=dev-lang/python-2.7.5-r2:2.7 ) ) -DESCRIPTION=Full sources including the Gentoo patchset for the 3.14 kernel tree -EAPI=5 -HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches -IUSE=deblob experimental symlink build deblob -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -LICENSE=GPL-2 !deblob? ( freedist ) -PDEPEND=!build? ( virtual/dev-manager ) -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=3.14.18 -SRC_URI=mirror://kernel/linux/kernel/v3.x/linux-3.14.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.14.N/deblob-3.14 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.14.N/deblob-check -> deblob-check-3.14 ) mirror://gentoo/genpatches-3.14-22.base.tar.xz mirror://gentoo/genpatches-3.14-22.extras.tar.xz experimental? ( mirror://gentoo/genpatches-3.14-22.experimental.tar.xz ) -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c kernel-2 6fb31411472936acc8287129d3df7f43 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-any-r1 4560effd96d3d2a82e50af7cf87166da python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=9fc0209ac5c91768c3adf82d79f86d5d diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-3.14.19 b/metadata/md5-cache/sys-kernel/gentoo-sources-3.14.19 deleted file mode 100644 index 97b49b57a220..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-3.14.19 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst setup test unpack -DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) deblob? ( || ( >=dev-lang/python-2.7.5-r2:2.7 ) ) -DESCRIPTION=Full sources including the Gentoo patchset for the 3.14 kernel tree -EAPI=5 -HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches -IUSE=deblob experimental symlink build deblob -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -LICENSE=GPL-2 !deblob? ( freedist ) -PDEPEND=!build? ( virtual/dev-manager ) -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=3.14.19 -SRC_URI=mirror://kernel/linux/kernel/v3.x/linux-3.14.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.14.N/deblob-3.14 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.14.N/deblob-check -> deblob-check-3.14 ) mirror://gentoo/genpatches-3.14-23.base.tar.xz mirror://gentoo/genpatches-3.14-23.extras.tar.xz experimental? ( mirror://gentoo/genpatches-3.14-23.experimental.tar.xz ) -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c kernel-2 6fb31411472936acc8287129d3df7f43 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-any-r1 4560effd96d3d2a82e50af7cf87166da python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=4540138f1ff69f04e1b756a80994d876 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-3.15.10 b/metadata/md5-cache/sys-kernel/gentoo-sources-3.15.10 deleted file mode 100644 index 8b48cb937c76..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-3.15.10 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst setup test unpack -DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) deblob? ( || ( >=dev-lang/python-2.7.5-r2:2.7 ) ) -DESCRIPTION=Full sources including the Gentoo patchset for the 3.15 kernel tree -EAPI=5 -HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches -IUSE=deblob experimental symlink build deblob -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -LICENSE=GPL-2 !deblob? ( freedist ) -PDEPEND=!build? ( virtual/dev-manager ) -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=3.15.10 -SRC_URI=mirror://kernel/linux/kernel/v3.x/linux-3.15.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.15.N/deblob-3.15 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.15.N/deblob-check -> deblob-check-3.15 ) mirror://gentoo/genpatches-3.15-12.base.tar.xz mirror://gentoo/genpatches-3.15-12.extras.tar.xz experimental? ( mirror://gentoo/genpatches-3.15-12.experimental.tar.xz ) -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c kernel-2 6fb31411472936acc8287129d3df7f43 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-any-r1 4560effd96d3d2a82e50af7cf87166da python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=e57224fa54530952c20c61c04f76ef6d diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-3.16.1 b/metadata/md5-cache/sys-kernel/gentoo-sources-3.16.1 deleted file mode 100644 index 36f68d93ac4c..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-3.16.1 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst setup test unpack -DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) deblob? ( || ( >=dev-lang/python-2.7.5-r2:2.7 ) ) -DESCRIPTION=Full sources including the Gentoo patchset for the 3.16 kernel tree -EAPI=5 -HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches -IUSE=deblob experimental symlink build deblob -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -LICENSE=GPL-2 !deblob? ( freedist ) -PDEPEND=!build? ( virtual/dev-manager ) -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=3.16.1 -SRC_URI=mirror://kernel/linux/kernel/v3.x/linux-3.16.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.16.N/deblob-3.16 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.16.N/deblob-check -> deblob-check-3.16 ) mirror://gentoo/genpatches-3.16-2.base.tar.xz mirror://gentoo/genpatches-3.16-2.extras.tar.xz experimental? ( mirror://gentoo/genpatches-3.16-2.experimental.tar.xz ) -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c kernel-2 6fb31411472936acc8287129d3df7f43 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-any-r1 4560effd96d3d2a82e50af7cf87166da python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=0f3de56a85d3b79ef1e4d987b3ffc05e diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-3.16.2 b/metadata/md5-cache/sys-kernel/gentoo-sources-3.16.2 deleted file mode 100644 index e128db34292e..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-3.16.2 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst setup test unpack -DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) deblob? ( || ( >=dev-lang/python-2.7.5-r2:2.7 ) ) -DESCRIPTION=Full sources including the Gentoo patchset for the 3.16 kernel tree -EAPI=5 -HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches -IUSE=deblob experimental symlink build deblob -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -LICENSE=GPL-2 !deblob? ( freedist ) -PDEPEND=!build? ( virtual/dev-manager ) -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=3.16.2 -SRC_URI=mirror://kernel/linux/kernel/v3.x/linux-3.16.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.16.N/deblob-3.16 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.16.N/deblob-check -> deblob-check-3.16 ) mirror://gentoo/genpatches-3.16-3.base.tar.xz mirror://gentoo/genpatches-3.16-3.extras.tar.xz experimental? ( mirror://gentoo/genpatches-3.16-3.experimental.tar.xz ) -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c kernel-2 6fb31411472936acc8287129d3df7f43 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-any-r1 4560effd96d3d2a82e50af7cf87166da python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=fd31d47f7f81948bb65fea20cab296b2 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-3.16.3 b/metadata/md5-cache/sys-kernel/gentoo-sources-3.16.3 deleted file mode 100644 index fd67116707ce..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-3.16.3 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst setup test unpack -DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) deblob? ( || ( >=dev-lang/python-2.7.5-r2:2.7 ) ) -DESCRIPTION=Full sources including the Gentoo patchset for the 3.16 kernel tree -EAPI=5 -HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches -IUSE=deblob experimental symlink build deblob -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -LICENSE=GPL-2 !deblob? ( freedist ) -PDEPEND=!build? ( virtual/dev-manager ) -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=3.16.3 -SRC_URI=mirror://kernel/linux/kernel/v3.x/linux-3.16.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.16.N/deblob-3.16 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.16.N/deblob-check -> deblob-check-3.16 ) mirror://gentoo/genpatches-3.16-4.base.tar.xz mirror://gentoo/genpatches-3.16-4.extras.tar.xz experimental? ( mirror://gentoo/genpatches-3.16-4.experimental.tar.xz ) -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c kernel-2 6fb31411472936acc8287129d3df7f43 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-any-r1 4560effd96d3d2a82e50af7cf87166da python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=c3cbde5cea6210a01198020d979d8189 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-3.4.103 b/metadata/md5-cache/sys-kernel/gentoo-sources-3.4.103 deleted file mode 100644 index 89532b00adea..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-3.4.103 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst setup test unpack -DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) deblob? ( || ( >=dev-lang/python-2.7.5-r2:2.7 ) ) -DESCRIPTION=Full sources including the Gentoo patchset for the 3.4 kernel tree -EAPI=5 -HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches -IUSE=deblob symlink build deblob -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -LICENSE=GPL-2 !deblob? ( freedist ) -PDEPEND=!build? ( virtual/dev-manager ) -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=3.4.103 -SRC_URI=mirror://kernel/linux/kernel/v3.x/linux-3.4.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.4.N/deblob-3.4 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.4.N/deblob-check -> deblob-check-3.4 ) mirror://gentoo/genpatches-3.4-86.base.tar.xz mirror://gentoo/genpatches-3.4-86.extras.tar.xz -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c kernel-2 6fb31411472936acc8287129d3df7f43 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-any-r1 4560effd96d3d2a82e50af7cf87166da python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=e67f7a0ab19ba8e7f277abb9da95fd8c diff --git a/metadata/md5-cache/sys-kernel/linux-firmware-20140603 b/metadata/md5-cache/sys-kernel/linux-firmware-20140603 index 919e626e0369..06a2d4e0d457 100644 --- a/metadata/md5-cache/sys-kernel/linux-firmware-20140603 +++ b/metadata/md5-cache/sys-kernel/linux-firmware-20140603 @@ -3,10 +3,10 @@ DESCRIPTION=Linux firmware files EAPI=5 HOMEPAGE=http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git IUSE=savedconfig savedconfig -KEYWORDS=~alpha ~amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 LICENSE=GPL-1 GPL-2 GPL-3 BSD freedist RDEPEND=!savedconfig? ( !sys-firmware/alsa-firmware[alsa_cards_ca0132] !sys-firmware/alsa-firmware[alsa_cards_korg1212] !sys-firmware/alsa-firmware[alsa_cards_maestro3] !sys-firmware/alsa-firmware[alsa_cards_sb16] !sys-firmware/alsa-firmware[alsa_cards_ymfpci] !media-tv/cx18-firmware !=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) RESTRICT=binchecks strip -SLOT=3.10.56 -SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.10.56.xz mirror://kernel/linux/kernel/v3.x/linux-3.10.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.10.N/deblob-3.10 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.10.N/deblob-check -> deblob-check-3.10 ) +SLOT=3.10.57 +SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.10.57.xz mirror://kernel/linux/kernel/v3.x/linux-3.10.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.10.N/deblob-3.10 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.10.N/deblob-check -> deblob-check-3.10 ) _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c kernel-2 6fb31411472936acc8287129d3df7f43 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-any-r1 4560effd96d3d2a82e50af7cf87166da python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=c6d68054f6ab636c8627d08204221692 +_md5_=00b38d8e42d86a250e1ddd4a105af6b1 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-3.14.20 b/metadata/md5-cache/sys-kernel/vanilla-sources-3.14.21 similarity index 90% rename from metadata/md5-cache/sys-kernel/vanilla-sources-3.14.20 rename to metadata/md5-cache/sys-kernel/vanilla-sources-3.14.21 index 309f2b7bbccb..0b5fc5476a4e 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-3.14.20 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-3.14.21 @@ -9,7 +9,7 @@ LICENSE=GPL-2 !deblob? ( freedist ) PDEPEND=!build? ( virtual/dev-manager ) RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) RESTRICT=binchecks strip -SLOT=3.14.20 -SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.14.20.xz mirror://kernel/linux/kernel/v3.x/linux-3.14.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.14.N/deblob-3.14 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.14.N/deblob-check -> deblob-check-3.14 ) +SLOT=3.14.21 +SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.14.21.xz mirror://kernel/linux/kernel/v3.x/linux-3.14.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.14.N/deblob-3.14 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.14.N/deblob-check -> deblob-check-3.14 ) _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c kernel-2 6fb31411472936acc8287129d3df7f43 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-any-r1 4560effd96d3d2a82e50af7cf87166da python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=95cfaf562dc14587f4b5a5508431ee97 +_md5_=88c44d239f46bd47cd183f5139b628ed diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-3.16.4 b/metadata/md5-cache/sys-kernel/vanilla-sources-3.16.5 similarity index 91% rename from metadata/md5-cache/sys-kernel/vanilla-sources-3.16.4 rename to metadata/md5-cache/sys-kernel/vanilla-sources-3.16.5 index 506a235a596e..f74fb01af85f 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-3.16.4 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-3.16.5 @@ -9,7 +9,7 @@ LICENSE=GPL-2 !deblob? ( freedist ) PDEPEND=!build? ( virtual/dev-manager ) RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) RESTRICT=binchecks strip -SLOT=3.16.4 -SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.16.4.xz mirror://kernel/linux/kernel/v3.x/linux-3.16.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.16.N/deblob-3.16 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.16.N/deblob-check -> deblob-check-3.16 ) +SLOT=3.16.5 +SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.16.5.xz mirror://kernel/linux/kernel/v3.x/linux-3.16.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.16.N/deblob-3.16 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.16.N/deblob-check -> deblob-check-3.16 ) _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c kernel-2 6fb31411472936acc8287129d3df7f43 multilib 3bf24e6abb9b76d9f6c20600f0b716bf python-any-r1 4560effd96d3d2a82e50af7cf87166da python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=178c5b700f4cfa78803fb55a489d7689 +_md5_=c54f7a17c79e64c6b4b32f61d65fbed6 diff --git a/metadata/md5-cache/sys-process/at-3.1.14 b/metadata/md5-cache/sys-process/at-3.1.14 index 58c8d5b94539..44ae2e755288 100644 --- a/metadata/md5-cache/sys-process/at-3.1.14 +++ b/metadata/md5-cache/sys-process/at-3.1.14 @@ -4,10 +4,10 @@ DESCRIPTION=Queues jobs for later execution EAPI=5 HOMEPAGE=http://packages.qa.debian.org/a/at.html IUSE=pam selinux -KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 LICENSE=GPL-2 RDEPEND=virtual/mta virtual/logger selinux? ( sec-policy/selinux-at ) SLOT=0 SRC_URI=mirror://debian/pool/main/a/at/at_3.1.14.orig.tar.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 pam aa1ebb3ab720ea04dbbdd6eaaf9554ed systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 -_md5_=12eff9baef6308b336afa153626c984b +_md5_=353d4f823878fd186cb2d99ab593401a diff --git a/metadata/md5-cache/sys-process/glances-2.1.1 b/metadata/md5-cache/sys-process/glances-2.1.1 new file mode 100644 index 000000000000..9c2f6f75882f --- /dev/null +++ b/metadata/md5-cache/sys-process/glances-2.1.1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst prepare setup test +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[ncurses] ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3[ncurses] ) python_targets_python3_4? ( dev-lang/python:3.4[ncurses] ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] +DESCRIPTION=CLI curses based monitoring tool +EAPI=5 +HOMEPAGE=https://github.com/nicolargo/glances +IUSE=chart doc hddtemp snmp web python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 +KEYWORDS=~amd64 ~arm ~x86 ~amd64-linux ~x86-linux +LICENSE=LGPL-3 +RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] >=dev-python/psutil-2.0.0[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] hddtemp? ( app-admin/hddtemp ) snmp? ( dev-python/pysnmp[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) web? ( dev-python/bottle[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) chart? ( dev-python/matplotlib[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[ncurses] ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3[ncurses] ) python_targets_python3_4? ( dev-lang/python:3.4[ncurses] ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_python3_4(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_python3_4 ) +SLOT=0 +SRC_URI=mirror://pypi/G/Glances/Glances-2.1.1.tar.gz +_eclasses_=distutils-r1 90e7008a7d21e3b1597bea444bb85827 eutils 32548a82e42dc26e3312581476d2f20c linux-info 2b8c53f6065bdee2d757472215a3088f multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-r1 75e5c82b55dcb208a0a8f4ab8847e731 python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f +_md5_=db994b9fd2509628ea1ece94f9184bcd diff --git a/metadata/md5-cache/virtual/perl-Text-Tabs+Wrap-2012.81.800-r1 b/metadata/md5-cache/virtual/perl-Text-Tabs+Wrap-2012.81.800-r1 deleted file mode 100644 index afa0be9efcb6..000000000000 --- a/metadata/md5-cache/virtual/perl-Text-Tabs+Wrap-2012.81.800-r1 +++ /dev/null @@ -1,7 +0,0 @@ -DEFINED_PHASES=- -DESCRIPTION=Virtual for Text::Tabs and Text::Wrap, also distributed as Text::Tabs+Wrap -EAPI=5 -KEYWORDS=alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd -RDEPEND=|| ( =dev-lang/perl-5.18* ~perl-core/Text-Tabs+Wrap-2012.81.800 ) !perl-core/Text-Tabs+Wrap-2012.81.800-r999 -SLOT=0 -_md5_=f42152671575687b16e468da0c4349f3 diff --git a/metadata/md5-cache/virtual/perl-Text-Tabs+Wrap-2013.52.300-r1 b/metadata/md5-cache/virtual/perl-Text-Tabs+Wrap-2013.52.300-r1 index 49d1b8d255ba..f566d218de02 100644 --- a/metadata/md5-cache/virtual/perl-Text-Tabs+Wrap-2013.52.300-r1 +++ b/metadata/md5-cache/virtual/perl-Text-Tabs+Wrap-2013.52.300-r1 @@ -1,7 +1,7 @@ DEFINED_PHASES=- DESCRIPTION=Virtual for Text::Tabs and Text::Wrap, also distributed as Text::Tabs+Wrap EAPI=5 -KEYWORDS=~alpha ~amd64 hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd +KEYWORDS=alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd RDEPEND=|| ( =dev-lang/perl-5.20* ~perl-core/Text-Tabs+Wrap-2013.52.300 ) !perl-core/Text-Tabs+Wrap-2013.52.300-r999 SLOT=0 -_md5_=652d306dfa21b99a518740b6cecc6488 +_md5_=ea8e25ae10e8b195145e6f66d75ef151 diff --git a/metadata/md5-cache/virtual/ruby-rdoc-2 b/metadata/md5-cache/virtual/ruby-rdoc-2 deleted file mode 100644 index fbcda03f688b..000000000000 --- a/metadata/md5-cache/virtual/ruby-rdoc-2 +++ /dev/null @@ -1,10 +0,0 @@ -DEFINED_PHASES=compile configure install postinst preinst prepare setup test unpack -DEPEND=ruby_targets_jruby? ( dev-java/jruby ) -DESCRIPTION=Virtual ebuild for bundled and unbundled RDoc -EAPI=2 -IUSE=elibc_FreeBSD ruby_targets_jruby -KEYWORDS=amd64 x86 -RDEPEND=|| ( dev-ruby/rdoc[ruby_targets_jruby] dev-java/jruby ) ruby_targets_jruby? ( dev-java/jruby ) -SLOT=jruby -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=0d67446b7cd4f397268c41c82fe85466 diff --git a/metadata/md5-cache/virtual/ruby-ssl-2 b/metadata/md5-cache/virtual/ruby-ssl-2 deleted file mode 100644 index 658d0a87d6ab..000000000000 --- a/metadata/md5-cache/virtual/ruby-ssl-2 +++ /dev/null @@ -1,10 +0,0 @@ -DEFINED_PHASES=compile configure install postinst preinst prepare setup test unpack -DEPEND=ruby_targets_jruby? ( dev-java/jruby ) -DESCRIPTION=Virtual ebuild for the Ruby OpenSSL bindings -EAPI=2 -IUSE=elibc_FreeBSD ruby_targets_jruby -KEYWORDS=amd64 x86 -RDEPEND=dev-ruby/jruby-openssl ruby_targets_jruby? ( dev-java/jruby ) -SLOT=jruby -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=cf3246df6e0be06ad4f14347a3757a3d diff --git a/metadata/md5-cache/virtual/ruby-threads-2 b/metadata/md5-cache/virtual/ruby-threads-2 deleted file mode 100644 index d9bb3fe8bbd1..000000000000 --- a/metadata/md5-cache/virtual/ruby-threads-2 +++ /dev/null @@ -1,10 +0,0 @@ -DEFINED_PHASES=compile configure install postinst preinst prepare setup test unpack -DEPEND=ruby_targets_jruby? ( dev-java/jruby ) -DESCRIPTION=Virtual ebuild for a ruby interpreter with threading enabled -EAPI=2 -IUSE=elibc_FreeBSD ruby_targets_jruby -KEYWORDS=amd64 x86 -RDEPEND=dev-java/jruby ruby_targets_jruby? ( dev-java/jruby ) -SLOT=jruby -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=9635d7521095c1db723cb4d95f386d4d diff --git a/metadata/md5-cache/virtual/rubygems-2 b/metadata/md5-cache/virtual/rubygems-2 deleted file mode 100644 index 1f30483dda2e..000000000000 --- a/metadata/md5-cache/virtual/rubygems-2 +++ /dev/null @@ -1,10 +0,0 @@ -DEFINED_PHASES=compile configure install postinst preinst prepare setup test unpack -DEPEND=ruby_targets_jruby? ( dev-java/jruby ) -DESCRIPTION=Virtual ebuild for rubygems -EAPI=2 -IUSE=elibc_FreeBSD ruby_targets_jruby -KEYWORDS=amd64 x86 -RDEPEND=dev-ruby/rubygems[ruby_targets_jruby] ruby_targets_jruby? ( dev-java/jruby ) -SLOT=jruby -_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c java-utils-2 f02d3e4777b404c719a5a6479c37c6e3 multilib 3bf24e6abb9b76d9f6c20600f0b716bf ruby-ng 14f0490e24cbad7c17cece628b3d111e toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f -_md5_=9d3d6cea1bcef5b56e805ba2add971e7 diff --git a/metadata/md5-cache/www-misc/fcgiwrap-1.1.0-r1 b/metadata/md5-cache/www-misc/fcgiwrap-1.1.0-r1 index eba6edcd620b..76fea3b5c035 100644 --- a/metadata/md5-cache/www-misc/fcgiwrap-1.1.0-r1 +++ b/metadata/md5-cache/www-misc/fcgiwrap-1.1.0-r1 @@ -4,10 +4,10 @@ DESCRIPTION=Simple FastCGI wrapper for CGI scripts (CGI support for nginx) EAPI=5 HOMEPAGE=http://nginx.localdomain.pl/wiki/FcgiWrap IUSE=systemd -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=BSD RDEPEND=dev-libs/fcgi SLOT=0 SRC_URI=https://github.com/gnosek/fcgiwrap/archive/1.1.0.tar.gz -> fcgiwrap-1.1.0.tar.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=e420e3b3ed3e221ab7fab2d20048cb8f +_md5_=1093c5b3c88f700c7a0130f10297d787 diff --git a/metadata/md5-cache/www-servers/hiawatha-9.8 b/metadata/md5-cache/www-servers/hiawatha-9.8 new file mode 100644 index 000000000000..82c86617e8ab --- /dev/null +++ b/metadata/md5-cache/www-servers/hiawatha-9.8 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=>=net-libs/polarssl-1.3[threads] xslt? ( dev-libs/libxslt dev-libs/libxml2 ) sys-devel/make >=dev-util/cmake-2.8.4 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) virtual/pkgconfig +DESCRIPTION=Advanced and secure webserver +EAPI=5 +HOMEPAGE=http://www.hiawatha-webserver.org +IUSE=debug +cache ipv6 monitor +rewrite tomahawk +xslt +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +PDEPEND=monitor? ( www-apps/hiawatha-monitor ) +RDEPEND=>=net-libs/polarssl-1.3[threads] xslt? ( dev-libs/libxslt dev-libs/libxml2 ) +SLOT=0 +SRC_URI=http://www.hiawatha-webserver.org/files/hiawatha-9.8.tar.gz +_eclasses_=cmake-utils da2974fcb060ec927e93a17c835afa67 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 multilib 3bf24e6abb9b76d9f6c20600f0b716bf systemd 090342761f573a8280dd5aa6b0345f3b toolchain-funcs 0f1760274637a138b99bb649202ea402 user f54e098dd38ba1c0847a13e685b87747 +_md5_=0d3f187ae160115551db03895133aea6 diff --git a/metadata/md5-cache/x11-libs/libkscreen-1.0.2 b/metadata/md5-cache/x11-libs/libkscreen-1.0.2 deleted file mode 100644 index 36ba69e20e1e..000000000000 --- a/metadata/md5-cache/x11-libs/libkscreen-1.0.2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=dev-libs/qjson-0.8 x11-libs/libX11 x11-libs/libxcb x11-libs/libXrandr test? ( dev-qt/qttest:4 ) >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4[-phonon] >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] -DESCRIPTION=KDE screen management library -EAPI=5 -HOMEPAGE=https://projects.kde.org/projects/extragear/libs/libkscreen -IUSE=debug test aqua -KEYWORDS=amd64 x86 -LICENSE=GPL-2 -RDEPEND=>=dev-libs/qjson-0.8 x11-libs/libX11 x11-libs/libxcb x11-libs/libXrandr >=kde-base/oxygen-icons-4.4:4[aqua=] dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4[-phonon] >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] -RESTRICT=test -SLOT=4 -SRC_URI=mirror://kde/stable/libkscreen/1.0.2/src/libkscreen-1.0.2.tar.xz -_eclasses_=cmake-utils da2974fcb060ec927e93a17c835afa67 eutils 32548a82e42dc26e3312581476d2f20c fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 75e24bac8423c515dd9c5717f08feb83 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 kde4-base 4eedf91460a42478a541aa78b13f9779 kde4-functions 492237eb2823bdc02bc769530501f0ea multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=b07f11e2fab14d80db55d824d409c5e2 diff --git a/metadata/md5-cache/x11-libs/libkscreen-1.0.4 b/metadata/md5-cache/x11-libs/libkscreen-1.0.4 deleted file mode 100644 index 4348ebe83d9f..000000000000 --- a/metadata/md5-cache/x11-libs/libkscreen-1.0.4 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=dev-libs/qjson-0.8 x11-libs/libX11 x11-libs/libxcb x11-libs/libXrandr test? ( dev-qt/qttest:4 ) >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) sys-devel/make >=dev-util/cmake-2.8.12 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4[-phonon] >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] -DESCRIPTION=KDE screen management library -EAPI=5 -HOMEPAGE=https://projects.kde.org/projects/extragear/libs/libkscreen -IUSE=debug test aqua -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=>=dev-libs/qjson-0.8 x11-libs/libX11 x11-libs/libxcb x11-libs/libXrandr >=kde-base/oxygen-icons-4.4:4[aqua=] dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4[-phonon] >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] -SLOT=4 -SRC_URI=mirror://kde/stable/libkscreen/1.0.4/src/libkscreen-1.0.4.tar.xz -_eclasses_=cmake-utils da2974fcb060ec927e93a17c835afa67 eutils 32548a82e42dc26e3312581476d2f20c fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 75e24bac8423c515dd9c5717f08feb83 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 kde4-base 4eedf91460a42478a541aa78b13f9779 kde4-functions 492237eb2823bdc02bc769530501f0ea multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=3677cf01f21a26edb1482e1d59aad657 diff --git a/metadata/md5-cache/x11-libs/libkscreen-1.0.5 b/metadata/md5-cache/x11-libs/libkscreen-1.0.5 index c728497c47b5..232f304fce81 100644 --- a/metadata/md5-cache/x11-libs/libkscreen-1.0.5 +++ b/metadata/md5-cache/x11-libs/libkscreen-1.0.5 @@ -4,10 +4,10 @@ DESCRIPTION=KDE screen management library EAPI=5 HOMEPAGE=https://projects.kde.org/projects/extragear/libs/libkscreen IUSE=debug test aqua -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 RDEPEND=>=dev-libs/qjson-0.8 x11-libs/libX11 x11-libs/libxcb x11-libs/libXrandr >=kde-base/oxygen-icons-4.4:4[aqua=] dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4[-phonon] >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=dev-qt/qtwebkit-4.8.5:4 >=kde-base/kdelibs-4.4:4[aqua=] SLOT=4 SRC_URI=mirror://kde/stable/libkscreen/1.0.5/src/libkscreen-1.0.5.tar.xz _eclasses_=cmake-utils da2974fcb060ec927e93a17c835afa67 eutils 32548a82e42dc26e3312581476d2f20c fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 75e24bac8423c515dd9c5717f08feb83 gnome2-utils f658eba3cc594a21cf6eef4af47daa90 kde4-base 4eedf91460a42478a541aa78b13f9779 kde4-functions 492237eb2823bdc02bc769530501f0ea multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 versionator cd0bcdb170807e4a1984115e9d53a26f virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=8268058266938202d2bf3eb98cfbdbbe +_md5_=1b6842f5f39e1ba31e9600bb922187ce diff --git a/metadata/md5-cache/x11-libs/tslib-1.0-r3 b/metadata/md5-cache/x11-libs/tslib-1.0-r3 index d701bb266465..598e02ec1cc8 100644 --- a/metadata/md5-cache/x11-libs/tslib-1.0-r3 +++ b/metadata/md5-cache/x11-libs/tslib-1.0-r3 @@ -4,9 +4,9 @@ DESCRIPTION=Touchscreen Access Library EAPI=5 HOMEPAGE=http://tslib.berlios.de/ IUSE=abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +KEYWORDS=~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 LICENSE=LGPL-2 SLOT=0 SRC_URI=mirror://berlios/tslib/tslib-1.0.tar.bz2 mirror://gentoo/tslib-1.0-patches-5.tar.bz2 _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multibuild 46527a4656956da3d58acff72c9b59b1 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multilib-build 9eb4b5fb858228316d8bb32ada51f6a5 multilib-minimal 5bbdc77877c1aa3c6bd89ca3f9196d11 multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=27fe7a88e2036b177f7016ba59a10047 +_md5_=b5fc87b3c08b3d84b329dbdad39297bf diff --git a/metadata/md5-cache/x11-misc/imake-1.0.7 b/metadata/md5-cache/x11-misc/imake-1.0.7 index 7ac2cd72e737..2200398674b3 100644 --- a/metadata/md5-cache/x11-misc/imake-1.0.7 +++ b/metadata/md5-cache/x11-misc/imake-1.0.7 @@ -3,10 +3,10 @@ DEPEND=x11-misc/xorg-cf-files x11-proto/xproto !=media-libs/libpng-1.2:0 x11-libs/libX11 x11-libs/libXi x11-libs/libXtst x11-proto/inputproto x11-proto/xextproto x11-proto/xproto +DESCRIPTION=Control X from command line and find things on screen +EAPI=5 +HOMEPAGE=http://hoopajoo.net/projects/xautomation.html +KEYWORDS=~amd64 ~arm ~ppc ~x86 +LICENSE=GPL-2 +RDEPEND=>=media-libs/libpng-1.2:0 x11-libs/libX11 x11-libs/libXi x11-libs/libXtst +SLOT=0 +SRC_URI=http://hoopajoo.net/static/projects/xautomation-1.09.tar.gz +_md5_=2853caddc6b0d0a7733989c97e49c6a0 diff --git a/metadata/md5-cache/x11-misc/xnee-3.17 b/metadata/md5-cache/x11-misc/xnee-3.17 deleted file mode 100644 index 9036afd0c7ae..000000000000 --- a/metadata/md5-cache/x11-misc/xnee-3.17 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=configure install prepare test -DEPEND=x11-libs/libX11 x11-libs/libXau x11-libs/libXdmcp x11-libs/libXext x11-libs/libXi x11-libs/libXtst x11-libs/libxcb gnome? ( x11-libs/gtk+:2 >=gnome-base/libgnomeui-2 >=gnome-base/gconf-2 ) x11-proto/inputproto virtual/pkgconfig sys-devel/gettext gnome? ( || ( media-gfx/imagemagick[jpeg,png] media-gfx/graphicsmagick[imagemagick,jpeg,png] ) ) !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) >=sys-devel/autoconf-2.69 sys-devel/libtool -DESCRIPTION=Program suite to record, replay and distribute user actions -EAPI=5 -HOMEPAGE=http://www.sandklef.com/xnee/ -IUSE=gnome static-libs xosd -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=x11-libs/libX11 x11-libs/libXau x11-libs/libXdmcp x11-libs/libXext x11-libs/libXi x11-libs/libXtst x11-libs/libxcb gnome? ( x11-libs/gtk+:2 >=gnome-base/libgnomeui-2 >=gnome-base/gconf-2 ) -RESTRICT=test -SLOT=0 -SRC_URI=mirror://gnu/xnee/xnee-3.17.tar.gz -_eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=c3caf186fb634efb874344c8c458bf56 diff --git a/metadata/md5-cache/x11-misc/xnee-3.18 b/metadata/md5-cache/x11-misc/xnee-3.18 deleted file mode 100644 index 55caf8973203..000000000000 --- a/metadata/md5-cache/x11-misc/xnee-3.18 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=configure install prepare test -DEPEND=x11-libs/libX11 x11-libs/libXau x11-libs/libXdmcp x11-libs/libXext x11-libs/libXi x11-libs/libXtst x11-libs/libxcb gnome? ( x11-libs/gtk+:2 >=gnome-base/libgnomeui-2 >=gnome-base/gconf-2 ) x11-proto/inputproto virtual/pkgconfig sys-devel/gettext gnome? ( || ( media-gfx/imagemagick[jpeg,png] media-gfx/graphicsmagick[imagemagick,jpeg,png] ) ) !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) >=sys-devel/autoconf-2.69 sys-devel/libtool -DESCRIPTION=Program suite to record, replay and distribute user actions -EAPI=5 -HOMEPAGE=http://www.sandklef.com/xnee/ -IUSE=gnome static-libs xosd -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=x11-libs/libX11 x11-libs/libXau x11-libs/libXdmcp x11-libs/libXext x11-libs/libXi x11-libs/libXtst x11-libs/libxcb gnome? ( x11-libs/gtk+:2 >=gnome-base/libgnomeui-2 >=gnome-base/gconf-2 ) -RESTRICT=test -SLOT=0 -SRC_URI=mirror://gnu/xnee/xnee-3.18.tar.gz -_eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=cd039276568f648e1700e1dc87d1d1be diff --git a/metadata/md5-cache/x11-misc/xnee-3.19 b/metadata/md5-cache/x11-misc/xnee-3.19 index 9bb48a5cc726..ad2778714628 100644 --- a/metadata/md5-cache/x11-misc/xnee-3.19 +++ b/metadata/md5-cache/x11-misc/xnee-3.19 @@ -4,11 +4,11 @@ DESCRIPTION=Program suite to record, replay and distribute user actions EAPI=5 HOMEPAGE=http://www.sandklef.com/xnee/ IUSE=gnome static-libs xosd -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=GPL-3 RDEPEND=x11-libs/libX11 x11-libs/libXau x11-libs/libXdmcp x11-libs/libXext x11-libs/libXi x11-libs/libXtst x11-libs/libxcb gnome? ( x11-libs/gtk+:2 >=gnome-base/libgnomeui-2 >=gnome-base/gconf-2 ) RESTRICT=test SLOT=0 SRC_URI=mirror://gnu/xnee/xnee-3.19.tar.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=f62e15bdaf350dab4fbf530a62a6c05f +_md5_=04dd109f8763bc4f88edb81e22c938fc diff --git a/metadata/md5-cache/x11-plugins/wmacpi-2.2 b/metadata/md5-cache/x11-plugins/wmacpi-2.2 new file mode 100644 index 000000000000..1c8401e91caf --- /dev/null +++ b/metadata/md5-cache/x11-plugins/wmacpi-2.2 @@ -0,0 +1,11 @@ +DEFINED_PHASES=compile install prepare +DEPEND=x11-libs/libdockapp x11-libs/libX11 +DESCRIPTION=DockApp ACPI status monitor for laptops +EAPI=5 +HOMEPAGE=http://windowmaker.org/dockapps/?name=wmacpi +KEYWORDS=~amd64 -ppc -sparc ~x86 +LICENSE=GPL-2 +SLOT=0 +SRC_URI=http://windowmaker.org/dockapps/?download=wmacpi-2.2.tar.gz -> wmacpi-2.2.tar.gz +_eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 +_md5_=ee971ed4a81f9003a9c517643af81495 diff --git a/metadata/md5-cache/x11-plugins/wmbattery-2.45 b/metadata/md5-cache/x11-plugins/wmbattery-2.45 new file mode 100644 index 000000000000..88e7674dd5dd --- /dev/null +++ b/metadata/md5-cache/x11-plugins/wmbattery-2.45 @@ -0,0 +1,13 @@ +DEFINED_PHASES=prepare +DEPEND=sys-apps/apmd x11-libs/libX11 x11-libs/libXext x11-libs/libXpm upower? ( || ( >=sys-power/upower-0.9.23 sys-power/upower-pm-utils ) ) virtual/pkgconfig !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) >=sys-devel/autoconf-2.69 sys-devel/libtool +DESCRIPTION=A dockable app to report APM, ACPI, or SPIC battery status +EAPI=5 +HOMEPAGE=http://windowmaker.org/dockapps/?name=wmbattery +IUSE=upower +KEYWORDS=~amd64 ~ppc -sparc ~x86 +LICENSE=GPL-2 +RDEPEND=sys-apps/apmd x11-libs/libX11 x11-libs/libXext x11-libs/libXpm upower? ( || ( >=sys-power/upower-0.9.23 sys-power/upower-pm-utils ) ) +SLOT=0 +SRC_URI=http://windowmaker.org/dockapps/?download=wmbattery-2.45.tar.gz -> wmbattery-2.45.tar.gz +_eclasses_=autotools ebea507d219855923e3438c953cf4ab8 libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 +_md5_=f38b94a255dd8c2193dc458cc1a4183a diff --git a/metadata/md5-cache/x11-plugins/wmix-3.1-r2 b/metadata/md5-cache/x11-plugins/wmix-3.2 similarity index 64% rename from metadata/md5-cache/x11-plugins/wmix-3.1-r2 rename to metadata/md5-cache/x11-plugins/wmix-3.2 index c5d8b5b4a3ce..203d825962c9 100644 --- a/metadata/md5-cache/x11-plugins/wmix-3.1-r2 +++ b/metadata/md5-cache/x11-plugins/wmix-3.2 @@ -1,11 +1,12 @@ -DEFINED_PHASES=compile install unpack +DEFINED_PHASES=compile install DEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm x11-proto/xproto x11-proto/xextproto DESCRIPTION=Dockapp mixer for OSS or ALSA -HOMEPAGE=http://www.ne.jp/asahi/linux/timecop/ +EAPI=5 +HOMEPAGE=http://windowmaker.org/dockapps/?name=wmix KEYWORDS=~amd64 ~ppc ~sparc ~x86 LICENSE=GPL-2 RDEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm SLOT=0 -SRC_URI=http://www.ne.jp/asahi/linux/timecop/software/wmix-3.1.tar.gz +SRC_URI=http://windowmaker.org/dockapps/?download=wmix-3.2.tar.gz -> wmix-3.2.tar.gz _eclasses_=eutils 32548a82e42dc26e3312581476d2f20c multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=a7b9a4910ec46b2a47881b9a490fc519 +_md5_=c999878ab2b617fcbeb811a2db703cc7 diff --git a/metadata/md5-cache/x11-plugins/wmmemload-0.1.7 b/metadata/md5-cache/x11-plugins/wmmemload-0.1.7 new file mode 100644 index 000000000000..c2795db3b375 --- /dev/null +++ b/metadata/md5-cache/x11-plugins/wmmemload-0.1.7 @@ -0,0 +1,12 @@ +DEFINED_PHASES=install prepare +DEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm x11-proto/xextproto x11-libs/libICE x11-libs/libXt !=sys-devel/automake-1.13:1.13 >=sys-devel/automake-1.14:1.14 ) >=sys-devel/autoconf-2.69 sys-devel/libtool +DESCRIPTION=dockapp that displays memory and swap space usage +EAPI=5 +HOMEPAGE=http://windowmaker.org/dockapps/?name=wmmemload +KEYWORDS=~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXpm +SLOT=0 +SRC_URI=http://windowmaker.org/dockapps/?download=wmmemload-0.1.7.tar.gz -> wmmemload-0.1.7.tar.gz +_eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 toolchain-funcs 0f1760274637a138b99bb649202ea402 +_md5_=6207a60850d49b3c61feee1cacf96057 diff --git a/metadata/md5-cache/x11-terms/sakura-3.1.5 b/metadata/md5-cache/x11-terms/sakura-3.1.5 index 3af3310293e1..f60c0f769c17 100644 --- a/metadata/md5-cache/x11-terms/sakura-3.1.5 +++ b/metadata/md5-cache/x11-terms/sakura-3.1.5 @@ -3,10 +3,10 @@ DEPEND=>=dev-libs/glib-2.20:2 >=x11-libs/vte-0.28:2.90 x11-libs/gtk+:3 >=dev-lan DESCRIPTION=sakura is a terminal emulator based on GTK and VTE EAPI=5 HOMEPAGE=http://www.pleyades.net/david/projects/sakura/ -KEYWORDS=~amd64 ~x86 ~arm-linux ~x86-linux +KEYWORDS=amd64 ~x86 ~arm-linux ~x86-linux LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.20:2 >=x11-libs/vte-0.28:2.90 x11-libs/gtk+:3 SLOT=0 SRC_URI=http://launchpad.net/sakura/trunk/3.1.5/+download/sakura-3.1.5.tar.bz2 _eclasses_=cmake-utils da2974fcb060ec927e93a17c835afa67 eutils 32548a82e42dc26e3312581476d2f20c flag-o-matic 75e24bac8423c515dd9c5717f08feb83 multilib 3bf24e6abb9b76d9f6c20600f0b716bf toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=d6ad6cd185817159ceafacfba5680560 +_md5_=adb097c46776f946aba398418091d292 diff --git a/metadata/md5-cache/x11-wm/icewm-1.3.8 b/metadata/md5-cache/x11-wm/icewm-1.3.8 index 7e5b4263159e..544f1d78bced 100644 --- a/metadata/md5-cache/x11-wm/icewm-1.3.8 +++ b/metadata/md5-cache/x11-wm/icewm-1.3.8 @@ -4,7 +4,7 @@ DESCRIPTION=Ice Window Manager with Themes EAPI=5 HOMEPAGE=http://www.icewm.org/ IUSE=bidi debug gnome minimal nls truetype uclibc xinerama python_targets_python2_7 python_single_target_python2_7 -KEYWORDS=~alpha amd64 ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha amd64 ppc ~ppc64 ~sparc x86 LICENSE=GPL-2 RDEPEND=x11-libs/gdk-pixbuf:2 x11-libs/libX11 x11-libs/libXrandr x11-libs/libXext x11-libs/libXpm x11-libs/libXrender x11-libs/libXft x11-libs/libSM x11-libs/libICE xinerama? ( x11-libs/libXinerama ) bidi? ( dev-libs/fribidi ) gnome? ( python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/python-exec:=[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] dev-python/pyxdg gnome-base/gnome-desktop:2 gnome-base/gnome-menus gnome-base/libgnomeui ) nls? ( sys-devel/gettext ) truetype? ( >=media-libs/freetype-2.0.9 ) media-libs/giflib REQUIRED_USE=gnome? ( python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_7 ) ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/icewm/icewm-1.3.8.tar.gz _eclasses_=autotools ebea507d219855923e3438c953cf4ab8 eutils 32548a82e42dc26e3312581476d2f20c libtool 52d0e17251d04645ffaa61bfdd858944 multilib 3bf24e6abb9b76d9f6c20600f0b716bf multiprocessing d7f2985a2c76c365ee20269db5261414 python-single-r1 a71a169a881e0a11d04a7fe12dc39f6e python-utils-r1 47dda904cf91c61f45b564d9f834fde1 toolchain-funcs 0f1760274637a138b99bb649202ea402 -_md5_=cd4be2ad4ec6d4475a6a01b818965347 +_md5_=f057026c669ba56390d3124fd30f45ec diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index 559714bbffc5..c8ebc874c8cb 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Fri, 10 Oct 2014 08:07:04 +0000 +Sat, 11 Oct 2014 08:07:04 +0000 diff --git a/metadata/timestamp b/metadata/timestamp index bba10e5313a3..e4f3e9f8b3a2 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Fri Oct 10 08:07:01 UTC 2014 +Sat Oct 11 08:07:01 UTC 2014 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index 3f1f589fdb8a..5516d1057cc5 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Fri, 10 Oct 2014 08:30:01 +0000 +Sat, 11 Oct 2014 08:30:01 +0000 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index d890f5108563..0bb816ef2044 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1412928301 Fri 10 Oct 2014 08:05:01 AM UTC UTC +1413014701 Sat 11 Oct 2014 08:05:01 AM UTC UTC diff --git a/net-analyzer/fping/fping-2.4_beta2_p161-r2.ebuild b/net-analyzer/fping/fping-2.4_beta2_p161-r2.ebuild index b4912b9dacca..1f08fc3ed50c 100644 --- a/net-analyzer/fping/fping-2.4_beta2_p161-r2.ebuild +++ b/net-analyzer/fping/fping-2.4_beta2_p161-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fping/fping-2.4_beta2_p161-r2.ebuild,v 1.3 2014/09/19 09:59:19 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fping/fping-2.4_beta2_p161-r2.ebuild,v 1.4 2014/10/10 11:04:51 ago Exp $ EAPI=5 @@ -15,7 +15,7 @@ HOMEPAGE="http://fping.sourceforge.net/ http://packages.qa.debian.org/f/fping.ht SLOT="0" LICENSE="fping" -KEYWORDS="~alpha ~amd64 hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos" +KEYWORDS="~alpha ~amd64 hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos" IUSE="ipv6" S="${WORKDIR}/fping-2.4b2_to-ipv6" diff --git a/net-analyzer/fping/fping-3.10.ebuild b/net-analyzer/fping/fping-3.10.ebuild index bcb046bf1ae8..1adf60450833 100644 --- a/net-analyzer/fping/fping-3.10.ebuild +++ b/net-analyzer/fping/fping-3.10.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fping/fping-3.10.ebuild,v 1.3 2014/10/09 09:54:44 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fping/fping-3.10.ebuild,v 1.4 2014/10/10 11:04:51 ago Exp $ EAPI=5 @@ -10,7 +10,7 @@ SRC_URI="http://fping.org/dist/${P}.tar.gz" LICENSE="fping" SLOT="0" -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos" +KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos" IUSE="ipv6 suid" src_configure() { diff --git a/net-analyzer/zabbix/zabbix-2.2.5.ebuild b/net-analyzer/zabbix/zabbix-2.2.5.ebuild index 99c56151b716..63f2f1e120d9 100644 --- a/net-analyzer/zabbix/zabbix-2.2.5.ebuild +++ b/net-analyzer/zabbix/zabbix-2.2.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/zabbix/zabbix-2.2.5.ebuild,v 1.2 2014/08/10 21:01:03 slyfox Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/zabbix/zabbix-2.2.5.ebuild,v 1.3 2014/10/10 15:24:17 ago Exp $ EAPI="5" @@ -16,7 +16,7 @@ SRC_URI="http://prdownloads.sourceforge.net/zabbix/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" WEBAPP_MANUAL_SLOT="yes" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="agent java curl frontend ipv6 jabber ldap libxml2 mysql openipmi oracle postgres proxy server ssh snmp sqlite odbc static" COMMON_DEPEND="snmp? ( net-analyzer/net-snmp ) diff --git a/net-ftp/lftp/files/lftp-4.5.5-am_config_header.patch b/net-ftp/lftp/files/lftp-4.5.5-am_config_header.patch new file mode 100644 index 000000000000..28a9e80504a5 --- /dev/null +++ b/net-ftp/lftp/files/lftp-4.5.5-am_config_header.patch @@ -0,0 +1,11 @@ +--- a/configure.ac ++++ b/configure.ac +@@ -5,7 +5,7 @@ + AC_CONFIG_MACRO_DIR([m4]) + AC_CONFIG_LIBOBJ_DIR([lib]) + AC_CONFIG_SRCDIR([src/ftpclass.cc]) +-AM_CONFIG_HEADER([lib/config.h]) ++AC_CONFIG_HEADERS([lib/config.h]) + AM_INIT_AUTOMAKE + + dnl This doesn't *require* GNU extensions; it merely enables them if diff --git a/net-ftp/lftp/lftp-4.5.5.20141003.ebuild b/net-ftp/lftp/lftp-4.5.5.20141003.ebuild index 48350bef1ead..15bebe99a848 100644 --- a/net-ftp/lftp/lftp-4.5.5.20141003.ebuild +++ b/net-ftp/lftp/lftp-4.5.5.20141003.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.5.5.20141003.ebuild,v 1.1 2014/10/07 07:15:36 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.5.5.20141003.ebuild,v 1.2 2014/10/10 15:31:40 jer Exp $ EAPI=5 inherit autotools eutils libtool @@ -58,7 +58,8 @@ src_prepare() { epatch \ "${FILESDIR}"/${PN}-4.0.2.91-lafile.patch \ "${FILESDIR}"/${PN}-4.3.8-gets.patch \ - "${FILESDIR}"/${PN}-4.5.3-autopoint.patch + "${FILESDIR}"/${PN}-4.5.3-autopoint.patch \ + "${FILESDIR}"/${PN}-4.5.5-nls-socks.patch sed -i configure.ac -e 's|^AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' || die eautoreconf diff --git a/net-ftp/lftp/lftp-4.5.5.ebuild b/net-ftp/lftp/lftp-4.5.5.ebuild index 4df299af158c..64b0d1f419d5 100644 --- a/net-ftp/lftp/lftp-4.5.5.ebuild +++ b/net-ftp/lftp/lftp-4.5.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.5.5.ebuild,v 1.5 2014/10/09 09:13:10 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-4.5.5.ebuild,v 1.6 2014/10/10 10:56:00 ago Exp $ EAPI=5 inherit autotools eutils libtool @@ -11,7 +11,7 @@ SRC_URI="http://${PN}.yar.ru/ftp/${P}.tar.xz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE="convert-mozilla-cookies +gnutls nls openssl socks5 +ssl verify-file" LFTP_LINGUAS=( cs de es fr it ja ko pl pt_BR ru uk zh_CN zh_HK zh_TW ) diff --git a/net-ftp/lftp/lftp-9999.ebuild b/net-ftp/lftp/lftp-9999.ebuild new file mode 100644 index 000000000000..b1870be31e75 --- /dev/null +++ b/net-ftp/lftp/lftp-9999.ebuild @@ -0,0 +1,88 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-9999.ebuild,v 1.1 2014/10/10 15:31:40 jer Exp $ + +EAPI=5 +inherit autotools eutils git-r3 libtool + +DESCRIPTION="A sophisticated ftp/sftp/http/https/torrent client and file transfer program" +HOMEPAGE="http://lftp.yar.ru/" +EGIT_REPO_URI="https://github.com/lavv17/lftp" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="" + +IUSE="convert-mozilla-cookies +gnutls nls openssl socks5 +ssl verify-file" +LFTP_LINGUAS=( cs de es fr it ja ko pl pt_BR ru uk zh_CN zh_HK zh_TW ) +IUSE+=" ${LFTP_LINGUAS[@]/#/linguas_}" + +REQUIRED_USE=" + ssl? ( ^^ ( openssl gnutls ) ) +" + +RDEPEND=" + >=sys-libs/ncurses-5.1 + >=sys-libs/readline-5.1 + dev-libs/expat + sys-libs/zlib + convert-mozilla-cookies? ( dev-perl/DBI ) + socks5? ( + >=net-proxy/dante-1.1.12 + virtual/pam + ) + ssl? ( + gnutls? ( >=net-libs/gnutls-1.2.3 ) + openssl? ( >=dev-libs/openssl-0.9.6 ) + ) + verify-file? ( + dev-perl/string-crc32 + virtual/perl-Digest-MD5 + ) +" + +DEPEND=" + ${RDEPEND} + dev-libs/gnulib + =sys-devel/libtool-2* + app-arch/xz-utils + nls? ( sys-devel/gettext ) + virtual/pkgconfig +" + +DOCS=( + BUGS ChangeLog FAQ FEATURES MIRRORS NEWS README README.debug-levels + README.dnssec README.modules THANKS TODO +) + +src_prepare() { + epatch \ + "${FILESDIR}"/${PN}-4.0.2.91-lafile.patch \ + "${FILESDIR}"/${PN}-4.5.3-autopoint.patch \ + "${FILESDIR}"/${PN}-4.5.5-am_config_header.patch + + gnulib-tool --update || die + + eautoreconf + elibtoolize # for Darwin bundles +} + +src_configure() { + econf \ + $(use_enable nls) \ + $(use_with gnutls) \ + $(use_with openssl openssl "${EPREFIX}"/usr) \ + $(use_with socks5 socksdante "${EPREFIX}"/usr) \ + --enable-packager-mode \ + --sysconfdir="${EPREFIX}"/etc/${PN} \ + --with-modules \ + --without-included-regex +} + +src_install() { + default + local script + for script in {convert-mozilla-cookies,verify-file}; do + use ${script} || { rm "${ED}"/usr/share/${PN}/${script} || die ;} + done +} diff --git a/net-im/bitlbee/Manifest b/net-im/bitlbee/Manifest index 557e553a869c..52ce209cbef2 100644 --- a/net-im/bitlbee/Manifest +++ b/net-im/bitlbee/Manifest @@ -1,4 +1,5 @@ DIST bitlbee-3.0.5.tar.gz 727982 SHA256 a2b18ae0355650b7ec326b8ea7082eb06bb8f8816ad3b4985fe97f729ce84e59 DIST bitlbee-3.0.6.tar.gz 730918 SHA256 4f3e169f9a8e0cdf7976d2e6f41b9a8f6020a262b5731aa0f91fdb66d17446e8 SHA512 01142dbd6b89e1f80d58a337b3cd2fc7256925e59381563a9010153fce5fb863a76e7855a678d70e109519d2f8fe28f17bdeb2c976eb27f0987d72b82b93f891 WHIRLPOOL 07e4e6d9a16be3fb0d62bc2ec27e309f96ffe541c90cf6c2ce8fb254a217773556fc6e97b00dac26852488b632c479197174999eeabe9afd377f2fd0f7892b36 DIST bitlbee-3.2.1.tar.gz 657595 SHA256 00f411dd7d6d28f30f0e73e46c9cbe88b4006e7f03adfe07b90a97280a290f59 SHA512 5df1ab94602a801024a459ef166e5515e94e202773b8ade838c55967865f706291d3b3fa63bdd7737d461e96cf8af2f191d5ea4451e14149ac28edb9f5bfce9f WHIRLPOOL 37fc1c84ca512d52b9a16ad54af68891839f4cb4f8af8883d5bf5f3597ffa5952dd4d8f9ad4fd7cda3cb654be21ba206a6fdd6811ea3c67eb00acf7233041a36 +DIST bitlbee-3.2.2.tar.gz 661757 SHA256 ba38939281f23e8a0e71022c7be0cb68f6544248404362c5e20245fa7a67558e SHA512 5826a9d64e2de42c5560d85c3e7c96a72930afae005143323b6a301b588328b156b50cde571c7f396ca00952d950d22db1ea11cc42256935d3d72ec90215e7d2 WHIRLPOOL cbc3552289949e5e10281d65f617f38075016c813bf2cbb13e09af913ea8545c46a69225bf4f523e1a73f955d7309b8c7b94e23affdedf5dce2760eee55203ae DIST bitlbee-3.2.tar.gz 666404 SHA256 1b43828e906f5450993353f2ebecc6c038f0261c4dc3f1722ebafa6ea3e62030 SHA512 e9479c7ffa17269fc3330dccdb48f26dafdc6bc2decbea52af1a8ad029db89bcbc87d502ec7bb60694693ad1033671cc3e546024291d671fc1380be8bd5ebb69 WHIRLPOOL c2aa53cf8fa48155d65578fde6a0aa12d2e9eb74643575ae1d959918949fc4bc9d9c111e4222526782f44e973e278d74893270c371e7fa5cbd1914a175e20771 diff --git a/net-im/bitlbee/bitlbee-3.2.2.ebuild b/net-im/bitlbee/bitlbee-3.2.2.ebuild new file mode 100644 index 000000000000..8c3f8dfd8ca1 --- /dev/null +++ b/net-im/bitlbee/bitlbee-3.2.2.ebuild @@ -0,0 +1,180 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/bitlbee/bitlbee-3.2.2.ebuild,v 1.1 2014/10/10 08:50:07 wired Exp $ + +EAPI="5" +PYTHON_COMPAT=( python{2_6,2_7} ) + +inherit eutils multilib user python-single-r1 systemd + +DESCRIPTION="irc to IM gateway that support multiple IM protocols" +HOMEPAGE="http://www.bitlbee.org/" +SRC_URI="http://get.bitlbee.org/src/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd" +IUSE="debug gnutls ipv6 +jabber libevent msn nss +oscar otr +plugins purple selinux +skype ssl test twitter +yahoo xinetd" + +COMMON_DEPEND=" + >=dev-libs/glib-2.14 + purple? ( net-im/pidgin ) + libevent? ( dev-libs/libevent ) + otr? ( >=net-libs/libotr-4 ) + gnutls? ( net-libs/gnutls ) + !gnutls? ( + nss? ( dev-libs/nss ) + !nss? ( ssl? ( dev-libs/openssl ) ) + ) + selinux? ( sec-policy/selinux-bitlbee )" +DEPEND="${COMMON_DEPEND} + virtual/pkgconfig + skype? ( app-text/asciidoc ) + test? ( dev-libs/check )" + +RDEPEND="${COMMON_DEPEND} + virtual/logger + skype? ( + dev-python/skype4py[${PYTHON_USEDEP}] + net-im/skype + ) + xinetd? ( sys-apps/xinetd )" + +REQUIRED_USE="|| ( purple jabber msn oscar yahoo ) + msn? ( || ( gnutls nss ssl ) ) + jabber? ( !nss )" + +pkg_setup() { + if use jabber && ! use gnutls && ! use ssl ; then + einfo + elog "You have enabled support for Jabber but do not have SSL" + elog "support enabled. This *will* prevent bitlbee from being" + elog "able to connect to SSL enabled Jabber servers. If you need to" + elog "connect to Jabber over SSL, enable ONE of the following use" + elog "flags: gnutls or ssl" + einfo + fi + + use skype && python-single-r1_pkg_setup + + enewgroup bitlbee + enewuser bitlbee -1 -1 /var/lib/bitlbee bitlbee +} + +src_prepare() { + sed -i \ + -e "s@/usr/local/sbin/bitlbee@/usr/sbin/bitlbee@" \ + -e "s/nobody/bitlbee/" \ + -e "s/}/ disable = yes\n}/" \ + doc/bitlbee.xinetd || die "sed failed in xinetd" + + sed -i \ + -e "s@mozilla-nss@nss@g" \ + configure || die "sed failed in configure" + + use skype && python_fix_shebang protocols/skype/skyped.py + + epatch "${FILESDIR}"/${PN}-3.2.1-configure.patch +} + +src_configure() { + # setup plugins, protocol, ipv6 and debug + for flag in debug ipv6 msn jabber oscar plugins purple skype twitter yahoo ; do + if use ${flag} ; then + myconf="${myconf} --${flag}=1" + else + myconf="${myconf} --${flag}=0" + fi + done + + # set otr + if use otr && use plugins ; then + myconf="${myconf} --otr=plugin" + else + if use otr ; then + ewarn "OTR support has been disabled automatically because it" + ewarn "requires the plugins USE flag." + fi + myconf="${myconf} --otr=0" + fi + + # setup ssl use flags + if use gnutls ; then + myconf="${myconf} --ssl=gnutls" + einfo "Using gnutls for SSL support" + elif use ssl ; then + myconf="${myconf} --ssl=openssl" + einfo "Using openssl for SSL support" + elif use nss ; then + myconf="${myconf} --ssl=nss" + einfo "Using nss for SSL support" + else + myconf="${myconf} --ssl=bogus" + einfo "You will not have any encryption support enabled." + fi + + # set event handler + if use libevent ; then + myconf="${myconf} --events=libevent" + else + myconf="${myconf} --events=glib" + fi + + # NOTE: bitlbee's configure script is not an autotool creation, + # so that is why we don't use econf. + ./configure --prefix=/usr --datadir=/usr/share/bitlbee \ + --etcdir=/etc/bitlbee --plugindir=/usr/$(get_libdir)/bitlbee \ + --systemdsystemunitdir=$(systemd_get_unitdir) \ + --strip=0 ${myconf} || die "econf failed" + + sed -i \ + -e "/^EFLAGS/s:=:&${LDFLAGS} :" \ + Makefile.settings || die "sed failed" +} + +src_install() { + emake install install-etc install-doc install-dev install-systemd DESTDIR="${D}" + + keepdir /var/lib/bitlbee + fperms 700 /var/lib/bitlbee + fowners bitlbee:bitlbee /var/lib/bitlbee + + dodoc doc/{AUTHORS,CHANGES,CREDITS,FAQ,README} + dodoc doc/user-guide/user-guide.txt + dohtml doc/user-guide/*.html + + if use skype ; then + newdoc protocols/skype/NEWS NEWS-skype + newdoc protocols/skype/README README-skype + fi + + doman doc/bitlbee.8 doc/bitlbee.conf.5 + + if use xinetd ; then + insinto /etc/xinetd.d + newins doc/bitlbee.xinetd bitlbee + fi + + newinitd "${FILESDIR}"/bitlbee.initd-r1 bitlbee + newconfd "${FILESDIR}"/bitlbee.confd-r1 bitlbee + + exeinto /usr/share/bitlbee + cd utils + doexe convert_purple.py bitlbee-ctl.pl +} + +pkg_postinst() { + chown -R bitlbee:bitlbee "${ROOT}"/var/lib/bitlbee + [[ -d "${ROOT}"/var/run/bitlbee ]] && + chown -R bitlbee:bitlbee "${ROOT}"/var/run/bitlbee + + einfo + elog "The bitlbee init script will now attempt to stop all processes owned by the" + elog "bitlbee user, including per-client forks." + elog + elog "Tell the init script not to touch anything besides the main bitlbee process" + elog "by changing the BITLBEE_STOP_ALL variable in" + elog " /etc/conf.d/bitlbee" + einfo +} diff --git a/net-irc/inspircd/inspircd-2.0.17.ebuild b/net-irc/inspircd/inspircd-2.0.17.ebuild index b2ae2e535a4f..f403ff6b1a24 100644 --- a/net-irc/inspircd/inspircd-2.0.17.ebuild +++ b/net-irc/inspircd/inspircd-2.0.17.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/inspircd-2.0.17.ebuild,v 1.1 2014/08/09 10:17:36 nimiux Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/inspircd/inspircd-2.0.17.ebuild,v 1.2 2014/10/10 15:23:45 ago Exp $ EAPI=5 @@ -12,7 +12,7 @@ SRC_URI="http://www.github.com/inspircd/inspircd/archive/v${PV}.tar.gz -> ${P}.t LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="geoip gnutls ipv6 ldap mysql pcre posix postgres sqlite ssl tre" RDEPEND=" diff --git a/net-irc/unrealircd/unrealircd-3.2.10.4.ebuild b/net-irc/unrealircd/unrealircd-3.2.10.4.ebuild index 6c69b1330d7a..07236912e488 100644 --- a/net-irc/unrealircd/unrealircd-3.2.10.4.ebuild +++ b/net-irc/unrealircd/unrealircd-3.2.10.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/unrealircd/unrealircd-3.2.10.4.ebuild,v 1.3 2014/10/05 10:47:54 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/unrealircd/unrealircd-3.2.10.4.ebuild,v 1.4 2014/10/10 10:50:19 ago Exp $ EAPI=4 @@ -14,7 +14,7 @@ SRC_URI="http://www.unrealircd.com/downloads/${MY_P}.tar.gz" SLOT="0" LICENSE="GPL-2" -KEYWORDS="amd64 ppc ~x86 ~x86-fbsd ~amd64-linux" +KEYWORDS="amd64 ppc x86 ~x86-fbsd ~amd64-linux" IUSE="class-nofakelag curl ipv6 +extban-stacking +operoverride operoverride-verify +prefixaq showlistmodes shunnotices ssl topicisnuhost +usermod zlib" diff --git a/net-libs/axtls/axtls-1.4.9-r1.ebuild b/net-libs/axtls/axtls-1.4.9-r1.ebuild index 5ca5f1f98544..e714f4c3a25d 100644 --- a/net-libs/axtls/axtls-1.4.9-r1.ebuild +++ b/net-libs/axtls/axtls-1.4.9-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/axtls-1.4.9-r1.ebuild,v 1.6 2014/10/09 09:54:24 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/axtls/axtls-1.4.9-r1.ebuild,v 1.7 2014/10/10 11:03:18 ago Exp $ EAPI="5" @@ -41,7 +41,7 @@ S="${WORKDIR}/${MY_PN}" LICENSE="BSD GPL-2" SLOT="0" -KEYWORDS="amd64 arm hppa ~mips ~ppc ~ppc64 ~s390 ~x86" +KEYWORDS="amd64 arm hppa ~mips ~ppc ~ppc64 ~s390 x86" IUSE="httpd cgi-lua cgi-php static static-libs doc" diff --git a/net-libs/libgrss/libgrss-0.5.0-r1.ebuild b/net-libs/libgrss/libgrss-0.5.0-r1.ebuild index f9c776dc308d..609be3b1dfc8 100644 --- a/net-libs/libgrss/libgrss-0.5.0-r1.ebuild +++ b/net-libs/libgrss/libgrss-0.5.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libgrss/libgrss-0.5.0-r1.ebuild,v 1.2 2014/10/09 09:13:25 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libgrss/libgrss-0.5.0-r1.ebuild,v 1.3 2014/10/10 10:56:41 ago Exp $ EAPI="5" GCONF_DEBUG="yes" @@ -13,7 +13,7 @@ SRC_URI="http://gtk.mplat.es/libgrss/tarballs/${P}.tar.gz" LICENSE="LGPL-3" SLOT="0.5" -KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86" IUSE="examples" RDEPEND=" diff --git a/net-libs/libmicrohttpd/libmicrohttpd-0.9.37.ebuild b/net-libs/libmicrohttpd/libmicrohttpd-0.9.37.ebuild index b0da75073434..b4db40c9955f 100644 --- a/net-libs/libmicrohttpd/libmicrohttpd-0.9.37.ebuild +++ b/net-libs/libmicrohttpd/libmicrohttpd-0.9.37.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/libmicrohttpd-0.9.37.ebuild,v 1.4 2014/10/09 08:05:22 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/libmicrohttpd-0.9.37.ebuild,v 1.5 2014/10/10 10:55:18 ago Exp $ EAPI="5" @@ -11,7 +11,7 @@ HOMEPAGE="http://www.gnu.org/software/libmicrohttpd/" SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz" IUSE="epoll messages ssl static-libs test" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86" LICENSE="LGPL-2.1" SLOT="0" diff --git a/net-libs/libmnl/libmnl-1.0.3-r1.ebuild b/net-libs/libmnl/libmnl-1.0.3-r1.ebuild index 295441a67971..f46a19fa3b5e 100644 --- a/net-libs/libmnl/libmnl-1.0.3-r1.ebuild +++ b/net-libs/libmnl/libmnl-1.0.3-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libmnl/libmnl-1.0.3-r1.ebuild,v 1.7 2014/08/14 16:59:48 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libmnl/libmnl-1.0.3-r1.ebuild,v 1.8 2014/10/10 15:21:45 ago Exp $ EAPI=4 @@ -12,7 +12,7 @@ SRC_URI="http://www.netfilter.org/projects/${PN}/files/${P}.tar.bz2" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux" +KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux" IUSE="examples static-libs" src_configure() { diff --git a/net-libs/libtorrent/libtorrent-0.13.3.ebuild b/net-libs/libtorrent/libtorrent-0.13.3.ebuild index d824364f1987..2736026e58ae 100644 --- a/net-libs/libtorrent/libtorrent-0.13.3.ebuild +++ b/net-libs/libtorrent/libtorrent-0.13.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.13.3.ebuild,v 1.2 2014/09/11 18:35:09 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.13.3.ebuild,v 1.3 2014/10/10 15:24:52 ago Exp $ EAPI=4 @@ -12,7 +12,7 @@ SRC_URI="http://libtorrent.rakshasa.no/downloads/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris" +KEYWORDS="amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris" IUSE="debug ipv6 ssl" RDEPEND=" diff --git a/net-libs/neon/neon-0.30.0-r1.ebuild b/net-libs/neon/neon-0.30.0-r1.ebuild index ad7e92a0ab19..445af8f82268 100644 --- a/net-libs/neon/neon-0.30.0-r1.ebuild +++ b/net-libs/neon/neon-0.30.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.30.0-r1.ebuild,v 1.4 2014/09/13 11:54:07 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/neon/neon-0.30.0-r1.ebuild,v 1.5 2014/10/10 15:23:36 ago Exp $ EAPI="5" @@ -12,7 +12,7 @@ SRC_URI="http://www.webdav.org/neon/${P}.tar.gz" LICENSE="GPL-2" SLOT="0/27" -KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="doc expat gnutls kerberos libproxy nls pkcs11 ssl static-libs zlib" IUSE_LINGUAS="cs de fr ja nn pl ru tr zh_CN" for lingua in ${IUSE_LINGUAS}; do diff --git a/net-libs/rb_libtorrent/Manifest b/net-libs/rb_libtorrent/Manifest index 5c4c0df01f6d..9c49d9e18472 100644 --- a/net-libs/rb_libtorrent/Manifest +++ b/net-libs/rb_libtorrent/Manifest @@ -1,5 +1,2 @@ -DIST libtorrent-rasterbar-0.15.10.tar.gz 2623718 SHA256 36e79fa4e79d5b0911ade11bc41ee75375048acc06526a23fad8558612ac38c4 SHA512 b66791a62dc3478dcfd8d7045891bccb660af51a313feb795140353c249b00794cc031d6ad6c47020c0e29601c5da5a2f0f2dc646148c7e616285af8ef44bc70 WHIRLPOOL dacd32e103c4ad9b563221e3bf18cc74b03cc415a155c15516b55bd345a31474362a12c26ccfc5eeb724498f5366704acae2dc68ee32e162a261a12abdb43c2f DIST libtorrent-rasterbar-0.16.10.tar.gz 2985640 SHA256 4c0d78b28af8051ff8a19a3a3e10a5edfec50945b8f3c9a76612111c47d671bc SHA512 a8b5d762f2b50ded1f8589efeedf2d1e0b5cc39d71bcc1840658137c1058cd03fe249c6855c5c483304aafb74b616d241456fecf00dec50608aa82af9f795819 WHIRLPOOL 20cc12a8bfcafd079a0d8ab6132bb3a4aa289089ed12c895bc2b2047b5a10a15a3ba20d6f0f767ba0e01f19dc3e1baa05518d08454b502a8b125e513bf05ce51 -DIST libtorrent-rasterbar-0.16.15.tar.gz 3014808 SHA256 820fdfeca3f45a58ec2fc5de138887e890637b3d62fe5717eb8dcd072f249f75 SHA512 f55e75038a627399041384c2901aa36384e804d8ae2aa7edbbfd4ccc39dedf64170876d9fac03c64f537d4ff8b736ecaea0399211ba86ab1d08753828dc8f2a4 WHIRLPOOL d536e0ec7f1b118eae7dbf571376646be0d4413b6b8ad2285324ca3b3383d1e143cc7265fab689aba12f4b19b9f019dc8a23d20a4ac2b460ec7a4652d90d98db -DIST libtorrent-rasterbar-0.16.16.tar.gz 3016861 SHA256 c74580f0861281568f58009519cddaaa4aa44056fb3a663acf6061a225ef7ea8 SHA512 7fb5b4637e8ea84c242bce38367414728a87ae4ec530802ebb94871c51af4a1593829a3da8f6432c6181d07837a90909da945f51f830db8c1ec8524ffd75d51f WHIRLPOOL 260590876edd619a35d69b309ced4ea5c2b4d42cb9d54701708ca80009cc48ca09afac620875ffb324aaea5627b1b5fdac54c63ba8a795b16e26c1596e882b29 DIST libtorrent-rasterbar-0.16.17.tar.gz 3018881 SHA256 67a1d29c626d991d6e39c2f9828ca70c4053d057070ce01fff9b4ad37e64aff0 SHA512 532b2438e24c3ecad239480a1bd6241a0d73d40f8d5bdcf61ddfcee1a41f1644c9004d4f234968efd50158224219b78852ec936a05b75b15f3442b594460cdd6 WHIRLPOOL 755e201741ed77cf91cb0976cbaa83c645647341d2cfe40564552599f2792ba76bd02e82a94669d80b199f1a1d6290824686d2bb52d6b0da8663d2274176f3eb diff --git a/net-libs/rb_libtorrent/rb_libtorrent-0.15.10.ebuild b/net-libs/rb_libtorrent/rb_libtorrent-0.15.10.ebuild deleted file mode 100644 index cb9eb4e67189..000000000000 --- a/net-libs/rb_libtorrent/rb_libtorrent-0.15.10.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.15.10.ebuild,v 1.7 2012/11/08 06:24:13 flameeyes Exp $ - -EAPI="4" -PYTHON_DEPEND="python? 2:2.6" -PYTHON_USE_WITH="threads" -PYTHON_USE_WITH_OPT="python" - -inherit multilib python versionator - -MY_P=${P/rb_/} -MY_P=${MY_P/torrent/torrent-rasterbar} -S=${WORKDIR}/${MY_P} - -DESCRIPTION="C++ BitTorrent implementation focusing on efficiency and scalability" -HOMEPAGE="http://www.rasterbar.com/products/libtorrent/" -SRC_URI="http://libtorrent.googlecode.com/files/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~arm ppc ~ppc64 ~sparc x86 ~x86-fbsd" -IUSE="debug doc examples python ssl static-libs" -RESTRICT="test" - -DEPEND=">=dev-libs/boost-1.48[python?,threads(+)] - >=sys-devel/libtool-2.2 - sys-libs/zlib - examples? ( !net-p2p/mldonkey ) - ssl? ( dev-libs/openssl )" - -RDEPEND="${DEPEND}" - -pkg_setup() { - if use python; then - python_set_active_version 2 - python_pkg_setup - fi -} - -src_prepare() { - use python && python_convert_shebangs -r 2 . -} - -src_configure() { - # use multi-threading versions of boost libs - local BOOST_LIBS="--with-boost-system=boost_system-mt \ - --with-boost-filesystem=boost_filesystem-mt \ - --with-boost-thread=boost_thread-mt \ - --with-boost-python=boost_python-${PYTHON_ABI}-mt" - - local LOGGING - use debug && LOGGING="--enable-logging=verbose" - - econf $(use_enable debug) \ - $(use_enable test tests) \ - $(use_enable examples) \ - $(use_enable python python-binding) \ - $(use_enable ssl encryption) \ - $(use_enable static-libs static) \ - --with-zlib=system \ - ${LOGGING} \ - ${BOOST_LIBS} -} - -src_install() { - emake DESTDIR="${D}" install - use static-libs || find "${D}" -name '*.la' -exec rm -f {} + - dodoc ChangeLog AUTHORS NEWS README - if use doc; then - dohtml docs/* - fi -} diff --git a/net-libs/rb_libtorrent/rb_libtorrent-0.16.10.ebuild b/net-libs/rb_libtorrent/rb_libtorrent-0.16.10.ebuild index f2d7b31ed885..ced8ba5c4d8e 100644 --- a/net-libs/rb_libtorrent/rb_libtorrent-0.16.10.ebuild +++ b/net-libs/rb_libtorrent/rb_libtorrent-0.16.10.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.16.10.ebuild,v 1.8 2014/03/15 16:49:36 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.16.10.ebuild,v 1.9 2014/10/10 18:06:43 pesa Exp $ EAPI="4" -PYTHON_DEPEND="python? 2:2.6" +PYTHON_DEPEND="python? 2:2.7" PYTHON_USE_WITH="threads" PYTHON_USE_WITH_OPT="python" diff --git a/net-libs/rb_libtorrent/rb_libtorrent-0.16.15.ebuild b/net-libs/rb_libtorrent/rb_libtorrent-0.16.15.ebuild deleted file mode 100644 index 291a22440433..000000000000 --- a/net-libs/rb_libtorrent/rb_libtorrent-0.16.15.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.16.15.ebuild,v 1.2 2014/03/15 16:49:36 hwoarang Exp $ - -EAPI="4" -PYTHON_DEPEND="python? 2:2.6" -PYTHON_USE_WITH="threads" -PYTHON_USE_WITH_OPT="python" - -inherit multilib python versionator - -MY_P=${P/rb_/} -MY_P=${MY_P/torrent/torrent-rasterbar} -S=${WORKDIR}/${MY_P} - -DESCRIPTION="C++ BitTorrent implementation focusing on efficiency and scalability" -HOMEPAGE="http://www.rasterbar.com/products/libtorrent/" -SRC_URI="mirror://sourceforge/libtorrent/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" -IUSE="debug doc examples python ssl static-libs" -RESTRICT="test" - -DEPEND=">=dev-libs/boost-1.48[python?,threads(+)] - >=sys-devel/libtool-2.2 - sys-libs/zlib - examples? ( !net-p2p/mldonkey ) - ssl? ( dev-libs/openssl )" -RDEPEND="${DEPEND}" - -pkg_setup() { - if use python; then - python_set_active_version 2 - python_pkg_setup - fi -} - -src_prepare() { - use python && python_convert_shebangs -r 2 . -} - -src_configure() { - local myconf - - # bug 441842 - myconf="--disable-silent-rules" - - # use multi-threading versions of boost libs - if has_version '>=dev-libs/boost-1.52.0-r1'; then - myconf+=" --with-boost-python=boost_python-${PYTHON_ABI}" - else - myconf+=" --with-boost-system=boost_system-mt \ - --with-boost-python=boost_python-${PYTHON_ABI}-mt" - fi - - local LOGGING - use debug && myconf+=" --enable-logging=verbose" - - econf $(use_enable debug) \ - $(use_enable test tests) \ - $(use_enable examples) \ - $(use_enable python python-binding) \ - $(use_enable ssl encryption) \ - $(use_enable static-libs static) \ - --with-boost-libdir=/usr/$(get_libdir) \ - ${myconf} -} - -src_install() { - emake DESTDIR="${D}" install - use static-libs || find "${D}" -name '*.la' -exec rm -f {} + - dodoc ChangeLog AUTHORS NEWS README - if use doc; then - dohtml docs/* - fi -} diff --git a/net-libs/rb_libtorrent/rb_libtorrent-0.16.16.ebuild b/net-libs/rb_libtorrent/rb_libtorrent-0.16.16.ebuild deleted file mode 100644 index 6b4449080f67..000000000000 --- a/net-libs/rb_libtorrent/rb_libtorrent-0.16.16.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.16.16.ebuild,v 1.1 2014/05/10 10:16:46 hwoarang Exp $ - -EAPI="4" -PYTHON_DEPEND="python? 2:2.6" -PYTHON_USE_WITH="threads" -PYTHON_USE_WITH_OPT="python" - -inherit multilib python versionator - -MY_P=${P/rb_/} -MY_P=${MY_P/torrent/torrent-rasterbar} -S=${WORKDIR}/${MY_P} - -DESCRIPTION="C++ BitTorrent implementation focusing on efficiency and scalability" -HOMEPAGE="http://www.rasterbar.com/products/libtorrent/" -SRC_URI="mirror://sourceforge/libtorrent/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" -IUSE="debug doc examples python ssl static-libs" -RESTRICT="test" - -DEPEND=">=dev-libs/boost-1.48[python?,threads(+)] - >=sys-devel/libtool-2.2 - sys-libs/zlib - examples? ( !net-p2p/mldonkey ) - ssl? ( dev-libs/openssl )" -RDEPEND="${DEPEND}" - -pkg_setup() { - if use python; then - python_set_active_version 2 - python_pkg_setup - fi -} - -src_prepare() { - use python && python_convert_shebangs -r 2 . -} - -src_configure() { - local myconf - - # bug 441842 - myconf="--disable-silent-rules" - - # use multi-threading versions of boost libs - if has_version '>=dev-libs/boost-1.52.0-r1'; then - myconf+=" --with-boost-python=boost_python-${PYTHON_ABI}" - else - myconf+=" --with-boost-system=boost_system-mt \ - --with-boost-python=boost_python-${PYTHON_ABI}-mt" - fi - - local LOGGING - use debug && myconf+=" --enable-logging=verbose" - - econf $(use_enable debug) \ - $(use_enable test tests) \ - $(use_enable examples) \ - $(use_enable python python-binding) \ - $(use_enable ssl encryption) \ - $(use_enable static-libs static) \ - --with-boost-libdir=/usr/$(get_libdir) \ - ${myconf} -} - -src_install() { - emake DESTDIR="${D}" install - use static-libs || find "${D}" -name '*.la' -exec rm -f {} + - dodoc ChangeLog AUTHORS NEWS README - if use doc; then - dohtml docs/* - fi -} diff --git a/net-libs/rb_libtorrent/rb_libtorrent-0.16.17.ebuild b/net-libs/rb_libtorrent/rb_libtorrent-0.16.17.ebuild index 4595015a03cf..2209382f0b44 100644 --- a/net-libs/rb_libtorrent/rb_libtorrent-0.16.17.ebuild +++ b/net-libs/rb_libtorrent/rb_libtorrent-0.16.17.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.16.17.ebuild,v 1.3 2014/10/09 09:54:35 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/rb_libtorrent/rb_libtorrent-0.16.17.ebuild,v 1.5 2014/10/10 18:06:43 pesa Exp $ EAPI="4" -PYTHON_DEPEND="python? 2:2.6" +PYTHON_DEPEND="python? 2:2.7" PYTHON_USE_WITH="threads" PYTHON_USE_WITH_OPT="python" @@ -19,7 +19,7 @@ SRC_URI="mirror://sourceforge/libtorrent/${MY_P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="amd64 arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +KEYWORDS="amd64 arm ~ppc ~ppc64 ~sparc x86 ~x86-fbsd" IUSE="debug doc examples python ssl static-libs" RESTRICT="test" diff --git a/net-libs/uhttpmock/uhttpmock-0.3.1.ebuild b/net-libs/uhttpmock/uhttpmock-0.3.1.ebuild index ccf7fe73f4ec..93ac3313bba1 100644 --- a/net-libs/uhttpmock/uhttpmock-0.3.1.ebuild +++ b/net-libs/uhttpmock/uhttpmock-0.3.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/uhttpmock/uhttpmock-0.3.1.ebuild,v 1.2 2014/09/25 11:26:20 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/uhttpmock/uhttpmock-0.3.1.ebuild,v 1.3 2014/10/10 20:08:46 maekke Exp $ EAPI=5 GCONF_DEBUG="yes" @@ -20,7 +20,7 @@ REQUIRED_USE=" vala? ( introspection ) " -KEYWORDS="~amd64 ~hppa ~x86" +KEYWORDS="~amd64 ~arm ~hppa ~x86" RDEPEND=" >=dev-libs/glib-2.31:2 diff --git a/net-misc/dhcpcd/dhcpcd-6.4.7.ebuild b/net-misc/dhcpcd/dhcpcd-6.4.7.ebuild index b211651f1ef9..65f03442a988 100644 --- a/net-misc/dhcpcd/dhcpcd-6.4.7.ebuild +++ b/net-misc/dhcpcd/dhcpcd-6.4.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.4.7.ebuild,v 1.6 2014/09/28 09:54:09 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.4.7.ebuild,v 1.7 2014/10/10 20:11:25 maekke Exp $ EAPI=5 @@ -11,7 +11,7 @@ else MY_P="${MY_P/_beta/-beta}" MY_P="${MY_P/_rc/-rc}" SRC_URI="http://roy.marples.name/downloads/${PN}/${MY_P}.tar.bz2" - KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux" + KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux" S="${WORKDIR}/${MY_P}" fi diff --git a/net-misc/dropbox-cli/dropbox-cli-1.6.0.ebuild b/net-misc/dropbox-cli/dropbox-cli-1.6.0.ebuild index 1f6292347065..d636195f41ef 100644 --- a/net-misc/dropbox-cli/dropbox-cli-1.6.0.ebuild +++ b/net-misc/dropbox-cli/dropbox-cli-1.6.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/dropbox-cli/dropbox-cli-1.6.0.ebuild,v 1.1 2013/07/02 16:04:30 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/dropbox-cli/dropbox-cli-1.6.0.ebuild,v 1.2 2014/10/10 15:20:26 ago Exp $ EAPI=5 @@ -14,7 +14,7 @@ SRC_URI="https://dev.gentoo.org/~hasufell/distfiles/${P}.py.xz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="" REQUIRED_USE="${PYTHON_REQUIRED_USE}" diff --git a/net-misc/geoipupdate/geoipupdate-2.0.2.ebuild b/net-misc/geoipupdate/geoipupdate-2.0.2.ebuild index 96b7b8567b5b..5a9b6a3235ea 100644 --- a/net-misc/geoipupdate/geoipupdate-2.0.2.ebuild +++ b/net-misc/geoipupdate/geoipupdate-2.0.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/geoipupdate/geoipupdate-2.0.2.ebuild,v 1.3 2014/10/09 09:55:09 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/geoipupdate/geoipupdate-2.0.2.ebuild,v 1.4 2014/10/10 11:03:55 ago Exp $ EAPI=5 @@ -10,7 +10,7 @@ SRC_URI="https://github.com/maxmind/${PN}/releases/download/v${PV}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~x86 ~x86-fbsd" +KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~s390 x86 ~x86-fbsd" IUSE="" DEPEND=" diff --git a/net-misc/grdesktop/grdesktop-0.23.ebuild b/net-misc/grdesktop/grdesktop-0.23.ebuild deleted file mode 100644 index 17a27f290b59..000000000000 --- a/net-misc/grdesktop/grdesktop-0.23.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/grdesktop/grdesktop-0.23.ebuild,v 1.13 2012/05/05 03:20:42 jdhore Exp $ - -EAPI="1" - -inherit eutils gnome2 - -DESCRIPTION="Gtk2 frontend for rdesktop" -HOMEPAGE="http://www.nongnu.org/grdesktop/" -SRC_URI="http://savannah.nongnu.org/download/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc sparc x86 ~x86-fbsd" - -IUSE="" - -RDEPEND="x11-libs/gtk+:2 - >=gnome-base/libgnomeui-2 - net-misc/rdesktop - gnome-base/gconf:2" - -DEPEND="${RDEPEND} - app-text/scrollkeeper - virtual/pkgconfig" - -G2CONF="${G2CONF} --with-keymap-path=/usr/share/rdesktop/keymaps/" - -DOCS="AUTHORS ChangeLog NEWS README TODO" - -src_unpack() { - gnome2_src_unpack - - # Correct icon path. See bug #50295. - sed -e 's:Icon=.*:Icon=grdesktop/icon.png:' \ - -i grdesktop.desktop || die "sed 1 failed" - - sed -e 's/\(GETTEXT_PACKAGE = \)@GETTEXT_PACKAGE@/\1grdesktop/g' \ - -i po/Makefile.in.in || die "sed 2 failed" -} diff --git a/net-misc/iperf/iperf-3.0.7.ebuild b/net-misc/iperf/iperf-3.0.7.ebuild index cb61cc460900..4eaea462813f 100644 --- a/net-misc/iperf/iperf-3.0.7.ebuild +++ b/net-misc/iperf/iperf-3.0.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/iperf/iperf-3.0.7.ebuild,v 1.4 2014/10/09 08:05:12 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/iperf/iperf-3.0.7.ebuild,v 1.5 2014/10/10 10:54:04 ago Exp $ EAPI=5 inherit autotools eutils @@ -10,7 +10,7 @@ LICENSE="BSD" SLOT="3" HOMEPAGE="https://github.com/esnet/iperf/" SRC_URI="https://codeload.github.com/esnet/${PN}/tar.gz/${PV} -> ${P}.tar.gz" -KEYWORDS="amd64 ~arm hppa ~mips ppc ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~m68k-mint" +KEYWORDS="amd64 ~arm hppa ~mips ppc ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~m68k-mint" IUSE="static-libs" src_prepare() { diff --git a/net-misc/lldpd/lldpd-0.7.9-r3.ebuild b/net-misc/lldpd/lldpd-0.7.9-r3.ebuild index 90238ac0e4a6..5ba49a6d1bb5 100644 --- a/net-misc/lldpd/lldpd-0.7.9-r3.ebuild +++ b/net-misc/lldpd/lldpd-0.7.9-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/lldpd/lldpd-0.7.9-r3.ebuild,v 1.2 2014/10/09 09:54:59 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/lldpd/lldpd-0.7.9-r3.ebuild,v 1.3 2014/10/10 11:02:10 ago Exp $ EAPI=5 @@ -12,7 +12,7 @@ SRC_URI="http://media.luffy.cx/files/${PN}/${P}.tar.gz" LICENSE="ISC" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="cdp doc +dot1 +dot3 edp fdp graph json +lldpmed seccomp sonmp snmp static-libs readline xml" RDEPEND=">=dev-libs/libevent-2.0.5 diff --git a/net-misc/radvd/Manifest b/net-misc/radvd/Manifest index 6a277e78959c..1fc14c8d7573 100644 --- a/net-misc/radvd/Manifest +++ b/net-misc/radvd/Manifest @@ -1,4 +1,4 @@ DIST radvd-1.15.tar.gz 185528 SHA256 ba2e16bf0b2ac0030aacb0927304603f7ebbd317fdf30a24ee6f9ba06428391d SHA512 39d7ad22b25b36ab8079e9a48f50f69ea2be8a02d2e76638940c5eb769bf9291f28d275d7799296009e3c61bcb106c276bc5c60c9090951ea9f2dc7e00945ba7 WHIRLPOOL 3620518e71a243335cf8e064b4f3c45d80ec2e2d94748caa8ccaf3e0f317ffb3244ae719f07008abd65763f3ebc0110e2d5d5f570f1569b8377f70e0a9dfecc4 DIST radvd-1.9.8.tar.gz 176288 SHA256 645ccf1c9b16e769ff4179813712e580e2c8786d64a888d8afa1e296c057c1c1 SHA512 25ffa2fe1289ee826432ade3846aa5008e34ff9f0cbe954bf44ebae22198de59b40b7b4a70d19c74117b3280a7ca6a4bf740536f4a08e0bf169e760748548971 WHIRLPOOL 228182cb6fdc6065a728f679ee6d93286c48f186b209b6ff8d553f06317d0e799687c5abf0179cda5c42d2ca72ca32bdacbc31e0a14a06d18316a6538eb09017 -DIST radvd-2.3.tar.gz 200688 SHA256 d48e1262f57deeef8939d1a1b33a31e52bde754b367a55012dcf77d538d1c834 SHA512 e64b9e28b27e965f756475d0a96a6910be7d078f01d07c8d94b0003921f5a8eccf354d643a2fbb576c79ef720074e75b6454d9fb000d0811ebe9df4dae5d3c31 WHIRLPOOL 8f9710644198bd59a2049787b75733334da0c2402f12a2da67120b7c2434a0fc4185f12531694f95b7808cd08ee8e7b3d0dbbfb2385200a988b748c39c3b3a5c DIST radvd-2.5.tar.gz 201436 SHA256 942fb19342390045019f168535eadda268010df4dc9534fd46adc1a858418e1e SHA512 f1ff5bb3ae37dad76fce5937d2101cb88fa12938b8ceb950f22f7f5c5b7d1565a52ca0527892fe279ac7c0540d26652c2634f6aa674396efe6d7836dbbf4574f WHIRLPOOL cba6f12c2df48b32d21cc664e5e06a7a3958e29f141700f3b0774664746583639eecb50eb56440e64ab9ece5cf8b8d167032a277c7b03d2a7acabde26dfdef85 +DIST radvd-2.8.tar.gz 202261 SHA256 f668e190369132de8b425013e204f947cb02db3798fd2ba193f28d7fb237e050 SHA512 72f0c2e042bc9219af2776e2e307181bab526d3284917da469ce4481ba93433513889ccc48b77bc6b74c680252f984c319d032fdfdb5aabe40510b1eefb9f691 WHIRLPOOL bb056c5938cc2732035089a19ef6f567927962bf2f97e689edc5bded45cb1aa36f3ca9ed56b85c11593e06100e8fdd00d6e3da564c9e8514103d07203bf9677d diff --git a/net-misc/radvd/files/radvd.service b/net-misc/radvd/files/radvd.service index c964e6335734..16b6a275a3c1 100644 --- a/net-misc/radvd/files/radvd.service +++ b/net-misc/radvd/files/radvd.service @@ -4,12 +4,12 @@ Documentation=man:radvd(8) After=network.target [Service] -Type=simple +Type=forking ExecStart=/usr/sbin/radvd --username radvd --logmethod stderr --debug 1 ExecReload=/usr/sbin/radvd --configtest ; \ /bin/kill -HUP $MAINPID CPUSchedulingPolicy=idle -LimitNOFSIZE=0 +PIDFile=/run/radvd/radvd.pid [Install] WantedBy=multi-user.target diff --git a/net-misc/radvd/files/radvd.tmpfilesd b/net-misc/radvd/files/radvd.tmpfilesd new file mode 100644 index 000000000000..26f203d1aaa7 --- /dev/null +++ b/net-misc/radvd/files/radvd.tmpfilesd @@ -0,0 +1 @@ +d /run/radvd 0755 radvd radvd diff --git a/net-misc/radvd/radvd-2.3.ebuild b/net-misc/radvd/radvd-2.8.ebuild similarity index 70% rename from net-misc/radvd/radvd-2.3.ebuild rename to net-misc/radvd/radvd-2.8.ebuild index b06c0bf68d2a..48d27afb972e 100644 --- a/net-misc/radvd/radvd-2.3.ebuild +++ b/net-misc/radvd/radvd-2.8.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/radvd/radvd-2.3.ebuild,v 1.1 2014/07/30 22:12:53 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/radvd/radvd-2.8.ebuild,v 1.1 2014/10/10 14:27:28 xmw Exp $ EAPI=4 -inherit systemd user eutils +inherit systemd user eutils readme.gentoo DESCRIPTION="Linux IPv6 Router Advertisement Daemon" HOMEPAGE="http://v6web.litech.org/radvd/" @@ -47,20 +47,21 @@ src_install() { newconfd "${FILESDIR}"/${PN}.conf ${PN} systemd_dounit "${FILESDIR}"/${PN}.service + systemd_newtmpfilesd "${FILESDIR}"/${PN}.tmpfilesd ${PN}.conf if use kernel_FreeBSD ; then sed -i -e \ 's/^SYSCTL_FORWARD=.*$/SYSCTL_FORWARD=net.inet6.ip6.forwarding/g' \ "${D}"/etc/init.d/${PN} || die fi -} -pkg_postinst() { - einfo - elog "Please create a configuratoion ${ROOT}etc/radvd.conf." - elog "See ${ROOT}usr/share/doc/${PF} for an example." - einfo - elog "grsecurity users should allow a specific group to read /proc" - elog "and add the radvd user to that group, otherwise radvd may" - elog "segfault on startup." + readme.gentoo_create_doc } + +DISABLE_AUTOFORMATTING=1 +DOC_CONTENTS="Please create a configuratoion ${ROOT}etc/radvd.conf. +See ${ROOT}usr/share/doc/${PF} for an example. + +grsecurity users should allow a specific group to read /proc +and add the radvd user to that group, otherwise radvd may +segfault on startup." diff --git a/net-misc/whois/whois-5.1.5.ebuild b/net-misc/whois/whois-5.1.5.ebuild index 40c4feec9f64..82922bfc9c5e 100644 --- a/net-misc/whois/whois-5.1.5.ebuild +++ b/net-misc/whois/whois-5.1.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/whois/whois-5.1.5.ebuild,v 1.3 2014/10/08 00:54:01 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/whois/whois-5.1.5.ebuild,v 1.4 2014/10/10 20:13:11 maekke Exp $ EAPI=4 inherit eutils toolchain-funcs @@ -12,7 +12,7 @@ SRC_URI="mirror://debian/pool/main/w/whois/${MY_P}.tar.xz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux" IUSE="iconv idn nls" RESTRICT="test" #59327 diff --git a/net-p2p/bitcoin-cli/bitcoin-cli-0.9.3.ebuild b/net-p2p/bitcoin-cli/bitcoin-cli-0.9.3.ebuild index 63a09d0a0f33..0a7efa97f748 100644 --- a/net-p2p/bitcoin-cli/bitcoin-cli-0.9.3.ebuild +++ b/net-p2p/bitcoin-cli/bitcoin-cli-0.9.3.ebuild @@ -1,6 +1,6 @@ # Copyright 2010-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoin-cli/bitcoin-cli-0.9.3.ebuild,v 1.1 2014/10/02 10:32:23 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoin-cli/bitcoin-cli-0.9.3.ebuild,v 1.2 2014/10/10 11:12:50 blueness Exp $ EAPI=4 @@ -24,7 +24,7 @@ KEYWORDS="~amd64 ~arm ~x86" IUSE="" RDEPEND=" - >=dev-libs/boost-1.53.0[threads(+)] + >=dev-libs/boost-1.52.0[threads(+)] dev-libs/openssl:0[-bindist] " DEPEND="${RDEPEND}" diff --git a/net-p2p/bitcoin-qt/bitcoin-qt-0.9.3.ebuild b/net-p2p/bitcoin-qt/bitcoin-qt-0.9.3.ebuild index ff44e3157193..79f3e04de4fb 100644 --- a/net-p2p/bitcoin-qt/bitcoin-qt-0.9.3.ebuild +++ b/net-p2p/bitcoin-qt/bitcoin-qt-0.9.3.ebuild @@ -1,6 +1,6 @@ # Copyright 2010-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoin-qt/bitcoin-qt-0.9.3.ebuild,v 1.1 2014/10/02 10:21:52 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoin-qt/bitcoin-qt-0.9.3.ebuild,v 1.2 2014/10/10 11:30:23 blueness Exp $ EAPI=4 @@ -24,13 +24,14 @@ SRC_URI="https://github.com/${MyPN}/${MyPN}/archive/v${MyPV}.tar.gz -> ${MyPN}-v LICENSE="MIT ISC GPL-3 LGPL-2.1 public-domain || ( CC-BY-SA-3.0 LGPL-2.1 )" SLOT="0" KEYWORDS="~amd64 ~arm ~x86" -IUSE="$IUSE 1stclassmsg dbus kde +ljr +qrcode test upnp" +IUSE="$IUSE 1stclassmsg dbus kde ljr ljr-antispam +qrcode test upnp" REQUIRED_USE=" 1stclassmsg? ( ljr ) + ljr-antispam? ( ljr ) " RDEPEND=" - >=dev-libs/boost-1.53.0[threads(+)] + >=dev-libs/boost-1.52.0[threads(+)] dev-libs/openssl:0[-bindist] dev-libs/protobuf qrcode? ( @@ -55,6 +56,7 @@ S="${WORKDIR}/${MyP}" src_prepare() { if use ljr; then epatch "${WORKDIR}/${LJR_PATCH}" + use ljr-antispam || epatch "${FILESDIR}/0.9.x-ljr_noblacklist.patch" else epatch "${FILESDIR}/0.9.0-sys_leveldb.patch" fi @@ -94,7 +96,7 @@ src_configure() { $(use_with upnp miniupnpc) $(use_enable upnp upnp-default) \ $(use_with qrcode qrencode) \ $(use_enable test tests) \ - $(use_enable 1stclassmsg first-class-messaging) \ + $(usex ljr $(use_enable 1stclassmsg first-class-messaging)) \ --with-system-leveldb \ --without-cli --without-daemon \ --with-gui diff --git a/net-p2p/bitcoin-qt/files/0.9.x-ljr_noblacklist.patch b/net-p2p/bitcoin-qt/files/0.9.x-ljr_noblacklist.patch new file mode 100644 index 000000000000..35194662ecd2 --- /dev/null +++ b/net-p2p/bitcoin-qt/files/0.9.x-ljr_noblacklist.patch @@ -0,0 +1,12 @@ +diff --git a/src/script.cpp b/src/script.cpp +index 24bbbad..a60d8b6 100644 +--- a/src/script.cpp ++++ b/src/script.cpp +@@ -1870,6 +1870,7 @@ bool fIsBareMultisigStd = false; + + const char *CScript::IsBlacklisted() const + { ++ return false; + if (this->size() >= 7 && this->at(0) == OP_DUP) + { + // pay-to-pubkeyhash diff --git a/net-p2p/bitcoin-qt/metadata.xml b/net-p2p/bitcoin-qt/metadata.xml index e7016f32ade0..cb53a2afe7c9 100644 --- a/net-p2p/bitcoin-qt/metadata.xml +++ b/net-p2p/bitcoin-qt/metadata.xml @@ -13,6 +13,7 @@ Enable first-class Bitcoin message tools Enable Luke Dashjr's patches + Enable Luke Dashjr's address-based spam filter Enable generation of QR Codes for receiving payments diff --git a/net-p2p/bitcoind/bitcoind-0.9.3.ebuild b/net-p2p/bitcoind/bitcoind-0.9.3.ebuild index 422189c6ed7e..d479ed74a2cf 100644 --- a/net-p2p/bitcoind/bitcoind-0.9.3.ebuild +++ b/net-p2p/bitcoind/bitcoind-0.9.3.ebuild @@ -1,6 +1,6 @@ # Copyright 2010-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/bitcoind-0.9.3.ebuild,v 1.1 2014/10/02 10:11:03 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/bitcoind/bitcoind-0.9.3.ebuild,v 1.2 2014/10/10 11:37:31 blueness Exp $ EAPI=4 @@ -23,10 +23,13 @@ SRC_URI="https://github.com/${MyPN}/${MyPN}/archive/v${MyPV}.tar.gz -> ${MyPN}-v LICENSE="MIT ISC GPL-2" SLOT="0" KEYWORDS="~amd64 ~arm ~x86" -IUSE="examples +ljr logrotate test upnp +wallet" +IUSE="examples ljr ljr-antispam logrotate test upnp +wallet" +REQUIRED_USE=" + ljr-antispam? ( ljr ) +" RDEPEND=" - >=dev-libs/boost-1.53.0[threads(+)] + >=dev-libs/boost-1.52.0[threads(+)] dev-libs/openssl:0[-bindist] logrotate? ( app-admin/logrotate @@ -55,6 +58,7 @@ pkg_setup() { src_prepare() { if use ljr; then epatch "${WORKDIR}/${LJR_PATCH}" + use ljr-antispam || epatch "${FILESDIR}/0.9.x-ljr_noblacklist.patch" else epatch "${FILESDIR}/0.9.0-sys_leveldb.patch" fi diff --git a/net-p2p/bitcoind/files/0.9.x-ljr_noblacklist.patch b/net-p2p/bitcoind/files/0.9.x-ljr_noblacklist.patch new file mode 100644 index 000000000000..35194662ecd2 --- /dev/null +++ b/net-p2p/bitcoind/files/0.9.x-ljr_noblacklist.patch @@ -0,0 +1,12 @@ +diff --git a/src/script.cpp b/src/script.cpp +index 24bbbad..a60d8b6 100644 +--- a/src/script.cpp ++++ b/src/script.cpp +@@ -1870,6 +1870,7 @@ bool fIsBareMultisigStd = false; + + const char *CScript::IsBlacklisted() const + { ++ return false; + if (this->size() >= 7 && this->at(0) == OP_DUP) + { + // pay-to-pubkeyhash diff --git a/net-p2p/bitcoind/metadata.xml b/net-p2p/bitcoind/metadata.xml index 55f71df5bd2b..a3ca8995168d 100644 --- a/net-p2p/bitcoind/metadata.xml +++ b/net-p2p/bitcoind/metadata.xml @@ -12,6 +12,7 @@ Enable Luke Dashjr's patches + Enable Luke Dashjr's address-based spam filter Use app-admin/logrotate for rotating logs Enable Universal Plug and Play Enable wallet support diff --git a/net-p2p/gtk-gnutella/gtk-gnutella-1.1.1.ebuild b/net-p2p/gtk-gnutella/gtk-gnutella-1.1.1.ebuild index d7b063cee09c..d2acd8a43b90 100644 --- a/net-p2p/gtk-gnutella/gtk-gnutella-1.1.1.ebuild +++ b/net-p2p/gtk-gnutella/gtk-gnutella-1.1.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/gtk-gnutella/gtk-gnutella-1.1.1.ebuild,v 1.2 2014/10/09 08:05:07 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/gtk-gnutella/gtk-gnutella-1.1.1.ebuild,v 1.3 2014/10/10 10:53:44 ago Exp $ EAPI=5 @@ -14,7 +14,7 @@ HOMEPAGE="http://gtk-gnutella.sourceforge.net/" SLOT="0" LICENSE="GPL-2" -KEYWORDS="amd64 ~ppc ~x86 ~x86-fbsd" +KEYWORDS="amd64 ~ppc x86 ~x86-fbsd" RDEPEND=" dev-libs/glib:2 diff --git a/net-p2p/qbittorrent/Manifest b/net-p2p/qbittorrent/Manifest index fe316fb6bd1a..8127af57195b 100644 --- a/net-p2p/qbittorrent/Manifest +++ b/net-p2p/qbittorrent/Manifest @@ -1,3 +1,2 @@ -DIST qbittorrent-3.0.11.tar.gz 5097233 SHA256 bce32693c265bb330776337da6e88be3e5e50cf218b2fa8c5cd6c515e7158480 SHA512 f0350ae3db9b56d4fde67b538a5599058191300b90ec1a3708aacf68f5353be63c11f9699a84844ee00186aab9963c7daa4f7d1ed862520682be69e9173590a6 WHIRLPOOL a24f23934970420136a9bd6cebeafdda7e283d5c1118c9d85bdac3485afbb43c684dd9f22c85c8dd3e135e08a72d2766de7e345566d8267db11964454452c29b DIST qbittorrent-3.1.10.tar.xz 2349684 SHA256 e65dc14abe71e034d49787fed7a8715b1b49a5e64172d3cb4abbe49042a41876 SHA512 44f4a88fa4f57a6385b2c6aa603a6198ff4e12e244bf7d56ffb0447eaa84e6cf590f5782b2471efa55af55587b0b60541adb51da7227b8e61478e4f85de8639d WHIRLPOOL 8408af649ea7541a91e6c48cc05da4eeb896c60a28fb48f8f9bef85f4a20af188cca7aacbdaab70f42ceaa8589c53b3ecfdedc77cf0c973e231283bbd4561a5e DIST qbittorrent-3.1.9.2.tar.xz 2231708 SHA256 b07ccdbe1ae079f781c62aff21d47183ae35a8d4e96f43f90503978d1830a361 SHA512 8437fb695fb720132d131e44727c28af46c651576d5321423142c190120c59cc6439f5df2e90486274956d253db657fcbd217a834e3ca53d7681919fee7a2504 WHIRLPOOL e4b00027a57fbce49a9ddcaf6e60fccfabb65393531620afa0416249148e9e17d43398a1016fcf04695d0fa7d0a7b970e5beee0a4ab4e6ff06e6f8c23c90154f diff --git a/net-p2p/qbittorrent/qbittorrent-3.0.11.ebuild b/net-p2p/qbittorrent/qbittorrent-3.0.11.ebuild deleted file mode 100644 index 866103d3bdff..000000000000 --- a/net-p2p/qbittorrent/qbittorrent-3.0.11.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/qbittorrent-3.0.11.ebuild,v 1.3 2013/09/06 20:40:10 hwoarang Exp $ - -EAPI=5 -PYTHON_COMPAT=( python{2_6,2_7} ) - -inherit python-r1 qt4-r2 - -MY_P="${P/_/}" -DESCRIPTION="BitTorrent client in C++ and Qt" -HOMEPAGE="http://www.qbittorrent.org/" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm x86" -IUSE="dbus +X geoip" - -# python-2 is a runtime dep only, for the search engine (see INSTALL file) -CDEPEND="dev-libs/boost - dev-qt/qtcore:4 - >=net-libs/rb_libtorrent-0.16.3 - X? ( dev-qt/qtgui:4 ) - dbus? ( dev-qt/qtdbus:4 )" -DEPEND="${CDEPEND} - virtual/pkgconfig" -RDEPEND="${CDEPEND} - ${PYTHON_DEPS} - geoip? ( dev-libs/geoip )" - -DOCS="AUTHORS Changelog NEWS README TODO" -S="${WORKDIR}/${MY_P}" - -src_prepare() { - # Respect LDFLAGS - sed -i -e 's/-Wl,--as-needed/$(LDFLAGS)/g' src/src.pro - qt4-r2_src_prepare -} - -src_configure() { - local myconf - use X || myconf+=" --disable-gui" - use geoip || myconf+=" --disable-geoip-database" - use dbus || myconf+=" --disable-qt-dbus" - - # econf fails, since this uses qconf - ./configure --prefix=/usr --qtdir=/usr \ - --with-libboost-inc=/usr/include/boost \ - ${myconf} || die "configure failed" - eqmake4 -} diff --git a/net-p2p/qbittorrent/qbittorrent-3.1.9.2-r1.ebuild b/net-p2p/qbittorrent/qbittorrent-3.1.9.2-r1.ebuild index 01eba105645d..5604b930da69 100644 --- a/net-p2p/qbittorrent/qbittorrent-3.1.9.2-r1.ebuild +++ b/net-p2p/qbittorrent/qbittorrent-3.1.9.2-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/qbittorrent-3.1.9.2-r1.ebuild,v 1.2 2014/10/09 09:54:39 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/qbittorrent/qbittorrent-3.1.9.2-r1.ebuild,v 1.3 2014/10/10 11:02:59 ago Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7} ) @@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.xz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ~arm ~x86" +KEYWORDS="amd64 ~arm x86" IUSE="dbus debug geoip +X" diff --git a/net-p2p/rtorrent/rtorrent-0.9.3.ebuild b/net-p2p/rtorrent/rtorrent-0.9.3.ebuild index b22e36ebd633..3e993c88cc79 100644 --- a/net-p2p/rtorrent/rtorrent-0.9.3.ebuild +++ b/net-p2p/rtorrent/rtorrent-0.9.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.9.3.ebuild,v 1.3 2014/09/11 18:35:09 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.9.3.ebuild,v 1.4 2014/10/10 15:24:48 ago Exp $ EAPI=4 @@ -12,7 +12,7 @@ SRC_URI="http://libtorrent.rakshasa.no/downloads/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris" +KEYWORDS="amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris" IUSE="daemon debug ipv6 selinux test xmlrpc" COMMON_DEPEND="~net-libs/libtorrent-0.13.${PV##*.} diff --git a/net-proxy/haproxy/haproxy-1.5.4.ebuild b/net-proxy/haproxy/haproxy-1.5.4.ebuild index 8a8ff06a289f..f2bad94b999c 100644 --- a/net-proxy/haproxy/haproxy-1.5.4.ebuild +++ b/net-proxy/haproxy/haproxy-1.5.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/haproxy/haproxy-1.5.4.ebuild,v 1.2 2014/10/09 08:05:32 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/haproxy/haproxy-1.5.4.ebuild,v 1.3 2014/10/10 10:55:37 ago Exp $ EAPI="5" @@ -14,7 +14,7 @@ SRC_URI="http://haproxy.1wt.eu/download/$(get_version_component_range 1-2)/src/$ LICENSE="GPL-2 LGPL-2.1" SLOT="0" -KEYWORDS="amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc x86" IUSE="+crypt examples +pcre ssl tools vim-syntax +zlib" DEPEND="pcre? ( dev-libs/libpcre ) diff --git a/net-proxy/squid/squid-3.3.13-r1.ebuild b/net-proxy/squid/squid-3.3.13-r1.ebuild index 4d0ee0abe92b..ad4081f82346 100644 --- a/net-proxy/squid/squid-3.3.13-r1.ebuild +++ b/net-proxy/squid/squid-3.3.13-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/squid/squid-3.3.13-r1.ebuild,v 1.7 2014/10/05 15:06:11 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/squid/squid-3.3.13-r1.ebuild,v 1.8 2014/10/10 20:09:05 maekke Exp $ EAPI=5 inherit autotools eutils linux-info pam toolchain-funcs user versionator @@ -11,7 +11,7 @@ SRC_URI="http://www.squid-cache.org/Versions/v3/3.3/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 ~x86-fbsd" IUSE="caps ipv6 pam ldap samba sasl kerberos nis radius ssl snmp selinux logrotate test \ ecap icap-client ssl-crtd \ mysql postgres sqlite \ diff --git a/net-voip/vidyodesktop/Manifest b/net-voip/vidyodesktop/Manifest new file mode 100644 index 000000000000..f0b2df607a84 --- /dev/null +++ b/net-voip/vidyodesktop/Manifest @@ -0,0 +1,2 @@ +DIST VidyoDesktopInstaller-sl5-TAG_VD_3_3_0_027.rpm 11903254 SHA256 a898b90284566f4de28a5ee376c6205ba49c894b5161343f34056cd8ed4c4746 SHA512 358b9891a2833d22c416973afb0bc1eb1d2d0d80d6bfa225cd69f3d827b354c888e0e4e58f738e1d1d340008cd486a6f2182492ddbe04a8ddf489cedb8be963e WHIRLPOOL 415e7c12c30adbd91d4df64f6c4afc9555bc34170b38570177a97e2cdcbac0c82f5b76b17e70e05cbeafff50cce7f334f71a4b18ccd54ea246b13745623f6c8b +DIST VidyoDesktopInstaller-sl564-TAG_VD_3_3_0_027.rpm 13651843 SHA256 e7718faac67ec1c3743afd18db01ae3003eff4af3f2ad385a48440eb8fca81d5 SHA512 c4aa21c8d0fbc4c7082f0cfa39ea5aa62d7d32ea5883199058debe9c34f68868bbef6d69040661cf8b6a9556fdbaadb59303354ee44094cbfdcd517a67caa08b WHIRLPOOL 2c74ab0fe3dff7bdb39033f80279008879e44c3bc698cedb930509c5467a67b8da34e086f0408f485340ea9103936592a4ff3e3dca9dd06d0f9e5359e43f0f78 diff --git a/net-voip/vidyodesktop/metadata.xml b/net-voip/vidyodesktop/metadata.xml new file mode 100644 index 000000000000..e02f1550f78f --- /dev/null +++ b/net-voip/vidyodesktop/metadata.xml @@ -0,0 +1,11 @@ + + + + +prometheanfire@gentoo.org +Matthew Thode + + +A client used to connect to a Vidyo server to facilitate face to face communications. + + diff --git a/net-voip/vidyodesktop/vidyodesktop-3.3.0.027.ebuild b/net-voip/vidyodesktop/vidyodesktop-3.3.0.027.ebuild new file mode 100644 index 000000000000..018623b80aa8 --- /dev/null +++ b/net-voip/vidyodesktop/vidyodesktop-3.3.0.027.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-voip/vidyodesktop/vidyodesktop-3.3.0.027.ebuild,v 1.1 2014/10/10 16:16:37 prometheanfire Exp $ + +EAPI=5 + +inherit eutils versionator rpm + +DESCRIPTION="Enterprise video conferencing platform" +HOMEPAGE="http://www.vidyo.com/" +SRC_URI=" + amd64? ( https://demo.vidyo.com/upload/VidyoDesktopInstaller-sl564-TAG_VD_$(replace_all_version_separators _).rpm ) + x86? ( https://demo.vidyo.com/upload/VidyoDesktopInstaller-sl5-TAG_VD_$(replace_all_version_separators _).rpm ) +" + +LICENSE="Vidyo-EULA" +SLOT="0" +RESTRICT="mirror strip" +KEYWORDS="~amd64 ~x86" +IUSE="" + +S="${WORKDIR}" + +QA_PREBUILT="/opt/vidyo/VidyoDesktop/VidyoDesktopInstallHelper + /opt/vidyo/VidyoDesktop/RenderCheck + /opt/vidyo/VidyoDesktop/VidyoDesktop" + +DEPEND="" +RDEPEND=" + app-arch/bzip2 + dev-libs/expat + dev-libs/glib + dev-libs/libffi + media-libs/alsa-lib + media-libs/fontconfig + media-libs/freetype + media-libs/glu + media-libs/libpng + media-libs/mesa + net-dns/libidn + sys-libs/zlib + x11-libs/libdrm + x11-libs/libICE + x11-libs/libSM + x11-libs/libX11 + x11-libs/libXau + x11-libs/libxcb + x11-libs/libXdamage + x11-libs/libXdmcp + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXrandr + x11-libs/libXrender + x11-libs/libXScrnSaver + x11-libs/libXv + x11-libs/libXxf86vm +" + +src_install() { + cp -a opt "${D}" + doicon usr/share/pixmaps/vidyo_icon.png + dodoc opt/vidyo/VidyoDesktop/license.txt + rm "${D}opt/vidyo/VidyoDesktop/license.txt" + exeinto /opt/bin + doexe usr/bin/VidyoDesktop + make_desktop_entry VidyoDesktop VidyoDesktop vidyo_icon 'AudioVideo;Network;' +} diff --git a/net-wireless/hostapd/Manifest b/net-wireless/hostapd/Manifest index 56da7934b7bb..65bdab9ade33 100644 --- a/net-wireless/hostapd/Manifest +++ b/net-wireless/hostapd/Manifest @@ -1,2 +1,2 @@ DIST hostapd-2.0.tar.gz 1376203 SHA256 262ce394b930bccc3d65fb99ee380f28d36444978f524c845a98e8e29f4e9d35 SHA512 25fddaaddb22903078cfaae29a1e955b60955f9f5542b52962a6a8d4c65146ca102e9ac085118ce422843c55349a74a019220dfd4926895e301d506dbc97b967 WHIRLPOOL e5ae2e760770d2f307b1c4235c9b0c9d25e1719a1d174efa30ce6bbbc07b5c46d5f7babc087b8f450f3b485fb640728ddd23761fb292bcd535ef38dc10ac1d45 -DIST hostapd-2.2.tar.gz 1586482 SHA256 f15b6bcb434378860ea5b88dffed7f54d8cb71fff2146de0f006977a5e25a882 SHA512 d232442bed447218bcdee820c3ffcb1f87e0fe32c1ece8667c7ce411f7647a53dd19ead5570d5dec275da8cbdee10d5d8545cb6d44eba143bb6beb581594f696 WHIRLPOOL 7b88c14f9714c28d7b6d2cf3007a9e07aa1e5393dcc4e3b234307bbd07844c44c456fc5b01fb11a5d26f47e22d66625f93bfa5bae1359c4e4c8fd59258117c56 +DIST hostapd-2.3.tar.gz 1592480 SHA256 c94c2b76876fad4c80a1063a06f958a2189ba5003475016fa7658a1ca49bb4df SHA512 e54a3117a86393fc6374c3284f1ec52530d09c33e24f9ff943fd6f277f6140b666f0e5e4ac3a972916ed5c1fe2c7d88b59a416bb5fc451608dae1b33dd3cdffb WHIRLPOOL f32a3ec4609306ab250157e680bb19c4da873de6a542baef552882e6b381aaab851da932dccfbe0e1c26ff491c8984f12300b315a204e1daca5aa02f4b510c64 diff --git a/net-wireless/hostapd/hostapd-2.2-r2.ebuild b/net-wireless/hostapd/hostapd-2.3.ebuild similarity index 98% rename from net-wireless/hostapd/hostapd-2.2-r2.ebuild rename to net-wireless/hostapd/hostapd-2.3.ebuild index b4ca926a7552..e4a32ab08541 100644 --- a/net-wireless/hostapd/hostapd-2.2-r2.ebuild +++ b/net-wireless/hostapd/hostapd-2.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/hostapd/hostapd-2.2-r2.ebuild,v 1.1 2014/09/13 15:04:53 gurligebis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-wireless/hostapd/hostapd-2.3.ebuild,v 1.1 2014/10/10 18:49:52 gurligebis Exp $ EAPI="4" diff --git a/net-wireless/wpa_supplicant/Manifest b/net-wireless/wpa_supplicant/Manifest index 267275bb5a76..022a1cfdc817 100644 --- a/net-wireless/wpa_supplicant/Manifest +++ b/net-wireless/wpa_supplicant/Manifest @@ -1,2 +1,3 @@ DIST wpa_supplicant-2.0.tar.gz 2044281 SHA256 2c115609fbb5223d51381084a5c944455a8afcda81d584173ff55ba233379e09 SHA512 c3a599e1dfa5e0bb4b8d35ed49501696ce68c807ff458c1e3bff9ed5619c780f7117c6d8d7cb9a11351e9fad27cf83fc114f255c92552e7ba084de70c5f8e254 WHIRLPOOL 603f9ac54505166690516a0f1e3112a8279a7184a54066699ad24b1f6269ad90c46a01a87d23bb62df782cdf561aa6f8b5a11e7ee59914cb36be8daea470389e DIST wpa_supplicant-2.2.tar.gz 2382570 SHA256 e0d8b8fd68a659636eaba246bb2caacbf53d22d53b2b6b90eb4b4fef0993c8ed SHA512 34dd3eb2c7c65baadbd8108cfb879be5b68e70d925fe65cda566bcfb9bcc31b3e2c521ee719d056d2b4f7fd17a8d387ee1217cb4ebbbaf384962bbcbc27ea57a WHIRLPOOL e53c55e23760b8d8a60845e9dcdc926e7c9672ad06c1494f1a931f916f4f6c77b51c13cbcf5f5ffc4c9fd8a0b7ac5292d0ecd6daca4480cbe931ae44857a06a8 +DIST wpa_supplicant-2.3.tar.gz 2398722 SHA256 eaaa5bf3055270e521b2dff64f2d203ec8040f71958b8588269a82c00c9d7b6a SHA512 dc64c0ff5581ca36e9c41f7663883d5bf6626a4418423233fa69b2c4b57c24fa120e0699c95613152be7775835a45bd9edbe5cc95456ac3ce699b546ddaee71e WHIRLPOOL 015a19f5fcbc144ccf1b695b67aa6d5cf0cd127ed1306808ed94d422224e16978046e4b3cb5edcec46736ddde8926341c8df8f4a5dfa41f52438d6bea3e49e40 diff --git a/net-wireless/wpa_supplicant/files/wpa_supplicant-2.3-dbus-path-fix.patch b/net-wireless/wpa_supplicant/files/wpa_supplicant-2.3-dbus-path-fix.patch new file mode 100644 index 000000000000..976d71b0ec39 --- /dev/null +++ b/net-wireless/wpa_supplicant/files/wpa_supplicant-2.3-dbus-path-fix.patch @@ -0,0 +1,20 @@ +diff -aurp a/wpa_supplicant/dbus/fi.epitest.hostap.WPASupplicant.service.in b/wpa_supplicant/dbus/fi.epitest.hostap.WPASupplicant.service.in +--- a/wpa_supplicant/dbus/fi.epitest.hostap.WPASupplicant.service.in 2012-05-15 09:00:03.048545044 +0000 ++++ b/wpa_supplicant/dbus/fi.epitest.hostap.WPASupplicant.service.in 2012-05-15 09:01:19.759550509 +0000 +@@ -1,5 +1,5 @@ + [D-BUS Service] + Name=fi.epitest.hostap.WPASupplicant +-Exec=@BINDIR@/wpa_supplicant -u ++Exec=/usr/sbin/wpa_supplicant -u + User=root + SystemdService=wpa_supplicant.service +diff -aurp a/wpa_supplicant/dbus/fi.w1.wpa_supplicant1.service.in b/wpa_supplicant/dbus/fi.w1.wpa_supplicant1.service.in +--- a/wpa_supplicant/dbus/fi.w1.wpa_supplicant1.service.in 2012-05-15 09:00:03.048545044 +0000 ++++ b/wpa_supplicant/dbus/fi.w1.wpa_supplicant1.service.in 2012-05-15 09:01:28.727551913 +0000 +@@ -1,5 +1,5 @@ + [D-BUS Service] + Name=fi.w1.wpa_supplicant1 +-Exec=@BINDIR@/wpa_supplicant -u ++Exec=/usr/sbin/wpa_supplicant -u + User=root + SystemdService=wpa_supplicant.service diff --git a/net-wireless/wpa_supplicant/files/wpa_supplicant-2.3-do-not-call-dbus-functions-with-NULL-path.patch b/net-wireless/wpa_supplicant/files/wpa_supplicant-2.3-do-not-call-dbus-functions-with-NULL-path.patch new file mode 100644 index 000000000000..bbff73e13d42 --- /dev/null +++ b/net-wireless/wpa_supplicant/files/wpa_supplicant-2.3-do-not-call-dbus-functions-with-NULL-path.patch @@ -0,0 +1,60 @@ +diff -aurp a/wpa_supplicant/dbus/dbus_new_helpers.c b/wpa_supplicant/dbus/dbus_new_helpers.c +--- a/wpa_supplicant/dbus/dbus_new_helpers.c 2012-05-15 07:28:37.616150164 +0000 ++++ b/wpa_supplicant/dbus/dbus_new_helpers.c 2012-05-15 07:30:21.904157611 +0000 +@@ -882,7 +882,7 @@ void wpa_dbus_mark_property_changed(stru + const struct wpa_dbus_property_desc *dsc; + int i = 0; + +- if (iface == NULL) ++ if (iface == NULL || path == NULL) + return; + + dbus_connection_get_object_path_data(iface->con, path, +diff -aurp a/wpa_supplicant/dbus/dbus_old.c b/wpa_supplicant/dbus/dbus_old.c +--- a/wpa_supplicant/dbus/dbus_old.c 2012-05-15 07:28:29.502149373 +0000 ++++ b/wpa_supplicant/dbus/dbus_old.c 2012-05-15 07:30:48.859162441 +0000 +@@ -379,7 +379,7 @@ void wpa_supplicant_dbus_notify_scan_res + DBusMessage *_signal; + + /* Do nothing if the control interface is not turned on */ +- if (iface == NULL) ++ if (iface == NULL || wpa_s->dbus_path == NULL) + return; + + _signal = dbus_message_new_signal(wpa_s->dbus_path, +@@ -419,7 +419,7 @@ void wpa_supplicant_dbus_notify_state_ch + if (wpa_s->global == NULL) + return; + iface = wpa_s->global->dbus; +- if (iface == NULL) ++ if (iface == NULL || wpa_s->dbus_path == NULL) + return; + + /* Only send signal if state really changed */ +@@ -478,7 +478,7 @@ void wpa_supplicant_dbus_notify_scanning + dbus_bool_t scanning = wpa_s->scanning ? TRUE : FALSE; + + /* Do nothing if the control interface is not turned on */ +- if (iface == NULL) ++ if (iface == NULL || wpa_s->dbus_path == NULL) + return; + + _signal = dbus_message_new_signal(wpa_s->dbus_path, +@@ -513,7 +513,7 @@ void wpa_supplicant_dbus_notify_wps_cred + if (wpa_s->global == NULL) + return; + iface = wpa_s->global->dbus; +- if (iface == NULL) ++ if (iface == NULL || wpa_s->dbus_path == NULL) + return; + + _signal = dbus_message_new_signal(wpa_s->dbus_path, +@@ -564,7 +564,7 @@ void wpa_supplicant_dbus_notify_certific + if (wpa_s->global == NULL) + return; + iface = wpa_s->global->dbus; +- if (iface == NULL) ++ if (iface == NULL || wpa_s->dbus_path == NULL) + return; + + _signal = dbus_message_new_signal(wpa_s->dbus_path, diff --git a/net-wireless/wpa_supplicant/files/wpa_supplicant-2.3-fix-undefined-reference-to-random_get_bytes.patch b/net-wireless/wpa_supplicant/files/wpa_supplicant-2.3-fix-undefined-reference-to-random_get_bytes.patch new file mode 100644 index 000000000000..def43a2ae314 --- /dev/null +++ b/net-wireless/wpa_supplicant/files/wpa_supplicant-2.3-fix-undefined-reference-to-random_get_bytes.patch @@ -0,0 +1,19 @@ +diff -Naur a/src/eap_peer/Makefile b/src/eap_peer/Makefile +--- a/src/eap_peer/Makefile 2013-05-17 09:51:55.000000000 +0000 ++++ b/src/eap_peer/Makefile 2013-05-17 09:54:03.010830904 +0000 +@@ -36,6 +36,7 @@ + OBJS_both += ../utils/wpa_debug.o + OBJS_both += ../utils/base64.o + OBJS_both += ../utils/wpabuf.o ++OBJS_both += ../utils/eloop.o + OBJS_both += ../crypto/md5.o + ifneq ($(CONFIG_TLS), openssl) + OBJS_both += ../crypto/sha1.o +@@ -48,6 +49,7 @@ + OBJS_both += ../crypto/aes-omac1.o + OBJS_both += ../crypto/ms_funcs.o + OBJS_both += ../crypto/sha256.o ++OBJS_both += ../crypto/random.o + + + OBJS_both += ../eap_common/eap_peap_common.o diff --git a/net-wireless/wpa_supplicant/files/wpa_supplicant-2.3-generate-libeap-peer.patch b/net-wireless/wpa_supplicant/files/wpa_supplicant-2.3-generate-libeap-peer.patch new file mode 100644 index 000000000000..391338b302cd --- /dev/null +++ b/net-wireless/wpa_supplicant/files/wpa_supplicant-2.3-generate-libeap-peer.patch @@ -0,0 +1,349 @@ +diff -Naurp a/src/eap_peer/eap_methods.c b/src/eap_peer/eap_methods.c +--- a/src/eap_peer/eap_methods.c 2012-05-15 08:23:17.151386999 +0000 ++++ b/src/eap_peer/eap_methods.c 2012-05-15 08:23:57.403389760 +0000 +@@ -342,6 +342,120 @@ int eap_peer_method_register(struct eap_ + + + /** ++ * eap_peer_register_methods - Register all known EAP peer methods ++ * ++ * This function is called at program start to register all compiled ++ * in EAP peer methods. ++ */ ++int eap_peer_register_methods(void) ++{ ++ int ret = 0; ++ ++#ifdef EAP_MD5 ++ if (ret == 0) ++ ret = eap_peer_md5_register(); ++#endif /* EAP_MD5 */ ++ ++#ifdef EAP_TLS ++ if (ret == 0) ++ ret = eap_peer_tls_register(); ++#endif /* EAP_TLS */ ++ ++#ifdef EAP_MSCHAPv2 ++ if (ret == 0) ++ ret = eap_peer_mschapv2_register(); ++#endif /* EAP_MSCHAPv2 */ ++ ++#ifdef EAP_PEAP ++ if (ret == 0) ++ ret = eap_peer_peap_register(); ++#endif /* EAP_PEAP */ ++ ++#ifdef EAP_TTLS ++ if (ret == 0) ++ ret = eap_peer_ttls_register(); ++#endif /* EAP_TTLS */ ++ ++#ifdef EAP_GTC ++ if (ret == 0) ++ ret = eap_peer_gtc_register(); ++#endif /* EAP_GTC */ ++ ++#ifdef EAP_OTP ++ if (ret == 0) ++ ret = eap_peer_otp_register(); ++#endif /* EAP_OTP */ ++ ++#ifdef EAP_SIM ++ if (ret == 0) ++ ret = eap_peer_sim_register(); ++#endif /* EAP_SIM */ ++ ++#ifdef EAP_LEAP ++ if (ret == 0) ++ ret = eap_peer_leap_register(); ++#endif /* EAP_LEAP */ ++ ++#ifdef EAP_PSK ++ if (ret == 0) ++ ret = eap_peer_psk_register(); ++#endif /* EAP_PSK */ ++ ++#ifdef EAP_AKA ++ if (ret == 0) ++ ret = eap_peer_aka_register(); ++#endif /* EAP_AKA */ ++ ++#ifdef EAP_AKA_PRIME ++ if (ret == 0) ++ ret = eap_peer_aka_prime_register(); ++#endif /* EAP_AKA_PRIME */ ++ ++#ifdef EAP_FAST ++ if (ret == 0) ++ ret = eap_peer_fast_register(); ++#endif /* EAP_FAST */ ++ ++#ifdef EAP_PAX ++ if (ret == 0) ++ ret = eap_peer_pax_register(); ++#endif /* EAP_PAX */ ++ ++#ifdef EAP_SAKE ++ if (ret == 0) ++ ret = eap_peer_sake_register(); ++#endif /* EAP_SAKE */ ++ ++#ifdef EAP_GPSK ++ if (ret == 0) ++ ret = eap_peer_gpsk_register(); ++#endif /* EAP_GPSK */ ++ ++#ifdef EAP_WSC ++ if (ret == 0) ++ ret = eap_peer_wsc_register(); ++#endif /* EAP_WSC */ ++ ++#ifdef EAP_IKEV2 ++ if (ret == 0) ++ ret = eap_peer_ikev2_register(); ++#endif /* EAP_IKEV2 */ ++ ++#ifdef EAP_VENDOR_TEST ++ if (ret == 0) ++ ret = eap_peer_vendor_test_register(); ++#endif /* EAP_VENDOR_TEST */ ++ ++#ifdef EAP_TNC ++ if (ret == 0) ++ ret = eap_peer_tnc_register(); ++#endif /* EAP_TNC */ ++ ++ return ret; ++} ++ ++ ++/** + * eap_peer_unregister_methods - Unregister EAP peer methods + * + * This function is called at program termination to unregister all EAP peer +diff -Naurp a/src/eap_peer/eap_methods.h b/src/eap_peer/eap_methods.h +--- a/src/eap_peer/eap_methods.h 2012-05-15 08:23:17.151386999 +0000 ++++ b/src/eap_peer/eap_methods.h 2012-05-15 08:23:57.404389735 +0000 +@@ -32,6 +32,7 @@ EapType eap_peer_get_type(const char *na + const char * eap_get_name(int vendor, EapType type); + size_t eap_get_names(char *buf, size_t buflen); + char ** eap_get_names_as_string_array(size_t *num); ++int eap_peer_register_methods(void); + void eap_peer_unregister_methods(void); + + #else /* IEEE8021X_EAPOL */ +diff -Naurp a/src/eap_peer/libeap0.pc b/src/eap_peer/libeap0.pc +--- a/src/eap_peer/libeap0.pc 1970-01-01 00:00:00.000000000 +0000 ++++ b/src/eap_peer/libeap0.pc 2012-05-15 08:23:57.404389735 +0000 +@@ -0,0 +1,10 @@ ++prefix=/usr ++exec_prefix=/usr ++libdir=${exec_prefix}/lib ++includedir=${prefix}/include/eap_peer ++ ++Name: libeap0 ++Description: EAP Peer Library API ++Version: 0.7.2 ++Libs: -L${libdir} -leap ++Cflags: -I${includedir} +diff -Naurp a/src/eap_peer/Makefile b/src/eap_peer/Makefile +--- a/src/eap_peer/Makefile 2012-05-15 08:23:17.152386964 +0000 ++++ b/src/eap_peer/Makefile 2012-05-15 08:23:57.403389760 +0000 +@@ -1,11 +1,188 @@ +-all: +- @echo Nothing to be made. ++LIBEAP_NAME = libeap ++LIBEAP_CURRENT = 0 ++LIBEAP_REVISION = 0 ++LIBEAP_AGE = 0 ++ ++LIBEAP = $(LIBEAP_NAME).so.$(LIBEAP_CURRENT).$(LIBEAP_REVISION).$(LIBEAP_AGE) ++LIBEAP_SO = $(LIBEAP_NAME).so.$(LIBEAP_CURRENT) ++ ++.PHONY: all clean install uninstall ++ ++all: $(LIBEAP) ++ ++ifndef CC ++CC=gcc ++endif ++ ++ifndef CFLAGS ++CFLAGS = -MMD -O0 -Wall -g ++endif ++ ++CONFIG_TLS=openssl ++ ++INCLUDE_INSTALL_DIR=/usr/include/eap_peer ++ ++# Got to use override all across the board, otherwise a 'make ++# CFLAGS=XX' will kill us because the command line's CFLAGS will ++# overwrite Make's and we'll loose all the infrastructure it sets. ++override CFLAGS += -I. -I.. -I../crypto -I../utils -I../common ++ ++# at least for now, need to include config_ssid.h and config_blob.h from ++# wpa_supplicant directory ++override CFLAGS += -I ../../wpa_supplicant ++ ++OBJS_both += ../utils/common.o ++OBJS_both += ../utils/os_unix.o ++OBJS_both += ../utils/wpa_debug.o ++OBJS_both += ../utils/base64.o ++OBJS_both += ../utils/wpabuf.o ++OBJS_both += ../crypto/md5.o ++ifneq ($(CONFIG_TLS), openssl) ++OBJS_both += ../crypto/sha1.o ++endif ++OBJS_both += ../crypto/sha1-tlsprf.o ++OBJS_both += ../crypto/aes-encblock.o ++OBJS_both += ../crypto/aes-wrap.o ++OBJS_both += ../crypto/aes-ctr.o ++OBJS_both += ../crypto/aes-eax.o ++OBJS_both += ../crypto/aes-omac1.o ++OBJS_both += ../crypto/ms_funcs.o ++OBJS_both += ../crypto/sha256.o ++ ++ ++OBJS_both += ../eap_common/eap_peap_common.o ++OBJS_both += ../eap_common/eap_psk_common.o ++OBJS_both += ../eap_common/eap_pax_common.o ++OBJS_both += ../eap_common/eap_sake_common.o ++OBJS_both += ../eap_common/eap_gpsk_common.o ++OBJS_both += ../eap_common/chap.o ++ ++OBJS_peer += ../eap_peer/eap_tls.o ++OBJS_peer += ../eap_peer/eap_peap.o ++OBJS_peer += ../eap_peer/eap_ttls.o ++OBJS_peer += ../eap_peer/eap_md5.o ++OBJS_peer += ../eap_peer/eap_mschapv2.o ++OBJS_peer += ../eap_peer/mschapv2.o ++OBJS_peer += ../eap_peer/eap_otp.o ++OBJS_peer += ../eap_peer/eap_gtc.o ++OBJS_peer += ../eap_peer/eap_leap.o ++OBJS_peer += ../eap_peer/eap_psk.o ++OBJS_peer += ../eap_peer/eap_pax.o ++OBJS_peer += ../eap_peer/eap_sake.o ++OBJS_peer += ../eap_peer/eap_gpsk.o ++OBJS_peer += ../eap_peer/eap.o ++OBJS_peer += ../eap_common/eap_common.o ++OBJS_peer += ../eap_peer/eap_methods.o ++OBJS_peer += ../eap_peer/eap_tls_common.o ++ ++override CFLAGS += -DEAP_TLS ++override CFLAGS += -DEAP_PEAP ++override CFLAGS += -DEAP_TTLS ++override CFLAGS += -DEAP_MD5 ++override CFLAGS += -DEAP_MSCHAPv2 ++override CFLAGS += -DEAP_GTC ++override CFLAGS += -DEAP_OTP ++override CFLAGS += -DEAP_LEAP ++override CFLAGS += -DEAP_PSK ++override CFLAGS += -DEAP_PAX ++override CFLAGS += -DEAP_SAKE ++override CFLAGS += -DEAP_GPSK -DEAP_GPSK_SHA256 ++override CFLAGS += -DEAP_TLS_FUNCS ++ ++override CFLAGS += -DIEEE8021X_EAPOL ++ ++ifeq ($(CONFIG_TLS), openssl) ++override CFLAGS += -DEAP_TLS_OPENSSL ++OBJS_both += ../crypto/tls_openssl.o ++OBJS_both += ../crypto/crypto_openssl.o ++LIBS += -lssl -lcrypto ++override CFLAGS += -DINTERNAL_SHA256 ++endif ++ ++ifeq ($(CONFIG_TLS), internal) ++OBJS_both += ../crypto/tls_internal.o ++OBJS_both += ../tls/tlsv1_common.o ../../tls/tlsv1_record.o ++OBJS_both += ../tls/tlsv1_cred.o ++OBJS_both += ../tls/asn1.o ../../tls/x509v3.o ++OBJS_both += ../crypto/crypto_internal.o ../../tls/rsa.o ../../tls/bignum.o ++ ++OBJS_peer += ../tls/tlsv1_client.o ++OBJS_peer += ../tls/tlsv1_client_write.o ../../tls/tlsv1_client_read.o ++override CFLAGS += -DCONFIG_TLS_INTERNAL_CLIENT ++ ++OBJS_server += ../tls/tlsv1_server.o ++OBJS_server += ../tls/tlsv1_server_write.o ../../tls/tlsv1_server_read.o ++override CFLAGS += -DCONFIG_TLS_INTERNAL_SERVER ++ ++override CFLAGS += -DCONFIG_TLS_INTERNAL ++override CFLAGS += -DCONFIG_CRYPTO_INTERNAL ++override CFLAGS += -DCONFIG_INTERNAL_X509 ++override CFLAGS += -DINTERNAL_AES ++override CFLAGS += -DINTERNAL_SHA1 ++override CFLAGS += -DINTERNAL_SHA256 ++override CFLAGS += -DINTERNAL_MD5 ++override CFLAGS += -DINTERNAL_MD4 ++override CFLAGS += -DINTERNAL_DES ++ifdef CONFIG_INTERNAL_LIBTOMMATH ++override CFLAGS += -DCONFIG_INTERNAL_LIBTOMMATH ++else ++LIBS += -ltommath ++endif ++endif ++ ++ifndef LDO ++LDO=$(CC) ++endif ++ ++ ++OBJS_lib=$(OBJS_both) $(OBJS_peer) ++ ++ #$(OBJS_server) ++ ++override CFLAGS += -fPIC -DPIC ++LDFLAGS += -shared ++ ++$(LIBEAP): $(OBJS_lib) ++ $(LDO) $(LDFLAGS) $(OBJS_lib) -Wl,-soname -Wl,$(LIBEAP_SO) -o $(LIBEAP) $(LIBS) ++ ++ ++UTIL_HEADERS = ../utils/includes.h ../utils/common.h \ ++ ../utils/wpabuf.h ../utils/build_config.h \ ++ ../utils/os.h ../utils/wpa_debug.h ++COMMON_HEADERS = ../common/defs.h ++EAP_COMMON_HEADERS = ../eap_common/eap_defs.h ++MAIN_HEADERS = eap.h eap_methods.h eap_config.h ++CRYPTO_HEADERS = ../crypto/tls.h ++ ++install: ++ ++ mkdir -p $(DESTDIR)/usr/lib ++# copy the lib file to std lib location ++ cp $(LIBEAP) $(DESTDIR)/usr/lib ++ ln -fs $(LIBEAP_SO) $(DESTDIR)/usr/lib/$(LIBEAP_NAME).so ++ ln -fs $(LIBEAP_NAME).so.0.0.0 $(DESTDIR)/usr/lib/$(LIBEAP_NAME).so.0 ++ ++# copy the headers reqd by apps using eap peer library in its own subfolder under /usr/include ++ mkdir -p \ ++ $(DESTDIR)/$(INCLUDE_INSTALL_DIR)/eap_common \ ++ $(DESTDIR)/$(INCLUDE_INSTALL_DIR)/common \ ++ $(DESTDIR)/$(INCLUDE_INSTALL_DIR)/util \ ++ $(DESTDIR)/$(INCLUDE_INSTALL_DIR)/crypto ++ install -m 0644 $(EAP_COMMON_HEADERS) $(DESTDIR)/$(INCLUDE_INSTALL_DIR)/eap_common ++ install -m 0644 $(COMMON_HEADERS) $(DESTDIR)/$(INCLUDE_INSTALL_DIR)/common ++ install -m 0644 $(CRYPTO_HEADERS) $(DESTDIR)/$(INCLUDE_INSTALL_DIR)/crypto ++ install -m 0644 $(UTIL_HEADERS) $(DESTDIR)/$(INCLUDE_INSTALL_DIR)/util ++ install -m 0644 $(MAIN_HEADERS) $(DESTDIR)/$(INCLUDE_INSTALL_DIR)/ ++ ++ mkdir -p $(DESTDIR)/usr/lib/pkgconfig ++ cp libeap0.pc $(DESTDIR)/usr/lib/pkgconfig ++ ++uninstall: ++ ++ rm $(DESTDIR)/usr/lib/$(LIBEAP) ++ rm -fr $(DESTDIR)/$(INCLUDE_INSTALL_DIR) ++ rm -f $(DESTDIR)/usr/lib/pkgconfig/libeap0.pc + + clean: +- rm -f *~ *.o *.so *.d *.gcno *.gcda *.gcov ++ rm -f *~ *.o *.so *.d *.gcno *.gcda *.gcov libeap.a $(LIBEAP) $(OBJS_lib) + +-install: +- if ls *.so >/dev/null 2>&1; then \ +- install -d $(DESTDIR)$(LIBDIR)/wpa_supplicant && \ +- cp *.so $(DESTDIR)$(LIBDIR)/wpa_supplicant \ +- ; fi diff --git a/net-wireless/wpa_supplicant/wpa_supplicant-2.3.ebuild b/net-wireless/wpa_supplicant/wpa_supplicant-2.3.ebuild new file mode 100644 index 000000000000..8dfaa8907b34 --- /dev/null +++ b/net-wireless/wpa_supplicant/wpa_supplicant-2.3.ebuild @@ -0,0 +1,322 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-wireless/wpa_supplicant/wpa_supplicant-2.3.ebuild,v 1.1 2014/10/10 18:55:49 gurligebis Exp $ + +EAPI=4 + +inherit eutils toolchain-funcs qt4-r2 systemd multilib + +DESCRIPTION="IEEE 802.1X/WPA supplicant for secure wireless transfers" +HOMEPAGE="http://hostap.epitest.fi/wpa_supplicant/" +SRC_URI="http://hostap.epitest.fi/releases/${P}.tar.gz" +LICENSE="|| ( GPL-2 BSD )" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="ap dbus gnutls eap-sim fasteap p2p ps3 qt4 readline selinux smartcard ssl wimax wps kernel_linux kernel_FreeBSD" +REQUIRED_USE="fasteap? ( !gnutls !ssl ) smartcard? ( ssl )" + +RDEPEND="dbus? ( sys-apps/dbus ) + kernel_linux? ( + eap-sim? ( sys-apps/pcsc-lite ) + dev-libs/libnl:3 + net-wireless/crda + ) + !kernel_linux? ( net-libs/libpcap ) + qt4? ( + dev-qt/qtcore:4 + dev-qt/qtgui:4 + dev-qt/qtsvg:4 + ) + readline? ( + sys-libs/ncurses + sys-libs/readline + ) + ssl? ( dev-libs/openssl ) + !ssl? ( gnutls? ( net-libs/gnutls ) ) + !ssl? ( !gnutls? ( dev-libs/libtommath ) ) + selinux? ( sec-policy/selinux-networkmanager )" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +S="${WORKDIR}/${P}/${PN}" + +pkg_setup() { + if use gnutls && use ssl ; then + elog "You have both 'gnutls' and 'ssl' USE flags enabled: defaulting to USE=\"ssl\"" + fi +} + +src_prepare() { + # net/bpf.h needed for net-libs/libpcap on Gentoo/FreeBSD + sed -i \ + -e "s:\(#include \):#include \n\1:" \ + ../src/l2_packet/l2_packet_freebsd.c || die + + # People seem to take the example configuration file too literally (bug #102361) + sed -i \ + -e "s:^\(opensc_engine_path\):#\1:" \ + -e "s:^\(pkcs11_engine_path\):#\1:" \ + -e "s:^\(pkcs11_module_path\):#\1:" \ + wpa_supplicant.conf || die + + # Change configuration to match Gentoo locations (bug #143750) + sed -i \ + -e "s:/usr/lib/opensc:/usr/$(get_libdir):" \ + -e "s:/usr/lib/pkcs11:/usr/$(get_libdir):" \ + wpa_supplicant.conf || die + + if use dbus; then + epatch "${FILESDIR}/${P}-dbus-path-fix.patch" + fi + + # systemd entries to D-Bus service files (bug #372877) + echo 'SystemdService=wpa_supplicant.service' \ + | tee -a dbus/*.service >/dev/null || die + + cd "${WORKDIR}/${P}" + + if use wimax; then + # generate-libeap-peer.patch comes before + # fix-undefined-reference-to-random_get_bytes.patch + epatch "${FILESDIR}/${P}-generate-libeap-peer.patch" + epatch "${FILESDIR}/${P}-fix-undefined-reference-to-random_get_bytes.patch" + + # multilib-strict fix (bug #373685) + sed -e "s/\/usr\/lib/\/usr\/$(get_libdir)/" -i src/eap_peer/Makefile + fi + + # bug (320097) + epatch "${FILESDIR}/${P}-do-not-call-dbus-functions-with-NULL-path.patch" + + # TODO - NEED TESTING TO SEE IF STILL NEEDED, NOT COMPATIBLE WITH 1.0 OUT OF THE BOX, + # SO WOULD BE NICE TO JUST DROP IT, IF IT IS NOT NEEDED. + # bug (374089) + #epatch "${FILESDIR}/${P}-dbus-WPAIE-fix.patch" +} + +src_configure() { + # Toolchain setup + tc-export CC + + # Basic setup + echo "CONFIG_CTRL_IFACE=y" >> .config + echo "CONFIG_BACKEND=file" >> .config + echo "CONFIG_IBSS_RSN=y" >> .config + + # Basic authentication methods + # NOTE: we don't set GPSK or SAKE as they conflict + # with the below options + echo "CONFIG_EAP_GTC=y" >> .config + echo "CONFIG_EAP_MD5=y" >> .config + echo "CONFIG_EAP_OTP=y" >> .config + echo "CONFIG_EAP_PAX=y" >> .config + echo "CONFIG_EAP_PSK=y" >> .config + echo "CONFIG_EAP_TLV=y" >> .config + echo "CONFIG_EAP_EXE=y" >> .config + echo "CONFIG_IEEE8021X_EAPOL=y" >> .config + echo "CONFIG_PKCS12=y" >> .config + echo "CONFIG_PEERKEY=y" >> .config + echo "CONFIG_EAP_LEAP=y" >> .config + echo "CONFIG_EAP_MSCHAPV2=y" >> .config + echo "CONFIG_EAP_PEAP=y" >> .config + echo "CONFIG_EAP_TLS=y" >> .config + echo "CONFIG_EAP_TTLS=y" >> .config + + # Enabling background scanning. + echo "CONFIG_BGSCAN_SIMPLE=y" >> .config + echo "CONFIG_BGSCAN_LEARN=y" >> .config + + if use dbus ; then + echo "CONFIG_CTRL_IFACE_DBUS=y" >> .config + echo "CONFIG_CTRL_IFACE_DBUS_NEW=y" >> .config + echo "CONFIG_CTRL_IFACE_DBUS_INTRO=y" >> .config + fi + + # Enable support for writing debug info to a log file. + echo "CONFIG_DEBUG_FILE=y" >> .config + + if use eap-sim ; then + # Smart card authentication + echo "CONFIG_EAP_SIM=y" >> .config + echo "CONFIG_EAP_AKA=y" >> .config + echo "CONFIG_EAP_AKA_PRIME=y" >> .config + echo "CONFIG_PCSC=y" >> .config + fi + + if use fasteap ; then + echo "CONFIG_EAP_FAST=y" >> .config + fi + + if use readline ; then + # readline/history support for wpa_cli + echo "CONFIG_READLINE=y" >> .config + fi + + # SSL authentication methods + if use ssl ; then + echo "CONFIG_TLS=openssl" >> .config + elif use gnutls ; then + echo "CONFIG_TLS=gnutls" >> .config + echo "CONFIG_GNUTLS_EXTRA=y" >> .config + else + echo "CONFIG_TLS=internal" >> .config + fi + + if use smartcard ; then + echo "CONFIG_SMARTCARD=y" >> .config + fi + + if use kernel_linux ; then + # Linux specific drivers + echo "CONFIG_DRIVER_ATMEL=y" >> .config + echo "CONFIG_DRIVER_HOSTAP=y" >> .config + echo "CONFIG_DRIVER_IPW=y" >> .config + echo "CONFIG_DRIVER_NL80211=y" >> .config + echo "CONFIG_DRIVER_RALINK=y" >> .config + echo "CONFIG_DRIVER_WEXT=y" >> .config + echo "CONFIG_DRIVER_WIRED=y" >> .config + + if use ps3 ; then + echo "CONFIG_DRIVER_PS3=y" >> .config + fi + + elif use kernel_FreeBSD ; then + # FreeBSD specific driver + echo "CONFIG_DRIVER_BSD=y" >> .config + fi + + # Wi-Fi Protected Setup (WPS) + if use wps ; then + echo "CONFIG_WPS=y" >> .config + echo "CONFIG_WPS2=y" >> .config + # USB Flash Drive + echo "CONFIG_WPS_UFD=y" >> .config + # External Registrar + echo "CONFIG_WPS_ER=y" >> .config + # Universal Plug'n'Play + echo "CONFIG_WPS_UPNP=y" >> .config + # Near Field Communication + echo "CONFIG_WPS_NFC=y" >> .config + fi + + # Wi-Fi Direct (WiDi) + if use p2p ; then + echo "CONFIG_P2P=y" >> .config + fi + + # Access Point Mode + if use ap ; then + echo "CONFIG_AP=y" >> .config + fi + + # Enable mitigation against certain attacks against TKIP + echo "CONFIG_DELAYED_MIC_ERROR_REPORT=y" >> .config + + # If we are using libnl 2.0 and above, enable support for it + # Bug 382159 + # Removed for now, since the 3.2 version is broken, and we don't + # support it. + if has_version ">=dev-libs/libnl-3.2"; then + echo "CONFIG_LIBNL32=y" >> .config + fi + + if use qt4 ; then + pushd "${S}"/wpa_gui-qt4 > /dev/null + eqmake4 wpa_gui.pro + popd > /dev/null + fi +} + +src_compile() { + einfo "Building wpa_supplicant" + emake V=1 + + if use wimax; then + emake -C ../src/eap_peer clean + emake -C ../src/eap_peer + fi + + if use qt4 ; then + pushd "${S}"/wpa_gui-qt4 > /dev/null + einfo "Building wpa_gui" + emake + popd > /dev/null + fi +} + +src_install() { + dosbin wpa_supplicant + dobin wpa_cli wpa_passphrase + + # baselayout-1 compat + if has_version "=sys-apps/openrc-0.5.0"; then + newinitd "${FILESDIR}/${PN}-init.d" wpa_supplicant + newconfd "${FILESDIR}/${PN}-conf.d" wpa_supplicant + fi + + exeinto /etc/wpa_supplicant/ + newexe "${FILESDIR}/wpa_cli.sh" wpa_cli.sh + + dodoc ChangeLog {eap_testing,todo}.txt README{,-WPS} \ + wpa_supplicant.conf + + doman doc/docbook/*.{5,8} + + if use qt4 ; then + into /usr + dobin wpa_gui-qt4/wpa_gui + doicon wpa_gui-qt4/icons/wpa_gui.svg + make_desktop_entry wpa_gui "WPA Supplicant Administration GUI" "wpa_gui" "Qt;Network;" + fi + + use wimax && emake DESTDIR="${D}" -C ../src/eap_peer install + + if use dbus ; then + pushd "${S}"/dbus > /dev/null + insinto /etc/dbus-1/system.d + newins dbus-wpa_supplicant.conf wpa_supplicant.conf + insinto /usr/share/dbus-1/system-services + doins fi.epitest.hostap.WPASupplicant.service fi.w1.wpa_supplicant1.service + popd > /dev/null + fi + + # systemd stuff + systemd_dounit "${FILESDIR}"/wpa_supplicant.service + systemd_newunit "${FILESDIR}"/wpa_supplicant_at.service 'wpa_supplicant@.service' +} + +pkg_postinst() { + elog "If this is a clean installation of wpa_supplicant, you" + elog "have to create a configuration file named" + elog "/etc/wpa_supplicant/wpa_supplicant.conf" + elog + elog "An example configuration file is available for reference in" + elog "/usr/share/doc/${PF}/" + + if [[ -e ${ROOT}etc/wpa_supplicant.conf ]] ; then + echo + ewarn "WARNING: your old configuration file ${ROOT}etc/wpa_supplicant.conf" + ewarn "needs to be moved to ${ROOT}etc/wpa_supplicant/wpa_supplicant.conf" + fi + + # Mea culpa, feel free to remove that after some time --mgorny. + local fn + for fn in wpa_supplicant{,@wlan0}.service; do + if [[ -e "${ROOT}"/etc/systemd/system/network.target.wants/${fn} ]] + then + ebegin "Moving ${fn} to multi-user.target" + mv "${ROOT}"/etc/systemd/system/network.target.wants/${fn} \ + "${ROOT}"/etc/systemd/system/multi-user.target.wants/ + eend ${?} \ + "Please try to re-enable ${fn}" + fi + done +} diff --git a/perl-core/Text-Tabs+Wrap/Manifest b/perl-core/Text-Tabs+Wrap/Manifest index 4a3dfa411cdf..18d9ae24de50 100644 --- a/perl-core/Text-Tabs+Wrap/Manifest +++ b/perl-core/Text-Tabs+Wrap/Manifest @@ -1,2 +1 @@ -DIST Text-Tabs+Wrap-2012.0818.tar.gz 17907 SHA256 da26984e17a27bb022f2afeb86645284f3ff70c36f082825e0396b25800e620f SHA512 d68390244a3f9222277c2aed6f25d765f5a3648182371026221e796d00cfd9f7524dabb13f07d82c6a3a8fdabb9a0e85022353a04e527aef9d4472fd52862fc6 WHIRLPOOL 6182a64b3879cb3c64cb7c2d0ab6a15b5c14173caa811d3376062b0f395e1765e0a627e492ae6ecbb01501bf8b4a4e2d7a8b852b6b987524c3b81d27822bf5da DIST Text-Tabs+Wrap-2013.0523.tar.gz 18239 SHA256 b9cb056fffb737b9c12862099b952bf4ab4b1f599fd34935356ae57dab6f655f SHA512 870010e150d23ad1b9396642858f96a4f370a3d44dd7423884e103554f1e6a2e2ce70288ed2a773667cdebbaabecdd76b193954288be79e397ea2e029050da22 WHIRLPOOL 36312939bc65f8eb6e4550aa812c3e376c9285dd0fd6b0a881371f35955e3e0d7d2e7c0e8fb72fa055c0e05745a4f0916e9d6c4ecfc2a639524c1e1fde06f087 diff --git a/perl-core/Text-Tabs+Wrap/Text-Tabs+Wrap-2012.81.800-r1.ebuild b/perl-core/Text-Tabs+Wrap/Text-Tabs+Wrap-2012.81.800-r1.ebuild deleted file mode 100644 index 541a04fac12a..000000000000 --- a/perl-core/Text-Tabs+Wrap/Text-Tabs+Wrap-2012.81.800-r1.ebuild +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/perl-core/Text-Tabs+Wrap/Text-Tabs+Wrap-2012.81.800-r1.ebuild,v 1.1 2014/07/26 13:00:41 dilfridge Exp $ - -EAPI=5 - -MODULE_AUTHOR=MUIR -MODULE_SECTION=modules -MODULE_VERSION=2012.0818 -inherit perl-module - -DESCRIPTION="Expand/unexpand tabs per unix expand and line wrapping" - -SLOT="0" -KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris" -IUSE="" - -SRC_TEST=do diff --git a/perl-core/Text-Tabs+Wrap/Text-Tabs+Wrap-2013.52.300-r1.ebuild b/perl-core/Text-Tabs+Wrap/Text-Tabs+Wrap-2013.52.300-r1.ebuild index b95f063fef98..93aa176bdb6f 100644 --- a/perl-core/Text-Tabs+Wrap/Text-Tabs+Wrap-2013.52.300-r1.ebuild +++ b/perl-core/Text-Tabs+Wrap/Text-Tabs+Wrap-2013.52.300-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/perl-core/Text-Tabs+Wrap/Text-Tabs+Wrap-2013.52.300-r1.ebuild,v 1.2 2014/10/10 07:57:40 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/perl-core/Text-Tabs+Wrap/Text-Tabs+Wrap-2013.52.300-r1.ebuild,v 1.3 2014/10/10 13:24:10 zlogene Exp $ EAPI=5 @@ -12,7 +12,7 @@ inherit perl-module DESCRIPTION="Expand/unexpand tabs per unix expand and line wrapping" SLOT="0" -KEYWORDS="~alpha ~amd64 hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris" +KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris" IUSE="" SRC_TEST=do diff --git a/profiles/arch/amd64/package.use.mask b/profiles/arch/amd64/package.use.mask index 7a3232a9e8a3..340283b8b4bd 100644 --- a/profiles/arch/amd64/package.use.mask +++ b/profiles/arch/amd64/package.use.mask @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/arch/amd64/package.use.mask,v 1.189 2014/10/08 19:55:12 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/arch/amd64/package.use.mask,v 1.190 2014/10/11 05:11:15 radhermit Exp $ # When you add an entry to the top of this file, add your name, the date, and # an explanation of why something is getting masked. Please be extremely @@ -18,6 +18,10 @@ #--- END OF EXAMPLES --- +# Tim Harder (11 Oct 2014) +# Unmask skype support for unstable keywords +net-im/bitlbee -skype + # Mike Frysinger (04 Aug 2014) # Unmask flashrom drivers that only work on x86 due to in/out asm insns #454024 sys-apps/flashrom -atahpt -nic3com -nicnatsemi -nicrealtek -rayer_spi -satamv diff --git a/profiles/arch/amd64/package.use.stable.mask b/profiles/arch/amd64/package.use.stable.mask index 8aa4ecb5497d..29d85135ccd5 100644 --- a/profiles/arch/amd64/package.use.stable.mask +++ b/profiles/arch/amd64/package.use.stable.mask @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/arch/amd64/package.use.stable.mask,v 1.66 2014/10/02 10:29:30 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/arch/amd64/package.use.stable.mask,v 1.67 2014/10/11 05:11:15 radhermit Exp $ # When you add an entry to the top of this file, add your name, the date, and # an explanation of why something is getting masked. Please be extremely @@ -18,6 +18,10 @@ #--- END OF EXAMPLES --- +# Tim Harder (11 Oct 2014) +# Masked since skype isn't stable +net-im/bitlbee skype + # Michał Górny (30 Mar 2014) # on behalf of gx86-multilib project # Mask abi_x86_32 on stable until emul-* packages are made diff --git a/profiles/arch/arm/package.use.mask b/profiles/arch/arm/package.use.mask index 6af9897b0d83..9f0541ccb967 100644 --- a/profiles/arch/arm/package.use.mask +++ b/profiles/arch/arm/package.use.mask @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/arch/arm/package.use.mask,v 1.218 2014/09/24 19:47:53 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/arch/arm/package.use.mask,v 1.219 2014/10/10 20:27:30 maekke Exp $ # Markus Meier (24 Sep 2014) # Unkeyworded deps, bug #519618 @@ -294,7 +294,7 @@ kde-base/perlqt qscintilla qwt # Markus Meier (08 Dec 2012) # mask app-office/libreoffice java extensions -app-office/libreoffice libreoffice_extensions_scripting-beanshell libreoffice_extensions_scripting-javascript libreoffice_extensions_wiki-publisher +app-office/libreoffice libreoffice_extensions_scripting-beanshell libreoffice_extensions_scripting-javascript libreoffice_extensions_wiki-publisher coinmp gltf # Markus Meier (17 Oct 2012) # spidermonkey is broken on arm see bug #420471 diff --git a/profiles/arch/x86/package.use.mask b/profiles/arch/x86/package.use.mask index b1587acdd334..7dca9451744e 100644 --- a/profiles/arch/x86/package.use.mask +++ b/profiles/arch/x86/package.use.mask @@ -1,9 +1,13 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/arch/x86/package.use.mask,v 1.140 2014/09/29 15:49:56 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/arch/x86/package.use.mask,v 1.141 2014/10/11 05:11:54 radhermit Exp $ # This file requires >=portage-2.1.1 +# Tim Harder (11 Oct 2014) +# Unmask skype support for unstable keywords +net-im/bitlbee -skype + # Mike Frysinger (04 Aug 2014) # Unmask flashrom drivers that only work on x86 due to in/out asm insns #454024 sys-apps/flashrom -atahpt -nic3com -nicnatsemi -nicrealtek -rayer_spi -satamv diff --git a/profiles/arch/x86/package.use.stable.mask b/profiles/arch/x86/package.use.stable.mask index 0372e1b56fc4..7b7b4ddd72be 100644 --- a/profiles/arch/x86/package.use.stable.mask +++ b/profiles/arch/x86/package.use.stable.mask @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/arch/x86/package.use.stable.mask,v 1.4 2014/06/29 16:32:35 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/arch/x86/package.use.stable.mask,v 1.5 2014/10/11 05:11:54 radhermit Exp $ # When you add an entry to the top of this file, add your name, the date, and # an explanation of why something is getting masked. Please be extremely @@ -18,6 +18,10 @@ #--- END OF EXAMPLES --- +# Tim Harder (11 Oct 2014) +# Masked since skype isn't stable +net-im/bitlbee skype + # Andreas K. Huettel (29 Jun 2014) # Not yet stabilized dependencies blocking sec bug 514886 # we need to repeat this here likely because of the use.mask entry diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask index 1fbb59c914e3..9bbab4c75993 100644 --- a/profiles/base/package.use.mask +++ b/profiles/base/package.use.mask @@ -1,11 +1,15 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/base/package.use.mask,v 1.612 2014/10/09 12:26:08 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/base/package.use.mask,v 1.614 2014/10/11 05:03:35 radhermit Exp $ # This file requires >=portage-2.1.1 # New entries go on top. # +# Tim Harder (10 Oct 2014) +# Masked since skype isn't stable +net-im/bitlbee skype + # Jauhien Piatlicki (5 Oct 2014) # Masked because of bug 524390: privilege escalation # until upstream fixes this security issue. @@ -507,10 +511,6 @@ media-sound/pulseaudio webrtc-aec xen (22 Mar 2012) -# Masked since skype isn't stable -net-im/bitlbee skype - # Samuli Suominen (20 Mar 2012) # This is for udev-acl. Unmasked in default/linux/package.use.mask. sys-auth/consolekit acl diff --git a/profiles/base/package.use.stable.mask b/profiles/base/package.use.stable.mask index 29ee91416738..06469701bee2 100644 --- a/profiles/base/package.use.stable.mask +++ b/profiles/base/package.use.stable.mask @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/base/package.use.stable.mask,v 1.25 2014/10/09 12:26:08 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/base/package.use.stable.mask,v 1.27 2014/10/11 05:03:35 radhermit Exp $ # This file requires eapi 5 or later. New entries go on top. # Please use the same syntax as in package.use.mask diff --git a/profiles/hardened/linux/package.use.mask b/profiles/hardened/linux/package.use.mask index 052dabe9532c..2b87d41dc979 100644 --- a/profiles/hardened/linux/package.use.mask +++ b/profiles/hardened/linux/package.use.mask @@ -1,6 +1,10 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/linux/package.use.mask,v 1.15 2013/08/09 09:02:17 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/linux/package.use.mask,v 1.16 2014/10/11 05:07:07 radhermit Exp $ + +# Tim Harder (11 Oct 2014) +# Skype doesn't work on hardened +net-im/bitlbee skype sys-apps/hwloc gl diff --git a/profiles/package.mask b/profiles/package.mask index 380a31d14a96..aa5ab0e6bf7a 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -1,5 +1,5 @@ #################################################################### -# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16082 2014/10/09 20:07:27 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.16084 2014/10/11 01:43:28 mrueg Exp $ # # When you add an entry to the top of this file, add your name, the date, and # an explanation of why something is getting masked. Please be extremely @@ -30,6 +30,10 @@ #--- END OF EXAMPLES --- +# Manuel Rüger (11 Oct 2014) +# Dead upstream use kde-misc/kcm-touchpad instead +kde-misc/kcm_touchpad + # Andreas K. Huettel (9 Oct 2014) # The sys-devel/libperl ebuild is only a dummy and will be removed # in 30 days; libperl is provided by dev-lang/perl. @@ -219,22 +223,6 @@ x11-themes/amsn-skins # tool is useless. See bug 504734 app-admin/hwreport -# Hans de Graaff (1 Sep 2014) -# Mask jruby 1.6.x for removal in 30 days. This version is still based -# on ruby 1.8. Many packages are no longer compatible with its -# syntax, and security support for ruby 1.8 has stopped. This -# incompatibility now has reached central packages like rubygems so we -# have decided to remove jruby 1.6 now. jruby upstream has released -# the 1.7.x series some time ago, but unfortunately we only have a -# masked version that has too many issues to unmask. Please let us -# know if you know java and ruby and want to help out here: -# http://moving-innovations.com/blog/2014/04/23/the-precarious-state-of-jruby-in-gentoo -=dev-java/jruby-1.6* -virtual/rubygems:jruby -virtual/ruby-rdoc:jruby -virtual/ruby-ssl:jruby -virtual/ruby-threads:jruby - # Pawel Hajdan jr (29 Aug 2014) # Dev channel releases are only for people who are developers or want more # experimental features and accept a more unstable release. diff --git a/profiles/use.local.desc b/profiles/use.local.desc index 27b9a1f12ad2..0f7f160c9df7 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -1367,6 +1367,7 @@ dev-games/ogre:poco - when USE=threads, use poco for threading dev-games/ogre:tbb - when USE=threads, use tbb for threading dev-games/ogre:tools - build+install helper tools dev-games/ogre:zip - support zip archives +dev-games/openscenegraph:asio - Enable support for dev-cpp/asio library dev-games/openscenegraph:fox - Build examples using x11-libs/fox library dev-games/openscenegraph:gdal - Enable support for sci-libs/gdal library dev-games/openscenegraph:openinventor - Build OpenInventor plugin @@ -5833,8 +5834,10 @@ net-p2p/amule:remote - Enable remote controlling of the client net-p2p/amule:stats - Enable statistic reporting net-p2p/bitcoin-qt:1stclassmsg - Enable first-class Bitcoin message tools net-p2p/bitcoin-qt:ljr - Enable Luke Dashjr's patches +net-p2p/bitcoin-qt:ljr-antispam - Enable Luke Dashjr's address-based spam filter net-p2p/bitcoin-qt:qrcode - Enable generation of QR Codes for receiving payments net-p2p/bitcoind:ljr - Enable Luke Dashjr's patches +net-p2p/bitcoind:ljr-antispam - Enable Luke Dashjr's address-based spam filter net-p2p/bitcoind:logrotate - Use app-admin/logrotate for rotating logs net-p2p/bitcoind:upnp - Enable Universal Plug and Play net-p2p/bitcoind:wallet - Enable wallet support diff --git a/sci-chemistry/easychem/easychem-0.6-r1.ebuild b/sci-chemistry/easychem/easychem-0.6-r1.ebuild index 7e1452d90c4c..60b8ee82eabe 100644 --- a/sci-chemistry/easychem/easychem-0.6-r1.ebuild +++ b/sci-chemistry/easychem/easychem-0.6-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/easychem/easychem-0.6-r1.ebuild,v 1.6 2014/10/09 09:34:38 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/easychem/easychem-0.6-r1.ebuild,v 1.7 2014/10/10 11:01:49 ago Exp $ EAPI=5 @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/easychem/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux" IUSE="" RDEPEND=" diff --git a/sci-chemistry/easychem/easychem-0.6.ebuild b/sci-chemistry/easychem/easychem-0.6.ebuild deleted file mode 100644 index 2e061e3de0f0..000000000000 --- a/sci-chemistry/easychem/easychem-0.6.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/easychem/easychem-0.6.ebuild,v 1.15 2012/05/04 07:02:33 jdhore Exp $ - -EAPI="1" - -inherit eutils - -DESCRIPTION="Chemical structure drawing program - focused on presentation" -HOMEPAGE="http://easychem.sourceforge.net/" -SRC_URI="mirror://sourceforge/easychem/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc x86" -IUSE="" - -RDEPEND=" - x11-libs/gtk+:2 - app-text/ghostscript-gpl - media-gfx/pstoedit" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${P}-prestrip.patch" -} - -src_compile() { - ln -s Makefile.linux Makefile - DGS_PATH=/usr/bin DPSTOEDIT_PATH=/usr/bin \ - C_FLAGS="${CFLAGS}" emake -e || die -} - -src_install () { - dobin easychem || die - dodoc TODO || die -} diff --git a/sci-chemistry/relax/Manifest b/sci-chemistry/relax/Manifest index 374f8c69d8de..ade39aadb05a 100644 --- a/sci-chemistry/relax/Manifest +++ b/sci-chemistry/relax/Manifest @@ -16,3 +16,4 @@ DIST relax-3.2.1.src.tar.bz2 85017557 SHA256 85594dd5352d3d9000de721bc6b80892cd9 DIST relax-3.2.2.src.tar.bz2 84956773 SHA256 cce703315023ed702703fe1096ccedc221341a2711dc036c12996316182c4ae3 SHA512 12b306471260b579980800da919f810ad0ac3aaf05815226bbf0d16ecd758ae94913f9fc32422f1ef63aa51d83a83214ed3a393a77bcb4d675febde01c114bd1 WHIRLPOOL 44f7a3921571d2f3551073ea9ae5e4f3cef022b068b22cc8bd4c2e40cca60402c479353f6a8d1bce3a1cf9dbcd33f4d5c284fecfb82c5805236766346a2575f9 DIST relax-3.2.3.src.tar.bz2 84941442 SHA256 564f9bbde614867995a49f2c38c44c725d3a425bbf718fd418891a65da4db1c5 SHA512 a8d76238441fa1946c26929c62b57bec83980c730860b2b5df0961f5eda037d9364c4cd60cef6214a22529aa63191fa12fea7fa7b8f528285e2fd875e9021079 WHIRLPOOL 5f48fc570af3321eb78087c780c877add39c97900c466b94c3c2e5fd72b3066659dc10e3bf322ed1582c5b8b177f4bd525281123c5364ac0f35f4655beffb344 DIST relax-3.3.0.src.tar.bz2 87764032 SHA256 78e32cd5d31599ff10a11de85c3b3d454b9fd15955ace1184e97a288ba14b98b SHA512 03681d41c3669e8b9e8359902ebe14ce45b7455b709af23966b5ca93dbdec1e42e4362da9d30318744c8753becd0742e8f8a48048e5941a735a880f0d6bb7377 WHIRLPOOL e17674367875021f01f7959e8c8abed772a82a2472233a461b3cf48ef4bdf07272955ed6faf0dca8d9a5a213400b285ddf0d66363695e4c50909d52474dd92c6 +DIST relax-3.3.1.src.tar.bz2 89070317 SHA256 101bd088a906202cc3649e44edb72ebd9e4fed273565f0ab75e465569bdfd606 SHA512 eeaedd009751036a9c6274f1d170187a721049de23d2bebacf0cea6f7a9cdf60bc3201b98ac171aa311395d139799e9c8b727c3ec5ebff20e8db7b0b49e734c9 WHIRLPOOL a6752362a2c543eded9e5ca7421b9e1badcebba8f4b38298b04ee587c49b51b564a1680e3af02a9248e5e0689bedc9d91e29480a47c24a20a2054ab3976c1296 diff --git a/sci-chemistry/relax/relax-3.3.1.ebuild b/sci-chemistry/relax/relax-3.3.1.ebuild new file mode 100644 index 000000000000..af1549b38955 --- /dev/null +++ b/sci-chemistry/relax/relax-3.3.1.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/relax/relax-3.3.1.ebuild,v 1.1 2014/10/10 08:19:27 jlec Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) + +WX_GTK_VER="2.9" + +inherit eutils multiprocessing python-single-r1 scons-utils toolchain-funcs wxwidgets virtualx + +DESCRIPTION="Molecular dynamics by NMR data analysis" +HOMEPAGE="http://www.nmr-relax.com/" +SRC_URI="http://download.gna.org/relax/${P}.src.tar.bz2" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND=" + ${PYTHON_DEPS} + dev-python/Numdifftools[${PYTHON_USEDEP}] + dev-python/matplotlib[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/wxpython:${WX_GTK_VER}[${PYTHON_USEDEP}] + sci-chemistry/molmol + sci-chemistry/pymol[${PYTHON_USEDEP}] + sci-chemistry/vmd + >=sci-libs/bmrblib-1.0.3[${PYTHON_USEDEP}] + >=sci-libs/minfx-1.0.11[${PYTHON_USEDEP}] + sci-libs/scipy[${PYTHON_USEDEP}] + sci-visualization/grace + sci-visualization/opendx + x11-libs/wxGTK:${WX_GTK_VER}[X]" +DEPEND="${RDEPEND} + media-gfx/pngcrush" + +pkg_setup() { + python-single-r1_pkg_setup +} + +src_prepare() { + rm -rf minfx bmrblib extern/numdifftools || die + tc-export CC +} + +src_compile() { + escons +} + +src_test() { + VIRTUALX_COMMAND="${EPYTHON} ./${PN}.py -x --traceback" + virtualmake +} + +src_install() { + dodoc README docs/{CHANGES,COMMITTERS,JOBS,relax.pdf} + + python_moduleinto ${PN} + python_domodule * + + rm ${PN} README || die + + make_wrapper ${PN}-nmr "${EPYTHON} $(python_get_sitedir)/${PN}/${PN}.py $@" +} diff --git a/sci-electronics/qelectrotech/Manifest b/sci-electronics/qelectrotech/Manifest index 32775384166e..d4f1085acbc1 100644 --- a/sci-electronics/qelectrotech/Manifest +++ b/sci-electronics/qelectrotech/Manifest @@ -1,2 +1 @@ -DIST qelectrotech-0.22-src.tar.gz 2288318 SHA256 505f62163ab942475e692b3ec2ce7ce68fa58051ebb5a1dfafad94386568d5d0 SHA512 811bb32131b5f7fbebaebd2dfdb568f56d313a4ef383601cc4b058b1611120ac1184ea019f5616f5f945fc1a41e0f8ff3581e7dcc41ef6e235553cfbf8bf2784 WHIRLPOOL 8f05d0403c466fdcdc7d95871a52519c0792932d948f9b40235101c52093211c9c350cb83063f4f51cdf8196e08e9fab185c9965f0b2b67779ac7d03ef24b7ac DIST qelectrotech-0.3-src.tar.gz 4600831 SHA256 9a699c724800466ad7d0dd0e60099fe1ceea7665d93d6d0ff27daddeac251c00 SHA512 3676a17e04cffc10c82c7d3eaf65fdc7d2a4875761d99726c5cc8f5c1aa2dbd0699a95090d52e7507f4f1b5916c7301e7a931b2aea4b49812a4a0b3011f2f2a2 WHIRLPOOL f1b8acbefdbc1f87d5b9dbe78d5e0dd825841cfc90fd66b5713b41cc1147eb86b01a1f9ef3da80218bc8dc7cd474e02a21a828d526dcef22c17046163697de66 diff --git a/sci-electronics/qelectrotech/files/qelectrotech-0.2-fix-paths.patch b/sci-electronics/qelectrotech/files/qelectrotech-0.2-fix-paths.patch deleted file mode 100644 index 7e34131becf2..000000000000 --- a/sci-electronics/qelectrotech/files/qelectrotech-0.2-fix-paths.patch +++ /dev/null @@ -1,48 +0,0 @@ -diff -Naur qelectrotech-0.2-src~orig/qelectrotech.pro qelectrotech-0.2-src/qelectrotech.pro ---- qelectrotech-0.2-src~orig/qelectrotech.pro 2009-08-30 01:18:08.000000000 +0200 -+++ qelectrotech-0.2-src/qelectrotech.pro 2009-08-30 01:30:29.000000000 +0200 -@@ -5,19 +5,19 @@ - # Chemins utilises pour la compilation et l'installation de QET - unix { - # Chemins UNIX -- COMPIL_PREFIX = '/usr/local/' -- INSTALL_PREFIX = '/usr/local/' -+ COMPIL_PREFIX = '/usr/' -+ INSTALL_PREFIX = '/usr/' - QET_BINARY_PATH = 'bin/' - QET_COMMON_COLLECTION_PATH = 'share/qelectrotech/elements/' - QET_LANG_PATH = 'share/qelectrotech/lang/' - QET_EXAMPLES_PATH = 'share/qelectrotech/examples/' - QET_LICENSE_PATH = 'doc/qelectrotech/' -- QET_MIME_XML_PATH = '../share/mime/application/' -- QET_MIME_DESKTOP_PATH = '../share/mimelnk/application/' -- QET_MIME_PACKAGE_PATH = '../share/mime/packages/' -+ QET_MIME_XML_PATH = 'share/mime/application/' -+ QET_MIME_DESKTOP_PATH = 'share/mimelnk/application/' -+ QET_MIME_PACKAGE_PATH = 'share/mime/packages/' - QET_DESKTOP_PATH = 'share/applications/' - QET_ICONS_PATH = 'share/icons/hicolor/' -- QET_MAN_PATH = 'man/' -+ QET_MAN_PATH = 'share/man/' - } - win32 { - # Chemins Windows -@@ -94,9 +94,6 @@ - examples.path = $$join(INSTALL_PREFIX,,,$${QET_EXAMPLES_PATH}) - examples.files = examples/* - --copyright.path = $$join(INSTALL_PREFIX,,,$${QET_LICENSE_PATH}) --copyright.files = LICENSE ELEMENTS.LICENSE CREDIT README ChangeLog -- - mime_xml.path = $$join(INSTALL_PREFIX,,,$${QET_MIME_XML_PATH}) - mime_xml.files = misc/x-qet-*.xml - -@@ -123,7 +120,7 @@ - man.extra = sh man/compress_man_pages.sh - - # L'installation comprend la copie du binaire, des elements, des fichiers de langue et du fichier LICENSE --INSTALLS += target elements lang copyright -+INSTALLS += target elements lang - # Sous Unix, on installe egalement l'icone, un fichier .desktop, des fichiers mime et les pages de manuel - unix { - INSTALLS += desktop mime_xml mime_desktop mime_package icons man examples diff --git a/sci-electronics/qelectrotech/qelectrotech-0.22.ebuild b/sci-electronics/qelectrotech/qelectrotech-0.22.ebuild deleted file mode 100644 index 73c37626266e..000000000000 --- a/sci-electronics/qelectrotech/qelectrotech-0.22.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/qelectrotech/qelectrotech-0.22.ebuild,v 1.4 2013/03/02 23:20:02 hwoarang Exp $ - -EAPI="2" - -inherit qt4-r2 - -MY_P="${PN}-${PV}-src" - -DESCRIPTION="Qt4 application to design electric diagrams" -HOMEPAGE="http://www.qt-apps.org/content/show.php?content=90198" -SRC_URI="http://download.tuxfamily.org/qet/tags/20100313/${MY_P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="debug doc" - -RDEPEND="dev-qt/qtgui:4 - dev-qt/qtsvg:4" -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen )" - -S="${WORKDIR}"/${MY_P} -DOCS="CREDIT ChangeLog README" - -PATCHES=( "${FILESDIR}/${PN}-0.2-fix-paths.patch" ) - -src_install() { - qt4-r2_src_install - if use doc; then - doxygen Doxyfile - dohtml -r doc/html/* || die "dohtml failed" - fi -} diff --git a/sci-electronics/qelectrotech/qelectrotech-0.30.ebuild b/sci-electronics/qelectrotech/qelectrotech-0.30.ebuild index 605870a4af62..2c3597a06d78 100644 --- a/sci-electronics/qelectrotech/qelectrotech-0.30.ebuild +++ b/sci-electronics/qelectrotech/qelectrotech-0.30.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/qelectrotech/qelectrotech-0.30.ebuild,v 1.3 2014/10/09 08:05:37 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/qelectrotech/qelectrotech-0.30.ebuild,v 1.4 2014/10/10 10:54:39 ago Exp $ EAPI=5 PLOCALES="cs de el en es fr it pl pt ro ru" @@ -15,7 +15,7 @@ SRC_URI="http://download.tuxfamily.org/qet/tags/20130928/${MY_P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="doc" diff --git a/sci-geosciences/osgearth/Manifest b/sci-geosciences/osgearth/Manifest index ab2ddb1daac6..aa0239e87fab 100644 --- a/sci-geosciences/osgearth/Manifest +++ b/sci-geosciences/osgearth/Manifest @@ -1 +1,2 @@ DIST osgearth-2.5.tar.gz 49670415 SHA256 73d730fdf615318ef876179b21ff77f508efa20e4dcd8640b999a8235a811616 SHA512 74d63796b04ffbe514014a78279c4aff35f2fadab55ee88f69bb311cadc9c3edff471a27e7ee9147c5c98f91f2b90c389414c4a060c4c030cf680e7c3f0629a8 WHIRLPOOL 536bbc29bfff3f604f3c1a1c825c7f37a116e48526e046065061f081fc8465b19986068c8e61a0e7f427a082d9f4e6c764b2e4e093f48e48f52faa2aed2c1746 +DIST osgearth-2.6.tar.gz 58605003 SHA256 965c93837520ab9538038843ff83ee1903548f8be191ee211e40abb0e6c1bb4a SHA512 3120547ef639d4c1ff0404358777317c8794a493a772dc7af11b8056fd3f799a5e16358c19970862d16f6ab98f78abb3ea25c3aa113df8a3df68d54818fb03bc WHIRLPOOL 6533e5a92ee973ff1d5bfb80ab3b051279bc65e85d00f0fb9027b6fe2be06efc5bd3907516c27e7e06b4c1cb03569650bf368b5d7728b848bc86ec9666607939 diff --git a/sci-geosciences/osgearth/files/osgearth-2.6-cmake-options.patch b/sci-geosciences/osgearth/files/osgearth-2.6-cmake-options.patch new file mode 100644 index 000000000000..389609bd6c42 --- /dev/null +++ b/sci-geosciences/osgearth/files/osgearth-2.6-cmake-options.patch @@ -0,0 +1,30 @@ +commit d92cee4d9870fab08fdfadf9ab0bfb4658a09aa3 +Author: hasufell +Date: Fri Nov 22 14:06:34 2013 +0100 + + add cmake options + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 34cd375..dbb4cb4 100755 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -129,8 +129,17 @@ + + # JavaScript Engines: + SET(V8_DIR "" CACHE PATH "set to base V8 install path") +-FIND_PACKAGE(V8) +-FIND_PACKAGE(JavaScriptCore) ++OPTION(OSGEARTH_USE_V8 "Enable to use V8 JavaScript engine" ON) ++IF(OSGEARTH_USE_V8) ++ FIND_PACKAGE(V8) ++ENDIF(OSGEARTH_USE_V8) ++ ++OPTION(OSGEARTH_USE_JAVASCRIPTCORE "Enable use of JavaScriptCore" ON) ++OPTION(OSGEARTH_USE_LIBNOISE "Enable use of LibNoise" ON) ++ ++IF (OSGEARTH_USE_JAVASCRIPTCORE) ++ FIND_PACKAGE(JavaScriptCore) ++ENDIF (OSGEARTH_USE_JAVASCRIPTCORE) + + SET (WITH_EXTERNAL_DUKTAPE FALSE CACHE BOOL "Use bundled or system wide version of Duktape") + IF (WITH_EXTERNAL_DUKTAPE) diff --git a/sci-geosciences/osgearth/files/osgearth-2.6-disable-qt5.patch b/sci-geosciences/osgearth/files/osgearth-2.6-disable-qt5.patch new file mode 100644 index 000000000000..ba43aceb1ed6 --- /dev/null +++ b/sci-geosciences/osgearth/files/osgearth-2.6-disable-qt5.patch @@ -0,0 +1,13 @@ +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -146,10 +146,6 @@ + FIND_PACKAGE(Duktape) + ENDIF (WITH_EXTERNAL_DUKTAPE) + +-FIND_PACKAGE(Qt5Core QUIET) +-FIND_PACKAGE(Qt5Widgets QUIET) +-FIND_PACKAGE(Qt5Gui QUIET) +-FIND_PACKAGE(Qt5OpenGL QUIET) + IF ( Qt5Core_FOUND AND Qt5Widgets_FOUND AND Qt5Gui_FOUND AND Qt5OpenGL_FOUND ) + SET(QT_INCLUDES ${Qt5Widgets_INCLUDE_DIRS} ${Qt5OpenGL_INCLUDE_DIRS}) + ELSE() diff --git a/sci-geosciences/osgearth/osgearth-2.6.ebuild b/sci-geosciences/osgearth/osgearth-2.6.ebuild new file mode 100644 index 000000000000..f8e8bb05c02e --- /dev/null +++ b/sci-geosciences/osgearth/osgearth-2.6.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/osgearth/osgearth-2.6.ebuild,v 1.1 2014/10/10 20:18:46 hasufell Exp $ + +EAPI=5 + +inherit cmake-utils + +DESCRIPTION="Dynamic map generation toolkit for OpenSceneGraph" +HOMEPAGE="http://osgearth.org/" +SRC_URI="https://github.com/gwaldron/osgearth/archive/${P}.tar.gz" + +LICENSE="LGPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc qt4" + +RDEPEND=" + dev-db/sqlite:3 + >=dev-games/openscenegraph-3.2.1[curl,qt4?] + dev-libs/tinyxml + net-misc/curl + sci-libs/gdal + sci-libs/geos + sys-libs/zlib[minizip] + virtual/opengl + x11-libs/libX11 + qt4? ( + dev-qt/qtcore:4 + dev-qt/qtgui:4 + dev-qt/qtopengl:4 + )" +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( dev-python/sphinx )" + +S=${WORKDIR}/${PN}-${P} + +PATCHES=( "${FILESDIR}"/${P}-{disable-qt5,cmake-options}.patch ) + +src_configure() { + # V8 disabled due to + # https://github.com/gwaldron/osgearth/issues/333 + local mycmakeargs=( + -DWITH_EXTERNAL_TINYXML=ON + $(cmake-utils_use qt4 OSGEARTH_USE_QT) + -DOSGEARTH_USE_V8=OFF + -DOSGEARTH_USE_JAVASCRIPTCORE=OFF + -DOSGEARTH_USE_LIBNOISE=OFF + ) + + cmake-utils_src_configure +} + +src_compile() { + cmake-utils_src_compile + + if use doc ; then + emake -C "${S}"/docs man html info + fi +} + +src_install() { + cmake-utils_src_install + + if use doc ; then + dohtml -r "${S}"/docs/build/html/* + doman "${S}"/docs/build/man/* + doinfo "${S}"/docs/build/texinfo/*.info* + fi +} diff --git a/sci-libs/libspatialindex/Manifest b/sci-libs/libspatialindex/Manifest index d1cd9bc8ce0d..2c2b65e746c3 100644 --- a/sci-libs/libspatialindex/Manifest +++ b/sci-libs/libspatialindex/Manifest @@ -1,3 +1,4 @@ DIST spatialindex-src-1.8.0.tar.bz2 365131 SHA256 088b675085aa0b8f0c7c8e795e9d2d2060e3a1dcf8314e31c99903be9cd0e6b1 SHA512 f93bde0011adcfed510b3305f9bdf6b554cdbb66177d7ad9139b0db7dbc0b1305343e6e1f752fa12ce8f9cfd11519082993cba513febb02295e31bf883ba5cf3 WHIRLPOOL 4604779368c5630a27c94fa0ee90b6c34f974301ebb318b76457274171636c5d560d5ab9fd95876d3867b60bfb688ce6587dac9da1d37cc5e804c81e8a5f7a3e DIST spatialindex-src-1.8.1.tar.bz2 368252 SHA256 9e57b07ccd64b2940ac42739382e84492716f186892ba81c0d2a636ca6de3bcd SHA512 34fc743d8fac65a60ae723e3261e8f3717df8bd5997f7338b8d944e9a832d6bad33a4b7cfa4b2f1e5ba0fdbd3ebb4b199e247f0e7b7473953b433e203c21e548 WHIRLPOOL af43858abc094a17e7ae83828693ef7f1fcae3dc2e5bc40eae174c5c441bfee17c55ce151ba4fbdcb314996d8197c47bfcbfafb692af772b9c6d4187a9962227 DIST spatialindex-src-1.8.3.tar.bz2 406600 SHA256 c16e050d003936d873ece5929502656696cbf160cb044c9efe5fd67d1ab68f34 SHA512 deb2c5d9049652f5f6f8cd74b225fc1cc7e152340efe66fcad4653419d2f53787408f5246f0454f4800b5c6bb0ea55aa4fbfe8113d1c8d939da6511e5ce27a20 WHIRLPOOL 80aa07e60ee9f9f4195dec1d08ea931c32cfdb89a2136d7d2a8975d57566882227ee62573906e3ccc986a44bcb7fa9bc900ea32eb50b0f8b90be26c27dffcd9a +DIST spatialindex-src-1.8.4.tar.bz2 406604 SHA256 8428a0990301160c3ac1995531e450a50e4b6d572fd6ac7faa24341a916c95b1 SHA512 a0a8c00e201d2247ce183c6f3af4e94944ffd0190d9efcd2842e6ffa95a1dcc5a72a66ac1658545285fd2efed4cb60c7880e1113f11a7fa1c5a7b8a5ac6a31e5 WHIRLPOOL 30e71dcd36412442ea1deaf8cf52bb9aa7b81a0154b9d0c9a1adee8e2f82bcaf2618311d9ea3256d2fd82d95192fb3b26542c0b510638648975d860b31a34abe diff --git a/sci-libs/libspatialindex/libspatialindex-1.8.1.ebuild b/sci-libs/libspatialindex/libspatialindex-1.8.1.ebuild index 50362672d1d7..0ab019c2fe54 100644 --- a/sci-libs/libspatialindex/libspatialindex-1.8.1.ebuild +++ b/sci-libs/libspatialindex/libspatialindex-1.8.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libspatialindex/libspatialindex-1.8.1.ebuild,v 1.2 2014/10/09 09:34:43 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libspatialindex/libspatialindex-1.8.1.ebuild,v 1.3 2014/10/10 11:01:31 ago Exp $ EAPI=5 @@ -14,7 +14,7 @@ HOMEPAGE="http://libspatialindex.github.com/" SRC_URI="http://download.osgeo.org/libspatialindex/${MY_P}.tar.bz2" LICENSE="MIT" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" SLOT="0" IUSE="debug static-libs" diff --git a/sci-libs/libspatialindex/libspatialindex-1.8.4.ebuild b/sci-libs/libspatialindex/libspatialindex-1.8.4.ebuild new file mode 100644 index 000000000000..9d9b3ca698ae --- /dev/null +++ b/sci-libs/libspatialindex/libspatialindex-1.8.4.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libspatialindex/libspatialindex-1.8.4.ebuild,v 1.1 2014/10/10 20:55:34 hasufell Exp $ + +EAPI=5 + +inherit autotools eutils + +MY_PN="spatialindex-src" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="General framework for developing spatial indices" +HOMEPAGE="http://libspatialindex.github.com/" +SRC_URI="http://download.osgeo.org/libspatialindex/${MY_P}.tar.bz2" +LICENSE="MIT" + +KEYWORDS="~amd64 ~x86" +SLOT="0/4" +IUSE="debug static-libs" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + epatch "${FILESDIR}"/${PN}-1.8.1-QA.patch + eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + $(use_enable debug) +} + +src_install() { + default + use static-libs || prune_libtool_files +} diff --git a/sys-apps/file/Manifest b/sys-apps/file/Manifest index 175d47919b9f..ac6a66dec932 100644 --- a/sys-apps/file/Manifest +++ b/sys-apps/file/Manifest @@ -1,3 +1,3 @@ DIST file-5.17.tar.gz 709991 SHA256 3feb97141b387b64da30aee485852925312c0e74219380a5ed451f14a90c83ca SHA512 6c85d1719221f5dcf8620442901d17de1c32458ffedbdcd43beedf7d8b2553fe4bf85deeabda65abcbdc9e5cbfefafe26ecd982749c57e393955f51009ef2a88 WHIRLPOOL dff671934aed89308278a1158f0e70eb6dc73ab4852ecf206ca3164251a3d0a7e692b3d6acad98d9c49ae2154b8be15d3704c8eb3d255d79f951c808f97d8253 -DIST file-5.18.tar.gz 715461 SHA256 6519fb706d583231c2419592ebecdbb21d33c62eaf7a1a0b24ddfcb80c08bf07 SHA512 eba4dd91053a28494e8a4d436b338ccfa44494dcd6c9031f7bb9c8b372d8cfacf702e0325e34b8498454be21b28dad78f0f63af5ad50b181b1962e0ec779c7b5 WHIRLPOOL a22b84978ddb383a680f5fd65b80027ebf11e92fe531aa87aed0fe1b84f27c57d5dc76cd5e6d59a27cc728e6c83384293fb87508696d49bd3a5ca9b27e903c03 DIST file-5.19.tar.gz 719158 SHA256 9484b3bbda1acc7b13a4f71031a85ce10c77bd0ffec7226741a219ef587e3a7c SHA512 f897454f731b013634f38c02c927d7fb5d0660d5b1a81b7bf614da244558dd64ae44ab35ffc6a5e634a7f670ee287c0e87c70e44266c3123e0d1b73fa303c6ed WHIRLPOOL 8ae346b023e44f5d573c1cf94102aa7eb5f685f1319e248b141bc6dd8668ec983c9d0a0791bd50d9bde031b336ded6ae273bb612d05f738441e29343dfe74477 +DIST file-5.20.tar.gz 725937 SHA256 5bc36bfbb83a009da25a7174848f1bc5824be03192a8fdce7f83dc897ed2d247 SHA512 ee3eff78c8776aa83cf2dfa66943359c488fb3d4b1458817fc39dcef8b16d536ad9fd5f138f37d785abe6f715d757b6729c8b9fc814f1016d164aa83f8511a5c WHIRLPOOL 5129048a6fea022415cccc0356d61da37389173d505da381125401e43640eddcdfdd3ebbec397657cf0407c123f91a1c388fa6ac9546e1f765b894c07452cb7d diff --git a/sys-apps/file/file-5.19.ebuild b/sys-apps/file/file-5.19.ebuild index c742d9e57c4b..1eeefc8e62af 100644 --- a/sys-apps/file/file-5.19.ebuild +++ b/sys-apps/file/file-5.19.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.19.ebuild,v 1.3 2014/09/07 18:55:10 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.19.ebuild,v 1.5 2014/10/11 06:45:51 jer Exp $ EAPI="4" PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} pypy2_0 ) @@ -14,7 +14,7 @@ if [[ ${PV} == "9999" ]] ; then else SRC_URI="ftp://ftp.astron.com/pub/file/${P}.tar.gz ftp://ftp.gw.com/mirrors/pub/unix/file/${P}.tar.gz" - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" + KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" fi DESCRIPTION="identify a file's format by scanning binary data for patterns" diff --git a/sys-apps/file/file-5.18-r1.ebuild b/sys-apps/file/file-5.20.ebuild similarity index 94% rename from sys-apps/file/file-5.18-r1.ebuild rename to sys-apps/file/file-5.20.ebuild index 3ff075e18600..afa500e6bfb8 100644 --- a/sys-apps/file/file-5.18-r1.ebuild +++ b/sys-apps/file/file-5.20.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.18-r1.ebuild,v 1.4 2014/06/18 20:44:57 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.20.ebuild,v 1.1 2014/10/10 20:34:58 polynomial-c Exp $ EAPI="4" -PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 ) +PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} pypy2_0 ) DISTUTILS_OPTIONAL=1 inherit eutils distutils-r1 libtool toolchain-funcs multilib-minimal diff --git a/sys-apps/help2man/Manifest b/sys-apps/help2man/Manifest index 1e58f8fc61e7..c5706ce4f3da 100644 --- a/sys-apps/help2man/Manifest +++ b/sys-apps/help2man/Manifest @@ -1,4 +1,4 @@ DIST help2man-1.43.3.tar.gz 199611 SHA256 67978d118980ebd9f0c60be5db129527900a7b997b9568fc795ba9bdb341d303 SHA512 f508d1e8bb3c44cb849bb69027b0be583c30a93fa55453a591892b9692615b55fdf008f21bb6cbdc66223a8071101be3b9a65eb77a07c8e4aad577ad236b7c20 WHIRLPOOL 196b9c718a4e538d76aa1209920238ea28afb83cda2ac38d259da87964fbf1822670ed7a2dc7a975880a7113c1c2953e101c22ba175bc8a1a9c08e92fa12c5a4 DIST help2man-1.45.1.tar.xz 124236 SHA256 c70fc791e6d13240327955de355244371b00bb1c9e247d5693ed601b716467c2 SHA512 728f8d464369752ac680cafc151f84bc9edddae1fb57621d5179346dd50f735b8ced0b7f46456cb6201e43cfdeb33b3cc155513aa76152889501952277774c08 WHIRLPOOL 1ded36ab4eb934462bba4e1b3d3f6168411931465c8cc60ca0ca86afe505e3fdab6607cefdaed6f38b004d9ce6f91772cfe036c248d2c73fae452f73387a6455 -DIST help2man-1.46.2.tar.xz 167016 SHA256 92191decc8c324c88bfec5e989d13108f22ed135d794bde2b3b802ffe3650311 SHA512 c549563af68aa1e7ef2d525266630d07f763fd034b9cb020255eabfb5cb9fe470c1b4422a33a08a4a4f24b432dfff7f2ca3a3baa5a2c749bf31f353b6f372ba1 WHIRLPOOL 11500b2e9e4d0bda55efa7242fd9129c52d8b194ab6d8a6989ee9115ab10f643baa95260d267c45dd8ae5f21308bdb54aa17224161e931c625b356d24982dcdb DIST help2man-1.46.3.tar.xz 169660 SHA256 a669dc3baf2f9fcfcf9d55d8555d1c234bc3cabd5fbe8e36e0dea4a88c222942 SHA512 3e7e50f360775298d591d7f840d2fa006f9a8cd32e0d3e5f2b56b30fe2024cfed6995011e7bbdb272ccfac3bcbfd8d99dad37de28e5b66f36004b0acf23fd524 WHIRLPOOL a89ce58624638b47505b833848eb7cecba797f6a0ffcda20b002e8380d683a9e2367903f61d79aaf8973e7fef69156094939a61e40eac8154107294dcd1d2bd6 +DIST help2man-1.46.4.tar.xz 169812 SHA256 1ae7f15f53b0cc55b070ae49df2ee5caa942c71529054e157599427bba3c5633 SHA512 a573b16269c622a5fb25d170c2421fcd72f65faf6068b48f65ea03285e390b5d4e1e9f2f8567b9d92a7ff4ce95b4a7e4f06749c5cd994b6a24040693c7c7091b WHIRLPOOL 01cc2055387817f45d3d685064ea918618be2908c896bc88cca76ac85a8c434fd8666f787b16aa6ea38a722669e9814b9b43180cc848d7905be7fb4a0e156701 diff --git a/sys-apps/help2man/help2man-1.45.1.ebuild b/sys-apps/help2man/help2man-1.45.1.ebuild index 6d1bc63d66a9..311f37cdd0c0 100644 --- a/sys-apps/help2man/help2man-1.45.1.ebuild +++ b/sys-apps/help2man/help2man-1.45.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/help2man-1.45.1.ebuild,v 1.1 2014/03/25 07:43:34 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/help2man-1.45.1.ebuild,v 1.3 2014/10/11 06:47:12 jer Exp $ EAPI=4 inherit eutils @@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.xz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="nls elibc_glibc" RDEPEND="dev-lang/perl diff --git a/sys-apps/help2man/help2man-1.46.2.ebuild b/sys-apps/help2man/help2man-1.46.4.ebuild similarity index 91% rename from sys-apps/help2man/help2man-1.46.2.ebuild rename to sys-apps/help2man/help2man-1.46.4.ebuild index 5cfcfc83883d..46af97e0de10 100644 --- a/sys-apps/help2man/help2man-1.46.2.ebuild +++ b/sys-apps/help2man/help2man-1.46.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/help2man-1.46.2.ebuild,v 1.1 2014/09/07 11:25:50 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/help2man/help2man-1.46.4.ebuild,v 1.1 2014/10/10 20:44:35 polynomial-c Exp $ EAPI=4 inherit eutils @@ -24,7 +24,6 @@ DOCS="debian/changelog NEWS README THANKS" #385753 src_prepare() { epatch \ - "${FILESDIR}"/${PN}-1.36.4-respect-LDFLAGS.patch \ "${FILESDIR}"/${PN}-1.46.1-linguas.patch } diff --git a/sys-apps/hwids/Manifest b/sys-apps/hwids/Manifest index 352385e9d958..606329c6d726 100644 --- a/sys-apps/hwids/Manifest +++ b/sys-apps/hwids/Manifest @@ -1,3 +1,2 @@ DIST hwids-20140317.tar.gz 1622637 SHA256 1a728b0881005b08669b138efe791b970b9b855e03d1ed665598b72ef551afba SHA512 a4dbbc5c39bbf55645214f96ef5338224f273c6120b9c155919a3fd194477c2cc47c2651723ad425b955c284ee81391175d3e6626955968a5ebf406f8592f156 WHIRLPOOL b4a479b24008a7ac80262b524a90ed99411ef6c733eadbc35789596f44eb8d90956ec9775141839aeecd871908befbb05fa20181b2ef68c6ebf68e5726bb10b7 -DIST hwids-20140627.tar.gz 1650936 SHA256 53386ddd0f58def3f6b578226d37313476d457d9a3f6651b9250452802a4af15 SHA512 495eb19e45b5f75e1c003043e1604c2f50efcc7b16d58208004412ef21a643f91bfc1ef0f035ee346fb7b6b5d5dbff4c446aea7b0f5161974a7c9d843ad02f2f WHIRLPOOL 680906049b4ac42856a3ee974e3171b0d3f2ee7a5791236e038e4b98026df65ed644484ce909438ae6c2e47b06f7d50bd94229b705313c6a6a0cb07c01a0869c -DIST hwids-20140927.tar.gz 1675469 SHA256 85f1e2017174d2099e2482da291fbbe62eb4532a8ac2e69b31f2d29b6677165b SHA512 7e847eea4a05cbe5bea935406e94274e7a194dfb7d5860f4489fa023677d442ada6c4df8280859aa4f0c5c06a319d1aa7a5daefcca0c5fb455f2cb012fa4ea6a WHIRLPOOL c81ac3354f51d3cd382cc20af457f0ecc9695bb62a9519c4b0a04dd60560fc3095b6fc461bfd7fedbf64685c1a362766700804c14bff60f5a5fd8135f14151fc +DIST hwids-20141010.tar.gz 1678967 SHA256 2e8d45ef56a086d2e432c05ae348584325f87353c154d3ede294bad5aeba0f27 SHA512 992314a03a745b5766ccbd86c169c67c03f05ffd36188b0a19e6e7c16be2897da820bca471408a2e3834021fab4a995a5316f45b251bf5cff21003f9ffe2e23f WHIRLPOOL f3af13cf659fc5195d3eb167221d9bf04f1431fd19d071d37f7a8c30a1e020589b4e337174f7c3b6985a4869d60618da88226b47f185679a7ffc42ef270a5820 diff --git a/sys-apps/hwids/hwids-20140927.ebuild b/sys-apps/hwids/hwids-20140927.ebuild deleted file mode 100644 index 536497c01bcd..000000000000 --- a/sys-apps/hwids/hwids-20140927.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/hwids-20140927.ebuild,v 1.1 2014/09/27 13:02:12 flameeyes Exp $ - -EAPI=5 -inherit udev eutils - -DESCRIPTION="Hardware (PCI, USB, OUI, IAB) IDs databases" -HOMEPAGE="https://github.com/gentoo/hwids" -if [[ ${PV} == "99999999" ]]; then - EGIT_REPO_URI="${HOMEPAGE}.git" - inherit git-2 -else - SRC_URI="${HOMEPAGE}/archive/${P}.tar.gz" - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~arm-linux ~x86-linux" -fi - -LICENSE="|| ( GPL-2 BSD ) public-domain" -SLOT="0" -IUSE="+net +pci +udev +usb" - -DEPEND="udev? ( - dev-lang/perl - >=virtual/udev-206 -)" -[[ ${PV} == "99999999" ]] && DEPEND+=" udev? ( net-misc/curl )" -RDEPEND="! aufs-sources-${AUFS_VERSION}.tar AUFS_URI="http://dev.gentoo.org/~jlec/distfiles/${AUFS_TARBALL}" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches http://aufs.sourceforge.net/" IUSE="deblob experimental module vanilla" diff --git a/sys-kernel/gentoo-sources/Manifest b/sys-kernel/gentoo-sources/Manifest index 1847a015a9e0..bdea994fd0c6 100644 --- a/sys-kernel/gentoo-sources/Manifest +++ b/sys-kernel/gentoo-sources/Manifest @@ -1,77 +1,39 @@ DIST deblob-3.10 117299 SHA256 d48cad04fab6a802b3a3e34955c8e35b539c2441f9a62522ec5a132c3a5ae684 SHA512 7b30f0f97ed97bf6b096d4a321b4b1e62f4b48f07972f2511870c3eaaf4f3877b0c6af2f30f6b985edf9c9c79267d40448b504c59016acfe06374630d1fdcba9 WHIRLPOOL 03a5963367cc6cb4f87e3d315ab61a8b3cb1fe577b20d7e2fb6ad83464075b3ed8176f543bb4c3b4e607d78cd55ef940f446bb75be09eb7496321930413ce2b9 DIST deblob-3.12 120320 SHA256 1d767acd3f461bcaa7ebef744dce1ca3eefde1cd41fde4c69a449e2470ab8c0e SHA512 61073cb763e3e0c21a84c0ee888087fbbf37b667ce0efbbc6c2ebc46ccae8460553511e347cf23d3c3603eec64df738ad4552a1b527453c7d795b8f90c4cf678 WHIRLPOOL c64cc566944ac241149a2a517da069185830be5b8ee25168b2b6b942bcf24fe3f2c0fe487b51a5b7e73e2910af2cabd7167cd1497ab7272c865d1eb3e68e4efe DIST deblob-3.14 121249 SHA256 980400e0db952ccdb5a507f99444330af893ed0f8a7a052916fcf0c2b2631f7e SHA512 2cbdf4f3947c12ade0931f0b3fb8b9c0312626a3bfea9d1c7d8d1d875b4673624ed3a6369653521998bbea0cde6730b573d6be918d052f1b553e093cb42a838f WHIRLPOOL 7ba1738ac829d8848104843da6237576f235c0151d53944ff3a7e0308cfb91600ffb9253402a34c2ed106c5b0bb3ce36785ead990396465341a957c58319221c -DIST deblob-3.15 120796 SHA256 d24f4b0548f42e7e83695919008cb75c70f5a7cb9c8a10824ca3c5c51fa62eaf SHA512 7815575001e48569268e60248da2768c6ee81982761420068ce16e6282a9552783595712ae4d937bb62d7e5f33e62b5daab0da35c8bb49c5d94ebde42f030495 WHIRLPOOL 403de2590101bc30408750a7a4eb1bdd6effbc5e2cc5c0615feff34abea649d015e02c4e54ddbb3dc33864c160f516a5e1e526162bdd0176944b382e9a52f425 DIST deblob-3.16 127089 SHA256 36a4b6667d16cac9f4882f4c96a57c37ea2f7ef8ed9e128db3ee9f60fc7d95d6 SHA512 8c7edc649eb68c194ab05856bf7a0359b18793001c247e6e742a56daaca7c159787240634a79a042ac8f31338900d8afcd3c82883ba5398be43d4d63a1882dec WHIRLPOOL 17b3e1025a138a13d5a0a973802d899e3881694cfc59520197994fd93245d835b092cb976873d15cf8b9079562ed3fa62dba19d87a668dbb757ddedd13d12946 DIST deblob-3.17 127288 SHA256 93abf2894baf4d937ff2889fd1bdd04f1093bdb1321c79d8275e40f483e57ad1 SHA512 cb82b7cf59765991f74a1f5829cc6fb036a2e3466337b508884bcc5b27d7fef35db2e653cead705a37c7935c0bfb6bfeb1cdac7293de41994ee9c17ddca2ef39 WHIRLPOOL 0697a7bd39f270393814ffcbc746da6883e41fb32354223cdde8757b126d762bff55e69541c4d9ea0cc75093e19b73c4b6b09d98d9983e07b64fc4794615f2c8 DIST deblob-3.4 109026 SHA256 2fca296bccfa7dc25447f36975971597f67730168a9bc4db0853e55347950680 SHA512 7e6263e265dba957e966b76366566c5b318322c33ec60c9f268af1a375271cd1c1232749902832554f93451225bf61c967f314a48c2890984974d30a984d2e01 WHIRLPOOL f3d8d76078b4a372277926d1d4f3d449968acd64e57a5fbe8fc1c3057e8a9893ba1d580418598089977bb808d9a351de04181dd7f73395e99b306ba8d4886160 DIST deblob-check-3.10 565672 SHA256 748df2cf5c1f012f9942948827e57b12bb05c569cae220416b3c0339520d9855 SHA512 341ea8a755c4f1f42ddbc4e7dfe8d786e8b29f497bee3fd72154c8c1c0bcadcb9efff04f2663090bd8741e5b5baafed26a62b9d16c31f3b31665cd3cd3e779d5 WHIRLPOOL 7e6c8eefa9b44e7d50011a9390baf7999533b4016122992c0ac0722cce05dbb8e4b7e96f1f05e9bfdd2ce3e4c08f0e06c8955b68ed8c044ff75f3a314a405824 DIST deblob-check-3.12 601108 SHA256 e6c07b4220f86007ea31f9ed5d01023253296ddaa0710e65e08f231eccf6085a SHA512 fb293fb5093c410b319203cf0a65457a3ef28430ad6257b08a6e3eb77011d79708c51121c0a8776f55124259719782b4ac9b4c54155c13bb05a2679541816887 WHIRLPOOL e056b4edccd36911fe415cd1780bb484875a16237dce89316144c8ee07df3253bc19abdbee2e51ab3dd9248682470e80409819584c188e22601026e8df222754 DIST deblob-check-3.14 613747 SHA256 e1d5ced14e38fd415eb5a9a50e180cfdc63b2d0f0350a6d36645b82ef0351304 SHA512 f5901a7c41db34ea3c29e6c6f6fa1afacf4edca1cfad901599b982fd66b5ce3894aa9075b5d15b7a8a6c9694833752fb609d98889b5de39ab59aea7d024a740b WHIRLPOOL 5064bf7423a4703a976b4342da5b3cef65584ee701462e261398170b3e5189036327e114deb15a29ded79541dbe084fa86b08b8c293d4585614ac09f791d7f60 -DIST deblob-check-3.15 614485 SHA256 a594a31b5c0a7bc544d2c5158a16d4565de4e45b14f3fc309cfcf91bf46491e2 SHA512 f85e0d9ebf25b37fd9ae765cb2d5767ac475abc72d8b6bb5ed775f03efb216d53cfe1d86bd2945642274cd2c3ddd6ee0ded05019bde7bac71733c96b366cabb7 WHIRLPOOL 8e8e6cdd41313f61a7f9aa4630185f06e785ad951582165d0890596a3e59f8c703a658bf75a36359750eddb9a8b3edb86656860a88dc47b722329aff4cdbb7ef DIST deblob-check-3.16 632725 SHA256 9647fc6ef8dc3ad7cadc511c0987664ba971892c3d4f733725d5b86e32caa4bf SHA512 4dd69ae9c7a98b1b5fc01de48282d4c4da196bd938ec55c2a82442d1134822693d517466db2ed4ebe8d46014a9dbe1c0ba2263cb21e49372dd0d0ace5ba3d504 WHIRLPOOL 5feadd7e44e6d9c633f58fc34b91c5ba4dc3105d8d9f3abb656cd15fc3603c3d68ad94d8d233fc47f5378a98988e8f9fa62fcddc4b7d1cba197ca7e9784445a6 DIST deblob-check-3.17 613747 SHA256 e1d5ced14e38fd415eb5a9a50e180cfdc63b2d0f0350a6d36645b82ef0351304 SHA512 f5901a7c41db34ea3c29e6c6f6fa1afacf4edca1cfad901599b982fd66b5ce3894aa9075b5d15b7a8a6c9694833752fb609d98889b5de39ab59aea7d024a740b WHIRLPOOL 5064bf7423a4703a976b4342da5b3cef65584ee701462e261398170b3e5189036327e114deb15a29ded79541dbe084fa86b08b8c293d4585614ac09f791d7f60 DIST deblob-check-3.4 448778 SHA256 28ce952c082e765784f9e5b63f5a3a4fb93545e5e788dc94d094c0b3ae8ea3a0 SHA512 f8f47a0adcc1b9a16c155d89d72d91a02d47bdbb3ac3a353be3873dc868fa44451367b7bb3906817d1ca8f51b64c99ce381d2fa3121582b70c7c2efb18dfc579 WHIRLPOOL 37d219204e15e0c81ac43faed93f7a5051735c474efb2b5167117cd463fbe81167267b756e8ce546447a30ad5bac651c943401ed98ec61713e20af89aa4fb957 DIST genpatches-3.10-49.base.tar.xz 758444 SHA256 2da69b9a4bc97098d7172bbc8dce90a7910eae6e9e629d41575fe24fce20b79c SHA512 319722f63ec911bd36ec053f622156acc191e7ef778d1aa8c9188591436ea523c52372af1a39320131ca247e1f3bad32dcbcb7563e83bcbb5c9bccbc84a4affa WHIRLPOOL cbc44f9b5fe1bc023f2310159d0b2fe3a0944e46c9d65b3e8228e33f6b9ea58f67bf74eded155b565387085ba17734c406d8736f1aae0be7c46e16add2c0efa9 DIST genpatches-3.10-49.experimental.tar.xz 48596 SHA256 04000c4555756aabf9bf7fc0701d8b1d2ef878e513eea3a8fcdd9541c309ab1e SHA512 192faf267f17f8708a96ea9429a5e14ff03b591ec888cd4688b5c02765f3af1f052a99915969c366c65965ab657152193bbd98c83f093da76ba66930de473d77 WHIRLPOOL 6ddd24fd6f79b60cba7eae10b24a581dbd27d685b604ca19dd7b23edf714458f13bcbe0a090cfd012675d91fe660e5ee8411d539b78394269d803bc1d9a30d06 DIST genpatches-3.10-49.extras.tar.xz 17832 SHA256 2abcc07e5590bfc6b5d2f84e75800c8b10115157081b1a7ddf3a2e502196389c SHA512 9ccc6d3f63d1b5661bc9a51e68a8c5fc7b533be800cdb5a79bc5a8865aabbebec047ecd2225f08413f62c431b9b64a0cb59570b84459f0cff1e82c171214190f WHIRLPOOL f0edb60de49f26bae388b709902ac477a56427459bc81c67aa12d40490439b8161961974bee482503e4a0deb006d78013df28ed503bdec8d34908adf104aec69 -DIST genpatches-3.10-61.base.tar.xz 896280 SHA256 1f03a01644fc2d6bda67b1c9f1b607e32e335b196a2ba7b4532d2f712d9677f1 SHA512 87d37693721adc748322726915c353b1fcf7b8e4d401c0b1d7292d72931be7c6473f5e688f78c5c3108aa396b26d7b8b8795b3f54bab7c3bc2e906d32ca63c01 WHIRLPOOL be732c223df496e56884dc3c50d4bcec8ad8c63e2e4fa6c990b1827c5c43bb15b051e31afc559b07a9b709af73dcc302571c26346b1c06f0ff8c1c46663c80fe -DIST genpatches-3.10-61.experimental.tar.xz 48584 SHA256 73b369ef8ea090e769adb0591994294e54bb22fa8bfda3aaa8d332205b56884b SHA512 4967c09ab077d292ce7966f014bbdeb579925afbedfeec71c08595fbba4690145e8bc25d73fda1f9a87893b180d43c203964d387657362689dc2f37d4f6446b0 WHIRLPOOL 39e78240a230c4dab9efb8ce3203cea2e50cb9ff2551f0e23deb29cb5bca1d8832d793f1645847ed031ff5baa7fb297dc8a0369715ddbb7c884d0637588f6744 -DIST genpatches-3.10-61.extras.tar.xz 17820 SHA256 0d2723a5b9db64aef9dc9b397bbb2830e1b0d56bc631272e914f01eabafa99a3 SHA512 5a96a28409fcb4b0eae1dca936b9534cd36c762304189def162ee4dabba86117015a3dbf8cd0bf3d9b9c88a38368b2c370fbc93abdce12a9bc22e0423c89fcf6 WHIRLPOOL dacdcd8d628d7f3889314e0f16e164c9aa18dc102dec5a60b3debdf5d8cacc127d3667fd487c987c7496f499fac399e53b29cf86b7a2a026f0594ff286729bf3 -DIST genpatches-3.10-62.base.tar.xz 933044 SHA256 f326c9f161f8441b5e8c1088444777591a66a9d65f832d04c8537683d4bef0bc SHA512 08fee7c0497d845d71586264299f749f144f38d1ffe8cf65539b4b61e9a547ff12692cac762d7f7f237ccc505edd3483acc6f7dbacc676100665c8e9419af366 WHIRLPOOL a327c36ed2c5798b5a194c0abd7684da4a6bbe7f012645a70c4c2564433bbc73115987fcf1c2d8313af643c7b4c01b9d8597b5021e267f62e7a91456cebf5417 -DIST genpatches-3.10-62.experimental.tar.xz 48592 SHA256 3d95dacb60e2da9d99b1ff63fbcde37ad81f8f6c9334d37f6f62d629ebbcfa6c SHA512 dd8eaf106a21710fe59a4ca9c9e4364d915fa72e573cdd3d04e4e8c6af803ab6ea124744950e0de60186d693b1aa5741a600876372985c9ff99e591fafa74671 WHIRLPOOL 30dc258d26b9a68d2c7208d3bcb7811fb233f58afaac166c82a57d704142624ebbefeebfa840a15dfafc16cbbe9ec7c666f88dccd8123f98549d49afa0dd1442 -DIST genpatches-3.10-62.extras.tar.xz 17824 SHA256 7d73e0289429aa594dc752ff2e370ff830448f8966c477131746f16e7ab069f5 SHA512 7e9e0f059431e0351508d978e7ae4cb4df3ac3382d4d8ccee896da7a16e245e8ee39757820806fab92e6135b135ef298c4383b633e3031fde87cb6a8e73e66f0 WHIRLPOOL 3c4d7b8afa330c9a853108f459ae990b643a0ed4a96d63244a6255cd0f9d42432e05c7892faa60e729ddd3d9acb2ce90a0b5f6dbc479bd9e2f6ca00206c66285 -DIST genpatches-3.10-63.base.tar.xz 963264 SHA256 a75c5b08a5df6209d355186993b349274e39adf6434d304ffaf3101ce8142397 SHA512 3d9f516bbd569abaf71f7b7805663421510b8b956032d16d4061cca70081e812647899e887d276e17a111cd0c2cba68f9294007ceb5e33a9da7f052b14eba2f4 WHIRLPOOL 8b15caf1ecf01d2b38d63b023d5bd77ddb21e922b2ec4fdca3c623c94855f6cafff8163ff5fea1623a64a7b51991f87207c7860f0328f562890aca4464af5f08 -DIST genpatches-3.10-63.experimental.tar.xz 48592 SHA256 dfb50fc945620a9f0d17fc7a752684c544cf670728ea7b0d0e570e99a770e025 SHA512 5075946ad7ae0f9ffdb24796aabaad4ec102ac2de405b6e908853360d418a7297ae37230af8dc3e1097300761f170f28b3c1874430d8d251315c9bb8a5767993 WHIRLPOOL 602c3aad17e4252fd818fb3eaa2bedb9f0f6f360b5c1766d912fa19e31e9f8da536d2074aa0c8658964cac1bb3ad73e58af2b421e8c1dce3c3fe37377b1b7d28 -DIST genpatches-3.10-63.extras.tar.xz 17828 SHA256 0733c96a488a7fa27495beb2cc78edaf1046114008d1c47d6e01c1dc094ac0e2 SHA512 ea5f961e366214bd41737930b279366113b6aff0c5bc475e3065fe0d8e5930dd3f14b0d59f33228744975dc1365b3215daafcb7bbfe0a315923123f4f74adc87 WHIRLPOOL edc22738456d79d6114ea9d1568cf912d901b6733d8219b34e15fa7de49f1c80d199ae2b00e704587ce64725a11487dc156067df63f8d7cb18ca97bbefbed58b DIST genpatches-3.10-64.base.tar.xz 968576 SHA256 e412d3745f75a2b6ace75224ff16a2031a10c04589765229bf1d4f97257f6463 SHA512 9f05e58a282d6054f7794e87f8d323460cbc6faad882eb2db671fe1039d6a2a2f7a889ebd1fbd35ccb8d013d5cfb47dfa28a87d6ae89648cae807c6a7060b34d WHIRLPOOL c371d32fbbb2f1c4db2228ca21af9e48bfb953d248d526946d937bdff7b35d08917dcc758a5ca5d41bec579f4e3ada96281ea33cbee8f7b1acca909368c45288 DIST genpatches-3.10-64.experimental.tar.xz 48592 SHA256 dfb50fc945620a9f0d17fc7a752684c544cf670728ea7b0d0e570e99a770e025 SHA512 5075946ad7ae0f9ffdb24796aabaad4ec102ac2de405b6e908853360d418a7297ae37230af8dc3e1097300761f170f28b3c1874430d8d251315c9bb8a5767993 WHIRLPOOL 602c3aad17e4252fd818fb3eaa2bedb9f0f6f360b5c1766d912fa19e31e9f8da536d2074aa0c8658964cac1bb3ad73e58af2b421e8c1dce3c3fe37377b1b7d28 DIST genpatches-3.10-64.extras.tar.xz 17828 SHA256 0733c96a488a7fa27495beb2cc78edaf1046114008d1c47d6e01c1dc094ac0e2 SHA512 ea5f961e366214bd41737930b279366113b6aff0c5bc475e3065fe0d8e5930dd3f14b0d59f33228744975dc1365b3215daafcb7bbfe0a315923123f4f74adc87 WHIRLPOOL edc22738456d79d6114ea9d1568cf912d901b6733d8219b34e15fa7de49f1c80d199ae2b00e704587ce64725a11487dc156067df63f8d7cb18ca97bbefbed58b DIST genpatches-3.12-23.base.tar.xz 597588 SHA256 086af7ecd2d6931d66d9022e706ee218ed5c99a226db847fe9178757c60ef678 SHA512 14b1fe4deb3ecc085e5d0cfadb394f4971c0c11d5bd5d872d4dd0c83b1ff1c20828f8fd8836fd1e4a2c0f3288483fd6fc5ea172ebc1f5e1de974bb31b45851be WHIRLPOOL 7d9dd7e5ca313a807c8266bf0335df41c88492c4b4b86cccc02cb3cfe92f33cf701e5c4539f0238c41e092b9e39f3db3603aae9fe8b012f84c59960ac06152e4 DIST genpatches-3.12-23.experimental.tar.xz 46524 SHA256 5f45d38330f09f1c7ceda80656bc95dd876c3895bd2e05846f0ff684f9a43698 SHA512 a971771ba2b4cca8cfa194d28e6a8545e477f3503cc0cba5ebb226d13367a53043a3a1b39d7aae98535d988c307f286bb1f5ef3f8d87de81ca18c0e2347472ca WHIRLPOOL 2a3557df867362f05062c973bbced1eab6b4c0323701a10faac6ff7d2f4f2be6126f7b19a2acee8212b560d1d497729071e770d7cbcda546cb9757a2c433d822 DIST genpatches-3.12-23.extras.tar.xz 18208 SHA256 90c72a193a96c276f1dcc4d3183fe4247a7909d28a951aee477e80bef187b2b3 SHA512 ffa04e3e320de74258c068243924213093596be763a9ef221a182a0056ace54ab77268a2987345912fe0e0e69e48a7e7a0c45291982005e3a49a3e6256a5301a WHIRLPOOL dcbb336a79870a204368695b81b339068f932881fb7bc816cffda8d5a3b36101593cb1ae91e23c9225f1ace92900a76417dcfb63fd09b7d61863f6c8dadd6797 -DIST genpatches-3.12-29.base.tar.xz 769352 SHA256 28fc89d56cef29d62796cff2f6ed2a619f098c8eec073b7d3429c7dcbebb7090 SHA512 4a9e45b1d6bfc6db3760aca8e4bd057235de033b07b75ad53fa51e0e45eacdebcb85fb12c4624f8431c654b1e66ee48df2e8ff922da82bfa727ccf1f8791a1cf WHIRLPOOL 78c8429b1f037e445a419c4119ef67363d7cc35b6f4b19f7761af71e25795c0c917e14644888a7b72bba5d8b64f2a02e31c5e6ecc12ca8e4c3de6d831e4b6835 -DIST genpatches-3.12-29.experimental.tar.xz 46532 SHA256 53e55f02286d0abeb5b34264fe056bfc1ac3aefc9dce49c0ec049d9b14af455d SHA512 a58175dd0f8d8be55ecb5e4cbbccfd37711cacbacb7e6af1ccec90e4fc137a09fd866997417cb596098211b17a4364e7bbd24de3c1a6ca51d3310979ef02ff12 WHIRLPOOL 7486d7009373c113f5b0355d810aa3a9c4f44f68e694e5f98204b9ef03bb6e653769c5332d40ba109d466e411153c924a3e38926dc66f612d399caf6e36314ef -DIST genpatches-3.12-29.extras.tar.xz 18212 SHA256 4f781c05564ef5a5b03249da3e65d9a573161c3936dda1707ee432a63d64e3aa SHA512 7d74e953e30dfef34bfe9ecea17e95b9258ac9f7f6be1f50ed15ebb61ab2ddb7654eb2071ebaaedffa83663a4853ee81ba674158d07a8cf75085e62f46d20a6c WHIRLPOOL 3e22619fc6f50e7c7492d3b614e06d73aa08ac1a0eadbb06d889550e6d23eec5b3cd0e46f694a526ca1830ec3e07db4232c883249411a77a12491023c4068835 -DIST genpatches-3.12-30.base.tar.xz 817792 SHA256 e6a37d1efaff35584d23cf9f92526cd38680c4421988b7379cdcc713bc6118bb SHA512 3843ae8cb44c354894da3aa37bfcabff46f707935c742d9ac2c2044ccd7b473acd3ba2ababe64c3d960510ead62bc295292355a7f960b3f16fa40f11fc2e99ce WHIRLPOOL 243039161fa10a084dcc826d3c175c56b529e160a181647590afdc818aed7e64040c2c710c188d90f5e49530c3eaaa348ef5dbdd595f404cbfcfe673935812cd -DIST genpatches-3.12-30.experimental.tar.xz 46532 SHA256 68f41a96394b811c16e60bad85883cf7640cfcb1b6a21f1ec8ef390a2a32dac2 SHA512 4fc7f6962238741b09f9c3871e37f48b8067d85d1682b56417a39c185111056cd73025ce02013081bea02ab4edae323a62d2b77b0d81e2e7d0e3a9b6c639fe33 WHIRLPOOL 5bc22b97540a8b44aac9abff78dfd1a8a51e6704aab24dcec9bb208a7801c9deedf24774d60e589a39d0964e00f9974fb5bb783a2d65a5a45803c74216821c62 -DIST genpatches-3.12-30.extras.tar.xz 18220 SHA256 5ac72ec598573f57e8d9ec9c083f5ab220d1afd9fd47955a0fa5108baf488a3e SHA512 66681f84579fe8d1aaada3f36c12c04f7934c8826b0a6ea7c9d131682b2591ce8dfe16e49b38103b1d2b16900674689c5a585b3cac2afeb7de25cffef3051848 WHIRLPOOL b2fe517ed74234fb44e2698a50706b379b7c8fe9e532714c32497c2510a2efbc4b3ba3c20b35bba35aed7503a777da53c593ecdb2e322d5ab1857fd85cdb2714 DIST genpatches-3.12-31.base.tar.xz 856072 SHA256 bce7d41bf855929d89d23fdf20acfc96cd5af5b3b54bf60d272bc96e7f3e7075 SHA512 fbc8bd55df534e4836687dc420ef42e71f8cb34e5f6543ac9df9f6a4f004635f122e8711ad7bb7d6f80b76c239e54945e8e480a8a8edc24472f4fd17eb701efd WHIRLPOOL 170f5c2c15e6e2d482f5b34b8ff6303059081a55299946fce36972216937f472f38900056828a6033066618435a6894a3dc3e2a7d5d918e439749c6d486bca91 DIST genpatches-3.12-31.experimental.tar.xz 46532 SHA256 5487a9f0608d32dbb8295f823e6f6995f4a6a59274c51729f464f72d6d38d744 SHA512 409637c80c397385fe6265dd9afba76129015c33215a943760fd052060284de07331312a89b9952d9d2f1e490e1bf03c928d9895a0eaec4c698b74ee1fc13298 WHIRLPOOL ac9024b9faa743ba10b802cf065a9a74cbbbcd130aa1ef95d52b74f6448d3b36cd344ba3d8efdc413bf5f521eaf52cc54560e4943cc773e31c41f50eae03e04d DIST genpatches-3.12-31.extras.tar.xz 18208 SHA256 8ab4f8be8ec639805c53d6d14bc33e5b91f6467af959ac6d15b1b3110c5fa0e5 SHA512 3150a26fb70b0543cd07bad36c0b135f84b6fecec6a1d80e1612d33578b79047d1f3def63a9aa830c7ea25e998e02d1a659c013de12e266d70764709f1e55ddb WHIRLPOOL 7ca18d64783f1f1eb8c1a01e8755f00639eade7248190b068b77fcb2316b1aec526d9ac88a80fba9dd42c635c73505d6faa962c14dd4bb3130b4997bc6c2a641 +DIST genpatches-3.12-32.base.tar.xz 903392 SHA256 8d8b11e642fd23c31f01971f33364351df88283011da16a44eef800b4b596c40 SHA512 ff531668f3a59c342b3a25af5aa2708f0786ad20558c01731ee5fca17f0f04070abce1567a71bab6c84850a429ce237abafa97f17ce12ebee9d6a72503e8f664 WHIRLPOOL 4ec9eb11bdf908bdca287a846f1e17a8b5ee58d394f588937d7e08c06e1d1e43d4dd5ee5eea162779eafe9e234075a9d020f4743f62cf6c56885fec7231f254c +DIST genpatches-3.12-32.experimental.tar.xz 46556 SHA256 147fd64983714774378ee66616177ebb66a6a8e0e6720836fd89c877e70ff5e1 SHA512 91b29ff3ae2c2b3cb27644a96b3c92a14a0a43e88005a9a84205da33fadd1d9b878e1da41d4f25579fcb5b549f7e623d3f5a52d219158038c4337ca37d38ec9c WHIRLPOOL bfffbbb68476b431839dd630f27063f319440f5d0775afaaa0d58764d52f0fc1f2a949f4e7fdefb26f07c0bb034ec324f2eae600a7741bd70535d9df75be9585 +DIST genpatches-3.12-32.extras.tar.xz 18208 SHA256 db6c829a62c2e23234b9a03b969276f25388a41a2667c5867ffdc7c552a2c517 SHA512 fc4f11f07f1c0b449aa06f06d30a10de6146d246f523a5c74a1b55279a99fc17593b7461db93c88ef52870702105ef51e9b79e06c991c0da1d25d0fe32840761 WHIRLPOOL 7443d97084e3fc09024b44ed2b430dd6cf776fe548edaa5d69db2cb77d8169eb9fe902b1d0ef5b7e9349dedcb7aa36c1d75a4da480a3371c8c77209042cd3d5c DIST genpatches-3.14-18.base.tar.xz 374116 SHA256 ebc2d8db2b3236250e2c8187f6d68be965e1d9987b4f37a2f8de8fd52dd0e0c1 SHA512 70a44ecc4d2643f47e5eadc59a27d7fd0c02a8513efe62f19255f4fc16b30d32134e6daba261422585ecaa630b9aa2fd176e33eddc4fa7efd64a71d4cd527643 WHIRLPOOL 688e9447773193a865d28f13bcc42563f384538acaeeffd4460c1efee9b77e50b98238d0f781b29addb17bfafefa73f40fe5e8199706998a1848a506c7a0fe0d DIST genpatches-3.14-18.experimental.tar.xz 51216 SHA256 b582d0f4820e6942ba9e8e3b44fc9be7475f002773aa032851385d6f24d3e590 SHA512 6dbb7a17106c4cbfe4d0d11a956ceee8f290821e526fcb4427e08c20d5518fe801a268e4ceca3a698315eb711c317ada36f22717d8153e8a462fa2daedc82791 WHIRLPOOL 214780d4d8d47c6583d6ae168525e2682a73953f5a34f057612570d77718077d5612cacc6c04565c3cc1ec4890f09cce019e5acf49b795d4532d45e8b135eccb DIST genpatches-3.14-18.extras.tar.xz 18244 SHA256 8d4604a2737ecf6d50a150ddd044f86fa4fa60197f20379173f0deaeb5d7a01c SHA512 eac84653e08d8e05b3cf8243cba8a299a67a06e381179a7d4eac2d2d2fc65a37f147201bb0649063cab4185afb525cef4f5e38afc464b1325a700e89bd15d2d7 WHIRLPOOL 99b77a8b0d5c7392c8e3dc850f493c1d7f8e1198ad88edeabbe5a63dedf2b4c213c5cce2367aa981d131aa8606da53b6650df0af5e498155e3a974ec0a0292c5 -DIST genpatches-3.14-20.base.tar.xz 394304 SHA256 57604d7dd33a32060ee5f2250685de62cf88740ff26f2bbc91713f23ecd4543c SHA512 9b5588f75771acec85cd6d5c5a4548d6c409d2a8f18f350ae19d2218ec4eafe44b16466a83ffb162ad178b4dd7b6a6ec3845025ed7e0f728359b215d277e487f WHIRLPOOL 1597022623b3d4117cc939bef0d2adf76586d6710ab9f6487005a88ba5b093dda8134081da71ebb408c8bab18d1771f246809011a4f25941301619c42411aa9c -DIST genpatches-3.14-20.experimental.tar.xz 51224 SHA256 cab7f2f37e33bbd249b88421034b1d69a67ba315fe0062884f61d4e178f73a7c SHA512 dcf5e340e8576633f2a1aa5706fca30130c4b6d613dacf92995d74a93526b9f8d0a53167173ca716762a6d4ffeb6394dc6bbdeb82ef955709fa9ea538d560567 WHIRLPOOL f5e823d553b83eff229c00e48bfaf3902e6031423c5b9c70a3ec8a28ecdffa8e49162569bc70e7e05f0e93ae0404afea98ff278ea22418381b4c56154980cc1e -DIST genpatches-3.14-20.extras.tar.xz 18228 SHA256 ac109fe0d1fe0bb652cf87f06eae9b92c593d0849edaf9c11f6725e5a0c6cc81 SHA512 3e284c74895eaa2e3ca6c88e48c631144db5718d44bdd6cc5e8e8c302ac8e3bbcd8ebb0dc07acd6270cc612ca9a4983ffe013e6de6bf9db8df319cff36c2991a WHIRLPOOL c63cc865a2024b36ad1a33f440551454ea618a3e2914a1b4869c0582d8e8357b2e585a5153d379fbbe02c3d5ecf22ec18f1c6c564873910d0806bddc076972d4 -DIST genpatches-3.14-21.base.tar.xz 408212 SHA256 1d53fab58d454bdf5c4f880c4d412ccebde0e2992c69efd2d5e5a520354bc4fe SHA512 993c43c989042fa4acfe22c31879a7272d6a4d4d5f2baadeaf6c300db7a7cd5be77dba0bef4e7ce87f0854605284e1eb029e153c4b43d5979f8218e7c3518d8c WHIRLPOOL 3142686b9d3445cb88bd4cab846e5acbad12e5deb9c9fb5e0875f870308077f182d0cb7fb49d9c4cce83c7d91202cd03fcc4d7500c24a6ffdf78cfc02f46c1eb -DIST genpatches-3.14-21.experimental.tar.xz 51216 SHA256 4483398bc1f01f01e10dfca0966facdd384ee5e0bbf0bda2706f814ee685d967 SHA512 f9202bccca882bcfd3547eef1f4300a32e1e5d5be8a26976430a55eec43adbf802b4175f1c332bfd3affd8dc658c5e6c88efed76fcdac8db1784582d08eb485d WHIRLPOOL 30955770bae2092debede9928cd5f1117210231ea7f11a1c0dde5dc4d6abd0d0231c98392d8c17417775ba150429561a7385b3ca3d1e60a097c52ae9080edd79 -DIST genpatches-3.14-21.extras.tar.xz 18244 SHA256 3a0428577e217e92dfb8a2aa014feb9bfe1086f0cef20524663334376d671535 SHA512 207e1bb59ee882394e2c7cf1d4ed67be6af9ebaa77e360d1679f3f1209fbdd03c07eb0b8c1dfc81ce980d9a7091c5ebeaa58ff92a324ca77e43b1416340d00c2 WHIRLPOOL b9cb6af6b2144ef156440add4e3f1565e08495ba92545e2c30b78fdcd07efcc704a31f6fe583ae85c380c894375c1ef954cce7ba19cd434af42b71b8ef9458c8 -DIST genpatches-3.14-22.base.tar.xz 433320 SHA256 2757c8fb1d2b895c021bf2f4d8c912198a8fd83c8dd5866a16fd83e8ba19cc4a SHA512 9e31325dbebca799f2107722e1d227ba56aee49e791dc5af71d3d69c5f0f133a3d7a676fc31dd9638da0192c716cf5e45d3007af8ab830d595e3bf4859832ad9 WHIRLPOOL c09074764145536ffd9180ee7061d395aeb39c131cfc99db20b40e1f1de79ed117eaa8a0087b5b00e01a2414382c04d7f72662ba231025ca059f7c523929f8c2 -DIST genpatches-3.14-22.experimental.tar.xz 51216 SHA256 1e91e70a583beb460fb0efb52b72d466fcfb4d3653d32f39a2e9995af80beb09 SHA512 7080a13e232a25f4825cd09f55900823a27ee50dac37946f6fba7a689cdfa275eb4e95c9186a2a2d646d0a650a47f4fbbe7f33e4d16e78a1bb20c10ecba2d91a WHIRLPOOL 729ee0ecd82e512167975dc990fdcba3a31e0f6d164006c4e27b3ce713b7292d6bb083b256a0e942ed5a21cea82ad75d4aefdc1fd50d432ea01ef154b13df21c -DIST genpatches-3.14-22.extras.tar.xz 18240 SHA256 326fea33c8c40bfa5ecaa324b3a0915a029e0c09a61fd60cfe83beb36440fb21 SHA512 b087eb1fe700902cd4b3a3a652572f5783c96989ca60bca9c406365229a9140710b5298c1cdb94ba505eafbaea9f3c3c2309e11f8f14e0773acd0981f6f7d119 WHIRLPOOL 2e038e26446b4a04c56dc83d997f2f66e28c6fe0438a6d1031891eedb60b401cc577cb219a4dba0e42c395e157bf01699a53508fb73f73a597305a0c7f89c86d -DIST genpatches-3.14-23.base.tar.xz 466112 SHA256 587eb6511eaa730a2feb097c1d227c6c6f9ba26c445bf09b31439be24a67b03d SHA512 4cbb67c836b6d049553a9790f1d15e681510e363b8671e380fe4f92a9ff380016bcab9308c03a89746cfb210d69ae906a658cb1bbf4a90f692da3edc285594ce WHIRLPOOL d33a22960f01cc0355088db509a78adbbd477e18c0d78611732a71f68ec91b9597dbaa6d6389549a0f87e33ae24c444d244c54e3536bf6f8951700dbe421f890 -DIST genpatches-3.14-23.experimental.tar.xz 51212 SHA256 577ba8be40ca0ce973137a796e466790ebbb8b1c17f651c096fe07e524881825 SHA512 c7f1e5d2698f955a1cbf0f42f90daf065c322f646943e32d24f4847ed0f90b64c76a11164b6a8ff34aaee78b5a03be466731789d7ce1f0c6a1f729ccd6b594ef WHIRLPOOL 1c7ba71b50947cc95085e3a4c91c697c5bfca0fcb083d3bd6afea5dd18eeabcbe5729488c3cce284084646d37c3dd923b1f5a6f62fff48ac8c61b18612ad9871 -DIST genpatches-3.14-23.extras.tar.xz 18240 SHA256 a1bcfb9c29759a6d8a5225fe1f30594f478ce53be5971bae1066ae3d818a5135 SHA512 e565cdcc3b921800a824484b4432c620c90cb9b002484d9755d6820d691d97637f93cb3b69d04dd49c3ee6c87841ba63aa2f7df3bd568b6698e886e7189a3973 WHIRLPOOL da5b0be57bd0c56f860bfc719511d16743e0c1773018ac202a6c9e8e6b3386422704ca6ffdb6829e4d827227de538c96f803082144b12794faf721959a7c9f75 DIST genpatches-3.14-24.base.tar.xz 518468 SHA256 8057225454ccfd9d00bc347500fa1593bd3e73806fbf4686e1cca92da383753f SHA512 af2ee5ddc32efe15dca456a090d38a0e66e33d8ec10557a191d3ee5c722e7a6dc33d6399218ba35c36ae27f656f6cb160430fa19cf1a4e4b5d9198b346da1e1b WHIRLPOOL 1e98819876d2c15a977321d54d6851d25bd054fcce627a472e4f91a5c8c2e397abd471a3040ab62d1fcc427e2895f5b5b9ec8d1abba9f4196e902797f2159f18 DIST genpatches-3.14-24.experimental.tar.xz 51252 SHA256 c9464c26e4be0836b27b65effa341216d874c4c098e0badbefe5adca54161349 SHA512 2d8b6a43bd0919e27bb52a7243899a4b449db33dfba8fe5b230d9a706710ef3aafd514e3bb127511049ce2f25cf40e0396567458c9440fb4523a8f3e7866fa18 WHIRLPOOL 1ca4a6cbb4a99b3e53fbafe36066d76e8cb149cb27f6ec60447fed466d760eea06e0b2e535cf13dbdf7a24005d5f3c08b826ac5ea1aa8c9f18ce27f6713d89ee DIST genpatches-3.14-24.extras.tar.xz 18244 SHA256 5950f6bb978fda16f52268e4d9e55aa41571a32e483274ea74ba6a376d53971d SHA512 8c4b53bcd94f26d7af27905cfd7d65b16f4d0976843fc26e41a8671a3f16eb0a263384c6065d863e569add9a8838880671355021d9b744ba567571f650bdacd0 WHIRLPOOL 522fa6b0a57822d5dcd6a58628c4cb7f1306a667357fedc95c390d5c64ccd0e9e1f7e17bb805f2a2ab8f723378904dfd7c57634c992b33f1f7342857f2a0aa48 DIST genpatches-3.14-25.base.tar.xz 537008 SHA256 c4561a0ed01bfb79766169dc5aedeca637918ce128d15f6be83cf707b232a979 SHA512 194a24bfdfb2cb1ada68e8a522e692f52b3b12e27edeb1f00c0d247eb281715e003fff2149c0c5e9a0ce6bb0ac7862c210024827340aa04b1ae5c0058371eb80 WHIRLPOOL 95525e435346cdae550f4cfd25df86c7b15c97a1854c3bfb18d68190cdb22ffc1fe4d243a360e8ff835b0eed9b7ec11be612aa1679a86b6b95541812548de18f DIST genpatches-3.14-25.experimental.tar.xz 51212 SHA256 7bbe10f4b1032e9b4bcc3d8523c90c555f5cddd8eeb1f6600b335f9858a5bb2a SHA512 91b241f9930a5090da77f57dc5d358b055d7e65a5c6517935e76b08e4dd038bc905eb4864f102d7420a5fc50fb9416cfad940f12d78b39c8b364fa818f9b55d9 WHIRLPOOL e0163775a304ff5b56592e7b050d4c853dd547731902b66086573a463842ff6035ce1cc1354e323be3eb6890fce53250cea8c2684e443a9ced697a439ba8e7ec DIST genpatches-3.14-25.extras.tar.xz 18240 SHA256 a06033c58fe11f899d9cb2f9d0c50d843a678ec76808039542203434a8b86398 SHA512 fb95d0a8439bcdbb9291eff00ad03b7e1b06bed95363ddebd583ed005d4278d13657d422306d4ec10d37728e7887cbd5e6e94f32e717704a3a046f4f7314af6d WHIRLPOOL f93e4ff55f8a3719892eede5ffbbd096f0e28fd3a64da6212c74f3b1899adbc955ec6008d0db0fdd5e9a3f5be4f1f0ac0143cd64057f71c9b79976a43509ce04 -DIST genpatches-3.15-12.base.tar.xz 214792 SHA256 28f0f807f768d5e8819df4be70c74e8ec01ff8c1a4917a0908cf75b8e51825fd SHA512 0f3e9fab4531bc36820c4ee681e9da7ad1bf79859c822ee40f0285120515d4b18a3558f2ae9d8fd22e003492d9f8f6a38fcd8a5ea00984350340f5054b8e7ebe WHIRLPOOL dd5ec234e088d2a9e0fe6c74cc84275e2f532bb4783bd5100c79d15364c9d082029db73e3241aac5f82a106bd5fa88c637ff8eb2bedf33c44243c7bf590af1c0 -DIST genpatches-3.15-12.experimental.tar.xz 55820 SHA256 4c8c5780020bd93f7b5e40101999fb4cb1610a7bc92e1d1c2bb44acff9b4e614 SHA512 51bcc576b0c968924846ce4b21ad4460516d7f1de8e9f0f17b1c606c93f594b189d5cad911016dd7d85b9127121e916ce0f3d1bbd3f245f042ea1387f3b80911 WHIRLPOOL 49be20460f1e9bfc4ffa6992dd27eb3142559897e161910577ae470816dc0bf340cf4cf2294f21f05ccdf30ad6eb74d16829d5dc885e84b2532039906f4b9d76 -DIST genpatches-3.15-12.extras.tar.xz 17664 SHA256 97897a464ff638dda372c8bed7ee10723fde7f370cab2c770fd28b450bf3221f SHA512 251639762bdd1477314a2f2b89249955826848e15874677242c10c56e9f724c54b1afdaeae8479b5326bd4861efc73e8d29658170379a6e1724450335c0c1faa WHIRLPOOL dd38dd64c263dea74f20658e8904bf2f88858cd3f613b16f0361195f9bcb73859310897f35ba501a3f46fe1ccba573e051a61fe42b2d3383bf3750081ff6269a -DIST genpatches-3.16-2.base.tar.xz 11984 SHA256 4e134e601992be75502e1d1378e653e664859150563f4e19f3cb1d3d0d22de88 SHA512 0d13aa991dac64061070303b23639afc27c52bab098187dda23efb5d7b1a9aba48f2a75adc80cf5b713f76852f3ab9f343ecfa465f1e21e0cc7b604a3b15acad WHIRLPOOL 2b68aa6dd6bbd43c1c299fffacd693d390f286727daadf64b799a3fbc77654bdf57b82503e5e3c9f9f91714e02b6a36f288753cbf05511886176df960e130f2d -DIST genpatches-3.16-2.experimental.tar.xz 56660 SHA256 1b825958448432ac4ec44ec17f5a1d45d9b79d5841d6a5ccc0ce1acee29ec4c9 SHA512 6a4d5edc45b187e1ddb0f652e4bdf21b4e4850a1320fffda00c45e3e6395a735de5d0ec5d1613df1252adf1e3789e799a590256d14476103c897a4429e60c059 WHIRLPOOL e880f3b48f7b05154c407c7091e516ab6c0dd3d5c7ecc9711bf931a53b4eaac9ce75761f45063fa06020cb1e6ad4bb303a0ff369bed7ce2460eb1c1050772d7a -DIST genpatches-3.16-2.extras.tar.xz 17664 SHA256 97897a464ff638dda372c8bed7ee10723fde7f370cab2c770fd28b450bf3221f SHA512 251639762bdd1477314a2f2b89249955826848e15874677242c10c56e9f724c54b1afdaeae8479b5326bd4861efc73e8d29658170379a6e1724450335c0c1faa WHIRLPOOL dd38dd64c263dea74f20658e8904bf2f88858cd3f613b16f0361195f9bcb73859310897f35ba501a3f46fe1ccba573e051a61fe42b2d3383bf3750081ff6269a -DIST genpatches-3.16-3.base.tar.xz 62548 SHA256 6263f780ba964ddabffa97b25a20e614ee4cfcdb5ba69553ffb2204ad1a66bb8 SHA512 746e477009c9c9950f5de1507361812ecd59d351c23c24d2913e6aeb76e31f96b2e781efe0098f6649a447a694ec1ecdc77f0123413d4f9e98e8bcdc81a07810 WHIRLPOOL e8a6b21fd79c2727104513f48fe1663c47032b397da700c53a331660b390a0257c610429bd85871038fc80a4f37de37b7e5d52ef6b7426ca75c7f60df6897b68 -DIST genpatches-3.16-3.experimental.tar.xz 56672 SHA256 324f47514665b5ecda7606dbcd6ac185c60f6e47a644e0b8d61ad07edbc7db7b SHA512 449df9fb4823b9590c5f451e8cbbf00069ebc25c0060097e4c91423803ebb5c8b5f425337fa87c00a28a6d5fe6db59ef20c2c13db5b545c98bb1010cc74e8d4c WHIRLPOOL 1fc911d32f97eb9b1c4957abfa13742663bc491575704192e7ce1488ac4174c3f46ddfd2020468f40a4f6673ede5803b6e718a84e7848428ba669f6f2e865c4c -DIST genpatches-3.16-3.extras.tar.xz 17672 SHA256 8874fc85725f970a9812baa6e6fbfdaee657fb741214241832ea7f5e62d4899c SHA512 855b9a0463173dd721a16a6efb5e6ca412f0972a2450470fa875b28d3a213cd4095db720ab22147cf5cea900f7ddf4162c7c9adf6f9ceeb1b3d4171bcc441023 WHIRLPOOL 7e60f734738e06e64549c6b4fa0b8b837e0979878e1a1e46105f9c63d66bf320acc6484c57abc0efa266323ad86a9c276b6837f3f00b40f70d256d0863e30044 -DIST genpatches-3.16-4.base.tar.xz 114720 SHA256 62fcf6a199e178c31cf9b439374b96bd98c93e6d0053d91f45ce383380b8fbc5 SHA512 b361cb28eb043930e7babfb727e40a34f58f1c733cddf7227596618723519c162c98859d1f77a15fa151e58407645b0061abf7cb903936b9c65cdffeb8a30fc7 WHIRLPOOL 9e63d053c18243da53d8bc087da60d32dc8523185c4e0fca4ba9d171014bc788c21a6ad6e18acde57a65372b711676571a640f0b698aa415b92a6a7b7f91df3e -DIST genpatches-3.16-4.experimental.tar.xz 56672 SHA256 afbc50b5928970c9d3930bdaa4625c906416b182cec08b930dc8904ccfcd6de0 SHA512 52e61845dd885c39a218dfc1b61fbbd0c08f9c8810c5f4049d60fe5014aef533ad09d4695eb5b469c71e4d636cdfb8f4fcced4d7999fa3205b0607e1357074cd WHIRLPOOL 9e7c23b155ea1f3630912c7643a7e736fac90f9b285d4e25881bfa25721683c8d3d69217675b5777cabeb9bcfabf9dd1704603b1b230e8b866c40e60b272f135 -DIST genpatches-3.16-4.extras.tar.xz 17660 SHA256 48e19245992eb3c476f1638f1395e67619bf6b44314a040e08d009cce3d01ee8 SHA512 cba451d240cb44067d7f20ecc1ab92e40b864fcb516e6d28d1f279db069bb7a785c9c78b3bed9047e13702cc46497dd5d520d503e798eb0aa8debe928a2293e1 WHIRLPOOL d328f842ec73e13009d96ce9a9c56a04f5f2b6072871585e40b49e0e8d71412e39c685a5c2861a4684cf880bf2a55c4359a57f515b348dbfce26f7ac5d31519e DIST genpatches-3.16-6.base.tar.xz 218188 SHA256 8a3b19d7aa44ad5ef76eba67a809ee01222f4894e1a87d190d31f50f65fc9b7d SHA512 a53fdfe5f9c650d3bc5a669ec9a5b37ce79fc26af2cbba0e1d130427c81fffac8290012ba901e40d7168ff440e455473c9a7f2f24e395de75667d3b22f9f191d WHIRLPOOL c6c3b60d4e6cc5725e1229771c4cabb9b79eaa47e35102061718b99e8f2e600ed22ef7d2031017f97fb5e0b9d6fbad059378196a2b5e81e5f2615a8462fdfe0f DIST genpatches-3.16-6.experimental.tar.xz 160152 SHA256 86fb0c3e1256f75101fe39c11abb24d760e8bf6e4d7b58499eb24206fcc6a160 SHA512 db0cba26a0e04087506d78dddbc0b101db0bf284a6fc8cc3d8ae30447c6cecb4ab6bdec3e56120318c31bf365e535b5ad4416870f005cffd72801cac46fda33d WHIRLPOOL 0046336f1789aa4ff172c05717f473da3bdf70ce353bd5393fc06b8bdc8f5b92ecee7750bb42fe2ae818644be14f5e798205e200f9811d2cb7720ae05d030a71 DIST genpatches-3.16-6.extras.tar.xz 17656 SHA256 196049211951aea66265150cdf50551f9aec727437a54aa09ae7ab736f353c52 SHA512 2d846aed73812274e4b8ab64339a780991cb610fdf465104e804c9ead43efca7ff2b7576fee014672be540b95b8acdb5ba65aa7e65490d0b113ff4f6317fa654 WHIRLPOOL 7fd7d510bd8008eaf850a00dee11e25658cd8ecdadfe222121a9b2603083abc24390e85dbdcd896b5cd07f25e9d606d17ee601bc700ad0e5c4a588037eb236c0 @@ -81,14 +43,11 @@ DIST genpatches-3.16-7.extras.tar.xz 17656 SHA256 376d72d611afd3ac9c13aa5e62b152 DIST genpatches-3.17-1.base.tar.xz 6432 SHA256 c34bf854c23c2f15bd14ce601c79311ea6ef278b8eb749db009f8e7b38021a3c SHA512 2322e55927646b7e55b765c672c43c88a4700656b1ba2cea7d5e40f60f5491f49fdd86264900fe2e8877e40fc161992b4f039d9fc32393383b904081d7db8a21 WHIRLPOOL aa698da43871a93c6ab87c06fd3ae6fe4bb8a404e20358faea7211c2df0229d3651115bc62c2ae421e73b1001cbbd6afc3afb636c3ad56b89a1faadc27d5e08a DIST genpatches-3.17-1.experimental.tar.xz 3556 SHA256 afed01c1811ccddfe93430bb03ada394b5348e498036d4316aaa835c00d02ccf SHA512 156df250deadcd07c07e99dfae491627f670f96e4c84da66286d6a74ee226a47639a74843a0f162320ca120d0e79d9f7ca3cc044d576c008d78107ff865a50b7 WHIRLPOOL 1f64b559dadc8347991002f32fa591668881031bc9559eb056b68361344d31cf64685b9c0277942320e073eae13bb70f360403354f3e6ab350ef46509ac25d60 DIST genpatches-3.17-1.extras.tar.xz 16160 SHA256 48c3bf4e2038506fee70a35042101d5e078165845876d0f211e3a2944544c5f7 SHA512 60446c94bf893ede82bbe30b4374ce4145f5aacf274dd7da508a41f97adfcc7f371dbf6881047140efd71aec6bea8bde0934f3261020655206d47b27e10b3c8e WHIRLPOOL ace3af3ac46e2a31b773faabb939a648fcf64d677c8d519b84880b5870d57b4624efac9d421a67c6ce77980fb0b27ba901317c7bb3457836ba98a6894d4fc13b -DIST genpatches-3.4-86.base.tar.xz 1198340 SHA256 1b2cc48627c344f05f563be82a268c935686361b22fc281b4b4f39deb338b1c3 SHA512 7c077e7acec756e54e03df9846f726e7863d56035072422a6cd74365e85528373725823efd4867746796d5b44950c459202a716aac57cb0a1970f02eec60a02b WHIRLPOOL 455f5bafbe252699e0d22135caa678608362a4cc0834e3016f62a52e337246a67fbadd66850a8b47a6da394b38e9c9984606550e629500ec25730354409f0f1f -DIST genpatches-3.4-86.extras.tar.xz 18216 SHA256 7d6a97f178f24a292db316f263c22ee262925540be98e55eee162faf82c7c0fa SHA512 fbd7557f78c0636bb43a959070c2dea9c709825e646299fbf5955a11ce36e726ab8bb1c5ef1e1ad4b481c95559e34cd8fcfa9c7562c05e2a4f3d1861f959779f WHIRLPOOL 16237f86dc9ce9c9a7b20c180e27362d63b70ae8df58c4ba360f8928edd162dd0c948cf84aefcc523cc2f98d9dc76fc75db28655f96d21db20be1c25e68cb730 DIST genpatches-3.4-87.base.tar.xz 1210220 SHA256 a2689a56e567805b5ed8e842c692c0cfded629bf2958ecc171b1d1ae3e5496b4 SHA512 ece2ab756f83101cfca81f4b7fff3335336428dbc4b98915c6526801c2051f961d0cf88dd3b9e6a1b925d758e379346ed913efbf8328f7108769588630d9fd60 WHIRLPOOL 0945380bd8df7772f42cefe970779a4f6cda42d77aa25f3043d34837729161bef15018daa96104872661c2171f7af6d2eccdfae2faa91bf29509f8a5190901c3 DIST genpatches-3.4-87.extras.tar.xz 18208 SHA256 d1ffb428d8e9c3553dbc0bf078fc3b7d4c6f8d27e0e0fa5dd71385d84549a9fb SHA512 823a35f8e140b2553dbb8b8dad20dd100db80699bf0ac94b42f8b194141ed44f79ca69ce88ef343c2c9332568cabdb8281331fa5235d8da4d3a855bf4a3b230a WHIRLPOOL 95d5ac7047e14940c3e774a9694e344f114e135b74d3e43b0cf5a2da173c08594b2daa78d28aabd4b1c9fb8e29019e8111a51a19243f0a206c4f7abbf9e43f22 DIST linux-3.10.tar.xz 73175088 SHA256 df27fa92d27a9c410bfe6c4a89f141638500d7eadcca5cce578954efc2ad3544 SHA512 5fb109fcbd59bf3dffc911b853894f0a84afa75151368f783a1252c5ff60c7a1504de216c0012be446df983e2dea400ad8eeed3ce04f24dc61d0ef76c174dc35 WHIRLPOOL e7c0ccc2231e430b831218fc66f1940d095d2d5447d391329c6a7373d4a1d16708f64778b32e4847802ee2dae4fcf7cb67a1238fd4eb204fd0c4bce2d8134053 DIST linux-3.12.tar.xz 76384600 SHA256 2e120ec7fde19fa51dc6b6cc11c81860a0775defcad5a5bf910ed9a50e845a02 SHA512 4ba5797e0772726d05c9f2eee66dc6dc2a5033c749ef44764c805a83da739ed5d0c6443b76785e38fe1ef74cc7ade787e48144faed0cfcb6f124f05248c700ff WHIRLPOOL a40195f6b53ba3440cf90a44495f6a59670f750851d1518e2bdfe3b949f0e898d1df5d37e271c31c555087026ddb6cc2c9109b22b9639e3222735e6f650a1417 DIST linux-3.14.tar.xz 78399152 SHA256 61558aa490855f42b6340d1a1596be47454909629327c49a5e4e10268065dffa SHA512 5730d83a7a81134c1e77c0bf89e42dee4f8251ad56c1ac2be20c59e26fdfaa7bea55f277e7af156b637f22e1584914a46089af85039177cb43485089c74ac26e WHIRLPOOL 5ad07b78c362ba0b21c50b4abb99407cae06bd08576f3fd8f36047b01409eba096263208020da3dcad4977eefc61d66502276754097bc127635df1d7a5817d41 -DIST linux-3.15.tar.xz 79676484 SHA256 c3927e87be4040fa8aca1b58663dc0776aaf00485604ff88a623be2f3fb07794 SHA512 d5dc477cad4584e56e2e2ef9e0950c2b22e76e5cf5090a896ba099cb7c5e5db1853a4aeb96b199189653dc66d461557e95198e37516a619f7ddc01ba6b308e02 WHIRLPOOL 7f3dfde1a23aab75b7f40770ae2ca77c1b28f845e4abe6296b2aec9b56fe94f7afa76b00eb6cc7475305c31b726ebeb4643107dd48c12ac04c933cf1856b8e77 DIST linux-3.16.tar.xz 80501624 SHA256 4813ad7927a7d92e5339a873ab16201b242b2748934f12cb5df9ba2cfe1d77a0 SHA512 64033e741d3f42ed06010e63e69d66e1d3d9414ef20f76834508878d4218b72619541a18ef4fd377204af2859e52198310998109b20ed9b67722586b28c9a231 WHIRLPOOL 69e5e367751185ff4e8d7c1f23c6f1e8f547fe782f581f6cf5f0bde301fa922185c8b996b815cf19fb7f14ca64042e264e87d321872ee3096adad02b1015769b DIST linux-3.17.tar.xz 80333152 SHA256 f5153ec93c5fcd41b247950e6a9bcbc63fa87beafd112c133a622439a0f76251 SHA512 29c99764e371f7005dbbe2bbe4458b4deeae5297da7e5b719b0f29f6f018629338b608369162ae6bd76bec4d8719cf491257ac57fdd5277cce8941b7f90246a0 WHIRLPOOL 4b0ba9d997f28a317991287160c91c4e4f2245d7e08c7cb9691f67c3838bddb3ab8048b01e841e6659eceb94a269b6bde32f4ca521d999593d0e9473c8559b46 DIST linux-3.4.tar.xz 66748028 SHA256 ff3dee6a855873d12487a6f4070ec2f7996d073019171361c955639664baa0c6 SHA512 1c49b336750c9c2b49d21e54126f22a800367296be0d57e6df28b1532cbeba7fc3bdf4cfe27d9810576e76c2db2e9c2493f0804451c915137cb78d7aa61f236c WHIRLPOOL a36e62fe197ba7c08d498a79034da58091a94348f69542241067c9ebef683f86371b2c0a3b3fb6c4611e2fb885d9b74eee5c1f46a493c72dfb76c5665f0b8a6a diff --git a/sys-kernel/gentoo-sources/gentoo-sources-3.10.53.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-3.10.53.ebuild deleted file mode 100644 index 5e4cf7e5b220..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-3.10.53.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.10.53.ebuild,v 1.1 2014/08/14 12:35:56 mpagano Exp $ - -EAPI="5" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="61" -K_DEBLOB_AVAILABLE="1" -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches" -IUSE="deblob experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" - -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-3.10.55.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-3.10.55.ebuild deleted file mode 100644 index 8424430e903f..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-3.10.55.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.10.55.ebuild,v 1.1 2014/09/18 00:15:19 blueness Exp $ - -EAPI="5" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="62" -K_DEBLOB_AVAILABLE="1" -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches" -IUSE="deblob experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" - -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-3.10.56.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-3.10.56.ebuild deleted file mode 100644 index 803b00fe908c..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-3.10.56.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.10.56.ebuild,v 1.1 2014/10/06 17:48:15 mpagano Exp $ - -EAPI="5" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="63" -K_DEBLOB_AVAILABLE="1" -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches" -IUSE="deblob experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" - -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-3.12.28.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-3.12.28.ebuild deleted file mode 100644 index 5b1d7bcff8ef..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-3.12.28.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.12.28.ebuild,v 1.1 2014/09/21 01:17:01 blueness Exp $ - -EAPI="5" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="30" -K_DEBLOB_AVAILABLE="1" -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches" -IUSE="deblob experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-3.12.26.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-3.12.30.ebuild similarity index 90% rename from sys-kernel/gentoo-sources/gentoo-sources-3.12.26.ebuild rename to sys-kernel/gentoo-sources/gentoo-sources-3.12.30.ebuild index 532dd3422d3f..be586d86c9aa 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-3.12.26.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-3.12.30.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.12.26.ebuild,v 1.1 2014/08/02 00:12:37 mpagano Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.12.30.ebuild,v 1.1 2014/10/10 20:12:06 mpagano Exp $ EAPI="5" ETYPE="sources" K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="29" +K_GENPATCHES_VER="32" K_DEBLOB_AVAILABLE="1" inherit kernel-2 detect_version diff --git a/sys-kernel/gentoo-sources/gentoo-sources-3.14.16.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-3.14.16.ebuild deleted file mode 100644 index b16b557c4d09..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-3.14.16.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.14.16.ebuild,v 1.2 2014/08/13 06:19:16 nativemad Exp $ - -EAPI="5" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="20" -K_DEBLOB_AVAILABLE="1" -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86" -HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches" -IUSE="deblob experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-3.14.17.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-3.14.17.ebuild deleted file mode 100644 index fc167553a1f8..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-3.14.17.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.14.17.ebuild,v 1.1 2014/08/14 12:52:06 mpagano Exp $ - -EAPI="5" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="21" -K_DEBLOB_AVAILABLE="1" -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches" -IUSE="deblob experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-3.14.18.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-3.14.18.ebuild deleted file mode 100644 index 351b0196d19e..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-3.14.18.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.14.18.ebuild,v 1.1 2014/09/09 22:41:07 caster Exp $ - -EAPI="5" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="22" -K_DEBLOB_AVAILABLE="1" -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches" -IUSE="deblob experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-3.14.19.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-3.14.19.ebuild deleted file mode 100644 index 0f013ec06feb..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-3.14.19.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.14.19.ebuild,v 1.1 2014/09/18 00:15:19 blueness Exp $ - -EAPI="5" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="23" -K_DEBLOB_AVAILABLE="1" -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches" -IUSE="deblob experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-3.15.10.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-3.15.10.ebuild deleted file mode 100644 index 56fb97f09561..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-3.15.10.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.15.10.ebuild,v 1.1 2014/08/14 12:31:44 mpagano Exp $ - -EAPI="5" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="12" -K_DEBLOB_AVAILABLE="1" -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches" -IUSE="deblob experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-3.16.1.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-3.16.1.ebuild deleted file mode 100644 index 1de881a78053..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-3.16.1.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.16.1.ebuild,v 1.1 2014/08/14 12:17:42 mpagano Exp $ - -EAPI="5" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="2" -K_DEBLOB_AVAILABLE="1" -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches" -IUSE="deblob experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-3.16.2.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-3.16.2.ebuild deleted file mode 100644 index f5fe276ed331..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-3.16.2.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.16.2.ebuild,v 1.1 2014/09/09 22:12:09 caster Exp $ - -EAPI="5" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="3" -K_DEBLOB_AVAILABLE="1" -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches" -IUSE="deblob experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-3.16.3.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-3.16.3.ebuild deleted file mode 100644 index 081b0b0e7027..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-3.16.3.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.16.3.ebuild,v 1.1 2014/09/18 00:15:19 blueness Exp $ - -EAPI="5" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="4" -K_DEBLOB_AVAILABLE="1" -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches" -IUSE="deblob experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-3.4.103.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-3.4.103.ebuild deleted file mode 100644 index 5fe6539284dd..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-3.4.103.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.4.103.ebuild,v 1.1 2014/08/14 12:15:29 mpagano Exp $ - -EAPI="5" -ETYPE="sources" -K_WANT_GENPATCHES="base extras" -K_GENPATCHES_VER="86" -K_DEBLOB_AVAILABLE="1" -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches" -IUSE="deblob" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/linux-firmware/linux-firmware-20140603.ebuild b/sys-kernel/linux-firmware/linux-firmware-20140603.ebuild index 78e1af80a5f7..09327ee6c36d 100644 --- a/sys-kernel/linux-firmware/linux-firmware-20140603.ebuild +++ b/sys-kernel/linux-firmware/linux-firmware-20140603.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/linux-firmware/linux-firmware-20140603.ebuild,v 1.3 2014/09/14 09:20:51 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/linux-firmware/linux-firmware-20140603.ebuild,v 1.4 2014/10/10 15:21:31 ago Exp $ EAPI=5 inherit savedconfig @@ -9,10 +9,10 @@ if [[ ${PV} == 99999999* ]]; then inherit git-2 SRC_URI="" EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/firmware/${PN}.git" - KEYWORDS="arm hppa" + KEYWORDS="amd64 arm hppa" else SRC_URI="mirror://gentoo/${P}.tar.xz" - KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" + KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" fi DESCRIPTION="Linux firmware files" diff --git a/sys-kernel/vanilla-sources/Manifest b/sys-kernel/vanilla-sources/Manifest index 8d660b2c5cd5..feda37cc85dd 100644 --- a/sys-kernel/vanilla-sources/Manifest +++ b/sys-kernel/vanilla-sources/Manifest @@ -19,9 +19,9 @@ DIST linux-3.16.tar.xz 80501624 SHA256 4813ad7927a7d92e5339a873ab16201b242b27489 DIST linux-3.17.tar.xz 80333152 SHA256 f5153ec93c5fcd41b247950e6a9bcbc63fa87beafd112c133a622439a0f76251 SHA512 29c99764e371f7005dbbe2bbe4458b4deeae5297da7e5b719b0f29f6f018629338b608369162ae6bd76bec4d8719cf491257ac57fdd5277cce8941b7f90246a0 WHIRLPOOL 4b0ba9d997f28a317991287160c91c4e4f2245d7e08c7cb9691f67c3838bddb3ab8048b01e841e6659eceb94a269b6bde32f4ca521d999593d0e9473c8559b46 DIST linux-3.2.tar.xz 65065516 SHA256 dd96ed02b53fb5d57762e4b1f573460909de472ca588f81ec6660e4a172e7ba7 SHA512 77e9a52d78d6c8e951df1e166023eebe5defc5ef3c45d3ac84b613137b3c2e55cee5693d828ebd06c5034bd89ea2a5f862f55824f2b7839c9ad7212c81e3ecb0 WHIRLPOOL 7cc68baac4441740e2171fbbc4195ee6c0351de099aadaee8cb3487f6d1f8b7e1d3144ee54ba38dbd24d6be431a1ea3b921ffce82ff84df21a98da7bc61c1d17 DIST linux-3.4.tar.xz 66748028 SHA256 ff3dee6a855873d12487a6f4070ec2f7996d073019171361c955639664baa0c6 SHA512 1c49b336750c9c2b49d21e54126f22a800367296be0d57e6df28b1532cbeba7fc3bdf4cfe27d9810576e76c2db2e9c2493f0804451c915137cb78d7aa61f236c WHIRLPOOL a36e62fe197ba7c08d498a79034da58091a94348f69542241067c9ebef683f86371b2c0a3b3fb6c4611e2fb885d9b74eee5c1f46a493c72dfb76c5665f0b8a6a -DIST patch-3.10.56.xz 896568 SHA256 7cd2b165938be773d24a8da32b506150246db643b77131b7e088105270e54f48 SHA512 d9a12eb982112685f19e64f1411235d444a85519f56c939702ffbc807d1d1fb7687be7423be73a728b1b3dfbd84aa5b347bec6532c796477896ef0c04134c264 WHIRLPOOL 99d7f4b832df52bc57fdf16b29204ed5e98e95738bc51b7ea70c15de5c8424c3fd3f4c82abe10a612ad1ccfcbd02976af379f594b6cdb3770c5d8eee14596c85 +DIST patch-3.10.57.xz 901260 SHA256 d72d0dfac14791a0f50033962cef23c9cde9d65805c27dea79f41c82f949ebf9 SHA512 9728c2026010bf831bcb1880e30687698cb051ed9d4fbb97caab67ce704c24fb9ccdb9a53642beaf23236e9e5607ebe4a2389b10a9f3c41c2d3ed88dfae97242 WHIRLPOOL 5516cc98b02359ab89689939ec499bdd0338e1838bbe24bc321256b65038df0b91c652ad886c9e851787f557bfc0f55d798cc3873441ee696ba0e1e9f560252b DIST patch-3.12.30.xz 844672 SHA256 a495a937cdedd8e7e1bf843d5ad7f5f3fc12a7708e8e34943f154eb5463513ac SHA512 05fa3078705d4d3b289df2ebc73e4aeb4e3d0a94748a091e5aacb85111c35fc1c44278a394dcf3ebc3c616f5f81d7ce3a0002f76c13621e77a84a3064475d1de WHIRLPOOL d5af708f5bfa87f0e4d60f7d5f878ab829fda414e03c5f37a58db49254ceba9577a3c8ecc5e11f92b8cd7c90c0493702036a7006eb612d4abbe1938c066b6b5b -DIST patch-3.14.20.xz 493156 SHA256 b01ba521cce12d3b9e8c25807567837dd88878b861f27c453c29cee80b6cb84b SHA512 91231ec4e8e10a09b407d8db123e29a87ef4bf03fa3707f7ed511f22248de7d7b9cfc5169de5e9630854c97166594d3a00293571529d9b7a529118e6d2295b4f WHIRLPOOL 53de0cb407868bd4e082d0fe3c9c6c6309149754168beec2688e762f3e0062606cbf7b51088b69bd9a048218c871a5901cbed104ec595059b4b304582ea0118f -DIST patch-3.16.4.xz 210888 SHA256 bfd65be726f596c0e46f472efa33c46c01be5d44ed93ef645c313a6823e6e6fb SHA512 1014e8df1e3f9616a70a3319e8381dcaf4d8f2b98808127dca555f914fac852eca3f6661a6979e124806b3491a0586f39393313183edc88a26409a9c391ea994 WHIRLPOOL b4bce70af63bd8e513a9a8a0ba131213019ea38cc55c1b1eb63493bb8a08edc5bd69b8036f621d18b5b56d6566ad25b8701a5fa2a8add0dbfe749da181d946df +DIST patch-3.14.21.xz 510880 SHA256 5ab01f154f0cb8b9fc9a941617e48b601c964db41c07f86c0f003305ea84e28a SHA512 fc75d0e9313d96438b5eeed677d208eae8953ce79e26904c4f6fe1c4525daa2293abe5bc5b1bb8b173f16122340ff34090a7f0944579c8213b6f5675e3c3d1c2 WHIRLPOOL 36397ddf2ee2126883e0bdc03d68afc0944e2d31f8efe3c8fdb7c191186670ce6b2e6811b8690308ba312c0bc0994addfacfadb1d45d4d93f926704b6b9de71e +DIST patch-3.16.5.xz 218868 SHA256 d15fe90f3eec9537b98486680ee967b32923b1113a92ebb16c3cd08bd46e7c53 SHA512 aa568aec3341a98c24c21bd1eb079ea850abaf380adb819046b2641493ab2cdedad83adde41eec607337355844e9ed3928b3373b3c937d13cfbcc60fff203afd WHIRLPOOL 0c453801900587e9ebc050cd3f649ea1738493fbc0534356112b605fd8c25de46eb836527419085ec9420ed9967338bc4c6bb654a088d6f2ae2dc62c06e60ae2 DIST patch-3.2.63.xz 1266596 SHA256 0c402ba2ef2ffec5d184510ae63add4b89e9679a8dc35c56c198fc40a16dda7b SHA512 b502879a0e2a7aededccae374044ef4ebe07fa65931b3caa6068f92ea290e2825965944ed512fa356db9d8455986fd671d46ff176af86872e873c839bc0b06fc WHIRLPOOL c495cd194bf2f75cae9e2505712fa78ea32f1c26805c03a93716fa79ea38b96971d49a0c59c916b6dd1a848f1dfc48c867d2c659335a2aa26bc6633cddf694f3 DIST patch-3.4.104.xz 1114896 SHA256 28c3bb29c44eede52ae2eef22d5966edd811d95459615e368425a23c97180ff6 SHA512 9b8259fbd5a8d69dffeca4cf674dccba9070a220a2193b397a0cdeae747fab6e326af8838f7a3f9c4e1d048650adc5961caded69d1293549431e163c20804805 WHIRLPOOL 88c58a914d2a603471be64cf8de95501dcf32cd24e81b617b2a02e635f58d784deba86f2c4b3cbae08b2391de58a163cf809e338c112dc2547e4ea162471f42b diff --git a/sys-kernel/vanilla-sources/vanilla-sources-3.10.56.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-3.10.57.ebuild similarity index 89% rename from sys-kernel/vanilla-sources/vanilla-sources-3.10.56.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-3.10.57.ebuild index 448c790ca2c4..417d5cd733f8 100644 --- a/sys-kernel/vanilla-sources/vanilla-sources-3.10.56.ebuild +++ b/sys-kernel/vanilla-sources/vanilla-sources-3.10.57.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/vanilla-sources-3.10.56.ebuild,v 1.1 2014/10/06 14:42:52 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/vanilla-sources-3.10.57.ebuild,v 1.1 2014/10/10 15:59:18 ago Exp $ EAPI="5" K_NOUSENAME="yes" diff --git a/sys-kernel/vanilla-sources/vanilla-sources-3.14.20.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-3.14.21.ebuild similarity index 89% rename from sys-kernel/vanilla-sources/vanilla-sources-3.14.20.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-3.14.21.ebuild index 08d09eda5da7..46363453ec7f 100644 --- a/sys-kernel/vanilla-sources/vanilla-sources-3.14.20.ebuild +++ b/sys-kernel/vanilla-sources/vanilla-sources-3.14.21.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/vanilla-sources-3.14.20.ebuild,v 1.1 2014/10/06 14:42:52 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/vanilla-sources-3.14.21.ebuild,v 1.1 2014/10/10 15:59:18 ago Exp $ EAPI="5" K_NOUSENAME="yes" diff --git a/sys-kernel/vanilla-sources/vanilla-sources-3.16.4.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-3.16.5.ebuild similarity index 89% rename from sys-kernel/vanilla-sources/vanilla-sources-3.16.4.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-3.16.5.ebuild index 858dc252d25a..d020e07fbc7a 100644 --- a/sys-kernel/vanilla-sources/vanilla-sources-3.16.4.ebuild +++ b/sys-kernel/vanilla-sources/vanilla-sources-3.16.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/vanilla-sources-3.16.4.ebuild,v 1.1 2014/10/06 14:42:52 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/vanilla-sources-3.16.5.ebuild,v 1.1 2014/10/10 15:59:18 ago Exp $ EAPI="5" K_NOUSENAME="yes" diff --git a/sys-process/at/at-3.1.14.ebuild b/sys-process/at/at-3.1.14.ebuild index cd027217d827..e5494d3396d5 100644 --- a/sys-process/at/at-3.1.14.ebuild +++ b/sys-process/at/at-3.1.14.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/at/at-3.1.14.ebuild,v 1.2 2014/09/04 18:37:09 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/at/at-3.1.14.ebuild,v 1.3 2014/10/10 15:22:35 ago Exp $ EAPI=5 @@ -12,7 +12,7 @@ SRC_URI="mirror://debian/pool/main/a/at/${PN}_${PV}.orig.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" IUSE="pam selinux" DEPEND="virtual/mta diff --git a/sys-process/glances/Manifest b/sys-process/glances/Manifest index 7301ac19cf07..2c5b3dbd2142 100644 --- a/sys-process/glances/Manifest +++ b/sys-process/glances/Manifest @@ -1,3 +1,4 @@ DIST Glances-2.0.1.tar.gz 3281886 SHA256 5f293ab2993f80692b6cd07b080dc8e79b80cfe66c2d59e094589766106a7d70 SHA512 d974f2e6815bedff56902be500333114255c6a05f587b6de141889ce6c6af41d4e7f6b995f759a75cb99817985806c8d434e254c0d095513532e018258ff5435 WHIRLPOOL a4b63d7e1b93b4adcf2b9b28255f266e0c2b9ea1748b36f5dbb6fba60d51bbc563bbd37a84c2ccda1b2d131e9f7f6314f3d7568c5898b8ce506933add65cdf3c DIST Glances-2.0.tar.gz 1673386 SHA256 b573e7ed31e8646c5f588c37eda8f9f186e4c1cfd09074bec20dd991dd638a02 SHA512 2c6e00a42344f2611f5e231a8eac3b97cebb523e3ac037612c08f760d5d974dcc673f81a00e1fdfbd16867c488717ad9545fdc52707ebb1979cd575c484e688d WHIRLPOOL ffa72ad83a72c20ed32d0f04bd6036ccb9d16cee0a9a744400b42faef5499e82e440367e455071c1b5f9435f78db55bcef3de4f0ef239937a0e1de099902080f +DIST Glances-2.1.1.tar.gz 3442571 SHA256 4a744ff0f8a89d6cf923d216a12f8e78efeda70dadf9eb15ab88e933d6d082fb SHA512 a3a137c578ac9f1ad63a059def2bf456e4ab80b0415b8c7bf4eb13afb845c85632ef9fdc4c6f25dbc6af1fbbed068145b6c1e506056ce69106c30fcd684aa77c WHIRLPOOL d97f45c1167ec71b3827d2be163e1bd7699c19f7458d4c81591c52f2fe297e85fc76b170c06d965b7bcbfc50d8220d6cdf3038479007c03c7241dd6be9509995 DIST Glances-2.1.tar.gz 3442211 SHA256 86cfcb9d3976940b6cc68046d47b8c3fe7fc19a39747fbceca8cfe55d0f1cb32 SHA512 6e8325903ad989e812c3287b3e807c25a8e696bb176043c8fc97ba14f730252979e1d22f39dcbc401dc4d3e46087068b0b34211be3a24601b45d6baa3e2cdb10 WHIRLPOOL 1261dfc561fb1b105e64653065c037be0cab7dcdf77af9c3ff22f09afb10df0cbf5e0c51180e55120a14e6381a27330962edbea27ab878a8a06b3a88c30bb27f diff --git a/sys-process/glances/glances-2.1.1.ebuild b/sys-process/glances/glances-2.1.1.ebuild new file mode 100644 index 000000000000..8573250d766f --- /dev/null +++ b/sys-process/glances/glances-2.1.1.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-process/glances/glances-2.1.1.ebuild,v 1.1 2014/10/10 15:23:31 idella4 Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) +PYTHON_REQ_USE="ncurses" + +inherit distutils-r1 linux-info + +MYPN=Glances +MYP=${MYPN}-${PV} + +DESCRIPTION="CLI curses based monitoring tool" +HOMEPAGE="https://github.com/nicolargo/glances" +SRC_URI="mirror://pypi/${MYPN:0:1}/${MYPN}/${MYP}.tar.gz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux" +IUSE="chart doc hddtemp snmp web" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +# There is another optional extra batinfo, absent from portage +RDEPEND="${DEPEND} + >=dev-python/psutil-2.0.0[${PYTHON_USEDEP}] + hddtemp? ( app-admin/hddtemp ) + snmp? ( dev-python/pysnmp[${PYTHON_USEDEP}] ) + web? ( dev-python/bottle[${PYTHON_USEDEP}] ) + chart? ( dev-python/matplotlib[${PYTHON_USEDEP}] )" + +CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS" + +S="${WORKDIR}/${MYP}" + +pkg_setup() { + linux-info_pkg_setup +} + +python_prepare_all() { + sed -e "s:share/doc/glances:share/doc/${PF}:g" \ + -e "s/'COPYING',//" \ + -e "s:/etc:${EPREFIX}/etc:" \ + -i setup.py || die + + distutils-r1_python_prepare_all +} + +python_install_all() { + # Abnormal setup for pre-built html docs in setup.py + distutils-r1_python_install_all + if use doc; then + mkdir "${D}"usr/share/doc/${P}/html || die + mv "${D}"usr/share/doc/${P}/{glances-doc.html,images/} "${D}"usr/share/doc/${P}/html/ || die + else + rm -rf "${D}"usr/share/doc/${P}/{glances-doc.html,images/} || die + fi +} + +pkg_postinst() { + if [[ -z ${REPLACING_VERSIONS} ]]; then + elog "${PN} can gain additional functionality with following packages:" + elog " dev-python/jinja - export statistics to HTML" + elog " app-admin/hddtemp - monitor hard drive temperatures" + fi +} diff --git a/virtual/perl-Text-Tabs+Wrap/perl-Text-Tabs+Wrap-2012.81.800-r1.ebuild b/virtual/perl-Text-Tabs+Wrap/perl-Text-Tabs+Wrap-2012.81.800-r1.ebuild deleted file mode 100644 index 26ae7c66cd42..000000000000 --- a/virtual/perl-Text-Tabs+Wrap/perl-Text-Tabs+Wrap-2012.81.800-r1.ebuild +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/virtual/perl-Text-Tabs+Wrap/perl-Text-Tabs+Wrap-2012.81.800-r1.ebuild,v 1.1 2014/07/13 18:42:52 dilfridge Exp $ - -EAPI=5 - -DESCRIPTION="Virtual for Text::Tabs and Text::Wrap, also distributed as Text::Tabs+Wrap" -HOMEPAGE="" -SRC_URI="" - -LICENSE="" -SLOT="0" -KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd" -IUSE="" - -RDEPEND=" - || ( =dev-lang/perl-5.18* ~perl-core/${PN#perl-}-${PV} ) - !perl-core/${PN#perl-}-${PV}-r999 -" diff --git a/virtual/perl-Text-Tabs+Wrap/perl-Text-Tabs+Wrap-2013.52.300-r1.ebuild b/virtual/perl-Text-Tabs+Wrap/perl-Text-Tabs+Wrap-2013.52.300-r1.ebuild index 93c1e2c3a947..f453ff4e469f 100644 --- a/virtual/perl-Text-Tabs+Wrap/perl-Text-Tabs+Wrap-2013.52.300-r1.ebuild +++ b/virtual/perl-Text-Tabs+Wrap/perl-Text-Tabs+Wrap-2013.52.300-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/virtual/perl-Text-Tabs+Wrap/perl-Text-Tabs+Wrap-2013.52.300-r1.ebuild,v 1.2 2014/10/10 07:58:01 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/virtual/perl-Text-Tabs+Wrap/perl-Text-Tabs+Wrap-2013.52.300-r1.ebuild,v 1.3 2014/10/10 13:25:06 zlogene Exp $ EAPI=5 @@ -10,7 +10,7 @@ SRC_URI="" LICENSE="" SLOT="0" -KEYWORDS="~alpha ~amd64 hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd" IUSE="" RDEPEND=" diff --git a/virtual/ruby-rdoc/ruby-rdoc-2.ebuild b/virtual/ruby-rdoc/ruby-rdoc-2.ebuild deleted file mode 100644 index 79154ceba594..000000000000 --- a/virtual/ruby-rdoc/ruby-rdoc-2.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/virtual/ruby-rdoc/ruby-rdoc-2.ebuild,v 1.3 2012/06/21 18:31:26 graaff Exp $ - -EAPI=2 -USE_RUBY="jruby" - -inherit ruby-ng - -DESCRIPTION="Virtual ebuild for bundled and unbundled RDoc" -HOMEPAGE="" -SRC_URI="" - -LICENSE="" -SLOT="${USE_RUBY}" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND="|| ( dev-ruby/rdoc[ruby_targets_jruby] dev-java/jruby )" - -pkg_setup() { :; } -src_unpack() { :; } -src_prepare() { :; } -src_compile() { :; } -src_install() { :; } -pkg_preinst() { :; } -pkg_postinst() { :; } - -# DEVELOPERS' NOTE! -# -# This virtual has multiple version that ties one-by-one with the Ruby -# implementation they provide the value for; this is to simplify -# keywording practise that has been shown to be very messy for other -# virtuals. -# -# Make sure that you DO NOT change the version of the virtual's -# ebuilds unless you're adding a new implementation; instead simply -# revision-bump it. -# -# A reference to ~${PV} for each of the version has to be added to -# profiles/base/package.use.force to make sure that they are always -# used with their own implementation. -# -# ruby_add_[br]depend will take care of depending on multiple versions -# without any frown. diff --git a/virtual/ruby-ssl/ruby-ssl-2.ebuild b/virtual/ruby-ssl/ruby-ssl-2.ebuild deleted file mode 100644 index 625ae8768d4e..000000000000 --- a/virtual/ruby-ssl/ruby-ssl-2.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/virtual/ruby-ssl/ruby-ssl-2.ebuild,v 1.2 2011/12/15 09:55:27 graaff Exp $ - -EAPI=2 -USE_RUBY="jruby" - -inherit ruby-ng - -DESCRIPTION="Virtual ebuild for the Ruby OpenSSL bindings" -HOMEPAGE="" -SRC_URI="" - -LICENSE="" -SLOT="${USE_RUBY}" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND="dev-ruby/jruby-openssl" - -pkg_setup() { :; } -src_unpack() { :; } -src_prepare() { :; } -src_compile() { :; } -src_install() { :; } -pkg_preinst() { :; } -pkg_postinst() { :; } - -# DEVELOPERS' NOTE! -# -# This virtual has multiple version that ties one-by-one with the Ruby -# implementation they provide the value for; this is to simplify -# keywording practise that has been shown to be very messy for other -# virtuals. -# -# Make sure that you DO NOT change the version of the virtual's -# ebuilds unless you're adding a new implementation; instead simply -# revision-bump it. -# -# A reference to ~${PV} for each of the version has to be added to -# profiles/base/package.use.force to make sure that they are always -# used with their own implementation. -# -# ruby_add_[br]depend will take care of depending on multiple versions -# without any frown. diff --git a/virtual/ruby-threads/ruby-threads-2.ebuild b/virtual/ruby-threads/ruby-threads-2.ebuild deleted file mode 100644 index 09144bdc90d2..000000000000 --- a/virtual/ruby-threads/ruby-threads-2.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/virtual/ruby-threads/ruby-threads-2.ebuild,v 1.4 2014/08/10 20:11:50 slyfox Exp $ - -EAPI=2 -USE_RUBY="jruby" - -inherit ruby-ng - -DESCRIPTION="Virtual ebuild for a ruby interpreter with threading enabled" -HOMEPAGE="" -SRC_URI="" - -LICENSE="" -SLOT="${USE_RUBY}" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND="dev-java/jruby" - -pkg_setup() { :; } -src_unpack() { :; } -src_prepare() { :; } -src_compile() { :; } -src_install() { :; } -pkg_preinst() { :; } -pkg_postinst() { :; } - -# DEVELOPERS' NOTE! -# -# This virtual has multiple version that ties one-by-one with the Ruby -# implementation they provide the value for; this is to simplify -# keywording practise that has been shown to be very messy for other -# virtuals. -# -# Make sure that you DO NOT change the version of the virtual's -# ebuilds unless you're adding a new implementation; instead simply -# revision-bump it. -# -# A reference to ~${PV} for each of the version has to be added to -# profiles/base/package.use.force to make sure that they are always -# used with their own implementation. -# -# ruby_add_[br]depend will take care of depending on multiple versions -# without any frown. diff --git a/virtual/rubygems/rubygems-2.ebuild b/virtual/rubygems/rubygems-2.ebuild deleted file mode 100644 index ff8ba4c598ef..000000000000 --- a/virtual/rubygems/rubygems-2.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/virtual/rubygems/rubygems-2.ebuild,v 1.2 2011/10/21 06:02:48 graaff Exp $ - -EAPI=2 -USE_RUBY="jruby" - -inherit ruby-ng - -DESCRIPTION="Virtual ebuild for rubygems" -HOMEPAGE="" -SRC_URI="" - -LICENSE="" -SLOT="${USE_RUBY}" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND="dev-ruby/rubygems[ruby_targets_jruby]" - -pkg_setup() { :; } -src_unpack() { :; } -src_prepare() { :; } -src_compile() { :; } -src_install() { :; } -pkg_preinst() { :; } -pkg_postinst() { :; } - -# DEVELOPERS' NOTE! -# -# This virtual has multiple version that ties one-by-one with the Ruby -# implementation they provide the value for; this is to simplify -# keywording practise that has been shown to be very messy for other -# virtuals. -# -# Make sure that you DO NOT change the version of the virtual's -# ebuilds unless you're adding a new implementation; instead simply -# revision-bump it. -# -# A reference to ~${PV} for each of the version has to be added to -# profiles/base/package.use.force to make sure that they are always -# used with their own implementation. -# -# ruby_add_[br]depend will take care of depending on multiple versions -# without any frown. diff --git a/www-misc/fcgiwrap/fcgiwrap-1.1.0-r1.ebuild b/www-misc/fcgiwrap/fcgiwrap-1.1.0-r1.ebuild index 99b2fb3ba243..862742cb9cee 100644 --- a/www-misc/fcgiwrap/fcgiwrap-1.1.0-r1.ebuild +++ b/www-misc/fcgiwrap/fcgiwrap-1.1.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-misc/fcgiwrap/fcgiwrap-1.1.0-r1.ebuild,v 1.2 2014/07/04 19:36:27 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-misc/fcgiwrap/fcgiwrap-1.1.0-r1.ebuild,v 1.3 2014/10/10 15:24:57 ago Exp $ EAPI="5" @@ -20,7 +20,7 @@ if [[ ${PV} == *9999* ]]; then KEYWORDS="" else SRC_URI="https://github.com/gnosek/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" + KEYWORDS="amd64 ~x86" fi RDEPEND="dev-libs/fcgi" diff --git a/www-servers/hiawatha/Manifest b/www-servers/hiawatha/Manifest index adab3ae4d0d3..e6d7363026d3 100644 --- a/www-servers/hiawatha/Manifest +++ b/www-servers/hiawatha/Manifest @@ -1,3 +1,4 @@ DIST hiawatha-9.5.tar.gz 847545 SHA256 c181011db1af187006190fc186689a0707a6f1e7b524c2a4347840e8fdf68b4f SHA512 54c97b6cb7a94cbccc5e1dd0a8c78b9f5f44da250309e09de8601e34bea9ae56a02c9ec7c9eed6cf3814bc98733cc6143ddc37dfa44ea1add8f4f63d56d3e7a3 WHIRLPOOL a612ff56ac0a649bb339197cfdddb67106c9657fe4a25bd8c35cb18fec222557da8e11360570c0f1db9982f9b41fb175e02ab71c5caf034ca6b83f98a2d90a35 DIST hiawatha-9.6.tar.gz 862173 SHA256 13132fdb322a8d222f7fa25fa19b5485fcdf7a9568fbe4a52c99905571a75a45 SHA512 0b5967fc4661baa5f18ab6889aa739d3733b634ddfb01b3dc38df1e9b5da3811060d2b988af43bdece7468c768707736fec303a37e0f51a1aaab6dec9dd7e736 WHIRLPOOL 2f00cabec10ef2a89daf5fc0e7b3426b5e9c2bdf7b32d3863198820ad765a826f0d889e952f648ca06cf0bf64c616fedc96be39c91e6ee6c45e9ffd1f537f392 DIST hiawatha-9.7.tar.gz 885607 SHA256 db54592ca200e7cccdf2908acba04dc5bf1130ace54d25950aac93dfb5468cb3 SHA512 68d5ce4d5da20d67e461df531b5284aaae67cd81d037d393a3ffb7f6b70a5beb8297f5ea4a82ca8d94b2e6c24e1b9b55dfd9d9fb9458734b63f729bd90b85411 WHIRLPOOL 385ef54a1d352dd3d86ea2a06f743d8c60875db156d6c412620929d46697629f46925af72cb9136a55deb38a4b97845ac650dee25ffd46b5bcbdd7e20b5607d3 +DIST hiawatha-9.8.tar.gz 888977 SHA256 6fe9bd408361bc07b47fe6eeaf98d6b644e1cd258b3470da3e70aba510e83b64 SHA512 f55b6065e0dd1dab11ccbbb44e981944aab5b542077fc2b4a03ec8c055be80bedb7b639fe9c52ccf0fc279648b9f4bfc0cbfa018b195b155907810bdfc4ec51a WHIRLPOOL 342c19df23dbe4eef7056f2424d53badede5a8dcf8bb713e7d3892f21e1061ae5e1a0c985f1fc824b10f25eb9fcc9cf0cbf8d384240bf814df4f9dca45dd96f2 diff --git a/www-servers/hiawatha/hiawatha-9.8.ebuild b/www-servers/hiawatha/hiawatha-9.8.ebuild new file mode 100644 index 000000000000..aff05a6804b7 --- /dev/null +++ b/www-servers/hiawatha/hiawatha-9.8.ebuild @@ -0,0 +1,90 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-servers/hiawatha/hiawatha-9.8.ebuild,v 1.1 2014/10/10 20:52:19 hasufell Exp $ + +# ssl USE flag currently broken, unconditionally enabled +# rproxy USE flag broken too, unconditionally enabled + +EAPI=5 + +CMAKE_MIN_VERSION="2.8.4" + +inherit cmake-utils systemd user + +DESCRIPTION="Advanced and secure webserver" +HOMEPAGE="http://www.hiawatha-webserver.org" +SRC_URI="http://www.hiawatha-webserver.org/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug +cache ipv6 monitor +rewrite tomahawk +xslt" + +RDEPEND=" + >=net-libs/polarssl-1.3[threads] + xslt? ( dev-libs/libxslt + dev-libs/libxml2 )" +DEPEND="${RDEPEND}" +PDEPEND="monitor? ( www-apps/hiawatha-monitor )" + +# set this in make.conf if you want to use a different user/group +HIAWATHA_USER=${HIAWATHA_USER:-hiawatha} +HIAWATHA_GROUP=${HIAWATHA_GROUP:-hiawatha} + +pkg_setup() { + enewgroup ${HIAWATHA_GROUP} + enewuser ${HIAWATHA_USER} -1 -1 /var/www/hiawatha ${HIAWATHA_GROUP} +} + +src_prepare() { + epatch "${FILESDIR}"/${PN}-9.5-cflags.patch + + rm -r polarssl || die + + grep '#ServerId =' config/hiawatha.conf.in 1>/dev/null || die + sed -i \ + -e "s/#ServerId =.*$/ServerId = ${HIAWATHA_USER}/" \ + config/hiawatha.conf.in || die +} + +src_configure() { + local mycmakeargs=( + -DCONFIG_DIR:STRING=/etc/hiawatha + $(cmake-utils_use_enable cache CACHE) + $(cmake-utils_use_enable debug DEBUG) + $(cmake-utils_use_enable ipv6 IPV6) + $(cmake-utils_use_enable kernel_linux LOADCHECK) + $(cmake-utils_use_enable monitor MONITOR) + -DENABLE_SSL=YES + $(cmake-utils_use_enable tomahawk TOMAHAWK) + $(cmake-utils_use_enable rewrite TOOLKIT) + $(cmake-utils_use_enable xslt XSLT) + -DLOG_DIR:STRING=/var/log/hiawatha + -DPID_DIR:STRING=/var/run + -DUSE_SHARED_POLARSSL_LIBRARY=ON + -DUSE_SYSTEM_POLARSSL=ON + -DWEBROOT_DIR:STRING=/var/www/hiawatha + -DWORK_DIR:STRING=/var/lib/hiawatha + ) + + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install + + rm -rf "${ED%%/}"/var/www/hiawatha/* + + newinitd "${FILESDIR}"/hiawatha.initd hiawatha + systemd_dounit "${FILESDIR}"/hiawatha.service + + local i + for i in /var/{lib,log}/hiawatha ; do + keepdir ${i} + fowners ${HIAWATHA_USER}:${HIAWATHA_GROUP} ${i} + fperms 0750 ${i} + done + + keepdir /var/www/hiawatha + fowners ${HIAWATHA_USER}:${HIAWATHA_GROUP} /var/www/hiawatha +} diff --git a/x11-libs/libkscreen/Manifest b/x11-libs/libkscreen/Manifest index 2881da7789d1..f940a394f826 100644 --- a/x11-libs/libkscreen/Manifest +++ b/x11-libs/libkscreen/Manifest @@ -1,3 +1 @@ -DIST libkscreen-1.0.2.tar.xz 35136 SHA256 499aba60e318d7671f86b66caa13fee84585ad8620f73983338ddce7948435d4 SHA512 fe99b882c5a9dedecee66eabdaa5f26f06c69d386eea0b0a69efdc03b6918e3f479d25d624700edf5795df8b0994ed1a84b1cf60e69d19e20fdf922f44b84ad0 WHIRLPOOL 09b8ed08c1e180054b8446d0e42277f204185c2e9b0d1b6b65e57609012e9eacb027829293f9b866ac8b5cd65c39ec383ec81f7a6f461e5ddaee6f38ff9e3b05 -DIST libkscreen-1.0.4.tar.xz 35620 SHA256 1102ddcc1ff58d5eb91d165228e65ce97845b5207eeacdf6b81624c241b83de6 SHA512 b6bd29bb38a67ef6910dd6a79ffa6317fd6b615728abb5024f60a2b3b493177c78f377a3d4a7550278c9964b0ed83e073decaae8a8a140caf26819b13e55f592 WHIRLPOOL 9a01bd95b110d4a0314c740bdd9b1429440c81f17257ce97159bf8ac23b9b227360afd525eab03f79984a65f6e6dfac4b1939d26ef491affce8ee0d31733676e DIST libkscreen-1.0.5.tar.xz 36384 SHA256 ee6cfb92c41fe78c43ee6d509039d598d9f98582f9aa67aeac5b2760b3b2e904 SHA512 c48749d54fa2e63e63693de0bae94b884ae0465faa1084fe88372cd3f73905ce6efce3b5a64d2a9f301125e190752e88db899363a402ef4a031052080371a9c2 WHIRLPOOL b22fc19bbee367448882fe036b02400b7e0fc497668339b39cc86e8fd1e7650dcc32fa843f05ed4591e2bef3ca8e5b9e09d58e3ed02537353914591d661b6b35 diff --git a/x11-libs/libkscreen/libkscreen-1.0.2.ebuild b/x11-libs/libkscreen/libkscreen-1.0.2.ebuild deleted file mode 100644 index 81c7fdaa9093..000000000000 --- a/x11-libs/libkscreen/libkscreen-1.0.2.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libkscreen/libkscreen-1.0.2.ebuild,v 1.5 2014/03/10 13:05:56 johu Exp $ - -EAPI=5 - -VIRTUALX_REQUIRED="test" -inherit kde4-base - -DESCRIPTION="KDE screen management library" -HOMEPAGE="https://projects.kde.org/projects/extragear/libs/libkscreen" -SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="4" -KEYWORDS="amd64 x86" -IUSE="debug" - -RDEPEND=" - >=dev-libs/qjson-0.8 - x11-libs/libX11 - x11-libs/libxcb - x11-libs/libXrandr -" -DEPEND=" - ${RDEPEND} - test? ( dev-qt/qttest:4 ) -" - -RESTRICT="test" diff --git a/x11-libs/libkscreen/libkscreen-1.0.4.ebuild b/x11-libs/libkscreen/libkscreen-1.0.4.ebuild deleted file mode 100644 index a1f53c6d39cb..000000000000 --- a/x11-libs/libkscreen/libkscreen-1.0.4.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libkscreen/libkscreen-1.0.4.ebuild,v 1.2 2014/05/12 00:35:27 johu Exp $ - -EAPI=5 - -VIRTUALX_REQUIRED="test" -inherit kde4-base - -DESCRIPTION="KDE screen management library" -HOMEPAGE="https://projects.kde.org/projects/extragear/libs/libkscreen" -SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="4" -KEYWORDS="~amd64 ~x86" -IUSE="debug" - -RDEPEND=" - >=dev-libs/qjson-0.8 - x11-libs/libX11 - x11-libs/libxcb - x11-libs/libXrandr -" -DEPEND=" - ${RDEPEND} - test? ( dev-qt/qttest:4 ) -" diff --git a/x11-libs/libkscreen/libkscreen-1.0.5.ebuild b/x11-libs/libkscreen/libkscreen-1.0.5.ebuild index 14c6317687a1..52d56f04bad8 100644 --- a/x11-libs/libkscreen/libkscreen-1.0.5.ebuild +++ b/x11-libs/libkscreen/libkscreen-1.0.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libkscreen/libkscreen-1.0.5.ebuild,v 1.2 2014/10/09 09:12:50 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libkscreen/libkscreen-1.0.5.ebuild,v 1.3 2014/10/10 10:57:40 ago Exp $ EAPI=5 @@ -13,7 +13,7 @@ SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz" LICENSE="GPL-2" SLOT="4" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="debug" RDEPEND=" diff --git a/x11-libs/tslib/tslib-1.0-r3.ebuild b/x11-libs/tslib/tslib-1.0-r3.ebuild index fe7174bd0c0f..efe3be26e7a4 100644 --- a/x11-libs/tslib/tslib-1.0-r3.ebuild +++ b/x11-libs/tslib/tslib-1.0-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/tslib/tslib-1.0-r3.ebuild,v 1.3 2014/09/21 19:56:33 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/tslib/tslib-1.0-r3.ebuild,v 1.4 2014/10/10 15:22:45 ago Exp $ EAPI="5" @@ -14,7 +14,7 @@ SRC_URI="mirror://berlios/${PN}/${P}.tar.bz2 LICENSE="LGPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" IUSE="" #extras arctic2 collie corgi h3600 linear-h2200 mk712 ucb1x00" diff --git a/x11-misc/imake/imake-1.0.7.ebuild b/x11-misc/imake/imake-1.0.7.ebuild index 8f0024daafac..824bda99a95a 100644 --- a/x11-misc/imake/imake-1.0.7.ebuild +++ b/x11-misc/imake/imake-1.0.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/imake/imake-1.0.7.ebuild,v 1.5 2014/10/09 14:48:21 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/imake/imake-1.0.7.ebuild,v 1.6 2014/10/10 11:05:28 ago Exp $ EAPI=5 @@ -8,7 +8,7 @@ XORG_STATIC=no inherit xorg-2 DESCRIPTION="C preprocessor interface to the make utility" -KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="" RDEPEND="x11-misc/xorg-cf-files" diff --git a/x11-misc/xautomation/Manifest b/x11-misc/xautomation/Manifest index 0ffb6c60c953..02adbda95d34 100644 --- a/x11-misc/xautomation/Manifest +++ b/x11-misc/xautomation/Manifest @@ -1,2 +1,3 @@ -DIST xautomation-1.05.tar.gz 114472 RMD160 05c07dd2b9036aaa77bfbf074cbe70f37b02932f SHA1 f8b06d9573802880bc4bd866b71890ae9a0e640b SHA256 b57056699c405f12ad07254bd2486202df56bbfe2ca9db60cf4f3bedf7425d93 -DIST xautomation-1.06.tar.gz 115249 RMD160 2437f5ace6465196fda362dbafb6d1675ac56a7e SHA1 56680dc22b691d7aaf928234fce2c7e8a061e0fa SHA256 970bf67d65e47d9bbee5c4c9cc33ab2d8a0ddb9a436479f1bda83158907ea8d2 +DIST xautomation-1.05.tar.gz 114472 SHA256 b57056699c405f12ad07254bd2486202df56bbfe2ca9db60cf4f3bedf7425d93 SHA512 88915bdc35baf9efe5f5ab2475ebe88e5f5f8face06ac87a857dcec78ad3a4614e57e4dd30353f12e28e4f588d030c38d25bd6f12eb6df62c79a5712655563b0 WHIRLPOOL 62b670a4bc35b8509dd3a872404301b39a2dd55a0f73d0fbcae1cda82fba9b1c9ebcd18f52c6a395956aedd25289e6b80554d11b11917387e8719f447f11e3a6 +DIST xautomation-1.06.tar.gz 115249 SHA256 970bf67d65e47d9bbee5c4c9cc33ab2d8a0ddb9a436479f1bda83158907ea8d2 +DIST xautomation-1.09.tar.gz 123995 SHA256 ee8f2c61165da682f58371a51cfc263d6e54609b614e712320b0987779d95f0d SHA512 60de78ef9e4bd605ff2cdf1cd34771940d043a2ba0498a053d54dad82476aa123afe91690e7f57d2f346845d4b1313bc0e4d3df524815265c817961978ef4ad8 WHIRLPOOL 51315082d23227805ce969760e12fadf4fa54b2cf6bfe7ccf93af5e5cf7faed9dfffb8a27fa922560c5720e2dea644a82b1e4d2b568dc69270efd70e06cb1c20 diff --git a/x11-misc/xautomation/xautomation-1.09.ebuild b/x11-misc/xautomation/xautomation-1.09.ebuild new file mode 100644 index 000000000000..6a227e9566f1 --- /dev/null +++ b/x11-misc/xautomation/xautomation-1.09.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xautomation/xautomation-1.09.ebuild,v 1.1 2014/10/10 14:00:03 jer Exp $ + +EAPI=5 + +DESCRIPTION="Control X from command line and find things on screen" +HOMEPAGE="http://hoopajoo.net/projects/xautomation.html" +SRC_URI="http://hoopajoo.net/static/projects/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86" + +RDEPEND=" + >=media-libs/libpng-1.2:0 + x11-libs/libX11 + x11-libs/libXi + x11-libs/libXtst +" +DEPEND=" + ${RDEPEND} + x11-proto/inputproto + x11-proto/xextproto + x11-proto/xproto +" + +DOCS="AUTHORS ChangeLog" diff --git a/x11-misc/xnee/Manifest b/x11-misc/xnee/Manifest index a76bce87febe..788514af8c20 100644 --- a/x11-misc/xnee/Manifest +++ b/x11-misc/xnee/Manifest @@ -1,3 +1 @@ -DIST xnee-3.17.tar.gz 1860037 SHA256 c76d1c8b9deff2e52721e474cb69cf092c0d72212c916c6dacc94e33618c8638 SHA512 fc28933b567b5d6136d2c0b4f5611b01b075e643b78d54e06bfbe61ee832058045e46bb0f757333eeb99f9ae21749625f0dba5435be1d7d2a0d45d99d5bdeedc WHIRLPOOL 1fa2547fb2409d14029bd8016085f295e5f584f74d75fb098ace985e6a66a945167a79fe0aa2da115ec289cf07019a19d8f6f9ba9479059f406d48461ce8042d -DIST xnee-3.18.tar.gz 1860727 SHA256 24d521b604f3118faf1bd087619feb230cda38bf3721000828e670e0f311cb48 SHA512 440c0c50acbc62095348b96305165a87dba388fa9a9ce862bff1e7da9a964dd947ea86d84bc54d0fc805be64550379c07b950803a4a1dde2658d5e7ca43fa28a WHIRLPOOL f333248b6d05fc665f214d220db64d3aecf53529b5b61b1d404c2f2ed184b3cde6eed6bf5c19ccf189b1a8c959bc373f4912b63c8d30c55e3707c4d2d32d987b DIST xnee-3.19.tar.gz 1893109 SHA256 52a41e5cf62f81b7a3e5b58124eb3565e1e12028abda63f547fbbe0d98a2c212 SHA512 a4a82839a4597b0d7f5b65ad76092f03eb5c665d36298505a320475daacbf66f30b022c04284ce8795360e4481fdfb1d9138f0b8b173b66d23b7f1542d0acbe8 WHIRLPOOL 9b938ccc540e91d71860600cb6c120bd33dae214fe38a6004cee29bb0d96f813536d073a23874905302a2f2552afe2866ad19d1db12234d7ae1ecf80b305339d diff --git a/x11-misc/xnee/xnee-3.17.ebuild b/x11-misc/xnee/xnee-3.17.ebuild deleted file mode 100644 index e66523179c43..000000000000 --- a/x11-misc/xnee/xnee-3.17.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/xnee-3.17.ebuild,v 1.3 2014/08/10 20:05:05 slyfox Exp $ - -EAPI=5 - -inherit autotools eutils - -DESCRIPTION="Program suite to record, replay and distribute user actions" -HOMEPAGE="http://www.sandklef.com/xnee/" -SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="gnome static-libs xosd" - -RDEPEND=" - x11-libs/libX11 - x11-libs/libXau - x11-libs/libXdmcp - x11-libs/libXext - x11-libs/libXi - x11-libs/libXtst - x11-libs/libxcb - gnome? ( - x11-libs/gtk+:2 - >=gnome-base/libgnomeui-2 - >=gnome-base/gconf-2 - ) -" -DEPEND="${RDEPEND} - x11-proto/inputproto - virtual/pkgconfig - sys-devel/gettext - gnome? ( || ( - media-gfx/imagemagick[jpeg,png] - media-gfx/graphicsmagick[imagemagick,jpeg,png] - ) ) -" - -# This needs RECORD extension from X.org server which isn't necessarily -# enabled. Xlib: extension "RECORD" missing on display ":0.0". -RESTRICT="test" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-3.18-linker.patch - eautoreconf -} - -src_configure() { - econf \ - $(use_enable gnome gui) \ - $(use_enable static-libs static) \ - $(use_enable xosd buffer_verbose) \ - $(use_enable xosd verbose) \ - $(use_enable xosd) \ - --disable-gnome-applet \ - --disable-static-programs \ - --enable-cli \ - --enable-lib -} - -src_test() { - Xemake check -} - -src_install() { - default - dodoc AUTHORS BUGS ChangeLog FAQ NEWS README TODO - use gnome && make_desktop_entry gnee Gnee ${PN} "Utility;GTK" - use static-libs || rm -f "${ED}"usr/lib*/lib*.la -} diff --git a/x11-misc/xnee/xnee-3.18.ebuild b/x11-misc/xnee/xnee-3.18.ebuild deleted file mode 100644 index 9de0fc1e5482..000000000000 --- a/x11-misc/xnee/xnee-3.18.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/xnee-3.18.ebuild,v 1.2 2014/08/10 20:05:05 slyfox Exp $ - -EAPI=5 - -inherit autotools eutils - -DESCRIPTION="Program suite to record, replay and distribute user actions" -HOMEPAGE="http://www.sandklef.com/xnee/" -SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="gnome static-libs xosd" - -RDEPEND=" - x11-libs/libX11 - x11-libs/libXau - x11-libs/libXdmcp - x11-libs/libXext - x11-libs/libXi - x11-libs/libXtst - x11-libs/libxcb - gnome? ( - x11-libs/gtk+:2 - >=gnome-base/libgnomeui-2 - >=gnome-base/gconf-2 - ) -" -DEPEND="${RDEPEND} - x11-proto/inputproto - virtual/pkgconfig - sys-devel/gettext - gnome? ( || ( - media-gfx/imagemagick[jpeg,png] - media-gfx/graphicsmagick[imagemagick,jpeg,png] - ) ) -" - -# This needs RECORD extension from X.org server which isn't necessarily -# enabled. Xlib: extension "RECORD" missing on display ":0.0". -RESTRICT="test" - -src_prepare() { - epatch "${FILESDIR}"/${P}-linker.patch - eautoreconf -} - -src_configure() { - econf \ - $(use_enable gnome gui) \ - $(use_enable static-libs static) \ - $(use_enable xosd buffer_verbose) \ - $(use_enable xosd verbose) \ - $(use_enable xosd) \ - --disable-gnome-applet \ - --disable-static-programs \ - --enable-cli \ - --enable-lib -} - -src_test() { - Xemake check -} - -src_install() { - default - dodoc AUTHORS BUGS ChangeLog FAQ NEWS README TODO - use gnome && make_desktop_entry gnee Gnee ${PN} "Utility;GTK" - use static-libs || rm -f "${ED}"usr/lib*/lib*.la -} diff --git a/x11-misc/xnee/xnee-3.19.ebuild b/x11-misc/xnee/xnee-3.19.ebuild index 034a556c3e3e..2f46e89d7881 100644 --- a/x11-misc/xnee/xnee-3.19.ebuild +++ b/x11-misc/xnee/xnee-3.19.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/xnee-3.19.ebuild,v 1.2 2014/08/10 20:05:05 slyfox Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xnee/xnee-3.19.ebuild,v 1.3 2014/10/10 15:23:25 ago Exp $ EAPI=5 inherit autotools eutils @@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="gnome static-libs xosd" RDEPEND=" diff --git a/x11-plugins/wmacpi/Manifest b/x11-plugins/wmacpi/Manifest index dcbc95264a9b..eae2ee25f96c 100644 --- a/x11-plugins/wmacpi/Manifest +++ b/x11-plugins/wmacpi/Manifest @@ -1,2 +1,3 @@ -DIST wmacpi-1.34.tar.gz 15509 RMD160 d7eda8146d0f14143fa744a29b95507bf9fb2d49 SHA1 d280e0f7148eac574fa6ec6defaef0d2e49f131e SHA256 65f7a1da06fd3489ed97391d1c9b77b570bc30c14b1f846007028353d0fa51e2 -DIST wmacpi-2.2rc1.tar.bz2 30233 RMD160 57e58d768631fb10da8ddfaccab366b510847b71 SHA1 c4efc7ee09503eca8399ad446d06a80b61f6b9fe SHA256 25fc405e6e653caf9cfd90104b184cb4ed73114e710e229ed012ec155083a11f +DIST wmacpi-1.34.tar.gz 15509 SHA256 65f7a1da06fd3489ed97391d1c9b77b570bc30c14b1f846007028353d0fa51e2 +DIST wmacpi-2.2.tar.gz 39355 SHA256 d45276c8557bebb9eaff2aa836bcd6fac8216b532c985ebe05d52e7adcaf8dab SHA512 49820a02909a2388eabc3e44b299f9aa96e8d0a92fcbea47ad743a410399bd280169256740e6da846de22df6263c3ece767a5f27a7dee26e9fc93de7bf866ed9 WHIRLPOOL 150a495495a8a3762a61be24ed9a951fa0d6bb5f118fd89e9253315686ddcd25372383ecee9164e8f9ca1f0774148819f2cdefc9fbadc037c71479bfb2c7e23c +DIST wmacpi-2.2rc1.tar.bz2 30233 SHA256 25fc405e6e653caf9cfd90104b184cb4ed73114e710e229ed012ec155083a11f diff --git a/x11-plugins/wmacpi/files/wmacpi-2.2-makefile.patch b/x11-plugins/wmacpi/files/wmacpi-2.2-makefile.patch new file mode 100644 index 000000000000..930f83459ced --- /dev/null +++ b/x11-plugins/wmacpi/files/wmacpi-2.2-makefile.patch @@ -0,0 +1,63 @@ +--- Makefile.orig 2014-10-10 14:37:55.000000000 +0200 ++++ Makefile 2014-10-10 15:00:33.348752026 +0200 +@@ -13,8 +13,8 @@ + #OPT = -pg -g + + CC := gcc +-CFLAGS += $(OPT) -Wall -W -g -ansi -I/usr/X11R6/include +-LDFLAGS += $(OPT) -lX11 -ldockapp ++CFLAGS := -Wall -W -g -ansi ++LIBS := -lX11 -ldockapp + + WMSRC := wmacpi.c libacpi.c + HEADERS := libacpi.h wmacpi.h +@@ -26,7 +26,8 @@ + doc_targets += wmacpi-cli.1 + endif + +-PREFIX := /usr/local ++PREFIX := /usr ++MANDIR := $(PREFIX)/share/man + + all: $(targets) + +@@ -37,7 +38,7 @@ + -include $(WMOBJ:.o=.d) + + wmacpi: $(WMOBJ) +- $(CC) -o $@ $^ $(LDFLAGS) ++ $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) + + # for the Debian package, we want to make building the command line tools + # optional. So, we hide all the necessary stuff here . . . +@@ -47,13 +48,13 @@ + -include $(CLOBJ:.o=.d) + + wmacpi-cli: $(CLOBJ) +- $(CC) $(LDFLAGS) -o $@ $^ ++ $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) + endif + + # build per-file dependencies - note that -MM may not be supported + # in gcc versions older than 2.95.4, but most likely is. + %.d: %.c +- gcc -MM $(CFLAGS) $< > $@ ++ $(CC) -MM $(CFLAGS) $< > $@ + + clean: + rm -f TAGS *.o *~ trace *.out *.bb *.bbg +@@ -62,10 +63,10 @@ + rm -f *.d $(targets) + + install: $(targets) +- install -d $(PREFIX)/bin/ +- install -pc $(targets) $(PREFIX)/bin/ +- install -d $(PREFIX)/share/man/man1/ +- install -pc $(doc_targets) $(PREFIX)/share/man/man1/ ++ install -d $(DESTDIR)$(PREFIX)/bin/ ++ install -pc $(targets) $(DESTDIR)$(PREFIX)/bin/ ++ install -d $(DESTDIR)$(MANDIR)/man1/ ++ install -pc $(doc_targets) $(DESTDIR)$(MANDIR)/man1/ + + tags: + etags $(WMSRC) $(CLSRC) $(HEADERS) diff --git a/x11-plugins/wmacpi/wmacpi-2.2.ebuild b/x11-plugins/wmacpi/wmacpi-2.2.ebuild new file mode 100644 index 000000000000..df2c01d3cb11 --- /dev/null +++ b/x11-plugins/wmacpi/wmacpi-2.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmacpi/wmacpi-2.2.ebuild,v 1.1 2014/10/10 13:15:37 voyageur Exp $ + +EAPI=5 +inherit eutils toolchain-funcs + +DESCRIPTION="DockApp ACPI status monitor for laptops" +HOMEPAGE="http://windowmaker.org/dockapps/?name=wmacpi" +SRC_URI="http://windowmaker.org/dockapps/?download=${P}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 -ppc -sparc ~x86" +IUSE="" + +DEPEND="x11-libs/libdockapp + x11-libs/libX11" + +S=${WORKDIR}/dockapps + +src_prepare() { + epatch "${FILESDIR}"/${P}-makefile.patch +} + +src_compile() { + emake CC="$(tc-getCC)" +} + +src_install() { + emake DESTDIR="${D}" install + dodoc AUTHORS ChangeLog README TODO +} diff --git a/x11-plugins/wmbattery/Manifest b/x11-plugins/wmbattery/Manifest index 761b6110a7af..fbd24bc9e655 100644 --- a/x11-plugins/wmbattery/Manifest +++ b/x11-plugins/wmbattery/Manifest @@ -1 +1,2 @@ +DIST wmbattery-2.45.tar.gz 38767 SHA256 c6ba2f3fb47ad53bbf9e435e675a9ef092512195b8e953774c35cef147fd036f SHA512 fe6ddfbc13cf5fe1645ed36fb60a0592e607d1f29cc1d21b0deb4f730601ecb0c1222a9abc7a0e9b5f0b7a82f6c5e844409e4e4f39f1d682c3a1f97d733f8e07 WHIRLPOOL 71df4d7b999bf7f00a8b4b7e130577fbc47289c3daed7d312d3dbceb064d87617a2175c27670cbcabd2026fdf3057fd602f5abf320259213e0b3124ed3be3a52 DIST wmbattery_2.44.tar.gz 39278 SHA256 aa0a1312922ba4f0abca5f2e8abbf285363bf4a1c8862d89fe2921e74c832cae SHA512 ce6eb3a7b9028d8923d920fe831203a9bd0c2cd3a02df0cf5074296d55dcace9750edfd8237faa9397003ed97b0305ef8e91d029261593a54269c17d0b7b3717 WHIRLPOOL cae6d6027f8bafa1966ab6b7d377fa817e767e23726e907932f7da74e46a081729568df069df5d1f01b7f7e06740bfcb8cab90ac4ba10e93b3e09fe04cba5e1a diff --git a/x11-plugins/wmbattery/wmbattery-2.45.ebuild b/x11-plugins/wmbattery/wmbattery-2.45.ebuild new file mode 100644 index 000000000000..e0ca0eec0aba --- /dev/null +++ b/x11-plugins/wmbattery/wmbattery-2.45.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmbattery/wmbattery-2.45.ebuild,v 1.1 2014/10/10 13:51:17 voyageur Exp $ + +EAPI=5 +inherit autotools + +DESCRIPTION="A dockable app to report APM, ACPI, or SPIC battery status" +HOMEPAGE="http://windowmaker.org/dockapps/?name=wmbattery" +SRC_URI="http://windowmaker.org/dockapps/?download=${P}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc -sparc ~x86" +IUSE="upower" + +RDEPEND="sys-apps/apmd + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXpm + upower? ( || ( >=sys-power/upower-0.9.23 sys-power/upower-pm-utils ) )" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +S=${WORKDIR}/dockapps + +DOCS=( ChangeLog README TODO ) + +src_prepare() { + sed -i \ + -e '/^icondir/s:icons:pixmaps:' \ + autoconf/makeinfo.in || die + + use upower || { sed -i -e 's:USE_UPOWER = 1:#&:' autoconf/makeinfo.in || die; } + + eautoreconf +} diff --git a/x11-plugins/wmix/Manifest b/x11-plugins/wmix/Manifest index 7742fabe1cc9..639de2a0d359 100644 --- a/x11-plugins/wmix/Manifest +++ b/x11-plugins/wmix/Manifest @@ -1 +1,2 @@ -DIST wmix-3.1.tar.gz 21344 RMD160 377eab8e3816d0f625f8599428a99a7f3adc0c26 SHA1 99a1222fa18abe54a04bf88817f6afdec7891799 SHA256 4b2a042768a685ed8d30e6a7ed6bd4e13022665c9d772545654c89ec1437e322 +DIST wmix-3.1.tar.gz 21344 SHA256 4b2a042768a685ed8d30e6a7ed6bd4e13022665c9d772545654c89ec1437e322 +DIST wmix-3.2.tar.gz 33504 SHA256 6912949cfa654aa2721cfcda7cf6544f631ec1f987ec2495524c2279fcb41014 SHA512 8382ab849aeacfc88d28cd094c0d9a3218f8aa26b763d9fb4fd8b9837c275a835cc3e29df0659c244fa94b884ebc36b571fe824eaa785a736e630dc2e0081417 WHIRLPOOL 2d23a2833de8c78063a3becb3931d238cab690a2b5f0620c88528cf14a9a33c1960106933a136a3289c406773387f849c6f172ed52fde92f192e6099b977b937 diff --git a/x11-plugins/wmix/wmix-3.1-r2.ebuild b/x11-plugins/wmix/wmix-3.2.ebuild similarity index 52% rename from x11-plugins/wmix/wmix-3.1-r2.ebuild rename to x11-plugins/wmix/wmix-3.2.ebuild index 4227b35e31e5..be301008239c 100644 --- a/x11-plugins/wmix/wmix-3.1-r2.ebuild +++ b/x11-plugins/wmix/wmix-3.2.ebuild @@ -1,12 +1,13 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmix/wmix-3.1-r2.ebuild,v 1.1 2010/02/23 11:01:31 s4t4n Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmix/wmix-3.2.ebuild,v 1.1 2014/10/10 12:29:31 voyageur Exp $ +EAPI=5 inherit eutils toolchain-funcs DESCRIPTION="Dockapp mixer for OSS or ALSA" -HOMEPAGE="http://www.ne.jp/asahi/linux/timecop/" -SRC_URI="http://www.ne.jp/asahi/linux/timecop/software/${P}.tar.gz" +HOMEPAGE="http://windowmaker.org/dockapps/?name=wmix" +SRC_URI="http://windowmaker.org/dockapps/?download=${P}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" @@ -20,16 +21,11 @@ DEPEND="${RDEPEND} x11-proto/xproto x11-proto/xextproto" -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/fix-wmix-3.1-version-number.patch - epatch "${FILESDIR}"/wmix-fix-free.patch -} +S=${WORKDIR}/dockapps src_compile() { emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" \ - LDFLAGS="${LDFLAGS}" || die "emake failed." + LDFLAGS="${LDFLAGS}" } src_install() { diff --git a/x11-plugins/wmmemload/Manifest b/x11-plugins/wmmemload/Manifest index 1910084640f0..1b08f55d9b8a 100644 --- a/x11-plugins/wmmemload/Manifest +++ b/x11-plugins/wmmemload/Manifest @@ -1 +1,2 @@ DIST wmmemload-0.1.6.tar.gz 141606 SHA256 207a6e0f69d2aa56054c34a3b0f7643014f2b9609ea28ad10d25901c8d34171b +DIST wmmemload-0.1.7.tar.gz 23030 SHA256 dd08ac0c91ac20c174afa53ffd4b4773cca2804e5238caaaa90f5f8c524dd50f SHA512 d84108c23436b92b00818aaa59f14f5fc425a1509044d008820cd335e312ca271867b6be03a7f0f8b904691894a2f47e976048e3be46c0bd24b6b64478233c8d WHIRLPOOL d1dbbda1a632e61e566a364c7cc747fb24740acfa519f44d0b6afcce5b80238cf2943abd65a90558d1421eedab9b0463739addfbba3623c09f0802d82739f796 diff --git a/x11-plugins/wmmemload/wmmemload-0.1.7.ebuild b/x11-plugins/wmmemload/wmmemload-0.1.7.ebuild new file mode 100644 index 000000000000..350eeb5daf7f --- /dev/null +++ b/x11-plugins/wmmemload/wmmemload-0.1.7.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmmemload/wmmemload-0.1.7.ebuild,v 1.1 2014/10/10 20:23:43 voyageur Exp $ + +EAPI=5 +inherit autotools eutils + +DESCRIPTION="dockapp that displays memory and swap space usage" +HOMEPAGE="http://windowmaker.org/dockapps/?name=wmmemload" +SRC_URI="http://windowmaker.org/dockapps/?download=${P}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +RDEPEND="x11-libs/libX11 + x11-libs/libXext + x11-libs/libXpm" +DEPEND="${RDEPEND} + x11-proto/xextproto + x11-libs/libICE + x11-libs/libXt" + +S=${WORKDIR}/dockapps + +src_prepare() { + eautoreconf +} + +src_install() { + emake DESTDIR="${D}" install + dodoc AUTHORS ChangeLog THANKS +} diff --git a/x11-terms/sakura/sakura-3.1.5.ebuild b/x11-terms/sakura/sakura-3.1.5.ebuild index 78873bf63b84..550464d29824 100644 --- a/x11-terms/sakura/sakura-3.1.5.ebuild +++ b/x11-terms/sakura/sakura-3.1.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-terms/sakura/sakura-3.1.5.ebuild,v 1.1 2014/08/16 15:02:57 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-terms/sakura/sakura-3.1.5.ebuild,v 1.2 2014/10/10 15:23:20 ago Exp $ EAPI=5 inherit cmake-utils eutils @@ -11,7 +11,7 @@ SRC_URI="http://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86 ~arm-linux ~x86-linux" +KEYWORDS="amd64 ~x86 ~arm-linux ~x86-linux" RDEPEND=" >=dev-libs/glib-2.20:2 diff --git a/x11-wm/icewm/icewm-1.3.8.ebuild b/x11-wm/icewm/icewm-1.3.8.ebuild index b9027b18f06a..934ece9299c5 100644 --- a/x11-wm/icewm/icewm-1.3.8.ebuild +++ b/x11-wm/icewm/icewm-1.3.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/icewm/icewm-1.3.8.ebuild,v 1.4 2014/10/05 11:49:43 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/icewm/icewm-1.3.8.ebuild,v 1.5 2014/10/10 10:51:38 ago Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7} ) @@ -13,7 +13,7 @@ LICENSE="GPL-2" SRC_URI="mirror://sourceforge/${PN}/${P/_}.tar.gz" SLOT="0" -KEYWORDS="~alpha amd64 ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 ppc ~ppc64 ~sparc x86" IUSE="bidi debug gnome minimal nls truetype uclibc xinerama" REQUIRED_USE="gnome? ( ${PYTHON_REQUIRED_USE} )"