diff --git a/app-arch/bsdsfv/bsdsfv-1.18-r2.ebuild b/app-arch/bsdsfv/bsdsfv-1.18-r2.ebuild new file mode 100644 index 000000000000..58010f9828fa --- /dev/null +++ b/app-arch/bsdsfv/bsdsfv-1.18-r2.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit toolchain-funcs + +DESCRIPTION="all-in-one SFV checksum utility" +HOMEPAGE="http://bsdsfv.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~m68k ~ppc ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="" + +S=${WORKDIR}/${PN} + +PATCHES=( "${FILESDIR}"/${P}-64bit.patch ) + +src_compile() { + emake STRIP=true CC=$(tc-getCC) +} + +src_install() { + dobin bsdsfv + dodoc README MANUAL +} diff --git a/app-benchmarks/pipebench/pipebench-0.40-r1.ebuild b/app-benchmarks/pipebench/pipebench-0.40-r2.ebuild similarity index 87% rename from app-benchmarks/pipebench/pipebench-0.40-r1.ebuild rename to app-benchmarks/pipebench/pipebench-0.40-r2.ebuild index 8a6239e3f193..610bcc5df90d 100644 --- a/app-benchmarks/pipebench/pipebench-0.40-r1.ebuild +++ b/app-benchmarks/pipebench/pipebench-0.40-r2.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="3" +EAPI=6 inherit toolchain-funcs @@ -21,14 +21,15 @@ src_prepare() { -e "s:/usr/local/bin/:${ED}/usr/bin:" \ -e "s:/usr/local/man/man1/:${ED}/usr/share/man/man1:" \ || die "sed Makefile" + default } src_compile() { - emake CC=$(tc-getCC) || die + emake CC=$(tc-getCC) } src_install() { dodir /usr/{bin,share/man/man1} - emake install || die + emake install dodoc README } diff --git a/app-cdr/dvd+rw-tools/dvd+rw-tools-7.1-r2.ebuild b/app-cdr/dvd+rw-tools/dvd+rw-tools-7.1-r2.ebuild deleted file mode 100644 index 266177372263..000000000000 --- a/app-cdr/dvd+rw-tools/dvd+rw-tools-7.1-r2.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs - -DESCRIPTION="A set of tools for DVD+RW/-RW drives" -HOMEPAGE="http://fy.chalmers.se/~appro/linux/DVD+RW/" -SRC_URI="http://fy.chalmers.se/~appro/linux/DVD+RW/tools/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux" -IUSE="" - -RDEPEND="virtual/cdrtools" -DEPEND="${RDEPEND} - sys-devel/m4" - -PATCHES=( - "${FILESDIR}"/${PN}-7.0-sysmacros.patch - "${FILESDIR}"/${PN}-7.0-wctomb-r1.patch - "${FILESDIR}"/${PN}-7.0-glibc2.6.90.patch - "${FILESDIR}"/${PN}-7.0-dvddl-r1.patch - "${FILESDIR}"/${PN}-7.0-wexit.patch -) - -src_prepare() { - # Linux compiler flags only include -O2 and are incremental. - sed -i '/FLAGS/s:-O2::' Makefile.m4 || die "failed to sed out FLAGS" - default -} - -src_compile() { - emake SHELL="${EPREFIX}"/bin/bash CC="$(tc-getCC)" CXX="$(tc-getCXX)" -} - -src_install() { - emake SHELL="${EPREFIX}"/bin/bash prefix="${ED}/usr" install - dodoc index.html -} - -pkg_postinst() { - if [[ -z "${REPLACING_VERSIONS}" ]] ; then - elog 'If you receive an error, "unable to anonymously mmap...' - elog 'Resource temporarily unavailable" when running growisofs,' - elog 'then you may need to run "ulimit -l unlimited".' - fi -} diff --git a/app-crypt/tc-play/files/tc-play-2.0-build.patch b/app-crypt/tc-play/files/tc-play-2.0-build.patch new file mode 100644 index 000000000000..0385f33b45b4 --- /dev/null +++ b/app-crypt/tc-play/files/tc-play-2.0-build.patch @@ -0,0 +1,27 @@ +From 3f9235841ba4494962b3c7dafcd16fd3ff5f6575 Mon Sep 17 00:00:00 2001 +From: Alon Bar-Lev +Date: Sat, 8 Apr 2017 20:27:17 +0300 +Subject: [PATCH] build: include sys/sysmacros.h for recent glibc + +https://sourceware.org/ml/libc-alpha/2015-11/msg00253.html + +Signed-off-by: Alon Bar-Lev +--- + tcplay.c | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/tcplay.c b/tcplay.c +index cd882cf..a6d4655 100644 +--- a/tcplay.c ++++ b/tcplay.c +@@ -47,6 +47,7 @@ + #if defined(__linux__) + #include + #include ++#include + #elif defined(__DragonFly__) + #include + #include +-- +2.10.2 + diff --git a/app-crypt/tc-play/tc-play-2.0-r1.ebuild b/app-crypt/tc-play/tc-play-2.0-r1.ebuild index 043d93a7a769..16df65d19d06 100644 --- a/app-crypt/tc-play/tc-play-2.0-r1.ebuild +++ b/app-crypt/tc-play/tc-play-2.0-r1.ebuild @@ -30,6 +30,10 @@ DOCS=( README.md ) +PATCHES=( + "${FILESDIR}/${P}-build.patch" +) + pkg_setup() { local backend="openssl" use gnutls && local backend="gcrypt" diff --git a/app-dicts/edictionary/edictionary-2.6.ebuild b/app-dicts/edictionary/edictionary-2.6-r1.ebuild similarity index 81% rename from app-dicts/edictionary/edictionary-2.6.ebuild rename to app-dicts/edictionary/edictionary-2.6-r1.ebuild index bfa211bae39d..a0ae02ba223b 100644 --- a/app-dicts/edictionary/edictionary-2.6.ebuild +++ b/app-dicts/edictionary/edictionary-2.6-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="3" +EAPI=6 MY_PN="edict" MY_P="${MY_PN}-${PV}" @@ -21,6 +21,6 @@ DEPEND="dev-lang/perl" S="${WORKDIR}/${MY_PN}" src_install() { - make prefix="${ED}/usr/bin" install || die "make failed" - dodoc Changelog ReleaseNotes README TODO || die + make prefix="${ED}/usr/bin" install + dodoc Changelog ReleaseNotes README TODO } diff --git a/app-doc/casting-spels-emacs/casting-spels-emacs-19-r1.ebuild b/app-doc/casting-spels-emacs/casting-spels-emacs-19-r1.ebuild deleted file mode 100644 index 804777fc61b9..000000000000 --- a/app-doc/casting-spels-emacs/casting-spels-emacs-19-r1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=3 - -inherit elisp-common eutils - -DESCRIPTION="Casting SPELs in Lisp - A Comic Book (Emacs Lisp Edition)" -HOMEPAGE="https://code.google.com/p/casting-spels-emacs/" -SRC_URI="https://casting-spels-emacs.googlecode.com/files/${PN}-v${PV}.zip" - -LICENSE="GPL-2 FDL-1.2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND="virtual/emacs" -DEPEND="app-arch/unzip" - -S="${WORKDIR}/${PN}" - -src_prepare() { - edos2unix *.txt html/*.html {lisp,test}/*.el - - # needs cl extensions - epatch "${FILESDIR}/${P}-require-cl.patch" -} - -src_install() { - elisp-install ${PN} lisp/*.el || die - dohtml -r html/. images || die - dosym html/images /usr/share/doc/${PF}/images - dosym ${SITELISP}/${PN} /usr/share/doc/${PF}/lisp - dodoc README.txt test/walk-through-commands.el -} diff --git a/app-doc/casting-spels-emacs/casting-spels-emacs-19-r2.ebuild b/app-doc/casting-spels-emacs/casting-spels-emacs-19-r2.ebuild index 3e14631915e5..5f9f23dd698d 100644 --- a/app-doc/casting-spels-emacs/casting-spels-emacs-19-r2.ebuild +++ b/app-doc/casting-spels-emacs/casting-spels-emacs-19-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -12,7 +12,7 @@ SRC_URI="https://casting-spels-emacs.googlecode.com/files/${PN}-v${PV}.zip" LICENSE="GPL-2+ FDL-1.2" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" RDEPEND="virtual/emacs" DEPEND="app-arch/unzip" diff --git a/app-editors/atom/Manifest b/app-editors/atom/Manifest index 0186079974c9..ff41775c3168 100644 --- a/app-editors/atom/Manifest +++ b/app-editors/atom/Manifest @@ -1,9 +1,11 @@ DIST asar-0.12.1.tar.gz 1016626 SHA256 731714f0036318fe0878b517391a01977954bb088d4dbc7dd98682ff1e03c0e7 SHA512 fc64be9b11215426d405f7acd7adf6c0eead3135b0012baf6d168a13c77675058a4e2c60682928ac014e4bef4538d452ad745d1e87dd315387997a19e04718a7 WHIRLPOOL d73b8bb459724bb3b011de312171519c1f1954a94ce1bb0a20eb9877c168baa82a15786d3ab420d5b3d32ce8a11333e85f844b43c21cbd56c3b019e73774388e DIST atom-1.12.7.rpm 84755598 SHA256 8eaa5426c9209efc91969e3f3b1535f2c1895daf6259c07cbd595dd0a599553f SHA512 f2d582eb916e95373a08a1e56b89492f52547ab853fae7975b8193ee5d0a23dfc86bcaf9de5b53bc0dbd955c784abfede5b162fb6ef5ee0f7424fc0882da848c WHIRLPOOL aa029e8ef519f475b0a9a9f592cb685b4f15f4c257774c7ca644ed69bf50128bce4c382581b133e7c43438f690ed6b3d791ad379109b96a8ef9893ef93e0ad98 DIST atom-1.13.1.rpm 86119349 SHA256 593fa81abb3a3a8c89713de1fb9d7d3dd4e4b34211de69fee67469b63be98f01 SHA512 57e587441fbc5ed7864d54f067386a54e854c761b3ad577e07d58253d693c90de934af98e1dc16bf1b645a7b87e9169d0a869509c0192103ddede51a1d8b95d6 WHIRLPOOL 51b8ce72c4b9b01ca8afc3ae5a548e0dbf437fc629305acf357c6de44a05b20a7d8736c89d78cd1cb84fe22109445e5d9d773e0d50e321fcdabca015f64a55a7 +DIST atom-1.15.0.rpm 86561729 SHA256 935b444d9122f46d3ab490611476498c963de1232f9c732d9ad33f0e380a37be SHA512 e8f5ceaae020f9fbf8cb1ffbef0f64b7b5d23a0be20d063591e3ba3b9fd33c771a028aca9aa0ecad254e250342d40106dac85bf6bdeff4de64da0b57fe6de3ea WHIRLPOOL 4d4311654b8afaa4aa2d07611960d24775aeb825e97ea65e6f69d72790d4c160e8a371432346f1873a71b2e1bf4158f3eb5d35fc1fd882906765f3ea4328e526 DIST atom-buffer-offset-index-9588080533c9d0a8a71ee1cfd98596f485940e91.tar.gz 5558 SHA256 ea940264e4d6f2b5ad319c50e7e4ece64e1fd4d1f790c847dedf0a5bc4e9b2c9 SHA512 ebcfa7057c9db85a7884cbb19fa561821fc883bbd6a5d0186fcf68782697a7c7677e019334b44b3477d26e1febccb3a7690dc3390dcb55ca838e176f390b11b7 WHIRLPOOL 1c438ec18c2fcf1c7b1a11421eb9944a2fd90f920dc4dc5cf0b8c5300f9f285cc993689312a23b9882f13316956077bf9994173c0b1c9cd54c6f5ccdd667d16f DIST atom-cached-run-in-this-context-0.4.1.tar.gz 3855 SHA256 5487e7641d5031e652deeef8bebe2d3af4e4d2b89989dd8700bf14e33843ce89 SHA512 dca2a6c77bb94e704aa99b405ae017bf0c56ce536a7246a8feaf133722556d444fb684cd6b9b475abcd0b946a42073a9fc0d61f5141b564320ac023ab2fbf79d WHIRLPOOL 573d0f703989f31109854f0eb324d6b1364e93cd057c4cfe20409415dee3101964cacabc246d4df43124dad881d8fec8575c6bbb23ba98698e6c73cf3c5614d4 DIST atom-git-utils-4.1.2.tar.gz 36492 SHA256 fd627647742359946d3b8f88bc91dd4d68a047dcba5bfafbd690e1a20afeb908 SHA512 d1f0a5bbd6b059131ccf4ab92174d80caddbb254ea6d0676a5ce71d7dba55d60c86ed1c412862b9d104a5f6deb2671facad84841f9644afb9b37416b743e917a WHIRLPOOL 4ee4620b0208a30f848167fffce05c5999d38bf5a3e50567e6bcf295fdafc7861e870346cfeb28a61392e7a737e100f90ae1dbd25066469926e3148006e02937 +DIST atom-keyboard-layout-2.0.11.tar.gz 19294 SHA256 fcef31c36619b76dd5f13a53c40eb9d3a7206a85cac3cd9dd0ba8e89d128258e SHA512 e7cbf3e8686ce6a86549d913523db75af623d4c5a18104f911b7f3931c273b87b4695b9b85afaea9a5cb440201b34d9e7445786c9328b87a5b58176cf2dbb877 WHIRLPOOL 85f06e125fca0e4e4c8a50fba539d674a0aadd1fba0c75b2be5663503c97bc8b6a6c75ee6b9916df5e598f3cc2a18f84e8392f1fb1145113d36d5216c0a2e5af DIST atom-keyboard-layout-2.0.7.tar.gz 18687 SHA256 3fb6c702c07d4d7116d73e5ed457f8dd2b07a99eafb7da830c032545d6da1f1e SHA512 96a10dad193d2e870e518eb863e4bf758e1efa86c4e377a3dcb818b5f51d42eaab9211732eddac106b7d4dddf6d9ebe80fb4a16ca24c647a0599a3a92e2c4591 WHIRLPOOL 01c28f7dadb8961ed6480a6ca2f9fab6c7e78436317b12f2731e130af405a456ea21719c0a409aa87248eaee956792fc37dcb040d900e2acc5005917c0f4666c DIST atom-marker-index-4.0.1.tar.gz 18433 SHA256 ecb6a5294088feb2a2b8ae71845dc262e1ab551a6a75e9ac99b05807b62b2d4a SHA512 2f5639ac0fef1a9d735dc10b464a046ee78f8cf7ecd8a6705232c319958a46056146bd91a0bf421aa0c6da39106f6deacaedaa40c442c0c08f0e6fbfd938b3ea WHIRLPOOL ccbd0f6a515b97a1fcf460f13388206ab3ccee364264203fa6d6ad3d6e68a4e06bad5f38ce19008d2a5f79d2becb14a459cbd016f0daaea48c5387c21ad1bb77 DIST atom-node-ctags-3.0.0.tar.gz 15062 SHA256 40605012d06d4dcbfc369862b57900b6963613e2e4ee3b37fea21693b2b418a7 SHA512 6f7277a0ff872991c365f811c635fd881c3e466c20219d8a7bdaf6fec7c26c5feaa7ae2118691a8d52ceb3ecfda6d795bf39dfda7f8df5a6d02388575a010f87 WHIRLPOOL 2cff81d2ca405a615e5c7d284785f129f8fcd968998c68a42af1ca2e6d76a6fcb404a92f3c0d20220567b28593448b91657db6df8bce19de1f2eedbfe2959140 @@ -11,7 +13,9 @@ DIST atom-node-keytar-3.0.2.tar.gz 5718 SHA256 16af03d2a7876e3008f82d35e91375338 DIST atom-node-nslog-3.0.0.tar.gz 2774 SHA256 6f2c7b79dd27688829d72dcbb94cc3da8b86fe74f355e1d407907cc56da29747 SHA512 1891632486acfa014eec79f70b14d56d967670310e46dedccfc9dfa505581365765f6bd42ad538b29e74d7c7de83d045b4199dd634fc588734a1ee086dcddb0a WHIRLPOOL d29f2c68e6168ce020c2a73d73f107ffb4c777e006fba4f01a93045ad631fb2d8b83f989244caf4d5e2f66474e660f3479d79a03e82a6b8fa8a297586ee6e556 DIST atom-node-oniguruma-6.1.0.tar.gz 661394 SHA256 dab5322efac0cbe2c646559f130a2832be24e7caf8becabeedaf66842b72b289 SHA512 6443881353b61ad59d29cab6628f07d488e54df7b5a04ddffe4de11329e928b2a9cfc7582e22e0a90b6a3c6bf0e37873d8a5e34036cee5f7187ed4ae11fd6507 WHIRLPOOL 9c67fc6800e3d2b15160faa763539aefa2a40584697619b46098bd0f1c2820904ca6cae638e442c102c09616f62817c0df11f9c2da11d65c7dc9c98d04f668a4 DIST atom-node-pathwatcher-6.5.0.tar.gz 23926 SHA256 a2f72f00cbe6a49152cdae85fb7585a77f0ee8b01be54fbc27a24f93935445c3 SHA512 0b8471885acc44f38161b4758951cff762f4c9ca2d17aefdb286b99fdefa6843eaa86d463e4ac54563a79f6701fcaa40252a72d73baf2b6c4e47aa00692ee314 WHIRLPOOL f3a82776b05416eda4e763c0f1db1e422b299f78cf516576b0d13b0447024962538603ce47c12a4889f7d9c984b98ca75013230ba3f1cea1575453e5c2e445dc +DIST atom-node-pathwatcher-6.8.0.tar.gz 24627 SHA256 a714ed58e709f72a8f687d697d68332c5a2c4d0019e3cdc09886e5ff85bd493f SHA512 ccb4d1270ba91cf31c5725e985b7bf224a8878fbeeb5fd2e78e22de7e25d382fc5b1c9e05ce1f2c23968d4ca3018e1db611c9485dbbd6eca2169228fb0a136e9 WHIRLPOOL b7080b82d6b8564aa84040c2f1d2fa4546a0dd073f7f78fb5503dc36dec4316fe4750c38757397a8c4782680ec9e0458ad4428368279990f3ba23f3f929b8459 DIST atom-node-runas-3.1.1.tar.gz 6628 SHA256 9d7d5a157b16fdd7263f50adb2831706d6fcf0902a1af528fc2602db6f9dc1cf SHA512 bada6e99ceb833c8c6e74f4b3116c49f21b54b922c1a27668312552779b9e5ccebf380b41c781d49c1c0dd0fdff6de8b71a0dcaf1f992892593e85f4572238df WHIRLPOOL d286d76f38ee8a23b4b76a9070913abe901f4db273073d9c0dcef13004abe7e10e9b4cad451cfe8d0cd4cc1e0ac2ab28ed50f327c1b9d317689153658f7b8944 DIST atom-node-spellchecker-3.2.3.tar.gz 481966 SHA256 bf4a07b4c671cd38b176ff8ef375f3cdf277decb941a0a279f8ffb36151fad55 SHA512 b0209fdfcbee53d289443e1c203a720888a82fa59648b4038c036c6afe68a6b04624e23267e69c36f23c185160d6ab84b1e4020047fbe6d94354e99d717a60b9 WHIRLPOOL d883cd3d3962e38ebe4c55e997ce461fa0b0da98e8b982793b77342eac1413e16090d562a9a50cb8200a18eda751a873528fdfde3b1f1928629bd56c5568f887 DIST atom-scrollbar-style-3.2.0.tar.gz 4609 SHA256 ea0f8f00cac609537af0d10d228054371c58b5a74785bd52fbbd276af02911ef SHA512 fc3ddfe7582517df45d7258a5857ca05fbadb92417d68b0c77d1e89e54b3bdaef3a1624e29177ebe64a2a994e62e1d1f5cb438911e881124aeec359426fab1bc WHIRLPOOL f6e75aafa8946ccc16949bdffa33b2bf050f06434a3fedcf8e1abac8b6b2d31dd37fcc137a43274d4c55d5926349486fda157d3fb6948d97063aac33b99e6578 +DIST atom-superstring-1.1.0.tar.gz 259961 SHA256 fcfc7f94bc3631fda8b08b2b91778f8a62e863b346a2f90b66f9af9f4f3f8cbb SHA512 880c97d696036065aeb4320dc71c88b49b22b04e6582c75310131e61d8067fdf3d26c901d7b22a2bfd2a2a2056f350ba9485b7e55410cdee9ef29f5a75a8af59 WHIRLPOOL 6f857ea91c8df678c592232816ec3c251355cb7af4f1f6dbf0f16c44aa1a978c66c0ce8225d176e7b253addb1e38795a3902a8dd302dd72db1f35e4c18cd3236 DIST nodejs-nan-2.4.0.tar.gz 157071 SHA256 290b4cd678bb0770fcc0dfa8415f908db09173acfdde31135a4e31716c311883 SHA512 e6f3ab3f67c72b3cc9e6e6b9b5de0f73134ef504dedae5e68376198858a6796f00c35869438e0480f28006dd8f6be13dca3bcc436a1a6b28b1dea5cbc72f9e45 WHIRLPOOL 8628452c69c1774e02b8069ee8db12b7b97bc45166dd4dbec3e8d3f532c97f15a24920f2f59ecb3b8d4addcbada33eb04c1f71222531a7377bcbfaf7d4f3d86b diff --git a/app-editors/atom/atom-1.15.0.ebuild b/app-editors/atom/atom-1.15.0.ebuild new file mode 100644 index 000000000000..d62dfb4083d3 --- /dev/null +++ b/app-editors/atom/atom-1.15.0.ebuild @@ -0,0 +1,405 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 ) +inherit python-any-r1 multiprocessing rpm + +DESCRIPTION="A hackable text editor for the 21st Century" +HOMEPAGE="https://atom.io" +MY_PV="${PV//_/-}" + +ELECTRON_V=1.3.13 +ELECTRON_SLOT=1.3 + +# All binary packages depend on this +NAN_V=2.4.0 + +# Keep dep versions in sync with atom/package.json +CACHED_RUN_IN_THIS_CONTEXT_V=0.4.1 +GIT_UTILS_V=4.1.2 +NODE_NSLOG_V=3.0.0 +NODE_ONIGURUMA_V=6.1.0 +NODE_PATHWATCHER_V=6.8.0 +NODE_RUNAS_V=3.1.1 +SCROLLBAR_STYLE_V=3.2.0 +SPELL_CHECK_V=0.70.2 + +# text-buffer dependencies +SUPERSTRING_V=1.1.0 + +# apm dependency +NODE_KEYTAR_V=3.0.2 + +# atom-keymap dependency +KEYBOARD_LAYOUT_V=2.0.11 + +# symbols-view dependency +NODE_CTAGS_V=3.0.0 + +# spell-check dependency +NODE_SPELLCHECKER_V=3.2.3 + +ASAR_V=0.12.1 + +# The x86_64 arch below is irrelevant, as we will rebuild all binary packages. +SRC_URI=" + https://github.com/${PN}/${PN}/releases/download/v${MY_PV}/atom.x86_64.rpm -> atom-${MY_PV}.rpm + https://github.com/elprans/asar/releases/download/v${ASAR_V}-gentoo/asar-build.tar.gz -> asar-${ASAR_V}.tar.gz + https://github.com/nodejs/nan/archive/v${NAN_V}.tar.gz -> nodejs-nan-${NAN_V}.tar.gz + https://github.com/atom/cached-run-in-this-context/archive/v${CACHED_RUN_IN_THIS_CONTEXT_V}.tar.gz -> atom-cached-run-in-this-context-${CACHED_RUN_IN_THIS_CONTEXT_V}.tar.gz + https://github.com/atom/node-ctags/archive/v${NODE_CTAGS_V}.tar.gz -> atom-node-ctags-${NODE_CTAGS_V}.tar.gz + https://github.com/atom/git-utils/archive/v${GIT_UTILS_V}.tar.gz -> atom-git-utils-${GIT_UTILS_V}.tar.gz + https://github.com/atom/keyboard-layout/archive/v${KEYBOARD_LAYOUT_V}.tar.gz -> atom-keyboard-layout-${KEYBOARD_LAYOUT_V}.tar.gz + https://github.com/atom/superstring/archive/v${SUPERSTRING_V}.tar.gz -> atom-superstring-${SUPERSTRING_V}.tar.gz + https://github.com/atom/node-keytar/archive/v${NODE_KEYTAR_V}.tar.gz -> atom-node-keytar-${NODE_KEYTAR_V}.tar.gz + https://github.com/atom/node-nslog/archive/v${NODE_NSLOG_V}.tar.gz -> atom-node-nslog-${NODE_NSLOG_V}.tar.gz + https://github.com/atom/node-oniguruma/archive/v${NODE_ONIGURUMA_V}.tar.gz -> atom-node-oniguruma-${NODE_ONIGURUMA_V}.tar.gz + https://github.com/atom/node-pathwatcher/archive/v${NODE_PATHWATCHER_V}.tar.gz -> atom-node-pathwatcher-${NODE_PATHWATCHER_V}.tar.gz + https://github.com/atom/node-runas/archive/v${NODE_RUNAS_V}.tar.gz -> atom-node-runas-${NODE_RUNAS_V}.tar.gz + https://github.com/atom/scrollbar-style/archive/v${SCROLLBAR_STYLE_V}.tar.gz -> atom-scrollbar-style-${SCROLLBAR_STYLE_V}.tar.gz + https://github.com/atom/node-spellchecker/archive/v${NODE_SPELLCHECKER_V}.tar.gz -> atom-node-spellchecker-${NODE_SPELLCHECKER_V}.tar.gz +" + +BINMODS=" + cached-run-in-this-context + node-ctags + git-utils + keyboard-layout + node-nslog + node-oniguruma + node-pathwatcher + node-runas + node-keytar + scrollbar-style + node-spellchecker + superstring +" + +RESTRICT="mirror" +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND=" + ${PYTHON_DEPS} + >=app-text/hunspell-1.3.3:= + >=dev-libs/libgit2-0.23:=[ssh] + >=gnome-base/libgnome-keyring-3.12:= + >=dev-libs/oniguruma-5.9.5:= + >=dev-util/ctags-5.8 + >=dev-util/electron-1.3.5:${ELECTRON_SLOT} + x11-libs/libxkbfile" +RDEPEND=" + ${DEPEND} + !sys-apps/apmd +" + +S="${WORKDIR}/${PN}-${MY_PV}" + +pkg_setup() { + python-any-r1_pkg_setup +} + +get_install_suffix() { + local c=(${SLOT//\// }) + local slot=${c[0]} + local suffix + + if [[ "${slot}" == "0" ]]; then + suffix="" + else + suffix="-${slot}" + fi + + echo -n "${suffix}" +} + +get_install_dir() { + echo -n "/usr/$(get_libdir)/atom$(get_install_suffix)" +} + +get_electron_dir() { + echo -n "/usr/$(get_libdir)/electron-${ELECTRON_SLOT}" +} + +get_electron_nodedir() { + echo -n "/usr/include/electron-${ELECTRON_SLOT}/node/" +} + +enode_electron() { + "$(get_electron_dir)"/node $@ +} + +enodegyp_atom() { + local apmpath="/usr/share/atom/resources/app/apm" + local nodegyp="${S}/${apmpath}/node_modules/node-gyp/bin/node-gyp.js" + + PATH="$(get_electron_dir):${PATH}" \ + enode_electron "${nodegyp}" \ + --nodedir="$(get_electron_nodedir)" $@ || die +} + +easar() { + local asar="${WORKDIR}/$(package_dir asar)/node_modules/asar/bin/asar" + echo "asar" $@ + enode_electron "${asar}" $@ || die +} + +package_dir() { + local binmod="${1//-/_}" + local binmod_v="${binmod^^}_V" + echo -n ${1}-${!binmod_v} +} + +_unpack_npm_package() { + local a="${1}" basename suffix + + basename=${a%.*} + suffix=${basename##*.} + if [[ "${suffix}" == "tar" ]]; then + basename=${basename%.*} + fi + + unpack ${a} + mv package "${basename}" || die +} + +_have_patches_for() { + local _patches="${1}-*.patch" _find + _find=$(find "${FILESDIR}" -maxdepth 1 -name "${_patches}" -print -quit) + test -n "$_find" +} + +src_unpack() { + local a + + for a in ${A} ; do + case ${a} in + *.rpm) srcrpm_unpack "${a}" ;; + *) unpack "${a}" ;; + esac + done + + mkdir "${WORKDIR}/atom-${MY_PV}" || die + mv "${WORKDIR}/usr" "${WORKDIR}/atom-${MY_PV}" || die +} + +src_prepare() { + local install_dir="$(get_install_dir)" + local suffix="$(get_install_suffix)" + local patch binmod _s nan_s="${WORKDIR}/nan-${NAN_V}" + + cd "${S}/usr/share/atom/resources/app" || die + eapply "${FILESDIR}/${PN}-python.patch" + eapply "${FILESDIR}/${PN}-unbundle-electron.patch" + + sed -i -e "s|{{NPM_CONFIG_NODEDIR}}|$(get_electron_nodedir)|g" \ + ./atom.sh \ + || die + + sed -i -e "s|{{ATOM_PATH}}|$(get_electron_dir)/electron|g" \ + ./atom.sh \ + || die + + sed -i -e "s|{{ATOM_RESOURCE_PATH}}|${install_dir}/app.asar|g" \ + ./atom.sh \ + || die + + local env="export NPM_CONFIG_NODEDIR=$(get_electron_nodedir)" + sed -i -e \ + "s|\"\$binDir/\$nodeBin\"|${env}\nexec $(get_electron_dir)/node|g" \ + apm/bin/apm || die + + sed -i -e \ + "s|^\([[:space:]]*\)node[[:space:]]\+|\1\"$(get_electron_dir)/node\" |g" \ + apm/node_modules/npm/bin/node-gyp-bin/node-gyp || die + + rm apm/bin/node || die + + sed -i -e "s|/usr/share/atom/atom|/usr/bin/atom|g" \ + "${S}/usr/share/applications/atom.desktop" || die + + cd "${S}" || die + + for binmod in ${BINMODS}; do + _s="${WORKDIR}/$(package_dir ${binmod})" + cd "${_s}" || die + if _have_patches_for "${binmod}"; then + for patch in "${FILESDIR}"/${binmod}-*.patch; do + eapply "${patch}" + done + fi + done + + # Unbundle bundled libs from modules + + _s="${WORKDIR}/$(package_dir git-utils)" + ${EPYTHON} "${FILESDIR}/gyp-unbundle.py" \ + --inplace --unbundle "git;libgit2;git2" \ + "${_s}/binding.gyp" || die + + _s="${WORKDIR}/$(package_dir node-oniguruma)" + ${EPYTHON} "${FILESDIR}/gyp-unbundle.py" \ + --inplace --unbundle "onig_scanner;oniguruma;onig" \ + "${_s}/binding.gyp" || die + + _s="${WORKDIR}/$(package_dir node-spellchecker)" + ${EPYTHON} "${FILESDIR}/gyp-unbundle.py" \ + --inplace --unbundle "spellchecker;hunspell;hunspell" \ + "${_s}/binding.gyp" || die + + for binmod in ${BINMODS}; do + _s="${WORKDIR}/$(package_dir ${binmod})" + mkdir -p "${_s}/node_modules" || die + ln -s "${nan_s}" "${_s}/node_modules/nan" || die + done + + # Unpack app.asar + easar extract "${S}/usr/share/atom/resources/app.asar" "${S}/build/app" + + cd "${S}" || die + + eapply "${FILESDIR}/atom-1.13-apm-path.patch" + eapply "${FILESDIR}/atom-license-path.patch" + eapply "${FILESDIR}/atom-fix-app-restart.patch" + eapply "${FILESDIR}/atom-marker-layer.patch" + + sed -i -e "s|{{ATOM_SUFFIX}}|${suffix}|g" \ + "${S}/build/app/src/config-schema.js" || die + + eapply_user +} + +src_configure() { + local binmod _s + + for binmod in ${BINMODS}; do + einfo "Configuring ${binmod}..." + _s="${WORKDIR}/$(package_dir ${binmod})" + cd "${_s}" || die + enodegyp_atom configure + done +} + +src_compile() { + local binmod _s x + local ctags_d="node_modules/symbols-view/vendor" + local jobs=$(makeopts_jobs) gypopts + + gypopts="--verbose" + + if [[ ${MAKEOPTS} == *-j* && ${jobs} != 999 ]]; then + gypopts+=" --jobs ${jobs}" + fi + + mkdir -p "${S}/build/modules/" || die + + for binmod in ${BINMODS}; do + einfo "Building ${binmod}..." + _s="${WORKDIR}/$(package_dir ${binmod})" + cd "${_s}" || die + enodegyp_atom ${gypopts} build + x=${binmod##node-} + mkdir -p "${S}/build/modules/${x}" || die + cp build/Release/*.node "${S}/build/modules/${x}" || die + done + + # Put compiled binary modules in place + _fix_binmods "${S}/build" "app" + _fix_binmods "${S}/usr/share/atom/resources" "app" + + # Remove non-Linux vendored ctags binaries + rm "${S}/build/app/${ctags_d}/ctags-darwin" \ + "${S}/build/app/${ctags_d}/ctags-win32.exe" || die + + # Re-pack app.asar + # Keep unpack rules in sync with build/tasks/generate-asar-task.coffee + cd "${S}/build" || die + x="--unpack={*.node,ctags-config,ctags-linux,**/node_modules/spellchecker/**,**/resources/atom.png}" + easar pack "${x}" "app" "app.asar" + cd "${S}" || die +} + +_fix_binmods() { + local _dir="${2}" _prefix="${1}" path relpath modpath mod depth link f d + local cruft + + (find "${_prefix}/${_dir}" -name '*.node' -print || die) \ + | while IFS= read -r path; do + f=$(basename "${path}") + d=$(dirname "${path}") + relpath=${path#${_prefix}} + relpath=${relpath##/} + relpath=${relpath#W${_dir}} + modpath=$(dirname ${relpath}) + modpath=${modpath%build/Release} + mod=$(basename ${modpath}) + + # must copy here as symlinks will cause the module loading to fail + cp -f "${S}/build/modules/${mod}/${f}" "${path}" || die + cruft=$(find "${d}" -name '*.a' -print) + if [[ -n "${cruft}" ]]; then + rm ${cruft} || die + fi + done +} + +_fix_executables() { + local _dir="${1}" _node_sb="#!$(get_electron_dir)"/node + + (find -L "${ED}/${_dir}" -maxdepth 1 -mindepth 1 -type f -print || die) \ + | while IFS= read -r f; do + IFS= read -r shebang < "${f}" + + if [[ ${shebang} == '#!'* ]]; then + fperms +x "${f#${ED}}" + if [[ "${shebang}" == "#!/usr/bin/env node" || "${shebang}" == "#!/usr/bin/node" ]]; then + einfo "Fixing node shebang in ${f#${ED}}" + sed --follow-symlinks -i \ + -e "1s:${shebang}$:${_node_sb}:" "${f}" || die + fi + fi + done || die +} + +src_install() { + local install_dir="$(get_install_dir)" + local suffix="$(get_install_suffix)" + local ctags_d="node_modules/symbols-view/vendor" + + cd "${S}" || die + + # Replace vendored ctags with a symlink to system ctags + rm "${S}/build/app.asar.unpacked/${ctags_d}/ctags-linux" || die + ln -s "/usr/bin/ctags" \ + "${S}/build/app.asar.unpacked/${ctags_d}/ctags-linux" || die + + insinto "${install_dir}" + + doins build/app.asar + doins -r build/app.asar.unpacked + doins -r usr/share/atom/resources/app + + insinto /usr/share/applications/ + newins usr/share/applications/atom.desktop "atom${suffix}.desktop" + + insinto /usr/share/icons/ + doins -r usr/share/icons/hicolor + + exeinto "${install_dir}" + newexe usr/share/atom/resources/app/atom.sh atom + insinto /usr/share/licenses/"${PN}${suffix}" + doins usr/share/atom/resources/LICENSE.md + dosym "${install_dir}/atom" "/usr/bin/atom${suffix}" + dosym "${install_dir}/app/apm/bin/apm" "/usr/bin/apm${suffix}" + + _fix_executables "${install_dir}/app/apm/bin" + _fix_executables "${install_dir}/app/apm/node_modules/.bin" + _fix_executables "${install_dir}/app/apm/node_modules/npm/bin" + _fix_executables "${install_dir}/app/apm/node_modules/npm/bin/node-gyp-bin" + _fix_executables "${install_dir}/app/apm/node_modules/node-gyp/bin" +} diff --git a/app-editors/atom/files/atom-marker-layer.patch b/app-editors/atom/files/atom-marker-layer.patch new file mode 100644 index 000000000000..2d797aa293da --- /dev/null +++ b/app-editors/atom/files/atom-marker-layer.patch @@ -0,0 +1,11 @@ +--- a/build/app/node_modules/text-buffer/lib/marker-layer.js +--- b/build/app/node_modules/text-buffer/lib/marker-layer.js +@@ -192,7 +192,7 @@ + return function(markerId) { + var marker; + marker = _this.markersById[markerId]; +- if (!marker.matchesParams(params)) { ++ if (marker == null || !marker.matchesParams(params)) { + return; + } + return result.push(marker); diff --git a/app-emulation/xen-pvgrub/Manifest b/app-emulation/xen-pvgrub/Manifest index e636ec82246d..4fa7e6eb3dd5 100644 --- a/app-emulation/xen-pvgrub/Manifest +++ b/app-emulation/xen-pvgrub/Manifest @@ -4,5 +4,6 @@ DIST newlib-1.16.0.tar.gz 12024353 SHA256 db426394965c48c1d29023e1cc6d965ea6b9a9 DIST pciutils-2.2.9.tar.bz2 212265 SHA256 f60ae61cfbd5da1d849d0beaa21f593c38dac9359f0b3ddc612f447408265b24 SHA512 2b3d98d027e46d8c08037366dde6f0781ca03c610ef2b380984639e4ef39899ed8d8b8e4cd9c9dc54df101279b95879bd66bfd4d04ad07fef41e847ea7ae32b5 WHIRLPOOL ce801947fcf7ba0b56710029f25e746d3e03a80699af9d3570efcd417b12b546264f286b2e78b1402cca766c08e35bdd0ff0a692ab4ad419295f00bcfe91130e DIST polarssl-1.1.4-gpl.tgz 611340 SHA256 2d29fd04a0d0ba29dae6bd29fb418944c08d3916665dcca74afb297ef37584b6 SHA512 88da614e4d3f4409c4fd3bb3e44c7587ba051e3fed4e33d526069a67e8180212e1ea22da984656f50e290049f60ddca65383e5983c0f8884f648d71f698303ad WHIRLPOOL 39448c00dda142a836a78381b446c7b586272a44d8afc867a7ea702228f105bb2adffe757bd6c23af090cff64ef32e7af0c373dccc5145ff4c11552cf3f28383 DIST xen-4.7.1.tar.gz 20706864 SHA256 e87f4b0575e78657ee23d31470a15ecf1ce8c3a92a771cda46bbcd4d0d671ffe SHA512 eb03244f5fa7b54402fcc1d38f1e69c0ea4536d5ab2f9859b41b5e94920ad9db20fb146e3c3d3635e9ca1d12e93ce0429e57f24bf53d4a2c4b69babc76ec724e WHIRLPOOL 5d7ba29ea58bdedb6a237f7cb1c0aacf361dc35ebb07ec8e55773e07b1f38c1b151615b526e14daeca7c2db235114bde0b6d124219e8818c6e529873b5151fec +DIST xen-4.7.2.tar.gz 20714281 SHA256 61494a56d9251e2108080f95b0dc8e3d175f1ba4da34603fc07b91cfebf358d5 SHA512 8f447e7feffec81fea5b5a4098968b8b8cebc6989e7b6a845413317644d5d328d6f12181d09266366200878ab6a29ab34c7235c1af7b55463a3fdaea40ee1500 WHIRLPOOL 27f3fd88846724e03bf9bb53133046cb79139950c9162dd9c9a85798e169259f73dc2fe4212e750ce9a8fd1d0abd99f1f76108faceb7bf1934ce0495377ee756 DIST xen-4.8.0.tar.gz 22499917 SHA256 1e15c713ab7ba3bfda8b4a285ed973529364fd1100e6dd5a61f29583dc667b04 SHA512 70b95553f9813573b12e52999a4df8701dec430f23c36a8dc70d25a46bb4bc9234e5b7feb74a04062af4c8d6b6bcfe947d90b2b172416206812e54bac9797454 WHIRLPOOL 1296c25a05e3ab81730a2587ea1c07c7c022f05cfefc580224185c8d5fc9853531031c1292f69eff944ae2752492c4b95f13e160be3c449a7626aeadf1a21102 DIST zlib-1.2.3.tar.gz 496597 SHA256 1795c7d067a43174113fdf03447532f373e1c6c57c08d61d9e4e9be5e244b05e SHA512 021b958fcd0d346c4ba761bcf0cc40f3522de6186cf5a0a6ea34a70504ce9622b1c2626fce40675bc8282cf5f5ade18473656abc38050f72f5d6480507a2106e WHIRLPOOL 8fd7010faf6a48a9c7ff4bcfe3ce4fe9061eb541259e0a2d0def214e8c4becf2b22e8d6f96f65ca827abffeaa9d96e95ed2402844f99835f7b079fc9f3e84276 diff --git a/app-emulation/xen-pvgrub/xen-pvgrub-4.7.2.ebuild b/app-emulation/xen-pvgrub/xen-pvgrub-4.7.2.ebuild new file mode 100644 index 000000000000..158130ccab05 --- /dev/null +++ b/app-emulation/xen-pvgrub/xen-pvgrub-4.7.2.ebuild @@ -0,0 +1,160 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) +PYTHON_REQ_USE='xml,threads' + +inherit flag-o-matic eutils multilib python-single-r1 toolchain-funcs + +XEN_EXTFILES_URL="http://xenbits.xensource.com/xen-extfiles" +LIBPCI_URL=ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci +GRUB_URL=mirror://gnu-alpha/grub + +UPSTREAM_VER= +[[ -n ${UPSTREAM_VER} ]] && \ + UPSTREAM_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${P/-tools/}-upstream-patches-${UPSTREAM_VER}.tar.xz" + +SRC_URI=" + http://bits.xensource.com/oss-xen/release/${PV}/xen-${PV}.tar.gz + $GRUB_URL/grub-0.97.tar.gz + $XEN_EXTFILES_URL/zlib-1.2.3.tar.gz + $LIBPCI_URL/pciutils-2.2.9.tar.bz2 + $XEN_EXTFILES_URL/lwip-1.3.0.tar.gz + $XEN_EXTFILES_URL/newlib/newlib-1.16.0.tar.gz + $XEN_EXTFILES_URL/polarssl-1.1.4-gpl.tgz + ${UPSTREAM_PATCHSET_URI}" + +S="${WORKDIR}/xen-${PV}" + +DESCRIPTION="allows to boot Xen domU kernels from a menu.lst laying inside guest filesystem" +HOMEPAGE="http://xen.org/" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="custom-cflags" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +DEPEND="sys-devel/gettext + sys-devel/bin86 + sys-apps/texinfo + x11-libs/pixman" + +RDEPEND=">=app-emulation/xen-tools-${PV}" + +pkg_setup() { + python-single-r1_pkg_setup +} + +retar-externals() { + # Purely to unclutter src_prepare + local set="grub-0.97.tar.gz lwip-1.3.0.tar.gz newlib-1.16.0.tar.gz polarssl-1.1.4-gpl.tgz zlib-1.2.3.tar.gz" + + # epatch can't patch in $WORKDIR, requires a sed; Bug #455194. Patchable, but sed informative + sed -e s':AR=${AR-"ar rc"}:AR=${AR-"ar"}:' \ + -i "${WORKDIR}"/zlib-1.2.3/configure + sed -e 's:^AR=ar rc:AR=ar:' \ + -e s':$(AR) $@:$(AR) rc $@:' \ + -i "${WORKDIR}"/zlib-1.2.3/{Makefile,Makefile.in} + einfo "zlib Makefile edited" + + cd "${WORKDIR}" + tar czp zlib-1.2.3 -f zlib-1.2.3.tar.gz + tar czp grub-0.97 -f grub-0.97.tar.gz + tar czp lwip -f lwip-1.3.0.tar.gz + tar czp newlib-1.16.0 -f newlib-1.16.0.tar.gz + tar czp polarssl-1.1.4 -f polarssl-1.1.4-gpl.tgz + mv $set "${S}"/stubdom/ + einfo "tarballs moved to source" +} + +src_prepare() { + # Upstream's patchset + if [[ -n ${UPSTREAM_VER} ]]; then + einfo "Try to apply Xen Upstream patch set" + EPATCH_SUFFIX="patch" \ + EPATCH_FORCE="yes" \ + EPATCH_OPTS="-p1" \ + epatch "${WORKDIR}"/patches-upstream + fi + + # if the user *really* wants to use their own custom-cflags, let them + if use custom-cflags; then + einfo "User wants their own CFLAGS - removing defaults" + # try and remove all the default custom-cflags + find "${S}" -name Makefile -o -name Rules.mk -o -name Config.mk -exec sed \ + -e 's/CFLAGS\(.*\)=\(.*\)-O3\(.*\)/CFLAGS\1=\2\3/' \ + -e 's/CFLAGS\(.*\)=\(.*\)-march=i686\(.*\)/CFLAGS\1=\2\3/' \ + -e 's/CFLAGS\(.*\)=\(.*\)-fomit-frame-pointer\(.*\)/CFLAGS\1=\2\3/' \ + -e 's/CFLAGS\(.*\)=\(.*\)-g3*\s\(.*\)/CFLAGS\1=\2 \3/' \ + -e 's/CFLAGS\(.*\)=\(.*\)-O2\(.*\)/CFLAGS\1=\2\3/' \ + -i {} \; + fi + + # Patch the unmergeable newlib, fix most of the leftover gcc QA issues + cp "${FILESDIR}"/newlib-implicits.patch stubdom || die + + # Patch stubdom/Makefile to patch insource newlib & prevent internal downloading + epatch "${FILESDIR}"/${PN/-pvgrub/}-4.3-externals.patch + + # fix jobserver in Makefile + epatch "${FILESDIR}"/${PN}-4.2-jserver.patch + + #Substitute for internal downloading. pciutils copied only due to the only .bz2 + cp "${DISTDIR}"/pciutils-2.2.9.tar.bz2 ./stubdom/ || die "pciutils not copied to stubdom" + retar-externals || die "re-tar procedure failed" + + epatch_user +} + +src_configure() { + local myconf="--prefix=${PREFIX}/usr \ + --libdir=${PREFIX}/usr/$(get_libdir) \ + --libexecdir=${PREFIX}/usr/libexec \ + --disable-werror \ + --disable-xen" + + econf ${myconf} +} + +src_compile() { + use custom-cflags || unset CFLAGS + if test-flag-CC -fno-strict-overflow; then + append-flags -fno-strict-overflow + fi + + emake CC="$(tc-getCC)" LD="$(tc-getLD)" AR="$(tc-getAR)" -C tools/include + + if use x86; then + emake CC="$(tc-getCC)" LD="$(tc-getLD)" AR="$(tc-getAR)" \ + XEN_TARGET_ARCH="x86_32" -C stubdom pv-grub + elif use amd64; then + emake CC="$(tc-getCC)" LD="$(tc-getLD)" AR="$(tc-getAR)" \ + XEN_TARGET_ARCH="x86_64" -C stubdom pv-grub + if has_multilib_profile; then + multilib_toolchain_setup x86 + emake CC="$(tc-getCC)" AR="$(tc-getAR)" \ + XEN_TARGET_ARCH="x86_32" -C stubdom pv-grub + fi + fi +} + +src_install() { + if use x86; then + emake XEN_TARGET_ARCH="x86_32" DESTDIR="${D}" -C stubdom install-grub + fi + if use amd64; then + emake XEN_TARGET_ARCH="x86_64" DESTDIR="${D}" -C stubdom install-grub + if has_multilib_profile; then + emake XEN_TARGET_ARCH="x86_32" DESTDIR="${D}" -C stubdom install-grub + fi + fi +} + +pkg_postinst() { + elog "Official Xen Guide and the offical wiki page:" + elog "https://wiki.gentoo.org/wiki/Xen" + elog "http://wiki.xen.org/wiki/Main_Page" +} diff --git a/app-emulation/xen-tools/Manifest b/app-emulation/xen-tools/Manifest index 715560e77e66..a586fddbbb6c 100644 --- a/app-emulation/xen-tools/Manifest +++ b/app-emulation/xen-tools/Manifest @@ -3,7 +3,11 @@ DIST seabios-1.10.0.tar.gz 588213 SHA256 8976fc4c1ebcda66ac96689762247dfc99115a5 DIST seabios-1.8.2.tar.gz 538497 SHA256 f59479307fdae840de398b75aacb2333c8eba24a5964d68c77e32ca6c987ee61 SHA512 798d222d5f5725a805cde9e6000b5ce714d0551fd4a3c2642cc6e77b2bdab1a9e239939a358a23bbe0e00112f5ad70696c87d20b90655463c835541fc04e1a00 WHIRLPOOL 9cda0ad502a59dd718c543b759ac3fcf5acb4adee70c3da9bfea95ab188415acf6425827de77f45421ec3be8fd9e0c37fb486e62828217ba3e83f88d942a3f4a DIST xen-4.7.1-upstream-patches-0.tar.xz 16420 SHA256 cb4724fedadc408ec390f99e9928a44ec75e793fb55cb97793f09980855b6a32 SHA512 79e117c48c6cc3d5783c818218ac11ec494735ce89755b5e263a64c23fb1f0a425bc65b567a24ce2e348b6e3839b26133c7e2c36411e5cc7acb54b855149dfbe WHIRLPOOL 982165da62cbb28cd72d32662c366ca7dac91a511b356eb58bced4b4af5cbc0d94c7e280a2400e5d9c92938d2afee86abd7c688926c2b9cb191d4554be828844 DIST xen-4.7.1.tar.gz 20706864 SHA256 e87f4b0575e78657ee23d31470a15ecf1ce8c3a92a771cda46bbcd4d0d671ffe SHA512 eb03244f5fa7b54402fcc1d38f1e69c0ea4536d5ab2f9859b41b5e94920ad9db20fb146e3c3d3635e9ca1d12e93ce0429e57f24bf53d4a2c4b69babc76ec724e WHIRLPOOL 5d7ba29ea58bdedb6a237f7cb1c0aacf361dc35ebb07ec8e55773e07b1f38c1b151615b526e14daeca7c2db235114bde0b6d124219e8818c6e529873b5151fec +DIST xen-4.7.2-upstream-patches-0.tar.xz 45944 SHA256 e7783bc9adc939167eaef91e96fda506d2d52815f709b31952229891357e6b67 SHA512 6d4e23fb5a63fd191f893e31194b6397a394956846f356ae0119c656a92e7e22296e728286a98109b64a5736241b2317969f54915e7b487b4d7a64aae534614c WHIRLPOOL e185ce40085559d00a302eae8814b4c013817a5e4c0a2a9c56a6b4983b38e7103e44d0407fa78ea79fdbe8eefde346b994812851d8b4bad0bf08cb5721507c37 +DIST xen-4.7.2.tar.gz 20714281 SHA256 61494a56d9251e2108080f95b0dc8e3d175f1ba4da34603fc07b91cfebf358d5 SHA512 8f447e7feffec81fea5b5a4098968b8b8cebc6989e7b6a845413317644d5d328d6f12181d09266366200878ab6a29ab34c7235c1af7b55463a3fdaea40ee1500 WHIRLPOOL 27f3fd88846724e03bf9bb53133046cb79139950c9162dd9c9a85798e169259f73dc2fe4212e750ce9a8fd1d0abd99f1f76108faceb7bf1934ce0495377ee756 +DIST xen-4.8.0-upstream-patches-0.tar.xz 78984 SHA256 278603b1b739e94099184f7266c77806595bf53c7236267f32b9f8fad9ebe76e SHA512 1466e33705f54e3799412298917485bb8acb6847dbacb61cfb394415b6b3bc51aed9317928e948161e00c8134fcc0a4b07361df3dec76b1038aa41e3b1b63b3a WHIRLPOOL 4c3a1524db00be1c475fd84e2148143bc4f3be2987e7d785bee880603c72d6bdb417acf1f1935c2b53b369d8428eed736b92644f6ce62e05ad16479ecca18410 DIST xen-4.8.0.tar.gz 22499917 SHA256 1e15c713ab7ba3bfda8b4a285ed973529364fd1100e6dd5a61f29583dc667b04 SHA512 70b95553f9813573b12e52999a4df8701dec430f23c36a8dc70d25a46bb4bc9234e5b7feb74a04062af4c8d6b6bcfe947d90b2b172416206812e54bac9797454 WHIRLPOOL 1296c25a05e3ab81730a2587ea1c07c7c022f05cfefc580224185c8d5fc9853531031c1292f69eff944ae2752492c4b95f13e160be3c449a7626aeadf1a21102 DIST xen-gentoo-patches-9.tar.xz 27456 SHA256 67c410d12ef4628a8c0a931e5868b425f2eb4b2f0e307304a75384cbe509734b SHA512 9a797be9dd2392c34b3f6561c2274e116b4f5b114f4520dbbd0b51818c774479ceabb45aa916f93c1a2bc49787f4ca6e6c83bc743baa6bdeef91d77276b20f36 WHIRLPOOL c41cde532726bb55acd05d558b35d575b229d2ee64eba7438f7b196df313f0e44154148c1e47bf6e8c810667b3b237bcfa410371b4bb6f097b981f6b2637ead3 DIST xen-ovmf-patches-2.tar.xz 4344 SHA256 495d61d718440057f8b0b54fb57061450dd764c6e87fe5f8bda1785bcddba770 SHA512 0bdc83029a01b613f5c1ca029bd45aebe211c332f09db91a0cc7d6b6f85a81dbbfdc20c62f0d20e973ee41b155a6551a4fad518cb792e1d508bf070e23d6a1d3 WHIRLPOOL 8346d68fa5d2a8e8a5c007b55e2b85cf48df045cc8c4818f09c756d28a52dd856671f37b4a53478e9b96ca9d2eca0c67fd15f009a94d1d2dfed8e83e596d9633 DIST xen-security-patches-23.tar.xz 8280 SHA256 caab81e99c4ec7128119141cb344ce60137c019ffc546ec76c25a7e505063f08 SHA512 921730acde0c6f9a4e62fc22805e76f9c2fe5459dd126a2bda2e9cbe615f52ccbcc0241021cf128b2e8dd870ba5fba8b193005142db01ecf55612b276ca8866b WHIRLPOOL 0634d8b97897de8878190537a727afbc0fdf7dd197d34f1bf443073fe5af2aacf3d93b36cd407ec21561871fa9eb0efc6615c34fae1368e7d7a1deef96c31e6b +DIST xen-security-patches-25.tar.xz 9208 SHA256 ceaa520d4d98ab7b6ce5b58c380499372cb513dda0c8236106cdf878385d4458 SHA512 18539c1f42bc95a06f7b06855614fafb4ed7c07a145d9ab90e02954ba405d21fc4c379908e3233ddfb85ccaa04515b261ac4bbf3987ce00e4479158f03edd917 WHIRLPOOL 4cff34c29a5c38e6a5bd0d4f4fe89d8daf944740934b05cd61f4b8a345ddb4d8a8b2de6db27a723154169e3f28d5b34a43eddd08c909cfa3d6d5aee26fcae693 diff --git a/app-emulation/xen-tools/files/gentoo-patches.conf b/app-emulation/xen-tools/files/gentoo-patches.conf index 8c7d58ef2836..853d62965882 100644 --- a/app-emulation/xen-tools/files/gentoo-patches.conf +++ b/app-emulation/xen-tools/files/gentoo-patches.conf @@ -97,44 +97,24 @@ _gx040=" 0001-docs-Clarify-the-expected-behaviour-of-zero-length-r.patch 0002-tools-libxc-Tolerate-zero-length-records-in-migratio.patch 0004-tools-python-Adjust-migration-v2-library-to-warn-abo.patch" -# xen-tools-4.6.4 patches set -_gpv_xen_tools_464_0=" -${_gx008} ${_gx021} -${_gx022} ${_gx017} ${_gx031} -${_gx027} ${_gx032} -${_gx028} ${_gx029} ${_gx036} - -" -_gpv_xen_tools_464_1=" -${_gx008} ${_gx021} -${_gx022} ${_gx017} ${_gx031} -${_gx027} ${_gx032} -${_gx028} ${_gx029} ${_gx036} -${_gx037} -" - # xen-tools-4.7.1 patches set -_gpv_xen_tools_471_0=" -${_gx008} ${_gx021} -${_gx022} ${_gx017} ${_gx031} -${_gx027} ${_gx032} -${_gx028} ${_gx029} ${_gx036} -" -_gpv_xen_tools_471_1=" +_gpv_xen_tools_471_2=" ${_gx008} ${_gx021} ${_gx022} ${_gx017} ${_gx031} ${_gx027} ${_gx032} ${_gx028} ${_gx029} ${_gx036} -${_gx037} +${_gx037} ${_gx040} " -_gpv_xen_tools_471_2=" +# xen-tools-4.7.2 patches set +_gpv_xen_tools_472_0=" ${_gx008} ${_gx021} ${_gx022} ${_gx017} ${_gx031} ${_gx027} ${_gx032} ${_gx028} ${_gx029} ${_gx036} ${_gx037} ${_gx040} " + # xen-tools-4.8.0 patches set _gpv_xen_tools_480_0=" ${_gx008} diff --git a/app-emulation/xen-tools/xen-tools-4.7.2.ebuild b/app-emulation/xen-tools/xen-tools-4.7.2.ebuild new file mode 100644 index 000000000000..6e09f2935f88 --- /dev/null +++ b/app-emulation/xen-tools/xen-tools-4.7.2.ebuild @@ -0,0 +1,459 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) +PYTHON_REQ_USE='ncurses,xml,threads' + +inherit eutils bash-completion-r1 flag-o-matic multilib python-single-r1 toolchain-funcs versionator + +MY_PV=${PV/_/-} +MAJOR_V="$(get_version_component_range 1-2)" + +if [[ $PV == *9999 ]]; then + inherit git-r3 + KEYWORDS="amd64 x86" + REPO="xen.git" + EGIT_REPO_URI="git://xenbits.xen.org/${REPO}" + S="${WORKDIR}/${REPO}" +else + KEYWORDS="~amd64 ~arm ~arm64 ~x86" + UPSTREAM_VER=0 + SECURITY_VER=25 + # xen-tools's gentoo patches tarball + GENTOO_VER=9 + # xen-tools's gentoo patches version which apply to this specific ebuild + GENTOO_GPV=0 + # xen-tools ovmf's patches + OVMF_VER=2 + + SEABIOS_VER=1.8.2 + # OVMF upstream 52a99493cce88a9d4ec8a02d7f1bd1a1001ce60d + OVMF_PV=20151110 + + [[ -n ${UPSTREAM_VER} ]] && \ + UPSTREAM_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${P/-tools/}-upstream-patches-${UPSTREAM_VER}.tar.xz" + [[ -n ${SECURITY_VER} ]] && \ + SECURITY_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${PN/-tools}-security-patches-${SECURITY_VER}.tar.xz" + [[ -n ${GENTOO_VER} ]] && \ + GENTOO_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${PN/-tools}-gentoo-patches-${GENTOO_VER}.tar.xz" + [[ -n ${OVMF_VER} ]] && \ + OVMF_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${PN/-tools}-ovmf-patches-${OVMF_VER}.tar.xz" + + SRC_URI="http://bits.xensource.com/oss-xen/release/${MY_PV}/xen-${MY_PV}.tar.gz + http://code.coreboot.org/p/seabios/downloads/get/seabios-${SEABIOS_VER}.tar.gz + https://dev.gentoo.org/~dlan/distfiles/seabios-${SEABIOS_VER}.tar.gz + ovmf? ( https://dev.gentoo.org/~dlan/distfiles/ovmf-${OVMF_PV}.tar.bz2 + ${OVMF_PATCHSET_URI} ) + ${UPSTREAM_PATCHSET_URI} + ${SECURITY_PATCHSET_URI} + ${GENTOO_PATCHSET_URI}" + + S="${WORKDIR}/xen-${MY_PV}" +fi + +DESCRIPTION="Xen tools including QEMU and xl" +HOMEPAGE="http://xen.org/" +DOCS=( README docs/README.xen-bugtool ) + +LICENSE="GPL-2" +SLOT="0/${MAJOR_V}" +# Inclusion of IUSE ocaml on stabalizing requires maintainer of ocaml to (get off his hands and) make +# >=dev-lang/ocaml-4 stable +# Masked in profiles/eapi-5-files instead +IUSE="api custom-cflags debug doc flask hvm +qemu ocaml ovmf +qemu-traditional +pam python pygrub screen sdl static-libs system-qemu system-seabios" + +REQUIRED_USE=" + ${PYTHON_REQUIRED_USE} + pygrub? ( python ) + ovmf? ( hvm ) + ^^ ( qemu system-qemu )" + +COMMON_DEPEND=" + dev-libs/lzo:2 + dev-libs/glib:2 + dev-libs/yajl + dev-libs/libaio + dev-libs/libgcrypt:0 + sys-libs/zlib +" + +DEPEND="${COMMON_DEPEND} + dev-python/lxml[${PYTHON_USEDEP}] + x86? ( sys-devel/dev86 + sys-power/iasl ) + pam? ( dev-python/pypam[${PYTHON_USEDEP}] ) + ${PYTHON_DEPS} + api? ( dev-libs/libxml2 + net-misc/curl ) + ovmf? ( + !arm? ( dev-lang/nasm ) + $(python_gen_impl_dep sqlite) + ) + !amd64? ( >=sys-apps/dtc-1.4.0 ) + amd64? ( sys-devel/bin86 + system-seabios? ( sys-firmware/seabios ) + sys-firmware/ipxe + sys-devel/dev86 + sys-power/iasl ) + dev-lang/perl + app-misc/pax-utils + doc? ( + app-doc/doxygen + dev-python/markdown[${PYTHON_USEDEP}] + dev-tex/latex2html[png,gif] + media-gfx/graphviz + dev-tex/xcolor + media-gfx/transfig + dev-texlive/texlive-latexextra + virtual/latex-base + dev-tex/latexmk + dev-texlive/texlive-latex + dev-texlive/texlive-pictures + dev-texlive/texlive-latexrecommended + ) + hvm? ( x11-proto/xproto + !net-libs/libiscsi ) + qemu? ( + x11-libs/pixman + sdl? ( media-libs/libsdl[X] ) + ) + system-qemu? ( app-emulation/qemu[xen] ) + ocaml? ( dev-ml/findlib + >=dev-lang/ocaml-4 )" + +RDEPEND="${COMMON_DEPEND} + sys-apps/iproute2[-minimal] + net-misc/bridge-utils + screen? ( + app-misc/screen + app-admin/logrotate + )" + +# hvmloader is used to bootstrap a fully virtualized kernel +# Approved by QA team in bug #144032 +QA_WX_LOAD="usr/lib/xen/boot/hvmloader + usr/share/qemu-xen/qemu/s390-ccw.img" + +RESTRICT="test" + +pkg_setup() { + python_setup + export "CONFIG_LOMOUNT=y" + + #bug 522642, disable compile tools/tests + export "CONFIG_TESTS=n" + + if has_version dev-libs/libgcrypt:0; then + export "CONFIG_GCRYPT=y" + fi + + if [[ -z ${XEN_TARGET_ARCH} ]] ; then + if use x86 && use amd64; then + die "Confusion! Both x86 and amd64 are set in your use flags!" + elif use x86; then + export XEN_TARGET_ARCH="x86_32" + elif use amd64 ; then + export XEN_TARGET_ARCH="x86_64" + elif use arm; then + export XEN_TARGET_ARCH="arm32" + elif use arm64; then + export XEN_TARGET_ARCH="arm64" + else + die "Unsupported architecture!" + fi + fi +} + +src_prepare() { + # Upstream's patchset + if [[ -n ${UPSTREAM_VER} ]]; then + einfo "Try to apply Xen Upstream patch set" + EPATCH_SUFFIX="patch" \ + EPATCH_FORCE="yes" \ + EPATCH_OPTS="-p1" \ + epatch "${WORKDIR}"/patches-upstream + fi + + # Security patchset + if [[ -n ${SECURITY_VER} ]]; then + einfo "Try to apply Xen Security patch set" + # apply main xen patches + # Two parallel systems, both work side by side + # Over time they may concdense into one. This will suffice for now + EPATCH_SUFFIX="patch" + EPATCH_FORCE="yes" + + source "${WORKDIR}"/patches-security/${PV}.conf + + for i in ${XEN_SECURITY_MAIN}; do + epatch "${WORKDIR}"/patches-security/xen/$i + done + + # apply qemu-xen/upstream patches + pushd "${S}"/tools/qemu-xen/ > /dev/null + for i in ${XEN_SECURITY_QEMUU}; do + epatch "${WORKDIR}"/patches-security/qemuu/$i + done + popd > /dev/null + + # apply qemu-traditional patches + pushd "${S}"/tools/qemu-xen-traditional/ > /dev/null + for i in ${XEN_SECURITY_QEMUT}; do + epatch "${WORKDIR}"/patches-security/qemut/$i + done + popd > /dev/null + fi + + # move before Gentoo patch, one patch should apply to seabios, to fix gcc-4.5.x build err + mv ../seabios-${SEABIOS_VER} tools/firmware/seabios-dir-remote || die + pushd tools/firmware/ > /dev/null + ln -s seabios-dir-remote seabios-dir || die + popd > /dev/null + + # Gentoo's patchset + if [[ -n ${GENTOO_VER} && -n ${GENTOO_GPV} ]]; then + einfo "Try to apply Gentoo specific patch set" + source "${FILESDIR}"/gentoo-patches.conf + _gpv=_gpv_${PN/-/_}_${PV//./}_${GENTOO_GPV} + for i in ${!_gpv}; do + EPATCH_SUFFIX="patch" \ + EPATCH_FORCE="yes" \ + epatch "${WORKDIR}"/patches-gentoo/$i + done + fi + + # Ovmf's patchset + if use ovmf; then + if [[ -n ${OVMF_VER} ]];then + einfo "Try to apply Ovmf patch set" + pushd "${WORKDIR}"/ovmf-*/ > /dev/null + EPATCH_SUFFIX="patch" \ + EPATCH_FORCE="yes" \ + EPATCH_OPTS="-p1" \ + epatch "${WORKDIR}"/patches-ovmf + popd > /dev/null + fi + mv ../ovmf-${OVMF_PV} tools/firmware/ovmf-dir-remote || die + fi + + mv tools/qemu-xen/qemu-bridge-helper.c tools/qemu-xen/xen-bridge-helper.c || die + + # Fix texi2html build error with new texi2html, qemu.doc.html + sed -i -e "/texi2html -monolithic/s/-number//" tools/qemu-xen-traditional/Makefile || die + + use api || sed -e "/SUBDIRS-\$(LIBXENAPI_BINDINGS) += libxen/d" -i tools/Makefile || die + sed -e 's:$(MAKE) PYTHON=$(PYTHON) subdirs-$@:LC_ALL=C "$(MAKE)" PYTHON=$(PYTHON) subdirs-$@:' \ + -i tools/firmware/Makefile || die + + # Drop .config, fixes to gcc-4.6 + sed -e '/-include $(XEN_ROOT)\/.config/d' -i Config.mk || die "Couldn't drop" + + # if the user *really* wants to use their own custom-cflags, let them + if use custom-cflags; then + einfo "User wants their own CFLAGS - removing defaults" + + # try and remove all the default cflags + find "${S}" \( -name Makefile -o -name Rules.mk -o -name Config.mk \) \ + -exec sed \ + -e 's/CFLAGS\(.*\)=\(.*\)-O3\(.*\)/CFLAGS\1=\2\3/' \ + -e 's/CFLAGS\(.*\)=\(.*\)-march=i686\(.*\)/CFLAGS\1=\2\3/' \ + -e 's/CFLAGS\(.*\)=\(.*\)-fomit-frame-pointer\(.*\)/CFLAGS\1=\2\3/' \ + -e 's/CFLAGS\(.*\)=\(.*\)-g3*\s\(.*\)/CFLAGS\1=\2 \3/' \ + -e 's/CFLAGS\(.*\)=\(.*\)-O2\(.*\)/CFLAGS\1=\2\3/' \ + -i {} + || die "failed to re-set custom-cflags" + else + unset CFLAGS + unset LDFLAGS + unset ASFLAGS + unset CPPFLAGS + fi + + if ! use pygrub; then + sed -e '/^SUBDIRS-y += pygrub/d' -i tools/Makefile || die + fi + + if ! use python; then + sed -e '/^SUBDIRS-y += python$/d' -i tools/Makefile || die + fi + + if ! use hvm; then + sed -e '/SUBDIRS-$(CONFIG_X86) += firmware/d' -i tools/Makefile || die + # Bug 351648 + elif ! use x86 && ! has x86 $(get_all_abis); then + mkdir -p "${WORKDIR}"/extra-headers/gnu || die + touch "${WORKDIR}"/extra-headers/gnu/stubs-32.h || die + export CPATH="${WORKDIR}"/extra-headers + fi + + if use qemu; then + if use sdl; then + sed -i -e "s:\$\$source/configure:\0 --enable-sdl:" \ + tools/Makefile || die + else + sed -i -e "s:\${QEMU_ROOT\:\-\.}/configure:\0 --disable-sdl:" \ + tools/qemu-xen-traditional/xen-setup || die + sed -i -e "s:\$\$source/configure:\0 --disable-sdl:" \ + tools/Makefile || die + fi + else + # Don't bother with qemu, only needed for fully virtualised guests + sed -e "s:install-tools\: tools/qemu-xen-traditional-dir:install-tools\: :g" -i Makefile || die + fi + + # Reset bash completion dir; Bug 472438 + sed -e "s:^BASH_COMPLETION_DIR ?= \$(CONFIG_DIR)/bash_completion.d:BASH_COMPLETION_DIR ?= $(get_bashcompdir):" \ + -i Config.mk || die + sed -i -e "/bash-completion/s/xl\.sh/xl/g" tools/libxl/Makefile || die + + # xencommons, Bug #492332, sed lighter weight than patching + sed -e 's:\$QEMU_XEN -xen-domid:test -e "\$QEMU_XEN" \&\& &:' \ + -i tools/hotplug/Linux/init.d/xencommons.in || die + + # respect multilib, usr/lib/libcacard.so.0.0.0 + sed -e "/^libdir=/s/\/lib/\/$(get_libdir)/" \ + -i tools/qemu-xen/configure || die + + #bug 518136, don't build 32bit exactuable for nomultilib profile + if [[ "${ARCH}" == 'amd64' ]] && ! has_multilib_profile; then + sed -i -e "/x86_emulator/d" tools/tests/Makefile || die + fi + + # use /var instead of /var/lib, consistat with previous ebuild + sed -i -e "/XEN_LOCK_DIR=/s/\$localstatedir/\/var/g" \ + m4/paths.m4 configure tools/configure || die + # use /run instead of /var/run + sed -i -e "/XEN_RUN_DIR=/s/\$localstatedir//g" \ + m4/paths.m4 configure tools/configure || die + + # uncomment lines in xl.conf + sed -e 's:^#autoballoon=:autoballoon=:' \ + -e 's:^#lockfile=:lockfile=:' \ + -e 's:^#vif.default.script=:vif.default.script=:' \ + -i tools/examples/xl.conf || die + + # Bug #575868 converted to a sed statement, typo of one char + sed -e "s:granter’s:granter's:" -i xen/include/public/grant_table.h || die + + epatch_user +} + +src_configure() { + local myconf="--prefix=${PREFIX}/usr \ + --libdir=${PREFIX}/usr/$(get_libdir) \ + --libexecdir=${PREFIX}/usr/libexec \ + --disable-werror \ + --disable-xen \ + --enable-tools \ + --enable-docs \ + $(use_enable pam) \ + $(use_enable api xenapi) \ + $(use_enable ovmf) \ + $(use_enable ocaml ocamltools) \ + --with-xenstored=$(usex ocaml 'oxenstored' 'xenstored') \ + " + + use system-seabios && myconf+=" --with-system-seabios=/usr/share/seabios/bios.bin" + use system-qemu && myconf+=" --with-system-qemu=/usr/bin/qemu-system-x86_64" + use amd64 && myconf+=" $(use_enable qemu-traditional)" + econf ${myconf} +} + +src_compile() { + export VARTEXFONTS="${T}/fonts" + local myopt + use debug && myopt="${myopt} debug=y" + + if test-flag-CC -fno-strict-overflow; then + append-flags -fno-strict-overflow + fi + + emake V=1 CC="$(tc-getCC)" LD="$(tc-getLD)" AR="$(tc-getAR)" RANLIB="$(tc-getRANLIB)" -C tools ${myopt} + + use doc && emake -C docs txt html + emake -C docs man-pages +} + +src_install() { + # Override auto-detection in the build system, bug #382573 + export INITD_DIR=/tmp/init.d + export CONFIG_LEAF_DIR=../tmp/default + + # Let the build system compile installed Python modules. + local PYTHONDONTWRITEBYTECODE + export PYTHONDONTWRITEBYTECODE + + emake DESTDIR="${ED}" DOCDIR="/usr/share/doc/${PF}" \ + XEN_PYTHON_NATIVE_INSTALL=y install-tools + + # Fix the remaining Python shebangs. + python_fix_shebang "${D}" + + # Remove RedHat-specific stuff + rm -rf "${D}"tmp || die + + if use doc; then + emake DESTDIR="${D}" DOCDIR="/usr/share/doc/${PF}" install-docs + + dohtml -r docs/ + docinto pdf + dodoc ${DOCS[@]} + [ -d "${D}"/usr/share/doc/xen ] && mv "${D}"/usr/share/doc/xen/* "${D}"/usr/share/doc/${PF}/html + fi + + rm -rf "${D}"/usr/share/doc/xen/ + doman docs/man?/* + + newconfd "${FILESDIR}"/xendomains.confd xendomains + newconfd "${FILESDIR}"/xenstored.confd xenstored + newconfd "${FILESDIR}"/xenconsoled.confd xenconsoled + newinitd "${FILESDIR}"/xendomains.initd-r2 xendomains + newinitd "${FILESDIR}"/xenstored.initd xenstored + newinitd "${FILESDIR}"/xenconsoled.initd xenconsoled + newinitd "${FILESDIR}"/xencommons.initd xencommons + newconfd "${FILESDIR}"/xencommons.confd xencommons + newinitd "${FILESDIR}"/xenqemudev.initd xenqemudev + newconfd "${FILESDIR}"/xenqemudev.confd xenqemudev + + if use screen; then + cat "${FILESDIR}"/xendomains-screen.confd >> "${D}"/etc/conf.d/xendomains || die + cp "${FILESDIR}"/xen-consoles.logrotate "${D}"/etc/xen/ || die + keepdir /var/log/xen-consoles + fi + + # For -static-libs wrt Bug 384355 + if ! use static-libs; then + rm -f "${D}"usr/$(get_libdir)/*.a "${D}"usr/$(get_libdir)/ocaml/*/*.a + fi + + # for xendomains + keepdir /etc/xen/auto + + # Remove files failing QA AFTER emake installs them, avoiding seeking absent files + find "${D}" \( -name openbios-sparc32 -o -name openbios-sparc64 \ + -o -name openbios-ppc -o -name palcode-clipper \) -delete || die +} + +pkg_postinst() { + elog "Official Xen Guide and the offical wiki page:" + elog "https://wiki.gentoo.org/wiki/Xen" + elog "http://wiki.xen.org/wiki/Main_Page" + elog "" + elog "Recommended to utilise the xencommons script to config sytem At boot" + elog "Add by use of rc-update on completion of the install" + + if ! use hvm; then + echo + elog "HVM (VT-x and AMD-V) support has been disabled. If you need hvm" + elog "support enable the hvm use flag." + elog "An x86 or amd64 system is required to build HVM support." + fi + + if use qemu; then + elog "The qemu-bridge-helper is renamed to the xen-bridge-helper in the in source" + elog "build of qemu. This allows for app-emulation/qemu to be emerged concurrently" + elog "with the qemu capable xen. It is up to the user to distinguish between and utilise" + elog "the qemu-bridge-helper and the xen-bridge-helper. File bugs of any issues that arise" + fi +} diff --git a/app-emulation/xen-tools/xen-tools-4.8.0-r5.ebuild b/app-emulation/xen-tools/xen-tools-4.8.0-r5.ebuild new file mode 100644 index 000000000000..1c568bfa2df7 --- /dev/null +++ b/app-emulation/xen-tools/xen-tools-4.8.0-r5.ebuild @@ -0,0 +1,455 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) +PYTHON_REQ_USE='ncurses,xml,threads' + +inherit eutils bash-completion-r1 flag-o-matic multilib python-single-r1 toolchain-funcs versionator + +MY_PV=${PV/_/-} +MAJOR_V="$(get_version_component_range 1-2)" + +if [[ $PV == *9999 ]]; then + inherit git-r3 + KEYWORDS="" + REPO="xen.git" + EGIT_REPO_URI="git://xenbits.xen.org/${REPO}" + S="${WORKDIR}/${REPO}" +else + KEYWORDS="~amd64 ~arm ~arm64 ~x86" + UPSTREAM_VER=0 + SECURITY_VER=25 + # xen-tools's gentoo patches tarball + GENTOO_VER=9 + # xen-tools's gentoo patches version which apply to this specific ebuild + GENTOO_GPV=1 + # xen-tools ovmf's patches + OVMF_VER=2 + + SEABIOS_VER=1.10.0 + # OVMF upstream 52a99493cce88a9d4ec8a02d7f1bd1a1001ce60d + OVMF_PV=20151110 + + [[ -n ${UPSTREAM_VER} ]] && \ + UPSTREAM_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${P/-tools/}-upstream-patches-${UPSTREAM_VER}.tar.xz" + [[ -n ${SECURITY_VER} ]] && \ + SECURITY_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${PN/-tools}-security-patches-${SECURITY_VER}.tar.xz" + [[ -n ${GENTOO_VER} ]] && \ + GENTOO_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${PN/-tools}-gentoo-patches-${GENTOO_VER}.tar.xz" + [[ -n ${OVMF_VER} ]] && \ + OVMF_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${PN/-tools}-ovmf-patches-${OVMF_VER}.tar.xz" + + SRC_URI="http://bits.xensource.com/oss-xen/release/${MY_PV}/xen-${MY_PV}.tar.gz + http://code.coreboot.org/p/seabios/downloads/get/seabios-${SEABIOS_VER}.tar.gz + https://dev.gentoo.org/~dlan/distfiles/seabios-${SEABIOS_VER}.tar.gz + ovmf? ( https://dev.gentoo.org/~dlan/distfiles/ovmf-${OVMF_PV}.tar.bz2 + ${OVMF_PATCHSET_URI} ) + ${UPSTREAM_PATCHSET_URI} + ${SECURITY_PATCHSET_URI} + ${GENTOO_PATCHSET_URI}" + + S="${WORKDIR}/xen-${MY_PV}" +fi + +DESCRIPTION="Xen tools including QEMU and xl" +HOMEPAGE="http://xen.org/" +DOCS=( README docs/README.xen-bugtool ) + +LICENSE="GPL-2" +SLOT="0/${MAJOR_V}" +# Inclusion of IUSE ocaml on stabalizing requires maintainer of ocaml to (get off his hands and) make +# >=dev-lang/ocaml-4 stable +# Masked in profiles/eapi-5-files instead +IUSE="api custom-cflags debug doc flask hvm +qemu ocaml ovmf +qemu-traditional +pam python pygrub screen sdl static-libs system-qemu system-seabios" + +REQUIRED_USE=" + ${PYTHON_REQUIRED_USE} + pygrub? ( python ) + ovmf? ( hvm ) + ^^ ( qemu system-qemu )" + +COMMON_DEPEND=" + dev-libs/lzo:2 + dev-libs/glib:2 + dev-libs/yajl + dev-libs/libaio + dev-libs/libgcrypt:0 + sys-libs/zlib +" + +DEPEND="${COMMON_DEPEND} + dev-python/lxml[${PYTHON_USEDEP}] + x86? ( sys-devel/dev86 + sys-power/iasl ) + pam? ( dev-python/pypam[${PYTHON_USEDEP}] ) + ${PYTHON_DEPS} + api? ( dev-libs/libxml2 + net-misc/curl ) + ovmf? ( + !arm? ( dev-lang/nasm ) + $(python_gen_impl_dep sqlite) + ) + !amd64? ( >=sys-apps/dtc-1.4.0 ) + amd64? ( sys-devel/bin86 + system-seabios? ( sys-firmware/seabios ) + sys-firmware/ipxe + sys-devel/dev86 + sys-power/iasl ) + dev-lang/perl + app-misc/pax-utils + doc? ( + app-doc/doxygen + dev-python/markdown[${PYTHON_USEDEP}] + dev-tex/latex2html[png,gif] + media-gfx/graphviz + dev-tex/xcolor + media-gfx/transfig + dev-texlive/texlive-latexextra + virtual/latex-base + dev-tex/latexmk + dev-texlive/texlive-latex + dev-texlive/texlive-pictures + dev-texlive/texlive-latexrecommended + ) + hvm? ( x11-proto/xproto + !net-libs/libiscsi ) + qemu? ( + x11-libs/pixman + sdl? ( media-libs/libsdl[X] ) + ) + system-qemu? ( app-emulation/qemu[xen] ) + ocaml? ( dev-ml/findlib + >=dev-lang/ocaml-4 )" + +RDEPEND="${COMMON_DEPEND} + sys-apps/iproute2[-minimal] + net-misc/bridge-utils + screen? ( + app-misc/screen + app-admin/logrotate + )" + +# hvmloader is used to bootstrap a fully virtualized kernel +# Approved by QA team in bug #144032 +QA_WX_LOAD="usr/lib/xen/boot/hvmloader + usr/share/qemu-xen/qemu/s390-ccw.img" + +RESTRICT="test" + +pkg_setup() { + python_setup + export "CONFIG_LOMOUNT=y" + + #bug 522642, disable compile tools/tests + export "CONFIG_TESTS=n" + + if [[ -z ${XEN_TARGET_ARCH} ]] ; then + if use x86 && use amd64; then + die "Confusion! Both x86 and amd64 are set in your use flags!" + elif use x86; then + export XEN_TARGET_ARCH="x86_32" + elif use amd64 ; then + export XEN_TARGET_ARCH="x86_64" + elif use arm; then + export XEN_TARGET_ARCH="arm32" + elif use arm64; then + export XEN_TARGET_ARCH="arm64" + else + die "Unsupported architecture!" + fi + fi +} + +src_prepare() { + # Upstream's patchset + if [[ -n ${UPSTREAM_VER} ]]; then + einfo "Try to apply Xen Upstream patch set" + EPATCH_SUFFIX="patch" \ + EPATCH_FORCE="yes" \ + EPATCH_OPTS="-p1" \ + epatch "${WORKDIR}"/patches-upstream + fi + + # Security patchset + if [[ -n ${SECURITY_VER} ]]; then + einfo "Try to apply Xen Security patch set" + # apply main xen patches + # Two parallel systems, both work side by side + # Over time they may concdense into one. This will suffice for now + EPATCH_SUFFIX="patch" + EPATCH_FORCE="yes" + + source "${WORKDIR}"/patches-security/${PV}.conf + + for i in ${XEN_SECURITY_MAIN}; do + epatch "${WORKDIR}"/patches-security/xen/$i + done + + # apply qemu-xen/upstream patches + pushd "${S}"/tools/qemu-xen/ > /dev/null + for i in ${XEN_SECURITY_QEMUU}; do + epatch "${WORKDIR}"/patches-security/qemuu/$i + done + popd > /dev/null + + # apply qemu-traditional patches + pushd "${S}"/tools/qemu-xen-traditional/ > /dev/null + for i in ${XEN_SECURITY_QEMUT}; do + epatch "${WORKDIR}"/patches-security/qemut/$i + done + popd > /dev/null + fi + + # move before Gentoo patch, one patch should apply to seabios, to fix gcc-4.5.x build err + mv ../seabios-${SEABIOS_VER} tools/firmware/seabios-dir-remote || die + pushd tools/firmware/ > /dev/null + ln -s seabios-dir-remote seabios-dir || die + popd > /dev/null + + # Gentoo's patchset + if [[ -n ${GENTOO_VER} && -n ${GENTOO_GPV} ]]; then + einfo "Try to apply Gentoo specific patch set" + source "${FILESDIR}"/gentoo-patches.conf + _gpv=_gpv_${PN/-/_}_${PV//./}_${GENTOO_GPV} + for i in ${!_gpv}; do + EPATCH_SUFFIX="patch" \ + EPATCH_FORCE="yes" \ + epatch "${WORKDIR}"/patches-gentoo/$i + done + fi + + # Ovmf's patchset + if use ovmf; then + if [[ -n ${OVMF_VER} ]];then + einfo "Try to apply Ovmf patch set" + pushd "${WORKDIR}"/ovmf-*/ > /dev/null + EPATCH_SUFFIX="patch" \ + EPATCH_FORCE="yes" \ + EPATCH_OPTS="-p1" \ + epatch "${WORKDIR}"/patches-ovmf + popd > /dev/null + fi + mv ../ovmf-${OVMF_PV} tools/firmware/ovmf-dir-remote || die + fi + + mv tools/qemu-xen/qemu-bridge-helper.c tools/qemu-xen/xen-bridge-helper.c || die + + # Fix texi2html build error with new texi2html, qemu.doc.html + sed -i -e "/texi2html -monolithic/s/-number//" tools/qemu-xen-traditional/Makefile || die + + use api || sed -e "/SUBDIRS-\$(LIBXENAPI_BINDINGS) += libxen/d" -i tools/Makefile || die + sed -e 's:$(MAKE) PYTHON=$(PYTHON) subdirs-$@:LC_ALL=C "$(MAKE)" PYTHON=$(PYTHON) subdirs-$@:' \ + -i tools/firmware/Makefile || die + + # Drop .config, fixes to gcc-4.6 + sed -e '/-include $(XEN_ROOT)\/.config/d' -i Config.mk || die "Couldn't drop" + + # if the user *really* wants to use their own custom-cflags, let them + if use custom-cflags; then + einfo "User wants their own CFLAGS - removing defaults" + + # try and remove all the default cflags + find "${S}" \( -name Makefile -o -name Rules.mk -o -name Config.mk \) \ + -exec sed \ + -e 's/CFLAGS\(.*\)=\(.*\)-O3\(.*\)/CFLAGS\1=\2\3/' \ + -e 's/CFLAGS\(.*\)=\(.*\)-march=i686\(.*\)/CFLAGS\1=\2\3/' \ + -e 's/CFLAGS\(.*\)=\(.*\)-fomit-frame-pointer\(.*\)/CFLAGS\1=\2\3/' \ + -e 's/CFLAGS\(.*\)=\(.*\)-g3*\s\(.*\)/CFLAGS\1=\2 \3/' \ + -e 's/CFLAGS\(.*\)=\(.*\)-O2\(.*\)/CFLAGS\1=\2\3/' \ + -i {} + || die "failed to re-set custom-cflags" + else + unset CFLAGS + unset LDFLAGS + unset ASFLAGS + unset CPPFLAGS + fi + + if ! use pygrub; then + sed -e '/^SUBDIRS-y += pygrub/d' -i tools/Makefile || die + fi + + if ! use python; then + sed -e '/^SUBDIRS-y += python$/d' -i tools/Makefile || die + fi + + if ! use hvm; then + sed -e '/SUBDIRS-$(CONFIG_X86) += firmware/d' -i tools/Makefile || die + # Bug 351648 + elif ! use x86 && ! has x86 $(get_all_abis); then + mkdir -p "${WORKDIR}"/extra-headers/gnu || die + touch "${WORKDIR}"/extra-headers/gnu/stubs-32.h || die + export CPATH="${WORKDIR}"/extra-headers + fi + + if use qemu; then + if use sdl; then + sed -i -e "s:\$\$source/configure:\0 --enable-sdl:" \ + tools/Makefile || die + else + sed -i -e "s:\${QEMU_ROOT\:\-\.}/configure:\0 --disable-sdl:" \ + tools/qemu-xen-traditional/xen-setup || die + sed -i -e "s:\$\$source/configure:\0 --disable-sdl:" \ + tools/Makefile || die + fi + else + # Don't bother with qemu, only needed for fully virtualised guests + sed -e "s:install-tools\: tools/qemu-xen-traditional-dir:install-tools\: :g" -i Makefile || die + fi + + # Reset bash completion dir; Bug 472438 + sed -e "s:^BASH_COMPLETION_DIR ?= \$(CONFIG_DIR)/bash_completion.d:BASH_COMPLETION_DIR ?= $(get_bashcompdir):" \ + -i Config.mk || die + sed -i -e "/bash-completion/s/xl\.sh/xl/g" tools/libxl/Makefile || die + + # xencommons, Bug #492332, sed lighter weight than patching + sed -e 's:\$QEMU_XEN -xen-domid:test -e "\$QEMU_XEN" \&\& &:' \ + -i tools/hotplug/Linux/init.d/xencommons.in || die + + # respect multilib, usr/lib/libcacard.so.0.0.0 + sed -e "/^libdir=/s/\/lib/\/$(get_libdir)/" \ + -i tools/qemu-xen/configure || die + + #bug 518136, don't build 32bit exactuable for nomultilib profile + if [[ "${ARCH}" == 'amd64' ]] && ! has_multilib_profile; then + sed -i -e "/x86_emulator/d" tools/tests/Makefile || die + fi + + # use /var instead of /var/lib, consistat with previous ebuild + sed -i -e "/XEN_LOCK_DIR=/s/\$localstatedir/\/var/g" \ + m4/paths.m4 configure tools/configure || die + # use /run instead of /var/run + sed -i -e "/XEN_RUN_DIR=/s/\$localstatedir//g" \ + m4/paths.m4 configure tools/configure || die + + # uncomment lines in xl.conf + sed -e 's:^#autoballoon=:autoballoon=:' \ + -e 's:^#lockfile=:lockfile=:' \ + -e 's:^#vif.default.script=:vif.default.script=:' \ + -i tools/examples/xl.conf || die + + # Bug #575868 converted to a sed statement, typo of one char + sed -e "s:granter’s:granter's:" -i xen/include/public/grant_table.h || die + + epatch_user +} + +src_configure() { + local myconf="--prefix=${PREFIX}/usr \ + --libdir=${PREFIX}/usr/$(get_libdir) \ + --libexecdir=${PREFIX}/usr/libexec \ + --disable-werror \ + --disable-xen \ + --enable-tools \ + --enable-docs \ + $(use_enable pam) \ + $(use_enable api xenapi) \ + $(use_enable ovmf) \ + $(use_enable ocaml ocamltools) \ + --with-xenstored=$(usex ocaml 'oxenstored' 'xenstored') \ + " + + use system-seabios && myconf+=" --with-system-seabios=/usr/share/seabios/bios.bin" + use system-qemu && myconf+=" --with-system-qemu=/usr/bin/qemu-system-x86_64" + use amd64 && myconf+=" $(use_enable qemu-traditional)" + econf ${myconf} +} + +src_compile() { + export VARTEXFONTS="${T}/fonts" + local myopt + use debug && myopt="${myopt} debug=y" + + if test-flag-CC -fno-strict-overflow; then + append-flags -fno-strict-overflow + fi + + emake V=1 CC="$(tc-getCC)" LD="$(tc-getLD)" AR="$(tc-getAR)" RANLIB="$(tc-getRANLIB)" -C tools ${myopt} + + use doc && emake -C docs txt html + emake -C docs man-pages +} + +src_install() { + # Override auto-detection in the build system, bug #382573 + export INITD_DIR=/tmp/init.d + export CONFIG_LEAF_DIR=../tmp/default + + # Let the build system compile installed Python modules. + local PYTHONDONTWRITEBYTECODE + export PYTHONDONTWRITEBYTECODE + + emake DESTDIR="${ED}" DOCDIR="/usr/share/doc/${PF}" \ + XEN_PYTHON_NATIVE_INSTALL=y install-tools + + # Fix the remaining Python shebangs. + python_fix_shebang "${D}" + + # Remove RedHat-specific stuff + rm -rf "${D}"tmp || die + + if use doc; then + emake DESTDIR="${D}" DOCDIR="/usr/share/doc/${PF}" install-docs + + dohtml -r docs/ + docinto pdf + dodoc ${DOCS[@]} + [ -d "${D}"/usr/share/doc/xen ] && mv "${D}"/usr/share/doc/xen/* "${D}"/usr/share/doc/${PF}/html + fi + + rm -rf "${D}"/usr/share/doc/xen/ + doman docs/man?/* + + newconfd "${FILESDIR}"/xendomains.confd xendomains + newconfd "${FILESDIR}"/xenstored.confd xenstored + newconfd "${FILESDIR}"/xenconsoled.confd xenconsoled + newinitd "${FILESDIR}"/xendomains.initd-r2 xendomains + newinitd "${FILESDIR}"/xenstored.initd xenstored + newinitd "${FILESDIR}"/xenconsoled.initd xenconsoled + newinitd "${FILESDIR}"/xencommons.initd xencommons + newconfd "${FILESDIR}"/xencommons.confd xencommons + newinitd "${FILESDIR}"/xenqemudev.initd xenqemudev + newconfd "${FILESDIR}"/xenqemudev.confd xenqemudev + + if use screen; then + cat "${FILESDIR}"/xendomains-screen.confd >> "${D}"/etc/conf.d/xendomains || die + cp "${FILESDIR}"/xen-consoles.logrotate "${D}"/etc/xen/ || die + keepdir /var/log/xen-consoles + fi + + # For -static-libs wrt Bug 384355 + if ! use static-libs; then + rm -f "${D}"usr/$(get_libdir)/*.a "${D}"usr/$(get_libdir)/ocaml/*/*.a + fi + + # for xendomains + keepdir /etc/xen/auto + + # Remove files failing QA AFTER emake installs them, avoiding seeking absent files + find "${D}" \( -name openbios-sparc32 -o -name openbios-sparc64 \ + -o -name openbios-ppc -o -name palcode-clipper \) -delete || die +} + +pkg_postinst() { + elog "Official Xen Guide and the offical wiki page:" + elog "https://wiki.gentoo.org/wiki/Xen" + elog "http://wiki.xen.org/wiki/Main_Page" + elog "" + elog "Recommended to utilise the xencommons script to config sytem At boot" + elog "Add by use of rc-update on completion of the install" + + if ! use hvm; then + echo + elog "HVM (VT-x and AMD-V) support has been disabled. If you need hvm" + elog "support enable the hvm use flag." + elog "An x86 or amd64 system is required to build HVM support." + fi + + if use qemu; then + elog "The qemu-bridge-helper is renamed to the xen-bridge-helper in the in source" + elog "build of qemu. This allows for app-emulation/qemu to be emerged concurrently" + elog "with the qemu capable xen. It is up to the user to distinguish between and utilise" + elog "the qemu-bridge-helper and the xen-bridge-helper. File bugs of any issues that arise" + fi +} diff --git a/app-emulation/xen/Manifest b/app-emulation/xen/Manifest index 65896802cbd0..10ed5e6cfc3a 100644 --- a/app-emulation/xen/Manifest +++ b/app-emulation/xen/Manifest @@ -1,5 +1,9 @@ DIST xen-4.7.1-upstream-patches-0.tar.xz 16420 SHA256 cb4724fedadc408ec390f99e9928a44ec75e793fb55cb97793f09980855b6a32 SHA512 79e117c48c6cc3d5783c818218ac11ec494735ce89755b5e263a64c23fb1f0a425bc65b567a24ce2e348b6e3839b26133c7e2c36411e5cc7acb54b855149dfbe WHIRLPOOL 982165da62cbb28cd72d32662c366ca7dac91a511b356eb58bced4b4af5cbc0d94c7e280a2400e5d9c92938d2afee86abd7c688926c2b9cb191d4554be828844 DIST xen-4.7.1.tar.gz 20706864 SHA256 e87f4b0575e78657ee23d31470a15ecf1ce8c3a92a771cda46bbcd4d0d671ffe SHA512 eb03244f5fa7b54402fcc1d38f1e69c0ea4536d5ab2f9859b41b5e94920ad9db20fb146e3c3d3635e9ca1d12e93ce0429e57f24bf53d4a2c4b69babc76ec724e WHIRLPOOL 5d7ba29ea58bdedb6a237f7cb1c0aacf361dc35ebb07ec8e55773e07b1f38c1b151615b526e14daeca7c2db235114bde0b6d124219e8818c6e529873b5151fec +DIST xen-4.7.2-upstream-patches-0.tar.xz 45944 SHA256 e7783bc9adc939167eaef91e96fda506d2d52815f709b31952229891357e6b67 SHA512 6d4e23fb5a63fd191f893e31194b6397a394956846f356ae0119c656a92e7e22296e728286a98109b64a5736241b2317969f54915e7b487b4d7a64aae534614c WHIRLPOOL e185ce40085559d00a302eae8814b4c013817a5e4c0a2a9c56a6b4983b38e7103e44d0407fa78ea79fdbe8eefde346b994812851d8b4bad0bf08cb5721507c37 +DIST xen-4.7.2.tar.gz 20714281 SHA256 61494a56d9251e2108080f95b0dc8e3d175f1ba4da34603fc07b91cfebf358d5 SHA512 8f447e7feffec81fea5b5a4098968b8b8cebc6989e7b6a845413317644d5d328d6f12181d09266366200878ab6a29ab34c7235c1af7b55463a3fdaea40ee1500 WHIRLPOOL 27f3fd88846724e03bf9bb53133046cb79139950c9162dd9c9a85798e169259f73dc2fe4212e750ce9a8fd1d0abd99f1f76108faceb7bf1934ce0495377ee756 +DIST xen-4.8.0-upstream-patches-0.tar.xz 78984 SHA256 278603b1b739e94099184f7266c77806595bf53c7236267f32b9f8fad9ebe76e SHA512 1466e33705f54e3799412298917485bb8acb6847dbacb61cfb394415b6b3bc51aed9317928e948161e00c8134fcc0a4b07361df3dec76b1038aa41e3b1b63b3a WHIRLPOOL 4c3a1524db00be1c475fd84e2148143bc4f3be2987e7d785bee880603c72d6bdb417acf1f1935c2b53b369d8428eed736b92644f6ce62e05ad16479ecca18410 DIST xen-4.8.0.tar.gz 22499917 SHA256 1e15c713ab7ba3bfda8b4a285ed973529364fd1100e6dd5a61f29583dc667b04 SHA512 70b95553f9813573b12e52999a4df8701dec430f23c36a8dc70d25a46bb4bc9234e5b7feb74a04062af4c8d6b6bcfe947d90b2b172416206812e54bac9797454 WHIRLPOOL 1296c25a05e3ab81730a2587ea1c07c7c022f05cfefc580224185c8d5fc9853531031c1292f69eff944ae2752492c4b95f13e160be3c449a7626aeadf1a21102 DIST xen-security-patches-21.tar.xz 6888 SHA256 76e43fb4c41a606cb1a5e56045dedff0ed3c94b535d89a736664965ee4a44699 SHA512 eb889d90630b6a7c4b9785bf8c2db1d83c7878cec3aa125601b38f75f70a965e52aa5003024feec40d35ee940975dfd766eeb806cdcff717991876d50ce0839b WHIRLPOOL 9039cc7410fbb0e36e1ab74d597c7b1075f92e43b9d22bcb198c0594a0802fca50f86a9fa4343cea83a68eacd6acb6fa0ef73fbd20c19a27f5e92c3f32711af8 DIST xen-security-patches-24.tar.xz 8848 SHA256 1aa2be3a15771473d3b043ccd703f7893618473a77193feb1703bf552aa777fa SHA512 d9ccee8ad3ffe2e035de9e95bf7ef850f31cf368dd228e62acf867ff6a8948e8c2882e64f341ff3458349f8317185241a40178f30f804edfa51b2b7cf6c6cda0 WHIRLPOOL cd632b7bf95e929f5037be6a16a59d3fcde50e47cc034cc0d44c29bc16c42a9a01c720a4401804fa9df8fa908f4fc8e75f2fcbef3d56381b7dca81d45618e773 +DIST xen-security-patches-25.tar.xz 9208 SHA256 ceaa520d4d98ab7b6ce5b58c380499372cb513dda0c8236106cdf878385d4458 SHA512 18539c1f42bc95a06f7b06855614fafb4ed7c07a145d9ab90e02954ba405d21fc4c379908e3233ddfb85ccaa04515b261ac4bbf3987ce00e4479158f03edd917 WHIRLPOOL 4cff34c29a5c38e6a5bd0d4f4fe89d8daf944740934b05cd61f4b8a345ddb4d8a8b2de6db27a723154169e3f28d5b34a43eddd08c909cfa3d6d5aee26fcae693 diff --git a/app-emulation/xen/xen-4.7.2.ebuild b/app-emulation/xen/xen-4.7.2.ebuild new file mode 100644 index 000000000000..9e7a01b61825 --- /dev/null +++ b/app-emulation/xen/xen-4.7.2.ebuild @@ -0,0 +1,192 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) + +inherit eutils multilib mount-boot flag-o-matic python-any-r1 toolchain-funcs + +MY_PV=${PV/_/-} +MY_P=${PN}-${PV/_/-} + +if [[ $PV == *9999 ]]; then + inherit git-r3 + KEYWORDS="amd64" + EGIT_REPO_URI="git://xenbits.xen.org/xen.git" + SRC_URI="" +else + KEYWORDS="~amd64 ~arm -x86" + UPSTREAM_VER=0 + SECURITY_VER=25 + GENTOO_VER= + + [[ -n ${UPSTREAM_VER} ]] && \ + UPSTREAM_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${P}-upstream-patches-${UPSTREAM_VER}.tar.xz" + [[ -n ${SECURITY_VER} ]] && \ + SECURITY_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${PN}-security-patches-${SECURITY_VER}.tar.xz" + [[ -n ${GENTOO_VER} ]] && \ + GENTOO_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${PN}-gentoo-patches-${GENTOO_VER}.tar.xz" + SRC_URI="http://bits.xensource.com/oss-xen/release/${MY_PV}/${MY_P}.tar.gz + ${UPSTREAM_PATCHSET_URI} + ${SECURITY_PATCHSET_URI} + ${GENTOO_PATCHSET_URI}" +fi + +DESCRIPTION="The Xen virtual machine monitor" +HOMEPAGE="http://xen.org/" +LICENSE="GPL-2" +SLOT="0" +IUSE="custom-cflags debug efi flask" + +DEPEND="${PYTHON_DEPS} + efi? ( >=sys-devel/binutils-2.22[multitarget] ) + !efi? ( >=sys-devel/binutils-2.22 )" +RDEPEND="" +PDEPEND="~app-emulation/xen-tools-${PV}" + +# no tests are available for the hypervisor +# prevent the silliness of /usr/lib/debug/usr/lib/debug files +# prevent stripping of the debug info from the /usr/lib/debug/xen-syms +RESTRICT="test splitdebug strip" + +# Approved by QA team in bug #144032 +QA_WX_LOAD="boot/xen-syms-${PV}" + +REQUIRED_USE="arm? ( debug )" + +S="${WORKDIR}/${MY_P}" + +pkg_setup() { + python-any-r1_pkg_setup + if [[ -z ${XEN_TARGET_ARCH} ]]; then + if use amd64; then + export XEN_TARGET_ARCH="x86_64" + elif use arm; then + export XEN_TARGET_ARCH="arm32" + elif use arm64; then + export XEN_TARGET_ARCH="arm64" + else + die "Unsupported architecture!" + fi + fi + + if use flask ; then + export "XSM_ENABLE=y" + export "FLASK_ENABLE=y" + fi +} + +src_prepare() { + # Upstream's patchset + if [[ -n ${UPSTREAM_VER} ]]; then + EPATCH_SUFFIX="patch" \ + EPATCH_FORCE="yes" \ + EPATCH_OPTS="-p1" \ + epatch "${WORKDIR}"/patches-upstream + fi + + # Security patchset + if [[ -n ${SECURITY_VER} ]]; then + einfo "Try to apply Xen Security patch set" + # apply main xen patches + # Two parallel systems, both work side by side + # Over time they may concdense into one. This will suffice for now + EPATCH_SUFFIX="patch" + EPATCH_FORCE="yes" + + source "${WORKDIR}"/patches-security/${PV}.conf + + for i in ${XEN_SECURITY_MAIN}; do + epatch "${WORKDIR}"/patches-security/xen/$i + done + fi + + # Gentoo's patchset + if [[ -n ${GENTOO_VER} ]]; then + EPATCH_SUFFIX="patch" \ + EPATCH_FORCE="yes" \ + epatch "${WORKDIR}"/patches-gentoo + fi + + epatch "${FILESDIR}"/${PN}-4.6-efi.patch + + # Drop .config + sed -e '/-include $(XEN_ROOT)\/.config/d' -i Config.mk || die "Couldn't drop" + + if use efi; then + export EFI_VENDOR="gentoo" + export EFI_MOUNTPOINT="boot" + fi + + # if the user *really* wants to use their own custom-cflags, let them + if use custom-cflags; then + einfo "User wants their own CFLAGS - removing defaults" + # try and remove all the default custom-cflags + find "${S}" -name Makefile -o -name Rules.mk -o -name Config.mk -exec sed \ + -e 's/CFLAGS\(.*\)=\(.*\)-O3\(.*\)/CFLAGS\1=\2\3/' \ + -e 's/CFLAGS\(.*\)=\(.*\)-march=i686\(.*\)/CFLAGS\1=\2\3/' \ + -e 's/CFLAGS\(.*\)=\(.*\)-fomit-frame-pointer\(.*\)/CFLAGS\1=\2\3/' \ + -e 's/CFLAGS\(.*\)=\(.*\)-g3*\s\(.*\)/CFLAGS\1=\2 \3/' \ + -e 's/CFLAGS\(.*\)=\(.*\)-O2\(.*\)/CFLAGS\1=\2\3/' \ + -i {} \; || die "failed to re-set custom-cflags" + fi + + # remove -Werror for gcc-4.6's sake + find "${S}" -name 'Makefile*' -o -name '*.mk' -o -name 'common.make' | \ + xargs sed -i 's/ *-Werror */ /' + # not strictly necessary to fix this + sed -i 's/, "-Werror"//' "${S}/tools/python/setup.py" || die "failed to re-set setup.py" + + # Bug #575868 converted to a sed statement, typo of one char + sed -e "s:granter’s:granter's:" -i xen/include/public/grant_table.h || die + + epatch_user +} + +src_configure() { + use arm && myopt="${myopt} CONFIG_EARLY_PRINTK=sun7i" + + use debug && myopt="${myopt} debug=y" + + if use custom-cflags; then + filter-flags -fPIE -fstack-protector + replace-flags -O3 -O2 + else + unset CFLAGS + unset LDFLAGS + unset ASFLAGS + fi +} + +src_compile() { + # Send raw LDFLAGS so that --as-needed works + emake V=1 CC="$(tc-getCC)" LDFLAGS="$(raw-ldflags)" LD="$(tc-getLD)" -C xen ${myopt} +} + +src_install() { + local myopt + use debug && myopt="${myopt} debug=y" + + # The 'make install' doesn't 'mkdir -p' the subdirs + if use efi; then + mkdir -p "${D}"${EFI_MOUNTPOINT}/efi/${EFI_VENDOR} || die + fi + + emake LDFLAGS="$(raw-ldflags)" DESTDIR="${D}" -C xen ${myopt} install + + # make install likes to throw in some extra EFI bits if it built + use efi || rm -rf "${D}/usr/$(get_libdir)/efi" +} + +pkg_postinst() { + elog "Official Xen Guide and the unoffical wiki page:" + elog " https://wiki.gentoo.org/wiki/Xen" + elog " http://en.gentoo-wiki.com/wiki/Xen/" + + use efi && einfo "The efi executable is installed in boot/efi/gentoo" + + elog "You can optionally block the installation of /boot/xen-syms by an entry" + elog "in folder /etc/portage/env using the portage's feature INSTALL_MASK" + elog "e.g. echo ${msg} > /etc/portage/env/xen.conf" +} diff --git a/app-emulation/xen/xen-4.8.0-r4.ebuild b/app-emulation/xen/xen-4.8.0-r4.ebuild new file mode 100644 index 000000000000..5f4d4ef00570 --- /dev/null +++ b/app-emulation/xen/xen-4.8.0-r4.ebuild @@ -0,0 +1,192 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) + +inherit eutils multilib mount-boot flag-o-matic python-any-r1 toolchain-funcs + +MY_PV=${PV/_/-} +MY_P=${PN}-${PV/_/-} + +if [[ $PV == *9999 ]]; then + inherit git-r3 + KEYWORDS="" + EGIT_REPO_URI="git://xenbits.xen.org/xen.git" + SRC_URI="" +else + KEYWORDS="~amd64 ~arm -x86" + UPSTREAM_VER=0 + SECURITY_VER=25 + GENTOO_VER= + + [[ -n ${UPSTREAM_VER} ]] && \ + UPSTREAM_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${P}-upstream-patches-${UPSTREAM_VER}.tar.xz" + [[ -n ${SECURITY_VER} ]] && \ + SECURITY_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${PN}-security-patches-${SECURITY_VER}.tar.xz" + [[ -n ${GENTOO_VER} ]] && \ + GENTOO_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${PN}-gentoo-patches-${GENTOO_VER}.tar.xz" + SRC_URI="http://bits.xensource.com/oss-xen/release/${MY_PV}/${MY_P}.tar.gz + ${UPSTREAM_PATCHSET_URI} + ${SECURITY_PATCHSET_URI} + ${GENTOO_PATCHSET_URI}" +fi + +DESCRIPTION="The Xen virtual machine monitor" +HOMEPAGE="http://xen.org/" +LICENSE="GPL-2" +SLOT="0" +IUSE="custom-cflags debug efi flask" + +DEPEND="${PYTHON_DEPS} + efi? ( >=sys-devel/binutils-2.22[multitarget] ) + !efi? ( >=sys-devel/binutils-2.22 )" +RDEPEND="" +PDEPEND="~app-emulation/xen-tools-${PV}" + +# no tests are available for the hypervisor +# prevent the silliness of /usr/lib/debug/usr/lib/debug files +# prevent stripping of the debug info from the /usr/lib/debug/xen-syms +RESTRICT="test splitdebug strip" + +# Approved by QA team in bug #144032 +QA_WX_LOAD="boot/xen-syms-${PV}" + +REQUIRED_USE="arm? ( debug )" + +S="${WORKDIR}/${MY_P}" + +pkg_setup() { + python-any-r1_pkg_setup + if [[ -z ${XEN_TARGET_ARCH} ]]; then + if use amd64; then + export XEN_TARGET_ARCH="x86_64" + elif use arm; then + export XEN_TARGET_ARCH="arm32" + elif use arm64; then + export XEN_TARGET_ARCH="arm64" + else + die "Unsupported architecture!" + fi + fi + + if use flask ; then + export "XSM_ENABLE=y" + export "FLASK_ENABLE=y" + fi +} + +src_prepare() { + # Upstream's patchset + if [[ -n ${UPSTREAM_VER} ]]; then + EPATCH_SUFFIX="patch" \ + EPATCH_FORCE="yes" \ + EPATCH_OPTS="-p1" \ + epatch "${WORKDIR}"/patches-upstream + fi + + # Security patchset + if [[ -n ${SECURITY_VER} ]]; then + einfo "Try to apply Xen Security patch set" + # apply main xen patches + # Two parallel systems, both work side by side + # Over time they may concdense into one. This will suffice for now + EPATCH_SUFFIX="patch" + EPATCH_FORCE="yes" + + source "${WORKDIR}"/patches-security/${PV}.conf + + for i in ${XEN_SECURITY_MAIN}; do + epatch "${WORKDIR}"/patches-security/xen/$i + done + fi + + # Gentoo's patchset + if [[ -n ${GENTOO_VER} ]]; then + EPATCH_SUFFIX="patch" \ + EPATCH_FORCE="yes" \ + epatch "${WORKDIR}"/patches-gentoo + fi + + epatch "${FILESDIR}"/${PN}-4.6-efi.patch + + # Drop .config + sed -e '/-include $(XEN_ROOT)\/.config/d' -i Config.mk || die "Couldn't drop" + + if use efi; then + export EFI_VENDOR="gentoo" + export EFI_MOUNTPOINT="boot" + fi + + # if the user *really* wants to use their own custom-cflags, let them + if use custom-cflags; then + einfo "User wants their own CFLAGS - removing defaults" + # try and remove all the default custom-cflags + find "${S}" -name Makefile -o -name Rules.mk -o -name Config.mk -exec sed \ + -e 's/CFLAGS\(.*\)=\(.*\)-O3\(.*\)/CFLAGS\1=\2\3/' \ + -e 's/CFLAGS\(.*\)=\(.*\)-march=i686\(.*\)/CFLAGS\1=\2\3/' \ + -e 's/CFLAGS\(.*\)=\(.*\)-fomit-frame-pointer\(.*\)/CFLAGS\1=\2\3/' \ + -e 's/CFLAGS\(.*\)=\(.*\)-g3*\s\(.*\)/CFLAGS\1=\2 \3/' \ + -e 's/CFLAGS\(.*\)=\(.*\)-O2\(.*\)/CFLAGS\1=\2\3/' \ + -i {} \; || die "failed to re-set custom-cflags" + fi + + # remove -Werror for gcc-4.6's sake + find "${S}" -name 'Makefile*' -o -name '*.mk' -o -name 'common.make' | \ + xargs sed -i 's/ *-Werror */ /' + # not strictly necessary to fix this + sed -i 's/, "-Werror"//' "${S}/tools/python/setup.py" || die "failed to re-set setup.py" + + # Bug #575868 converted to a sed statement, typo of one char + sed -e "s:granter’s:granter's:" -i xen/include/public/grant_table.h || die + + epatch_user +} + +src_configure() { + use arm && myopt="${myopt} CONFIG_EARLY_PRINTK=sun7i" + + use debug && myopt="${myopt} debug=y" + + if use custom-cflags; then + filter-flags -fPIE -fstack-protector + replace-flags -O3 -O2 + else + unset CFLAGS + unset LDFLAGS + unset ASFLAGS + fi +} + +src_compile() { + # Send raw LDFLAGS so that --as-needed works + emake V=1 CC="$(tc-getCC)" LDFLAGS="$(raw-ldflags)" LD="$(tc-getLD)" -C xen ${myopt} +} + +src_install() { + local myopt + use debug && myopt="${myopt} debug=y" + + # The 'make install' doesn't 'mkdir -p' the subdirs + if use efi; then + mkdir -p "${D}"${EFI_MOUNTPOINT}/efi/${EFI_VENDOR} || die + fi + + emake LDFLAGS="$(raw-ldflags)" DESTDIR="${D}" -C xen ${myopt} install + + # make install likes to throw in some extra EFI bits if it built + use efi || rm -rf "${D}/usr/$(get_libdir)/efi" +} + +pkg_postinst() { + elog "Official Xen Guide and the unoffical wiki page:" + elog " https://wiki.gentoo.org/wiki/Xen" + elog " http://en.gentoo-wiki.com/wiki/Xen/" + + use efi && einfo "The efi executable is installed in boot/efi/gentoo" + + elog "You can optionally block the installation of /boot/xen-syms by an entry" + elog "in folder /etc/portage/env using the portage's feature INSTALL_MASK" + elog "e.g. echo ${msg} > /etc/portage/env/xen.conf" +} diff --git a/app-misc/todo/files/todo-2.10-fix-bash-completion.patch b/app-misc/todo/files/todo-2.10-fix-bash-completion.patch new file mode 100644 index 000000000000..7e6de2f10568 --- /dev/null +++ b/app-misc/todo/files/todo-2.10-fix-bash-completion.patch @@ -0,0 +1,12 @@ +--- ./todo_completion 2017-04-08 15:18:23.102736966 +0200 ++++ ./todo_completion 2017-04-08 15:18:56.839725605 +0200 +@@ -85,6 +85,9 @@ + } + complete -F _todo todo.sh + ++# Gentoo bug 614400 ++complete -F _todo todotxt ++ + # If you define an alias (e.g. "t") to todo.sh, you need to explicitly enable + # completion for it, too: + #complete -F _todo t diff --git a/app-misc/todo/todo-2.10-r1.ebuild b/app-misc/todo/todo-2.10-r1.ebuild new file mode 100644 index 000000000000..5fa2cd242a92 --- /dev/null +++ b/app-misc/todo/todo-2.10-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit bash-completion-r1 + +DESCRIPTION="A CLI-based TODO list manager" +HOMEPAGE="http://todotxt.com/" +SRC_URI="https://github.com/ginatrapani/${PN}.txt-cli/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND="app-shells/bash" + +PATCHES=( "${FILESDIR}/${P}-fix-bash-completion.patch" ) + +S="${WORKDIR}/${PN}.txt-cli-${PV}" + +DOCS=( README.textile CONTRIBUTING.md LICENSE todo.cfg ) + +src_test() { + make test || die "tests failed" +} + +src_install() { + dobin "${PN}.sh" + dosym "/usr/bin/${PN}.sh" "/usr/bin/${PN}txt" + newbashcomp "${PN}_completion" "${PN}.sh" + bashcomp_alias "${PN}.sh" "${PN}txt" + einstalldocs +} diff --git a/app-shells/mpv-bash-completion/Manifest b/app-shells/mpv-bash-completion/Manifest index 04e34cf20331..8c7f739b610d 100644 --- a/app-shells/mpv-bash-completion/Manifest +++ b/app-shells/mpv-bash-completion/Manifest @@ -1,2 +1,3 @@ DIST mpv-bash-completion-3.3.11.tar.gz 19225 SHA256 b74a180c3318bafc9e8d240bb90f2de1f26a653776abd18f6f7c188fe8a38626 SHA512 ac0244c048c7d468fb6f971e58c631c39c919be9a049bb600abed9df9b2ae1429aba918714f6ad60b3cec48bf4dbcf81673946bc5736c0deb0d57585af460f21 WHIRLPOOL 1e25ffb8baba95381463d9ddd1b6ca18d8e954470fa8a384d00645049978869bc00408e7596fe0878c6a6a7e8fe8cf5567ad47a71a1f69945ca469dc560aa799 +DIST mpv-bash-completion-3.3.12.tar.gz 19310 SHA256 9291ef730af6f69cc0efc82e88d170d43d79266a1500461b08719130507870ef SHA512 f019e9a66072333b40213437f07097cacb9f01a1f322fded763e695ef5ef4656016ca07fcb402d406fd99785026dba1fc7292a2c04a14ac18a24557bb8ab2cd1 WHIRLPOOL 96db10c112767d8c8e648a989f416cb02123018e8406842ee27bfc603f5f6ca9ee6360f6aa46a19e14a194f44d510eb971219b10bb598785720c3a6f23047f6c DIST mpv-bash-completion-3.3.8.tar.gz 19002 SHA256 67bb3565daafb1e3f64b24262b0859f7843ac052960e0159e3fe3a375ffed181 SHA512 4d6cfc3ac2d1fd6a28be1a40e3ca28d61f5d9ed40a850c5c60e45501b958b929d6ef9266027d2be95ed0c2b0dedccfdbb04fe4115bb7bcfd39435cb73f2dc452 WHIRLPOOL 62012925d3fb212c473e889930c1add93ce36533313a677cc9ddbc7acce2d9dfc1a18f9054dad901f7a0cb2b57c56a05f302f1fadc83b4bbeda5baa06fb2c7c8 diff --git a/app-shells/mpv-bash-completion/mpv-bash-completion-3.3.12.ebuild b/app-shells/mpv-bash-completion/mpv-bash-completion-3.3.12.ebuild new file mode 100644 index 000000000000..dc4633a3b92d --- /dev/null +++ b/app-shells/mpv-bash-completion/mpv-bash-completion-3.3.12.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit bash-completion-r1 + +DESCRIPTION="Bash completion for the mpv video player" +HOMEPAGE="https://2ion.github.io/mpv-bash-completion/" +SRC_URI="https://github.com/2ion/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64" +IUSE="luajit" + +COMMON_DEPEND=">=media-video/mpv-0.14.0[cli]" +RDEPEND="${COMMON_DEPEND} + >=app-shells/bash-completion-2.3-r1 +" +DEPEND="${COMMON_DEPEND} + !luajit? ( dev-lang/lua:* ) + luajit? ( dev-lang/luajit:2 ) +" + +src_prepare() { + default_src_prepare + # Avoid 'mpv' make target that supports lua only. + sed -i -e 's|check: mpv|check:|' Makefile || die +} + +src_compile() { + $(usex luajit 'luajit' 'lua') gen.lua > mpv || die +} + +src_install() { + dobashcomp mpv + einstalldocs +} + +pkg_postinst() { + if ! has_version 'x11-apps/xrandr'; then + elog + elog "If you want completion of window sizes, please install 'x11-apps/xrandr'." + elog + fi +} diff --git a/dev-cpp/glibmm/Manifest b/dev-cpp/glibmm/Manifest index 89aa15b57499..2990697103a8 100644 --- a/dev-cpp/glibmm/Manifest +++ b/dev-cpp/glibmm/Manifest @@ -1,2 +1,3 @@ DIST glibmm-2.48.1.tar.xz 6235724 SHA256 dc225f7d2f466479766332483ea78f82dc349d59399d30c00de50e5073157cdf SHA512 280949315e592ff8f3f7cfa6376d129211ffb6832146578d6533c4792aafef8b4ea5354943d5623ebf34ce31b8c71b6055a51de2b8ae8cfb419e6e033d9f98fa WHIRLPOOL 81c369bf7bf7ebc1f88e47943ed4b352644cad05566ec2fa04f0974a9e48dbc56b3cbd2f3bde9f55412da886e9b99fde096a1936834c65c77ede3781be30e0fd DIST glibmm-2.50.0.tar.xz 6435208 SHA256 df726e3c6ef42b7621474b03b644a2e40ec4eef94a1c5a932c1e740a78f95e94 SHA512 ed1043fbb5d16dfcb1e71f73e2c998110aa0dbc42b3fc9d8d1cc03e299b171021f2d2ac3055f5685d11b4dc1ddef42d9378eaac895163ddd80f39a627cecdc60 WHIRLPOOL b9c6867876311381b986f5123b6574bae01b45054e80a00c83688d756ed2a8e213dc3b1153a0aeb2672d9db998771fd6f538e1d592ffcb695ff7ac6147094975 +DIST glibmm-2.50.1.tar.xz 6444576 SHA256 1fd85051da9cb402cc8348cec72dfe4d79f9345df4a1dbf68703a4ded45846a4 SHA512 4f25c75c1628ca2f4db1c29cebc63187d372603066b06aa6a66c6da792f9e02cb4a413e41f058a81e2d5a2b38d625de13df76115b278f010ce2fc493fe6e6bbb WHIRLPOOL 54b656e04550a050994061db1498a3ac066b1e37643faa218ec1ef04604c0d37c799572b546e79c29f1b35586b1a5b0c354eca72151756eb99f4434a27fa7ae2 diff --git a/dev-cpp/glibmm/glibmm-2.50.1.ebuild b/dev-cpp/glibmm/glibmm-2.50.1.ebuild new file mode 100644 index 000000000000..1e7cade2f043 --- /dev/null +++ b/dev-cpp/glibmm/glibmm-2.50.1.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit gnome2 multilib-minimal + +DESCRIPTION="C++ interface for glib2" +HOMEPAGE="http://www.gtkmm.org" + +LICENSE="LGPL-2.1+ GPL-2+" # GPL-2+ applies only to the build system +SLOT="2" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="doc debug test" + +RDEPEND=" + >=dev-libs/libsigc++-2.9.1:2[${MULTILIB_USEDEP}] + >=dev-libs/glib-2.50.0:2[${MULTILIB_USEDEP}] +" +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( app-doc/doxygen ) +" +# dev-cpp/mm-common needed for eautoreconf + +src_prepare() { + if ! use test; then + # don't waste time building tests + sed 's/^\(SUBDIRS =.*\)tests\(.*\)$/\1\2/' \ + -i Makefile.am Makefile.in || die "sed 1 failed" + fi + + # don't build examples - we want to install example sources, not binaries + sed 's/^\(SUBDIRS =.*\)examples\(.*\)$/\1\2/' \ + -i Makefile.am Makefile.in || die "sed 2 failed" + + gnome2_src_prepare +} + +multilib_src_configure() { + ECONF_SOURCE="${S}" gnome2_src_configure \ + $(use_enable debug debug-refcounting) \ + $(multilib_native_use_enable doc documentation) \ + --enable-deprecated-api +} + +multilib_src_test() { + cd tests + default + + for i in */test; do + ${i} || die "Running tests failed at ${i}" + done +} + +multilib_src_install() { + gnome2_src_install +} + +multilib_src_install_all() { + einstalldocs + + find examples -type d -name '.deps' -exec rm -rf {} \; 2>/dev/null + find examples -type f -name 'Makefile*' -exec rm -f {} \; 2>/dev/null + dodoc -r examples +} diff --git a/dev-db/postgis/postgis-2.3.2-r1.ebuild b/dev-db/postgis/postgis-2.3.2-r1.ebuild index 9dff87e6120d..d2ef921ec507 100644 --- a/dev-db/postgis/postgis-2.3.2-r1.ebuild +++ b/dev-db/postgis/postgis-2.3.2-r1.ebuild @@ -124,9 +124,10 @@ src_install() { emake -C topology DESTDIR="${D}" install dobin ./utils/postgis_restore.pl - dodoc CREDITS TODO loader/README.* doc/*txt + DOCS=( CREDITS TODO loader/README.* doc/*txt ) + use doc && local HTML_DOCS=( doc/html/{images,postgis.html,style.css} ) - use doc && dohtml -r doc/html/* + einstalldocs docinto topology dodoc topology/{TODO,README} diff --git a/dev-haskell/bifunctors/bifunctors-3.2.0.1.ebuild b/dev-haskell/bifunctors/bifunctors-3.2.0.1.ebuild index 2a0cf4e896a6..b66d19560331 100644 --- a/dev-haskell/bifunctors/bifunctors-3.2.0.1.ebuild +++ b/dev-haskell/bifunctors/bifunctors-3.2.0.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -8,7 +8,7 @@ EAPI=5 CABAL_FEATURES="lib profile haddock hoogle hscolour" inherit haskell-cabal -DESCRIPTION="Haskell 98 bifunctors" +DESCRIPTION="Haskell 98 bifunctors, bifoldables and bitraversables" HOMEPAGE="https://github.com/ekmett/bifunctors/" SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" diff --git a/dev-haskell/bifunctors/bifunctors-5.4.1.ebuild b/dev-haskell/bifunctors/bifunctors-5.4.1.ebuild index ed9c5e77f8c6..d22c9bcd1cee 100644 --- a/dev-haskell/bifunctors/bifunctors-5.4.1.ebuild +++ b/dev-haskell/bifunctors/bifunctors-5.4.1.ebuild @@ -8,7 +8,7 @@ EAPI=6 CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" inherit haskell-cabal -DESCRIPTION="Bifunctors" +DESCRIPTION="Haskell 98 bifunctors, bifoldables and bitraversables" HOMEPAGE="https://github.com/ekmett/bifunctors/" SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" diff --git a/dev-haskell/juicypixels/juicypixels-3.2.8.ebuild b/dev-haskell/juicypixels/juicypixels-3.2.8.ebuild index e5b348451378..51747e8f6015 100644 --- a/dev-haskell/juicypixels/juicypixels-3.2.8.ebuild +++ b/dev-haskell/juicypixels/juicypixels-3.2.8.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -11,7 +11,7 @@ inherit haskell-cabal MY_PN="JuicyPixels" MY_P="${MY_PN}-${PV}" -DESCRIPTION="Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)" +DESCRIPTION="Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and others)" HOMEPAGE="https://github.com/Twinside/Juicy.Pixels" SRC_URI="mirror://hackage/packages/archive/${MY_PN}/${PV}/${MY_P}.tar.gz" diff --git a/dev-haskell/kan-extensions/kan-extensions-5.0.1.ebuild b/dev-haskell/kan-extensions/kan-extensions-5.0.1.ebuild index 141d7595492b..c41a307767c9 100644 --- a/dev-haskell/kan-extensions/kan-extensions-5.0.1.ebuild +++ b/dev-haskell/kan-extensions/kan-extensions-5.0.1.ebuild @@ -8,7 +8,7 @@ EAPI=5 CABAL_FEATURES="lib profile haddock hoogle hscolour" inherit haskell-cabal -DESCRIPTION="Kan extensions, Kan lifts, various forms of the Yoneda lemma, and (co)density (co)monads" +DESCRIPTION="Kan extensions, lifts, forms of the Yoneda lemma, and (co)density (co)monads" HOMEPAGE="https://github.com/ekmett/kan-extensions/" SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" diff --git a/dev-haskell/profunctors/profunctors-4.0.4.ebuild b/dev-haskell/profunctors/profunctors-4.0.4.ebuild index 15b6061a79af..1de24ff2411f 100644 --- a/dev-haskell/profunctors/profunctors-4.0.4.ebuild +++ b/dev-haskell/profunctors/profunctors-4.0.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -8,7 +8,7 @@ EAPI=5 CABAL_FEATURES="lib profile haddock hoogle hscolour" inherit haskell-cabal -DESCRIPTION="Profunctors haskell library" +DESCRIPTION="Haskell 98 Profunctors" HOMEPAGE="https://github.com/ekmett/profunctors/" SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" diff --git a/dev-haskell/profunctors/profunctors-4.3.2.ebuild b/dev-haskell/profunctors/profunctors-4.3.2.ebuild index 01ec6aee8f37..7edb586ae191 100644 --- a/dev-haskell/profunctors/profunctors-4.3.2.ebuild +++ b/dev-haskell/profunctors/profunctors-4.3.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -8,7 +8,7 @@ EAPI=5 CABAL_FEATURES="lib profile haddock hoogle hscolour" inherit haskell-cabal -DESCRIPTION="Profunctors haskell library" +DESCRIPTION="Haskell 98 Profunctors" HOMEPAGE="https://github.com/ekmett/profunctors/" SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" diff --git a/dev-haskell/profunctors/profunctors-4.4.1.ebuild b/dev-haskell/profunctors/profunctors-4.4.1.ebuild index 76ea138133c7..6b785e9654cb 100644 --- a/dev-haskell/profunctors/profunctors-4.4.1.ebuild +++ b/dev-haskell/profunctors/profunctors-4.4.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -8,7 +8,7 @@ EAPI=5 CABAL_FEATURES="lib profile haddock hoogle hscolour" inherit haskell-cabal -DESCRIPTION="Profunctors haskell library" +DESCRIPTION="Haskell 98 Profunctors" HOMEPAGE="https://github.com/ekmett/profunctors/" SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" diff --git a/dev-haskell/profunctors/profunctors-5.1.2.ebuild b/dev-haskell/profunctors/profunctors-5.1.2.ebuild index f52649ef62b8..7abfa7beea16 100644 --- a/dev-haskell/profunctors/profunctors-5.1.2.ebuild +++ b/dev-haskell/profunctors/profunctors-5.1.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -8,7 +8,7 @@ EAPI=5 CABAL_FEATURES="lib profile haddock hoogle hscolour" inherit haskell-cabal -DESCRIPTION="Profunctors haskell library" +DESCRIPTION="Haskell 98 Profunctors" HOMEPAGE="https://github.com/ekmett/profunctors/" SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" diff --git a/dev-haskell/profunctors/profunctors-5.2.ebuild b/dev-haskell/profunctors/profunctors-5.2.ebuild index 2e0c0fb0da9c..44faee7cf0f8 100644 --- a/dev-haskell/profunctors/profunctors-5.2.ebuild +++ b/dev-haskell/profunctors/profunctors-5.2.ebuild @@ -8,7 +8,7 @@ EAPI=5 CABAL_FEATURES="lib profile haddock hoogle hscolour" inherit haskell-cabal -DESCRIPTION="Profunctors" +DESCRIPTION="Haskell 98 Profunctors" HOMEPAGE="https://github.com/ekmett/profunctors/" SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" diff --git a/dev-java/ant-contrib/ant-contrib-1.0_beta2-r2.ebuild b/dev-java/ant-contrib/ant-contrib-1.0_beta2-r2.ebuild index bfdbdfafdfa6..347d5d2bab3f 100644 --- a/dev-java/ant-contrib/ant-contrib-1.0_beta2-r2.ebuild +++ b/dev-java/ant-contrib/ant-contrib-1.0_beta2-r2.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 JAVA_PKG_IUSE="doc source" inherit java-pkg-2 java-ant-2 -DESCRIPTION="A collection of tasks (and at one point maybe types and other tools) for Apache Ant" +DESCRIPTION="A collection of tasks for Apache Ant" HOMEPAGE="http://ant-contrib.sourceforge.net/" SRC_URI="mirror://sourceforge/ant-contrib/${PN}-${PV/_beta/b}-src.tar.bz2" LICENSE="Apache-2.0" diff --git a/dev-java/avalon-logkit/avalon-logkit-1.2.2-r1.ebuild b/dev-java/avalon-logkit/avalon-logkit-1.2.2-r1.ebuild index 7aa5be49916a..d8bb1c4dbd34 100644 --- a/dev-java/avalon-logkit/avalon-logkit-1.2.2-r1.ebuild +++ b/dev-java/avalon-logkit/avalon-logkit-1.2.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=4 @@ -7,7 +7,7 @@ JAVA_PKG_IUSE="doc source test" inherit eutils java-pkg-2 -DESCRIPTION="An easy-to-use Java logging toolkit designed for secure, performance-oriented logging" +DESCRIPTION="Easy-to-use Java logging toolkit" HOMEPAGE="http://avalon.apache.org/" SRC_URI="mirror://apache/avalon/logkit/source/logkit-${PV}-src.tar.gz" diff --git a/dev-java/browserlauncher2/browserlauncher2-1.3-r1.ebuild b/dev-java/browserlauncher2/browserlauncher2-1.3-r1.ebuild index bcf9169c2a40..315f0a029bed 100644 --- a/dev-java/browserlauncher2/browserlauncher2-1.3-r1.ebuild +++ b/dev-java/browserlauncher2/browserlauncher2-1.3-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -10,7 +10,7 @@ inherit versionator eutils java-pkg-2 java-ant-2 MY_PV="$(replace_all_version_separators _)" MY_PN="BrowserLauncher2" -DESCRIPTION="BrowserLauncher2 is a library that facilitates opening a browser from a Java application" +DESCRIPTION="A library that facilitates opening a browser from a Java application" HOMEPAGE="http://browserlaunch2.sourceforge.net/" SRC_URI="mirror://sourceforge/browserlaunch2/${MY_PN}-all-${MY_PV}.jar" diff --git a/dev-java/classmate/classmate-0.9.0-r1.ebuild b/dev-java/classmate/classmate-0.9.0-r1.ebuild index 69414a46c387..f6deb6b4e717 100644 --- a/dev-java/classmate/classmate-0.9.0-r1.ebuild +++ b/dev-java/classmate/classmate-0.9.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -7,7 +7,7 @@ JAVA_PKG_IUSE="doc source test" inherit java-pkg-2 java-pkg-simple vcs-snapshot -DESCRIPTION="Library for introspecting generic type information of types, member/static methods, fields" +DESCRIPTION="Zero-dependency Java library for accurately introspecting type information" HOMEPAGE="https://github.com/cowtowncoder/java-classmate/" SRC_URI="https://github.com/cowtowncoder/java-classmate/archive/${P}.tar.gz" diff --git a/dev-java/commons-digester/commons-digester-1.8.1-r2.ebuild b/dev-java/commons-digester/commons-digester-1.8.1-r2.ebuild index edc57c6fcb2e..cba93118e2c7 100644 --- a/dev-java/commons-digester/commons-digester-1.8.1-r2.ebuild +++ b/dev-java/commons-digester/commons-digester-1.8.1-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -7,7 +7,7 @@ JAVA_PKG_IUSE="doc examples source test" inherit eutils java-pkg-2 java-ant-2 MY_P="${P}-src" -DESCRIPTION="Reads XML configuration files to provide initialization of various Java objects within the system" +DESCRIPTION="Reads XML configuration files to provide initialization of various Java objects" HOMEPAGE="http://commons.apache.org/digester/" SRC_URI="mirror://apache/commons/digester/source/${MY_P}.tar.gz" diff --git a/dev-java/commons-digester/commons-digester-2.1-r1.ebuild b/dev-java/commons-digester/commons-digester-2.1-r1.ebuild index f50f842a84f7..e4adb2d2ba0d 100644 --- a/dev-java/commons-digester/commons-digester-2.1-r1.ebuild +++ b/dev-java/commons-digester/commons-digester-2.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -9,7 +9,7 @@ inherit eutils java-pkg-2 java-ant-2 MY_P="${P}-src" -DESCRIPTION="Reads XML configuration files to provide initialization of various Java objects within the system" +DESCRIPTION="Reads XML configuration files to provide initialization of various Java objects" HOMEPAGE="http://commons.apache.org/digester/" SRC_URI="mirror://apache/commons/digester/source/${MY_P}.tar.gz" diff --git a/dev-java/commons-digester/commons-digester-3.2-r2.ebuild b/dev-java/commons-digester/commons-digester-3.2-r2.ebuild index ebdfc5a580c5..c818287d257f 100644 --- a/dev-java/commons-digester/commons-digester-3.2-r2.ebuild +++ b/dev-java/commons-digester/commons-digester-3.2-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -9,7 +9,7 @@ inherit eutils java-pkg-2 java-ant-2 MY_P="${PN}3-${PV}-src" -DESCRIPTION="Reads XML configuration files to provide initialization of various Java objects within the system" +DESCRIPTION="Reads XML configuration files to provide initialization of various Java objects" HOMEPAGE="http://commons.apache.org/digester/" SRC_URI="mirror://apache/commons/digester/source/${MY_P}.tar.gz" diff --git a/dev-java/commons-fileupload/commons-fileupload-1.3.ebuild b/dev-java/commons-fileupload/commons-fileupload-1.3.ebuild index 039cb8b41afa..ee615f821310 100644 --- a/dev-java/commons-fileupload/commons-fileupload-1.3.ebuild +++ b/dev-java/commons-fileupload/commons-fileupload-1.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -7,7 +7,7 @@ JAVA_PKG_IUSE="doc source test" inherit eutils java-pkg-2 java-ant-2 -DESCRIPTION="Add robust, high-performance, file upload capability to your servlets and web applications" +DESCRIPTION="High-performance file upload capability to your servlets and web applications" HOMEPAGE="http://commons.apache.org/fileupload/" SRC_URI="mirror://apache/commons/fileupload/source/${P}-src.tar.gz" diff --git a/dev-java/commons-io/commons-io-2.4.ebuild b/dev-java/commons-io/commons-io-2.4.ebuild index 59a9f47dbd65..8bbedd3024a2 100644 --- a/dev-java/commons-io/commons-io-2.4.ebuild +++ b/dev-java/commons-io/commons-io-2.4.ebuild @@ -7,7 +7,7 @@ JAVA_PKG_IUSE="doc source" inherit java-pkg-2 java-ant-2 eutils MY_P=${P}-src -DESCRIPTION="Commons-IO contains utility classes, stream implementations, file filters, and endian classes" +DESCRIPTION="Utility classes, stream implementations, file filters, and endian classes" HOMEPAGE="http://commons.apache.org/io/" SRC_URI="mirror://apache/commons/io/source/${MY_P}.tar.gz" diff --git a/dev-java/commons-logging/commons-logging-1.2.ebuild b/dev-java/commons-logging/commons-logging-1.2.ebuild index 09827babecab..024eb121b50e 100644 --- a/dev-java/commons-logging/commons-logging-1.2.ebuild +++ b/dev-java/commons-logging/commons-logging-1.2.ebuild @@ -6,7 +6,7 @@ JAVA_PKG_IUSE="doc source test" inherit java-pkg-2 java-ant-2 java-osgi -DESCRIPTION="The Jakarta-Commons Logging package is an ultra-thin bridge between different logging libraries" +DESCRIPTION="An ultra-thin bridge between different Java logging libraries" HOMEPAGE="http://commons.apache.org/logging/" SRC_URI="mirror://apache/commons/logging/source/${P}-src.tar.gz" diff --git a/dev-java/cpptasks/cpptasks-1.0_beta5.ebuild b/dev-java/cpptasks/cpptasks-1.0_beta5.ebuild index f15e3481432b..fd8f96b943c7 100644 --- a/dev-java/cpptasks/cpptasks-1.0_beta5.ebuild +++ b/dev-java/cpptasks/cpptasks-1.0_beta5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="4" @@ -7,7 +7,7 @@ JAVA_PKG_IUSE="doc source examples" inherit eutils java-pkg-2 java-ant-2 -DESCRIPTION="Ant-tasks to compile various source languages and produce executables, shared and static libraries" +DESCRIPTION="Ant-tasks to compile various source languages and produce executables" HOMEPAGE="http://ant-contrib.sourceforge.net/" SRC_URI="mirror://sourceforge/ant-contrib/ant-contrib/${P/_/-}/${P/_beta/b}.tar.gz" diff --git a/dev-java/dynalang/dynalang-0.4-r1.ebuild b/dev-java/dynalang/dynalang-0.4-r1.ebuild index f54476109572..2e6b4bd63b98 100644 --- a/dev-java/dynalang/dynalang-0.4-r1.ebuild +++ b/dev-java/dynalang/dynalang-0.4-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -10,7 +10,7 @@ inherit java-pkg-2 java-ant-2 MY_P="${PN}-mop-${PV}" -DESCRIPTION="Library for implementation of interoperable metaobject protocols for dynamic languages" +DESCRIPTION="Library of interoperable metaobject protocols for dynamic languages" HOMEPAGE="https://sourceforge.net/projects/dynalang/" SRC_URI="mirror://sourceforge/${PN}/${PN}/${MY_P}.tgz" diff --git a/dev-java/easymock-classextension/easymock-classextension-3.2-r1.ebuild b/dev-java/easymock-classextension/easymock-classextension-3.2-r1.ebuild index 66c2c3b98b5a..de49d776a308 100644 --- a/dev-java/easymock-classextension/easymock-classextension-3.2-r1.ebuild +++ b/dev-java/easymock-classextension/easymock-classextension-3.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -9,7 +9,7 @@ inherit java-pkg-2 java-pkg-simple MY_PN=${PN/-} MY_P=${MY_PN}-${PV} -DESCRIPTION="Provides Mock Objects for interfaces in JUnit tests by generating them on the fly" +DESCRIPTION="Mock Objects for interfaces in JUnit tests by generating them on the fly" HOMEPAGE="http://www.easymock.org/" SRC_URI="mirror://sourceforge/easymock/EasyMock%20Class%20Extension/${PV}/${MY_P}.zip" diff --git a/dev-java/easymock/easymock-3.3.1.ebuild b/dev-java/easymock/easymock-3.3.1.ebuild index 21ada349be80..27e4b6061e14 100644 --- a/dev-java/easymock/easymock-3.3.1.ebuild +++ b/dev-java/easymock/easymock-3.3.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -7,7 +7,7 @@ JAVA_PKG_IUSE="doc examples source" inherit java-pkg-2 java-pkg-simple -DESCRIPTION="Provides Mock Objects for interfaces in JUnit tests by generating them on the fly" +DESCRIPTION="Mock Objects for interfaces in JUnit tests by generating them on the fly" HOMEPAGE="http://www.easymock.org/" SRC_URI="mirror://sourceforge/${PN}/EasyMock/${PV}/${P}.zip" diff --git a/dev-java/ecj-gcj/ecj-gcj-3.5.2-r3.ebuild b/dev-java/ecj-gcj/ecj-gcj-3.5.2-r3.ebuild index 6022a5f62575..c2dd06855a54 100644 --- a/dev-java/ecj-gcj/ecj-gcj-3.5.2-r3.ebuild +++ b/dev-java/ecj-gcj/ecj-gcj-3.5.2-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -8,7 +8,7 @@ inherit java-pkg-2 prefix toolchain-funcs MY_PN="ecj" DMF="R-${PV}-201002111343" -DESCRIPTION="A subset of Eclipse Compiler for Java compiled by gcj, serving as javac in gcj-jdk" +DESCRIPTION="Subset of Eclipse Compiler for Java compiled by gcj, serving as javac in gcj-jdk" HOMEPAGE="http://www.eclipse.org/" SRC_URI="http://download.eclipse.org/eclipse/downloads/drops/${DMF}/${MY_PN}src-${PV}.zip" diff --git a/dev-java/ecj-gcj/ecj-gcj-3.6-r1.ebuild b/dev-java/ecj-gcj/ecj-gcj-3.6-r1.ebuild index 55c7dbb07f31..828b293af310 100644 --- a/dev-java/ecj-gcj/ecj-gcj-3.6-r1.ebuild +++ b/dev-java/ecj-gcj/ecj-gcj-3.6-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -8,7 +8,7 @@ inherit java-pkg-2 prefix toolchain-funcs MY_PN="ecj" DMF="R-${PV}-201006080911" -DESCRIPTION="A subset of Eclipse Compiler for Java compiled by gcj, serving as javac in gcj-jdk" +DESCRIPTION="Subset of Eclipse Compiler for Java compiled by gcj, serving as javac in gcj-jdk" HOMEPAGE="http://www.eclipse.org/" SRC_URI="http://download.eclipse.org/eclipse/downloads/drops/${DMF}/${MY_PN}src-${PV}.zip" diff --git a/dev-java/ecj-gcj/ecj-gcj-4.2.1-r2.ebuild b/dev-java/ecj-gcj/ecj-gcj-4.2.1-r2.ebuild index 81443014da8f..d29d172ca10f 100644 --- a/dev-java/ecj-gcj/ecj-gcj-4.2.1-r2.ebuild +++ b/dev-java/ecj-gcj/ecj-gcj-4.2.1-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -8,7 +8,7 @@ inherit java-pkg-2 prefix toolchain-funcs MY_PN="ecj" DMF="R-${PV}-201209141800" -DESCRIPTION="A subset of Eclipse Compiler for Java compiled by gcj, serving as javac in gcj-jdk" +DESCRIPTION="Subset of Eclipse Compiler for Java compiled by gcj, serving as javac in gcj-jdk" HOMEPAGE="http://www.eclipse.org/" SRC_URI="http://download.eclipse.org/eclipse/downloads/drops4/${DMF}/${MY_PN}src-${PV}.jar" diff --git a/dev-java/ecj-gcj/ecj-gcj-4.4.2.ebuild b/dev-java/ecj-gcj/ecj-gcj-4.4.2.ebuild index 06713c71050b..9f3ec5665c73 100644 --- a/dev-java/ecj-gcj/ecj-gcj-4.4.2.ebuild +++ b/dev-java/ecj-gcj/ecj-gcj-4.4.2.ebuild @@ -8,7 +8,7 @@ inherit java-pkg-2 prefix toolchain-funcs MY_PN="ecj" DMF="R-${PV}-201502041700" -DESCRIPTION="A subset of Eclipse Compiler for Java compiled by gcj, serving as javac in gcj-jdk" +DESCRIPTION="Subset of Eclipse Compiler for Java compiled by gcj, serving as javac in gcj-jdk" HOMEPAGE="http://www.eclipse.org/" SRC_URI="http://download.eclipse.org/eclipse/downloads/drops4/${DMF}/${MY_PN}src-${PV}.jar" diff --git a/dev-java/fastinfoset/fastinfoset-1.2.11.ebuild b/dev-java/fastinfoset/fastinfoset-1.2.11.ebuild index fa7d969540b4..3bb647c3d87f 100644 --- a/dev-java/fastinfoset/fastinfoset-1.2.11.ebuild +++ b/dev-java/fastinfoset/fastinfoset-1.2.11.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -9,7 +9,7 @@ inherit java-pkg-2 java-pkg-simple MY_PN="FastInfoset" -DESCRIPTION="Fast Infoset specifies a standardized binary encoding for the XML Information Sets" +DESCRIPTION="Specifies a standardized binary encoding for the XML Information Sets" HOMEPAGE="https://fi.java.net/" SRC_URI="http://search.maven.org/remotecontent?filepath=com/sun/xml/${PN}/${MY_PN}/${PV}/${MY_PN}-${PV}-sources.jar" diff --git a/dev-java/itext/itext-2.1.5-r2.ebuild b/dev-java/itext/itext-2.1.5-r2.ebuild index aaff82001bab..37eb1af5d233 100644 --- a/dev-java/itext/itext-2.1.5-r2.ebuild +++ b/dev-java/itext/itext-2.1.5-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="4" @@ -11,7 +11,7 @@ DISTFILE="${PN/it/iT}-src-${PV}.tar.gz" ASIANJAR="iTextAsian.jar" ASIANCMAPSJAR="iTextAsianCmaps.jar" -DESCRIPTION="A Java library that generate documents in the Portable Document Format (PDF) and/or HTML" +DESCRIPTION="Generate documents in the Portable Document Format (PDF) and/or HTML" HOMEPAGE="http://www.lowagie.com/iText/" SRC_URI="mirror://sourceforge/itext/${DISTFILE} cjk? ( mirror://sourceforge/itext/${ASIANJAR} diff --git a/dev-java/itext/itext-5.5.4-r2.ebuild b/dev-java/itext/itext-5.5.4-r2.ebuild index 7066e9a8dcd2..42f755b32a85 100644 --- a/dev-java/itext/itext-5.5.4-r2.ebuild +++ b/dev-java/itext/itext-5.5.4-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -7,7 +7,7 @@ JAVA_PKG_IUSE="doc source" inherit java-pkg-2 java-pkg-simple -DESCRIPTION="Java library that generate documents in the Portable Document Format (PDF) and/or HTML." +DESCRIPTION="Generate documents in the Portable Document Format (PDF) and/or HTML" HOMEPAGE="http://itextpdf.com" SRC_URI="mirror://sourceforge/${PN}/${P}.zip" diff --git a/dev-java/jansi/jansi-1.11-r1.ebuild b/dev-java/jansi/jansi-1.11-r1.ebuild index a8a394864ae8..521a8813c78f 100644 --- a/dev-java/jansi/jansi-1.11-r1.ebuild +++ b/dev-java/jansi/jansi-1.11-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -8,7 +8,7 @@ JAVA_PKG_IUSE="source test" inherit vcs-snapshot java-pkg-2 java-ant-2 -DESCRIPTION="Jansi is a small java library that allows you to use ANSI escape sequences in your console output" +DESCRIPTION="A library that allows you to use ANSI escape sequences in your console output" HOMEPAGE="http://jansi.fusesource.org/" SRC_URI="https://github.com/fusesource/${PN}/tarball/${PN}-project-${PV} -> ${P}.tar.gz" diff --git a/dev-java/jansi/jansi-1.5-r1.ebuild b/dev-java/jansi/jansi-1.5-r1.ebuild index 699a458fdfbe..3fdc5527a8dc 100644 --- a/dev-java/jansi/jansi-1.5-r1.ebuild +++ b/dev-java/jansi/jansi-1.5-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -6,7 +6,7 @@ JAVA_PKG_IUSE="source doc" inherit java-pkg-2 java-pkg-simple -DESCRIPTION="Jansi is a small java library that allows you to use ANSI escape sequences in your console output" +DESCRIPTION="A library that allows you to use ANSI escape sequences in your console output" HOMEPAGE="http://jansi.fusesource.org/" SRC_URI="https://github.com/fusesource/${PN}/archive/${P}.zip" diff --git a/dev-java/jansi/jansi-1.5.ebuild b/dev-java/jansi/jansi-1.5.ebuild index 1303c0cd1458..59aef5b8aae7 100644 --- a/dev-java/jansi/jansi-1.5.ebuild +++ b/dev-java/jansi/jansi-1.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -6,7 +6,7 @@ JAVA_PKG_IUSE="source test doc" inherit java-pkg-2 java-ant-2 -DESCRIPTION="Jansi is a small java library that allows you to use ANSI escape sequences in your console output" +DESCRIPTION="A library that allows you to use ANSI escape sequences in your console output" HOMEPAGE="http://jansi.fusesource.org/" SRC_URI="https://github.com/fusesource/${PN}/archive/${P}.zip" diff --git a/dev-java/jboss-marshalling/jboss-marshalling-1.3.0.ebuild b/dev-java/jboss-marshalling/jboss-marshalling-1.3.0.ebuild index 81a073ef7b56..8c31574bdf5e 100644 --- a/dev-java/jboss-marshalling/jboss-marshalling-1.3.0.ebuild +++ b/dev-java/jboss-marshalling/jboss-marshalling-1.3.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -9,7 +9,7 @@ inherit java-pkg-2 java-pkg-simple HOMEPAGE="http://jbossmarshalling.jboss.org/" SRC_URI="http://download.jboss.org/jbossmarshalling/jboss-marshalling-${PV}.CR9-sources.jar" -DESCRIPTION="Alternative compatible serialization API that fixes many JDK serialization API problems" +DESCRIPTION="Compatible alternative to the JDK serialization API" LICENSE="Apache-2.0" SLOT="0" diff --git a/dev-java/jcommon/jcommon-1.0.23.ebuild b/dev-java/jcommon/jcommon-1.0.23.ebuild index ab28455c5212..208f734743d6 100644 --- a/dev-java/jcommon/jcommon-1.0.23.ebuild +++ b/dev-java/jcommon/jcommon-1.0.23.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -8,7 +8,7 @@ JAVA_PKG_IUSE="doc source test" inherit java-pkg-2 java-ant-2 versionator MY_P=${PN}-$(replace_version_separator 3 -) -DESCRIPTION="JCommon is a collection of useful classes used by JFreeChart, JFreeReport and other projects" +DESCRIPTION="A collection of useful classes used by JFreeChart, JFreeReport and others" HOMEPAGE="http://www.jfree.org/jcommon" SRC_URI="mirror://sourceforge/jfreechart/${MY_P}.zip" diff --git a/dev-java/jcs/jcs-2.0.ebuild b/dev-java/jcs/jcs-2.0.ebuild index 0e10f7e1003b..f79f0dded211 100644 --- a/dev-java/jcs/jcs-2.0.ebuild +++ b/dev-java/jcs/jcs-2.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -9,7 +9,7 @@ inherit java-pkg-2 java-ant-2 MY_P="commons-${PN}-dist-${PV}-beta-1-src" JCS_CORE="commons-${PN}-core" -DESCRIPTION="JCS is a distributed caching system written in Java for server-side Java applications" +DESCRIPTION="A distributed caching system for server-side Java applications" HOMEPAGE="http://commons.apache.org/jcs/" SRC_URI="http://apache.mirrors.ovh.net/ftp.apache.org/dist/commons/${PN}/source/commons-${PN}-dist-${PV}-beta-1-src.tar.gz" diff --git a/dev-java/jdepend/jdepend-2.9-r5.ebuild b/dev-java/jdepend/jdepend-2.9-r5.ebuild index e51381a57480..2aab642dca3e 100644 --- a/dev-java/jdepend/jdepend-2.9-r5.ebuild +++ b/dev-java/jdepend/jdepend-2.9-r5.ebuild @@ -7,7 +7,7 @@ JAVA_PKG_IUSE="doc source" inherit java-pkg-2 java-ant-2 -DESCRIPTION="JDepend traverses Java class file directories and generates design quality metrics per package" +DESCRIPTION="Traverses Java class file directories and generates design quality metrics" HOMEPAGE="http://www.clarkware.com/software/JDepend.html" SRC_URI="http://www.clarkware.com/software/${P}.zip" diff --git a/dev-java/jisp/jisp-2.5.1-r3.ebuild b/dev-java/jisp/jisp-2.5.1-r3.ebuild index c7d1c35ca3cf..6577ef618f4d 100644 --- a/dev-java/jisp/jisp-2.5.1-r3.ebuild +++ b/dev-java/jisp/jisp-2.5.1-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -7,7 +7,7 @@ JAVA_PKG_IUSE="doc source" inherit java-pkg-2 java-pkg-simple eutils -DESCRIPTION="Java Indexed Serialization Package: A small, embedded database engine written in Pure Java" +DESCRIPTION="Java Indexed Serialization Package: A small, embedded database engine" HOMEPAGE="http://www.coyotegulch.com/products/jisp/" # TODO contact upstream about hosting jisp-2.5 on their site. diff --git a/dev-java/jreleaseinfo/jreleaseinfo-1.3.0-r2.ebuild b/dev-java/jreleaseinfo/jreleaseinfo-1.3.0-r2.ebuild index fa4541f84f2d..104f130ffd4f 100644 --- a/dev-java/jreleaseinfo/jreleaseinfo-1.3.0-r2.ebuild +++ b/dev-java/jreleaseinfo/jreleaseinfo-1.3.0-r2.ebuild @@ -1,12 +1,12 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" inherit java-pkg-2 java-ant-2 -DESCRIPTION="Ant Task for build-time creation of Java source file with version, build number or other info" -HOMEPAGE="http://${PN}.sourceforge.net/" +DESCRIPTION="Ant Task for build-time creation of Java source file with version or other info" +HOMEPAGE="http://jreleaseinfo.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}-src.zip" LICENSE="Apache-2.0" diff --git a/dev-java/jvmstat/jvmstat-3.0.ebuild b/dev-java/jvmstat/jvmstat-3.0.ebuild index 9ca317db9bdc..9e79f7c6a476 100644 --- a/dev-java/jvmstat/jvmstat-3.0.ebuild +++ b/dev-java/jvmstat/jvmstat-3.0.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 inherit java-pkg-2 versionator MY_PV=$(replace_version_separator 1 '_') -DESCRIPTION="Monitoring APIs and tools for monitoring the performance of the JVM in production environments" +DESCRIPTION="Monitoring APIs and tools for monitoring the performance of the JVM" HOMEPAGE="http://java.sun.com/performance/jvmstat/" SRC_URI="jvmstat-${MY_PV}.zip" diff --git a/dev-java/lucene/lucene-3.5.0.ebuild b/dev-java/lucene/lucene-3.5.0.ebuild index 85cc9362c52a..0a804109766c 100644 --- a/dev-java/lucene/lucene-3.5.0.ebuild +++ b/dev-java/lucene/lucene-3.5.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="3" @@ -9,8 +9,7 @@ JAVA_PKG_BSFIX_NAME="build.xml common-build.xml contrib-build.xml" inherit java-pkg-2 java-ant-2 -DESCRIPTION="High-performance, full-featured text search engine library -written entirely in Java" +DESCRIPTION="High-performance, full-featured text search engine written entirely in Java" HOMEPAGE="http://lucene.apache.org" SRC_URI="mirror://apache/lucene/java/${PV}/${P}-src.tgz" LICENSE="Apache-2.0" diff --git a/dev-java/lucene/lucene-3.6.2.ebuild b/dev-java/lucene/lucene-3.6.2.ebuild index ecdf10a6fac8..a760e4fc1978 100644 --- a/dev-java/lucene/lucene-3.6.2.ebuild +++ b/dev-java/lucene/lucene-3.6.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="3" @@ -9,8 +9,7 @@ JAVA_PKG_BSFIX_NAME="build.xml common-build.xml contrib-build.xml" inherit java-pkg-2 java-ant-2 -DESCRIPTION="High-performance, full-featured text search engine library -written entirely in Java" +DESCRIPTION="High-performance, full-featured text search engine written entirely in Java" HOMEPAGE="http://lucene.apache.org" SRC_URI="mirror://apache/lucene/java/${PV}/${P}-src.tgz" LICENSE="Apache-2.0" diff --git a/dev-java/lzmajio/lzmajio-0.95-r1.ebuild b/dev-java/lzmajio/lzmajio-0.95-r1.ebuild index 29d94eb20569..a58472f400d9 100644 --- a/dev-java/lzmajio/lzmajio-0.95-r1.ebuild +++ b/dev-java/lzmajio/lzmajio-0.95-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -6,7 +6,7 @@ JAVA_PKG_IUSE="doc source" inherit java-pkg-2 java-pkg-simple -DESCRIPTION="Implementations of LzmaInputStream/LzmaOutputStream interacting with underlying LZMA en-/decoders" +DESCRIPTION="LzmaInputStream/LzmaOutputStream interacting with underlying LZMA en-/decoders" HOMEPAGE="http://contrapunctus.net/league/haques/lzmajio/" SRC_URI="http://comsci.liu.edu/~league/dist/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" diff --git a/dev-java/nailgun/nailgun-0.7.1-r1.ebuild b/dev-java/nailgun/nailgun-0.7.1-r1.ebuild index e025d3c7ba4d..53243b83e508 100644 --- a/dev-java/nailgun/nailgun-0.7.1-r1.ebuild +++ b/dev-java/nailgun/nailgun-0.7.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="2" @@ -7,7 +7,7 @@ JAVA_PKG_IUSE="doc source" inherit java-pkg-2 java-ant-2 -DESCRIPTION="a client, protocol, and server for running Java apps without incurring the JVM startup overhead" +DESCRIPTION="A client, protocol and server for running without incurring JVM startup overhead" HOMEPAGE="http://martiansoftware.com/nailgun/index.html" SRC_URI="mirror://sourceforge/${PN}/${PN}-src-${PV}.zip" diff --git a/dev-java/netty-buffer/netty-buffer-4.0.21.ebuild b/dev-java/netty-buffer/netty-buffer-4.0.21.ebuild index 5815d2967900..44d1a7d3625f 100644 --- a/dev-java/netty-buffer/netty-buffer-4.0.21.ebuild +++ b/dev-java/netty-buffer/netty-buffer-4.0.21.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -9,7 +9,7 @@ inherit java-pkg-2 java-ant-2 MY_PN="netty" MY_P="${MY_PN}-${PV}" -DESCRIPTION="Async event-driven framework for rapid development of high performance network applications" +DESCRIPTION="Async event-driven framework for high performance network applications" HOMEPAGE="http://netty.io/" SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/${MY_P}.Final.tar.gz" diff --git a/dev-java/netty-common/netty-common-4.0.21.ebuild b/dev-java/netty-common/netty-common-4.0.21.ebuild index 9c01ccf4c53f..188eed46074b 100644 --- a/dev-java/netty-common/netty-common-4.0.21.ebuild +++ b/dev-java/netty-common/netty-common-4.0.21.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -9,7 +9,7 @@ inherit java-pkg-2 java-pkg-simple MY_PN="netty" MY_P="${MY_PN}-${PV}" -DESCRIPTION="Async event-driven framework for rapid development of high performance network applications" +DESCRIPTION="Async event-driven framework for high performance network applications" HOMEPAGE="http://netty.io/" SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/${MY_P}.Final.tar.gz" diff --git a/dev-java/netty-transport/netty-transport-4.0.21-r1.ebuild b/dev-java/netty-transport/netty-transport-4.0.21-r1.ebuild index de1a597cf723..d026de50d1c4 100644 --- a/dev-java/netty-transport/netty-transport-4.0.21-r1.ebuild +++ b/dev-java/netty-transport/netty-transport-4.0.21-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -9,7 +9,7 @@ inherit java-pkg-2 java-ant-2 MY_PN="netty" MY_P="${MY_PN}-${PV}" -DESCRIPTION="Async event-driven framework for rapid development of high performance network applications" +DESCRIPTION="Async event-driven framework for high performance network applications" HOMEPAGE="http://netty.io/" SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/${MY_P}.Final.tar.gz" diff --git a/dev-java/prefuse/prefuse-20071021_beta.ebuild b/dev-java/prefuse/prefuse-20071021_beta.ebuild index 563f4fdaf798..b0cee2e06355 100644 --- a/dev-java/prefuse/prefuse-20071021_beta.ebuild +++ b/dev-java/prefuse/prefuse-20071021_beta.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -9,7 +9,7 @@ inherit java-pkg-2 java-ant-2 MY_PV=${PV/_beta/} MY_P=${PN}-beta-${MY_PV} -DESCRIPTION="UI toolkit for building highly interactive visualizations of structured and unstructured data" +DESCRIPTION="UI toolkit for building highly interactive visualizations of un-/structured data" SRC_URI="mirror://sourceforge/prefuse/${MY_P}.zip" HOMEPAGE="http://prefuse.org" LICENSE="BSD" diff --git a/dev-java/rome/rome-0.9-r2.ebuild b/dev-java/rome/rome-0.9-r2.ebuild index bdeb19f9bd88..bcd44fc160d4 100644 --- a/dev-java/rome/rome-0.9-r2.ebuild +++ b/dev-java/rome/rome-0.9-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -6,7 +6,7 @@ JAVA_PKG_IUSE="doc source test" inherit java-pkg-2 java-ant-2 -DESCRIPTION="Open source Atom/RSS Java utilities that make it easy to work in Java with most syndication formats" +DESCRIPTION="Java framework for RSS and Atom feeds" HOMEPAGE="https://java.net/projects/rome" SRC_URI="https://rome.dev.java.net/source/browse/*checkout*/rome/www/dist/${P}-src.zip" LICENSE="Apache-2.0" diff --git a/dev-java/sblim-cim-client/sblim-cim-client-2.2.1-r1.ebuild b/dev-java/sblim-cim-client/sblim-cim-client-2.2.1-r1.ebuild index 1c913ecc1d14..952d9e55d464 100644 --- a/dev-java/sblim-cim-client/sblim-cim-client-2.2.1-r1.ebuild +++ b/dev-java/sblim-cim-client/sblim-cim-client-2.2.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -7,7 +7,7 @@ JAVA_PKG_IUSE="doc source test" inherit java-pkg-2 java-ant-2 eutils -DESCRIPTION="A WBEM services client that includes an IETF RFC 2614 compliant SLP client for CIM service discovery" +DESCRIPTION="A WBEM services client that includes an SLP client for CIM service discovery" HOMEPAGE="http://sblim.wiki.sourceforge.net/CimClient" SRC_URI="mirror://sourceforge/sblim/${PN}2-${PV}-src.zip" diff --git a/dev-java/sblim-cim-client/sblim-cim-client-2.2.1.ebuild b/dev-java/sblim-cim-client/sblim-cim-client-2.2.1.ebuild index 458a49941128..93c55739e841 100644 --- a/dev-java/sblim-cim-client/sblim-cim-client-2.2.1.ebuild +++ b/dev-java/sblim-cim-client/sblim-cim-client-2.2.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -7,7 +7,7 @@ JAVA_PKG_IUSE="doc source test" inherit java-pkg-2 java-ant-2 -DESCRIPTION="A WBEM services client that includes an IETF RFC 2614 compliant SLP client for CIM service discovery" +DESCRIPTION="A WBEM services client that includes an SLP client for CIM service discovery" HOMEPAGE="http://sblim.wiki.sourceforge.net/CimClient" SRC_URI="mirror://sourceforge/sblim/${PN}2-${PV}-src.zip" diff --git a/dev-java/spring-aop/spring-aop-3.2.4.ebuild b/dev-java/spring-aop/spring-aop-3.2.4.ebuild index f4a57be18c20..66f482a9c876 100644 --- a/dev-java/spring-aop/spring-aop-3.2.4.ebuild +++ b/dev-java/spring-aop/spring-aop-3.2.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -7,7 +7,7 @@ JAVA_PKG_IUSE="doc source test" inherit java-pkg-2 java-ant-2 -DESCRIPTION="A comprehensive programming and configuration model for modern Java-based enterprise applications" +DESCRIPTION="A comprehensive programming and configuration model for enterprise applications" HOMEPAGE="http://www.springsource.org/spring-framework" SRC_URI="https://github.com/SpringSource/spring-framework/archive/v${PV}.RELEASE.tar.gz -> spring-framework-${PV}.tar.gz https://dev.gentoo.org/~ercpe/distfiles/dev-java/spring-framework/spring-framework-${PV}-buildscripts.tar.bz2" diff --git a/dev-java/spring-beans/spring-beans-3.2.4.ebuild b/dev-java/spring-beans/spring-beans-3.2.4.ebuild index 466cd5490056..faa27415ff95 100644 --- a/dev-java/spring-beans/spring-beans-3.2.4.ebuild +++ b/dev-java/spring-beans/spring-beans-3.2.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -7,7 +7,7 @@ JAVA_PKG_IUSE="doc source test" inherit java-pkg-2 java-ant-2 -DESCRIPTION="A comprehensive programming and configuration model for modern Java-based enterprise applications" +DESCRIPTION="A comprehensive programming and configuration model for enterprise applications" HOMEPAGE="http://www.springsource.org/spring-framework" SRC_URI="https://github.com/SpringSource/spring-framework/archive/v${PV}.RELEASE.tar.gz -> spring-framework-${PV}.tar.gz https://dev.gentoo.org/~ercpe/distfiles/dev-java/spring-framework/spring-framework-${PV}-buildscripts.tar.bz2" diff --git a/dev-java/spring-core/spring-core-3.2.4.ebuild b/dev-java/spring-core/spring-core-3.2.4.ebuild index fdf900c684cf..6d952cd9bc70 100644 --- a/dev-java/spring-core/spring-core-3.2.4.ebuild +++ b/dev-java/spring-core/spring-core-3.2.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -8,7 +8,7 @@ WANT_ANT_TASKS="dev-java/jarjar:1 dev-java/ant-junit:0" inherit java-pkg-2 java-ant-2 -DESCRIPTION="A comprehensive programming and configuration model for modern enterprise applications" +DESCRIPTION="A comprehensive programming and configuration model for enterprise applications" HOMEPAGE="http://www.springsource.org/spring-framework" SRC_URI="https://github.com/SpringSource/spring-framework/archive/v${PV}.RELEASE.tar.gz -> spring-framework-${PV}.tar.gz https://dev.gentoo.org/~ercpe/distfiles/dev-java/spring-framework/spring-framework-${PV}-buildscripts.tar.bz2" diff --git a/dev-java/spring-expression/spring-expression-3.2.4.ebuild b/dev-java/spring-expression/spring-expression-3.2.4.ebuild index 2d366ebdddd9..28c4fb285110 100644 --- a/dev-java/spring-expression/spring-expression-3.2.4.ebuild +++ b/dev-java/spring-expression/spring-expression-3.2.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -7,7 +7,7 @@ JAVA_PKG_IUSE="doc source test" inherit java-pkg-2 java-ant-2 -DESCRIPTION="A comprehensive programming and configuration model for modern Java-based enterprise applications" +DESCRIPTION="A comprehensive programming and configuration model for enterprise applications" HOMEPAGE="http://www.springsource.org/spring-framework" SRC_URI="https://github.com/SpringSource/spring-framework/archive/v${PV}.RELEASE.tar.gz -> spring-framework-${PV}.tar.gz https://dev.gentoo.org/~ercpe/distfiles/dev-java/spring-framework/spring-framework-${PV}-buildscripts.tar.bz2" diff --git a/dev-java/spring-instrument/spring-instrument-3.2.4.ebuild b/dev-java/spring-instrument/spring-instrument-3.2.4.ebuild index f72e963f9e7c..5e393cf162e4 100644 --- a/dev-java/spring-instrument/spring-instrument-3.2.4.ebuild +++ b/dev-java/spring-instrument/spring-instrument-3.2.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -7,7 +7,7 @@ JAVA_PKG_IUSE="doc source test" inherit java-pkg-2 java-ant-2 -DESCRIPTION="A comprehensive programming and configuration model for modern Java-based enterprise applications" +DESCRIPTION="A comprehensive programming and configuration model for enterprise applications" HOMEPAGE="http://www.springsource.org/spring-framework" SRC_URI="https://github.com/SpringSource/spring-framework/archive/v${PV}.RELEASE.tar.gz -> spring-framework-${PV}.tar.gz https://dev.gentoo.org/~ercpe/distfiles/dev-java/spring-framework/spring-framework-${PV}-buildscripts.tar.bz2" diff --git a/dev-java/stax/stax-1.2.0.ebuild b/dev-java/stax/stax-1.2.0.ebuild index bbe00fb8a693..3e2a0d3857f9 100644 --- a/dev-java/stax/stax-1.2.0.ebuild +++ b/dev-java/stax/stax-1.2.0.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 JAVA_PKG_IUSE="doc source" inherit java-pkg-2 java-ant-2 -DESCRIPTION="A standard XML processing API that allows you to stream XML data from and to your application" +DESCRIPTION="A standard XML processing API that allows you to stream XML data" HOMEPAGE="http://stax.codehaus.org/" SRC_URI="http://dist.codehaus.org/${PN}/distributions/${PN}-src-${PV}.zip" diff --git a/dev-java/sun-jmx/sun-jmx-1.2.1-r3.ebuild b/dev-java/sun-jmx/sun-jmx-1.2.1-r3.ebuild index d6a1f17070fe..4966ca743969 100644 --- a/dev-java/sun-jmx/sun-jmx-1.2.1-r3.ebuild +++ b/dev-java/sun-jmx/sun-jmx-1.2.1-r3.ebuild @@ -8,7 +8,7 @@ JAVA_PKG_IUSE="doc examples" inherit java-pkg-2 MY_P=jmx-${PV//./_} -DESCRIPTION="Java Management Extensions for managing and monitoring devices, applications, and services" +DESCRIPTION="Java Management Extensions for managing and monitoring" HOMEPAGE="http://www.oracle.com/technetwork/java/javase/tech/javamanagement-140525.html" SRC_URI="${MY_P}-ri.zip" diff --git a/dev-java/xalan/xalan-2.7.2.ebuild b/dev-java/xalan/xalan-2.7.2.ebuild index f3784c03970d..f0dcb822cd5c 100644 --- a/dev-java/xalan/xalan-2.7.2.ebuild +++ b/dev-java/xalan/xalan-2.7.2.ebuild @@ -17,7 +17,7 @@ MY_P="${MY_PN}_${MY_PV}" SRC_DIST="${MY_P}-src.tar.gz" BIN_DIST="${MY_P}-bin.zip" -DESCRIPTION="Apache's XSLT processor for transforming XML documents into HTML, text, or other XML document types" +DESCRIPTION="Transforming XML documents into HTML, text, or other XML document types" HOMEPAGE="http://xalan.apache.org/" SRC_URI="mirror://apache/${PN}/${MY_PN}/source/${SRC_DIST} doc? ( mirror://apache/${PN}/${MY_PN}/binaries/${BIN_DIST} )" diff --git a/dev-java/xerces/xerces-2.11.0-r1.ebuild b/dev-java/xerces/xerces-2.11.0-r1.ebuild index 54739f5f82e1..ba148040517c 100644 --- a/dev-java/xerces/xerces-2.11.0-r1.ebuild +++ b/dev-java/xerces/xerces-2.11.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -8,7 +8,7 @@ inherit eutils versionator java-pkg-2 java-ant-2 DIST_PN="Xerces-J" SRC_PV="$(replace_all_version_separators _ )" -DESCRIPTION="The next generation of high performance, fully compliant XML parsers in the Apache Xerces family" +DESCRIPTION="The next generation of high performance, fully compliant XML parsers" HOMEPAGE="http://xml.apache.org/xerces2-j/index.html" SRC_URI="mirror://apache/${PN}/j/${DIST_PN}-src.${PV}.tar.gz" diff --git a/dev-java/xerces/xerces-2.11.0.ebuild b/dev-java/xerces/xerces-2.11.0.ebuild index d0881708a70a..005197c35e05 100644 --- a/dev-java/xerces/xerces-2.11.0.ebuild +++ b/dev-java/xerces/xerces-2.11.0.ebuild @@ -9,7 +9,7 @@ inherit eutils versionator java-pkg-2 java-ant-2 DIST_PN="Xerces-J" SRC_PV="$(replace_all_version_separators _ )" -DESCRIPTION="The next generation of high performance, fully compliant XML parsers in the Apache Xerces family" +DESCRIPTION="The next generation of high performance, fully compliant XML parsers" HOMEPAGE="http://xml.apache.org/xerces2-j/index.html" SRC_URI="mirror://apache/${PN}/j/${DIST_PN}-src.${PV}.tar.gz" diff --git a/dev-java/xml-commons-external/xml-commons-external-1.3.04.ebuild b/dev-java/xml-commons-external/xml-commons-external-1.3.04.ebuild index c19fdaa61e34..3fc2c0064d0b 100644 --- a/dev-java/xml-commons-external/xml-commons-external-1.3.04.ebuild +++ b/dev-java/xml-commons-external/xml-commons-external-1.3.04.ebuild @@ -5,7 +5,7 @@ JAVA_PKG_IUSE="doc source" inherit java-pkg-2 java-ant-2 -DESCRIPTION="An Apache-hosted set of externally-defined standards interfaces, namely DOM, SAX, and JAXP" +DESCRIPTION="Externally-defined set of standard interfaces, namely DOM, SAX, and JAXP" HOMEPAGE="http://xml.apache.org/commons/" SRC_URI="mirror://gentoo/${P}.tar.bz2" # upstream source tar.gz is missing build.xml and other stuff, so we get it like this diff --git a/dev-java/xml-commons-external/xml-commons-external-1.4.01.ebuild b/dev-java/xml-commons-external/xml-commons-external-1.4.01.ebuild index 8e5aeae38d73..5ac7fc5228ee 100644 --- a/dev-java/xml-commons-external/xml-commons-external-1.4.01.ebuild +++ b/dev-java/xml-commons-external/xml-commons-external-1.4.01.ebuild @@ -7,7 +7,7 @@ JAVA_PKG_IUSE="doc source" inherit java-pkg-2 java-ant-2 -DESCRIPTION="An Apache-hosted set of externally-defined standards interfaces, namely DOM, SAX, and JAXP" +DESCRIPTION="Externally-defined set of standard interfaces, namely DOM, SAX, and JAXP" HOMEPAGE="http://xml.apache.org/commons/" SRC_URI="https://dev.gentoo.org/~sera/distfiles/${P}.tar.bz2" # upstream source tar.gz is missing build.xml and other stuff, so we get it like this diff --git a/dev-lang/confluence/confluence-0.10.6.ebuild b/dev-lang/confluence/confluence-0.10.6.ebuild index 4fe4a15e4dbb..2743ff5f6152 100644 --- a/dev-lang/confluence/confluence-0.10.6.ebuild +++ b/dev-lang/confluence/confluence-0.10.6.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="2" inherit eutils -DESCRIPTION="Functional programming language for reactive system design (digital logic, hard-real-time software)" +DESCRIPTION="Functional programming language for reactive system design" HOMEPAGE="http://www.funhdl.org/wiki/doku.php?id=confluence" SRC_URI="http://www.funhdl.org/download/${P}.tar.gz" diff --git a/dev-lang/erlang/erlang-17.5.ebuild b/dev-lang/erlang/erlang-17.5.ebuild index 5e377fa13a8b..f2c7821224ef 100644 --- a/dev-lang/erlang/erlang-17.5.ebuild +++ b/dev-lang/erlang/erlang-17.5.ebuild @@ -9,7 +9,7 @@ inherit autotools elisp-common eutils java-pkg-opt-2 multilib systemd versionato # NOTE: If you need symlinks for binaries please tell maintainers or # open up a bug to let it be created. -DESCRIPTION="Erlang programming language, runtime environment, and large collection of libraries" +DESCRIPTION="Erlang programming language, runtime environment and libraries (OTP)" HOMEPAGE="http://www.erlang.org/" SRC_URI="http://www.erlang.org/download/otp_src_${PV}.tar.gz http://erlang.org/download/otp_doc_man_${PV}.tar.gz diff --git a/dev-lang/gprolog/gprolog-1.4.4.ebuild b/dev-lang/gprolog/gprolog-1.4.4.ebuild index e121637f98a5..7116f2c8c4db 100644 --- a/dev-lang/gprolog/gprolog-1.4.4.ebuild +++ b/dev-lang/gprolog/gprolog-1.4.4.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=4 inherit eutils flag-o-matic multilib -DESCRIPTION="GNU Prolog is a native Prolog compiler with constraint solving over finite domains (FD)" +DESCRIPTION="A native Prolog compiler with constraint solving over finite domains (FD)" HOMEPAGE="http://www.gprolog.org/" SRC_URI="mirror://gnu/gprolog/${P}.tar.gz" S="${WORKDIR}"/${P} diff --git a/dev-lang/parrot/parrot-7.1.0.ebuild b/dev-lang/parrot/parrot-7.1.0.ebuild index e4ac48c365be..21858f8b882d 100644 --- a/dev-lang/parrot/parrot-7.1.0.ebuild +++ b/dev-lang/parrot/parrot-7.1.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -8,7 +8,7 @@ inherit eutils multilib # weird failures RESTRICT="test" -DESCRIPTION="Virtual machine designed to efficiently compile and execute bytecode for dynamic languages" +DESCRIPTION="Virtual machine designed to 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" diff --git a/dev-lang/parrot/parrot-7.11.0.ebuild b/dev-lang/parrot/parrot-7.11.0.ebuild index 8c805442553c..e81e39db8695 100644 --- a/dev-lang/parrot/parrot-7.11.0.ebuild +++ b/dev-lang/parrot/parrot-7.11.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -8,7 +8,7 @@ inherit eutils multilib # weird failures RESTRICT="test" -DESCRIPTION="Virtual machine designed to efficiently compile and execute bytecode for dynamic languages" +DESCRIPTION="Virtual machine designed to 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" diff --git a/dev-lang/parrot/parrot-7.5.0.ebuild b/dev-lang/parrot/parrot-7.5.0.ebuild index 8c805442553c..e81e39db8695 100644 --- a/dev-lang/parrot/parrot-7.5.0.ebuild +++ b/dev-lang/parrot/parrot-7.5.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -8,7 +8,7 @@ inherit eutils multilib # weird failures RESTRICT="test" -DESCRIPTION="Virtual machine designed to efficiently compile and execute bytecode for dynamic languages" +DESCRIPTION="Virtual machine designed to 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" diff --git a/dev-lang/parrot/parrot-8.1.0.ebuild b/dev-lang/parrot/parrot-8.1.0.ebuild index 8c805442553c..e81e39db8695 100644 --- a/dev-lang/parrot/parrot-8.1.0.ebuild +++ b/dev-lang/parrot/parrot-8.1.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -8,7 +8,7 @@ inherit eutils multilib # weird failures RESTRICT="test" -DESCRIPTION="Virtual machine designed to efficiently compile and execute bytecode for dynamic languages" +DESCRIPTION="Virtual machine designed to 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" diff --git a/dev-libs/crypto++/Manifest b/dev-libs/crypto++/Manifest index c70d7fdf298d..ab8c8631acdb 100644 --- a/dev-libs/crypto++/Manifest +++ b/dev-libs/crypto++/Manifest @@ -1,2 +1 @@ -DIST cryptopp562.zip 1137964 SHA256 5cbfd2fcb4a6b3aab35902e2e0f3b59d9171fee12b3fc2b363e1801dfec53574 SHA512 016ca7ebad1091d67ad0bc5ccb7549d96d4af6b563d9d5a612cae27b3d1a3514c41b954e319fed91c820e8c701e3aa43da186e0864bf959ce4afd1539248ebbe WHIRLPOOL e31203da48a31b09e6ea48a75aa64fe5fd27fd370a1a609c4387526f09daab7582716563b688c0c81a8c3b200b8ffa7bdb2b981e5911640e5f1c172d6027f6ac DIST cryptopp565.zip 4220843 SHA256 a75ef486fe3128008bbb201efee3dcdcffbe791120952910883b26337ec32c34 SHA512 f13718d02ca69b0129aaf9e767c9d2e0333aa7538355f9c63d9eaf1ff369062084a18dc01489439ebf37797b3ea81b01beb072057d47ec962bfb824ddc72abc7 WHIRLPOOL 376e8d7ad497d03f19542fd183181f26c83f38dfef800529cb5d5ce7238978f005d36e3e7cce63322af9b7dfc3a69fdb615c435bcf092bbd6abf6781dfd6d8a3 diff --git a/dev-libs/crypto++/crypto++-5.6.2-r3.ebuild b/dev-libs/crypto++/crypto++-5.6.2-r3.ebuild deleted file mode 100644 index ccdb246f40f6..000000000000 --- a/dev-libs/crypto++/crypto++-5.6.2-r3.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils flag-o-matic multilib toolchain-funcs autotools - -DESCRIPTION="C++ class library of cryptographic schemes" -HOMEPAGE="http://cryptopp.com" -SRC_URI="mirror://sourceforge/cryptopp/cryptopp${PV//.}.zip" - -LICENSE="Boost-1.0" -SLOT="0" -KEYWORDS="alpha amd64 ~arm hppa ppc ppc64 sparc x86 ~x64-macos" -IUSE="static-libs" - -DEPEND="app-arch/unzip - sys-devel/libtool" - -S="${WORKDIR}" - -src_prepare() { - epatch "${FILESDIR}"/${P}-r1-make.patch - epatch "${FILESDIR}"/${P}-cve-2015-2141.patch - epatch "${FILESDIR}"/${P}-c++11.patch - - # Generate our own libtool script for building. - cat <<-EOF > configure.ac - AC_INIT(lt, 0) - AM_INIT_AUTOMAKE - AC_PROG_CXX - LT_INIT - AC_CONFIG_FILES(Makefile) - AC_OUTPUT - EOF - touch NEWS README AUTHORS ChangeLog Makefile.am - eautoreconf -} - -src_configure() { - econf $(use_enable static-libs static) -} - -src_compile() { - # higher optimizations cause problems - replace-flags -O? -O1 - filter-flags -fomit-frame-pointer - # ASM isn't Darwin/Mach-O ready, #479554, buildsys doesn't grok CPPFLAGS - [[ ${CHOST} == *-darwin* ]] && append-flags -DCRYPTOPP_DISABLE_X86ASM - - emake -f GNUmakefile CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}" LIBDIR="$(get_libdir)" PREFIX="${EPREFIX}/usr" LIBTOOL="./libtool" -} - -src_test() { - # ensure that all test vectors have Unix line endings - local file - for file in TestVectors/* ; do - edos2unix ${file} - done - - if ! emake CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}" test ; then - eerror "Crypto++ self-tests failed." - eerror "Try to remove some optimization flags and reemerge Crypto++." - die "emake test failed" - fi -} - -src_install() { - emake DESTDIR="${D}" LIBDIR="$(get_libdir)" PREFIX="${EPREFIX}/usr" LIBTOOL="./libtool" install - use static-libs || rm -f "${ED}"/usr/$(get_libdir)/*.la -} diff --git a/dev-libs/libcroco/Manifest b/dev-libs/libcroco/Manifest index 472c62d1d943..baf105ae9c90 100644 --- a/dev-libs/libcroco/Manifest +++ b/dev-libs/libcroco/Manifest @@ -1 +1,2 @@ DIST libcroco-0.6.11.tar.xz 477312 SHA256 132b528a948586b0dfa05d7e9e059901bca5a3be675b6071a90a90b81ae5a056 SHA512 441b9c6d9b6acd4ff908100573c6f24bcf46a20ec94360bdcf4765e37a7d45dc59e6a0889917f3486503b274d05cd79a63178e74d029209c16b8e3351a1160da WHIRLPOOL e4874167bd8d1336ed2ad6180d7780962da0f84ac09b24652105baea34a46769881f8112900e606312bf1d7c01045d8cfc187c8c327bbd834bba70a982edbcb9 +DIST libcroco-0.6.12.tar.xz 482028 SHA256 ddc4b5546c9fb4280a5017e2707fbd4839034ed1aba5b7d4372212f34f84f860 SHA512 af9a171d5ccded255b57f170576e67155f12fa0f61ab3e379e907975f77afc37e82e22772c6019b2897cffc15b2425faf3ccfda92b1a45b23eda2519debabeb6 WHIRLPOOL b3626257b56b9e104307cd3da01366a5eb929d0afc6669a80f4a94748c434afdc8c3828e008ab786ab28ca72d799a79804e9a296d9428504829521516366e039 diff --git a/dev-libs/libcroco/libcroco-0.6.12.ebuild b/dev-libs/libcroco/libcroco-0.6.12.ebuild new file mode 100644 index 000000000000..39ed01b20483 --- /dev/null +++ b/dev-libs/libcroco/libcroco-0.6.12.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="5" +GCONF_DEBUG="no" +GNOME2_LA_PUNT="yes" + +inherit gnome2 multilib-minimal + +DESCRIPTION="Generic Cascading Style Sheet (CSS) parsing and manipulation toolkit" +HOMEPAGE="https://git.gnome.org/browse/libcroco/" + +LICENSE="LGPL-2" +SLOT="0.6" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +IUSE="test" + +RDEPEND=" + >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}] + >=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}] +" +DEPEND="${RDEPEND} + dev-util/gtk-doc-am + >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] +" + +src_prepare() { + if ! use test; then + # don't waste time building tests + sed 's/^\(SUBDIRS .*\=.*\)tests\(.*\)$/\1\2/' -i Makefile.am Makefile.in \ + || die "sed failed" + fi + + gnome2_src_prepare +} + +multilib_src_configure() { + ECONF_SOURCE=${S} \ + gnome2_src_configure \ + --disable-static \ + $([[ ${CHOST} == *-darwin* ]] && echo --disable-Bsymbolic) + + if multilib_is_native_abi; then + ln -s "${S}"/docs/reference/html docs/reference/html || die + fi +} + +multilib_src_install() { + gnome2_src_install +} + +multilib_src_install_all() { + DOCS="AUTHORS ChangeLog HACKING NEWS README TODO" + einstalldocs +} diff --git a/dev-php/PEAR-Math_BigInteger/PEAR-Math_BigInteger-1.0.3-r1.ebuild b/dev-php/PEAR-Math_BigInteger/PEAR-Math_BigInteger-1.0.3-r1.ebuild new file mode 100644 index 000000000000..5aad8825179c --- /dev/null +++ b/dev-php/PEAR-Math_BigInteger/PEAR-Math_BigInteger-1.0.3-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +MY_PN="${PN/PEAR-/}" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Pure-PHP arbitrary precision integer arithmetic library" +HOMEPAGE="http://pear.php.net/package/${MY_PN} + http://phpseclib.sourceforge.net/documentation/math.html" +SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz" +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" +DEPEND="" +RDEPEND="dev-lang/php:*" + +S="${WORKDIR}/${MY_P}" + +src_install() { + insinto /usr/share/php + doins -r Math + + dodoc demo/{benchmark,demo}.php +} diff --git a/dev-php/PEAR-Math_BigInteger/PEAR-Math_BigInteger-1.0.3.ebuild b/dev-php/PEAR-Math_BigInteger/PEAR-Math_BigInteger-1.0.3.ebuild deleted file mode 100644 index 10f66b77e0ef..000000000000 --- a/dev-php/PEAR-Math_BigInteger/PEAR-Math_BigInteger-1.0.3.ebuild +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit php-pear-r1 - -DESCRIPTION="Pure-PHP arbitrary precision integer arithmetic library" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="" - -RDEPEND=">=dev-lang/php-5.3.0" diff --git a/dev-php/PEAR-Math_BigInteger/metadata.xml b/dev-php/PEAR-Math_BigInteger/metadata.xml index aca42932b833..04d9b1663bd1 100644 --- a/dev-php/PEAR-Math_BigInteger/metadata.xml +++ b/dev-php/PEAR-Math_BigInteger/metadata.xml @@ -1,8 +1,8 @@ - - php-bugs@gentoo.org - PHP - + + php-bugs@gentoo.org + PHP + diff --git a/dev-php/pecl-ssh2/pecl-ssh2-0.13-r1.ebuild b/dev-php/pecl-ssh2/pecl-ssh2-0.13-r2.ebuild similarity index 64% rename from dev-php/pecl-ssh2/pecl-ssh2-0.13-r1.ebuild rename to dev-php/pecl-ssh2/pecl-ssh2-0.13-r2.ebuild index f41851e9648d..df76f8cc3b8d 100644 --- a/dev-php/pecl-ssh2/pecl-ssh2-0.13-r1.ebuild +++ b/dev-php/pecl-ssh2/pecl-ssh2-0.13-r2.ebuild @@ -1,13 +1,11 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 PHP_EXT_NAME="ssh2" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="no" -USE_PHP="php7-0 php5-6" +USE_PHP="php5-6 php7-0 php7-1" inherit php-ext-pecl-r3 @@ -18,10 +16,10 @@ LICENSE="PHP-3.01" SLOT="0" IUSE="" KEYWORDS="~amd64 ~x86" -DEPEND=">=net-libs/libssh2-1.2" +DEPEND="net-libs/libssh2" RDEPEND="${DEPEND}" -PHP_EXT_ECONF_ARGS="" -PDEPEND="php_targets_php7-0? ( dev-php/pecl-ssh2:7 )" +PDEPEND="php_targets_php7-0? ( dev-php/pecl-ssh2:7 ) + php_targets_php7-1? ( dev-php/pecl-ssh2:7 )" src_prepare(){ if use php_targets_php5-6 ; then diff --git a/dev-php/pecl-ssh2/pecl-ssh2-1.0.ebuild b/dev-php/pecl-ssh2/pecl-ssh2-1.0-r1.ebuild similarity index 57% rename from dev-php/pecl-ssh2/pecl-ssh2-1.0.ebuild rename to dev-php/pecl-ssh2/pecl-ssh2-1.0-r1.ebuild index 43870a60730d..28dc40b3371e 100644 --- a/dev-php/pecl-ssh2/pecl-ssh2-1.0.ebuild +++ b/dev-php/pecl-ssh2/pecl-ssh2-1.0-r1.ebuild @@ -1,17 +1,15 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 PHP_EXT_NAME="ssh2" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="no" -USE_PHP="php7-0 php5-6" +USE_PHP="php5-6 php7-0 php7-1" inherit php-ext-pecl-r3 -USE_PHP="php7-0" +USE_PHP="php7-0 php7-1" DESCRIPTION="PHP bindings for the libssh2 library" LICENSE="PHP-3.01" @@ -19,11 +17,11 @@ SLOT="7" IUSE="" KEYWORDS="~amd64 ~x86" DEPEND=">=net-libs/libssh2-1.2" -RDEPEND="${DEPEND} php_targets_php5-6? ( dev-php/pecl-ssh2:0[php_targets_php5-6] )" -PHP_EXT_ECONF_ARGS="" +RDEPEND="${DEPEND} + php_targets_php5-6? ( dev-php/pecl-ssh2:0[php_targets_php5-6] )" src_prepare() { - if use php_targets_php7-0 ; then + if use php_targets_php7-0 || use php_targets_php7-1; then php-ext-source-r3_src_prepare else default_src_prepare diff --git a/dev-php/pecl-ssh2/pecl-ssh2-9999.ebuild b/dev-php/pecl-ssh2/pecl-ssh2-9999.ebuild index 1e571c0de962..ee9effc3e76a 100644 --- a/dev-php/pecl-ssh2/pecl-ssh2-9999.ebuild +++ b/dev-php/pecl-ssh2/pecl-ssh2-9999.ebuild @@ -1,18 +1,16 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 PHP_EXT_NAME="ssh2" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="no" -USE_PHP="php7-0 php5-6" +USE_PHP="php5-6 php7-0 php7-1" EGIT_REPO_URI="https://git.php.net/repository/pecl/networking/ssh2.git" inherit php-ext-source-r3 git-r3 -USE_PHP="php7-0" +USE_PHP="php7-0 php7-1" DESCRIPTION="PHP bindings for the libssh2 library" LICENSE="PHP-3.01" @@ -20,9 +18,9 @@ SLOT="7" IUSE="" KEYWORDS="" DEPEND=">=net-libs/libssh2-1.2" -RDEPEND="${DEPEND} php_targets_php5-6? ( dev-php/pecl-ssh2:0[php_targets_php5-6] )" +RDEPEND="${DEPEND} + php_targets_php5-6? ( dev-php/pecl-ssh2:0[php_targets_php5-6] )" HOMEPAGE="https://pecl.php.net/package/ssh2" -PHP_EXT_ECONF_ARGS="" src_unpack() { git-r3_src_unpack @@ -30,7 +28,7 @@ src_unpack() { } src_prepare() { - if use php_targets_php7-0 ; then + if use php_targets_php7-0 || use php_targets_php7-1 ; then php-ext-source-r3_src_prepare else default_src_prepare diff --git a/dev-python/guessit/Manifest b/dev-python/guessit/Manifest index 57f837169592..4957d9657ddc 100644 --- a/dev-python/guessit/Manifest +++ b/dev-python/guessit/Manifest @@ -1,2 +1,3 @@ DIST guessit-1.0.3.tar.gz 1200782 SHA256 6de9149b663b415ebc1f4ab9f12eb624ca859cf13cc1a491382f56619f33f59b SHA512 be427d3ac5b598fe14b26b4fa41c3bd9c0cc946df85381c61be9180275b54f6beac9d433ba781f4351bf94eba5a53b1097d8503268efd9019d50beb60f92cfcb WHIRLPOOL 31b2bb0e57a395f38f7ebe2420945cf00e00149a8345db245c3978cebb6366b53b8b1eae89838d4729e1e8c15abef2f4c8c91f64e5eb3e6f36a56f54de715546 DIST guessit-2.1.1.tar.gz 86447 SHA256 cdb51ced109e05318f35dc5ee1c50182a85edd800e86de77ec96eb68a0a99391 SHA512 61ace43bacf4bf2289bd1f0cd5105080b8302d92be8bda77942355594e07db14b594c73e4bf42bd14840f9f9723d602a38cd443cc3e1fabdca335d364fa97e2f WHIRLPOOL 885ee697f4929523527747d3ce5c0b548c6bcfe34c0e590bb1b8e5e4530ae4be6c0264a62dad83c5e2356a9063a9930ea3216f44b6df1b73000fd41c45b0e905 +DIST guessit-2.1.2.tar.gz 100478 SHA256 9f7e12b7f2215548284631a20aae6fc009c8af2bb8cc5d5e5e339cb15361dd95 SHA512 394098cb61cdd1d140e47a969dd86422d6856d2cda42dc7072ab9e482a0001d62f6ffe91d74a7bad04f274197e36e731ce203fe92930558969a94889d47c8e14 WHIRLPOOL dd26470424be58231a5787da45ca9122596800fbb968366699bc799cc29d65562cded7d40f8c6abbb6e48466300521d07560c92f44868b8a4229a68b5795468f diff --git a/dev-python/guessit/guessit-2.1.2.ebuild b/dev-python/guessit/guessit-2.1.2.ebuild new file mode 100644 index 000000000000..409fd7259eb1 --- /dev/null +++ b/dev-python/guessit/guessit-2.1.2.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) + +inherit distutils-r1 + +DESCRIPTION="Python library for guessing information from video filenames" +HOMEPAGE="https://github.com/guessit-io/guessit https://pypi.python.org/pypi/guessit" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=" + >=dev-python/babelfish-0.5.5[${PYTHON_USEDEP}] + >=dev-python/rebulk-0.8.2[${PYTHON_USEDEP}] + dev-python/python-dateutil[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + test? ( + >=dev-python/pytest-2.7.3[${PYTHON_USEDEP}] + dev-python/pytest-capturelog[${PYTHON_USEDEP}] + dev-python/pytest-runner[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + ) +" + +python_prepare_all() { + # Disable benchmarks as they require unavailable pytest-benchmark. + rm guessit/test/test_benchmark.py || die + sed -i -e "s|'pytest-benchmark',||g" setup.py || die + + # Disable unconditional dependency on dev-python/pytest-runner. + sed -i -e "s|'pytest-runner'||g" setup.py || die + + distutils-r1_python_prepare_all +} + +python_test() { + esetup.py test +} diff --git a/dev-python/guessit/guessit-9999.ebuild b/dev-python/guessit/guessit-9999.ebuild index 0d2ce1c235e0..20aa2d03c109 100644 --- a/dev-python/guessit/guessit-9999.ebuild +++ b/dev-python/guessit/guessit-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -10,6 +10,7 @@ inherit distutils-r1 git-r3 DESCRIPTION="Python library for guessing information from video filenames" HOMEPAGE="https://github.com/guessit-io/guessit https://pypi.python.org/pypi/guessit" EGIT_REPO_URI=( {https,git}://github.com/${PN}-io/${PN}.git ) +EGIT_BRANCH="develop" LICENSE="LGPL-3" SLOT="0" diff --git a/dev-python/pyptlib/pyptlib-0.0.6.ebuild b/dev-python/pyptlib/pyptlib-0.0.6.ebuild index d45e10a0fb2d..a5195aa22f60 100644 --- a/dev-python/pyptlib/pyptlib-0.0.6.ebuild +++ b/dev-python/pyptlib/pyptlib-0.0.6.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~mips ~x86" +KEYWORDS="~amd64 ~arm ~mips ~x86" IUSE="doc examples" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" diff --git a/dev-util/meson/meson-0.39.1.ebuild b/dev-util/meson/meson-0.39.1.ebuild index 4a98372fa7dd..3ef0857c69f2 100644 --- a/dev-util/meson/meson-0.39.1.ebuild +++ b/dev-util/meson/meson-0.39.1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -PYTHON_COMPAT=( python3_{4,5} ) +PYTHON_COMPAT=( python3_{4,5,6} ) if [[ ${PV} = *9999* ]]; then EGIT_REPO_URI="https://github.com/mesonbuild/meson" @@ -20,6 +20,7 @@ HOMEPAGE="http://mesonbuild.com/" LICENSE="Apache-2.0" SLOT="0" IUSE="" +RESTRICT="test" DEPEND="${PYTHON_DEPS} >=dev-util/ninja-1.6.0 @@ -27,3 +28,7 @@ DEPEND="${PYTHON_DEPS} RDEPEND="${DEPEND}" DOCS=( authors.txt contributing.txt ) + +python_test() { + ${EPYTHON} run_tests.py || die +} diff --git a/dev-util/meson/meson-9999.ebuild b/dev-util/meson/meson-9999.ebuild index 898271b1e2ca..4d9862c55ad3 100644 --- a/dev-util/meson/meson-9999.ebuild +++ b/dev-util/meson/meson-9999.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -PYTHON_COMPAT=( python3_{4,5} ) +PYTHON_COMPAT=( python3_{4,5,6} ) if [[ ${PV} = *9999* ]]; then EGIT_REPO_URI="https://github.com/mesonbuild/meson" @@ -20,6 +20,7 @@ HOMEPAGE="http://mesonbuild.com/" LICENSE="Apache-2.0" SLOT="0" IUSE="" +RESTRICT="test" DEPEND="${PYTHON_DEPS} >=dev-util/ninja-1.6.0 @@ -27,3 +28,7 @@ DEPEND="${PYTHON_DEPS} RDEPEND="${DEPEND}" DOCS=( authors.txt contributing.txt ) + +python_test() { + ${EPYTHON} run_tests.py || die +} diff --git a/gnome-base/librsvg/Manifest b/gnome-base/librsvg/Manifest index e2b34ed030eb..5864842d8951 100644 --- a/gnome-base/librsvg/Manifest +++ b/gnome-base/librsvg/Manifest @@ -1 +1,2 @@ DIST librsvg-2.40.16.tar.xz 560800 SHA256 d48bcf6b03fa98f07df10332fb49d8c010786ddca6ab34cbba217684f533ff2e SHA512 975a0f900c5a9598ef91bbf936d99319c6efe493f35525a23c5c7f2ed37c5839ec8e5d29f297219b3049f10e2594ebdf41c987b49c004ef3c846963f055c468a WHIRLPOOL 7e1feac4ce98a95f15ea721782919295a8123c33c828ff686d3ab86f8a4d2ab06b88f17dbd9ad749fd5df0829b717a5fd73a0d21ebe308bf8905e9174e50717c +DIST librsvg-2.40.17.tar.xz 573244 SHA256 e6f6c5cbecc405bb945c7cd15061276035ae3173bbb3bb25e8a916779c7f69cc SHA512 296e623adbf1e833a9b1f11257a911671d6c01568719ff48f8e2a9e0bf8166eae242d0ae23243a9ac335540fff6b6cdd4760ca2f37f8afe188783fd9b1099ef5 WHIRLPOOL 64c188903faa3144703cbeba3f8736c1ff8751006f744f4a3a796e1eae9d50e633cb48ab036e55c8222edc2b8e7dc708578c7a5add8f9b96f8183e89eb8026ec diff --git a/gnome-base/librsvg/librsvg-2.40.17.ebuild b/gnome-base/librsvg/librsvg-2.40.17.ebuild new file mode 100644 index 000000000000..0e325317ac15 --- /dev/null +++ b/gnome-base/librsvg/librsvg-2.40.17.ebuild @@ -0,0 +1,97 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +GNOME2_LA_PUNT="yes" +VALA_USE_DEPEND="vapigen" + +inherit autotools eutils gnome2 multilib-minimal vala + +DESCRIPTION="Scalable Vector Graphics (SVG) rendering library" +HOMEPAGE="https://wiki.gnome.org/Projects/LibRsvg" + +LICENSE="LGPL-2" +SLOT="2" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" + +IUSE="+introspection tools vala" +REQUIRED_USE="vala? ( introspection )" + +RDEPEND=" + >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}] + >=x11-libs/cairo-1.12.14-r4[${MULTILIB_USEDEP}] + >=x11-libs/pango-1.36.3[${MULTILIB_USEDEP}] + >=dev-libs/libxml2-2.9.1-r4:2[${MULTILIB_USEDEP}] + >=dev-libs/libcroco-0.6.8-r1[${MULTILIB_USEDEP}] + >=x11-libs/gdk-pixbuf-2.30.7:2[introspection?,${MULTILIB_USEDEP}] + introspection? ( >=dev-libs/gobject-introspection-0.10.8:= ) + tools? ( >=x11-libs/gtk+-3.10.0:3 ) +" +DEPEND="${RDEPEND} + dev-libs/gobject-introspection-common + dev-libs/vala-common + >=dev-util/gtk-doc-am-1.13 + >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] + vala? ( $(vala_depend) ) +" +# >=gtk-doc-am-1.13, gobject-introspection-common, vala-common needed by eautoreconf + +src_prepare() { + # https://bugzilla.gnome.org/show_bug.cgi?id=653323 + eapply "${FILESDIR}/${PN}-2.40.12-gtk-optional.patch" + + # https://bugzilla.gnome.org/show_bug.cgi?id=731826 + eapply "${FILESDIR}/${PN}-2.40.2-vala-out-of-source.patch" + + eautoreconf + + use vala && vala_src_prepare + gnome2_src_prepare +} + +multilib_src_configure() { + local myconf=() + + # -Bsymbolic is not supported by the Darwin toolchain + if [[ ${CHOST} == *-darwin* ]]; then + myconf+=( --disable-Bsymbolic ) + fi + + # --disable-tools even when USE=tools; the tools/ subdirectory is useful + # only for librsvg developers + ECONF_SOURCE=${S} \ + gnome2_src_configure \ + --disable-static \ + --disable-tools \ + $(multilib_native_use_enable introspection) \ + $(multilib_native_use_with tools gtk3) \ + $(multilib_native_use_enable vala) \ + --enable-pixbuf-loader \ + "${myconf[@]}" + + if multilib_is_native_abi; then + ln -s "${S}"/doc/html doc/html || die + fi +} + +multilib_src_compile() { + # causes segfault if set, see bug #411765 + unset __GL_NO_DSO_FINALIZER + gnome2_src_compile +} + +multilib_src_install() { + gnome2_src_install +} + +pkg_postinst() { + # causes segfault if set, see bug 375615 + unset __GL_NO_DSO_FINALIZER + multilib_foreach_abi gnome2_pkg_postinst +} + +pkg_postrm() { + # causes segfault if set, see bug 375615 + unset __GL_NO_DSO_FINALIZER + multilib_foreach_abi gnome2_pkg_postrm +} diff --git a/media-gfx/gimp/gimp-9999.ebuild b/media-gfx/gimp/gimp-9999.ebuild index f500d7f30bb7..84387691719f 100644 --- a/media-gfx/gimp/gimp-9999.ebuild +++ b/media-gfx/gimp/gimp-9999.ebuild @@ -115,6 +115,8 @@ pkg_setup() { } src_prepare() { + epatch_user + sed -i -e 's/== "xquartz"/= "xquartz"/' configure.ac || die #494864 echo '#!/bin/sh' > py-compile diff --git a/metadata/dtd/timestamp.chk b/metadata/dtd/timestamp.chk index a12cff9fcd7e..ddf5d728fc9a 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Sat, 08 Apr 2017 18:39:31 +0000 +Sun, 09 Apr 2017 02:39:34 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index 62493e41ee02..ddf5d728fc9a 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Sat, 08 Apr 2017 18:39:32 +0000 +Sun, 09 Apr 2017 02:39:34 +0000 diff --git a/metadata/md5-cache/app-arch/bsdsfv-1.18-r2 b/metadata/md5-cache/app-arch/bsdsfv-1.18-r2 new file mode 100644 index 000000000000..527ef37352c5 --- /dev/null +++ b/metadata/md5-cache/app-arch/bsdsfv-1.18-r2 @@ -0,0 +1,10 @@ +DEFINED_PHASES=compile install +DESCRIPTION=all-in-one SFV checksum utility +EAPI=6 +HOMEPAGE=http://bsdsfv.sourceforge.net/ +KEYWORDS=~amd64 ~arm ~hppa ~m68k ~ppc ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos +LICENSE=BSD +SLOT=0 +SRC_URI=mirror://sourceforge/bsdsfv/bsdsfv-1.18.tar.gz +_eclasses_=multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee +_md5_=43d050b176047548c4c4e26911ca2dbe diff --git a/metadata/md5-cache/app-benchmarks/pipebench-0.40-r1 b/metadata/md5-cache/app-benchmarks/pipebench-0.40-r2 similarity index 90% rename from metadata/md5-cache/app-benchmarks/pipebench-0.40-r1 rename to metadata/md5-cache/app-benchmarks/pipebench-0.40-r2 index 52ffca334874..2b82a0911ad3 100644 --- a/metadata/md5-cache/app-benchmarks/pipebench-0.40-r1 +++ b/metadata/md5-cache/app-benchmarks/pipebench-0.40-r2 @@ -1,10 +1,10 @@ DEFINED_PHASES=compile install prepare DESCRIPTION=Measures the speed of stdin/stdout communication -EAPI=3 +EAPI=6 HOMEPAGE=http://www.habets.pp.se/synscan/programs.php?prog=pipebench KEYWORDS=~alpha ~amd64 ~ppc ~ppc64 ~x86 ~arm-linux ~x86-linux LICENSE=GPL-2 SLOT=0 SRC_URI=ftp://ftp.habets.pp.se/pub/synscan/pipebench-0.40.tar.gz _eclasses_=multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee -_md5_=ffa47576f21b336676141afe2f1b6ae7 +_md5_=721128cfd2d04d71752297677396fac2 diff --git a/metadata/md5-cache/app-cdr/dvd+rw-tools-7.1-r2 b/metadata/md5-cache/app-cdr/dvd+rw-tools-7.1-r2 deleted file mode 100644 index d186e8b7fd42..000000000000 --- a/metadata/md5-cache/app-cdr/dvd+rw-tools-7.1-r2 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile install postinst prepare -DEPEND=virtual/cdrtools sys-devel/m4 -DESCRIPTION=A set of tools for DVD+RW/-RW drives -EAPI=6 -HOMEPAGE=http://fy.chalmers.se/~appro/linux/DVD+RW/ -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux -LICENSE=GPL-2 -RDEPEND=virtual/cdrtools -SLOT=0 -SRC_URI=http://fy.chalmers.se/~appro/linux/DVD+RW/tools/dvd+rw-tools-7.1.tar.gz -_eclasses_=multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee -_md5_=b51cf3055205c92526df2d1f63012acd diff --git a/metadata/md5-cache/app-crypt/tc-play-2.0-r1 b/metadata/md5-cache/app-crypt/tc-play-2.0-r1 index 45f404d0c391..af3900b210ca 100644 --- a/metadata/md5-cache/app-crypt/tc-play-2.0-r1 +++ b/metadata/md5-cache/app-crypt/tc-play-2.0-r1 @@ -10,4 +10,4 @@ RDEPEND=dev-libs/libgpg-error sys-fs/lvm2 sys-apps/util-linux dev-libs/libgcrypt SLOT=0 SRC_URI=https://github.com/bwalex/tc-play/archive/v2.0.tar.gz -> tc-play-2.0.tar.gz _eclasses_=multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee -_md5_=ab8d430adf620190c0009418f374877a +_md5_=98043003d98d0ca1588e2aaa2e96d6e9 diff --git a/metadata/md5-cache/app-dicts/edictionary-2.6 b/metadata/md5-cache/app-dicts/edictionary-2.6-r1 similarity index 86% rename from metadata/md5-cache/app-dicts/edictionary-2.6 rename to metadata/md5-cache/app-dicts/edictionary-2.6-r1 index 4ce416573b23..50ecb33e7b4d 100644 --- a/metadata/md5-cache/app-dicts/edictionary-2.6 +++ b/metadata/md5-cache/app-dicts/edictionary-2.6-r1 @@ -1,10 +1,10 @@ DEFINED_PHASES=install DEPEND=dev-lang/perl DESCRIPTION=Command line dictionary and thesaurus -EAPI=3 +EAPI=6 HOMEPAGE=http://edictionary.sourceforge.net/ KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~s390 ~sh ~x86 ~amd64-linux ~x86-linux ~ppc-macos LICENSE=GPL-2 SLOT=0 SRC_URI=mirror://sourceforge/edictionary/edict-2.6.tar.gz -_md5_=b0c068dc274b259cfa8796c3717bd18e +_md5_=bcdada8b925e70c8f435260bdc1be21f diff --git a/metadata/md5-cache/app-doc/casting-spels-emacs-19-r1 b/metadata/md5-cache/app-doc/casting-spels-emacs-19-r1 deleted file mode 100644 index bb1e6da96652..000000000000 --- a/metadata/md5-cache/app-doc/casting-spels-emacs-19-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install prepare -DEPEND=app-arch/unzip -DESCRIPTION=Casting SPELs in Lisp - A Comic Book (Emacs Lisp Edition) -EAPI=3 -HOMEPAGE=https://code.google.com/p/casting-spels-emacs/ -KEYWORDS=amd64 x86 -LICENSE=GPL-2 FDL-1.2 -RDEPEND=virtual/emacs -SLOT=0 -SRC_URI=https://casting-spels-emacs.googlecode.com/files/casting-spels-emacs-v19.zip -_eclasses_=elisp-common 19ff54b35acd0bf2a14831a308a57753 epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee -_md5_=96b03ac93cf10abd3cd0921a0f97f9b1 diff --git a/metadata/md5-cache/app-doc/casting-spels-emacs-19-r2 b/metadata/md5-cache/app-doc/casting-spels-emacs-19-r2 index 0445835ca471..49be56389b7d 100644 --- a/metadata/md5-cache/app-doc/casting-spels-emacs-19-r2 +++ b/metadata/md5-cache/app-doc/casting-spels-emacs-19-r2 @@ -3,10 +3,10 @@ DEPEND=app-arch/unzip DESCRIPTION=Casting SPELs in Lisp - A Comic Book (Emacs Lisp Edition) EAPI=6 HOMEPAGE=http://www.lisperati.com/casting-spels-emacs/html/casting-spels-emacs-1.html https://www.gnu.org/software/emacs/casting-spels-emacs/ -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2+ FDL-1.2 RDEPEND=virtual/emacs SLOT=0 SRC_URI=https://casting-spels-emacs.googlecode.com/files/casting-spels-emacs-v19.zip _eclasses_=elisp-common 19ff54b35acd0bf2a14831a308a57753 -_md5_=b8057b817f8de614e9a213831ab2eef9 +_md5_=357860abed4b4ee6f8e46490069aa866 diff --git a/metadata/md5-cache/app-editors/atom-1.15.0 b/metadata/md5-cache/app-editors/atom-1.15.0 new file mode 100644 index 000000000000..998821236168 --- /dev/null +++ b/metadata/md5-cache/app-editors/atom-1.15.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare setup unpack +DEPEND=|| ( >=dev-lang/python-2.7.5-r2:2.7 ) >=app-text/hunspell-1.3.3:= >=dev-libs/libgit2-0.23:=[ssh] >=gnome-base/libgnome-keyring-3.12:= >=dev-libs/oniguruma-5.9.5:= >=dev-util/ctags-5.8 >=dev-util/electron-1.3.5:1.3 x11-libs/libxkbfile >=app-arch/rpm2targz-9.0.0.3g +DESCRIPTION=A hackable text editor for the 21st Century +EAPI=6 +HOMEPAGE=https://atom.io +KEYWORDS=~amd64 +LICENSE=MIT +RDEPEND=|| ( >=dev-lang/python-2.7.5-r2:2.7 ) >=app-text/hunspell-1.3.3:= >=dev-libs/libgit2-0.23:=[ssh] >=gnome-base/libgnome-keyring-3.12:= >=dev-libs/oniguruma-5.9.5:= >=dev-util/ctags-5.8 >=dev-util/electron-1.3.5:1.3 x11-libs/libxkbfile !sys-apps/apmd +RESTRICT=mirror +SLOT=0 +SRC_URI=https://github.com/atom/atom/releases/download/v1.15.0/atom.x86_64.rpm -> atom-1.15.0.rpm https://github.com/elprans/asar/releases/download/v0.12.1-gentoo/asar-build.tar.gz -> asar-0.12.1.tar.gz https://github.com/nodejs/nan/archive/v2.4.0.tar.gz -> nodejs-nan-2.4.0.tar.gz https://github.com/atom/cached-run-in-this-context/archive/v0.4.1.tar.gz -> atom-cached-run-in-this-context-0.4.1.tar.gz https://github.com/atom/node-ctags/archive/v3.0.0.tar.gz -> atom-node-ctags-3.0.0.tar.gz https://github.com/atom/git-utils/archive/v4.1.2.tar.gz -> atom-git-utils-4.1.2.tar.gz https://github.com/atom/keyboard-layout/archive/v2.0.11.tar.gz -> atom-keyboard-layout-2.0.11.tar.gz https://github.com/atom/superstring/archive/v1.1.0.tar.gz -> atom-superstring-1.1.0.tar.gz https://github.com/atom/node-keytar/archive/v3.0.2.tar.gz -> atom-node-keytar-3.0.2.tar.gz https://github.com/atom/node-nslog/archive/v3.0.0.tar.gz -> atom-node-nslog-3.0.0.tar.gz https://github.com/atom/node-oniguruma/archive/v6.1.0.tar.gz -> atom-node-oniguruma-6.1.0.tar.gz https://github.com/atom/node-pathwatcher/archive/v6.8.0.tar.gz -> atom-node-pathwatcher-6.8.0.tar.gz https://github.com/atom/node-runas/archive/v3.1.1.tar.gz -> atom-node-runas-3.1.1.tar.gz https://github.com/atom/scrollbar-style/archive/v3.2.0.tar.gz -> atom-scrollbar-style-3.2.0.tar.gz https://github.com/atom/node-spellchecker/archive/v3.2.3.tar.gz -> atom-node-spellchecker-3.2.3.tar.gz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c python-any-r1 be89e882151ba4b847089b860d79729c python-utils-r1 a166d0f5815d7f1e67bb60a196f1bf7e rpm f52cfa3a435468d86d3b49c357b9cb35 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee +_md5_=6e9743cf0b6242edf7d153ee25ceb552 diff --git a/metadata/md5-cache/app-emulation/xen-4.7.2 b/metadata/md5-cache/app-emulation/xen-4.7.2 new file mode 100644 index 000000000000..25e4f913d2ea --- /dev/null +++ b/metadata/md5-cache/app-emulation/xen-4.7.2 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare prerm pretend setup +DEPEND=|| ( >=dev-lang/python-2.7.5-r2:2.7 ) efi? ( >=sys-devel/binutils-2.22[multitarget] ) !efi? ( >=sys-devel/binutils-2.22 ) +DESCRIPTION=The Xen virtual machine monitor +EAPI=5 +HOMEPAGE=http://xen.org/ +IUSE=custom-cflags debug efi flask +KEYWORDS=~amd64 ~arm -x86 +LICENSE=GPL-2 +PDEPEND=~app-emulation/xen-tools-4.7.2 +REQUIRED_USE=arm? ( debug ) +RESTRICT=test splitdebug strip +SLOT=0 +SRC_URI=http://bits.xensource.com/oss-xen/release/4.7.2/xen-4.7.2.tar.gz https://dev.gentoo.org/~dlan/distfiles/xen-4.7.2-upstream-patches-0.tar.xz https://dev.gentoo.org/~dlan/distfiles/xen-security-patches-25.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb flag-o-matic 61cad4fb5d800b29d484b27cb033f59b ltprune 2770eed66a9b8ef944714cd0e968182e mount-boot 1e82d96b7a7dcb483b412497a90bb646 multilib 0236be304ee52e7f179ed2f337075515 python-any-r1 be89e882151ba4b847089b860d79729c python-utils-r1 a166d0f5815d7f1e67bb60a196f1bf7e toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee +_md5_=2f90886711dd9bccb18ef6b46f5c94e0 diff --git a/metadata/md5-cache/app-emulation/xen-4.8.0-r4 b/metadata/md5-cache/app-emulation/xen-4.8.0-r4 new file mode 100644 index 000000000000..7199788e3b37 --- /dev/null +++ b/metadata/md5-cache/app-emulation/xen-4.8.0-r4 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare prerm pretend setup +DEPEND=|| ( >=dev-lang/python-2.7.5-r2:2.7 ) efi? ( >=sys-devel/binutils-2.22[multitarget] ) !efi? ( >=sys-devel/binutils-2.22 ) +DESCRIPTION=The Xen virtual machine monitor +EAPI=5 +HOMEPAGE=http://xen.org/ +IUSE=custom-cflags debug efi flask +KEYWORDS=~amd64 ~arm -x86 +LICENSE=GPL-2 +PDEPEND=~app-emulation/xen-tools-4.8.0 +REQUIRED_USE=arm? ( debug ) +RESTRICT=test splitdebug strip +SLOT=0 +SRC_URI=http://bits.xensource.com/oss-xen/release/4.8.0/xen-4.8.0.tar.gz https://dev.gentoo.org/~dlan/distfiles/xen-4.8.0-upstream-patches-0.tar.xz https://dev.gentoo.org/~dlan/distfiles/xen-security-patches-25.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb flag-o-matic 61cad4fb5d800b29d484b27cb033f59b ltprune 2770eed66a9b8ef944714cd0e968182e mount-boot 1e82d96b7a7dcb483b412497a90bb646 multilib 0236be304ee52e7f179ed2f337075515 python-any-r1 be89e882151ba4b847089b860d79729c python-utils-r1 a166d0f5815d7f1e67bb60a196f1bf7e toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee +_md5_=c45283e76983fca51b9dae872111ec23 diff --git a/metadata/md5-cache/app-emulation/xen-pvgrub-4.7.2 b/metadata/md5-cache/app-emulation/xen-pvgrub-4.7.2 new file mode 100644 index 000000000000..9f858c874f07 --- /dev/null +++ b/metadata/md5-cache/app-emulation/xen-pvgrub-4.7.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst prepare setup +DEPEND=sys-devel/gettext sys-devel/bin86 sys-apps/texinfo x11-libs/pixman +DESCRIPTION=allows to boot Xen domU kernels from a menu.lst laying inside guest filesystem +EAPI=5 +HOMEPAGE=http://xen.org/ +IUSE=custom-cflags python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=>=app-emulation/xen-tools-4.7.2 +REQUIRED_USE=python_targets_python2_7 +SLOT=0 +SRC_URI=http://bits.xensource.com/oss-xen/release/4.7.2/xen-4.7.2.tar.gz mirror://gnu-alpha/grub/grub-0.97.tar.gz http://xenbits.xensource.com/xen-extfiles/zlib-1.2.3.tar.gz ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/pciutils-2.2.9.tar.bz2 http://xenbits.xensource.com/xen-extfiles/lwip-1.3.0.tar.gz http://xenbits.xensource.com/xen-extfiles/newlib/newlib-1.16.0.tar.gz http://xenbits.xensource.com/xen-extfiles/polarssl-1.1.4-gpl.tgz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb flag-o-matic 61cad4fb5d800b29d484b27cb033f59b ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 python-single-r1 c3e54dd0dc1e70c6252f2551a55bf053 python-utils-r1 a166d0f5815d7f1e67bb60a196f1bf7e toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee +_md5_=7b6761f8a31f0aa8714ed6a18ca5e34e diff --git a/metadata/md5-cache/app-emulation/xen-tools-4.7.2 b/metadata/md5-cache/app-emulation/xen-tools-4.7.2 new file mode 100644 index 000000000000..e3291b613f2b --- /dev/null +++ b/metadata/md5-cache/app-emulation/xen-tools-4.7.2 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install postinst prepare setup +DEPEND=dev-libs/lzo:2 dev-libs/glib:2 dev-libs/yajl dev-libs/libaio dev-libs/libgcrypt:0 sys-libs/zlib dev-python/lxml[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] x86? ( sys-devel/dev86 sys-power/iasl ) pam? ( dev-python/pypam[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[ncurses,xml,threads] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] api? ( dev-libs/libxml2 net-misc/curl ) ovmf? ( !arm? ( dev-lang/nasm ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite] ) ) !amd64? ( >=sys-apps/dtc-1.4.0 ) amd64? ( sys-devel/bin86 system-seabios? ( sys-firmware/seabios ) sys-firmware/ipxe sys-devel/dev86 sys-power/iasl ) dev-lang/perl app-misc/pax-utils doc? ( app-doc/doxygen dev-python/markdown[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-tex/latex2html[png,gif] media-gfx/graphviz dev-tex/xcolor media-gfx/transfig dev-texlive/texlive-latexextra virtual/latex-base dev-tex/latexmk dev-texlive/texlive-latex dev-texlive/texlive-pictures dev-texlive/texlive-latexrecommended ) hvm? ( x11-proto/xproto !net-libs/libiscsi ) qemu? ( x11-libs/pixman sdl? ( media-libs/libsdl[X] ) ) system-qemu? ( app-emulation/qemu[xen] ) ocaml? ( dev-ml/findlib >=dev-lang/ocaml-4 ) +DESCRIPTION=Xen tools including QEMU and xl +EAPI=5 +HOMEPAGE=http://xen.org/ +IUSE=api custom-cflags debug doc flask hvm +qemu ocaml ovmf +qemu-traditional +pam python pygrub screen sdl static-libs system-qemu system-seabios python_targets_python2_7 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=GPL-2 +RDEPEND=dev-libs/lzo:2 dev-libs/glib:2 dev-libs/yajl dev-libs/libaio dev-libs/libgcrypt:0 sys-libs/zlib sys-apps/iproute2[-minimal] net-misc/bridge-utils screen? ( app-misc/screen app-admin/logrotate ) +REQUIRED_USE=python_targets_python2_7 pygrub? ( python ) ovmf? ( hvm ) ^^ ( qemu system-qemu ) +RESTRICT=test +SLOT=0/4.7 +SRC_URI=http://bits.xensource.com/oss-xen/release/4.7.2/xen-4.7.2.tar.gz http://code.coreboot.org/p/seabios/downloads/get/seabios-1.8.2.tar.gz https://dev.gentoo.org/~dlan/distfiles/seabios-1.8.2.tar.gz ovmf? ( https://dev.gentoo.org/~dlan/distfiles/ovmf-20151110.tar.bz2 https://dev.gentoo.org/~dlan/distfiles/xen-ovmf-patches-2.tar.xz ) https://dev.gentoo.org/~dlan/distfiles/xen-4.7.2-upstream-patches-0.tar.xz https://dev.gentoo.org/~dlan/distfiles/xen-security-patches-25.tar.xz https://dev.gentoo.org/~dlan/distfiles/xen-gentoo-patches-9.tar.xz +_eclasses_=bash-completion-r1 8e447753aaf658afa609fbf961d80ab7 epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb flag-o-matic 61cad4fb5d800b29d484b27cb033f59b ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 python-single-r1 c3e54dd0dc1e70c6252f2551a55bf053 python-utils-r1 a166d0f5815d7f1e67bb60a196f1bf7e toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 +_md5_=47ecf7cab6de44e276d11c40f1fcf373 diff --git a/metadata/md5-cache/app-emulation/xen-tools-4.8.0-r5 b/metadata/md5-cache/app-emulation/xen-tools-4.8.0-r5 new file mode 100644 index 000000000000..d1ca4747bbb7 --- /dev/null +++ b/metadata/md5-cache/app-emulation/xen-tools-4.8.0-r5 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install postinst prepare setup +DEPEND=dev-libs/lzo:2 dev-libs/glib:2 dev-libs/yajl dev-libs/libaio dev-libs/libgcrypt:0 sys-libs/zlib dev-python/lxml[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] x86? ( sys-devel/dev86 sys-power/iasl ) pam? ( dev-python/pypam[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[ncurses,xml,threads] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] api? ( dev-libs/libxml2 net-misc/curl ) ovmf? ( !arm? ( dev-lang/nasm ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite] ) ) !amd64? ( >=sys-apps/dtc-1.4.0 ) amd64? ( sys-devel/bin86 system-seabios? ( sys-firmware/seabios ) sys-firmware/ipxe sys-devel/dev86 sys-power/iasl ) dev-lang/perl app-misc/pax-utils doc? ( app-doc/doxygen dev-python/markdown[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-tex/latex2html[png,gif] media-gfx/graphviz dev-tex/xcolor media-gfx/transfig dev-texlive/texlive-latexextra virtual/latex-base dev-tex/latexmk dev-texlive/texlive-latex dev-texlive/texlive-pictures dev-texlive/texlive-latexrecommended ) hvm? ( x11-proto/xproto !net-libs/libiscsi ) qemu? ( x11-libs/pixman sdl? ( media-libs/libsdl[X] ) ) system-qemu? ( app-emulation/qemu[xen] ) ocaml? ( dev-ml/findlib >=dev-lang/ocaml-4 ) +DESCRIPTION=Xen tools including QEMU and xl +EAPI=5 +HOMEPAGE=http://xen.org/ +IUSE=api custom-cflags debug doc flask hvm +qemu ocaml ovmf +qemu-traditional +pam python pygrub screen sdl static-libs system-qemu system-seabios python_targets_python2_7 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=GPL-2 +RDEPEND=dev-libs/lzo:2 dev-libs/glib:2 dev-libs/yajl dev-libs/libaio dev-libs/libgcrypt:0 sys-libs/zlib sys-apps/iproute2[-minimal] net-misc/bridge-utils screen? ( app-misc/screen app-admin/logrotate ) +REQUIRED_USE=python_targets_python2_7 pygrub? ( python ) ovmf? ( hvm ) ^^ ( qemu system-qemu ) +RESTRICT=test +SLOT=0/4.8 +SRC_URI=http://bits.xensource.com/oss-xen/release/4.8.0/xen-4.8.0.tar.gz http://code.coreboot.org/p/seabios/downloads/get/seabios-1.10.0.tar.gz https://dev.gentoo.org/~dlan/distfiles/seabios-1.10.0.tar.gz ovmf? ( https://dev.gentoo.org/~dlan/distfiles/ovmf-20151110.tar.bz2 https://dev.gentoo.org/~dlan/distfiles/xen-ovmf-patches-2.tar.xz ) https://dev.gentoo.org/~dlan/distfiles/xen-4.8.0-upstream-patches-0.tar.xz https://dev.gentoo.org/~dlan/distfiles/xen-security-patches-25.tar.xz https://dev.gentoo.org/~dlan/distfiles/xen-gentoo-patches-9.tar.xz +_eclasses_=bash-completion-r1 8e447753aaf658afa609fbf961d80ab7 epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb flag-o-matic 61cad4fb5d800b29d484b27cb033f59b ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 python-single-r1 c3e54dd0dc1e70c6252f2551a55bf053 python-utils-r1 a166d0f5815d7f1e67bb60a196f1bf7e toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 +_md5_=8b3d7adbb58c3f18fd6c3e31c493bc1b diff --git a/metadata/md5-cache/app-misc/todo-2.10-r1 b/metadata/md5-cache/app-misc/todo-2.10-r1 new file mode 100644 index 000000000000..e05b13fa4bf5 --- /dev/null +++ b/metadata/md5-cache/app-misc/todo-2.10-r1 @@ -0,0 +1,12 @@ +DEFINED_PHASES=install test +DESCRIPTION=A CLI-based TODO list manager +EAPI=6 +HOMEPAGE=http://todotxt.com/ +IUSE=test +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=app-shells/bash +SLOT=0 +SRC_URI=https://github.com/ginatrapani/todo.txt-cli/archive/v2.10.tar.gz -> todo-2.10.tar.gz +_eclasses_=bash-completion-r1 8e447753aaf658afa609fbf961d80ab7 multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee +_md5_=4ce2862ccba506774e349af00b745f2f diff --git a/metadata/md5-cache/app-shells/mpv-bash-completion-3.3.12 b/metadata/md5-cache/app-shells/mpv-bash-completion-3.3.12 new file mode 100644 index 000000000000..b27e6c39da5a --- /dev/null +++ b/metadata/md5-cache/app-shells/mpv-bash-completion-3.3.12 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install postinst prepare +DEPEND=>=media-video/mpv-0.14.0[cli] !luajit? ( dev-lang/lua:* ) luajit? ( dev-lang/luajit:2 ) +DESCRIPTION=Bash completion for the mpv video player +EAPI=6 +HOMEPAGE=https://2ion.github.io/mpv-bash-completion/ +IUSE=luajit +KEYWORDS=~amd64 +LICENSE=GPL-3+ +RDEPEND=>=media-video/mpv-0.14.0[cli] >=app-shells/bash-completion-2.3-r1 +SLOT=0 +SRC_URI=https://github.com/2ion/mpv-bash-completion/archive/3.3.12.tar.gz -> mpv-bash-completion-3.3.12.tar.gz +_eclasses_=bash-completion-r1 8e447753aaf658afa609fbf961d80ab7 multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee +_md5_=afdd28447b7b7c169eaf4a9f174fc4d4 diff --git a/metadata/md5-cache/dev-cpp/glibmm-2.50.1 b/metadata/md5-cache/dev-cpp/glibmm-2.50.1 new file mode 100644 index 000000000000..1b8308f64480 --- /dev/null +++ b/metadata/md5-cache/dev-cpp/glibmm-2.50.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=>=dev-libs/libsigc++-2.9.1: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(-)?] >=dev-libs/glib-2.50.0: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(-)?] virtual/pkgconfig doc? ( app-doc/doxygen ) >=app-portage/elt-patches-20170317 app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=C++ interface for glib2 +EAPI=6 +HOMEPAGE=http://www.gtkmm.org +IUSE=doc debug 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 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris +LICENSE=LGPL-2.1+ GPL-2+ +RDEPEND=>=dev-libs/libsigc++-2.9.1: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(-)?] >=dev-libs/glib-2.50.0: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(-)?] +SLOT=2 +SRC_URI=mirror://gnome/sources/glibmm/2.50/glibmm-2.50.1.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 259704f1e63c50c85166355db66e98e8 gnome2-utils 6d2af8c7ab84825693c3f065a37b923c libtool e32ea84bf82cf8987965b574672dba93 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 +_md5_=b12cc1d321bb8bb03c8d224c9cd51b61 diff --git a/metadata/md5-cache/dev-db/postgis-2.3.2-r1 b/metadata/md5-cache/dev-db/postgis-2.3.2-r1 index 94775b6d1d5a..cd2b2c5a6c42 100644 --- a/metadata/md5-cache/dev-db/postgis-2.3.2-r1 +++ b/metadata/md5-cache/dev-db/postgis-2.3.2-r1 @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=http://download.osgeo.org/postgis/source/postgis-2.3.2.tar.gz _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb libtool e32ea84bf82cf8987965b574672dba93 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=c42a1f886416f80b5dd188bd52b39336 +_md5_=7e54d63cf003246cd5b24c29d7f892fc diff --git a/metadata/md5-cache/dev-haskell/bifunctors-3.2.0.1 b/metadata/md5-cache/dev-haskell/bifunctors-3.2.0.1 index c506630747dd..4727f476a63c 100644 --- a/metadata/md5-cache/dev-haskell/bifunctors-3.2.0.1 +++ b/metadata/md5-cache/dev-haskell/bifunctors-3.2.0.1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install postinst postrm setup test DEPEND==dev-haskell/semigroupoids-3*:=[profile?] >=dev-haskell/semigroups-0.8.3.1:=[profile?] >=dev-haskell/tagged-0.4.4:=[profile?] =dev-lang/ghc-6.10.4:= >=dev-haskell/cabal-1.6 doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) -DESCRIPTION=Haskell 98 bifunctors +DESCRIPTION=Haskell 98 bifunctors, bifoldables and bitraversables EAPI=5 HOMEPAGE=https://github.com/ekmett/bifunctors/ IUSE=doc hscolour profile @@ -10,4 +10,4 @@ RDEPEND==dev-haskell/semigroupoids-3*:=[profile?] >=dev-haskell/semigroups-0.8.3 SLOT=0/3.2.0.1 SRC_URI=mirror://hackage/packages/archive/bifunctors/3.2.0.1/bifunctors-3.2.0.1.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb ghc-package f9cf05643e20f03876bb4807f008c80f haskell-cabal 45605f3898bdc59eb016fb50ca27bf18 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=1c4a06aea0428cfb2cab41efb28aa9c2 +_md5_=3b17ed60c7e4778234657927be5ad8c6 diff --git a/metadata/md5-cache/dev-haskell/bifunctors-5.4.1 b/metadata/md5-cache/dev-haskell/bifunctors-5.4.1 index 1ae87e05b11a..5fbde792864f 100644 --- a/metadata/md5-cache/dev-haskell/bifunctors-5.4.1 +++ b/metadata/md5-cache/dev-haskell/bifunctors-5.4.1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test DEPEND=>=dev-haskell/base-orphans-0.5.2:=[profile?] =dev-haskell/comonad-4:=[profile?] =dev-haskell/transformers-0.2:=[profile?] =dev-haskell/transformers-compat-0.5:=[profile?] =dev-lang/ghc-7.4.1:= semigroups? ( >=dev-haskell/semigroups-0.8.3.1:=[profile?] =dev-haskell/tagged-0.7.3:=[profile?] =dev-haskell/cabal-1.8 test? ( >=dev-haskell/hspec-1.8 >=dev-haskell/quickcheck-2 =dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) -DESCRIPTION=Bifunctors +DESCRIPTION=Haskell 98 bifunctors, bifoldables and bitraversables EAPI=6 HOMEPAGE=https://github.com/ekmett/bifunctors/ IUSE=+semigroups +tagged doc hscolour profile test @@ -10,4 +10,4 @@ RDEPEND=>=dev-haskell/base-orphans-0.5.2:=[profile?] =dev-haskell/mtl-1.1:=[profile?] =dev-haskell/primitive-0.4:=[profile?] =dev-haskell/vector-0.10:=[profile?] =dev-haskell/zlib-0.5.3.1:=[profile?] =dev-lang/ghc-7.8.2:= mmap? ( dev-haskell/mmap:=[profile?] ) >=dev-haskell/cabal-1.18.1.3 doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) -DESCRIPTION=Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance) +DESCRIPTION=Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and others) EAPI=6 HOMEPAGE=https://github.com/Twinside/Juicy.Pixels IUSE=mmap doc hscolour profile @@ -10,4 +10,4 @@ RDEPEND=>=dev-haskell/mtl-1.1:=[profile?] =dev SLOT=0/3.2.8 SRC_URI=mirror://hackage/packages/archive/JuicyPixels/3.2.8/JuicyPixels-3.2.8.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb ghc-package f9cf05643e20f03876bb4807f008c80f haskell-cabal 45605f3898bdc59eb016fb50ca27bf18 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=b858e9b94635ef279a2b3e664b9c13ce +_md5_=2997501ef56f0525ac2fde43ed6d1802 diff --git a/metadata/md5-cache/dev-haskell/kan-extensions-5.0.1 b/metadata/md5-cache/dev-haskell/kan-extensions-5.0.1 index a2b3a1388405..d892cb1945ce 100644 --- a/metadata/md5-cache/dev-haskell/kan-extensions-5.0.1 +++ b/metadata/md5-cache/dev-haskell/kan-extensions-5.0.1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install postinst postrm setup test DEPEND=>=dev-haskell/adjunctions-4.2:=[profile?] =dev-haskell/comonad-4:=[profile?] =dev-haskell/contravariant-1:=[profile?] =dev-haskell/distributive-0.2.2:=[profile?] =dev-haskell/free-4:=[profile?] =dev-haskell/mtl-2.0.1:=[profile?] =dev-haskell/semigroupoids-4:=[profile?] =dev-haskell/tagged-0.7.2:=[profile?] =dev-haskell/transformers-0.2:=[profile?] =dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.6 doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) -DESCRIPTION=Kan extensions, Kan lifts, various forms of the Yoneda lemma, and (co)density (co)monads +DESCRIPTION=Kan extensions, lifts, forms of the Yoneda lemma, and (co)density (co)monads EAPI=5 HOMEPAGE=https://github.com/ekmett/kan-extensions/ IUSE=doc hscolour profile @@ -10,4 +10,4 @@ RDEPEND=>=dev-haskell/adjunctions-4.2:=[profile?] =dev-haskell/comonad-4:=[profile?] =dev-haskell/semigroupoids-4:=[profile?] =dev-haskell/tagged-0.4.4:=[profile?] =dev-haskell/transformers-0.2:=[profile?] =dev-lang/ghc-6.10.4:= >=dev-haskell/cabal-1.10 doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) -DESCRIPTION=Profunctors haskell library +DESCRIPTION=Haskell 98 Profunctors EAPI=5 HOMEPAGE=https://github.com/ekmett/profunctors/ IUSE=doc hscolour profile @@ -10,4 +10,4 @@ RDEPEND=>=dev-haskell/comonad-4:=[profile?] SLOT=0/4.0.4 SRC_URI=mirror://hackage/packages/archive/profunctors/4.0.4/profunctors-4.0.4.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb ghc-package f9cf05643e20f03876bb4807f008c80f haskell-cabal 45605f3898bdc59eb016fb50ca27bf18 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=9b4ce3fe9451eafdf2d545aa0bd6dfc0 +_md5_=3cc8c0af3f24ed9e8a017961d109b821 diff --git a/metadata/md5-cache/dev-haskell/profunctors-4.3.2 b/metadata/md5-cache/dev-haskell/profunctors-4.3.2 index 0656d8641782..463674556a4d 100644 --- a/metadata/md5-cache/dev-haskell/profunctors-4.3.2 +++ b/metadata/md5-cache/dev-haskell/profunctors-4.3.2 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install postinst postrm setup test DEPEND=>=dev-haskell/comonad-4:=[profile?] =dev-haskell/distributive-0.4.4:=[profile?] =dev-haskell/semigroupoids-4:=[profile?] =dev-haskell/tagged-0.4.4:=[profile?] =dev-haskell/transformers-0.2:=[profile?] =dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.10 doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) -DESCRIPTION=Profunctors haskell library +DESCRIPTION=Haskell 98 Profunctors EAPI=5 HOMEPAGE=https://github.com/ekmett/profunctors/ IUSE=doc hscolour profile @@ -10,4 +10,4 @@ RDEPEND=>=dev-haskell/comonad-4:=[profile?] SLOT=0/4.3.2 SRC_URI=mirror://hackage/packages/archive/profunctors/4.3.2/profunctors-4.3.2.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb ghc-package f9cf05643e20f03876bb4807f008c80f haskell-cabal 45605f3898bdc59eb016fb50ca27bf18 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=cbc4fabc880eaef49f518f9ab1822b32 +_md5_=0581b8de4bcba85ff2cfa655f112a0fd diff --git a/metadata/md5-cache/dev-haskell/profunctors-4.4.1 b/metadata/md5-cache/dev-haskell/profunctors-4.4.1 index 89d102450482..2b2b92b45fa0 100644 --- a/metadata/md5-cache/dev-haskell/profunctors-4.4.1 +++ b/metadata/md5-cache/dev-haskell/profunctors-4.4.1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install postinst postrm setup test DEPEND=>=dev-haskell/comonad-4:=[profile?] =dev-haskell/distributive-0.4.4:=[profile?] =dev-haskell/semigroupoids-4:=[profile?] =dev-haskell/tagged-0.4.4:=[profile?] =dev-haskell/transformers-0.2:=[profile?] =dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.10 doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) -DESCRIPTION=Profunctors haskell library +DESCRIPTION=Haskell 98 Profunctors EAPI=5 HOMEPAGE=https://github.com/ekmett/profunctors/ IUSE=doc hscolour profile @@ -10,4 +10,4 @@ RDEPEND=>=dev-haskell/comonad-4:=[profile?] SLOT=0/4.4.1 SRC_URI=mirror://hackage/packages/archive/profunctors/4.4.1/profunctors-4.4.1.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb ghc-package f9cf05643e20f03876bb4807f008c80f haskell-cabal 45605f3898bdc59eb016fb50ca27bf18 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=b5657c127a6d43b3b84ae62a8467d27d +_md5_=dbc52c424acdcc5568005c5226ae475b diff --git a/metadata/md5-cache/dev-haskell/profunctors-5.1.2 b/metadata/md5-cache/dev-haskell/profunctors-5.1.2 index 3157980d387f..8899e0f8452f 100644 --- a/metadata/md5-cache/dev-haskell/profunctors-5.1.2 +++ b/metadata/md5-cache/dev-haskell/profunctors-5.1.2 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install postinst postrm setup test DEPEND=>=dev-haskell/bifunctors-5:=[profile?] =dev-haskell/comonad-4:=[profile?] =dev-haskell/contravariant-1:=[profile?] =dev-haskell/distributive-0.4.4:=[profile?] =dev-haskell/tagged-0.4.4:=[profile?] =dev-haskell/transformers-0.2:=[profile?] =dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.10 doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) -DESCRIPTION=Profunctors haskell library +DESCRIPTION=Haskell 98 Profunctors EAPI=5 HOMEPAGE=https://github.com/ekmett/profunctors/ IUSE=doc hscolour profile @@ -10,4 +10,4 @@ RDEPEND=>=dev-haskell/bifunctors-5:=[profile?] =dev-haskell/base-orphans-0.4:=[profile?] =dev-haskell/bifunctors-5.2:=[profile?] =dev-haskell/comonad-4:=[profile?] =dev-haskell/contravariant-1:=[profile?] =dev-haskell/distributive-0.4.4:=[profile?] =dev-haskell/tagged-0.4.4:=[profile?] =dev-haskell/transformers-0.2:=[profile?] =dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.10 doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) -DESCRIPTION=Profunctors +DESCRIPTION=Haskell 98 Profunctors EAPI=5 HOMEPAGE=https://github.com/ekmett/profunctors/ IUSE=doc hscolour profile @@ -10,4 +10,4 @@ RDEPEND=>=dev-haskell/base-orphans-0.4:=[profile?] =virtual/jdk-1.4 >=virtual/jre-1.4 >=dev-java/bcel-5.1 >=dev-java/xerces-2.7 >=dev-java/ant-core-1.7.0 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=A collection of tasks (and at one point maybe types and other tools) for Apache Ant +DESCRIPTION=A collection of tasks for Apache Ant EAPI=0 HOMEPAGE=http://ant-contrib.sourceforge.net/ IUSE=elibc_FreeBSD doc source elibc_FreeBSD @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/ant-contrib/ant-contrib-1.0b2-src.tar.bz2 _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=d51ef0892a1cfeb5e9d79ed8196ec685 +_md5_=c23cf7c51477d125aaeb995608572650 diff --git a/metadata/md5-cache/dev-java/avalon-logkit-1.2.2-r1 b/metadata/md5-cache/dev-java/avalon-logkit-1.2.2-r1 index e9f6b8df0b94..7503a43bde3b 100644 --- a/metadata/md5-cache/dev-java/avalon-logkit-1.2.2-r1 +++ b/metadata/md5-cache/dev-java/avalon-logkit-1.2.2-r1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile install preinst prepare setup test DEPEND=dev-java/avalon-framework:4.1 dev-java/log4j:0 java-virtuals/jaf:0 java-virtuals/javamail:0 java-virtuals/jms:0 java-virtuals/servlet-api:2.5 >=virtual/jdk-1.4 test? ( dev-java/junit:4 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=An easy-to-use Java logging toolkit designed for secure, performance-oriented logging +DESCRIPTION=Easy-to-use Java logging toolkit EAPI=4 HOMEPAGE=http://avalon.apache.org/ IUSE=elibc_FreeBSD doc source test @@ -10,4 +10,4 @@ RDEPEND=dev-java/avalon-framework:4.1 dev-java/log4j:0 java-virtuals/jaf:0 java- SLOT=1.2 SRC_URI=mirror://apache/avalon/logkit/source/logkit-1.2.2-src.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=9bb158c532ec1d217198f117c6ad86fa +_md5_=9e905599bb81e67df143fc311ea9c45b diff --git a/metadata/md5-cache/dev-java/browserlauncher2-1.3-r1 b/metadata/md5-cache/dev-java/browserlauncher2-1.3-r1 index 1f8e8d0775ab..d5619fad1b40 100644 --- a/metadata/md5-cache/dev-java/browserlauncher2-1.3-r1 +++ b/metadata/md5-cache/dev-java/browserlauncher2-1.3-r1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup DEPEND=>=virtual/jdk-1.4 app-arch/unzip >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=BrowserLauncher2 is a library that facilitates opening a browser from a Java application +DESCRIPTION=A library that facilitates opening a browser from a Java application EAPI=5 HOMEPAGE=http://browserlaunch2.sourceforge.net/ IUSE=elibc_FreeBSD doc source elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.4 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip SLOT=1.0 SRC_URI=mirror://sourceforge/browserlaunch2/BrowserLauncher2-all-1_3.jar _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=4279f8a2d9870ce693edc5983e4cab73 +_md5_=71ebcb7a11216a2f1724ece5ddc4d7e5 diff --git a/metadata/md5-cache/dev-java/classmate-0.9.0-r1 b/metadata/md5-cache/dev-java/classmate-0.9.0-r1 index 3bf6dd8828af..2d8844ac3471 100644 --- a/metadata/md5-cache/dev-java/classmate-0.9.0-r1 +++ b/metadata/md5-cache/dev-java/classmate-0.9.0-r1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile install preinst prepare setup test unpack DEPEND=>=virtual/jdk-1.6 test? ( dev-java/junit:4 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=Library for introspecting generic type information of types, member/static methods, fields +DESCRIPTION=Zero-dependency Java library for accurately introspecting type information EAPI=5 HOMEPAGE=https://github.com/cowtowncoder/java-classmate/ IUSE=elibc_FreeBSD doc source test elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip SLOT=0 SRC_URI=https://github.com/cowtowncoder/java-classmate/archive/classmate-0.9.0.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-pkg-simple 3e71074eb6884746b37b70b2c9c881f4 java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee vcs-snapshot 03289f51c769cf409d200d2d628cdd6e versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=36e7e014bb229fabff11a49563a01470 +_md5_=9b59d844cb5737177cf19ef1c1d0268f diff --git a/metadata/md5-cache/dev-java/commons-digester-1.8.1-r2 b/metadata/md5-cache/dev-java/commons-digester-1.8.1-r2 index 634f571e7849..62677cbbad5e 100644 --- a/metadata/md5-cache/dev-java/commons-digester-1.8.1-r2 +++ b/metadata/md5-cache/dev-java/commons-digester-1.8.1-r2 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup test DEPEND=>=virtual/jdk-1.6 test? ( dev-java/junit:0 dev-java/ant-junit:0 ) dev-java/commons-beanutils:1.7 >=dev-java/commons-collections-2.1:0 >=dev-java/commons-logging-1.0.2:0 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=Reads XML configuration files to provide initialization of various Java objects within the system +DESCRIPTION=Reads XML configuration files to provide initialization of various Java objects EAPI=5 HOMEPAGE=http://commons.apache.org/digester/ IUSE=elibc_FreeBSD doc examples source test elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.6 dev-java/commons-beanutils:1.7 >=dev-java/commons-coll SLOT=0 SRC_URI=mirror://apache/commons/digester/source/commons-digester-1.8.1-src.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=1ab2e07b3dadd4479058b5dfd6f49a46 +_md5_=6e86a6590d25f88aa995bf401457550c diff --git a/metadata/md5-cache/dev-java/commons-digester-2.1-r1 b/metadata/md5-cache/dev-java/commons-digester-2.1-r1 index 0ab29b2784ed..1d81049cc83b 100644 --- a/metadata/md5-cache/dev-java/commons-digester-2.1-r1 +++ b/metadata/md5-cache/dev-java/commons-digester-2.1-r1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup test DEPEND=>=virtual/jdk-1.6 dev-java/commons-beanutils:1.7 >=dev-java/commons-collections-2.1:0 >=dev-java/commons-logging-1.0.2:0 test? ( dev-java/junit:0 dev-java/ant-junit:0 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=Reads XML configuration files to provide initialization of various Java objects within the system +DESCRIPTION=Reads XML configuration files to provide initialization of various Java objects EAPI=5 HOMEPAGE=http://commons.apache.org/digester/ IUSE=elibc_FreeBSD doc examples source test elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.6 dev-java/commons-beanutils:1.7 >=dev-java/commons-coll SLOT=2.1 SRC_URI=mirror://apache/commons/digester/source/commons-digester-2.1-src.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=4fd764215ee761450c0d546b03e1560d +_md5_=706e754cb04503ad6e2b439228454541 diff --git a/metadata/md5-cache/dev-java/commons-digester-3.2-r2 b/metadata/md5-cache/dev-java/commons-digester-3.2-r2 index 5acc7242686b..de71306e1522 100644 --- a/metadata/md5-cache/dev-java/commons-digester-3.2-r2 +++ b/metadata/md5-cache/dev-java/commons-digester-3.2-r2 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup test DEPEND=>=virtual/jdk-1.6 dev-java/cglib:3 dev-java/commons-beanutils:1.7 >=dev-java/commons-logging-1.0.2:0 test? ( dev-java/junit:4 dev-java/ant-junit:0 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=Reads XML configuration files to provide initialization of various Java objects within the system +DESCRIPTION=Reads XML configuration files to provide initialization of various Java objects EAPI=5 HOMEPAGE=http://commons.apache.org/digester/ IUSE=elibc_FreeBSD doc examples source test elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.6 dev-java/cglib:3 dev-java/commons-beanutils:1.7 >=dev- SLOT=3.2 SRC_URI=mirror://apache/commons/digester/source/commons-digester3-3.2-src.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=f970bc852b0dbde68f66f1b502a3e9f9 +_md5_=e55c359a6450415af0aa4a37ba7ce9a0 diff --git a/metadata/md5-cache/dev-java/commons-fileupload-1.3 b/metadata/md5-cache/dev-java/commons-fileupload-1.3 index 96bbabbd7161..9ca88891fb7b 100644 --- a/metadata/md5-cache/dev-java/commons-fileupload-1.3 +++ b/metadata/md5-cache/dev-java/commons-fileupload-1.3 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup test DEPEND=dev-java/commons-io:1 dev-java/portletapi:1 java-virtuals/servlet-api:2.5 >=virtual/jdk-1.5 test? ( dev-java/ant-junit:0 dev-java/junit:4 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=Add robust, high-performance, file upload capability to your servlets and web applications +DESCRIPTION=High-performance file upload capability to your servlets and web applications EAPI=5 HOMEPAGE=http://commons.apache.org/fileupload/ IUSE=elibc_FreeBSD doc source test elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=dev-java/commons-io:1 dev-java/portletapi:1 java-virtuals/servlet-api:2. SLOT=0 SRC_URI=mirror://apache/commons/fileupload/source/commons-fileupload-1.3-src.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=05e58df25a0615d18b0851254a84ccf8 +_md5_=d2212cb31ce0aa19256586c65f7bc249 diff --git a/metadata/md5-cache/dev-java/commons-io-2.4 b/metadata/md5-cache/dev-java/commons-io-2.4 index d899d6d57375..1aaecc678fdc 100644 --- a/metadata/md5-cache/dev-java/commons-io-2.4 +++ b/metadata/md5-cache/dev-java/commons-io-2.4 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup test DEPEND=>=virtual/jdk-1.6 test? ( dev-java/ant-junit:0 dev-java/junit:4 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=Commons-IO contains utility classes, stream implementations, file filters, and endian classes +DESCRIPTION=Utility classes, stream implementations, file filters, and endian classes EAPI=5 HOMEPAGE=http://commons.apache.org/io/ IUSE=test elibc_FreeBSD doc source elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip SLOT=1 SRC_URI=mirror://apache/commons/io/source/commons-io-2.4-src.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=b3d72a3f4461b3613fc3302a510824f7 +_md5_=f175a7b878cad125580eea19e1bb8e4a diff --git a/metadata/md5-cache/dev-java/commons-logging-1.2 b/metadata/md5-cache/dev-java/commons-logging-1.2 index 381b2856a0b8..056c5619d591 100644 --- a/metadata/md5-cache/dev-java/commons-logging-1.2 +++ b/metadata/md5-cache/dev-java/commons-logging-1.2 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup DEPEND=>=virtual/jdk-1.6 avalon-logkit? ( dev-java/avalon-logkit:1.2 ) log4j? ( dev-java/log4j:0 ) servletapi? ( java-virtuals/servlet-api:2.3 ) avalon-framework? ( dev-java/avalon-framework:4.2 ) test? ( dev-java/ant-junit:0 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=The Jakarta-Commons Logging package is an ultra-thin bridge between different logging libraries +DESCRIPTION=An ultra-thin bridge between different Java logging libraries EAPI=5 HOMEPAGE=http://commons.apache.org/logging/ IUSE=avalon-logkit log4j servletapi avalon-framework elibc_FreeBSD doc source test elibc_FreeBSD elibc_FreeBSD @@ -11,4 +11,4 @@ RESTRICT=!servletapi? ( test ) SLOT=0 SRC_URI=mirror://apache/commons/logging/source/commons-logging-1.2-src.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-osgi c90eda970384b702459d01fc288d647d java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=b3e042bb2c6802c71470a828a3f1a931 +_md5_=43ac3817db9ec27cefd989f1767a280e diff --git a/metadata/md5-cache/dev-java/cpptasks-1.0_beta5 b/metadata/md5-cache/dev-java/cpptasks-1.0_beta5 index c2952103bd8b..290dc92381fa 100644 --- a/metadata/md5-cache/dev-java/cpptasks-1.0_beta5 +++ b/metadata/md5-cache/dev-java/cpptasks-1.0_beta5 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup DEPEND=dev-java/ant-core:0 dev-java/xerces:2 >=virtual/jdk-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=Ant-tasks to compile various source languages and produce executables, shared and static libraries +DESCRIPTION=Ant-tasks to compile various source languages and produce executables EAPI=4 HOMEPAGE=http://ant-contrib.sourceforge.net/ IUSE=elibc_FreeBSD doc source examples elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=dev-java/ant-core:0 dev-java/xerces:2 >=virtual/jre-1.6 >=dev-java/java- SLOT=0 SRC_URI=mirror://sourceforge/ant-contrib/ant-contrib/cpptasks-1.0-beta5/cpptasks-1.0b5.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=d4f7ce17be82a1909eef001fac7c473c +_md5_=2ea577b41d8f8daec43d867f7dc916ff diff --git a/metadata/md5-cache/dev-java/dynalang-0.4-r1 b/metadata/md5-cache/dev-java/dynalang-0.4-r1 index 12be8a24be50..12850bfd9d67 100644 --- a/metadata/md5-cache/dev-java/dynalang-0.4-r1 +++ b/metadata/md5-cache/dev-java/dynalang-0.4-r1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup test DEPEND=>=virtual/jdk-1.6 test? ( dev-java/emma:0 dev-java/junit:0 dev-java/ant-junit:0 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=Library for implementation of interoperable metaobject protocols for dynamic languages +DESCRIPTION=Library of interoperable metaobject protocols for dynamic languages EAPI=5 HOMEPAGE=https://sourceforge.net/projects/dynalang/ IUSE=test elibc_FreeBSD doc source elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip SLOT=0 SRC_URI=mirror://sourceforge/dynalang/dynalang/dynalang-mop-0.4.tgz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=be7a7edbba60e588b54bda158d1bf229 +_md5_=99c5353eb5b9346bbd1ce0540b739b5a diff --git a/metadata/md5-cache/dev-java/easymock-3.3.1 b/metadata/md5-cache/dev-java/easymock-3.3.1 index 4b6efd00ae8d..c7da49a0d4c2 100644 --- a/metadata/md5-cache/dev-java/easymock-3.3.1 +++ b/metadata/md5-cache/dev-java/easymock-3.3.1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile install preinst prepare setup unpack DEPEND=>=virtual/jdk-1.6 app-arch/unzip dev-java/junit:4 dev-java/objenesis:0 dev-java/cglib:3 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=Provides Mock Objects for interfaces in JUnit tests by generating them on the fly +DESCRIPTION=Mock Objects for interfaces in JUnit tests by generating them on the fly EAPI=5 HOMEPAGE=http://www.easymock.org/ IUSE=elibc_FreeBSD doc examples source elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.6 dev-java/junit:4 dev-java/objenesis:0 dev-java/cglib:3 SLOT=3.2 SRC_URI=mirror://sourceforge/easymock/EasyMock/3.3.1/easymock-3.3.1.zip _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-pkg-simple 3e71074eb6884746b37b70b2c9c881f4 java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=ea1e3da4fb0b156c8eb630492409116f +_md5_=b5b40721b800c522d95d2e31901c72dd diff --git a/metadata/md5-cache/dev-java/easymock-classextension-3.2-r1 b/metadata/md5-cache/dev-java/easymock-classextension-3.2-r1 index 6cdee1b1c3c6..cc99d5fbe010 100644 --- a/metadata/md5-cache/dev-java/easymock-classextension-3.2-r1 +++ b/metadata/md5-cache/dev-java/easymock-classextension-3.2-r1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile install preinst prepare setup unpack DEPEND=>=virtual/jdk-1.5 app-arch/unzip dev-java/easymock:3.2 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=Provides Mock Objects for interfaces in JUnit tests by generating them on the fly +DESCRIPTION=Mock Objects for interfaces in JUnit tests by generating them on the fly EAPI=5 HOMEPAGE=http://www.easymock.org/ IUSE=elibc_FreeBSD doc examples source elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.5 dev-java/easymock:3.2 >=dev-java/java-config-2.2.0-r3 SLOT=3.2 SRC_URI=mirror://sourceforge/easymock/EasyMock%20Class%20Extension/3.2/easymockclassextension-3.2.zip _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-pkg-simple 3e71074eb6884746b37b70b2c9c881f4 java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=5fc5553e79a3bfd53c08fc776f960e15 +_md5_=cf4caf79ecb9f26a3ebe8ffe6d08d16d diff --git a/metadata/md5-cache/dev-java/ecj-gcj-3.5.2-r3 b/metadata/md5-cache/dev-java/ecj-gcj-3.5.2-r3 index 64f8b714c594..00e520022320 100644 --- a/metadata/md5-cache/dev-java/ecj-gcj-3.5.2-r3 +++ b/metadata/md5-cache/dev-java/ecj-gcj-3.5.2-r3 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile install postinst postrm preinst prepare setup DEPEND=sys-devel/gcc:*[gcj] app-eselect/eselect-java app-arch/unzip !dev-java/eclipse-ecj:3.5[gcj] >=dev-java/java-config-2.2.0-r3 -DESCRIPTION=A subset of Eclipse Compiler for Java compiled by gcj, serving as javac in gcj-jdk +DESCRIPTION=Subset of Eclipse Compiler for Java compiled by gcj, serving as javac in gcj-jdk EAPI=5 HOMEPAGE=http://www.eclipse.org/ IUSE=+native elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=sys-devel/gcc:*[gcj] app-eselect/eselect-java >=dev-java/java-config-2.2 SLOT=3.5 SRC_URI=http://download.eclipse.org/eclipse/downloads/drops/R-3.5.2-201002111343/ecjsrc-3.5.2.zip _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 prefix df8265631f8bf5f5df387e9b987121f9 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=a60c13ea8d069d15ce69b87fa0afab52 +_md5_=f226b2568cc1596d2a7f86ae9ccbeb09 diff --git a/metadata/md5-cache/dev-java/ecj-gcj-3.6-r1 b/metadata/md5-cache/dev-java/ecj-gcj-3.6-r1 index 4e1e3d7d9519..99fc4b1a9d0f 100644 --- a/metadata/md5-cache/dev-java/ecj-gcj-3.6-r1 +++ b/metadata/md5-cache/dev-java/ecj-gcj-3.6-r1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile install postinst postrm preinst prepare setup DEPEND=sys-devel/gcc:*[gcj] app-eselect/eselect-java app-arch/unzip !dev-java/eclipse-ecj:3.5[gcj] >=dev-java/java-config-2.2.0-r3 -DESCRIPTION=A subset of Eclipse Compiler for Java compiled by gcj, serving as javac in gcj-jdk +DESCRIPTION=Subset of Eclipse Compiler for Java compiled by gcj, serving as javac in gcj-jdk EAPI=5 HOMEPAGE=http://www.eclipse.org/ IUSE=+native elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=sys-devel/gcc:*[gcj] app-eselect/eselect-java >=dev-java/java-config-2.2 SLOT=3.6 SRC_URI=http://download.eclipse.org/eclipse/downloads/drops/R-3.6-201006080911/ecjsrc-3.6.zip _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 prefix df8265631f8bf5f5df387e9b987121f9 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=7443595bc5db135a2a2396dc32b55860 +_md5_=6713cbff2c61777b502f57649281855f diff --git a/metadata/md5-cache/dev-java/ecj-gcj-4.2.1-r2 b/metadata/md5-cache/dev-java/ecj-gcj-4.2.1-r2 index 5a7f44bab6dd..1476501d7460 100644 --- a/metadata/md5-cache/dev-java/ecj-gcj-4.2.1-r2 +++ b/metadata/md5-cache/dev-java/ecj-gcj-4.2.1-r2 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile install postinst postrm preinst prepare setup DEPEND=sys-devel/gcc:*[gcj] app-eselect/eselect-java app-arch/unzip !dev-java/eclipse-ecj:3.5[gcj] >=dev-java/java-config-2.2.0-r3 -DESCRIPTION=A subset of Eclipse Compiler for Java compiled by gcj, serving as javac in gcj-jdk +DESCRIPTION=Subset of Eclipse Compiler for Java compiled by gcj, serving as javac in gcj-jdk EAPI=5 HOMEPAGE=http://www.eclipse.org/ IUSE=+native elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=sys-devel/gcc:*[gcj] app-eselect/eselect-java >=dev-java/java-config-2.2 SLOT=4.2 SRC_URI=http://download.eclipse.org/eclipse/downloads/drops4/R-4.2.1-201209141800/ecjsrc-4.2.1.jar _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 prefix df8265631f8bf5f5df387e9b987121f9 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=d35f254f82b2ebeb75c2f87384335949 +_md5_=ac7c84174d230a9f4ce704cff837649b diff --git a/metadata/md5-cache/dev-java/ecj-gcj-4.4.2 b/metadata/md5-cache/dev-java/ecj-gcj-4.4.2 index a31d2f3cc160..6875f07c45cf 100644 --- a/metadata/md5-cache/dev-java/ecj-gcj-4.4.2 +++ b/metadata/md5-cache/dev-java/ecj-gcj-4.4.2 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile install postinst postrm preinst prepare setup DEPEND=sys-devel/gcc:*[gcj] app-eselect/eselect-java app-arch/unzip !dev-java/eclipse-ecj:3.5[gcj] >=dev-java/java-config-2.2.0-r3 -DESCRIPTION=A subset of Eclipse Compiler for Java compiled by gcj, serving as javac in gcj-jdk +DESCRIPTION=Subset of Eclipse Compiler for Java compiled by gcj, serving as javac in gcj-jdk EAPI=5 HOMEPAGE=http://www.eclipse.org/ IUSE=+native elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=sys-devel/gcc:*[gcj] app-eselect/eselect-java >=dev-java/java-config-2.2 SLOT=4.4 SRC_URI=http://download.eclipse.org/eclipse/downloads/drops4/R-4.4.2-201502041700/ecjsrc-4.4.2.jar _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 prefix df8265631f8bf5f5df387e9b987121f9 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=2d005a5c0131be1f7682b4f459deb071 +_md5_=06b63e52ae353e4b166fd07062f2d594 diff --git a/metadata/md5-cache/dev-java/fastinfoset-1.2.11 b/metadata/md5-cache/dev-java/fastinfoset-1.2.11 index 52b3be82e448..6904692daeb7 100644 --- a/metadata/md5-cache/dev-java/fastinfoset-1.2.11 +++ b/metadata/md5-cache/dev-java/fastinfoset-1.2.11 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile install preinst prepare setup DEPEND=>=virtual/jdk-1.5 app-arch/unzip >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=Fast Infoset specifies a standardized binary encoding for the XML Information Sets +DESCRIPTION=Specifies a standardized binary encoding for the XML Information Sets EAPI=5 HOMEPAGE=https://fi.java.net/ IUSE=elibc_FreeBSD doc source elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.5 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip SLOT=0 SRC_URI=http://search.maven.org/remotecontent?filepath=com/sun/xml/fastinfoset/FastInfoset/1.2.11/FastInfoset-1.2.11-sources.jar _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-pkg-simple 3e71074eb6884746b37b70b2c9c881f4 java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=e48eb85cd15605ef8f219945a5698bd7 +_md5_=8fcae8f0c13073e09bd1e137263d830b diff --git a/metadata/md5-cache/dev-java/itext-2.1.5-r2 b/metadata/md5-cache/dev-java/itext-2.1.5-r2 index 30ae5d350c20..fe84b9883b15 100644 --- a/metadata/md5-cache/dev-java/itext-2.1.5-r2 +++ b/metadata/md5-cache/dev-java/itext-2.1.5-r2 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup unpack DEPEND=dev-java/bcmail:1.45 dev-java/bcprov:1.45 rups? ( dev-java/dom4j:1 dev-java/pdf-renderer:0 ) >=virtual/jdk-1.5 cjk? ( app-arch/unzip ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=A Java library that generate documents in the Portable Document Format (PDF) and/or HTML +DESCRIPTION=Generate documents in the Portable Document Format (PDF) and/or HTML EAPI=4 HOMEPAGE=http://www.lowagie.com/iText/ IUSE=cjk rtf rups elibc_FreeBSD doc source elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=dev-java/bcmail:1.45 dev-java/bcprov:1.45 rups? ( dev-java/dom4j:1 dev-j SLOT=0 SRC_URI=mirror://sourceforge/itext/iText-src-2.1.5.tar.gz cjk? ( mirror://sourceforge/itext/iTextAsian.jar mirror://sourceforge/itext/iTextAsianCmaps.jar ) _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=a3090c4e47a7973841fafae0830eb653 +_md5_=edb81c26b42de24f348cf430a194e17c diff --git a/metadata/md5-cache/dev-java/itext-5.5.4-r2 b/metadata/md5-cache/dev-java/itext-5.5.4-r2 index 0c0bd4e775c7..e4daa628fc62 100644 --- a/metadata/md5-cache/dev-java/itext-5.5.4-r2 +++ b/metadata/md5-cache/dev-java/itext-5.5.4-r2 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile install preinst prepare setup DEPEND=dev-java/bcmail:1.52 dev-java/bcpkix:1.52 dev-java/bcprov:1.52 dev-java/xml-security:0 >=virtual/jdk-1.6 app-arch/unzip >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=Java library that generate documents in the Portable Document Format (PDF) and/or HTML. +DESCRIPTION=Generate documents in the Portable Document Format (PDF) and/or HTML EAPI=5 HOMEPAGE=http://itextpdf.com IUSE=elibc_FreeBSD doc source elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=dev-java/bcmail:1.52 dev-java/bcpkix:1.52 dev-java/bcprov:1.52 dev-java/ SLOT=5 SRC_URI=mirror://sourceforge/itext/itext-5.5.4.zip _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-pkg-simple 3e71074eb6884746b37b70b2c9c881f4 java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=068ab393ab40b3129f3cd4b0a20e0dd5 +_md5_=203399be957d58c9cbf9e2ce72c4dfd8 diff --git a/metadata/md5-cache/dev-java/jansi-1.11-r1 b/metadata/md5-cache/dev-java/jansi-1.11-r1 index 936a8accd151..8278b4177efe 100644 --- a/metadata/md5-cache/dev-java/jansi-1.11-r1 +++ b/metadata/md5-cache/dev-java/jansi-1.11-r1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup test unpack DEPEND=dev-java/jansi-native:0 test? ( dev-java/ant-junit4:0 dev-java/junit:4 ) >=virtual/jdk-1.7 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=Jansi is a small java library that allows you to use ANSI escape sequences in your console output +DESCRIPTION=A library that allows you to use ANSI escape sequences in your console output EAPI=5 HOMEPAGE=http://jansi.fusesource.org/ IUSE=elibc_FreeBSD source test elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=dev-java/jansi-native:0 >=virtual/jre-1.5 >=dev-java/java-config-2.2.0-r SLOT=1.11 SRC_URI=https://github.com/fusesource/jansi/tarball/jansi-project-1.11 -> jansi-1.11.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee vcs-snapshot 03289f51c769cf409d200d2d628cdd6e versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=8de041fb0450c9be6aac935a2d8d2777 +_md5_=47beae57040ccbb54dd6a23f7a1fc3e7 diff --git a/metadata/md5-cache/dev-java/jansi-1.5 b/metadata/md5-cache/dev-java/jansi-1.5 index 92cab17a2e84..e15ab35c160b 100644 --- a/metadata/md5-cache/dev-java/jansi-1.5 +++ b/metadata/md5-cache/dev-java/jansi-1.5 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup test DEPEND=dev-java/jansi-native:0 test? ( dev-java/ant-junit4:0 dev-java/junit:4 ) >=virtual/jdk-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=Jansi is a small java library that allows you to use ANSI escape sequences in your console output +DESCRIPTION=A library that allows you to use ANSI escape sequences in your console output EAPI=5 HOMEPAGE=http://jansi.fusesource.org/ IUSE=elibc_FreeBSD source test doc elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=dev-java/jansi-native:0 >=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r SLOT=0 SRC_URI=https://github.com/fusesource/jansi/archive/jansi-1.5.zip _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=cad8a053c78ed1d189f03e2454d7f6a9 +_md5_=8f55b95d51c001c3038b47e36a6fdd49 diff --git a/metadata/md5-cache/dev-java/jansi-1.5-r1 b/metadata/md5-cache/dev-java/jansi-1.5-r1 index 8f760455f52d..2945fb31cdad 100644 --- a/metadata/md5-cache/dev-java/jansi-1.5-r1 +++ b/metadata/md5-cache/dev-java/jansi-1.5-r1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile install preinst prepare setup DEPEND=dev-java/jansi-native:0 >=virtual/jdk-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=Jansi is a small java library that allows you to use ANSI escape sequences in your console output +DESCRIPTION=A library that allows you to use ANSI escape sequences in your console output EAPI=5 HOMEPAGE=http://jansi.fusesource.org/ IUSE=elibc_FreeBSD source doc elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=dev-java/jansi-native:0 >=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r SLOT=0 SRC_URI=https://github.com/fusesource/jansi/archive/jansi-1.5.zip _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-pkg-simple 3e71074eb6884746b37b70b2c9c881f4 java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=876a9bc45746309ff9c4a1dbb071df48 +_md5_=5eba609b4c77a09de3e1cefba30992b8 diff --git a/metadata/md5-cache/dev-java/jboss-marshalling-1.3.0 b/metadata/md5-cache/dev-java/jboss-marshalling-1.3.0 index f5e0d1bb94c1..374e5aa6d537 100644 --- a/metadata/md5-cache/dev-java/jboss-marshalling-1.3.0 +++ b/metadata/md5-cache/dev-java/jboss-marshalling-1.3.0 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile install preinst prepare setup DEPEND=>=virtual/jdk-1.5 dev-java/jboss-modules:0 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=Alternative compatible serialization API that fixes many JDK serialization API problems +DESCRIPTION=Compatible alternative to the JDK serialization API EAPI=5 HOMEPAGE=http://jbossmarshalling.jboss.org/ IUSE=elibc_FreeBSD source elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.5 dev-java/jboss-modules:0 >=dev-java/java-config-2.2.0- SLOT=0 SRC_URI=http://download.jboss.org/jbossmarshalling/jboss-marshalling-1.3.0.CR9-sources.jar _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-pkg-simple 3e71074eb6884746b37b70b2c9c881f4 java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=a16bfd02665e915c70d8a9ee6ca856e9 +_md5_=be63a66965a364867d76dfb669e3a887 diff --git a/metadata/md5-cache/dev-java/jcommon-1.0.23 b/metadata/md5-cache/dev-java/jcommon-1.0.23 index f01caa981da3..9c857fc5a596 100644 --- a/metadata/md5-cache/dev-java/jcommon-1.0.23 +++ b/metadata/md5-cache/dev-java/jcommon-1.0.23 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup DEPEND=>=virtual/jdk-1.6 app-arch/unzip test? ( dev-java/junit:4 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=JCommon is a collection of useful classes used by JFreeChart, JFreeReport and other projects +DESCRIPTION=A collection of useful classes used by JFreeChart, JFreeReport and others EAPI=5 HOMEPAGE=http://www.jfree.org/jcommon IUSE=debug elibc_FreeBSD doc source test elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip SLOT=1.0 SRC_URI=mirror://sourceforge/jfreechart/jcommon-1.0.23.zip _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=2a836781671d8eef5dfa18558c432eff +_md5_=4850f5b75a4aab0b2c486ecafcad7c89 diff --git a/metadata/md5-cache/dev-java/jcs-2.0 b/metadata/md5-cache/dev-java/jcs-2.0 index e733173d3719..390a100945e3 100644 --- a/metadata/md5-cache/dev-java/jcs-2.0 +++ b/metadata/md5-cache/dev-java/jcs-2.0 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup test DEPEND=>=virtual/jdk-1.6 test? ( dev-java/ant-junit:0 ) dev-java/jisp:2.5 dev-db/hsqldb:0 dev-java/log4j:0 dev-java/xmlrpc:3 dev-java/commons-lang:0 dev-java/commons-dbcp:0 dev-java/commons-pool:0 dev-java/commons-logging:0 dev-java/commons-httpclient:3 java-virtuals/servlet-api:3.0 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=JCS is a distributed caching system written in Java for server-side Java applications +DESCRIPTION=A distributed caching system for server-side Java applications EAPI=5 HOMEPAGE=http://commons.apache.org/jcs/ IUSE=admin elibc_FreeBSD test doc source elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.6 dev-java/jisp:2.5 dev-db/hsqldb:0 dev-java/log4j:0 dev SLOT=2.0 SRC_URI=http://apache.mirrors.ovh.net/ftp.apache.org/dist/commons/jcs/source/commons-jcs-dist-2.0-beta-1-src.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=5bdceb8168c310729532b158ba20df56 +_md5_=36d7df7251e39aa88991defd284a2ad2 diff --git a/metadata/md5-cache/dev-java/jdepend-2.9-r5 b/metadata/md5-cache/dev-java/jdepend-2.9-r5 index b452567baae0..f34e3eadffde 100644 --- a/metadata/md5-cache/dev-java/jdepend-2.9-r5 +++ b/metadata/md5-cache/dev-java/jdepend-2.9-r5 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup DEPEND=>=virtual/jdk-1.4 >=app-arch/unzip-5.50-r1 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=JDepend traverses Java class file directories and generates design quality metrics per package +DESCRIPTION=Traverses Java class file directories and generates design quality metrics EAPI=5 HOMEPAGE=http://www.clarkware.com/software/JDepend.html IUSE=elibc_FreeBSD doc source elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.4 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip SLOT=0 SRC_URI=http://www.clarkware.com/software/jdepend-2.9.zip _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=2cff4a6abf62324ec941c1690dfbf852 +_md5_=8758a19968de096871156cd66b226fcd diff --git a/metadata/md5-cache/dev-java/jisp-2.5.1-r3 b/metadata/md5-cache/dev-java/jisp-2.5.1-r3 index 949f8e864fbe..0903c5121379 100644 --- a/metadata/md5-cache/dev-java/jisp-2.5.1-r3 +++ b/metadata/md5-cache/dev-java/jisp-2.5.1-r3 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile install preinst prepare setup DEPEND=>=virtual/jdk-1.4 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=Java Indexed Serialization Package: A small, embedded database engine written in Pure Java +DESCRIPTION=Java Indexed Serialization Package: A small, embedded database engine EAPI=5 HOMEPAGE=http://www.coyotegulch.com/products/jisp/ IUSE=elibc_FreeBSD doc source elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.4 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip SLOT=2.5 SRC_URI=http://gentooexperimental.org/distfiles/jisp-2.5.1-source.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-pkg-simple 3e71074eb6884746b37b70b2c9c881f4 java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=b8408b1b04c51df40bca8f011964a4b7 +_md5_=b8c0de2246ab614591bde4786c5c07e6 diff --git a/metadata/md5-cache/dev-java/jreleaseinfo-1.3.0-r2 b/metadata/md5-cache/dev-java/jreleaseinfo-1.3.0-r2 index 8c321ea7cc2f..8ad206ab257f 100644 --- a/metadata/md5-cache/dev-java/jreleaseinfo-1.3.0-r2 +++ b/metadata/md5-cache/dev-java/jreleaseinfo-1.3.0-r2 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup DEPEND=>=virtual/jdk-1.4 app-arch/unzip:0 dev-java/ant-core:0 source? ( app-arch/zip:0 ) >=dev-java/java-config-2.2.0-r3 >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=Ant Task for build-time creation of Java source file with version, build number or other info +DESCRIPTION=Ant Task for build-time creation of Java source file with version or other info EAPI=5 HOMEPAGE=http://jreleaseinfo.sourceforge.net/ IUSE=source elibc_FreeBSD elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.4 dev-java/ant-core:0 >=dev-java/java-config-2.2.0-r3 SLOT=0 SRC_URI=mirror://sourceforge/jreleaseinfo/jreleaseinfo-1.3.0-src.zip _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=68803e238dde5d92e5daa68b1ca8bb12 +_md5_=e2ca4a4d61d2b2c2714a757df3476b03 diff --git a/metadata/md5-cache/dev-java/jvmstat-3.0 b/metadata/md5-cache/dev-java/jvmstat-3.0 index 9e8bdc728ccc..eeea0c8ceecd 100644 --- a/metadata/md5-cache/dev-java/jvmstat-3.0 +++ b/metadata/md5-cache/dev-java/jvmstat-3.0 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile install nofetch preinst setup DEPEND=app-arch/unzip >=dev-java/java-config-2.2.0-r3 -DESCRIPTION=Monitoring APIs and tools for monitoring the performance of the JVM in production environments +DESCRIPTION=Monitoring APIs and tools for monitoring the performance of the JVM EAPI=0 HOMEPAGE=http://java.sun.com/performance/jvmstat/ IUSE=doc elibc_FreeBSD @@ -11,4 +11,4 @@ RESTRICT=fetch strip SLOT=0 SRC_URI=jvmstat-3_0.zip _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=6883ca479ceed3389c94750f3f24ca36 +_md5_=6b829bcc3d2a1893a538066ea2e73666 diff --git a/metadata/md5-cache/dev-java/lucene-3.5.0 b/metadata/md5-cache/dev-java/lucene-3.5.0 index 33bb2ec76208..2cf71455a258 100644 --- a/metadata/md5-cache/dev-java/lucene-3.5.0 +++ b/metadata/md5-cache/dev-java/lucene-3.5.0 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup test DEPEND=>=virtual/jdk-1.5 dev-java/ant-nodeps:0 dev-java/junit:4 dev-java/ant-junit:0 contrib? ( dev-java/jakarta-regexp:1.4 dev-java/commons-compress:0 dev-java/commons-collections:0 dev-java/commons-digester:0 dev-java/commons-logging:0 dev-java/commons-beanutils:1.7 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=High-performance, full-featured text search engine library written entirely in Java +DESCRIPTION=High-performance, full-featured text search engine written entirely in Java EAPI=3 HOMEPAGE=http://lucene.apache.org IUSE=elibc_FreeBSD doc source test contrib elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jdk-1.5 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip SLOT=3.5 SRC_URI=mirror://apache/lucene/java/3.5.0/lucene-3.5.0-src.tgz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=f1c58ae60acb12eb5a6d95f58eff6565 +_md5_=d305a4034f8d850523249bf3bb64f364 diff --git a/metadata/md5-cache/dev-java/lucene-3.6.2 b/metadata/md5-cache/dev-java/lucene-3.6.2 index 97c978e8942c..0649c7678b2d 100644 --- a/metadata/md5-cache/dev-java/lucene-3.6.2 +++ b/metadata/md5-cache/dev-java/lucene-3.6.2 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup test DEPEND=>=virtual/jdk-1.5 contrib? ( dev-java/commons-beanutils:1.7 >=dev-java/commons-codec-1.6:0 dev-java/commons-collections:0 dev-java/commons-compress:0 dev-java/commons-digester:0 dev-java/commons-logging:0 dev-java/jakarta-regexp:1.4 ) dev-java/ant-nodeps:0 test? ( >=dev-java/junit-4.12:4 dev-java/hamcrest-core ) dev-java/ant-junit:0 >=dev-java/ant-ivy-2.2.0:2 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=High-performance, full-featured text search engine library written entirely in Java +DESCRIPTION=High-performance, full-featured text search engine written entirely in Java EAPI=3 HOMEPAGE=http://lucene.apache.org IUSE=elibc_FreeBSD doc source test contrib elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jdk-1.5 contrib? ( dev-java/commons-beanutils:1.7 >=dev-java/c SLOT=3.6 SRC_URI=mirror://apache/lucene/java/3.6.2/lucene-3.6.2-src.tgz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=31aa9747e05ed6aa0e575f3c4325849e +_md5_=2addcfa73ecc5cb9cce4bec1ec326526 diff --git a/metadata/md5-cache/dev-java/lzmajio-0.95-r1 b/metadata/md5-cache/dev-java/lzmajio-0.95-r1 index ca7d81a0148a..80086ff1fc05 100644 --- a/metadata/md5-cache/dev-java/lzmajio-0.95-r1 +++ b/metadata/md5-cache/dev-java/lzmajio-0.95-r1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile install preinst prepare setup DEPEND=>=virtual/jdk-1.6 app-arch/unzip dev-java/lzma:0 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=Implementations of LzmaInputStream/LzmaOutputStream interacting with underlying LZMA en-/decoders +DESCRIPTION=LzmaInputStream/LzmaOutputStream interacting with underlying LZMA en-/decoders EAPI=5 HOMEPAGE=http://contrapunctus.net/league/haques/lzmajio/ IUSE=elibc_FreeBSD doc source elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.6 dev-java/lzma:0 >=dev-java/java-config-2.2.0-r3 source SLOT=0 SRC_URI=http://comsci.liu.edu/~league/dist/lzmajio/lzmajio-0.95.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-pkg-simple 3e71074eb6884746b37b70b2c9c881f4 java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=0061ecaa9b89d5f32d62511c71aca7e4 +_md5_=d07fb4604bb153f937fae67d4f6e0491 diff --git a/metadata/md5-cache/dev-java/nailgun-0.7.1-r1 b/metadata/md5-cache/dev-java/nailgun-0.7.1-r1 index c8bd2a2780b6..f529567288ea 100644 --- a/metadata/md5-cache/dev-java/nailgun-0.7.1-r1 +++ b/metadata/md5-cache/dev-java/nailgun-0.7.1-r1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup test DEPEND=>=virtual/jdk-1.4 dev-java/java-getopt:1 dev-java/bcel:0 dev-java/jakarta-oro:2.0 dev-java/log4j:0 app-arch/unzip dev-java/junit:0 test? ( dev-java/ant-junit:0 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=a client, protocol, and server for running Java apps without incurring the JVM startup overhead +DESCRIPTION=A client, protocol and server for running without incurring JVM startup overhead EAPI=2 HOMEPAGE=http://martiansoftware.com/nailgun/index.html IUSE=test elibc_FreeBSD doc source elibc_FreeBSD @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/nailgun/nailgun-src-0.7.1.zip _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=8b278acdd6fea00d8908b30c22da66f8 +_md5_=cdf3707f6b792e4a839a75d7ac112f8d diff --git a/metadata/md5-cache/dev-java/netty-buffer-4.0.21 b/metadata/md5-cache/dev-java/netty-buffer-4.0.21 index ccf7668df74c..7b1b022cb951 100644 --- a/metadata/md5-cache/dev-java/netty-buffer-4.0.21 +++ b/metadata/md5-cache/dev-java/netty-buffer-4.0.21 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup test DEPEND=>=virtual/jdk-1.6 dev-java/netty-common:0 test? ( dev-java/ant-core:0 dev-java/easymock:3.2 dev-java/hamcrest-library:1.3 dev-java/junit:4 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=Async event-driven framework for rapid development of high performance network applications +DESCRIPTION=Async event-driven framework for high performance network applications EAPI=5 HOMEPAGE=http://netty.io/ IUSE=elibc_FreeBSD doc source test elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.6 dev-java/netty-common:0 >=dev-java/java-config-2.2.0-r SLOT=0 SRC_URI=https://github.com/netty/netty/archive/netty-4.0.21.Final.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=2b8ef651f2f5bfee6a0373a487651f6f +_md5_=fc7cddec54ecefca467357814e98a654 diff --git a/metadata/md5-cache/dev-java/netty-common-4.0.21 b/metadata/md5-cache/dev-java/netty-common-4.0.21 index a44844330b99..4b52e7ab622d 100644 --- a/metadata/md5-cache/dev-java/netty-common-4.0.21 +++ b/metadata/md5-cache/dev-java/netty-common-4.0.21 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile install preinst prepare setup DEPEND=>=virtual/jdk-1.7 dev-java/commons-logging:0 dev-java/javassist:3 dev-java/log4j:0 dev-java/slf4j-nop:0 dev-java/slf4j-api:0 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -DESCRIPTION=Async event-driven framework for rapid development of high performance network applications +DESCRIPTION=Async event-driven framework for high performance network applications EAPI=5 HOMEPAGE=http://netty.io/ IUSE=elibc_FreeBSD doc source elibc_FreeBSD @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://github.com/netty/netty/archive/netty-4.0.21.Final.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-pkg-simple 3e71074eb6884746b37b70b2c9c881f4 java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=8e73d83b5b4b236701c46333da33cd7d +_md5_=e5f0385f7c6bbcf83e92a4b75d9c1470 diff --git a/metadata/md5-cache/dev-java/netty-transport-4.0.21-r1 b/metadata/md5-cache/dev-java/netty-transport-4.0.21-r1 index 9e0bcbbf2037..1b5ffc4ca9a9 100644 --- a/metadata/md5-cache/dev-java/netty-transport-4.0.21-r1 +++ b/metadata/md5-cache/dev-java/netty-transport-4.0.21-r1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup DEPEND=>=virtual/jdk-1.7 dev-java/netty-buffer:0 dev-java/netty-common:0 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=Async event-driven framework for rapid development of high performance network applications +DESCRIPTION=Async event-driven framework for high performance network applications EAPI=5 HOMEPAGE=http://netty.io/ IUSE=elibc_FreeBSD doc source elibc_FreeBSD @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://github.com/netty/netty/archive/netty-4.0.21.Final.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=59fc05743912e07bb781dd8423fdfbec +_md5_=8bb55f558603901de29bd4311487d34c diff --git a/metadata/md5-cache/dev-java/prefuse-20071021_beta b/metadata/md5-cache/dev-java/prefuse-20071021_beta index 6eb0fad586e5..4b5b71f90d3f 100644 --- a/metadata/md5-cache/dev-java/prefuse-20071021_beta +++ b/metadata/md5-cache/dev-java/prefuse-20071021_beta @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup DEPEND=>=virtual/jdk-1.4 dev-java/lucene:1 >=app-arch/unzip-5.50-r1 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=UI toolkit for building highly interactive visualizations of structured and unstructured data +DESCRIPTION=UI toolkit for building highly interactive visualizations of un-/structured data EAPI=5 HOMEPAGE=http://prefuse.org IUSE=elibc_FreeBSD doc examples source elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.4 dev-java/lucene:1 >=dev-java/java-config-2.2.0-r3 sour SLOT=2006 SRC_URI=mirror://sourceforge/prefuse/prefuse-beta-20071021.zip _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=f4dbf11910d7b49607dc9ea9438befd1 +_md5_=82d4c4de6b87aad568ba02f196f2691c diff --git a/metadata/md5-cache/dev-java/rome-0.9-r2 b/metadata/md5-cache/dev-java/rome-0.9-r2 index 9bec51987661..bdb7a2aa0244 100644 --- a/metadata/md5-cache/dev-java/rome-0.9-r2 +++ b/metadata/md5-cache/dev-java/rome-0.9-r2 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup test DEPEND=dev-java/jdom:1.0 >=virtual/jdk-1.6 app-arch/unzip test? ( dev-java/ant-junit:0 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=Open source Atom/RSS Java utilities that make it easy to work in Java with most syndication formats +DESCRIPTION=Java framework for RSS and Atom feeds EAPI=5 HOMEPAGE=https://java.net/projects/rome IUSE=elibc_FreeBSD doc source test elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=dev-java/jdom:1.0 >=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 sour SLOT=0 SRC_URI=https://rome.dev.java.net/source/browse/*checkout*/rome/www/dist/rome-0.9-src.zip _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=8b4843a1466955a73c052e5a0b485ca0 +_md5_=07aa2569f1bc0f2fa13619f993481083 diff --git a/metadata/md5-cache/dev-java/sblim-cim-client-2.2.1 b/metadata/md5-cache/dev-java/sblim-cim-client-2.2.1 index fa0f154ef949..61e84cd36e4a 100644 --- a/metadata/md5-cache/dev-java/sblim-cim-client-2.2.1 +++ b/metadata/md5-cache/dev-java/sblim-cim-client-2.2.1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup test DEPEND=>=virtual/jdk-1.5 test? ( dev-java/ant-junit ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=A WBEM services client that includes an IETF RFC 2614 compliant SLP client for CIM service discovery +DESCRIPTION=A WBEM services client that includes an SLP client for CIM service discovery EAPI=5 HOMEPAGE=http://sblim.wiki.sourceforge.net/CimClient IUSE=elibc_FreeBSD doc source test elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.5 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip SLOT=2 SRC_URI=mirror://sourceforge/sblim/sblim-cim-client2-2.2.1-src.zip _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=b9aa107031f2bee352bbe1638903137f +_md5_=af75cdcd6f23c8bff48c95cb0b2defc9 diff --git a/metadata/md5-cache/dev-java/sblim-cim-client-2.2.1-r1 b/metadata/md5-cache/dev-java/sblim-cim-client-2.2.1-r1 index 59c5cbeb14bc..e5e82dfda011 100644 --- a/metadata/md5-cache/dev-java/sblim-cim-client-2.2.1-r1 +++ b/metadata/md5-cache/dev-java/sblim-cim-client-2.2.1-r1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup test DEPEND=>=virtual/jdk-1.5 test? ( dev-java/ant-junit ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=A WBEM services client that includes an IETF RFC 2614 compliant SLP client for CIM service discovery +DESCRIPTION=A WBEM services client that includes an SLP client for CIM service discovery EAPI=5 HOMEPAGE=http://sblim.wiki.sourceforge.net/CimClient IUSE=elibc_FreeBSD doc source test elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.5 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip SLOT=2 SRC_URI=mirror://sourceforge/sblim/sblim-cim-client2-2.2.1-src.zip _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=2f15622af1fcb50be148fad6eff0991f +_md5_=9364d446f7c2067d58685825a2fb1f10 diff --git a/metadata/md5-cache/dev-java/spring-aop-3.2.4 b/metadata/md5-cache/dev-java/spring-aop-3.2.4 index ffad22d5a537..97920118afa3 100644 --- a/metadata/md5-cache/dev-java/spring-aop-3.2.4 +++ b/metadata/md5-cache/dev-java/spring-aop-3.2.4 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup test DEPEND=>=virtual/jdk-1.7 test? ( dev-java/hamcrest-core:1.3 dev-java/hamcrest-library:1.3 dev-java/junit:4 dev-java/mockito:0 dev-java/ant-junit4:0 dev-java/xmlunit:1 ) dev-java/spring-core:3.2 dev-java/spring-beans:3.2 dev-java/aopalliance:1 dev-java/aspectj:0 dev-java/commons-logging:0 dev-java/commons-pool:0 dev-java/jamon:1 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=A comprehensive programming and configuration model for modern Java-based enterprise applications +DESCRIPTION=A comprehensive programming and configuration model for enterprise applications EAPI=5 HOMEPAGE=http://www.springsource.org/spring-framework IUSE=elibc_FreeBSD doc source test elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.7 dev-java/spring-core:3.2 dev-java/spring-beans:3.2 dev SLOT=3.2 SRC_URI=https://github.com/SpringSource/spring-framework/archive/v3.2.4.RELEASE.tar.gz -> spring-framework-3.2.4.tar.gz https://dev.gentoo.org/~ercpe/distfiles/dev-java/spring-framework/spring-framework-3.2.4-buildscripts.tar.bz2 _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=7ef52117e3754ee54a56f73eae6ad479 +_md5_=a44f80ef803a617a21ecb3234336b289 diff --git a/metadata/md5-cache/dev-java/spring-beans-3.2.4 b/metadata/md5-cache/dev-java/spring-beans-3.2.4 index 686ac8bc32c1..9e59dde1ae7a 100644 --- a/metadata/md5-cache/dev-java/spring-beans-3.2.4 +++ b/metadata/md5-cache/dev-java/spring-beans-3.2.4 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup test DEPEND=>=virtual/jdk-1.7 test? ( dev-java/hamcrest-core:1.3 dev-java/hamcrest-library:1.3 dev-java/junit:4 dev-java/mockito:0 dev-java/ant-junit4:0 dev-java/xmlunit:1 ) dev-java/commons-logging:0 java-virtuals/servlet-api:3.0 dev-java/javax-inject:0 dev-java/spring-core:3.2 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=A comprehensive programming and configuration model for modern Java-based enterprise applications +DESCRIPTION=A comprehensive programming and configuration model for enterprise applications EAPI=5 HOMEPAGE=http://www.springsource.org/spring-framework IUSE=elibc_FreeBSD doc source test elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.7 dev-java/commons-logging:0 java-virtuals/servlet-api:3 SLOT=3.2 SRC_URI=https://github.com/SpringSource/spring-framework/archive/v3.2.4.RELEASE.tar.gz -> spring-framework-3.2.4.tar.gz https://dev.gentoo.org/~ercpe/distfiles/dev-java/spring-framework/spring-framework-3.2.4-buildscripts.tar.bz2 _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=bcd84ca4abe9bb6eb99edb1d4ddd4870 +_md5_=6da32f2574f814c9ef223e11ac2579a5 diff --git a/metadata/md5-cache/dev-java/spring-core-3.2.4 b/metadata/md5-cache/dev-java/spring-core-3.2.4 index 1530f71651cf..69ed001c00aa 100644 --- a/metadata/md5-cache/dev-java/spring-core-3.2.4 +++ b/metadata/md5-cache/dev-java/spring-core-3.2.4 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup test DEPEND=>=virtual/jdk-1.7 test? ( >=dev-java/junit-4.11:4 dev-java/hamcrest-core:1.3 dev-java/hamcrest-library:1.3 dev-java/mockito:0 dev-java/xmlunit:1 ) dev-java/commons-logging:0 dev-java/log4j:0 dev-java/aspectj:0 dev-java/asm:4 dev-java/cglib:3 dev-java/jopt-simple:4.4 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 dev-java/jarjar:1 dev-java/ant-junit:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=A comprehensive programming and configuration model for modern enterprise applications +DESCRIPTION=A comprehensive programming and configuration model for enterprise applications EAPI=5 HOMEPAGE=http://www.springsource.org/spring-framework IUSE=elibc_FreeBSD doc source test elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.7 dev-java/commons-logging:0 dev-java/log4j:0 dev-java/a SLOT=3.2 SRC_URI=https://github.com/SpringSource/spring-framework/archive/v3.2.4.RELEASE.tar.gz -> spring-framework-3.2.4.tar.gz https://dev.gentoo.org/~ercpe/distfiles/dev-java/spring-framework/spring-framework-3.2.4-buildscripts.tar.bz2 _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=9b9890dad3f2c7cdf713f4e00214a787 +_md5_=87c519da68f83820ecdeff40ab0a67db diff --git a/metadata/md5-cache/dev-java/spring-expression-3.2.4 b/metadata/md5-cache/dev-java/spring-expression-3.2.4 index afd5238e8656..591b9fe3aaf6 100644 --- a/metadata/md5-cache/dev-java/spring-expression-3.2.4 +++ b/metadata/md5-cache/dev-java/spring-expression-3.2.4 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup test DEPEND=>=virtual/jdk-1.7 test? ( dev-java/hamcrest-core:1.3 dev-java/hamcrest-library:1.3 dev-java/junit:4 dev-java/mockito:0 dev-java/ant-junit4:0 dev-java/xmlunit:1 ) dev-java/spring-core:3.2 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=A comprehensive programming and configuration model for modern Java-based enterprise applications +DESCRIPTION=A comprehensive programming and configuration model for enterprise applications EAPI=5 HOMEPAGE=http://www.springsource.org/spring-framework IUSE=elibc_FreeBSD doc source test elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.7 dev-java/spring-core:3.2 >=dev-java/java-config-2.2.0- SLOT=3.2 SRC_URI=https://github.com/SpringSource/spring-framework/archive/v3.2.4.RELEASE.tar.gz -> spring-framework-3.2.4.tar.gz https://dev.gentoo.org/~ercpe/distfiles/dev-java/spring-framework/spring-framework-3.2.4-buildscripts.tar.bz2 _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=34c6ae5aaf6b24c6a84aa67caba9bfc1 +_md5_=3c685354f3d4ce61d3c30ce6991c0c0d diff --git a/metadata/md5-cache/dev-java/spring-instrument-3.2.4 b/metadata/md5-cache/dev-java/spring-instrument-3.2.4 index 8873dd5bf1c7..884edbf0c8d4 100644 --- a/metadata/md5-cache/dev-java/spring-instrument-3.2.4 +++ b/metadata/md5-cache/dev-java/spring-instrument-3.2.4 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup test DEPEND=>=virtual/jdk-1.7 test? ( dev-java/ant-junit4:0 dev-java/hamcrest-core:1.3 dev-java/hamcrest-library:1.3 dev-java/junit:4 dev-java/mockito:0 dev-java/spring-core:3.2 dev-java/xmlunit:1 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=A comprehensive programming and configuration model for modern Java-based enterprise applications +DESCRIPTION=A comprehensive programming and configuration model for enterprise applications EAPI=5 HOMEPAGE=http://www.springsource.org/spring-framework IUSE=elibc_FreeBSD doc source test elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.7 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip SLOT=3.2 SRC_URI=https://github.com/SpringSource/spring-framework/archive/v3.2.4.RELEASE.tar.gz -> spring-framework-3.2.4.tar.gz https://dev.gentoo.org/~ercpe/distfiles/dev-java/spring-framework/spring-framework-3.2.4-buildscripts.tar.bz2 _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=aa17dea217d93c22e7ed8929f73ce4af +_md5_=1d85fc4c425acee734ecc5e20f392c36 diff --git a/metadata/md5-cache/dev-java/stax-1.2.0 b/metadata/md5-cache/dev-java/stax-1.2.0 index 419a123475e8..19a96deea3cc 100644 --- a/metadata/md5-cache/dev-java/stax-1.2.0 +++ b/metadata/md5-cache/dev-java/stax-1.2.0 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile install preinst setup test unpack DEPEND=>=virtual/jdk-1.4 app-arch/unzip >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=A standard XML processing API that allows you to stream XML data from and to your application +DESCRIPTION=A standard XML processing API that allows you to stream XML data EAPI=0 HOMEPAGE=http://stax.codehaus.org/ IUSE=elibc_FreeBSD doc source elibc_FreeBSD @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0 SRC_URI=http://dist.codehaus.org/stax/distributions/stax-src-1.2.0.zip _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=871be68d567f2fb3be805c3ea73fff40 +_md5_=a7068534cbb5daa21796b97424df8f21 diff --git a/metadata/md5-cache/dev-java/sun-jmx-1.2.1-r3 b/metadata/md5-cache/dev-java/sun-jmx-1.2.1-r3 index 8d440a1a3e6e..25412f0de23b 100644 --- a/metadata/md5-cache/dev-java/sun-jmx-1.2.1-r3 +++ b/metadata/md5-cache/dev-java/sun-jmx-1.2.1-r3 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile install nofetch preinst prepare setup DEPEND=>=virtual/jdk-1.4 app-arch/unzip >=dev-java/java-config-2.2.0-r3 -DESCRIPTION=Java Management Extensions for managing and monitoring devices, applications, and services +DESCRIPTION=Java Management Extensions for managing and monitoring EAPI=4 HOMEPAGE=http://www.oracle.com/technetwork/java/javase/tech/javamanagement-140525.html IUSE=elibc_FreeBSD doc examples @@ -11,4 +11,4 @@ RESTRICT=fetch SLOT=0 SRC_URI=jmx-1_2_1-ri.zip _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=acb437c6fe862e1e0191b26be8cf5304 +_md5_=813f33d6e0420b0b44b9e27711906ca2 diff --git a/metadata/md5-cache/dev-java/xalan-2.7.2 b/metadata/md5-cache/dev-java/xalan-2.7.2 index 4c776652b90c..f6a92ce240c0 100644 --- a/metadata/md5-cache/dev-java/xalan-2.7.2 +++ b/metadata/md5-cache/dev-java/xalan-2.7.2 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup DEPEND=dev-java/javacup:0 dev-java/bcel:0 >=virtual/jdk-1.3 doc? ( app-arch/unzip ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=Apache's XSLT processor for transforming XML documents into HTML, text, or other XML document types +DESCRIPTION=Transforming XML documents into HTML, text, or other XML document types EAPI=5 HOMEPAGE=http://xalan.apache.org/ IUSE=elibc_FreeBSD doc source elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=dev-java/javacup:0 dev-java/bcel:0 >=virtual/jre-1.3 ~dev-java/xalan-ser SLOT=0 SRC_URI=mirror://apache/xalan/xalan-j/source/xalan-j_2_7_2-src.tar.gz doc? ( mirror://apache/xalan/xalan-j/binaries/xalan-j_2_7_2-bin.zip ) _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=759a387de7e01d965b331ef1f998bc29 +_md5_=64af9b05dea0a800641d00fcffa79efc diff --git a/metadata/md5-cache/dev-java/xerces-2.11.0 b/metadata/md5-cache/dev-java/xerces-2.11.0 index 966a20b46d12..caabffb4e96d 100644 --- a/metadata/md5-cache/dev-java/xerces-2.11.0 +++ b/metadata/md5-cache/dev-java/xerces-2.11.0 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup DEPEND=dev-java/xml-commons-external:1.4 >=dev-java/xml-commons-resolver-1.2:0 >=virtual/jdk-1.4 >=dev-java/xjavac-20110814:1 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=The next generation of high performance, fully compliant XML parsers in the Apache Xerces family +DESCRIPTION=The next generation of high performance, fully compliant XML parsers EAPI=4 HOMEPAGE=http://xml.apache.org/xerces2-j/index.html IUSE=elibc_FreeBSD doc examples source elibc_FreeBSD @@ -11,4 +11,4 @@ RESTRICT=test SLOT=2 SRC_URI=mirror://apache/xerces/j/Xerces-J-src.2.11.0.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=0e5c573076f7ab96c30358aacb926b84 +_md5_=4076b7ada5af6a28f538e746aa9bdbc7 diff --git a/metadata/md5-cache/dev-java/xerces-2.11.0-r1 b/metadata/md5-cache/dev-java/xerces-2.11.0-r1 index e19b6f4b1d71..1cdec51a41e4 100644 --- a/metadata/md5-cache/dev-java/xerces-2.11.0-r1 +++ b/metadata/md5-cache/dev-java/xerces-2.11.0-r1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup DEPEND=dev-java/xml-commons-external:1.4 >=dev-java/xml-commons-resolver-1.2:0 >=virtual/jdk-1.6 >=dev-java/xjavac-20110814:1 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=The next generation of high performance, fully compliant XML parsers in the Apache Xerces family +DESCRIPTION=The next generation of high performance, fully compliant XML parsers EAPI=5 HOMEPAGE=http://xml.apache.org/xerces2-j/index.html IUSE=elibc_FreeBSD doc examples source elibc_FreeBSD @@ -11,4 +11,4 @@ RESTRICT=test SLOT=2 SRC_URI=mirror://apache/xerces/j/Xerces-J-src.2.11.0.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=630bfd08158ba72a1819c69ddfe33f99 +_md5_=ef6cb3a83d967258c6f8076fb283cacd diff --git a/metadata/md5-cache/dev-java/xml-commons-external-1.3.04 b/metadata/md5-cache/dev-java/xml-commons-external-1.3.04 index 23d6b70437bd..b56d54a1af05 100644 --- a/metadata/md5-cache/dev-java/xml-commons-external-1.3.04 +++ b/metadata/md5-cache/dev-java/xml-commons-external-1.3.04 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile install preinst setup DEPEND=>=virtual/jdk-1.3 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=An Apache-hosted set of externally-defined standards interfaces, namely DOM, SAX, and JAXP +DESCRIPTION=Externally-defined set of standard interfaces, namely DOM, SAX, and JAXP EAPI=0 HOMEPAGE=http://xml.apache.org/commons/ IUSE=doc source elibc_FreeBSD doc source elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.3 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip SLOT=1.3 SRC_URI=mirror://gentoo/xml-commons-external-1.3.04.tar.bz2 _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=79f193d190c34b4f9681a06994f88be0 +_md5_=a9e8fd214f054158afb931fa41099780 diff --git a/metadata/md5-cache/dev-java/xml-commons-external-1.4.01 b/metadata/md5-cache/dev-java/xml-commons-external-1.4.01 index 324f64567c26..f3d60b6677ef 100644 --- a/metadata/md5-cache/dev-java/xml-commons-external-1.4.01 +++ b/metadata/md5-cache/dev-java/xml-commons-external-1.4.01 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install preinst prepare setup DEPEND=>=virtual/jdk-1.3 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=An Apache-hosted set of externally-defined standards interfaces, namely DOM, SAX, and JAXP +DESCRIPTION=Externally-defined set of standard interfaces, namely DOM, SAX, and JAXP EAPI=4 HOMEPAGE=http://xml.apache.org/commons/ IUSE=doc source elibc_FreeBSD doc source elibc_FreeBSD @@ -10,4 +10,4 @@ RDEPEND=>=virtual/jre-1.3 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip SLOT=1.4 SRC_URI=https://dev.gentoo.org/~sera/distfiles/xml-commons-external-1.4.01.tar.bz2 _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=bb90c9edb93a9d439121248210cf07a6 +_md5_=c2a062f21ff2e9efed66f00cead1787b diff --git a/metadata/md5-cache/dev-lang/confluence-0.10.6 b/metadata/md5-cache/dev-lang/confluence-0.10.6 index 6bcf4144c72d..6e8d77956a76 100644 --- a/metadata/md5-cache/dev-lang/confluence-0.10.6 +++ b/metadata/md5-cache/dev-lang/confluence-0.10.6 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile install prepare DEPEND=>=dev-lang/ocaml-3.10[ocamlopt?] sys-apps/sed -DESCRIPTION=Functional programming language for reactive system design (digital logic, hard-real-time software) +DESCRIPTION=Functional programming language for reactive system design EAPI=2 HOMEPAGE=http://www.funhdl.org/wiki/doku.php?id=confluence IUSE=+ocamlopt @@ -10,4 +10,4 @@ RDEPEND=>=dev-lang/ocaml-3.10[ocamlopt?] SLOT=0 SRC_URI=http://www.funhdl.org/download/confluence-0.10.6.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee -_md5_=e6aa2e1a2217d00c4355bde5cc1b1789 +_md5_=8a7e2c89f622609e174b0899dd1e0c94 diff --git a/metadata/md5-cache/dev-lang/erlang-17.5 b/metadata/md5-cache/dev-lang/erlang-17.5 index 5a1946f12275..279a37c70400 100644 --- a/metadata/md5-cache/dev-lang/erlang-17.5 +++ b/metadata/md5-cache/dev-lang/erlang-17.5 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup DEPEND=>=dev-lang/perl-5.6.1 ssl? ( >=dev-libs/openssl-0.9.7d ) emacs? ( virtual/emacs ) java? ( >=virtual/jdk-1.2 ) odbc? ( dev-db/unixODBC ) wxwidgets? ( x11-libs/wxGTK:2.8[X,opengl] virtual/glu ) sctp? ( net-misc/lksctp-tools ) tk? ( dev-lang/tk ) >=app-portage/elt-patches-20170317 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 java? ( >=dev-java/java-config-2.2.0-r3 ) virtual/pkgconfig -DESCRIPTION=Erlang programming language, runtime environment, and large collection of libraries +DESCRIPTION=Erlang programming language, runtime environment and libraries (OTP) EAPI=4 HOMEPAGE=http://www.erlang.org/ IUSE=compat-ethread doc emacs halfword hipe java kpoll odbc smp sctp ssl systemd tk wxwidgets elibc_FreeBSD java @@ -10,4 +10,4 @@ RDEPEND=>=dev-lang/perl-5.6.1 ssl? ( >=dev-libs/openssl-0.9.7d ) emacs? ( virtua SLOT=0 SRC_URI=http://www.erlang.org/download/otp_src_17.5.tar.gz http://erlang.org/download/otp_doc_man_17.5.tar.gz doc? ( http://erlang.org/download/otp_doc_html_17.5.tar.gz ) _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 elisp-common 19ff54b35acd0bf2a14831a308a57753 epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb flag-o-matic 61cad4fb5d800b29d484b27cb033f59b java-pkg-opt-2 be255db325e3af8fbf3506cf63998341 java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd libtool e32ea84bf82cf8987965b574672dba93 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 systemd ec2e9154031d942186c75c0aabb41900 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 wxwidgets 04e063b0eff26daaea83d859dd9d6e05 -_md5_=9c2c011bb0d2597e10eceb38d44a60bb +_md5_=5f924c4a7d22ed4b2b97844545cd156c diff --git a/metadata/md5-cache/dev-lang/gprolog-1.4.4 b/metadata/md5-cache/dev-lang/gprolog-1.4.4 index 1fdc89207326..c4c176bff460 100644 --- a/metadata/md5-cache/dev-lang/gprolog-1.4.4 +++ b/metadata/md5-cache/dev-lang/gprolog-1.4.4 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=GNU Prolog is a native Prolog compiler with constraint solving over finite domains (FD) +DESCRIPTION=A native Prolog compiler with constraint solving over finite domains (FD) EAPI=4 HOMEPAGE=http://www.gprolog.org/ IUSE=debug doc examples @@ -8,4 +8,4 @@ LICENSE=GPL-2 LGPL-3 SLOT=0 SRC_URI=mirror://gnu/gprolog/gprolog-1.4.4.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb flag-o-matic 61cad4fb5d800b29d484b27cb033f59b ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee -_md5_=ed69a03b83332e85fe6a36b0b9905162 +_md5_=f76ccd02c774b44905d577aa8f4eb4ff diff --git a/metadata/md5-cache/dev-lang/parrot-7.1.0 b/metadata/md5-cache/dev-lang/parrot-7.1.0 index 6ea33948d2c0..53f3c774f653 100644 --- a/metadata/md5-cache/dev-lang/parrot-7.1.0 +++ b/metadata/md5-cache/dev-lang/parrot-7.1.0 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install test DEPEND=dev-lang/perl[doc?] sys-libs/readline dev-libs/libffi 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 +DESCRIPTION=Virtual machine designed to compile and execute bytecode for dynamic languages EAPI=5 HOMEPAGE=http://www.parrot.org/ IUSE=opengl nls doc examples gdbm gmp ssl +unicode pcre @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0/7.1.0 SRC_URI=ftp://ftp.parrot.org/pub/parrot/releases/all/7.1.0/parrot-7.1.0.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee -_md5_=ec3bf7f3daa509fefded958453a5f31e +_md5_=0d708d4f64544e56ef293988bf76dab9 diff --git a/metadata/md5-cache/dev-lang/parrot-7.11.0 b/metadata/md5-cache/dev-lang/parrot-7.11.0 index 295fb1ec4898..c1fab319f773 100644 --- a/metadata/md5-cache/dev-lang/parrot-7.11.0 +++ b/metadata/md5-cache/dev-lang/parrot-7.11.0 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install test DEPEND=dev-lang/perl[doc?] sys-libs/readline dev-libs/libffi 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 +DESCRIPTION=Virtual machine designed to compile and execute bytecode for dynamic languages EAPI=5 HOMEPAGE=http://www.parrot.org/ IUSE=opengl nls doc examples gdbm +gmp ssl +unicode pcre @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0/7.11.0 SRC_URI=ftp://ftp.parrot.org/pub/parrot/releases/all/7.11.0/parrot-7.11.0.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee -_md5_=12aa9724e6d9f2db7243dbe4bcaab2d1 +_md5_=194aa19f5c70de9d3d3cd657655302d8 diff --git a/metadata/md5-cache/dev-lang/parrot-7.5.0 b/metadata/md5-cache/dev-lang/parrot-7.5.0 index b6a06c74cf38..a975b04f7779 100644 --- a/metadata/md5-cache/dev-lang/parrot-7.5.0 +++ b/metadata/md5-cache/dev-lang/parrot-7.5.0 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install test DEPEND=dev-lang/perl[doc?] sys-libs/readline dev-libs/libffi 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 +DESCRIPTION=Virtual machine designed to compile and execute bytecode for dynamic languages EAPI=5 HOMEPAGE=http://www.parrot.org/ IUSE=opengl nls doc examples gdbm +gmp ssl +unicode pcre @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0/7.5.0 SRC_URI=ftp://ftp.parrot.org/pub/parrot/releases/all/7.5.0/parrot-7.5.0.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee -_md5_=12aa9724e6d9f2db7243dbe4bcaab2d1 +_md5_=194aa19f5c70de9d3d3cd657655302d8 diff --git a/metadata/md5-cache/dev-lang/parrot-8.1.0 b/metadata/md5-cache/dev-lang/parrot-8.1.0 index 007915ea94dd..98522e45aefb 100644 --- a/metadata/md5-cache/dev-lang/parrot-8.1.0 +++ b/metadata/md5-cache/dev-lang/parrot-8.1.0 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install test DEPEND=dev-lang/perl[doc?] sys-libs/readline dev-libs/libffi 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 +DESCRIPTION=Virtual machine designed to compile and execute bytecode for dynamic languages EAPI=5 HOMEPAGE=http://www.parrot.org/ IUSE=opengl nls doc examples gdbm +gmp ssl +unicode pcre @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0/8.1.0 SRC_URI=ftp://ftp.parrot.org/pub/parrot/releases/all/8.1.0/parrot-8.1.0.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee -_md5_=12aa9724e6d9f2db7243dbe4bcaab2d1 +_md5_=194aa19f5c70de9d3d3cd657655302d8 diff --git a/metadata/md5-cache/dev-libs/crypto++-5.6.2-r3 b/metadata/md5-cache/dev-libs/crypto++-5.6.2-r3 deleted file mode 100644 index 6e4991ab8517..000000000000 --- a/metadata/md5-cache/dev-libs/crypto++-5.6.2-r3 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=app-arch/unzip sys-devel/libtool >=app-portage/elt-patches-20170317 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=C++ class library of cryptographic schemes -EAPI=5 -HOMEPAGE=http://cryptopp.com -IUSE=static-libs -KEYWORDS=alpha amd64 ~arm hppa ppc ppc64 sparc x86 ~x64-macos -LICENSE=Boost-1.0 -SLOT=0 -SRC_URI=mirror://sourceforge/cryptopp/cryptopp562.zip -_eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool e32ea84bf82cf8987965b574672dba93 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee -_md5_=57bd4518c9b0b5b24a4804d0ee8d1983 diff --git a/metadata/md5-cache/dev-libs/libcroco-0.6.12 b/metadata/md5-cache/dev-libs/libcroco-0.6.12 new file mode 100644 index 000000000000..b1d8c3dfbe13 --- /dev/null +++ b/metadata/md5-cache/dev-libs/libcroco-0.6.12 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test unpack +DEPEND=>=dev-libs/glib-2.34.3: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(-)?] >=dev-libs/libxml2-2.9.1-r4[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(-)?] dev-util/gtk-doc-am >=virtual/pkgconfig-0-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(-)?] >=app-portage/elt-patches-20170317 app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Generic Cascading Style Sheet (CSS) parsing and manipulation toolkit +EAPI=5 +HOMEPAGE=https://git.gnome.org/browse/libcroco/ +IUSE=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 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +LICENSE=LGPL-2 +RDEPEND=>=dev-libs/glib-2.34.3: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(-)?] >=dev-libs/libxml2-2.9.1-r4[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.6 +SRC_URI=mirror://gnome/sources/libcroco/0.6/libcroco-0.6.12.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 259704f1e63c50c85166355db66e98e8 gnome2-utils 6d2af8c7ab84825693c3f065a37b923c libtool e32ea84bf82cf8987965b574672dba93 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 +_md5_=f40ab7e417a9f7b6cacc55706e22db89 diff --git a/metadata/md5-cache/dev-php/PEAR-Math_BigInteger-1.0.3 b/metadata/md5-cache/dev-php/PEAR-Math_BigInteger-1.0.3 deleted file mode 100644 index e53db51dd4fd..000000000000 --- a/metadata/md5-cache/dev-php/PEAR-Math_BigInteger-1.0.3 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install setup -DEPEND=dev-lang/php:* >=dev-php/pear-1.8.1 -DESCRIPTION=Pure-PHP arbitrary precision integer arithmetic library -EAPI=6 -HOMEPAGE=http://pear.php.net/Math_BigInteger -KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 -LICENSE=MIT -RDEPEND=>=dev-lang/php-5.3.0 dev-lang/php:* >=dev-php/pear-1.8.1 -SLOT=0 -SRC_URI=http://pear.php.net/get/Math_BigInteger-1.0.3.tgz -_eclasses_=multilib 0236be304ee52e7f179ed2f337075515 php-pear-r1 5ed7690006b53587145608c30ed10798 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee -_md5_=94abd2aedcbba25a133b20d56a407dd8 diff --git a/metadata/md5-cache/dev-php/PEAR-Math_BigInteger-1.0.3-r1 b/metadata/md5-cache/dev-php/PEAR-Math_BigInteger-1.0.3-r1 new file mode 100644 index 000000000000..e51ca0707897 --- /dev/null +++ b/metadata/md5-cache/dev-php/PEAR-Math_BigInteger-1.0.3-r1 @@ -0,0 +1,10 @@ +DEFINED_PHASES=install +DESCRIPTION=Pure-PHP arbitrary precision integer arithmetic library +EAPI=6 +HOMEPAGE=http://pear.php.net/package/Math_BigInteger http://phpseclib.sourceforge.net/documentation/math.html +KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=MIT +RDEPEND=dev-lang/php:* +SLOT=0 +SRC_URI=http://download.pear.php.net/package/Math_BigInteger-1.0.3.tgz +_md5_=4c31f3008d92b270b5016d2c74153092 diff --git a/metadata/md5-cache/dev-php/pecl-ssh2-0.13-r1 b/metadata/md5-cache/dev-php/pecl-ssh2-0.13-r1 deleted file mode 100644 index e9ec208027bc..000000000000 --- a/metadata/md5-cache/dev-php/pecl-ssh2-0.13-r1 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=>=net-libs/libssh2-1.2 >=app-portage/elt-patches-20170317 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 sys-devel/m4 sys-devel/libtool php_targets_php7-0? ( dev-lang/php:7.0 ) php_targets_php5-6? ( dev-lang/php:5.6 ) -DESCRIPTION=PHP bindings for the libssh2 library -EAPI=6 -HOMEPAGE=http://pecl.php.net/ssh2 -IUSE=php_targets_php7-0 php_targets_php5-6 -KEYWORDS=~amd64 ~x86 -LICENSE=PHP-3.01 -PDEPEND=php_targets_php7-0? ( dev-php/pecl-ssh2:7 ) -RDEPEND=>=net-libs/libssh2-1.2 php_targets_php7-0? ( dev-lang/php:7.0 ) php_targets_php5-6? ( dev-lang/php:5.6 ) -REQUIRED_USE=|| ( php_targets_php7-0 php_targets_php5-6 ) -SLOT=0 -SRC_URI=http://pecl.php.net/get/ssh2-0.13.tgz -_eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 libtool e32ea84bf82cf8987965b574672dba93 multilib 0236be304ee52e7f179ed2f337075515 php-ext-pecl-r3 f0b4914f85a3c676561454b15a910dc6 php-ext-source-r3 02131d21ec5edc689a1ef97096214131 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee -_md5_=aa522b155205c3dd7065c286920f532c diff --git a/metadata/md5-cache/dev-php/pecl-ssh2-0.13-r2 b/metadata/md5-cache/dev-php/pecl-ssh2-0.13-r2 new file mode 100644 index 000000000000..79ed281d9f05 --- /dev/null +++ b/metadata/md5-cache/dev-php/pecl-ssh2-0.13-r2 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=net-libs/libssh2 >=app-portage/elt-patches-20170317 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 sys-devel/m4 sys-devel/libtool php_targets_php5-6? ( dev-lang/php:5.6 ) php_targets_php7-0? ( dev-lang/php:7.0 ) php_targets_php7-1? ( dev-lang/php:7.1 ) +DESCRIPTION=PHP bindings for the libssh2 library +EAPI=6 +HOMEPAGE=http://pecl.php.net/ssh2 +IUSE=php_targets_php5-6 php_targets_php7-0 php_targets_php7-1 +KEYWORDS=~amd64 ~x86 +LICENSE=PHP-3.01 +PDEPEND=php_targets_php7-0? ( dev-php/pecl-ssh2:7 ) php_targets_php7-1? ( dev-php/pecl-ssh2:7 ) +RDEPEND=net-libs/libssh2 php_targets_php5-6? ( dev-lang/php:5.6 ) php_targets_php7-0? ( dev-lang/php:7.0 ) php_targets_php7-1? ( dev-lang/php:7.1 ) +REQUIRED_USE=|| ( php_targets_php5-6 php_targets_php7-0 php_targets_php7-1 ) +SLOT=0 +SRC_URI=http://pecl.php.net/get/ssh2-0.13.tgz +_eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 libtool e32ea84bf82cf8987965b574672dba93 multilib 0236be304ee52e7f179ed2f337075515 php-ext-pecl-r3 f0b4914f85a3c676561454b15a910dc6 php-ext-source-r3 02131d21ec5edc689a1ef97096214131 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee +_md5_=78836c86fd581eaacbf81b6fa0591a1d diff --git a/metadata/md5-cache/dev-php/pecl-ssh2-1.0 b/metadata/md5-cache/dev-php/pecl-ssh2-1.0-r1 similarity index 62% rename from metadata/md5-cache/dev-php/pecl-ssh2-1.0 rename to metadata/md5-cache/dev-php/pecl-ssh2-1.0-r1 index a5131ac6b632..1f2ee070d040 100644 --- a/metadata/md5-cache/dev-php/pecl-ssh2-1.0 +++ b/metadata/md5-cache/dev-php/pecl-ssh2-1.0-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=>=net-libs/libssh2-1.2 >=app-portage/elt-patches-20170317 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 sys-devel/m4 sys-devel/libtool php_targets_php7-0? ( dev-lang/php:7.0 ) php_targets_php5-6? ( dev-lang/php:5.6 ) +DEPEND=>=net-libs/libssh2-1.2 >=app-portage/elt-patches-20170317 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 sys-devel/m4 sys-devel/libtool php_targets_php5-6? ( dev-lang/php:5.6 ) php_targets_php7-0? ( dev-lang/php:7.0 ) php_targets_php7-1? ( dev-lang/php:7.1 ) DESCRIPTION=PHP bindings for the libssh2 library EAPI=6 HOMEPAGE=http://pecl.php.net/ssh2 -IUSE=php_targets_php7-0 php_targets_php5-6 +IUSE=php_targets_php5-6 php_targets_php7-0 php_targets_php7-1 KEYWORDS=~amd64 ~x86 LICENSE=PHP-3.01 -RDEPEND=>=net-libs/libssh2-1.2 php_targets_php5-6? ( dev-php/pecl-ssh2:0[php_targets_php5-6] ) php_targets_php7-0? ( dev-lang/php:7.0 ) php_targets_php5-6? ( dev-lang/php:5.6 ) -REQUIRED_USE=|| ( php_targets_php7-0 php_targets_php5-6 ) +RDEPEND=>=net-libs/libssh2-1.2 php_targets_php5-6? ( dev-php/pecl-ssh2:0[php_targets_php5-6] ) php_targets_php5-6? ( dev-lang/php:5.6 ) php_targets_php7-0? ( dev-lang/php:7.0 ) php_targets_php7-1? ( dev-lang/php:7.1 ) +REQUIRED_USE=|| ( php_targets_php5-6 php_targets_php7-0 php_targets_php7-1 ) SLOT=7 SRC_URI=http://pecl.php.net/get/ssh2-1.0.tgz _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 libtool e32ea84bf82cf8987965b574672dba93 multilib 0236be304ee52e7f179ed2f337075515 php-ext-pecl-r3 f0b4914f85a3c676561454b15a910dc6 php-ext-source-r3 02131d21ec5edc689a1ef97096214131 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee -_md5_=ac74bc47f7c9d488219270ea184aa46d +_md5_=8eb564b6a70ce1094bc3e82548a89239 diff --git a/metadata/md5-cache/dev-php/pecl-ssh2-9999 b/metadata/md5-cache/dev-php/pecl-ssh2-9999 index d281df9c1404..68e623f47720 100644 --- a/metadata/md5-cache/dev-php/pecl-ssh2-9999 +++ b/metadata/md5-cache/dev-php/pecl-ssh2-9999 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=>=net-libs/libssh2-1.2 >=app-portage/elt-patches-20170317 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 sys-devel/m4 sys-devel/libtool php_targets_php7-0? ( dev-lang/php:7.0 ) php_targets_php5-6? ( dev-lang/php:5.6 ) >=dev-vcs/git-1.8.2.1 +DEPEND=>=net-libs/libssh2-1.2 >=app-portage/elt-patches-20170317 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 sys-devel/m4 sys-devel/libtool php_targets_php5-6? ( dev-lang/php:5.6 ) php_targets_php7-0? ( dev-lang/php:7.0 ) php_targets_php7-1? ( dev-lang/php:7.1 ) >=dev-vcs/git-1.8.2.1 DESCRIPTION=PHP bindings for the libssh2 library EAPI=6 HOMEPAGE=https://pecl.php.net/package/ssh2 -IUSE=php_targets_php7-0 php_targets_php5-6 +IUSE=php_targets_php5-6 php_targets_php7-0 php_targets_php7-1 LICENSE=PHP-3.01 -RDEPEND=>=net-libs/libssh2-1.2 php_targets_php5-6? ( dev-php/pecl-ssh2:0[php_targets_php5-6] ) php_targets_php7-0? ( dev-lang/php:7.0 ) php_targets_php5-6? ( dev-lang/php:5.6 ) -REQUIRED_USE=|| ( php_targets_php7-0 php_targets_php5-6 ) +RDEPEND=>=net-libs/libssh2-1.2 php_targets_php5-6? ( dev-php/pecl-ssh2:0[php_targets_php5-6] ) php_targets_php5-6? ( dev-lang/php:5.6 ) php_targets_php7-0? ( dev-lang/php:7.0 ) php_targets_php7-1? ( dev-lang/php:7.1 ) +REQUIRED_USE=|| ( php_targets_php5-6 php_targets_php7-0 php_targets_php7-1 ) SLOT=7 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb git-r3 68d35a154123e27007638d8220886ee1 libtool e32ea84bf82cf8987965b574672dba93 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 php-ext-source-r3 02131d21ec5edc689a1ef97096214131 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee -_md5_=bd7b6a37bc9b80d3f6485e2db02de946 +_md5_=5abaffe05ae27e31239e0260df30deab diff --git a/metadata/md5-cache/dev-python/guessit-2.1.2 b/metadata/md5-cache/dev-python/guessit-2.1.2 new file mode 100644 index 000000000000..2f9402b2d0bf --- /dev/null +++ b/metadata/md5-cache/dev-python/guessit-2.1.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/babelfish-0.5.5[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/rebulk-0.8.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/python-dateutil[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/six[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] test? ( >=dev-python/pytest-2.7.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/pytest-capturelog[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/pytest-runner[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/pyyaml[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DESCRIPTION=Python library for guessing information from video filenames +EAPI=6 +HOMEPAGE=https://github.com/guessit-io/guessit https://pypi.python.org/pypi/guessit +IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 +KEYWORDS=~amd64 ~x86 +LICENSE=LGPL-3 +RDEPEND=>=dev-python/babelfish-0.5.5[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/rebulk-0.8.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/python-dateutil[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/six[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) +SLOT=0 +SRC_URI=mirror://pypi/g/guessit/guessit-2.1.2.tar.gz +_eclasses_=distutils-r1 039ba10839816478cfb070fdeb053906 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 0c067f080a047742ffac024b16895b45 python-utils-r1 a166d0f5815d7f1e67bb60a196f1bf7e toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 +_md5_=edc2242ca462c360932d3171daf3e742 diff --git a/metadata/md5-cache/dev-python/guessit-9999 b/metadata/md5-cache/dev-python/guessit-9999 index 256bea79382f..824b589f3684 100644 --- a/metadata/md5-cache/dev-python/guessit-9999 +++ b/metadata/md5-cache/dev-python/guessit-9999 @@ -9,4 +9,4 @@ RDEPEND=>=dev-python/babelfish-0.5.5[python_targets_python2_7(-)?,python_targets REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 _eclasses_=distutils-r1 039ba10839816478cfb070fdeb053906 epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb git-r3 68d35a154123e27007638d8220886ee1 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 0c067f080a047742ffac024b16895b45 python-utils-r1 a166d0f5815d7f1e67bb60a196f1bf7e toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=436cc1cf575f69fe3e08f469559a1f4d +_md5_=9e2389a720a0e859042451f05dcaca58 diff --git a/metadata/md5-cache/dev-python/pyptlib-0.0.6 b/metadata/md5-cache/dev-python/pyptlib-0.0.6 index 76d839463ef1..8e2ea0e8f266 100644 --- a/metadata/md5-cache/dev-python/pyptlib-0.0.6 +++ b/metadata/md5-cache/dev-python/pyptlib-0.0.6 @@ -4,11 +4,11 @@ DESCRIPTION=Python library for tor's pluggable transport managed-proxy protocol EAPI=5 HOMEPAGE=https://gitweb.torproject.org/pluggable-transports/pyptlib.git IUSE=doc examples python_targets_python2_7 -KEYWORDS=~amd64 ~mips ~x86 +KEYWORDS=~amd64 ~arm ~mips ~x86 LICENSE=BSD RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pyptlib/pyptlib-0.0.6.tar.gz _eclasses_=distutils-r1 039ba10839816478cfb070fdeb053906 epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 0c067f080a047742ffac024b16895b45 python-utils-r1 a166d0f5815d7f1e67bb60a196f1bf7e toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=7e8ff7e6f5bda81405ef9bed3fe71028 +_md5_=079ad15efee7f2922dad3f3c1873b7bf diff --git a/metadata/md5-cache/dev-util/meson-0.39.1 b/metadata/md5-cache/dev-util/meson-0.39.1 index a550d02ff8c1..847fd97ae4a1 100644 --- a/metadata/md5-cache/dev-util/meson-0.39.1 +++ b/metadata/md5-cache/dev-util/meson-0.39.1 @@ -1,14 +1,15 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND=python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-util/ninja-1.6.0 python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DEPEND=python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-util/ninja-1.6.0 python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] DESCRIPTION=Open source build system EAPI=6 HOMEPAGE=http://mesonbuild.com/ -IUSE=python_targets_python3_4 python_targets_python3_5 +IUSE=python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 KEYWORDS=amd64 x86 LICENSE=Apache-2.0 -RDEPEND=python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-util/ninja-1.6.0 python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] -REQUIRED_USE=|| ( python_targets_python3_4 python_targets_python3_5 ) +RDEPEND=python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-util/ninja-1.6.0 python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +REQUIRED_USE=|| ( python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) +RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/m/meson/meson-0.39.1.tar.gz _eclasses_=distutils-r1 039ba10839816478cfb070fdeb053906 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 0c067f080a047742ffac024b16895b45 python-utils-r1 a166d0f5815d7f1e67bb60a196f1bf7e toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=fa57a551987b225ace2b84de2506ed37 +_md5_=8e1653bef2733d7e33f8d932910298c9 diff --git a/metadata/md5-cache/dev-util/meson-9999 b/metadata/md5-cache/dev-util/meson-9999 index d01c4735c324..4d1e08986ff6 100644 --- a/metadata/md5-cache/dev-util/meson-9999 +++ b/metadata/md5-cache/dev-util/meson-9999 @@ -1,12 +1,13 @@ DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-util/ninja-1.6.0 >=dev-vcs/git-1.8.2.1 python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DEPEND=python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-util/ninja-1.6.0 >=dev-vcs/git-1.8.2.1 python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] DESCRIPTION=Open source build system EAPI=6 HOMEPAGE=http://mesonbuild.com/ -IUSE=python_targets_python3_4 python_targets_python3_5 +IUSE=python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 LICENSE=Apache-2.0 -RDEPEND=python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-util/ninja-1.6.0 python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-)] -REQUIRED_USE=|| ( python_targets_python3_4 python_targets_python3_5 ) +RDEPEND=python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-util/ninja-1.6.0 python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +REQUIRED_USE=|| ( python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) +RESTRICT=test SLOT=0 _eclasses_=distutils-r1 039ba10839816478cfb070fdeb053906 epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb git-r3 68d35a154123e27007638d8220886ee1 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 0c067f080a047742ffac024b16895b45 python-utils-r1 a166d0f5815d7f1e67bb60a196f1bf7e toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=638b4e4efe58d787a8d9f8cfa22b9054 +_md5_=c985a23fd58eec65623527328b08b51b diff --git a/metadata/md5-cache/gnome-base/librsvg-2.40.17 b/metadata/md5-cache/gnome-base/librsvg-2.40.17 new file mode 100644 index 000000000000..2ab08d7bc6c3 --- /dev/null +++ b/metadata/md5-cache/gnome-base/librsvg-2.40.17 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=>=dev-libs/glib-2.34.3: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(-)?] >=x11-libs/cairo-1.12.14-r4[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(-)?] >=x11-libs/pango-1.36.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(-)?] >=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(-)?] >=dev-libs/libcroco-0.6.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(-)?] >=x11-libs/gdk-pixbuf-2.30.7:2[introspection?,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(-)?] introspection? ( >=dev-libs/gobject-introspection-0.10.8:= ) tools? ( >=x11-libs/gtk+-3.10.0:3 ) dev-libs/gobject-introspection-common dev-libs/vala-common >=dev-util/gtk-doc-am-1.13 >=virtual/pkgconfig-0-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(-)?] vala? ( || ( dev-lang/vala:0.34[vapigen(+)] dev-lang/vala:0.32[vapigen(+)] dev-lang/vala:0.30[vapigen(+)] dev-lang/vala:0.28[vapigen(+)] dev-lang/vala:0.26[vapigen(+)] ) ) >=app-portage/elt-patches-20170317 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Scalable Vector Graphics (SVG) rendering library +EAPI=6 +HOMEPAGE=https://wiki.gnome.org/Projects/LibRsvg +IUSE=+introspection tools vala 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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +LICENSE=LGPL-2 +RDEPEND=>=dev-libs/glib-2.34.3: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(-)?] >=x11-libs/cairo-1.12.14-r4[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(-)?] >=x11-libs/pango-1.36.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(-)?] >=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(-)?] >=dev-libs/libcroco-0.6.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(-)?] >=x11-libs/gdk-pixbuf-2.30.7:2[introspection?,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(-)?] introspection? ( >=dev-libs/gobject-introspection-0.10.8:= ) tools? ( >=x11-libs/gtk+-3.10.0:3 ) +REQUIRED_USE=vala? ( introspection ) +SLOT=2 +SRC_URI=mirror://gnome/sources/librsvg/2.40/librsvg-2.40.17.tar.xz +_eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 259704f1e63c50c85166355db66e98e8 gnome2-utils 6d2af8c7ab84825693c3f065a37b923c libtool e32ea84bf82cf8987965b574672dba93 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee vala 45cd5c637ea9287eeaf983960768e17c versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 +_md5_=5bfa1749573f3476565c8efda48828fe diff --git a/metadata/md5-cache/media-gfx/gimp-9999 b/metadata/md5-cache/media-gfx/gimp-9999 index 23afe94d1791..6dd2c18bf42b 100644 --- a/metadata/md5-cache/media-gfx/gimp-9999 +++ b/metadata/md5-cache/media-gfx/gimp-9999 @@ -9,4 +9,4 @@ RDEPEND=>=dev-libs/glib-2.40.0:2 >=dev-libs/atk-2.2.0 >=x11-libs/gtk+-2.24.10:2 REQUIRED_USE=python? ( python_targets_python2_7 ) SLOT=2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb fdo-mime 21ef5adf81836863efa968f2a25cff64 git-r3 68d35a154123e27007638d8220886ee1 gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 259704f1e63c50c85166355db66e98e8 gnome2-utils 6d2af8c7ab84825693c3f065a37b923c libtool e32ea84bf82cf8987965b574672dba93 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 python-single-r1 c3e54dd0dc1e70c6252f2551a55bf053 python-utils-r1 a166d0f5815d7f1e67bb60a196f1bf7e toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=58e4ab63adc758d5b2c179b24d36e15f +_md5_=250c8d2b409ba2a046fef29a1bb0ca4e diff --git a/metadata/md5-cache/net-dns/dnscrypt-proxy-1.4.2 b/metadata/md5-cache/net-dns/dnscrypt-proxy-1.4.2 deleted file mode 100644 index 4c9e2a87fd43..000000000000 --- a/metadata/md5-cache/net-dns/dnscrypt-proxy-1.4.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install setup -DEPEND=dev-libs/libsodium ldns? ( net-libs/ldns ) virtual/pkgconfig -DESCRIPTION=A tool for securing communications between a client and a DNS resolver -EAPI=5 -HOMEPAGE=http://dnscrypt.org/ -IUSE=+plugins ldns systemd -KEYWORDS=~amd64 ~x86 -LICENSE=ISC -RDEPEND=dev-libs/libsodium ldns? ( net-libs/ldns ) systemd? ( sys-apps/systemd ) -SLOT=0 -SRC_URI=http://download.dnscrypt.org/dnscrypt-proxy/dnscrypt-proxy-1.4.2.tar.gz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 systemd ec2e9154031d942186c75c0aabb41900 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee user e4b567c44272a719fabf53f0f885d3f7 -_md5_=a9ed9eb8572e98779543ca2b74c16136 diff --git a/metadata/md5-cache/net-dns/dnscrypt-proxy-1.4.3 b/metadata/md5-cache/net-dns/dnscrypt-proxy-1.4.3 deleted file mode 100644 index fe27215d4d36..000000000000 --- a/metadata/md5-cache/net-dns/dnscrypt-proxy-1.4.3 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install setup -DEPEND=dev-libs/libsodium ldns? ( net-libs/ldns ) virtual/pkgconfig -DESCRIPTION=A tool for securing communications between a client and a DNS resolver -EAPI=5 -HOMEPAGE=http://dnscrypt.org/ -IUSE=+plugins ldns systemd -KEYWORDS=~amd64 ~x86 -LICENSE=ISC -RDEPEND=dev-libs/libsodium ldns? ( net-libs/ldns ) systemd? ( sys-apps/systemd ) -SLOT=0 -SRC_URI=http://download.dnscrypt.org/dnscrypt-proxy/dnscrypt-proxy-1.4.3.tar.gz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 systemd ec2e9154031d942186c75c0aabb41900 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee user e4b567c44272a719fabf53f0f885d3f7 -_md5_=12161aeccb728b031b64f88e10af27e8 diff --git a/metadata/md5-cache/net-dns/dnscrypt-proxy-1.6.0 b/metadata/md5-cache/net-dns/dnscrypt-proxy-1.6.0 deleted file mode 100644 index 61043b5188bb..000000000000 --- a/metadata/md5-cache/net-dns/dnscrypt-proxy-1.6.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install postinst setup -DEPEND=dev-libs/libsodium net-libs/ldns systemd? ( sys-apps/systemd ) virtual/pkgconfig virtual/pkgconfig -DESCRIPTION=A tool for securing communications between a client and a DNS resolver -EAPI=5 -HOMEPAGE=http://dnscrypt.org/ -IUSE=+plugins systemd -KEYWORDS=~amd64 ~x86 -LICENSE=ISC -RDEPEND=dev-libs/libsodium net-libs/ldns systemd? ( sys-apps/systemd ) -SLOT=0 -SRC_URI=http://download.dnscrypt.org/dnscrypt-proxy/dnscrypt-proxy-1.6.0.tar.gz -_eclasses_=multilib 0236be304ee52e7f179ed2f337075515 systemd ec2e9154031d942186c75c0aabb41900 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee user e4b567c44272a719fabf53f0f885d3f7 -_md5_=9d0545cb4bb3c4e091cea4290616e10f diff --git a/metadata/md5-cache/net-dns/dnscrypt-proxy-1.6.0-r1 b/metadata/md5-cache/net-dns/dnscrypt-proxy-1.6.0-r1 deleted file mode 100644 index acce77740244..000000000000 --- a/metadata/md5-cache/net-dns/dnscrypt-proxy-1.6.0-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install postinst setup -DEPEND=dev-libs/libsodium net-libs/ldns systemd? ( sys-apps/systemd ) virtual/pkgconfig virtual/pkgconfig -DESCRIPTION=A tool for securing communications between a client and a DNS resolver -EAPI=5 -HOMEPAGE=http://dnscrypt.org/ -IUSE=+plugins systemd -KEYWORDS=~amd64 ~x86 -LICENSE=ISC -RDEPEND=dev-libs/libsodium net-libs/ldns systemd? ( sys-apps/systemd ) -SLOT=0 -SRC_URI=http://download.dnscrypt.org/dnscrypt-proxy/dnscrypt-proxy-1.6.0.tar.gz -_eclasses_=multilib 0236be304ee52e7f179ed2f337075515 systemd ec2e9154031d942186c75c0aabb41900 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee user e4b567c44272a719fabf53f0f885d3f7 -_md5_=084a569dadd95149da79d4f768963df8 diff --git a/metadata/md5-cache/net-dns/dnscrypt-proxy-1.6.1 b/metadata/md5-cache/net-dns/dnscrypt-proxy-1.6.1 deleted file mode 100644 index a09a146b64f4..000000000000 --- a/metadata/md5-cache/net-dns/dnscrypt-proxy-1.6.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install postinst setup -DEPEND=dev-libs/libsodium net-libs/ldns systemd? ( sys-apps/systemd ) virtual/pkgconfig virtual/pkgconfig -DESCRIPTION=A tool for securing communications between a client and a DNS resolver -EAPI=5 -HOMEPAGE=http://dnscrypt.org/ -IUSE=+plugins systemd -KEYWORDS=~amd64 ~x86 -LICENSE=ISC -RDEPEND=dev-libs/libsodium net-libs/ldns systemd? ( sys-apps/systemd ) -SLOT=0 -SRC_URI=http://download.dnscrypt.org/dnscrypt-proxy/dnscrypt-proxy-1.6.1.tar.gz -_eclasses_=multilib 0236be304ee52e7f179ed2f337075515 systemd ec2e9154031d942186c75c0aabb41900 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee user e4b567c44272a719fabf53f0f885d3f7 -_md5_=0844d02d7237ee8b85e027b6b123aff6 diff --git a/metadata/md5-cache/net-dns/dnscrypt-proxy-1.7.0 b/metadata/md5-cache/net-dns/dnscrypt-proxy-1.7.0 deleted file mode 100644 index f59db551bd1a..000000000000 --- a/metadata/md5-cache/net-dns/dnscrypt-proxy-1.7.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install postinst setup -DEPEND=dev-libs/libsodium net-libs/ldns systemd? ( sys-apps/systemd ) virtual/pkgconfig virtual/pkgconfig -DESCRIPTION=A tool for securing communications between a client and a DNS resolver -EAPI=6 -HOMEPAGE=https://dnscrypt.org/ -IUSE=+plugins systemd -KEYWORDS=~amd64 ~arm ~x86 -LICENSE=ISC -RDEPEND=dev-libs/libsodium net-libs/ldns systemd? ( sys-apps/systemd ) -SLOT=0 -SRC_URI=https://download.dnscrypt.org/dnscrypt-proxy/dnscrypt-proxy-1.7.0.tar.gz -_eclasses_=multilib 0236be304ee52e7f179ed2f337075515 systemd ec2e9154031d942186c75c0aabb41900 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee user e4b567c44272a719fabf53f0f885d3f7 -_md5_=193fae1c8782195d98a4f619d1d1ff4b diff --git a/metadata/md5-cache/net-dns/dnscrypt-proxy-1.9.4 b/metadata/md5-cache/net-dns/dnscrypt-proxy-1.9.4 new file mode 100644 index 000000000000..0d6a34c9df1c --- /dev/null +++ b/metadata/md5-cache/net-dns/dnscrypt-proxy-1.9.4 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure install postinst setup +DEPEND=dev-libs/libsodium net-libs/ldns ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) systemd? ( sys-apps/systemd ) virtual/pkgconfig virtual/pkgconfig +DESCRIPTION=A tool for securing communications between a client and a DNS resolver +EAPI=6 +HOMEPAGE=https://dnscrypt.org +IUSE=hardened libressl +plugins ssl systemd +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=ISC +RDEPEND=dev-libs/libsodium net-libs/ldns ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) systemd? ( sys-apps/systemd ) +SLOT=0 +SRC_URI=https://download.dnscrypt.org/dnscrypt-proxy/dnscrypt-proxy-1.9.4.tar.gz +_eclasses_=multilib 0236be304ee52e7f179ed2f337075515 systemd ec2e9154031d942186c75c0aabb41900 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee user e4b567c44272a719fabf53f0f885d3f7 +_md5_=8e74ef590a1a55b1658a9512cd4386c1 diff --git a/metadata/md5-cache/net-libs/webkit-gtk-2.16.1 b/metadata/md5-cache/net-libs/webkit-gtk-2.16.1 new file mode 100644 index 000000000000..793639964a69 --- /dev/null +++ b/metadata/md5-cache/net-libs/webkit-gtk-2.16.1 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test +DEPEND=dev-db/sqlite:3= >=dev-libs/glib-2.36:2 dev-libs/hyphen >=dev-libs/icu-3.8.1-r1:= >=dev-libs/libxml2-2.8:2 >=dev-libs/libxslt-1.1.7 >=media-libs/fontconfig-2.8:1.0 >=media-libs/freetype-2.4.2:2 >=media-libs/harfbuzz-1.3.3:=[icu(+)] >=media-libs/libpng-1.4:0= media-libs/libwebp:= dev-libs/libgcrypt:0= >=net-libs/libsoup-2.42:2.4[introspection?] >=x11-libs/cairo-1.10.2:= >=x11-libs/gtk+-3.14:3[introspection?] >=x11-libs/pango-1.30.0 virtual/jpeg:0= aqua? ( >=x11-libs/gtk+-3.14:3[aqua] ) egl? ( media-libs/mesa[egl] ) geolocation? ( >=app-misc/geoclue-2.1.5:2.0 ) gles2? ( media-libs/mesa[gles2] ) gnome-keyring? ( app-crypt/libsecret ) gstreamer? ( >=media-libs/gstreamer-1.2.3:1.0 >=media-libs/gst-plugins-base-1.2.3:1.0 >=media-libs/gst-plugins-bad-1.8:1.0[opengl?] ) introspection? ( >=dev-libs/gobject-introspection-1.32.0:= ) libnotify? ( x11-libs/libnotify ) nsplugin? ( >=x11-libs/gtk+-2.24.10:2 ) opengl? ( virtual/opengl x11-libs/cairo[opengl] ) spell? ( >=app-text/enchant-0.22:= ) wayland? ( >=x11-libs/gtk+-3.14:3[wayland] ) webgl? ( x11-libs/cairo[opengl] x11-libs/libXcomposite x11-libs/libXdamage ) X? ( x11-libs/cairo[X] >=x11-libs/gtk+-3.14:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXrender x11-libs/libXt ) || ( >=dev-lang/python-2.7.5-r2:2.7 ) || ( dev-lang/ruby:2.1 dev-lang/ruby:2.2 dev-lang/ruby:2.3 dev-lang/ruby:2.4 ) virtual/rubygems >=dev-lang/perl-5.10 >=app-accessibility/at-spi2-core-2.5.3 >=dev-libs/atk-2.8.0 >=dev-util/gtk-doc-am-1.10 >=dev-util/gperf-3.0.1 >=sys-devel/bison-2.4.3 || ( >=sys-devel/gcc-4.9 >=sys-devel/clang-3.3 ) sys-devel/gettext virtual/pkgconfig dev-lang/perl virtual/perl-Data-Dumper virtual/perl-Carp doc? ( >=dev-util/gtk-doc-1.10 ) geolocation? ( dev-util/gdbus-codegen ) introspection? ( jit? ( sys-apps/paxctl ) ) test? ( dev-lang/python:2.7 dev-python/pygobject:3[python_targets_python2_7] x11-themes/hicolor-icon-theme jit? ( sys-apps/paxctl ) ) dev-util/ninja >=dev-util/cmake-3.7.2 >=app-portage/elt-patches-20170317 app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +DESCRIPTION=Open source web browser engine +EAPI=6 +HOMEPAGE=http://www.webkitgtk.org/ +IUSE=aqua coverage doc +egl +geolocation gles2 gnome-keyring +gstreamer +introspection +jit libnotify nsplugin +opengl spell wayland +webgl X test +KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos +LICENSE=LGPL-2+ BSD +RDEPEND=dev-db/sqlite:3= >=dev-libs/glib-2.36:2 dev-libs/hyphen >=dev-libs/icu-3.8.1-r1:= >=dev-libs/libxml2-2.8:2 >=dev-libs/libxslt-1.1.7 >=media-libs/fontconfig-2.8:1.0 >=media-libs/freetype-2.4.2:2 >=media-libs/harfbuzz-1.3.3:=[icu(+)] >=media-libs/libpng-1.4:0= media-libs/libwebp:= dev-libs/libgcrypt:0= >=net-libs/libsoup-2.42:2.4[introspection?] >=x11-libs/cairo-1.10.2:= >=x11-libs/gtk+-3.14:3[introspection?] >=x11-libs/pango-1.30.0 virtual/jpeg:0= aqua? ( >=x11-libs/gtk+-3.14:3[aqua] ) egl? ( media-libs/mesa[egl] ) geolocation? ( >=app-misc/geoclue-2.1.5:2.0 ) gles2? ( media-libs/mesa[gles2] ) gnome-keyring? ( app-crypt/libsecret ) gstreamer? ( >=media-libs/gstreamer-1.2.3:1.0 >=media-libs/gst-plugins-base-1.2.3:1.0 >=media-libs/gst-plugins-bad-1.8:1.0[opengl?] ) introspection? ( >=dev-libs/gobject-introspection-1.32.0:= ) libnotify? ( x11-libs/libnotify ) nsplugin? ( >=x11-libs/gtk+-2.24.10:2 ) opengl? ( virtual/opengl x11-libs/cairo[opengl] ) spell? ( >=app-text/enchant-0.22:= ) wayland? ( >=x11-libs/gtk+-3.14:3[wayland] ) webgl? ( x11-libs/cairo[opengl] x11-libs/libXcomposite x11-libs/libXdamage ) X? ( x11-libs/cairo[X] >=x11-libs/gtk+-3.14:3[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXrender x11-libs/libXt ) +REQUIRED_USE=geolocation? ( introspection ) gles2? ( egl ) introspection? ( gstreamer ) nsplugin? ( X ) webgl? ( ^^ ( gles2 opengl ) ) !webgl? ( ?? ( gles2 opengl ) ) webgl? ( gstreamer ) wayland? ( egl ) || ( aqua wayland X ) +RESTRICT=test +SLOT=4/37 +SRC_URI=http://www.webkitgtk.org/releases/webkitgtk-2.16.1.tar.xz +_eclasses_=check-reqs bd050ce908e4637604ee604ed4b78e8f cmake-utils a69f3a404abc4ade0a99e523f51b989d epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb flag-o-matic 61cad4fb5d800b29d484b27cb033f59b gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 259704f1e63c50c85166355db66e98e8 gnome2-utils 6d2af8c7ab84825693c3f065a37b923c libtool e32ea84bf82cf8987965b574672dba93 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c pax-utils 4f95120230a315c8caaabeb2307b7eee python-any-r1 be89e882151ba4b847089b860d79729c python-utils-r1 a166d0f5815d7f1e67bb60a196f1bf7e ruby-single af6ea0a8fe4c4faf733f4dbafae9e233 ruby-utils e9d0baddf239294b286da449ae7ac6a3 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 +_md5_=10856799844980153cf99624abe60656 diff --git a/metadata/md5-cache/net-p2p/bitcoin-qt-0.13.2 b/metadata/md5-cache/net-p2p/bitcoin-qt-0.13.2 index 3ae89195786e..19050d9fb633 100644 --- a/metadata/md5-cache/net-p2p/bitcoin-qt-0.13.2 +++ b/metadata/md5-cache/net-p2p/bitcoin-qt-0.13.2 @@ -11,4 +11,4 @@ REQUIRED_USE=http? ( libevent ) tor? ( libevent ) libevent? ( http tor ) !libeve SLOT=0 SRC_URI=https://github.com/bitcoin/bitcoin/archive/0d719145b018e28d48d35c2646a5962b87c60436.tar.gz -> bitcoin-v0.13.2.tgz http://bitcoinknots.org/files/0.13.x/0.13.2.knots20170102/bitcoin-0.13.2.knots20170102.patches.txz -> bitcoin-0.13.2.knots20170102.patches.tar.xz _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 base df2aa567b3f0595aae0d0923889f7631 bitcoincore dfd4a0ddedf139a45de5e664ba5608d1 db-use 582140d1a711279e50ce284fc7b609f5 epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb fdo-mime 21ef5adf81836863efa968f2a25cff64 gnome2-utils 6d2af8c7ab84825693c3f065a37b923c kde4-functions 388bbabf76d84194e7d234ba7c7afee2 libtool e32ea84bf82cf8987965b574672dba93 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 qmake-utils ea78a9056543346cdc8cbbd07f16c6fb qt4-r2 b7985a3197fbc3a22d059f19904e735b toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=c5203d8cb55ac9a6795e049f93d4fc1a +_md5_=532278dac870c2f920af8a9731ffb69b diff --git a/metadata/md5-cache/net-proxy/obfsproxy-0.2.11 b/metadata/md5-cache/net-proxy/obfsproxy-0.2.11 index b7d25dc68953..2e10e8b2f1f9 100644 --- a/metadata/md5-cache/net-proxy/obfsproxy-0.2.11 +++ b/metadata/md5-cache/net-proxy/obfsproxy-0.2.11 @@ -4,11 +4,11 @@ DESCRIPTION=An obfuscating proxy using Tor's pluggable transport protocol EAPI=5 HOMEPAGE=https://www.torproject.org/projects/obfsproxy.html IUSE=python_targets_python2_7 -KEYWORDS=~amd64 ~mips ~x86 +KEYWORDS=~amd64 ~arm ~mips ~x86 LICENSE=BSD RDEPEND=>=dev-python/pyptlib-0.0.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pycrypto-2.6-r2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/twisted-core[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pyyaml[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-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/o/obfsproxy/obfsproxy-0.2.11.tar.gz _eclasses_=distutils-r1 039ba10839816478cfb070fdeb053906 epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 0c067f080a047742ffac024b16895b45 python-utils-r1 a166d0f5815d7f1e67bb60a196f1bf7e toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=ea02faabfcdfd022c30164072e1dbd7d +_md5_=d310f8b6817c3f7058a5b5e192ae4399 diff --git a/metadata/md5-cache/net-proxy/obfsproxy-0.2.12 b/metadata/md5-cache/net-proxy/obfsproxy-0.2.12 index 9d1396552ae2..f0d5328b704e 100644 --- a/metadata/md5-cache/net-proxy/obfsproxy-0.2.12 +++ b/metadata/md5-cache/net-proxy/obfsproxy-0.2.12 @@ -4,11 +4,11 @@ DESCRIPTION=An obfuscating proxy using Tor's pluggable transport protocol EAPI=5 HOMEPAGE=https://www.torproject.org/projects/obfsproxy.html IUSE=python_targets_python2_7 -KEYWORDS=~amd64 ~mips ~x86 +KEYWORDS=~amd64 ~arm ~mips ~x86 LICENSE=BSD RDEPEND=>=dev-python/pyptlib-0.0.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pycrypto-2.6-r2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/twisted-core[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pyyaml[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-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/o/obfsproxy/obfsproxy-0.2.12.tar.gz _eclasses_=distutils-r1 039ba10839816478cfb070fdeb053906 epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 0c067f080a047742ffac024b16895b45 python-utils-r1 a166d0f5815d7f1e67bb60a196f1bf7e toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=ea02faabfcdfd022c30164072e1dbd7d +_md5_=d310f8b6817c3f7058a5b5e192ae4399 diff --git a/metadata/md5-cache/net-proxy/obfsproxy-0.2.13 b/metadata/md5-cache/net-proxy/obfsproxy-0.2.13 index 120fabf7924a..a2ab05f48e59 100644 --- a/metadata/md5-cache/net-proxy/obfsproxy-0.2.13 +++ b/metadata/md5-cache/net-proxy/obfsproxy-0.2.13 @@ -4,11 +4,11 @@ DESCRIPTION=An obfuscating proxy using Tor's pluggable transport protocol EAPI=5 HOMEPAGE=https://www.torproject.org/projects/obfsproxy.html IUSE=python_targets_python2_7 -KEYWORDS=~amd64 ~mips ~x86 +KEYWORDS=~amd64 ~arm ~mips ~x86 LICENSE=BSD RDEPEND=>=dev-python/pyptlib-0.0.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pycrypto-2.6-r2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/twisted-core[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pyyaml[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-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/o/obfsproxy/obfsproxy-0.2.13.tar.gz _eclasses_=distutils-r1 039ba10839816478cfb070fdeb053906 epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 0c067f080a047742ffac024b16895b45 python-utils-r1 a166d0f5815d7f1e67bb60a196f1bf7e toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=ea02faabfcdfd022c30164072e1dbd7d +_md5_=d310f8b6817c3f7058a5b5e192ae4399 diff --git a/metadata/md5-cache/net-vpn/i2p-0.9.27 b/metadata/md5-cache/net-vpn/i2p-0.9.27 deleted file mode 100644 index cef2378de716..000000000000 --- a/metadata/md5-cache/net-vpn/i2p-0.9.27 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst preinst prepare setup unpack -DEPEND=dev-java/bcprov:1.50 dev-java/jrobin:0 dev-java/slf4j-api:0 dev-java/tomcat-jstl-impl:0 dev-java/tomcat-jstl-spec:0 dev-java/java-service-wrapper:0 dev-java/eclipse-ecj:* dev-libs/gmp:0 nls? ( >=sys-devel/gettext-0.19 ) >=virtual/jdk-1.7 >=dev-java/java-config-2.2.0-r3 >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 virtual/pkgconfig -DESCRIPTION=A privacy-centric, anonymous network. -EAPI=6 -HOMEPAGE=https://geti2p.net -IUSE=+ecdsa nls elibc_FreeBSD elibc_FreeBSD -KEYWORDS=~amd64 ~x86 -LICENSE=Apache-2.0 Artistic BSD CC-BY-2.5 CC-BY-3.0 CC-BY-SA-3.0 EPL-1.0 GPL-2 GPL-3 LGPL-2.1 LGPL-3 MIT public-domain WTFPL-2 -RDEPEND=dev-java/bcprov:1.50 dev-java/jrobin:0 dev-java/slf4j-api:0 dev-java/tomcat-jstl-impl:0 dev-java/tomcat-jstl-spec:0 dev-java/java-service-wrapper:0 ecdsa? ( || ( dev-java/icedtea:7[-sunec] dev-java/icedtea:8[-sunec] dev-java/icedtea:7[nss,-sunec] dev-java/icedtea-bin:7[nss] dev-java/icedtea-bin:7 dev-java/icedtea-bin:8 dev-java/oracle-jre-bin dev-java/oracle-jdk-bin ) ) !ecdsa? ( >=virtual/jre-1.7 ) >=dev-java/java-config-2.2.0-r3 -SLOT=0 -SRC_URI=https://download.i2p2.de/releases/0.9.27/i2psource_0.9.27.tar.bz2 -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 systemd ec2e9154031d942186c75c0aabb41900 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee user e4b567c44272a719fabf53f0f885d3f7 versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=263ac37efc1c90e2d0cb9d929fc4a0d3 diff --git a/metadata/md5-cache/net-vpn/i2p-0.9.26 b/metadata/md5-cache/net-vpn/i2p-0.9.29 similarity index 80% rename from metadata/md5-cache/net-vpn/i2p-0.9.26 rename to metadata/md5-cache/net-vpn/i2p-0.9.29 index 2467af3787f2..ca798294b4a5 100644 --- a/metadata/md5-cache/net-vpn/i2p-0.9.26 +++ b/metadata/md5-cache/net-vpn/i2p-0.9.29 @@ -6,8 +6,8 @@ HOMEPAGE=https://geti2p.net IUSE=+ecdsa nls elibc_FreeBSD elibc_FreeBSD KEYWORDS=~amd64 ~x86 LICENSE=Apache-2.0 Artistic BSD CC-BY-2.5 CC-BY-3.0 CC-BY-SA-3.0 EPL-1.0 GPL-2 GPL-3 LGPL-2.1 LGPL-3 MIT public-domain WTFPL-2 -RDEPEND=dev-java/bcprov:1.50 dev-java/jrobin:0 dev-java/slf4j-api:0 dev-java/tomcat-jstl-impl:0 dev-java/tomcat-jstl-spec:0 dev-java/java-service-wrapper:0 ecdsa? ( || ( dev-java/icedtea:7[-sunec] dev-java/icedtea:8[-sunec] dev-java/icedtea:7[nss,-sunec] dev-java/icedtea-bin:7[nss] dev-java/icedtea-bin:7 dev-java/icedtea-bin:8 dev-java/oracle-jre-bin dev-java/oracle-jdk-bin ) ) !ecdsa? ( >=virtual/jre-1.7 ) >=dev-java/java-config-2.2.0-r3 +RDEPEND=dev-java/bcprov:1.50 dev-java/jrobin:0 dev-java/slf4j-api:0 dev-java/tomcat-jstl-impl:0 dev-java/tomcat-jstl-spec:0 dev-java/java-service-wrapper:0 ecdsa? ( || ( dev-java/icedtea:7[-sunec] dev-java/icedtea:8[-sunec] dev-java/icedtea-bin:7 dev-java/icedtea-bin:8 dev-java/oracle-jre-bin dev-java/oracle-jdk-bin ) ) !ecdsa? ( >=virtual/jre-1.7 ) >=dev-java/java-config-2.2.0-r3 SLOT=0 -SRC_URI=https://download.i2p2.de/releases/0.9.26/i2psource_0.9.26.tar.bz2 +SRC_URI=https://download.i2p2.de/releases/0.9.29/i2psource_0.9.29.tar.bz2 _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb java-ant-2 4e2b30d918dda38a51839a4d45282b62 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 systemd ec2e9154031d942186c75c0aabb41900 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee user e4b567c44272a719fabf53f0f885d3f7 versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=263ac37efc1c90e2d0cb9d929fc4a0d3 +_md5_=981175836a09d8297009385a469c44c0 diff --git a/metadata/md5-cache/sys-apps/ucspi-ssl-0.99 b/metadata/md5-cache/sys-apps/ucspi-ssl-0.99 new file mode 100644 index 000000000000..b1df583dec82 --- /dev/null +++ b/metadata/md5-cache/sys-apps/ucspi-ssl-0.99 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install prepare +DEPEND=dev-libs/openssl:= perl? ( dev-lang/perl:= ) >=sys-apps/sed-4 >=sys-apps/sed-4 +DESCRIPTION=Command-line tools for building SSL client-server applications +EAPI=6 +HOMEPAGE=http://www.fehcom.de/ipnet/ucspi-ssl.html +IUSE=perl +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd +LICENSE=public-domain +RDEPEND=dev-libs/openssl:= perl? ( dev-lang/perl:= ) sys-apps/ucspi-tcp +SLOT=0 +SRC_URI=http://www.fehcom.de/ipnet/ucspi-ssl/ucspi-ssl-0.99.tgz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb fixheadtails 6b7b3d896b0b285c12a94f3105c2a06c flag-o-matic 61cad4fb5d800b29d484b27cb033f59b ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 qmail 0cddcd9f34297dbca4a09fbdafa7398a toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee user e4b567c44272a719fabf53f0f885d3f7 +_md5_=8ad688b3a9eb708ec52fe3e69fb7a8d2 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.60 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.60 new file mode 100644 index 000000000000..c0fee0e11805 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.60 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Full sources including the Gentoo patchset for the 4.4 kernel tree +EAPI=5 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +LICENSE=GPL-2 freedist +RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) +RESTRICT=binchecks strip +SLOT=4.4.60 +SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.4.tar.xz mirror://gentoo/genpatches-4.4-63.base.tar.xz mirror://gentoo/genpatches-4.4-63.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.4-63.experimental.tar.xz ) +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb kernel-2 7cc211cb9f869927ca267873f54d8fd5 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 0236be304ee52e7f179ed2f337075515 python-any-r1 be89e882151ba4b847089b860d79729c python-utils-r1 a166d0f5815d7f1e67bb60a196f1bf7e toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 +_md5_=ecb1b6094d72c00bf9ab341b040bbaa3 diff --git a/metadata/md5-cache/x11-libs/gtk+-3.22.12 b/metadata/md5-cache/x11-libs/gtk+-3.22.12 new file mode 100644 index 000000000000..5afbd13b0d4a --- /dev/null +++ b/metadata/md5-cache/x11-libs/gtk+-3.22.12 @@ -0,0 +1,16 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=>=dev-libs/atk-2.15[introspection?,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(-)?] >=dev-libs/glib-2.49.4: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(-)?] media-libs/fontconfig[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(-)?] >=media-libs/libepoxy-1.0[X(+)?,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(-)?] >=x11-libs/cairo-1.14[aqua?,glib,svg,X?,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(-)?] >=x11-libs/gdk-pixbuf-2.30:2[introspection?,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(-)?] >=x11-libs/pango-1.37.3[introspection?,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(-)?] x11-misc/shared-mime-info cloudprint? ( >=net-libs/rest-0.7[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(-)?] >=dev-libs/json-glib-1.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(-)?] ) colord? ( >=x11-misc/colord-0.1.9: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(-)?] ) cups? ( >=net-print/cups-1.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(-)?] ) introspection? ( >=dev-libs/gobject-introspection-1.39:= ) wayland? ( >=dev-libs/wayland-1.9.91[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(-)?] >=dev-libs/wayland-protocols-1.7 media-libs/mesa[wayland,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(-)?] >=x11-libs/libxkbcommon-0.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(-)?] ) X? ( >=app-accessibility/at-spi2-atk-2.5.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(-)?] x11-libs/libX11[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(-)?] >=x11-libs/libXi-1.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(-)?] x11-libs/libXext[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(-)?] >=x11-libs/libXrandr-1.5[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(-)?] x11-libs/libXcursor[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(-)?] x11-libs/libXfixes[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(-)?] x11-libs/libXcomposite[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(-)?] x11-libs/libXdamage[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(-)?] xinerama? ( x11-libs/libXinerama[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(-)?] ) ) app-text/docbook-xsl-stylesheets app-text/docbook-xml-dtd:4.1.2 dev-libs/libxslt dev-libs/gobject-introspection-common >=dev-util/gdbus-codegen-2.48 >=dev-util/gtk-doc-am-1.20 >=sys-devel/gettext-0.19.7[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(-)?] virtual/pkgconfig[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(-)?] X? ( x11-proto/xextproto[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(-)?] x11-proto/xproto[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(-)?] x11-proto/inputproto[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(-)?] x11-proto/damageproto[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(-)?] xinerama? ( x11-proto/xineramaproto[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(-)?] ) ) test? ( media-fonts/font-misc-misc media-fonts/font-cursor-misc ) >=app-portage/elt-patches-20170317 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +DESCRIPTION=Gimp ToolKit + +EAPI=6 +HOMEPAGE=http://www.gtk.org/ +IUSE=aqua broadway cloudprint colord cups examples +introspection test vim-syntax wayland +X xinerama 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 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=LGPL-2+ +PDEPEND=gnome-base/librsvg[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(-)?] vim-syntax? ( app-vim/gtk-syntax ) +RDEPEND=>=dev-libs/atk-2.15[introspection?,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(-)?] >=dev-libs/glib-2.49.4: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(-)?] media-libs/fontconfig[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(-)?] >=media-libs/libepoxy-1.0[X(+)?,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(-)?] >=x11-libs/cairo-1.14[aqua?,glib,svg,X?,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(-)?] >=x11-libs/gdk-pixbuf-2.30:2[introspection?,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(-)?] >=x11-libs/pango-1.37.3[introspection?,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(-)?] x11-misc/shared-mime-info cloudprint? ( >=net-libs/rest-0.7[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(-)?] >=dev-libs/json-glib-1.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(-)?] ) colord? ( >=x11-misc/colord-0.1.9: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(-)?] ) cups? ( >=net-print/cups-1.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(-)?] ) introspection? ( >=dev-libs/gobject-introspection-1.39:= ) wayland? ( >=dev-libs/wayland-1.9.91[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(-)?] >=dev-libs/wayland-protocols-1.7 media-libs/mesa[wayland,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(-)?] >=x11-libs/libxkbcommon-0.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(-)?] ) X? ( >=app-accessibility/at-spi2-atk-2.5.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(-)?] x11-libs/libX11[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(-)?] >=x11-libs/libXi-1.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(-)?] x11-libs/libXext[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(-)?] >=x11-libs/libXrandr-1.5[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(-)?] x11-libs/libXcursor[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(-)?] x11-libs/libXfixes[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(-)?] x11-libs/libXcomposite[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(-)?] x11-libs/libXdamage[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(-)?] xinerama? ( x11-libs/libXinerama[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(-)?] ) ) >=dev-util/gtk-update-icon-cache-3 !=x11-themes/adwaita-icon-theme-3.14 X? ( !=dev-libs/libpthread-stubs-0.3-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(-)?] video_cards_intel? ( >=x11-libs/libpciaccess-0.13.1-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-opengl[-abi_x86_32(-)] ) valgrind? ( dev-util/valgrind ) >=app-portage/elt-patches-20170317 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 ppc-aix? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.18 >=media-fonts/font-util-1.2.0 ) x86-winnt? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.18 >=media-fonts/font-util-1.2.0 ) virtual/pkgconfig -DESCRIPTION=X.Org libdrm library -EAPI=5 -HOMEPAGE=https://dri.freedesktop.org/ -IUSE=video_cards_amdgpu video_cards_exynos video_cards_freedreno video_cards_intel video_cards_nouveau video_cards_omap video_cards_radeon video_cards_tegra video_cards_vc4 video_cards_vivante video_cards_vmware libkms valgrind 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 static-libs -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux -LICENSE=MIT -RDEPEND=>=dev-libs/libpthread-stubs-0.3-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(-)?] video_cards_intel? ( >=x11-libs/libpciaccess-0.13.1-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-opengl[-abi_x86_32(-)] ) abi_x86_32? ( !app-emulation/emul-linux-x86-xlibs[-abi_x86_32(-)] ) -RESTRICT=test -SLOT=0 -SRC_URI=https://dri.freedesktop.org/libdrm/libdrm-2.4.76.tar.bz2 -_eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 042d779bc872564b26c4e5cf018db8ed epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool e32ea84bf82cf8987965b574672dba93 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=7379ce3643a6c5c078c9caffb62d83ca diff --git a/metadata/md5-cache/x11-libs/libdrm-2.4.77 b/metadata/md5-cache/x11-libs/libdrm-2.4.79 similarity index 97% rename from metadata/md5-cache/x11-libs/libdrm-2.4.77 rename to metadata/md5-cache/x11-libs/libdrm-2.4.79 index b51a2e567f61..780558d728a2 100644 --- a/metadata/md5-cache/x11-libs/libdrm-2.4.77 +++ b/metadata/md5-cache/x11-libs/libdrm-2.4.79 @@ -9,6 +9,6 @@ LICENSE=MIT RDEPEND=>=dev-libs/libpthread-stubs-0.3-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(-)?] video_cards_intel? ( >=x11-libs/libpciaccess-0.13.1-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-opengl[-abi_x86_32(-)] ) abi_x86_32? ( !app-emulation/emul-linux-x86-xlibs[-abi_x86_32(-)] ) RESTRICT=test SLOT=0 -SRC_URI=https://dri.freedesktop.org/libdrm/libdrm-2.4.77.tar.bz2 +SRC_URI=https://dri.freedesktop.org/libdrm/libdrm-2.4.79.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 042d779bc872564b26c4e5cf018db8ed epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool e32ea84bf82cf8987965b574672dba93 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee xorg-2 85b1e64779a3286b1224aef7dcfbca28 _md5_=7379ce3643a6c5c078c9caffb62d83ca diff --git a/metadata/md5-cache/x11-libs/pango-1.40.5 b/metadata/md5-cache/x11-libs/pango-1.40.5 new file mode 100644 index 000000000000..7b9205042856 --- /dev/null +++ b/metadata/md5-cache/x11-libs/pango-1.40.5 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=>=media-libs/harfbuzz-0.9.30:=[glib(+),truetype(+),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(-)?] >=dev-libs/glib-2.34.3: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(-)?] >=media-libs/fontconfig-2.10.92:1.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(-)?] >=media-libs/freetype-2.5.0.1: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(-)?] >=x11-libs/cairo-1.12.14-r4:=[X?,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(-)?] introspection? ( >=dev-libs/gobject-introspection-0.9.5:= ) X? ( >=x11-libs/libXrender-0.9.8[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(-)?] >=x11-libs/libX11-1.6.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(-)?] >=x11-libs/libXft-2.3.1-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(-)?] ) >=dev-util/gtk-doc-am-1.20 virtual/pkgconfig[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(-)?] test? ( media-fonts/cantarell ) X? ( >=x11-proto/xproto-7.0.24[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(-)?] ) !<=sys-devel/autoconf-2.63:2.5 >=app-portage/elt-patches-20170317 app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Internationalized text layout and rendering library +EAPI=6 +HOMEPAGE=http://www.pango.org/ +IUSE=X +introspection 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 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +LICENSE=LGPL-2+ FTL +RDEPEND=>=media-libs/harfbuzz-0.9.30:=[glib(+),truetype(+),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(-)?] >=dev-libs/glib-2.34.3: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(-)?] >=media-libs/fontconfig-2.10.92:1.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(-)?] >=media-libs/freetype-2.5.0.1: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(-)?] >=x11-libs/cairo-1.12.14-r4:=[X?,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(-)?] introspection? ( >=dev-libs/gobject-introspection-0.9.5:= ) X? ( >=x11-libs/libXrender-0.9.8[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(-)?] >=x11-libs/libX11-1.6.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(-)?] >=x11-libs/libXft-2.3.1-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(-)?] ) +SLOT=0 +SRC_URI=mirror://gnome/sources/pango/1.40/pango-1.40.5.tar.xz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 epunt-cxx f8073339d152f56626493f43d8ba4691 estack 5ac2a138d0b33354b764d84f9e835db8 eutils e7491451996e8b54c3caeb713285b0fb gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 259704f1e63c50c85166355db66e98e8 gnome2-utils 6d2af8c7ab84825693c3f065a37b923c libtool e32ea84bf82cf8987965b574672dba93 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 0236be304ee52e7f179ed2f337075515 multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 6eb35f81556258a4bc9182ad3dfd58ee versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 +_md5_=838f42f9cc94248f51ac0f6d04a645b0 diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index 62493e41ee02..ddf5d728fc9a 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Sat, 08 Apr 2017 18:39:32 +0000 +Sun, 09 Apr 2017 02:39:34 +0000 diff --git a/metadata/timestamp b/metadata/timestamp index 611990fe5314..851cd8c86fe4 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Sat Apr 8 18:39:31 UTC 2017 +Sun Apr 9 02:39:34 UTC 2017 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index 0a98f1da42d6..5f39ea44c683 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Sat, 08 Apr 2017 19:00:01 +0000 +Sun, 09 Apr 2017 03:00:01 +0000 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index b5d29441b878..53eb569ead55 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1491676501 Sat 08 Apr 2017 06:35:01 PM UTC +1491705301 Sun 09 Apr 2017 02:35:01 AM UTC diff --git a/metadata/xml-schema/timestamp.chk b/metadata/xml-schema/timestamp.chk index a12cff9fcd7e..ddf5d728fc9a 100644 --- a/metadata/xml-schema/timestamp.chk +++ b/metadata/xml-schema/timestamp.chk @@ -1 +1 @@ -Sat, 08 Apr 2017 18:39:31 +0000 +Sun, 09 Apr 2017 02:39:34 +0000 diff --git a/net-dns/dnscrypt-proxy/Manifest b/net-dns/dnscrypt-proxy/Manifest index ae23f926c2ed..ffe882a34a7b 100644 --- a/net-dns/dnscrypt-proxy/Manifest +++ b/net-dns/dnscrypt-proxy/Manifest @@ -1,5 +1 @@ -DIST dnscrypt-proxy-1.4.2.tar.gz 1592962 SHA256 1d519068c30868bb60a151908f0e300a1754b234f7bc2ad1d749ad9d0d977076 SHA512 ecb81b5d20cf88a610421bb1266861a2f5dd34d0ce916c54507507ca5dbe5d9e49e95916f76fa7997b112860f2bc37793f075ed812c75b2904adf6cdf32cac17 WHIRLPOOL ddfa3da3de933f6cbb8721ccd6435e97b9e893d32311e1c3badbc23b6a0547b6cb0f8d6037baaf0027ca1eb972c4be167dc9ce56194f7f6fa54fac974ca0bd24 -DIST dnscrypt-proxy-1.4.3.tar.gz 1560345 SHA256 f10f10c18e25ced3c5ec5d0c4145d33270f9cfa991fd1b18d5d9af00e4d9b68e SHA512 3aae9f20bc06087b0860a24488bcda117010a34218d7aef3c68a0f155f8164ce06a88865a9caf1ce5c5eaa8588518ccc2c8a61a97cc39f527f7b2b14cdf8c118 WHIRLPOOL 49915b0f95d340828c79febc9b7d94c4f0c444e016b9f78d134e05f43945b446ab71bbc6a230d6e15d5f1f4c0b97d9f671b6001314cc157cdcd419b01bf23550 -DIST dnscrypt-proxy-1.6.0.tar.gz 1579293 SHA256 7703a41a1040fc30b19fdfbbaba36b411e66d998584b0e2fa5088f734f4f86be SHA512 1937a80ab0e6e5786b0d004fef1c007d9d8a4df335542ae6f96c1eac7739920f2ff4b469d30abac774c12a41d275c2a8bf31b5514d7af446028cedeeb3efcf02 WHIRLPOOL b24eb58bca1ff8fa55fec3836399a3ee5c66823d8b459e5f8ce7aa653454407dc3b80d7dc050b76e5c0595fc0e2d854478a6f949ef859b149f6b20e127c98274 -DIST dnscrypt-proxy-1.6.1.tar.gz 1721006 SHA256 c519012a66f3ee30be02113d1e0139be08ccd2ec45ca4102eac35be731a65340 SHA512 8d49be73e4b2fe1131349846191f54c7f212ff301a6a6c2a77505225f81b0615e968c945013e732c4fce3b6090606245ec7343fb0d6145bb10b67dd4112d2367 WHIRLPOOL ca5a1c3792728ff54ee5e3c5a8815deb1ce2e1bdd016438ad0b84d89458064e0178df3c1dee77c8a685894092e48a305b521dc8e4bfc3cb40a0d7ac7e7e66d18 -DIST dnscrypt-proxy-1.7.0.tar.gz 1714401 SHA256 be9827f66401f38fd4bdb372046eff9b5802ab5f3d188878a0dcd7bd20074c09 SHA512 611d9cd9d9c086ec8e2b60f6c574451eae71ea07de85973049be7090cfbd8bf790d41f8a4a2b39d74091fba7091551967b93b85a8661c03ecad43d868df597a3 WHIRLPOOL 0c3902bfcc3571175f0f8638327cbaf5eada512565f214232732d14dc6a83f55a0babedd68007cbaeec1b584bcb1d3cc621df8b07638bacfe5893c6222d12997 +DIST dnscrypt-proxy-1.9.4.tar.gz 1660333 SHA256 40543efbcd56033ac03a1edf4581305e8c9bed4579ac55e6279644f07c315307 SHA512 b19103dc39655f199c85ec69daab949d07adc12e64411d2323308afb398e6ac6563bbc17f2e317bfe1e6c95c810487d8d62da3f4c7f7257bdcf837cd0390bfb0 WHIRLPOOL 4e9494c2765ecf9d625f7b44c0f58c40e491e1334a58552111730ecd3b95cba10667b2bfa2b29e291ccfa97a5678bbbc398dd14e888914bfddc6f7e61bac4a3a diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.4.2.ebuild b/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.4.2.ebuild deleted file mode 100644 index 36ff81038386..000000000000 --- a/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.4.2.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils systemd user - -DESCRIPTION="A tool for securing communications between a client and a DNS resolver" -HOMEPAGE="http://dnscrypt.org/" -SRC_URI="http://download.dnscrypt.org/${PN}/${P}.tar.gz" - -LICENSE="ISC" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+plugins ldns systemd" - -DEPEND="dev-libs/libsodium - ldns? ( net-libs/ldns )" -RDEPEND="${DEPEND} - systemd? ( sys-apps/systemd )" - -DOCS=( AUTHORS ChangeLog COPYING NEWS README.markdown README-PLUGINS.markdown - TECHNOTES THANKS ) - -pkg_setup() { - enewgroup dnscrypt - enewuser dnscrypt -1 -1 /var/empty dnscrypt -} - -src_configure() { - econf \ - $(use_enable plugins) \ - $(use_with systemd ) -} - -src_install() { - default - - newinitd "${FILESDIR}/${PN}.initd" ${PN} - newconfd "${FILESDIR}/${PN}.confd" ${PN} - systemd_dounit "${FILESDIR}"/${PN}.service -} diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.4.3.ebuild b/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.4.3.ebuild deleted file mode 100644 index 5af435bbe77e..000000000000 --- a/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.4.3.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils systemd user - -DESCRIPTION="A tool for securing communications between a client and a DNS resolver" -HOMEPAGE="http://dnscrypt.org/" -SRC_URI="http://download.dnscrypt.org/${PN}/${P}.tar.gz" - -LICENSE="ISC" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+plugins ldns systemd" - -DEPEND="dev-libs/libsodium - ldns? ( net-libs/ldns )" -RDEPEND="${DEPEND} - systemd? ( sys-apps/systemd )" - -DOCS=( AUTHORS ChangeLog COPYING NEWS README.markdown README-PLUGINS.markdown - TECHNOTES THANKS ) - -pkg_setup() { - enewgroup dnscrypt - enewuser dnscrypt -1 -1 /var/empty dnscrypt -} - -src_configure() { - econf \ - $(use_enable plugins) \ - $(use_with systemd ) -} - -src_install() { - default - - newinitd "${FILESDIR}/${PN}.initd" ${PN} - newconfd "${FILESDIR}/${PN}.confd" ${PN} - systemd_dounit "${FILESDIR}"/${PN}.service -} diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.6.0-r1.ebuild b/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.6.0-r1.ebuild deleted file mode 100644 index 7935118328ce..000000000000 --- a/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.6.0-r1.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit systemd user - -DESCRIPTION="A tool for securing communications between a client and a DNS resolver" -HOMEPAGE="http://dnscrypt.org/" -SRC_URI="http://download.dnscrypt.org/${PN}/${P}.tar.gz" - -LICENSE="ISC" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+plugins systemd" - -CDEPEND=" - dev-libs/libsodium - net-libs/ldns - systemd? ( sys-apps/systemd )" -RDEPEND="${CDEPEND}" -DEPEND="${CDEPEND} - virtual/pkgconfig" - -DOCS="AUTHORS ChangeLog NEWS README* TECHNOTES THANKS" - -pkg_setup() { - enewgroup dnscrypt - enewuser dnscrypt -1 -1 /var/empty dnscrypt -} - -src_configure() { - econf \ - $(use_enable plugins) \ - $(use_with systemd) -} - -src_install() { - default - - newinitd "${FILESDIR}"/${PN}.initd-1.6.0-r1 ${PN} - newconfd "${FILESDIR}"/${PN}.confd-1.6.0-r1 ${PN} - systemd_dounit "${FILESDIR}"/${PN}.service -} - -pkg_postinst() { - elog "After starting the service you will need to update your" - elog "/etc/resolv.conf and replace your current set of resolvers" - elog "with:" - elog - elog "nameserver " - elog - elog "where is what you supplied in" - elog "/etc/conf.d/dnscrypt-proxy, default is \"127.0.0.1\"." - elog - elog "Also see https://github.com/jedisct1/dnscrypt-proxy#usage." -} diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.6.0.ebuild b/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.6.0.ebuild deleted file mode 100644 index b1beb34c0c49..000000000000 --- a/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.6.0.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit systemd user - -DESCRIPTION="A tool for securing communications between a client and a DNS resolver" -HOMEPAGE="http://dnscrypt.org/" -SRC_URI="http://download.dnscrypt.org/${PN}/${P}.tar.gz" - -LICENSE="ISC" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+plugins systemd" - -CDEPEND=" - dev-libs/libsodium - net-libs/ldns - systemd? ( sys-apps/systemd )" -RDEPEND="${CDEPEND}" -DEPEND="${CDEPEND} - virtual/pkgconfig" - -DOCS="AUTHORS ChangeLog NEWS README* TECHNOTES THANKS" - -pkg_setup() { - enewgroup dnscrypt - enewuser dnscrypt -1 -1 /var/empty dnscrypt -} - -src_configure() { - econf \ - $(use_enable plugins) \ - $(use_with systemd) -} - -src_install() { - default - - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - systemd_dounit "${FILESDIR}"/${PN}.service -} - -pkg_postinst() { - elog "After starting the service you will need to update your" - elog "/etc/resolv.conf and replace your current set of resolvers" - elog "with:" - elog - elog "nameserver " - elog - elog "where is what you supplied in" - elog "/etc/conf.d/dnscrypt-proxy, default is \"127.0.0.1\"." - elog - elog "Also see https://github.com/jedisct1/dnscrypt-proxy#usage." -} diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.6.1.ebuild b/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.6.1.ebuild deleted file mode 100644 index 142a3acf682d..000000000000 --- a/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.6.1.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit systemd user - -DESCRIPTION="A tool for securing communications between a client and a DNS resolver" -HOMEPAGE="http://dnscrypt.org/" -SRC_URI="http://download.dnscrypt.org/${PN}/${P}.tar.gz" - -LICENSE="ISC" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+plugins systemd" - -CDEPEND=" - dev-libs/libsodium - net-libs/ldns - systemd? ( sys-apps/systemd )" -RDEPEND="${CDEPEND}" -DEPEND="${CDEPEND} - virtual/pkgconfig" - -DOCS="AUTHORS ChangeLog NEWS README* THANKS *txt" - -pkg_setup() { - enewgroup dnscrypt - enewuser dnscrypt -1 -1 /var/empty dnscrypt -} - -src_configure() { - econf \ - $(use_enable plugins) \ - $(use_with systemd) -} - -src_install() { - default - - newinitd "${FILESDIR}"/${PN}.initd-1.6.1 ${PN} - newconfd "${FILESDIR}"/${PN}.confd-1.6.0-r1 ${PN} - systemd_dounit "${FILESDIR}"/${PN}.service -} - -pkg_postinst() { - elog "After starting the service you will need to update your" - elog "/etc/resolv.conf and replace your current set of resolvers" - elog "with:" - elog - elog "nameserver " - elog - elog "where is what you supplied in" - elog "/etc/conf.d/dnscrypt-proxy, default is \"127.0.0.1\"." - elog - elog "Also see https://github.com/jedisct1/dnscrypt-proxy#usage." -} diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.7.0.ebuild b/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.9.4.ebuild similarity index 73% rename from net-dns/dnscrypt-proxy/dnscrypt-proxy-1.7.0.ebuild rename to net-dns/dnscrypt-proxy/dnscrypt-proxy-1.9.4.ebuild index a136524376ed..b8069db8ab60 100644 --- a/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.7.0.ebuild +++ b/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.9.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -6,20 +6,23 @@ EAPI=6 inherit systemd user DESCRIPTION="A tool for securing communications between a client and a DNS resolver" -HOMEPAGE="https://dnscrypt.org/" +HOMEPAGE="https://dnscrypt.org" SRC_URI="https://download.dnscrypt.org/${PN}/${P}.tar.gz" LICENSE="ISC" SLOT="0" KEYWORDS="~amd64 ~arm ~x86" -IUSE="+plugins systemd" +IUSE="hardened libressl +plugins ssl systemd" -CDEPEND=" +RDEPEND=" dev-libs/libsodium net-libs/ldns + ssl? ( + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + ) systemd? ( sys-apps/systemd )" -RDEPEND="${CDEPEND}" -DEPEND="${CDEPEND} +DEPEND="${RDEPEND} virtual/pkgconfig" DOCS="AUTHORS ChangeLog NEWS README* THANKS *txt" @@ -31,15 +34,17 @@ pkg_setup() { src_configure() { econf \ + $(use_enable hardened pie) \ $(use_enable plugins) \ + $(use_enable ssl openssl) \ $(use_with systemd) } src_install() { default - newinitd "${FILESDIR}"/${PN}.initd-1.6.1 ${PN} - newconfd "${FILESDIR}"/${PN}.confd-1.6.0-r1 ${PN} + newinitd "${FILESDIR}"/${PN}.initd ${PN} + newconfd "${FILESDIR}"/${PN}.confd ${PN} systemd_dounit "${FILESDIR}"/${PN}.service } diff --git a/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.confd-1.6.0-r1 b/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.confd-1.6.0-r1 deleted file mode 100644 index 5b1b28dd5ab1..000000000000 --- a/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.confd-1.6.0-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DNSCRYPT_LOCALIP=127.0.0.1 -DNSCRYPT_LOCALPORT=53 -DNSCRYPT_USER=dnscrypt -DNSCRYPT_OPTIONS="--ephemeral-keys" -# Pick exactly ONE of the following sets: -# option 1) selection from CSV file, uses the first column as the key -DNSCRYPT_RESOLVER_NAME=cisco # Cisco OpenDNS -DNSCRYPT_RESOLVERS_LIST=/usr/share/dnscrypt-proxy/dnscrypt-resolvers.csv -# option 2) manually specified parameters -#DNSCRYPT_RESOLVERIP=203.0.133.53 -#DNSCRYPT_RESOLVERPORT=443 -#DNSCRYPT_PROVIDER_NAME=2.dnscrypt-cert.example.com -#DNSCRYPT_PROVIDER_KEY=1234:5678:90AB:CDEF:DEAD:BEEF:CAFE:BEA7:1234:5678:90AB:CDEF:DEAD:BEEF:CAFE:BEA7 diff --git a/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.initd-1.6.0-r1 b/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.initd-1.6.0-r1 deleted file mode 100644 index db5e3223132a..000000000000 --- a/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.initd-1.6.0-r1 +++ /dev/null @@ -1,59 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -DNSCRYPT_LOGFILE=${DNSCRYPT_LOGFILE:-/var/log/dnscrypt-proxy.log} -DNSCRYPT_RESOLVERS_LIST=${DNSCRYPT_RESOLVERS_LIST:-/usr/share/dnscrypt-proxy/dnscrypt-resolvers.csv} - -rundir=${rundir:-/var/run/dnscrypt-proxy} -pidfile=${pidfile:-${rundir}/dnscrypt-proxy.pid} -rundir=${rundir:-/var/run/dnscrypt-proxy} -runas_user=${runas_user:-dnscrypt} -runas_group=${runas_user:-dnscrypt} - -depend() { - use net - before dns - after logger -} - -start() { - if [ ! -d "${rundir}" ]; then - mkdir "${rundir}" - if [ -n "${runas_user}" ]; then - touch "${DNSCRYPT_LOGFILE}" - chown ${runas_user}:${runas_group} "${DNSCRYPT_LOGFILE}" - chown -R ${runas_user}:${runas_group} "${rundir}" - fi - fi - - if [ -n "$DNSCRYPT_RESOLVER_NAME" -a -n "$DNSCRYPT_RESOLVERIP" ]; then - eerror "You must set exactly one of DNSCRYPT_RESOLVER_NAME or DNSCRYPT_RESOLVERIP!" - return 1 - elif [ -n "$DNSCRYPT_RESOLVER_NAME" ]; then - resolver_opts="--resolvers-list=${DNSCRYPT_RESOLVERS_LIST} --resolver-name=${DNSCRYPT_RESOLVER_NAME}" - elif [ -n "$DNSCRYPT_RESOLVERIP" ]; then - resolver_opts="--resolver-address=${DNSCRYPT_RESOLVERIP}:${DNSCRYPT_RESOLVERPORT} --provider-name=${DNSCRYPT_PROVIDER_NAME} --provider-key=${DNSCRYPT_PROVIDER_KEY}" - else - eerror "You must set exactly one of DNSCRYPT_RESOLVER_NAME or DNSCRYPT_RESOLVERIP!" - return 1 - fi - - ebegin "Starting dnscrypt-proxy" - start-stop-daemon --start --quiet \ - --exec /usr/sbin/dnscrypt-proxy \ - -- \ - ${DNSCRYPT_OPTIONS} \ - --pidfile="${pidfile}" \ - --logfile="${DNSCRYPT_LOGFILE}" \ - --daemonize --user=${runas_user} \ - --local-address=${DNSCRYPT_LOCALIP}:${DNSCRYPT_LOCALPORT} \ - $resolver_opts - eend $? -} - -stop() { - ebegin "Stopping dnscrypt-proxy" - start-stop-daemon --stop --quiet --exec /usr/sbin/dnscrypt-proxy - eend $? -} diff --git a/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.initd-1.6.1 b/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.initd-1.6.1 deleted file mode 100644 index 453ab0b3149e..000000000000 --- a/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.initd-1.6.1 +++ /dev/null @@ -1,64 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -DNSCRYPT_LOGFILE=${DNSCRYPT_LOGFILE:-syslog} -DNSCRYPT_RESOLVERS_LIST=${DNSCRYPT_RESOLVERS_LIST:-/usr/share/dnscrypt-proxy/dnscrypt-resolvers.csv} - -rundir=${rundir:-/var/run/dnscrypt-proxy} -pidfile=${pidfile:-${rundir}/dnscrypt-proxy.pid} -rundir=${rundir:-/var/run/dnscrypt-proxy} -runas_user=${runas_user:-dnscrypt} -runas_group=${runas_user:-dnscrypt} - -depend() { - use net - before dns - after logger -} - -start() { - if [ ! -d "${rundir}" ]; then - mkdir "${rundir}" - if [ -n "${runas_user}" ]; then - touch "${DNSCRYPT_LOGFILE}" - chown ${runas_user}:${runas_group} "${DNSCRYPT_LOGFILE}" - chown -R ${runas_user}:${runas_group} "${rundir}" - fi - fi - - if [ -n "$DNSCRYPT_RESOLVER_NAME" -a -n "$DNSCRYPT_RESOLVERIP" ]; then - eerror "You must set exactly one of DNSCRYPT_RESOLVER_NAME or DNSCRYPT_RESOLVERIP!" - return 1 - elif [ -n "$DNSCRYPT_RESOLVER_NAME" ]; then - resolver_opts="--resolvers-list=${DNSCRYPT_RESOLVERS_LIST} --resolver-name=${DNSCRYPT_RESOLVER_NAME}" - elif [ -n "$DNSCRYPT_RESOLVERIP" ]; then - resolver_opts="--resolver-address=${DNSCRYPT_RESOLVERIP}:${DNSCRYPT_RESOLVERPORT} --provider-name=${DNSCRYPT_PROVIDER_NAME} --provider-key=${DNSCRYPT_PROVIDER_KEY}" - else - eerror "You must set exactly one of DNSCRYPT_RESOLVER_NAME or DNSCRYPT_RESOLVERIP!" - return 1 - fi - - if [[ "${DNSCRYPT_LOGFILE}" == "syslog" ]]; then - logopt="--syslog" - else - logopt="--logfile='${DNSCRYPT_LOGFILE}'" - fi - ebegin "Starting dnscrypt-proxy" - start-stop-daemon --start --quiet \ - --exec /usr/sbin/dnscrypt-proxy \ - -- \ - $logopt \ - --pidfile="${pidfile}" \ - --daemonize --user=${runas_user} \ - --local-address=${DNSCRYPT_LOCALIP}:${DNSCRYPT_LOCALPORT} \ - $resolver_opts \ - ${DNSCRYPT_OPTIONS} - eend $? -} - -stop() { - ebegin "Stopping dnscrypt-proxy" - start-stop-daemon --stop --quiet --exec /usr/sbin/dnscrypt-proxy - eend $? -} diff --git a/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.service b/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.service index 414c0b498c5e..1363ac8f8fcd 100644 --- a/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.service +++ b/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.service @@ -2,7 +2,7 @@ Description=A tool for securing communications between a client and a DNS resolver [Service] -Type=forking +Type=simple PIDFile=/var/run/dnscrypt-proxy.pid EnvironmentFile=/etc/conf.d/dnscrypt-proxy ExecStartPre=/bin/rm -f /var/run/dnscrypt-proxy.pid diff --git a/net-dns/dnscrypt-proxy/metadata.xml b/net-dns/dnscrypt-proxy/metadata.xml index 7f857a80dc5c..11fb2be17f62 100644 --- a/net-dns/dnscrypt-proxy/metadata.xml +++ b/net-dns/dnscrypt-proxy/metadata.xml @@ -16,8 +16,6 @@ server. - Use net-libs/ldns for DNSSEC/SSHFP - validation Enable plugin support to inspect and modify queries and responses Use systemd's socket activation instead of diff --git a/net-libs/webkit-gtk/Manifest b/net-libs/webkit-gtk/Manifest index e65a3628ff22..755456d09c48 100644 --- a/net-libs/webkit-gtk/Manifest +++ b/net-libs/webkit-gtk/Manifest @@ -1,2 +1,3 @@ DIST webkitgtk-2.14.5.tar.xz 13956352 SHA256 3ca8f1c33a9b43d6c753dcac1c0788656930e06382b10fdf5c2805ea8f96369f SHA512 3351d9b05458434835fa2db050c34906649c3b1222d7936d123306634a46e35e8cc3aa1bb7512b103af1996fce722254692826b6f695e32ae176032dc8c94e1c WHIRLPOOL 011745e5e1f8926b28b34ac797480b3c79ccfcf09d844d076d8cf3087959013f39f359d7a7ef06a8e95ca7e04d28284ff4901e483180d2a41b4b05568b658e74 +DIST webkitgtk-2.16.1.tar.xz 14675996 SHA256 eb92383232328ce655b703c64370ed3795662479719ad1b4a869ed46769d2945 SHA512 4b8de15644d0d0f9814c674020cbbab8628347915b8010977dbe2365ce276ea05b3bf86171400ae8eb5bfdebbadcfabd1efce34a177b5c82aa765bd3351e7010 WHIRLPOOL c9deacbd229804aaaba88f9fcabdcde1a460430bb60258dfc8d7393723401d7e74d645ba8bf2dcf60e87c30739e45558b747911a4671a8950efe271cb7b86586 DIST webkitgtk-2.4.11.tar.xz 9869100 SHA256 588aea051bfbacced27fdfe0335a957dca839ebe36aa548df39c7bbafdb65bf7 SHA512 2e2cf01a52b8593765a0a3c2d7f0ad306121660019eb402226bd2826c7d4666dab4e91ca6ccbd29abe0ad3993549f256ed1ab88de22e9c8516d5f40a4edd6bfb WHIRLPOOL de86c4abfb22aacbf62163d0398158931c9cf6ab628547d3b30e613f0505d67c85c3200f7db96500e7c2b35f640cdaa7f501346fc13f492c9439dff4056849a3 diff --git a/net-libs/webkit-gtk/files/2.16.1-avoid-perl-ithreads.patch b/net-libs/webkit-gtk/files/2.16.1-avoid-perl-ithreads.patch new file mode 100644 index 000000000000..506696fcc7a9 --- /dev/null +++ b/net-libs/webkit-gtk/files/2.16.1-avoid-perl-ithreads.patch @@ -0,0 +1,88 @@ +From 1ac17bea2273df0dfec21897b00efb8351648e1b Mon Sep 17 00:00:00 2001 +From: Kent Fredric +Date: Sun, 9 Apr 2017 04:10:52 +1200 +Subject: Remove need for threaded perl at expense of being single-threaded + +This could theoretically be implemented with forks, but I opted not +to because its too hard, and the platform specifics are too messy. + +This could theoretically also have support for automatic detection +as to which strategy to use based on OS/availability, but the +implementation details of that are too much for my pateience today. + +In an ideal world, this file would support: + +1. Single threaded builds for spartans +2. Forked builds for people who are on linux but don't want to rebuild + their perl just to have threads ( which produce negligible benefit + and measurable performance penalties to all code ) +3. Threaded builds for people who are on windows where forks may not + be entirely sane. + +But #1 is good enough atm. + +This is important for Gentoo, because end users decide on their own +choices with regards to threading support for perl, and threading +support is off by default due to the performance issues mentioned in #2 +in conjunction with the fact that "threads" is officially discouraged +by Perl Upstream. + +And as Gentoo users have to have a system Perl to compile WebkitGTK, +this means installing WebkitGTK requires rebuilding their system Perl +with threads. + +And this *also* means that all packages presently compiled against Perl +become broken, because non-threaded perl and threaded perl are not ABI +compatible with each other, and this can scale into hundreds of +packages and significant transient breakage. + +This ends up in practice being *far* *worse* in terms of time wasted +than the mediocre time inefficiency created by needing a single +threaded build. +--- + Source/WebCore/bindings/scripts/generate-bindings-all.pl | 15 +++++---------- + 1 file changed, 5 insertions(+), 10 deletions(-) + +diff --git a/Source/WebCore/bindings/scripts/generate-bindings-all.pl b/Source/WebCore/bindings/scripts/generate-bindings-all.pl +index 37b27cc74..b3a378df0 100755 +--- a/Source/WebCore/bindings/scripts/generate-bindings-all.pl ++++ b/Source/WebCore/bindings/scripts/generate-bindings-all.pl +@@ -32,9 +32,6 @@ use File::Basename; + use File::Spec; + use File::Find; + use Getopt::Long; +-use threads; +-use threads::shared; +-use Thread::Queue; + + my $perl = $^X; + my $scriptDir = $FindBin::Bin; +@@ -121,13 +118,11 @@ my @idlFilesToUpdate = grep &{sub { + implicitDependencies($depFile)); + needsUpdate(\@output, \@deps); + }}, @idlFiles; +-my $queue = Thread::Queue->new(@idlFilesToUpdate); +-my $abort :shared = 0; +-my $totalCount = @idlFilesToUpdate; +-my $currentCount :shared = 0; + +-my @threadPool = map { threads->create(\&worker) } (1 .. $numOfJobs); +-$_->join for @threadPool; ++my $abort = 0; ++my $totalCount = @idlFilesToUpdate; ++my $currentCount = 0; ++worker(); + exit $abort; + + sub needsUpdate +@@ -158,7 +153,7 @@ sub mtime + } + + sub worker { +- while (my $file = $queue->dequeue_nb()) { ++ while (my $file = shift @idlFilesToUpdate) { + last if $abort; + eval { + $currentCount++; +-- +2.12.2 diff --git a/net-libs/webkit-gtk/webkit-gtk-2.16.1.ebuild b/net-libs/webkit-gtk/webkit-gtk-2.16.1.ebuild new file mode 100644 index 000000000000..704307fbecb7 --- /dev/null +++ b/net-libs/webkit-gtk/webkit-gtk-2.16.1.ebuild @@ -0,0 +1,290 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +CMAKE_MAKEFILE_GENERATOR="ninja" +PYTHON_COMPAT=( python2_7 ) +USE_RUBY="ruby21 ruby22 ruby23 ruby24" + +inherit check-reqs cmake-utils eutils flag-o-matic gnome2 pax-utils python-any-r1 ruby-single toolchain-funcs versionator virtualx + +MY_P="webkitgtk-${PV}" +DESCRIPTION="Open source web browser engine" +HOMEPAGE="http://www.webkitgtk.org/" +SRC_URI="http://www.webkitgtk.org/releases/${MY_P}.tar.xz" + +LICENSE="LGPL-2+ BSD" +SLOT="4/37" # soname version of libwebkit2gtk-4.0 +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos" + +IUSE="aqua coverage doc +egl +geolocation gles2 gnome-keyring +gstreamer +introspection +jit libnotify nsplugin +opengl spell wayland +webgl X" + +# webgl needs gstreamer, bug #560612 +REQUIRED_USE=" + geolocation? ( introspection ) + gles2? ( egl ) + introspection? ( gstreamer ) + nsplugin? ( X ) + webgl? ( ^^ ( gles2 opengl ) ) + !webgl? ( ?? ( gles2 opengl ) ) + webgl? ( gstreamer ) + wayland? ( egl ) + || ( aqua wayland X ) +" + +# Tests fail to link for inexplicable reasons +# https://bugs.webkit.org/show_bug.cgi?id=148210 +RESTRICT="test" + +# use sqlite, svg by default +# Aqua support in gtk3 is untested +# Dependencies found at Source/cmake/OptionsGTK.cmake +RDEPEND=" + dev-db/sqlite:3= + >=dev-libs/glib-2.36:2 + dev-libs/hyphen + >=dev-libs/icu-3.8.1-r1:= + >=dev-libs/libxml2-2.8:2 + >=dev-libs/libxslt-1.1.7 + >=media-libs/fontconfig-2.8:1.0 + >=media-libs/freetype-2.4.2:2 + >=media-libs/harfbuzz-1.3.3:=[icu(+)] + >=media-libs/libpng-1.4:0= + media-libs/libwebp:= + dev-libs/libgcrypt:0= + >=net-libs/libsoup-2.42:2.4[introspection?] + >=x11-libs/cairo-1.10.2:= + >=x11-libs/gtk+-3.14:3[introspection?] + >=x11-libs/pango-1.30.0 + virtual/jpeg:0= + + aqua? ( >=x11-libs/gtk+-3.14:3[aqua] ) + egl? ( media-libs/mesa[egl] ) + geolocation? ( >=app-misc/geoclue-2.1.5:2.0 ) + gles2? ( media-libs/mesa[gles2] ) + gnome-keyring? ( app-crypt/libsecret ) + gstreamer? ( + >=media-libs/gstreamer-1.2.3:1.0 + >=media-libs/gst-plugins-base-1.2.3:1.0 + >=media-libs/gst-plugins-bad-1.8:1.0[opengl?] ) + introspection? ( >=dev-libs/gobject-introspection-1.32.0:= ) + libnotify? ( x11-libs/libnotify ) + nsplugin? ( >=x11-libs/gtk+-2.24.10:2 ) + opengl? ( virtual/opengl + x11-libs/cairo[opengl] ) + spell? ( >=app-text/enchant-0.22:= ) + wayland? ( >=x11-libs/gtk+-3.14:3[wayland] ) + webgl? ( + x11-libs/cairo[opengl] + x11-libs/libXcomposite + x11-libs/libXdamage ) + X? ( + x11-libs/cairo[X] + >=x11-libs/gtk+-3.14:3[X] + x11-libs/libX11 + x11-libs/libXcomposite + x11-libs/libXrender + x11-libs/libXt ) +" + +# paxctl needed for bug #407085 +# Need real bison, not yacc +DEPEND="${RDEPEND} + ${PYTHON_DEPS} + ${RUBY_DEPS} + >=dev-lang/perl-5.10 + >=app-accessibility/at-spi2-core-2.5.3 + >=dev-libs/atk-2.8.0 + >=dev-util/gtk-doc-am-1.10 + >=dev-util/gperf-3.0.1 + >=sys-devel/bison-2.4.3 + || ( >=sys-devel/gcc-4.9 >=sys-devel/clang-3.3 ) + sys-devel/gettext + virtual/pkgconfig + + dev-lang/perl + virtual/perl-Data-Dumper + virtual/perl-Carp + + doc? ( >=dev-util/gtk-doc-1.10 ) + geolocation? ( dev-util/gdbus-codegen ) + introspection? ( jit? ( sys-apps/paxctl ) ) + test? ( + dev-lang/python:2.7 + dev-python/pygobject:3[python_targets_python2_7] + x11-themes/hicolor-icon-theme + jit? ( sys-apps/paxctl ) ) +" + +S="${WORKDIR}/${MY_P}" + +CHECKREQS_DISK_BUILD="18G" # and even this might not be enough, bug #417307 + +PATCHES=( + # https://bugs.gentoo.org/show_bug.cgi?id=555504 + "${FILESDIR}"/${PN}-2.8.5-fix-ia64-build.patch + + # https://bugs.gentoo.org/show_bug.cgi?id=564352 + # https://bugs.webkit.org/show_bug.cgi?id=167283 + "${FILESDIR}"/${PN}-2.8.5-fix-alpha-build.patch + + # Avoid perl[ithreads] build time requirement as that would be very very messy + "${FILESDIR}"/${PV}-avoid-perl-ithreads.patch +) + +pkg_pretend() { + if [[ ${MERGE_TYPE} != "binary" ]] ; then + if is-flagq "-g*" && ! is-flagq "-g*0" ; then + einfo "Checking for sufficient disk space to build ${PN} with debugging CFLAGS" + check-reqs_pkg_pretend + fi + + if ! test-flag-CXX -std=c++11 ; then + die "You need at least GCC 4.9.x or Clang >= 3.3 for C++11-specific compiler flags" + fi + + if tc-is-gcc && [[ $(gcc-version) < 4.9 ]] ; then + die 'The active compiler needs to be gcc 4.9 (or newer)' + fi + fi +} + +pkg_setup() { + if [[ ${MERGE_TYPE} != "binary" ]] && is-flagq "-g*" && ! is-flagq "-g*0" ; then + check-reqs_pkg_setup + fi + + python-any-r1_pkg_setup +} + +src_configure() { + # Respect CC, otherwise fails on prefix #395875 + tc-export CC + + # Arches without JIT support also need this to really disable it in all places + use jit || append-cppflags -DENABLE_JIT=0 -DENABLE_YARR_JIT=0 -DENABLE_ASSEMBLER=0 + + # It does not compile on alpha without this in LDFLAGS + # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=648761 + use alpha && append-ldflags "-Wl,--no-relax" + + # ld segfaults on ia64 with LDFLAGS --as-needed, bug #555504 + use ia64 && append-ldflags "-Wl,--no-as-needed" + + # Sigbuses on SPARC with mcpu and co., bug #??? + use sparc && filter-flags "-mvis" + + # https://bugs.webkit.org/show_bug.cgi?id=42070 , #301634 + use ppc64 && append-flags "-mminimal-toc" + + # Try to use less memory, bug #469942 (see Fedora .spec for reference) + # --no-keep-memory doesn't work on ia64, bug #502492 + if ! use ia64; then + append-ldflags "-Wl,--no-keep-memory" + fi + + # We try to use gold when possible for this package +# if ! tc-ld-is-gold ; then +# append-ldflags "-Wl,--reduce-memory-overheads" +# fi + + # older glibc needs this for INTPTR_MAX, bug #533976 + if has_version " override.properties || die - if ! use nls; then - echo "require.gettext=false" >> override.properties || die - fi - - # avoid auto starting browser - sed -i 's|clientApp.4.startOnLoad=true|clientApp.4.startOnLoad=false|' \ - "${RES_DIR}/clients.config" || die - - # we do it now so we can resolve path after - default - - # replace paths as the installer would - sed -i "s|%INSTALL_PATH|${I2P_ROOT}|" \ - "${RES_DIR}/"{eepget,i2prouter,runplain.sh} || die - sed -i "s|\$INSTALL_PATH|${I2P_ROOT}|" "${RES_DIR}/wrapper.config" || die - sed -i "s|%SYSTEM_java_io_tmpdir|${I2P_CONFIG_DIR}|" \ - "${RES_DIR}/"{i2prouter,runplain.sh} || die - sed -i "s|%USER_HOME|${I2P_CONFIG_HOME}|" "${RES_DIR}/i2prouter" || die -} - -src_install() { - # cd into pkg-temp. - cd "${S}/pkg-temp" || die - - # This is ugly, but to satisfy all non-system .jar dependencies, jetty - # would need to be packaged. It would be too large a task - # for an unseasoned developer. This seems to be the most pragmatic solution - java-pkg_jarinto "${I2P_ROOT}/lib" - local i - for i in BOB commons-el commons-logging i2p i2psnark i2ptunnel \ - jasper-compiler jasper-runtime javax.servlet jbigi jetty* mstreaming org.mortbay.* router* \ - sam standard streaming systray; do - java-pkg_dojar lib/${i}.jar - done - - # Set up symlinks for binaries - dosym /usr/bin/wrapper "${I2P_ROOT}/i2psvc" - dosym "${I2P_ROOT}/i2prouter" /usr/bin/i2prouter - dosym "${I2P_ROOT}/eepget" /usr/bin/eepget - - # Install main files and basic documentation - exeinto "${I2P_ROOT}" - insinto "${I2P_ROOT}" - doins blocklist.txt hosts.txt *.config - doexe eepget i2prouter runplain.sh - dodoc history.txt INSTALL-headless.txt LICENSE.txt - doman man/* - - # Install other directories - doins -r certificates docs eepsite geoip scripts - dodoc -r licenses - java-pkg_dowar webapps/*.war - - # Install daemon files - newinitd "${FILESDIR}/${P}.initd" i2p - systemd_newunit "${FILESDIR}/${P}.service" i2p.service - - # setup user - keepdir "${I2P_CONFIG_DIR}" - fowners -R i2p:i2p "${I2P_CONFIG_DIR}" -} - -pkg_postinst() { - elog "Custom configuration belongs in /var/lib/i2p/.i2p/ to avoid being overwritten." - elog "I2P can be configured through the web interface at http://localhost:7657/index.jsp" - - ewarn 'Currently, the i2p team does not enforce to use ECDSA keys. But it is more and' - ewarn 'more pushed. To help the network, you are recommended to have either:' - ewarn ' dev-java/icedtea[-sunec,nss]' - ewarn ' dev-java/icedtea-bin[nss]' - ewarn ' dev-java/icedtea[-sunec] and bouncycastle (bcprov)' - ewarn ' dev-java/icedtea-bin and bouncycastle (bcprov)' - ewarn ' dev-java/oracle-jre-bin' - ewarn ' dev-java/oracle-jdk-bin' - ewarn 'Alternatively you can just use Ed25519 keys - which is a stronger algorithm anyways.' - ewarn - ewarn "This is purely a run-time issue. You're free to build i2p with any JDK, as long as" - ewarn 'the JVM you run it with is one of the above listed and from the same or a newer generation' - ewarn 'as the one you built with.' -} diff --git a/net-vpn/i2p/i2p-0.9.26.ebuild b/net-vpn/i2p/i2p-0.9.29.ebuild similarity index 75% rename from net-vpn/i2p/i2p-0.9.26.ebuild rename to net-vpn/i2p/i2p-0.9.29.ebuild index 6514c7a98dcd..bb8052060306 100644 --- a/net-vpn/i2p/i2p-0.9.26.ebuild +++ b/net-vpn/i2p/i2p-0.9.29.ebuild @@ -17,26 +17,24 @@ KEYWORDS="~amd64 ~x86" IUSE="+ecdsa nls" # dev-java/ant-core is automatically added due to java-ant-2.eclass -CDEPEND="dev-java/bcprov:1.50 +CP_DEPEND="dev-java/bcprov:1.50 dev-java/jrobin:0 dev-java/slf4j-api:0 dev-java/tomcat-jstl-impl:0 dev-java/tomcat-jstl-spec:0 dev-java/java-service-wrapper:0" -DEPEND="${CDEPEND} +DEPEND="${CP_DEPEND} dev-java/eclipse-ecj:* dev-libs/gmp:0 nls? ( >=sys-devel/gettext-0.19 ) >=virtual/jdk-1.7" -RDEPEND="${CDEPEND} +RDEPEND="${CP_DEPEND} ecdsa? ( || ( dev-java/icedtea:7[-sunec] dev-java/icedtea:8[-sunec] - dev-java/icedtea:7[nss,-sunec] - dev-java/icedtea-bin:7[nss] dev-java/icedtea-bin:7 dev-java/icedtea-bin:8 dev-java/oracle-jre-bin @@ -46,7 +44,6 @@ RDEPEND="${CDEPEND} !ecdsa? ( >=virtual/jre-1.7 )" EANT_BUILD_TARGET="pkg" -EANT_GENTOO_CLASSPATH="java-service-wrapper,jrobin,slf4j-api,tomcat-jstl-impl,tomcat-jstl-spec,bcprov-1.50" JAVA_ANT_ENCODING="UTF-8" I2P_ROOT='/usr/share/i2p' @@ -57,6 +54,10 @@ RES_DIR='installer/resources' PATCHES=( "${FILESDIR}/${P}-add_libs.patch" + + # New Gentoo detection code is added in 0.9.29 and its side-effect breaks Gentoo + # http://zzz.i2p/topics/2285-gentoo-installation-is-broken-in-0-9-29 + "${FILESDIR}/${P}-revert-gentoo-detection.patch" ) pkg_setup() { @@ -140,20 +141,16 @@ src_install() { } pkg_postinst() { - elog "Custom configuration belongs in /var/lib/i2p/.i2p/ to avoid being overwritten." - elog "I2P can be configured through the web interface at http://localhost:7657/index.jsp" - - ewarn 'Currently, the i2p team does not enforce to use ECDSA keys. But it is more and' - ewarn 'more pushed. To help the network, you are recommended to have either:' - ewarn ' dev-java/icedtea[-sunec,nss]' - ewarn ' dev-java/icedtea-bin[nss]' - ewarn ' dev-java/icedtea[-sunec] and bouncycastle (bcprov)' - ewarn ' dev-java/icedtea-bin and bouncycastle (bcprov)' - ewarn ' dev-java/oracle-jre-bin' - ewarn ' dev-java/oracle-jdk-bin' - ewarn 'Alternatively you can just use Ed25519 keys - which is a stronger algorithm anyways.' - ewarn - ewarn "This is purely a run-time issue. You're free to build i2p with any JDK, as long as" - ewarn 'the JVM you run it with is one of the above listed and from the same or a newer generation' - ewarn 'as the one you built with.' + elog "Custom configuration belongs in ${I2P_CONFIG_DIR} to avoid being overwritten." + elog 'I2P can be configured through the web interface at http://localhost:7657/console' + + if use !ecdsa + then + ewarn 'Currently, the i2p team does not enforce to use ECDSA keys. But it is more and' + ewarn 'more pushed. To help the network, you are recommended to have the ecdsa USE.' + ewarn + ewarn "This is purely a run-time issue. You're free to build i2p with any JDK, as long as" + ewarn 'the JVM you run it with is one of the above listed and from the same or a newer generation' + ewarn 'as the one you built with.' + fi } diff --git a/profiles/license_groups b/profiles/license_groups index 36ef128af286..d84e147de502 100644 --- a/profiles/license_groups +++ b/profiles/license_groups @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # Please report bugs or other requests at bugs.gentoo.org and assign to @@ -18,7 +18,7 @@ GPL-COMPATIBLE AGPL-3 AGPL-3+ Apache-2.0 Artistic-2 Boost-1.0 BSD BSD-2 CC0-1.0 # Free software licenses approved by the FSF FSF-APPROVED @GPL-COMPATIBLE AFL-2.1 AFL-3.0 Apache-1.0 Apache-1.1 APSL-2 BSD-4 CDDL CNRI CPAL-1.0 CPL-1.0 EPL-1.0 EUPL-1.1 gnuplot IBM LPPL-1.2 MPL-1.0 MPL-1.1 Ms-PL NPL-1.1 openssl OSL-1.1 OSL-2.0 OSL-2.1 PHP-3.01 QPL QPL-1.0 Zend-2.0 -# Licenses approved by the Open Source Foundation +# Licenses approved by the Open Source Initiative # http://www.opensource.org/licenses # Note that the FSF lists these as nonfree: Artistic NOSA Watcom-1.0 OSI-APPROVED AFL-3.0 AGPL-3 AGPL-3+ Apache-1.1 Apache-2.0 APL-1.0 APSL-2 Artistic Artistic-2 Boost-1.0 BSD BSD-2 CDDL CNRI CPAL-1.0 CPL-1.0 ECL-2.0 EPL-1.0 EUPL-1.1 GPL-1+ GPL-2 GPL-2+ GPL-3 GPL-3+ HPND IBM IPAfont ISC LGPL-2+ LGPL-2.1 LGPL-2.1+ LGPL-3 LGPL-3+ LPPL-1.3c MIT MPL-1.0 MPL-1.1 MPL-2.0 Ms-PL nethack NOSA OFL-1.1 OSL-2.1 PHP-3 PHP-3.01 POSTGRESQL PSF-2 QPL Sleepycat UoI-NCSA W3C Watcom-1.0 wxWinLL-3 ZLIB ZPL diff --git a/profiles/use.local.desc b/profiles/use.local.desc index 4d7401957e9b..b9fdbee486e7 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -5311,7 +5311,6 @@ net-dns/bind-tools:gssapi - Enable gssapi support net-dns/bind-tools:urandom - Use /dev/urandom instead of /dev/random net-dns/ddclient:cloudflare - Enable support for updating IP address via CloudFlare net-dns/ddclient:hardened - Use iproute2 instead of ifconfig to grab an IP address -net-dns/dnscrypt-proxy:ldns - Use net-libs/ldns for DNSSEC/SSHFP validation net-dns/dnscrypt-proxy:plugins - Enable plugin support to inspect and modify queries and responses net-dns/dnscrypt-proxy:systemd - Use systemd's socket activation instead of creating the sockets itself net-dns/dnsmasq:auth-dns - Add support for acting as an authorative DNS server. diff --git a/sys-apps/ucspi-ssl/Manifest b/sys-apps/ucspi-ssl/Manifest index b7779a0be520..1bb946491ffc 100644 --- a/sys-apps/ucspi-ssl/Manifest +++ b/sys-apps/ucspi-ssl/Manifest @@ -1,3 +1,4 @@ DIST ucspi-ssl-0.94.tgz 112640 SHA256 343c0281269d88650823eb053fe80bf34b81f52c12b895f27534706b983a23b4 SHA512 a2b7fcea0da4c99a02cd0cf9402d59e55309a65031232e8afc9f29134be268c2e385840f5616c2046649a3f421563f1abcb707a8a8e93c7d29e7aef4a368b604 WHIRLPOOL 1ef3f5b447810eab97532b7fabaf94c56ddd0818a51f1149ec31ad2265c8899e90c3cf5c497a1c3570fc83918576abca2103132db3a494181ea2a872590fadb2 DIST ucspi-ssl-0.97.tgz 112640 SHA256 cb90cd56fdb1ab51dafa2b228dd6595b61da21816fefcae646f02f41864cbe5b SHA512 2cafa091f700e0b06b6e0ab23ac02b9459003d747c1ee0e8e95cf0922d94f8f32bde5c956307e333b193ce4514cf99078383a3cc7ffee45aadbd303e2eb454c7 WHIRLPOOL d4e69029a2945b92957c4bdd3e17d19802d3e11c9a4f4916366f89b3b4e3a8b854712295a49828cc10808a106cbd1f200d1b5ff64a124119da35cb2d5fcd76d5 DIST ucspi-ssl-0.98b.tgz 112640 SHA256 10d4f47c7085d8b0b56b026901569d73bb366a73825f4042b6c99cbcde506ff3 SHA512 c9f6749048059f870b5221296ecb01d4b5c57c1d8c8b3574c67926b60569bce983f257afacfc3383b1b9a60d55b470a5a1548d2c19b0a505b953171a83cee12b WHIRLPOOL 8777cf317d0b4c913e6457d39083e3b86c722d2fe71605efffd50de2c1296be6ce4de435891047224f93e558834dbe635cd53782cf89b5271a94fca8f48489b9 +DIST ucspi-ssl-0.99.tgz 112640 SHA256 083421b4da939221e01f3e576a3d7c7d49c78ab46e782ef31f6310e8a847d6c3 SHA512 2fd29d0f6b31b54f2b53206c6ccd0cf35c759834f34aab26d2a883319d33ff2257163150fc85a2e450c7bd81ce7bbed7b59c4013d71a35a9b3446a6338cb406e WHIRLPOOL 5db993287beb0bc1422a5d53a4fb14eba3cb34fdd073a883555a95799ed09ccfb7f230adec0fa5a7d79d4816e0b8d0093022987e6f28362119a129f0d3c89355 diff --git a/sys-apps/ucspi-ssl/metadata.xml b/sys-apps/ucspi-ssl/metadata.xml index 3d9c7d7bb25c..8ad7e767f396 100644 --- a/sys-apps/ucspi-ssl/metadata.xml +++ b/sys-apps/ucspi-ssl/metadata.xml @@ -1,16 +1,21 @@ + + mailto:feh@fehcom.de + powerman-asdf@yandex.ru Alex Efros Primary maintainer - - proxy-maint@gentoo.org - Proxy Maintainers + + proxy-maint@gentoo.org + Proxy Maintainers - sslserver and sslclient are command-line tools for building SSL - client-server applications. They conform to the UNIX Client-Server Program - Interface, UCSPI. + + sslserver, sslclient, and sslhandle are command-line tools for + building SSL client-server applications. They conform to the UNIX + Client-Server Program Interface, UCSPI. + diff --git a/sys-apps/ucspi-ssl/ucspi-ssl-0.99.ebuild b/sys-apps/ucspi-ssl/ucspi-ssl-0.99.ebuild new file mode 100644 index 000000000000..c7a507fa3c6c --- /dev/null +++ b/sys-apps/ucspi-ssl/ucspi-ssl-0.99.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit fixheadtails qmail + +DESCRIPTION="Command-line tools for building SSL client-server applications" +HOMEPAGE="http://www.fehcom.de/ipnet/ucspi-ssl.html" +SRC_URI="http://www.fehcom.de/ipnet/ucspi-ssl/${P}.tgz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="perl" + +DEPEND="dev-libs/openssl:= + perl? ( dev-lang/perl:= )" +RDEPEND="${DEPEND} + sys-apps/ucspi-tcp" + +S="${WORKDIR}"/host/superscript.com/net/${P} + +src_prepare() { + ht_fix_all + + sed -i -e 's:auto:gcc:' conf-cc || die + sed -i -e 's:-m64::' conf-ld || die + qmail_set_cc + + echo "/usr/bin" > conf-tcpbin || die + echo "/usr/share/ca-certificates/" > conf-cadir || die + echo "${QMAIL_HOME}/control/dh1024.pem" > conf-dhfile || die + echo "/usr/" > src/home || die + sed -i -e 's:HOME/command:/usr/bin:' \ + src/sslcat.sh src/sslconnect.sh src/https\@.sh || die + + eapply_user +} + +src_compile() { + cd src || die + emake sysdeps + emake uint32.h + emake +} + +src_install() { + dodoc doc/* + doman man/*.* + + cd src || die + dobin $(<../package/commands-base) + use perl && dobin $(<../package/commands-sslperl) +} diff --git a/sys-kernel/gentoo-sources/Manifest b/sys-kernel/gentoo-sources/Manifest index cb012032a1c4..b8dc3bf17a79 100644 --- a/sys-kernel/gentoo-sources/Manifest +++ b/sys-kernel/gentoo-sources/Manifest @@ -71,6 +71,9 @@ DIST genpatches-4.4-56.extras.tar.xz 16408 SHA256 74babcf456aed9c7c406a0feb37b5f DIST genpatches-4.4-62.base.tar.xz 1115956 SHA256 c32b4d25bd464de9673c83219e98e2bbbc92ea1e671a8ce0c878944b8d70c1d9 SHA512 e7e0108d8feaa5d1d30e764592cf79ca89a559c9734e2dd2afa62d1160b4ba07889de14e1426d610b1a669fdc1cd2df513f3beffdaebd43deac55a9c26b12689 WHIRLPOOL 4be7da6200c627bd0a719a4dbf97fb28346f7e129fbfc1c3856496791234b53c37798cd1956f496c082e1c1752d47255e9c2e9f0a2cebd4ca75572d0637eeece DIST genpatches-4.4-62.experimental.tar.xz 87776 SHA256 d23bdc09f923de10bd7796f7709760c0e18981e147991d75ae1d1792586f3b43 SHA512 1c60a9bfc6156a468ceb623485e53f898141f33c2c276c33a5f4d839e5e8d4a32034004172b99b37c7626c5c4dd65fc02268fbb01cb13b53a94b6078cad605e8 WHIRLPOOL d05520471ddb61daff0bfc75d9557ed06bab4da68a02921c9ef5e3ca006acf32da689f96ac49dd291c33948a9507d4cdfe38e8a19d1d07b8fbf38b46138e579c DIST genpatches-4.4-62.extras.tar.xz 16464 SHA256 4063554ff9c2bca3f127dba67429dbccfed3e68433fa22114c70599ec3680660 SHA512 10c8ba0a02fa1d6484f4aff03f2b09ed79acacd99683a2f84f0919ac1785ed78e179f238ac3151447d8543dec3f30bce33e5bd1bd0443858823171b198430b5b WHIRLPOOL eb9abaacb0e8a0fb67e4ef91e2d4d20f57e6de776e7217329c4b06ac08e777b32a2b433f2a9c0d0bd8cf808fe8f72680fd1f3f05dde7d432be71eed644a1062d +DIST genpatches-4.4-63.base.tar.xz 1123364 SHA256 0b2ee584b35c93570ec43982cdc8c163bf37d86e1493df74686e245c95c946dc SHA512 4e4492e3610db8c68b1394b89f0eeb0ac9c460c0aff8d930f68cd2fe2601c4b9e2562985e77bf5e9626162deba48abe666c7e18a49dc71f4300396152e3cbb3f WHIRLPOOL 7be28abb4e398d2d6a7be4a869714690f2a23a086bbbe321d3bd32183ef35c070b35d968ff64b0104909b12f76415e0858ade811176c20435affeadc0d65cea1 +DIST genpatches-4.4-63.experimental.tar.xz 87784 SHA256 52773674ec9c4ec963c5fad0a79b9252f3252a8f184d439de9b604785e70716d SHA512 e91a6149697e916f03ad9a2e0e1f279d26ab897608a02672ca477a51685c68f88e98ab43d452addc6d1b3dfd01b965e6222ae93c62ffe3c1535002c864d22e43 WHIRLPOOL 0b7b533a81a815020de3f6685b5e20939cb05c5da676c4f1ee322aea6d82a697cd2f3816b377e6a0eab55ca1b13110555fae1871e84651ae5c92ddd24c78db3b +DIST genpatches-4.4-63.extras.tar.xz 16456 SHA256 4e96ff321f8f6a08e52a46a6f649b5f4d3ec02e084bc9935140ece89ce3b0d48 SHA512 5741259580aff567d6905a19bd9db07381926b4760b5bcfcce7729bd29d3923a883f1e6203bdcf18b68e95edb87493a6f420763d97d6a144ab0e8de8b3267d58 WHIRLPOOL 5853dfc23a3b8999e11f3105a1f6868dc05f1c2a7bf9726d60796231d9f62f86e89704dc5048246efa69bb3c58619621a8b35380f69d10cc57bb4961c62b25ed DIST genpatches-4.9-18.base.tar.xz 385508 SHA256 d29fc16842e846c2c6487e9c1543e6fe43429d34882ac9c6ca070c1fe3564605 SHA512 c1d08b3d66df74efe610cbf586921f7caa57bb8337848380fdc8e2034883180a60a26dab9ded50974fb468d35dc923912ead08cb0f751a515cef85efb31955d9 WHIRLPOOL e1ef981b945718eab2e96470f96a033cc2b1ede6c706d6cd3e32f4f1c4e066766135141d55a5ccee06d9fb84bc66df389cdb2d095ad569bd565afc600b3b4095 DIST genpatches-4.9-18.experimental.tar.xz 105616 SHA256 209be56c1efb0ba3fbee17f2437bd00b36caecc6c44db2b4e1a0e46ae17640b0 SHA512 37d6983f46ed4031f11f91ffcdacb510b40cab682d71ac471ab3c2ae78598ee9826068afb8b1388d96133635ba2680cc106624e0d79c341d2610b4f74330b773 WHIRLPOOL 5af9422c0526c5e23977f2d25ea683ed1ecf6f9e14a6daf52490bd808e9790cf6f6d9ef96353bda3474197eb954159575a4f0e6a768a86777d9b8a61828d0a0e DIST genpatches-4.9-18.extras.tar.xz 17348 SHA256 64167f17f122f969476bf68a3e0493a77d7ae9e78087c2748cdfdc6e6186af2a SHA512 dcbdea379a0e28e9b8ed08b32ee71a36ce9ccc817e5b79f38759031e3324441f3e91e6b7e2802d1a694574bb4ce9e8f441d88ccbbd9280b3a4456eadab7d5fec WHIRLPOOL 1d3ba61d03d17a707a65423e85f7f3a235a9d39fb26e4602b5cf663e097dc9e8618380d7a54db60705e6b38e9c0674330df57a6e243c7215411275a489ab8b42 diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.4.60.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.4.60.ebuild new file mode 100644 index 000000000000..4837bbdcdf78 --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.60.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="5" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="63" + +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" +IUSE="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/x11-libs/gtk+/Manifest b/x11-libs/gtk+/Manifest index e75eadc79492..cd91e2e16cf3 100644 --- a/x11-libs/gtk+/Manifest +++ b/x11-libs/gtk+/Manifest @@ -1,3 +1,4 @@ DIST gtk+-2.24.31.tar.xz 12805344 SHA256 68c1922732c7efc08df4656a5366dcc3afdc8791513400dac276009b40954658 SHA512 75b846661308d94b5236e7e1c367deabf57753792ca87e92f9769822dd5ec90e00cd8d5574adcc12162e3702e1ae6dc152278a1d218f9bd9e4d1c8dc1dd520c1 WHIRLPOOL 6f59d444b28910b0f4cd7d0d0bf04f8e442acd945205679c19e5adf7ca3f8e7406d4095e9ff9ca597882eb937a7551e19af63b6597e7b57c0babe5b061f9110e DIST gtk+-3.20.9.tar.xz 17174872 SHA256 83a609ba2f3424b5509e73967c49c67833af466d6f91081b24ee5c64fce6ac17 SHA512 5848403959f76633511009231c80a814cfe24a7ba07c9429704f432191e51b54d3e6621ce5b578f79999f21993920af3a45c8d03dad6ba03af5f9a342b32626e WHIRLPOOL 7964b82dabf72b5d45a34565874ba02e0dda09b0f358f640ca0c602c3c7aa4618432829d047794f5f202424c34c837bbdc31ccb3c5457768e252f048afd30107 DIST gtk+-3.22.11.tar.xz 18250068 SHA256 db440670cb6f3c098b076df3735fbc4e69359bd605385e87c90ee48344a804ca SHA512 0dd8c0b8cf01a687bd7b9548308a8719fda4a30e0b47139db049906333d23c1eee3867af130dc3ecd0fb4a1381c8065e9929ccd9cb4def376bbb0b136ec05a7e WHIRLPOOL 4ab9e69f3d7987cfdc67555657e402ac181817d0a91ba61f8a238ee4190150766c36fff67765a6af56941a02383db0737812a39dae81ab432269586f4d711165 +DIST gtk+-3.22.12.tar.xz 18236348 SHA256 84fae0cefb6a11ee2b4e86b8ac42fe46a3d30b4ad16661d5fc51e8ae03e2a98c SHA512 a37121dd4737c68f72f3172830ac3f26faeb09b4040f2a341b04a87cab26876b437777d512ed416a968d68d6a52e0401c045b78c2eac0f87b3b0bf8ef34e3ba9 WHIRLPOOL 075e48efa2a83d4bedef8b4f0ed5dd96fe41298e4b6c0cd9809d319ddc06e6522a667e72ca9a1218c7427449dd897f878e3bd575f527ded813e04b315e999b13 diff --git a/x11-libs/gtk+/gtk+-3.22.12.ebuild b/x11-libs/gtk+/gtk+-3.22.12.ebuild new file mode 100644 index 000000000000..b48690742f56 --- /dev/null +++ b/x11-libs/gtk+/gtk+-3.22.12.ebuild @@ -0,0 +1,229 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +GNOME2_LA_PUNT="yes" + +inherit autotools flag-o-matic gnome2 multilib virtualx multilib-minimal + +DESCRIPTION="Gimp ToolKit +" +HOMEPAGE="http://www.gtk.org/" + +LICENSE="LGPL-2+" +SLOT="3" +IUSE="aqua broadway cloudprint colord cups examples +introspection test vim-syntax wayland +X xinerama" +REQUIRED_USE=" + || ( aqua wayland X ) + xinerama? ( X ) +" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + +# Upstream wants us to do their job: +# https://bugzilla.gnome.org/show_bug.cgi?id=768662#c1 +RESTRICT="test" + +# FIXME: introspection data is built against system installation of gtk+:3, +# bug #???? +COMMON_DEPEND=" + >=dev-libs/atk-2.15[introspection?,${MULTILIB_USEDEP}] + >=dev-libs/glib-2.49.4:2[${MULTILIB_USEDEP}] + media-libs/fontconfig[${MULTILIB_USEDEP}] + >=media-libs/libepoxy-1.0[X(+)?,${MULTILIB_USEDEP}] + >=x11-libs/cairo-1.14[aqua?,glib,svg,X?,${MULTILIB_USEDEP}] + >=x11-libs/gdk-pixbuf-2.30:2[introspection?,${MULTILIB_USEDEP}] + >=x11-libs/pango-1.37.3[introspection?,${MULTILIB_USEDEP}] + x11-misc/shared-mime-info + + cloudprint? ( + >=net-libs/rest-0.7[${MULTILIB_USEDEP}] + >=dev-libs/json-glib-1.0[${MULTILIB_USEDEP}] ) + colord? ( >=x11-misc/colord-0.1.9:0=[${MULTILIB_USEDEP}] ) + cups? ( >=net-print/cups-1.2[${MULTILIB_USEDEP}] ) + introspection? ( >=dev-libs/gobject-introspection-1.39:= ) + wayland? ( + >=dev-libs/wayland-1.9.91[${MULTILIB_USEDEP}] + >=dev-libs/wayland-protocols-1.7 + media-libs/mesa[wayland,${MULTILIB_USEDEP}] + >=x11-libs/libxkbcommon-0.2[${MULTILIB_USEDEP}] + ) + X? ( + >=app-accessibility/at-spi2-atk-2.5.3[${MULTILIB_USEDEP}] + x11-libs/libX11[${MULTILIB_USEDEP}] + >=x11-libs/libXi-1.3[${MULTILIB_USEDEP}] + x11-libs/libXext[${MULTILIB_USEDEP}] + >=x11-libs/libXrandr-1.5[${MULTILIB_USEDEP}] + x11-libs/libXcursor[${MULTILIB_USEDEP}] + x11-libs/libXfixes[${MULTILIB_USEDEP}] + x11-libs/libXcomposite[${MULTILIB_USEDEP}] + x11-libs/libXdamage[${MULTILIB_USEDEP}] + xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] ) + ) +" +DEPEND="${COMMON_DEPEND} + app-text/docbook-xsl-stylesheets + app-text/docbook-xml-dtd:4.1.2 + dev-libs/libxslt + dev-libs/gobject-introspection-common + >=dev-util/gdbus-codegen-2.48 + >=dev-util/gtk-doc-am-1.20 + >=sys-devel/gettext-0.19.7[${MULTILIB_USEDEP}] + virtual/pkgconfig[${MULTILIB_USEDEP}] + X? ( + x11-proto/xextproto[${MULTILIB_USEDEP}] + x11-proto/xproto[${MULTILIB_USEDEP}] + x11-proto/inputproto[${MULTILIB_USEDEP}] + x11-proto/damageproto[${MULTILIB_USEDEP}] + xinerama? ( x11-proto/xineramaproto[${MULTILIB_USEDEP}] ) + ) + test? ( + media-fonts/font-misc-misc + media-fonts/font-cursor-misc ) +" +# gtk+-3.2.2 breaks Alt key handling in <=x11-libs/vte-0.30.1:2.90 +# gtk+-3.3.18 breaks scrolling in <=x11-libs/vte-0.31.0:2.90 +# >=xorg-server-1.11.4 needed for +# https://mail.gnome.org/archives/desktop-devel-list/2012-March/msg00024.html +RDEPEND="${COMMON_DEPEND} + >=dev-util/gtk-update-icon-cache-3 + !=x11-themes/adwaita-icon-theme-3.14 + X? ( !