diff --git a/Manifest.files.gz b/Manifest.files.gz index 967d4d2972a6..4874d79bfdea 100644 Binary files a/Manifest.files.gz and b/Manifest.files.gz differ diff --git a/app-admin/Manifest.gz b/app-admin/Manifest.gz index a007abcdfb96..c5f813c775db 100644 Binary files a/app-admin/Manifest.gz and b/app-admin/Manifest.gz differ diff --git a/app-admin/conky/conky-1.10.8-r2.ebuild b/app-admin/conky/conky-1.10.8-r2.ebuild new file mode 100644 index 000000000000..7b5070f6df14 --- /dev/null +++ b/app-admin/conky/conky-1.10.8-r2.ebuild @@ -0,0 +1,208 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils linux-info readme.gentoo-r1 + +DESCRIPTION="An advanced, highly configurable system monitor for X" +HOMEPAGE="https://github.com/brndnmtthws/conky" +SRC_URI="https://github.com/brndnmtthws/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3 BSD LGPL-2.1 MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86" +IUSE="apcupsd audacious cmus curl eve hddtemp ical iconv imlib iostats ipv6 irc + lua-cairo lua-imlib lua-rsvg math moc mpd mysql nano-syntax ncurses + nvidia +portmon pulseaudio rss systemd thinkpad truetype vim-syntax + weather-metar weather-xoap webserver wifi X xmms2" + +DEPEND_COMMON=" + X? ( + imlib? ( media-libs/imlib2[X] ) + lua-cairo? ( + >=dev-lua/toluapp-1.0.93 + x11-libs/cairo[X] ) + lua-imlib? ( + >=dev-lua/toluapp-1.0.93 + media-libs/imlib2[X] ) + lua-rsvg? ( + >=dev-lua/toluapp-1.0.93 + gnome-base/librsvg ) + nvidia? ( || ( x11-drivers/nvidia-drivers[tools,static-libs] media-video/nvidia-settings ) ) + truetype? ( x11-libs/libXft >=media-libs/freetype-2 ) + x11-libs/libX11 + x11-libs/libXdamage + x11-libs/libXinerama + x11-libs/libXfixes + x11-libs/libXext + audacious? ( >=media-sound/audacious-1.5 dev-libs/glib:2 ) + xmms2? ( media-sound/xmms2 ) + ) + cmus? ( media-sound/cmus ) + curl? ( net-misc/curl ) + eve? ( net-misc/curl dev-libs/libxml2 ) + ical? ( dev-libs/libical ) + iconv? ( virtual/libiconv ) + irc? ( net-libs/libircclient ) + mysql? ( >=virtual/mysql-5.0 ) + ncurses? ( sys-libs/ncurses:= ) + pulseaudio? ( media-sound/pulseaudio ) + rss? ( dev-libs/libxml2 net-misc/curl dev-libs/glib:2 ) + systemd? ( sys-apps/systemd ) + wifi? ( net-wireless/wireless-tools ) + weather-metar? ( net-misc/curl ) + weather-xoap? ( dev-libs/libxml2 net-misc/curl ) + webserver? ( net-libs/libmicrohttpd ) + >=dev-lang/lua-5.1.4-r8:0 + " +RDEPEND=" + ${DEPEND_COMMON} + apcupsd? ( sys-power/apcupsd ) + hddtemp? ( app-admin/hddtemp ) + moc? ( media-sound/moc ) + nano-syntax? ( app-editors/nano ) + vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) + " +DEPEND=" + ${DEPEND_COMMON} + app-text/docbook2X + " + +CONFIG_CHECK=~IPV6 + +DOCS=( README.md TODO ChangeLog NEWS AUTHORS ) + +PATCHES=( + "${FILESDIR}"/${P}-use-pkgconfig.patch + "${FILESDIR}"/${P}-libical-3.patch +) + +DISABLE_AUTOFORMATTING="yes" +DOC_CONTENTS="You can find sample configurations at ${ROOT%/}/usr/share/doc/${PF}. +To customize, copy to ${XDG_CONFIG_HOME}/conky/conky.conf +and edit it to your liking. + +There are pretty html docs available at the conky homepage +or in ${ROOT%/}/usr/share/doc/${PF}/html. + +Also see https://wiki.gentoo.org/wiki/Conky/HOWTO" + +pkg_setup() { + use ipv6 && linux-info_pkg_setup +} + +src_prepare() { + cmake-utils_src_prepare + + sed -i -e "s|find_program(APP_MAN man)|set(APP_MAN $(which man) CACHE FILEPATH MAN_BINARY)|" \ + cmake/ConkyPlatformChecks.cmake || die +} + +src_configure() { + local mycmakeargs + + if use X; then + mycmakeargs=( + -DBUILD_X11=ON + -DOWN_WINDOW=ON + -DBUILD_XDAMAGE=ON + -DBUILD_XINERAMA=ON + -DBUILD_XDBE=ON + -DBUILD_XFT=$(usex truetype) + -DBUILD_IMLIB2=$(usex imlib) + -DBUILD_XSHAPE=ON + -DBUILD_ARGB=ON + -DBUILD_LUA_CAIRO=$(usex lua-cairo) + -DBUILD_LUA_IMLIB2=$(usex lua-imlib) + -DBUILD_LUA_RSVG=$(usex lua-rsvg) + -DBUILD_NVIDIA=$(usex nvidia) + -DBUILD_AUDACIOUS=$(usex audacious) + -DBUILD_XMMS2=$(usex xmms2) + ) + else + mycmakeargs=( + -DBUILD_X11=OFF + -DBUILD_NVIDIA=OFF + -DBUILD_LUA_CAIRO=OFF + -DBUILD_LUA_IMLIB2=OFF + -DBUILD_LUA_RSVG=OFF + -DBUILD_AUDACIOUS=OFF + -DBUILD_XMMS2=OFF + ) + fi + + if use weather-xoap; then + mycmakeargs+=( + -DBUILD_WEATHER_XOAP=ON + -DBUILD_WEATHER_METAR=ON + ) + elif use weather-metar; then + mycmakeargs+=( + -DBUILD_WEATHER_METAR=ON + -DBUILD_WEATHER_XOAP=$(usex weather-xoap) + ) + else + mycmakeargs+=( + -DBUILD_WEATHER_XOAP=OFF + -DBUILD_WEATHER_METAR=OFF + ) + fi + + mycmakeargs+=( + -DBUILD_APCUPSD=$(usex apcupsd) + -DBUILD_CMUS=$(usex cmus) + -DBUILD_CURL=$(usex curl) + -DBUILD_EVE=$(usex eve) + -DBUILD_HDDTEMP=$(usex hddtemp) + -DBUILD_IOSTATS=$(usex iostats) + -DBUILD_ICAL=$(usex ical) + -DBUILD_ICONV=$(usex iconv) + -DBUILD_IPV6=$(usex ipv6) + -DBUILD_IRC=$(usex irc) + -DBUILD_MATH=$(usex math) + -DBUILD_MOC=$(usex moc) + -DBUILD_MPD=$(usex mpd) + -DBUILD_MYSQL=$(usex mysql) + -DBUILD_NCURSES=$(usex ncurses) + -DBUILD_PORT_MONITORS=$(usex portmon) + -DBUILD_PULSEAUDIO=$(usex pulseaudio) + -DBUILD_RSS=$(usex rss) + -DBUILD_JOURNAL=$(usex systemd) + -DBUILD_IBM=$(usex thinkpad) + -DBUILD_HTTP=$(usex webserver) + -DBUILD_WLAN=$(usex wifi) + -DBUILD_BUILTIN_CONFIG=ON + -DBUILD_OLD_CONFIG=OFF + -DBUILD_I18N=ON + -DMAINTAINER_MODE=ON + -DRELEASE=ON + -DBUILD_BMPX=OFF + -DDOC_PATH=/usr/share/doc/${PF} + ) + + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install + + if use vim-syntax; then + insinto /usr/share/vim/vimfiles/ftdetect + doins "${S}"/extras/vim/ftdetect/conkyrc.vim + + insinto /usr/share/vim/vimfiles/syntax + doins "${S}"/extras/vim/syntax/conkyrc.vim + fi + + if use nano-syntax; then + insinto /usr/share/nano/ + doins "${S}"/extras/nano/conky.nanorc + fi + + readme.gentoo_create_doc +} + +pkg_postinst() { + readme.gentoo_print_elog +} diff --git a/app-crypt/Manifest.gz b/app-crypt/Manifest.gz index 604e05dd3d95..0efdf947be39 100644 Binary files a/app-crypt/Manifest.gz and b/app-crypt/Manifest.gz differ diff --git a/app-crypt/ccid/ccid-1.4.29.ebuild b/app-crypt/ccid/ccid-1.4.29.ebuild index 4444f0adeed2..b3354bfc2c9d 100644 --- a/app-crypt/ccid/ccid-1.4.29.ebuild +++ b/app-crypt/ccid/ccid-1.4.29.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://ccid.apdu.fr/files/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86" IUSE="twinserial kobil-midentity +usb" RDEPEND=">=sys-apps/pcsc-lite-1.8.3 diff --git a/app-crypt/rhash/rhash-1.3.6-r1.ebuild b/app-crypt/rhash/rhash-1.3.6-r1.ebuild index 719c158b9e27..6c09111247b1 100644 --- a/app-crypt/rhash/rhash-1.3.6-r1.ebuild +++ b/app-crypt/rhash/rhash-1.3.6-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="debug nls libressl ssl static-libs" RDEPEND=" diff --git a/app-crypt/tpm-tools/tpm-tools-1.3.9.1.ebuild b/app-crypt/tpm-tools/tpm-tools-1.3.9.1.ebuild index 985d505f1523..6b5020fa6e68 100644 --- a/app-crypt/tpm-tools/tpm-tools-1.3.9.1.ebuild +++ b/app-crypt/tpm-tools/tpm-tools-1.3.9.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/trousers/${PN}/${P}.tar.gz" LICENSE="CPL-1.0" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~m68k ~s390 ~sh x86" +KEYWORDS="amd64 ~arm ~arm64 ~m68k ~s390 ~sh x86" IUSE="libressl nls pkcs11 debug" COMMON_DEPEND=" diff --git a/app-dicts/Manifest.gz b/app-dicts/Manifest.gz index ad01dbbd58a8..815b2f416eaf 100644 Binary files a/app-dicts/Manifest.gz and b/app-dicts/Manifest.gz differ diff --git a/app-dicts/myspell-lv/myspell-lv-1.3.0.ebuild b/app-dicts/myspell-lv/myspell-lv-1.3.0.ebuild index 9452fea49599..e8d102b990f6 100644 --- a/app-dicts/myspell-lv/myspell-lv-1.3.0.ebuild +++ b/app-dicts/myspell-lv/myspell-lv-1.3.0.ebuild @@ -23,7 +23,7 @@ SRC_URI="http://dict.dv.lv/download/lv_LV-${PV}.zip -> ${P}.zip" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd" IUSE="" DEPEND="app-arch/unzip" diff --git a/app-editors/Manifest.gz b/app-editors/Manifest.gz index cbc5b954a824..b1756aae29bd 100644 Binary files a/app-editors/Manifest.gz and b/app-editors/Manifest.gz differ diff --git a/app-editors/retext/retext-7.0.3.ebuild b/app-editors/retext/retext-7.0.3.ebuild index 31b7747aab23..03ad82628835 100644 --- a/app-editors/retext/retext-7.0.3.ebuild +++ b/app-editors/retext/retext-7.0.3.ebuild @@ -21,7 +21,7 @@ if [[ ${PV} == *9999 ]] EGIT_REPO_URI="https://github.com/retext-project/retext.git" else SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" - KEYWORDS="~amd64 x86" + KEYWORDS="amd64 x86" S="${WORKDIR}"/${MY_P} fi diff --git a/app-emulation/Manifest.gz b/app-emulation/Manifest.gz index cb8f97cd3930..6478c3a93ee9 100644 Binary files a/app-emulation/Manifest.gz and b/app-emulation/Manifest.gz differ diff --git a/app-emulation/skopeo/Manifest b/app-emulation/skopeo/Manifest index c23c8ce296d9..aca81361e518 100644 --- a/app-emulation/skopeo/Manifest +++ b/app-emulation/skopeo/Manifest @@ -1,2 +1,3 @@ DIST skopeo-0.1.22.tar.gz 1921286 BLAKE2B 141f78d14cb47494af9e55541eeaa973c9e2065d6dcdc73a6ee296fd160a981b88a4464ebf803df56378f9de7d812721eab877386a4b756e6b914d2c08e44aca SHA512 10ed4e577b07f672540ff86774b5c5b6b7531765fd36313b9e4e6bf974840fee98ede193014977c381b96875cb9147307ee690f4fc8dd4f97d87681d7fa2f4f2 DIST skopeo-0.1.30.tar.gz 2700275 BLAKE2B d80125e1be32f3b490f5d66caa5b1bd482dc2203d0c37824bd40d06e240c347468f9635623344e6f9badd9dbbeed59383d5ec8ad81a9b8e01284bc48114470f6 SHA512 05ea7c54f1de7ab9676903a973c8039520fa023f295c705e600d01520c0f300d255268e41b9c716dc4a1f01e951d9b73acf24d5a1bc891f694798a3eb085f061 +DIST skopeo-0.1.31.tar.gz 2886364 BLAKE2B 9ef9eb4fdd722216f15e14de6702aa0dfe3331b83acb803221b8f76a36428749b6bc302cb3ea2772dd42aefc336a80ad823cfcda9fc054a01f672cf7464592a1 SHA512 660856d962310f0274f3c2507a9a5cbfd8ceb205a3d2fdf30ebde856602151917492082356f6031e5d041ce02e53e562e83cba58259cdc456363f7af56b2507b diff --git a/app-emulation/skopeo/skopeo-0.1.31.ebuild b/app-emulation/skopeo/skopeo-0.1.31.ebuild new file mode 100644 index 000000000000..435c19e79825 --- /dev/null +++ b/app-emulation/skopeo/skopeo-0.1.31.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +EGO_PN=github.com/projectatomic/skopeo +COMMIT=b0b750d +inherit golang-vcs-snapshot + +DESCRIPTION="Command line utility foroperations on container images and image repositories" +HOMEPAGE="https://github.com/projectatomic/skopeo" +SRC_URI="https://github.com/projectatomic/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +COMMON_DEPEND=">=app-crypt/gpgme-1.5.5:= + >=dev-libs/libassuan-2.4.3 + >=sys-fs/btrfs-progs-4.0.1 + >=sys-fs/lvm2-2.02.145" +DEPEND="${COMMON_DEPEND} + dev-go/go-md2man" +RDEPEND="${COMMON_DEPEND}" + +S="${WORKDIR}/${P}/src/${EGO_PN}" + +RESTRICT="test" + +src_compile() { + local BUILDTAGS="containers_image_ostree_stub" + set -- env GOPATH="${WORKDIR}/${P}" \ + go build -ldflags "-X main.gitCommit=${COMMIT}" \ + -gcflags "${GOGCFLAGS}" -tags "${BUILDTAGS}" \ + -o skopeo ./cmd/skopeo + echo "$@" + "$@" || die + cd docs || die + for f in *.1.md; do + go-md2man -in ${f} -out ${f%%.md} || die + done +} + +src_install() { + dobin skopeo + doman docs/*.1 + insinto /etc/containers + newins default-policy.json policy.json + insinto /etc/containers/registries.d + doins default.yaml + keepdir /var/lib/atomic/sigstore + einstalldocs +} diff --git a/app-emulation/spice-protocol/Manifest b/app-emulation/spice-protocol/Manifest index e60f15dc9821..5deecaa890ab 100644 --- a/app-emulation/spice-protocol/Manifest +++ b/app-emulation/spice-protocol/Manifest @@ -1,2 +1,2 @@ -DIST spice-protocol-0.12.12.tar.bz2 80628 BLAKE2B 86ae09a97606e227828117e19c76742504a147489222d307893de6efb71f36a62750b23245f37e52b8df1de9b477f8d3d2e2ce2ec7656da4eed42697b080b018 SHA512 66e7a902b3c4a5a778cb91ffd9d324b12d414184146ac834dfb3bd81b4b6b1bb56258d3e1ce240b6f8747e1960fce8f0f6b0ada3617e9f9819be7118195fce6b DIST spice-protocol-0.12.13.tar.bz2 73259 BLAKE2B f8694c6144cbe77d84b78c38f87f3f473b80ed97cb51e9fb89a89e66410ab8bf853f51bfa175d431ad8397e25481b7c4bae1614119b74bf95420bca531a38db3 SHA512 55840020a7a538e72bf53d2124a6b1920dd2d567418cf02dc33783ae5c78154d5c832d69f2e6570453c4086194b417d10687884de20365c13657ad7ca7b2ae02 +DIST spice-protocol-0.12.14.tar.bz2 74471 BLAKE2B ee90514f3c6ee0c8f6930e5fd0140e20447b1613f202186883a9a17eefaacbd83ff2f2cdb68b46cd1573de4cce288965a1b531ded1ab4da52c24c2c3ad098192 SHA512 4266bcbef9f641a97a2ff72f1b01380a41e51f4b1a0dbb73fdf68baf552598a62d5cf0c526adf2997a55ee5d4fe9392927c3d7f4556827bfb2933f59bfab55bb diff --git a/app-emulation/spice-protocol/spice-protocol-0.12.12.ebuild b/app-emulation/spice-protocol/spice-protocol-0.12.14.ebuild similarity index 72% rename from app-emulation/spice-protocol/spice-protocol-0.12.12.ebuild rename to app-emulation/spice-protocol/spice-protocol-0.12.14.ebuild index c7c7f4ece7b3..75b635646715 100644 --- a/app-emulation/spice-protocol/spice-protocol-0.12.12.ebuild +++ b/app-emulation/spice-protocol/spice-protocol-0.12.14.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -9,7 +9,7 @@ SRC_URI="https://www.spice-space.org/download/releases/${P}.tar.bz2" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="" DEPEND="" diff --git a/app-emulation/spice/Manifest b/app-emulation/spice/Manifest index 8258480e0ae9..6b3b7c613b44 100644 --- a/app-emulation/spice/Manifest +++ b/app-emulation/spice/Manifest @@ -1,2 +1 @@ -DIST spice-0.13.3.tar.bz2 1322505 BLAKE2B 56f9cd34bb48fdcf750230242b27567db713ef749649d4b780a82d0d4ec5d326b19540c9bb4f36c164d40a692eb0368c39e05ee8dba319dd8461a0315e5a9a17 SHA512 63496fbd3df0fd453052cef8e1fb00a3a28f0105610676fdc4a58043cbc6da571ae4407701af2b817e410d05ce727d60d5ee0c93c8897231e25229897c51d95a DIST spice-0.14.0.tar.bz2 1330195 BLAKE2B 08f93e8ddeb79adb4feac0557a854cc41fd096a9dfefc0baaca176803c2a03ef9286c4f61a135d62ad22e3ac3f4bb31ffd1614c8ddeaec7ae8c01eca34da1750 SHA512 84532146aa628ca6ca459a82afb89d6391892e063668fd4a68023c92cee7ca868b6c82e31dd9886819b76ea745ebdae0d0030e1f608d8f58f51c00f0b09bae1f diff --git a/app-emulation/spice/files/spice-0.13.3-reds-Avoid-buffer-overflows-handling-monitor-configu.patch b/app-emulation/spice/files/spice-0.13.3-reds-Avoid-buffer-overflows-handling-monitor-configu.patch deleted file mode 100644 index 8792395977e9..000000000000 --- a/app-emulation/spice/files/spice-0.13.3-reds-Avoid-buffer-overflows-handling-monitor-configu.patch +++ /dev/null @@ -1,47 +0,0 @@ -Matthias Maier - - - Ported to 0.13.3 - - -From fbbcdad773e2791cfb988f4748faa41943551ca6 Mon Sep 17 00:00:00 2001 -From: Frediano Ziglio -Date: Mon, 15 May 2017 15:57:28 +0100 -Subject: [PATCH 3/3] reds: Avoid buffer overflows handling monitor - configuration - -It was also possible for a malicious client to set -VDAgentMonitorsConfig::num_of_monitors to a number larger -than the actual size of VDAgentMOnitorsConfig::monitors. -This would lead to buffer overflows, which could allow the guest to -read part of the host memory. This might cause write overflows in the -host as well, but controlling the content of such buffers seems -complicated. - -Signed-off-by: Frediano Ziglio ---- - -diff --git a/server/reds.c b/server/reds.c -index ec89105..fd1457f 100644 ---- a/server/reds.c -+++ b/server/reds.c -@@ -1084,6 +1084,7 @@ static void reds_on_main_agent_monitors_config(RedsState *reds, - VDAgentMessage *msg_header; - VDAgentMonitorsConfig *monitors_config; - RedsClientMonitorsConfig *cmc = &reds->client_monitors_config; -+ uint32_t max_monitors; - - // limit size of message sent by the client as this can cause a DoS through - // memory exhaustion, or potentially some integer overflows -@@ -1113,6 +1114,12 @@ static void reds_on_main_agent_monitors_config(RedsState *reds, - goto overflow; - } - monitors_config = (VDAgentMonitorsConfig *)(cmc->buffer + sizeof(*msg_header)); -+ // limit the monitor number to avoid buffer overflows -+ max_monitors = (msg_header->size - sizeof(VDAgentMonitorsConfig)) / -+ sizeof(VDAgentMonConfig); -+ if (monitors_config->num_of_monitors > max_monitors) { -+ goto overflow; -+ } - spice_debug("%s: %d", __func__, monitors_config->num_of_monitors); - reds_client_monitors_config(reds, monitors_config); - reds_client_monitors_config_cleanup(reds); diff --git a/app-emulation/spice/files/spice-0.13.3-reds-Avoid-integer-overflows-handling-monitor-config.patch b/app-emulation/spice/files/spice-0.13.3-reds-Avoid-integer-overflows-handling-monitor-config.patch deleted file mode 100644 index f05e55c7354a..000000000000 --- a/app-emulation/spice/files/spice-0.13.3-reds-Avoid-integer-overflows-handling-monitor-config.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 571cec91e71c2aae0d5f439ea2d8439d0c3d75eb Mon Sep 17 00:00:00 2001 -From: Frediano Ziglio -Date: Mon, 15 May 2017 15:57:28 +0100 -Subject: [PATCH 2/3] reds: Avoid integer overflows handling monitor - configuration - -Avoid VDAgentMessage::size integer overflows. - -Signed-off-by: Frediano Ziglio ---- - server/reds.c | 3 +++ - 1 file changed, 3 insertions(+) - -diff --git a/server/reds.c b/server/reds.c -index ec2b6f47..656f518f 100644 ---- a/server/reds.c -+++ b/server/reds.c -@@ -1131,6 +1131,9 @@ static void reds_on_main_agent_monitors_config(RedsState *reds, - spice_debug("not enough data yet. %zd", cmc->offset); - return; - } -+ if (msg_header->size < sizeof(VDAgentMonitorsConfig)) { -+ goto overflow; -+ } - monitors_config = (VDAgentMonitorsConfig *)(cmc->buffer + sizeof(*msg_header)); - spice_debug("monitors_config->num_of_monitors: %d", monitors_config->num_of_monitors); - reds_client_monitors_config(reds, monitors_config); --- -2.13.0 - diff --git a/app-emulation/spice/files/spice-0.13.3-reds-Disconnect-when-receiving-overly-big-ClientMoni.patch b/app-emulation/spice/files/spice-0.13.3-reds-Disconnect-when-receiving-overly-big-ClientMoni.patch deleted file mode 100644 index 2cd186482ad9..000000000000 --- a/app-emulation/spice/files/spice-0.13.3-reds-Disconnect-when-receiving-overly-big-ClientMoni.patch +++ /dev/null @@ -1,75 +0,0 @@ -Matthias Maier - - - Ported to 0.13.3 - - -From 111ab38611cef5012f1565a65fa2d8a8a05cce37 Mon Sep 17 00:00:00 2001 -From: Frediano Ziglio -Date: Mon, 15 May 2017 15:57:28 +0100 -Subject: [PATCH 1/3] reds: Disconnect when receiving overly big - ClientMonitorsConfig - -Total message size received from the client was unlimited. There is -a 2kiB size check on individual agent messages, but the MonitorsConfig -message can be split in multiple chunks, and the size of the -non-chunked MonitorsConfig message was never checked. This could easily -lead to memory exhaustion on the host. - -Signed-off-by: Frediano Ziglio ---- - -diff --git a/server/reds.c b/server/reds.c -index 92feea1..286993b 100644 ---- a/server/reds.c -+++ b/server/reds.c -@@ -1077,19 +1077,35 @@ static void reds_client_monitors_config_cleanup(RedsState *reds) - static void reds_on_main_agent_monitors_config(RedsState *reds, - MainChannelClient *mcc, void *message, size_t size) - { -+ const unsigned int MAX_MONITORS = 256; -+ const unsigned int MAX_MONITOR_CONFIG_SIZE = -+ sizeof(VDAgentMonitorsConfig) + MAX_MONITORS * sizeof(VDAgentMonConfig); -+ - VDAgentMessage *msg_header; - VDAgentMonitorsConfig *monitors_config; - RedsClientMonitorsConfig *cmc = &reds->client_monitors_config; - -+ // limit size of message sent by the client as this can cause a DoS through -+ // memory exhaustion, or potentially some integer overflows -+ if (sizeof(VDAgentMessage) + MAX_MONITOR_CONFIG_SIZE - cmc->buffer_size < size) { -+ goto overflow; -+ } -+ - cmc->buffer_size += size; - cmc->buffer = realloc(cmc->buffer, cmc->buffer_size); - spice_assert(cmc->buffer); - cmc->mcc = mcc; - memcpy(cmc->buffer + cmc->buffer_pos, message, size); - cmc->buffer_pos += size; -+ if (sizeof(VDAgentMessage) > cmc->buffer_size) { -+ spice_debug("not enough data yet. %d", cmc->buffer_size); -+ return; -+ } - msg_header = (VDAgentMessage *)cmc->buffer; -- if (sizeof(VDAgentMessage) > cmc->buffer_size || -- msg_header->size > cmc->buffer_size - sizeof(VDAgentMessage)) { -+ if (msg_header->size > MAX_MONITOR_CONFIG_SIZE) { -+ goto overflow; -+ } -+ if (msg_header->size > cmc->buffer_size - sizeof(VDAgentMessage)) { - spice_debug("not enough data yet. %d", cmc->buffer_size); - return; - } -@@ -1097,6 +1113,12 @@ static void reds_on_main_agent_monitors_config(RedsState *reds, - spice_debug("%s: %d", __func__, monitors_config->num_of_monitors); - reds_client_monitors_config(reds, monitors_config); - reds_client_monitors_config_cleanup(reds); -+ return; -+ -+overflow: -+ spice_warning("received invalid MonitorsConfig request from client, disconnecting"); -+ red_channel_client_disconnect(RED_CHANNEL_CLIENT(mcc)); -+ reds_client_monitors_config_cleanup(reds); - } - - void reds_on_main_agent_data(RedsState *reds, MainChannelClient *mcc, void *message, size_t size) diff --git a/app-emulation/spice/files/spice-0.13.3-skip_faulty_lz4_check.patch b/app-emulation/spice/files/spice-0.13.3-skip_faulty_lz4_check.patch deleted file mode 100644 index 6ae65ba6d13c..000000000000 --- a/app-emulation/spice/files/spice-0.13.3-skip_faulty_lz4_check.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/spice-common/m4/spice-deps.m4 b/spice-common/m4/spice-deps.m4 -index adedec4..6cb8bde 100644 ---- a/spice-common/m4/spice-deps.m4 -+++ b/spice-common/m4/spice-deps.m4 -@@ -185,7 +185,7 @@ AC_DEFUN([SPICE_CHECK_LZ4], [ - - have_lz4="no" - if test "x$enable_lz4" != "xno"; then -- PKG_CHECK_MODULES([LZ4], [liblz4 >= 129], [have_lz4="yes"], [have_lz4="no"]) -+ PKG_CHECK_MODULES([LZ4], [liblz4], [have_lz4="yes"], [have_lz4="no"]) - - if test "x$have_lz4" = "xyes"; then - AC_DEFINE(USE_LZ4, [1], [Define to build with lz4 support]) diff --git a/app-emulation/spice/files/spice-0.14.0-fix-flexible-array-buffer-overflow.patch b/app-emulation/spice/files/spice-0.14.0-fix-flexible-array-buffer-overflow.patch new file mode 100644 index 000000000000..a05bbb7545aa --- /dev/null +++ b/app-emulation/spice/files/spice-0.14.0-fix-flexible-array-buffer-overflow.patch @@ -0,0 +1,12 @@ +diff --git a/spice-common/python_modules/demarshal.py b/spice-common/python_modules/demarshal.py +index 1ea131d..7172762 100644 +--- a/spice-common/python_modules/demarshal.py ++++ b/spice-common/python_modules/demarshal.py +@@ -318,6 +318,7 @@ def write_validate_array_item(writer, container, item, scope, parent_scope, star + writer.assign(nelements, array.size) + elif array.is_remaining_length(): + if element_type.is_fixed_nw_size(): ++ writer.error_check("%s > message_end" % item.get_position()) + if element_type.get_fixed_nw_size() == 1: + writer.assign(nelements, "message_end - %s" % item.get_position()) + else: diff --git a/app-emulation/spice/spice-0.13.3-r2.ebuild b/app-emulation/spice/spice-0.14.0-r2.ebuild similarity index 81% rename from app-emulation/spice/spice-0.13.3-r2.ebuild rename to app-emulation/spice/spice-0.14.0-r2.ebuild index 557c17470c39..823669338c7b 100644 --- a/app-emulation/spice/spice-0.13.3-r2.ebuild +++ b/app-emulation/spice/spice-0.14.0-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -12,13 +12,13 @@ SRC_URI="https://www.spice-space.org/download/releases/${P}.tar.bz2" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="amd64 ~arm64 x86" +KEYWORDS="~amd64 ~arm64 ~x86" IUSE="libressl lz4 sasl smartcard static-libs gstreamer" # the libspice-server only uses the headers of libcacard RDEPEND=" + dev-lang/orc[static-libs(+)?] >=dev-libs/glib-2.22:2[static-libs(+)?] - >=media-libs/celt-0.5.1.1:0.5.1[static-libs(+)?] media-libs/opus[static-libs(+)?] sys-libs/zlib[static-libs(+)?] virtual/jpeg:0=[static-libs(+)?] @@ -34,7 +34,7 @@ RDEPEND=" )" DEPEND="${RDEPEND} ${PYTHON_DEPS} - >=app-emulation/spice-protocol-0.12.12 + >=app-emulation/spice-protocol-0.12.13 virtual/pkgconfig $(python_gen_any_dep ' >=dev-python/pyparsing-1.5.6-r2[${PYTHON_USEDEP}] @@ -43,10 +43,9 @@ DEPEND="${RDEPEND} smartcard? ( app-emulation/qemu[smartcard] )" PATCHES=( - "${FILESDIR}"/${PN}-0.13.3-skip_faulty_lz4_check.patch - "${FILESDIR}"/${PN}-0.13.3-reds-Disconnect-when-receiving-overly-big-ClientMoni.patch - "${FILESDIR}"/${PN}-0.13.3-reds-Avoid-integer-overflows-handling-monitor-config.patch - "${FILESDIR}"/${PN}-0.13.3-reds-Avoid-buffer-overflows-handling-monitor-configu.patch + "${FILESDIR}"/${P}-libressl_fix.patch + "${FILESDIR}"/${P}-openssl1.1_fix.patch + "${FILESDIR}"/${P}-fix-flexible-array-buffer-overflow.patch ) python_check_deps() { @@ -78,8 +77,7 @@ src_configure() { $(use_with sasl) $(use_enable smartcard) --enable-gstreamer=$(usex gstreamer "1.0" "no") - --enable-celt051 - --disable-gui + --disable-celt051 " econf ${myconf} } diff --git a/app-emulation/wine-vanilla/wine-vanilla-3.0.2.ebuild b/app-emulation/wine-vanilla/wine-vanilla-3.0.2.ebuild index 5ca2d89a3c04..eb3d66d40ddb 100644 --- a/app-emulation/wine-vanilla/wine-vanilla-3.0.2.ebuild +++ b/app-emulation/wine-vanilla/wine-vanilla-3.0.2.ebuild @@ -20,7 +20,7 @@ if [[ ${PV} == "9999" ]] ; then else MAJOR_V=$(get_version_component_range 1) SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.0/${MY_P}.tar.xz" - KEYWORDS="-* ~amd64 x86 ~x86-fbsd" + KEYWORDS="-* amd64 x86 ~x86-fbsd" fi S="${WORKDIR}/${MY_P}" diff --git a/app-eselect/Manifest.gz b/app-eselect/Manifest.gz index 6bbf09e9cb86..19cbd9418a14 100644 Binary files a/app-eselect/Manifest.gz and b/app-eselect/Manifest.gz differ diff --git a/app-eselect/eselect-opengl/eselect-opengl-1.3.1-r4.ebuild b/app-eselect/eselect-opengl/eselect-opengl-1.3.1-r4.ebuild index d3f04c9469cb..4254b036e4ec 100644 --- a/app-eselect/eselect-opengl/eselect-opengl-1.3.1-r4.ebuild +++ b/app-eselect/eselect-opengl/eselect-opengl-1.3.1-r4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -20,7 +20,7 @@ SRC_URI="https://dev.gentoo.org/~mgorny/dist/opengl.eselect-${PV}.xz" LICENSE="GPL-2" SLOT="0" -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" +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" IUSE="" DEPEND="app-arch/xz-utils" diff --git a/app-mobilephone/Manifest.gz b/app-mobilephone/Manifest.gz index 18853cfd12d3..77c881cc36be 100644 Binary files a/app-mobilephone/Manifest.gz and b/app-mobilephone/Manifest.gz differ diff --git a/app-mobilephone/obexftp/obexftp-0.24.2.ebuild b/app-mobilephone/obexftp/obexftp-0.24.2.ebuild index 77e9ea5922cf..48797b440a9c 100644 --- a/app-mobilephone/obexftp/obexftp-0.24.2.ebuild +++ b/app-mobilephone/obexftp/obexftp-0.24.2.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/openobex/${P}-Source.tar.gz" SLOT="0" LICENSE="GPL-2" -KEYWORDS="~amd64 ~hppa ppc x86" +KEYWORDS="amd64 ~hppa ppc x86" # bluetooth support is not really optional, bug #529068 IUSE="perl python ruby tcl" diff --git a/app-text/Manifest.gz b/app-text/Manifest.gz index 78f92e3af4c3..b6818daace65 100644 Binary files a/app-text/Manifest.gz and b/app-text/Manifest.gz differ diff --git a/app-text/ps2pkm/ps2pkm-1.8_p20170524.ebuild b/app-text/ps2pkm/ps2pkm-1.8_p20170524.ebuild index 4f7fe338493a..59318b16b5ac 100644 --- a/app-text/ps2pkm/ps2pkm-1.8_p20170524.ebuild +++ b/app-text/ps2pkm/ps2pkm-1.8_p20170524.ebuild @@ -9,7 +9,7 @@ SRC_URI="mirror://gentoo/texlive-${PV#*_p}-source.tar.xz" LICENSE="MIT" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="" DEPEND=">=dev-libs/kpathsea-6.2.1" diff --git a/dev-lang/Manifest.gz b/dev-lang/Manifest.gz index 99e2535adfce..67a8c2eacdd5 100644 Binary files a/dev-lang/Manifest.gz and b/dev-lang/Manifest.gz differ diff --git a/dev-lang/php/Manifest b/dev-lang/php/Manifest index 79e1931c3d48..375f5c6c25a6 100644 --- a/dev-lang/php/Manifest +++ b/dev-lang/php/Manifest @@ -6,5 +6,5 @@ DIST php-7.0.31.tar.xz 12029516 BLAKE2B afb3c831b11b3aa4d3660ccef5b97e8282da2ad9 DIST php-7.1.16.tar.xz 12211512 BLAKE2B bf242e2438b2dc363368a9ef4478349a291f483477ccedf988abd0fbb78a6f1b31e3b86dcb39ed9a9a8151674a8373ae77d8420e77efd6a2e05d5cfc778ed40f SHA512 98e96f06a4912cfa6926be2f292ce7120ca893c9b779b2efef4120c1df3580fa427cd58f5e4977edb01a0ae3b85660d6ca79b2bd79b6cd830cd77f6c6588b5ea DIST php-7.1.18.tar.xz 12213396 BLAKE2B f851c6eb261b8b532e84e73e6f173deb6ac00cd5168a02db9811843540aeadc390a4c5416eb17749cc950bbb1eda1045f538e2b80e4734ea2c0c4e264776bffb SHA512 7eacbc3b98d8b668c90d5c93030263f47ba2e0d4d7820594662590b8b68670f734a2274ae476e3aeac7e030c4ef10411a80da3523383e87a6757e87597caee90 DIST php-7.1.20.tar.xz 12227052 BLAKE2B c9872ffd1f8eb1a51a24d669965b0b908c3d233ad3eac86284e1edf7c6fa5e8099d5706bd1dd740cea039aeac2f66e60f96ccd15f1956eefe5635142b75857f1 SHA512 1f84ba63df45b0d32d704b74217b509807976e88ea953a330c06372491d6ca6e41891cf14bd16524b76f4b2f9007f1243845af7e652917de9325c022135ed9cf -DIST php-7.2.8.tar.xz 12153548 BLAKE2B 3ea98862238ae036cde188cf92d6ead5686ecb6b5be41ab828983ff02a278907644e8f76b65025e5050337c28c3c81d9d86df9876bd70b82fdc69e89d569e0c6 SHA512 8a52f2401ce46921c5842ca98bb81da1f6287d0ba68825f53d16853f808e702967fa9b4bea81d49a3e91c95c0b9eb218169cd6f32a403f7d120348ba5e009bea -DIST php-7.3.0alpha3.tar.xz 11890052 BLAKE2B 4e069bb3c68e4fd26bac319fe840ad683d42f5a7a3f16b907f1814290be77c018670fd342032b6514f1b76eb924da7a614d79ce9c4708837bdc9cd214d4614fc SHA512 7d867db75ac1d5648c0f52c58a6d955329967f7a9399d5fa7b403868ba1a3d72cebe1c4e97ccd79baefae61a6fb1ff2363a6894bd712e81074c7e743e9bc2f1e +DIST php-7.2.9.tar.xz 12126780 BLAKE2B 0c509e281190e07199b189d220884b75fe6a81c64c7fdf271208b1d7f209c641defbd14aaa4e33b5a286bae8d9b40a72473e903b4349a36eca44499bf49757fd SHA512 b898e78fcb4aeeb441395dcabe2e7686425487e32dffbf0e99393aedb917da87a744b23f0be557c45e447433c8058df6e53c34869fc2dcf874cc1af97ff8331f +DIST php-7.3.0beta2.tar.xz 11902672 BLAKE2B a7400b149b99ca70b6b18d7651726445d6c4aae0a03ed8b8bd8c55ef75de592cc61f4aa26dd9e3e0c2629e130bde600fcefc064560a8cf5aa3d3f817408f78d9 SHA512 adfa1d4a38fd4080a37e643c67f6cce0b71538e08ce0be3c124bda5d2b681355cbd040b6fc44f357b1c3a5a8542621f8b983c33ac7cfc262ad93d07c1ab4db98 diff --git a/dev-lang/php/php-5.6.36.ebuild b/dev-lang/php/php-5.6.36.ebuild index fe5b563b7ea5..4721afbce53e 100644 --- a/dev-lang/php/php-5.6.36.ebuild +++ b/dev-lang/php/php-5.6.36.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit autotools flag-o-matic versionator systemd +inherit autotools flag-o-matic eapi7-ver systemd DESCRIPTION="The PHP language runtime engine" HOMEPAGE="https://secure.php.net/" @@ -17,7 +17,7 @@ LICENSE="PHP-3.01 gd? ( gd ) unicode? ( BSD-2 LGPL-2.1 )" -SLOT="$(get_version_component_range 1-2)" +SLOT="$(ver_cut 1-2)" KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" # We can build the following SAPIs in the given order @@ -174,7 +174,7 @@ REQUIRED_USE=" sharedmem? ( !threads ) " -PHP_MV="$(get_major_version)" +PHP_MV="$(ver_cut 1)" php_install_ini() { local phpsapi="${1}" diff --git a/dev-lang/php/php-5.6.37.ebuild b/dev-lang/php/php-5.6.37.ebuild index deec25b7c9a3..56adfd728558 100644 --- a/dev-lang/php/php-5.6.37.ebuild +++ b/dev-lang/php/php-5.6.37.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit autotools flag-o-matic versionator systemd +inherit autotools flag-o-matic eapi7-ver systemd DESCRIPTION="The PHP language runtime engine" HOMEPAGE="https://secure.php.net/" @@ -17,7 +17,7 @@ LICENSE="PHP-3.01 gd? ( gd ) unicode? ( BSD-2 LGPL-2.1 )" -SLOT="$(get_version_component_range 1-2)" +SLOT="$(ver_cut 1-2)" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" # We can build the following SAPIs in the given order @@ -174,7 +174,7 @@ REQUIRED_USE=" sharedmem? ( !threads ) " -PHP_MV="$(get_major_version)" +PHP_MV="$(ver_cut 1)" php_install_ini() { local phpsapi="${1}" diff --git a/dev-lang/php/php-7.0.29.ebuild b/dev-lang/php/php-7.0.29.ebuild index 08da09b6482b..94a37d5d0025 100644 --- a/dev-lang/php/php-7.0.29.ebuild +++ b/dev-lang/php/php-7.0.29.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit flag-o-matic versionator systemd +inherit flag-o-matic eapi7-ver systemd DESCRIPTION="The PHP language runtime engine" HOMEPAGE="https://secure.php.net/" @@ -17,7 +17,7 @@ LICENSE="PHP-3.01 gd? ( gd ) unicode? ( BSD-2 LGPL-2.1 )" -SLOT="$(get_version_component_range 1-2)" +SLOT="$(ver_cut 1-2)" KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" # We can build the following SAPIs in the given order @@ -171,7 +171,7 @@ PATCHES=( "${FILESDIR}/php-freetype-2.9.1.patch" ) -PHP_MV="$(get_major_version)" +PHP_MV="$(ver_cut 1)" php_install_ini() { local phpsapi="${1}" diff --git a/dev-lang/php/php-7.0.30.ebuild b/dev-lang/php/php-7.0.30.ebuild index 08da09b6482b..94a37d5d0025 100644 --- a/dev-lang/php/php-7.0.30.ebuild +++ b/dev-lang/php/php-7.0.30.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit flag-o-matic versionator systemd +inherit flag-o-matic eapi7-ver systemd DESCRIPTION="The PHP language runtime engine" HOMEPAGE="https://secure.php.net/" @@ -17,7 +17,7 @@ LICENSE="PHP-3.01 gd? ( gd ) unicode? ( BSD-2 LGPL-2.1 )" -SLOT="$(get_version_component_range 1-2)" +SLOT="$(ver_cut 1-2)" KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" # We can build the following SAPIs in the given order @@ -171,7 +171,7 @@ PATCHES=( "${FILESDIR}/php-freetype-2.9.1.patch" ) -PHP_MV="$(get_major_version)" +PHP_MV="$(ver_cut 1)" php_install_ini() { local phpsapi="${1}" diff --git a/dev-lang/php/php-7.0.31.ebuild b/dev-lang/php/php-7.0.31.ebuild index b88f71d861d2..aeaedb772a11 100644 --- a/dev-lang/php/php-7.0.31.ebuild +++ b/dev-lang/php/php-7.0.31.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit flag-o-matic versionator systemd +inherit flag-o-matic eapi7-ver systemd DESCRIPTION="The PHP language runtime engine" HOMEPAGE="https://secure.php.net/" @@ -17,7 +17,7 @@ LICENSE="PHP-3.01 gd? ( gd ) unicode? ( BSD-2 LGPL-2.1 )" -SLOT="$(get_version_component_range 1-2)" +SLOT="$(ver_cut 1-2)" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" # We can build the following SAPIs in the given order @@ -171,7 +171,7 @@ PATCHES=( "${FILESDIR}/php-freetype-2.9.1.patch" ) -PHP_MV="$(get_major_version)" +PHP_MV="$(ver_cut 1)" php_install_ini() { local phpsapi="${1}" diff --git a/dev-lang/php/php-7.1.16.ebuild b/dev-lang/php/php-7.1.16.ebuild index da637b55abbd..4acba555659f 100644 --- a/dev-lang/php/php-7.1.16.ebuild +++ b/dev-lang/php/php-7.1.16.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit flag-o-matic versionator systemd +inherit flag-o-matic eapi7-ver systemd DESCRIPTION="The PHP language runtime engine" HOMEPAGE="https://secure.php.net/" @@ -17,7 +17,7 @@ LICENSE="PHP-3.01 gd? ( gd ) unicode? ( BSD-2 LGPL-2.1 )" -SLOT="$(get_version_component_range 1-2)" +SLOT="$(ver_cut 1-2)" KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" # We can build the following SAPIs in the given order @@ -153,7 +153,7 @@ PATCHES=( "${FILESDIR}/php-freetype-2.9.1.patch" ) -PHP_MV="$(get_major_version)" +PHP_MV="$(ver_cut 1)" php_install_ini() { local phpsapi="${1}" diff --git a/dev-lang/php/php-7.1.18.ebuild b/dev-lang/php/php-7.1.18.ebuild index 9a6345b2fbb4..a9061a4a930f 100644 --- a/dev-lang/php/php-7.1.18.ebuild +++ b/dev-lang/php/php-7.1.18.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit flag-o-matic versionator systemd +inherit flag-o-matic eapi7-ver systemd DESCRIPTION="The PHP language runtime engine" HOMEPAGE="https://secure.php.net/" @@ -17,7 +17,7 @@ LICENSE="PHP-3.01 gd? ( gd ) unicode? ( BSD-2 LGPL-2.1 )" -SLOT="$(get_version_component_range 1-2)" +SLOT="$(ver_cut 1-2)" KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" # We can build the following SAPIs in the given order @@ -151,7 +151,7 @@ PATCHES=( "${FILESDIR}/php-freetype-2.9.1.patch" ) -PHP_MV="$(get_major_version)" +PHP_MV="$(ver_cut 1)" php_install_ini() { local phpsapi="${1}" diff --git a/dev-lang/php/php-7.1.20.ebuild b/dev-lang/php/php-7.1.20.ebuild index d649e1715b3a..46badcaed5fe 100644 --- a/dev-lang/php/php-7.1.20.ebuild +++ b/dev-lang/php/php-7.1.20.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit flag-o-matic versionator systemd +inherit flag-o-matic eapi7-ver systemd DESCRIPTION="The PHP language runtime engine" HOMEPAGE="https://secure.php.net/" @@ -17,7 +17,7 @@ LICENSE="PHP-3.01 gd? ( gd ) unicode? ( BSD-2 LGPL-2.1 )" -SLOT="$(get_version_component_range 1-2)" +SLOT="$(ver_cut 1-2)" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" # We can build the following SAPIs in the given order @@ -148,7 +148,7 @@ PATCHES=( "${FILESDIR}/php-freetype-2.9.1.patch" ) -PHP_MV="$(get_major_version)" +PHP_MV="$(ver_cut 1)" php_install_ini() { local phpsapi="${1}" diff --git a/dev-lang/php/php-7.2.8.ebuild b/dev-lang/php/php-7.2.9.ebuild similarity index 99% rename from dev-lang/php/php-7.2.8.ebuild rename to dev-lang/php/php-7.2.9.ebuild index 4bc61dfc550f..fb1c7c8293cd 100644 --- a/dev-lang/php/php-7.2.8.ebuild +++ b/dev-lang/php/php-7.2.9.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit flag-o-matic versionator systemd +inherit flag-o-matic eapi7-ver systemd DESCRIPTION="The PHP language runtime engine" HOMEPAGE="https://secure.php.net/" @@ -17,7 +17,7 @@ LICENSE="PHP-3.01 gd? ( gd ) unicode? ( BSD-2 LGPL-2.1 )" -SLOT="$(get_version_component_range 1-2)" +SLOT="$(ver_cut 1-2)" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" # We can build the following SAPIs in the given order @@ -153,7 +153,7 @@ PATCHES=( "${FILESDIR}/php-freetype-2.9.1.patch" ) -PHP_MV="$(get_major_version)" +PHP_MV="$(ver_cut 1)" php_install_ini() { local phpsapi="${1}" diff --git a/dev-lang/php/php-7.3.0_alpha3.ebuild b/dev-lang/php/php-7.3.0_beta2.ebuild similarity index 99% rename from dev-lang/php/php-7.3.0_alpha3.ebuild rename to dev-lang/php/php-7.3.0_beta2.ebuild index ecc2efff30e7..4b015508db90 100644 --- a/dev-lang/php/php-7.3.0_alpha3.ebuild +++ b/dev-lang/php/php-7.3.0_beta2.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit flag-o-matic versionator systemd +inherit flag-o-matic eapi7-ver systemd MY_PV=${PV/_/} DESCRIPTION="The PHP language runtime engine" @@ -18,7 +18,7 @@ LICENSE="PHP-3.01 gd? ( gd ) unicode? ( BSD-2 LGPL-2.1 )" -SLOT="$(get_version_component_range 1-2)" +SLOT="$(ver_cut 1-2)" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" S="${WORKDIR}/${PN}-${MY_PV}" @@ -156,7 +156,7 @@ PATCHES=( "${FILESDIR}/php-freetype-2.9.1.patch" ) -PHP_MV="$(get_major_version)" +PHP_MV="$(ver_cut 1)" php_install_ini() { local phpsapi="${1}" diff --git a/dev-libs/Manifest.gz b/dev-libs/Manifest.gz index 3f369cf9936c..a6ebbd8ba6d6 100644 Binary files a/dev-libs/Manifest.gz and b/dev-libs/Manifest.gz differ diff --git a/dev-libs/apr-util/apr-util-1.5.4.ebuild b/dev-libs/apr-util/apr-util-1.5.4.ebuild index 4cfbc7403195..87915cb78e0e 100644 --- a/dev-libs/apr-util/apr-util-1.5.4.ebuild +++ b/dev-libs/apr-util/apr-util-1.5.4.ebuild @@ -15,7 +15,7 @@ SRC_URI="mirror://apache/apr/${P}.tar.bz2" LICENSE="Apache-2.0" SLOT="1" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="berkdb doc freetds gdbm ldap mysql nss odbc openssl postgres sqlite static-libs" #RESTRICT="test" diff --git a/dev-libs/botan/botan-2.7.0.ebuild b/dev-libs/botan/botan-2.7.0.ebuild index f9263b903f1c..6c7f96f10875 100644 --- a/dev-libs/botan/botan-2.7.0.ebuild +++ b/dev-libs/botan/botan-2.7.0.ebuild @@ -12,7 +12,7 @@ DESCRIPTION="A C++ crypto library" HOMEPAGE="https://botan.randombit.net/" SRC_URI="https://botan.randombit.net/releases/${MY_P}.tgz" -KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~ppc-macos" +KEYWORDS="amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~ppc-macos" SLOT="2/$(get_version_component_range 2)" # soname version LICENSE="BSD" IUSE="bindist doc boost python bzip2 libressl lzma sqlite ssl static-libs zlib" diff --git a/dev-libs/fribidi/fribidi-0.19.7.ebuild b/dev-libs/fribidi/fribidi-0.19.7.ebuild index ff457b67bf78..b6a42a4fab1a 100644 --- a/dev-libs/fribidi/fribidi-0.19.7.ebuild +++ b/dev-libs/fribidi/fribidi-0.19.7.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/fribidi/${PN}/releases/download/${PV}/${P}.tar.bz2" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="static-libs" RDEPEND=">=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]" diff --git a/dev-libs/fribidi/fribidi-1.0.5.ebuild b/dev-libs/fribidi/fribidi-1.0.5.ebuild index 415d53968ef9..0a73b1eb314e 100644 --- a/dev-libs/fribidi/fribidi-1.0.5.ebuild +++ b/dev-libs/fribidi/fribidi-1.0.5.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/fribidi/fribidi/releases/download/v${PV}/${P}.tar.bz LICENSE="LGPL-2.1+" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="static-libs" RDEPEND="" diff --git a/dev-libs/hashit/Manifest b/dev-libs/hashit/Manifest index 362dc8de4ecf..f1b54bb6db39 100644 --- a/dev-libs/hashit/Manifest +++ b/dev-libs/hashit/Manifest @@ -1,2 +1 @@ -DIST hashit-0.9.7.tar.bz2 16368 BLAKE2B 99db8e0c83c63835d5265ef0d4bf39223214210a1762a869f1bccf08ce345a42f5bd0d4ec2dec7824e05c081e18f0b24c84254f4d3527fb67926ddbd8c1dbe21 SHA512 ce692cc1dfec12f2173f39c32f24ab96223feae6fca5c5ea1bc9dc815be4113936741c620e08cba35feeea26288503d1a42e6a4fe14cf2f854915e5bebcf4eff DIST hashit-0.9.8.tar.bz2 18127 BLAKE2B 63a36e644dced8dfbf0bb049adc811ac526c519c4fe85f47ae631eba8d989b06325199fafa43abd0e98d014c7adc90c97bde75fbaacd5a215384a9e6e2f6b505 SHA512 b6a85cb8a7c97d2214fe91409006973de1b452dc7f5b412ad870a5a8d2b937957947ca47c314fd4d05b2683b20a9b8eb4241e0cbbc57e3b68b5cdfa024b80dce diff --git a/dev-libs/hashit/files/hashit-0.9.7-pkgconfig.patch b/dev-libs/hashit/files/hashit-0.9.7-pkgconfig.patch deleted file mode 100644 index e88a28dba5d3..000000000000 --- a/dev-libs/hashit/files/hashit-0.9.7-pkgconfig.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- a/hashit-0.9.7/CMakeLists.txt 2010-03-12 08:35:03.000000000 -0500 -+++ b/hashit-0.9.7/CMakeLists.txt 2010-05-28 19:24:52.000000000 -0400 -@@ -9,7 +9,7 @@ - INCLUDE (FindPkgConfig) - - IF (NOT PKG_CONFIG_FOUND) -- MESSAGE (FATAL_ERROR "pkg-config not found...") -+ MESSAGE (FATAL_ERROR "pkgconfig not found...") - ENDIF (NOT PKG_CONFIG_FOUND) - - ADD_DEFINITIONS (-DDATADIR=\\\"${CMAKE_INSTALL_PREFIX}/share\\\") -@@ -28,7 +28,7 @@ - - INSTALL (TARGETS hashit LIBRARY DESTINATION lib${LIB_SUFFIX}) - INSTALL (FILES src/hashit.h DESTINATION include) --INSTALL (FILES libhashit.pc DESTINATION lib${LIB_SUFFIX}/pkg-config) -+INSTALL (FILES libhashit.pc DESTINATION lib${LIB_SUFFIX}/pkgconfig) - - SET_TARGET_PROPERTIES (hashit PROPERTIES VERSION 1.0 SOVERSION 1) - SET (LIBRARY_OUTPUT_PATH src) diff --git a/dev-libs/hashit/hashit-0.9.7-r1.ebuild b/dev-libs/hashit/hashit-0.9.7-r1.ebuild deleted file mode 100644 index 74e133ba4f8f..000000000000 --- a/dev-libs/hashit/hashit-0.9.7-r1.ebuild +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit cmake-utils - -DESCRIPTION="Generic C hash library which supports multiple collision handling methods" -HOMEPAGE="http://www.pleyades.net/david/projects/hashit" -SRC_URI="http://www.pleyades.net/david/projects/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" -IUSE="debug" - -PATCHES=( "${FILESDIR}/${P}-pkgconfig.patch" ) diff --git a/dev-libs/hashit/hashit-0.9.8.ebuild b/dev-libs/hashit/hashit-0.9.8.ebuild index b5c0eb16f915..f6272eea360f 100644 --- a/dev-libs/hashit/hashit-0.9.8.ebuild +++ b/dev-libs/hashit/hashit-0.9.8.ebuild @@ -11,5 +11,5 @@ SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc x86" +KEYWORDS="amd64 ~ppc x86" IUSE="debug" diff --git a/dev-libs/libinput/Manifest b/dev-libs/libinput/Manifest index 335ad40fb1f2..589a9d6f03dc 100644 --- a/dev-libs/libinput/Manifest +++ b/dev-libs/libinput/Manifest @@ -1,4 +1,2 @@ -DIST libinput-1.10.6.tar.xz 495536 BLAKE2B 3f23808635406eeb66cd6b4ce2a2dbaed69ee0917045f75ad262a59702d72923493b6faa7951ea3f7cc2591d4c9e1fc49cffc53b6dfbcb2aadc7b9f40c20517b SHA512 b76963c3429c5590ee04f1da94d08775c8bb8584830e678804fb1d4cf0e2af84826782eae71fdd57492461f85df87ac2fc940c280b0672c75cd81d5f34702fe4 DIST libinput-1.10.7.tar.xz 494648 BLAKE2B ddcbe5f54b90f8291c16e5912fa3d673fb2c66f0247c9d771f7c2dfeeef9b51404f31d7ac99cfd20b37e1d01d6b2b3bc95155ab6581c6a94e922e153d9098892 SHA512 b102b8065ceed7511ad26efba34d5d9b0c13f0f7aaa882bb21501f7a5166f4cbe140fcbb488e90e6880bd47bb2b27667a4d6aa79b8726269fa1337897034a684 -DIST libinput-1.11.2.tar.xz 485600 BLAKE2B 97b07493693e24be1bde3e7792c83c33b9ed4d64afbbecc1a5b77b4470fe9ff03cfbb2b4dc36f6cc5a9d58003410797979d7fbbb539d921bb9cddb5f8fb1cf0e SHA512 cb6ada877fc3c09f634f3db39d5507e66d4b86c3d632bb8f7498c7b01fdf8372b2053a79b641293900b7fcc0aa4e920f7c830d9c7b2d9ff3cd61c58eb7c20b65 DIST libinput-1.11.3.tar.xz 487408 BLAKE2B 38dc14cf018ca59279e8b6e85fd91f4b29545b4a55ab968cb11d9a8afc8d80c311efc6e57339b9baa9fb270f52cfb0758ff8ea313991867c35f3da47910977ac SHA512 5e18daab6202bcbfddeebc35dac4cabb5f726b5b73f5fc87975b58f3019a54a4b1f506a3200e920638ddddfb978a0b96c23c2e90b081942f86d33c16d4836949 diff --git a/dev-libs/libinput/libinput-1.10.6.ebuild b/dev-libs/libinput/libinput-1.10.6.ebuild deleted file mode 100644 index 9e10a1005467..000000000000 --- a/dev-libs/libinput/libinput-1.10.6.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit meson udev - -DESCRIPTION="Library to handle input devices in Wayland" -HOMEPAGE="https://www.freedesktop.org/wiki/Software/libinput/" -SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz" - -LICENSE="MIT" -SLOT="0/10" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86" -IUSE="doc input_devices_wacom test" -# Tests require write access to udev rules directory which is a no-no for live system. -# Other tests are just about logs, exported symbols and autotest of the test library. -RESTRICT="test" - -RDEPEND=" - input_devices_wacom? ( >=dev-libs/libwacom-0.20 ) - >=dev-libs/libevdev-1.3 - >=sys-libs/mtdev-1.1 - virtual/libudev -" -DEPEND="${RDEPEND} - virtual/pkgconfig - doc? ( - >=app-doc/doxygen-1.8.3 - >=media-gfx/graphviz-2.38.0 - ) -" -# test? ( -# >=dev-libs/check-0.9.10 -# dev-util/valgrind -# sys-libs/libunwind ) - -src_configure() { - # gui can be built but will not be installed - local emesonargs=( - -Ddebug-gui=false - -Ddocumentation="$(usex doc true false)" - -Dlibwacom="$(usex input_devices_wacom true false)" - -Dtests="$(usex test true false)" - -Dudev-dir="$(get_udevdir)" - ) - meson_src_configure -} - -src_install() { - meson_src_install - if use doc ; then - docinto html - dodoc -r "${BUILD_DIR}"/html/. - fi - find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die -} diff --git a/dev-libs/libinput/libinput-1.11.2.ebuild b/dev-libs/libinput/libinput-1.11.2.ebuild deleted file mode 100644 index 0635ed1b8faf..000000000000 --- a/dev-libs/libinput/libinput-1.11.2.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit meson udev - -DESCRIPTION="Library to handle input devices in Wayland" -HOMEPAGE="https://www.freedesktop.org/wiki/Software/libinput/" -SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz" - -LICENSE="MIT" -SLOT="0/10" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="doc input_devices_wacom test" -# Tests require write access to udev rules directory which is a no-no for live system. -# Other tests are just about logs, exported symbols and autotest of the test library. -RESTRICT="test" - -RDEPEND=" - input_devices_wacom? ( >=dev-libs/libwacom-0.20 ) - >=dev-libs/libevdev-1.3 - >=sys-libs/mtdev-1.1 - virtual/libudev:= - virtual/udev -" -DEPEND="${RDEPEND} - virtual/pkgconfig - doc? ( - >=app-doc/doxygen-1.8.3 - >=media-gfx/graphviz-2.38.0 - ) -" -# test? ( -# >=dev-libs/check-0.9.10 -# dev-util/valgrind -# sys-libs/libunwind ) - -src_configure() { - # gui can be built but will not be installed - local emesonargs=( - -Ddebug-gui=false - -Ddocumentation="$(usex doc true false)" - -Dlibwacom="$(usex input_devices_wacom true false)" - -Dtests="$(usex test true false)" - -Dudev-dir="$(get_udevdir)" - ) - meson_src_configure -} - -src_install() { - meson_src_install - if use doc ; then - docinto html - dodoc -r "${BUILD_DIR}"/html/. - fi - find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die -} - -pkg_postinst() { - udevadm hwdb --update --root="${ROOT%/}" -} diff --git a/dev-libs/libinput/libinput-1.11.3.ebuild b/dev-libs/libinput/libinput-1.11.3.ebuild index 0635ed1b8faf..e26ac3c3c0ff 100644 --- a/dev-libs/libinput/libinput-1.11.3.ebuild +++ b/dev-libs/libinput/libinput-1.11.3.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz" LICENSE="MIT" SLOT="0/10" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="doc input_devices_wacom test" +IUSE="doc input_devices_wacom" # Tests require write access to udev rules directory which is a no-no for live system. # Other tests are just about logs, exported symbols and autotest of the test library. RESTRICT="test" @@ -39,9 +39,9 @@ src_configure() { # gui can be built but will not be installed local emesonargs=( -Ddebug-gui=false - -Ddocumentation="$(usex doc true false)" - -Dlibwacom="$(usex input_devices_wacom true false)" - -Dtests="$(usex test true false)" + $(meson_use doc documentation) + $(meson_use input_devices_wacom libwacom) + -Dtests=false # tests are restricted -Dudev-dir="$(get_udevdir)" ) meson_src_configure @@ -53,7 +53,6 @@ src_install() { docinto html dodoc -r "${BUILD_DIR}"/html/. fi - find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die } pkg_postinst() { diff --git a/dev-libs/libxml2/libxml2-2.9.8.ebuild b/dev-libs/libxml2/libxml2-2.9.8.ebuild index 2bfe2d2c50d8..9f5dc9055c6c 100644 --- a/dev-libs/libxml2/libxml2-2.9.8.ebuild +++ b/dev-libs/libxml2/libxml2-2.9.8.ebuild @@ -12,7 +12,7 @@ HOMEPAGE="http://www.xmlsoft.org/" LICENSE="MIT" SLOT="2" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="debug examples icu ipv6 lzma python readline static-libs test" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" diff --git a/dev-libs/openobex/openobex-1.7.2.ebuild b/dev-libs/openobex/openobex-1.7.2.ebuild index 297699d1e513..414c41347663 100644 --- a/dev-libs/openobex/openobex-1.7.2.ebuild +++ b/dev-libs/openobex/openobex-1.7.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}-Source.tar.gz" LICENSE="GPL-2 LGPL-2.1" SLOT="0/2" -KEYWORDS="~amd64 ~arm ~hppa ppc ~ppc64 ~sparc x86" +KEYWORDS="amd64 ~arm ~hppa ppc ~ppc64 ~sparc x86" IUSE="bluetooth irda usb" RDEPEND=" diff --git a/dev-libs/opensc/opensc-0.18.0.ebuild b/dev-libs/opensc/opensc-0.18.0.ebuild index 1a54442c1353..5231898d52a4 100644 --- a/dev-libs/opensc/opensc-0.18.0.ebuild +++ b/dev-libs/opensc/opensc-0.18.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/OpenSC/OpenSC/releases/download/${PV}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc x86" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc x86" IUSE="doc +pcsc-lite secure-messaging openct ctapi readline libressl ssl zlib" RDEPEND="zlib? ( sys-libs/zlib ) diff --git a/dev-libs/pkcs11-helper/pkcs11-helper-1.25.1.ebuild b/dev-libs/pkcs11-helper/pkcs11-helper-1.25.1.ebuild index edf00dbc2add..5dbf1d71d840 100644 --- a/dev-libs/pkcs11-helper/pkcs11-helper-1.25.1.ebuild +++ b/dev-libs/pkcs11-helper/pkcs11-helper-1.25.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/OpenSC/${PN}/releases/download/${P}/${P}.tar.bz2" LICENSE="|| ( BSD GPL-2 )" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd" IUSE="doc gnutls libressl nss static-libs" RDEPEND=" diff --git a/dev-libs/tinyxml2/tinyxml2-6.2.0.ebuild b/dev-libs/tinyxml2/tinyxml2-6.2.0.ebuild index 3b29824f109b..0f71934b8fca 100644 --- a/dev-libs/tinyxml2/tinyxml2-6.2.0.ebuild +++ b/dev-libs/tinyxml2/tinyxml2-6.2.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/leethomason/${PN}/archive/${PV}.tar.gz -> ${P}.tar.g LICENSE="ZLIB" SLOT="0/6" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa sparc x86" +KEYWORDS="amd64 ~arm ~arm64 ~hppa sparc x86" IUSE="static-libs test" multilib_src_configure() { diff --git a/dev-perl/DateTime-Format-Mail/DateTime-Format-Mail-0.402.0.ebuild b/dev-perl/DateTime-Format-Mail/DateTime-Format-Mail-0.402.0.ebuild deleted file mode 100644 index ab32a1a852bb..000000000000 --- a/dev-perl/DateTime-Format-Mail/DateTime-Format-Mail-0.402.0.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=BOOK -MODULE_VERSION=0.402 -inherit perl-module - -DESCRIPTION="Convert between DateTime and RFC2822/822 formats" - -SLOT="0" -KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-solaris" -IUSE="test" - -RDEPEND=" - virtual/perl-Carp - >=dev-perl/DateTime-0.180.0 - dev-perl/Params-Validate - dev-perl/Dist-CheckConflicts -" -DEPEND="${RDEPEND} - virtual/perl-File-Spec - >=virtual/perl-ExtUtils-MakeMaker-6.300.0 - test? ( >=virtual/perl-Test-Simple-0.880.0 - virtual/perl-File-Spec - virtual/perl-Storable )" - -SRC_TEST=do diff --git a/dev-perl/DateTime-Format-Mail/Manifest b/dev-perl/DateTime-Format-Mail/Manifest index d2e0bdc78309..5d5e6c83cd4e 100644 --- a/dev-perl/DateTime-Format-Mail/Manifest +++ b/dev-perl/DateTime-Format-Mail/Manifest @@ -1,2 +1 @@ -DIST DateTime-Format-Mail-0.402.tar.gz 178213 BLAKE2B 16ec4de015b19c30cf2ac75ca09ad91081d5842376f30398da7b66a96068acf6c827a9b488ffb1d1fff275d7cf163f8ced0487a70d5fd6cda049bcafed390bb5 SHA512 079a4a4e3dbd8b585726b03809e42436d48a71c94f4a94a662e7955278374ff564ee0fae4a4999f84f2f35d78b0d695b917a737e262a7499940272abd66ac5c6 DIST DateTime-Format-Mail-0.403.tar.gz 178292 BLAKE2B 931547f40cab8d135167260783c5622a748f90c4d0b3b002496ec2ca26390adc30b5e8fe1b95a9fdd81fcc65a9fa1166413e2a79d390a652b1f74b4447329b2a SHA512 b5e6f0ffdda3c52aa64b65414f399dcc06f72004c5421f8f0dbf1f9d4cda6e0deb1c3873df62531dc265a44ac66fd110dfc1d4273c97a48b0c472a67b03fd56f diff --git a/dev-perl/Encode-Detect/Encode-Detect-1.10.0-r1.ebuild b/dev-perl/Encode-Detect/Encode-Detect-1.10.0-r1.ebuild index b487ca6cb236..2aa17d0d2727 100644 --- a/dev-perl/Encode-Detect/Encode-Detect-1.10.0-r1.ebuild +++ b/dev-perl/Encode-Detect/Encode-Detect-1.10.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -11,7 +11,7 @@ DESCRIPTION="Encode::Detect - An Encode::Encoding subclass that detects the enco LICENSE="MPL-1.1" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" IUSE="" RDEPEND="" diff --git a/dev-perl/FCGI-ProcManager/FCGI-ProcManager-0.250.0.ebuild b/dev-perl/FCGI-ProcManager/FCGI-ProcManager-0.250.0.ebuild deleted file mode 100644 index 58a91d10778e..000000000000 --- a/dev-perl/FCGI-ProcManager/FCGI-ProcManager-0.250.0.ebuild +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=ARODLAND -MODULE_VERSION=0.25 -inherit perl-module - -DESCRIPTION="A FastCGI process manager" - -SLOT="0" -LICENSE="LGPL-2.1" -KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="" - -DEPEND="virtual/perl-ExtUtils-MakeMaker" diff --git a/dev-perl/FCGI-ProcManager/Manifest b/dev-perl/FCGI-ProcManager/Manifest index 94c02f1d5720..906a7aab162e 100644 --- a/dev-perl/FCGI-ProcManager/Manifest +++ b/dev-perl/FCGI-ProcManager/Manifest @@ -1,2 +1 @@ -DIST FCGI-ProcManager-0.25.tar.gz 28663 BLAKE2B d0d840cc47ad9818a5330274d033022bd6edf508bb4294bb786212f27a4569492b5f60ea1155b0aa7fb9fc77d33f628fad814d8cab7a13477f702c40500612ec SHA512 432b1814bc3319c2b5c25d2768dd2ea9e5329306ca4315caf2c4e407620f37089ff38fc59ec4c2ba505e1ac0716f1f8de6803a8fea560182383e78cc2192eb73 DIST FCGI-ProcManager-0.28.tar.gz 28791 BLAKE2B 337a1901c82fd36770f447d5f4f9b55e887cbd6e05b25b76a2bc1230a85d23779541b7140ef53b90e5885c2d0a40bd615b181d59755935bf8a384abe11e02fe1 SHA512 dacf7a18b7c7d402769bdbfbe136e1c11fb9c7565d29e1d1892a055136052117ad85b4ec2b93dd34ee5f2a907fde6919089b86ad40c5d602011f8f6e58b9169e diff --git a/dev-perl/Feed-Find/Feed-Find-0.70.0-r1.ebuild b/dev-perl/Feed-Find/Feed-Find-0.70.0-r1.ebuild deleted file mode 100644 index d2a6ad7b99a7..000000000000 --- a/dev-perl/Feed-Find/Feed-Find-0.70.0-r1.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DIST_AUTHOR=BTROTT -DIST_VERSION=0.07 -inherit perl-module - -DESCRIPTION="Syndication feed auto-discovery" - -SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="" - -RDEPEND=" - dev-perl/Class-ErrorHandler - dev-perl/HTML-Parser - dev-perl/libwww-perl - dev-perl/URI -" -DEPEND="${RDEPEND}" - -DIST_TEST=online - -src_prepare() { - sed -i -e 's/use inc::Module::Install;/use lib q[.]; use inc::Module::Install;/' Makefile.PL || - die "Can't patch Makefile.PL for 5.26 dot-in-inc" - perl-module_src_prepare -} diff --git a/dev-perl/File-chdir/File-chdir-0.101.0.ebuild b/dev-perl/File-chdir/File-chdir-0.101.0.ebuild deleted file mode 100644 index 72924353a462..000000000000 --- a/dev-perl/File-chdir/File-chdir-0.101.0.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=DAGOLDEN -MODULE_VERSION=0.1010 -inherit perl-module - -DESCRIPTION="An alternative to File::Spec and CWD" - -SLOT="0" -KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris" -IUSE="test" - -RDEPEND=" - virtual/perl-Carp - virtual/perl-Exporter - >=virtual/perl-File-Spec-3.27 -" -DEPEND="${RDEPEND} - >=virtual/perl-ExtUtils-MakeMaker-6.170.0 - test? ( virtual/perl-Test-Simple ) -" - -SRC_TEST="do parallel" diff --git a/dev-perl/File-chdir/Manifest b/dev-perl/File-chdir/Manifest index 83d872ea1bed..411f61065c9e 100644 --- a/dev-perl/File-chdir/Manifest +++ b/dev-perl/File-chdir/Manifest @@ -1,2 +1 @@ -DIST File-chdir-0.1010.tar.gz 24761 BLAKE2B e8b506088a0714c2277f8c9f7caf1056419d06bfd4386e792a80d8dcd6a00b2e7df2da52d7e319ab9ad79aadd34a796ae2d36344c1921021b1b0d45306f86358 SHA512 0a9390b48d49c2ac0e2f8b409396a6a2ea3518823d1b6d8c23bbf19a438b92d1e784dcf3bc7c0d43b0365b0620557aea1f8d9ef224b68ca9c472fefa8fe1adab DIST File-chdir-0.1011.tar.gz 25127 BLAKE2B 19c07b54bb55bb3ed7f870cb1bfb558f7b8cb9a34295f3e885d1fc6a56e8ba9232480224bed0c32f99fa4efe27f2b72808ecd8e7ff0c4853625024e9727392a2 SHA512 249181e43faec925406b1fc86fc256afb27c588a4325122defd955f0f5c15c9d484f515841e6ebb3a643ce5e2a188338c88eee0df76a458aea4216c26bb7d6b7 diff --git a/dev-perl/Filesys-Df/Filesys-Df-0.920.0-r1.ebuild b/dev-perl/Filesys-Df/Filesys-Df-0.920.0-r1.ebuild deleted file mode 100644 index 2f572bbfc29f..000000000000 --- a/dev-perl/Filesys-Df/Filesys-Df-0.920.0-r1.ebuild +++ /dev/null @@ -1,14 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=IGUTHRIE -MODULE_VERSION=0.92 -inherit perl-module - -DESCRIPTION="Disk free based on Filesys::Statvfs" - -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" diff --git a/dev-perl/Filesys-DiskSpace/Filesys-DiskSpace-0.50.0-r1.ebuild b/dev-perl/Filesys-DiskSpace/Filesys-DiskSpace-0.50.0-r1.ebuild deleted file mode 100644 index de7c644ace4e..000000000000 --- a/dev-perl/Filesys-DiskSpace/Filesys-DiskSpace-0.50.0-r1.ebuild +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=FTASSIN -MODULE_VERSION=0.05 -inherit perl-module - -DESCRIPTION="Perl df" - -SLOT="0" -KEYWORDS="amd64 ~ppc sparc x86" -IUSE="" - -#Disabled - assumes you have ext2 mounts actively mounted!?! -#SRC_TEST="do" diff --git a/dev-perl/Finance-Quote/Finance-Quote-1.370.0.ebuild b/dev-perl/Finance-Quote/Finance-Quote-1.370.0.ebuild deleted file mode 100644 index 68b57c002e74..000000000000 --- a/dev-perl/Finance-Quote/Finance-Quote-1.370.0.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=ECOCODE -MODULE_VERSION=1.37 -inherit perl-module - -DESCRIPTION="Get stock and mutual fund quotes from various exchanges" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 ppc ~ppc64 x86" -IUSE="test" - -# virtual/perl-Data-Dumper currently commented out in the code - -RDEPEND=" - dev-perl/CGI - virtual/perl-Carp - dev-perl/DateTime - virtual/perl-Encode - virtual/perl-Exporter - dev-perl/HTML-Parser - dev-perl/HTML-TableExtract - dev-perl/HTML-Tree - dev-perl/HTTP-Cookies - dev-perl/HTTP-Message - dev-perl/JSON - dev-perl/LWP-Protocol-https - dev-perl/libwww-perl - dev-perl/Mozilla-CA - virtual/perl-Time-Piece - dev-perl/URI -" -DEPEND="${RDEPEND} - virtual/perl-ExtUtils-MakeMaker - test? ( - virtual/perl-Data-Dumper - virtual/perl-File-Spec - virtual/perl-Test-Simple - ) -" - -SRC_TEST="do parallel" - -src_test() { - perl_rm_files t/01-pod.t t/02-pod-coverage.t t/03-kwalitee.t \ - t/04-critic.t t/release-pod-syntax.t - perl-module_src_test -} diff --git a/dev-perl/Finance-Quote/Finance-Quote-1.380.0.ebuild b/dev-perl/Finance-Quote/Finance-Quote-1.380.0.ebuild deleted file mode 100644 index 34b088fc9a97..000000000000 --- a/dev-perl/Finance-Quote/Finance-Quote-1.380.0.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 - -DIST_AUTHOR=ECOCODE -DIST_VERSION=1.38 -inherit perl-module - -DESCRIPTION="Get stock and mutual fund quotes from various exchanges" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86" -IUSE="test" - -# virtual/perl-Data-Dumper currently commented out in the code - -RDEPEND=" - dev-perl/CGI - virtual/perl-Carp - dev-perl/DateTime - virtual/perl-Encode - virtual/perl-Exporter - dev-perl/HTML-Parser - dev-perl/HTML-TableExtract - dev-perl/HTML-Tree - dev-perl/HTTP-Cookies - dev-perl/HTTP-Message - dev-perl/JSON - dev-perl/LWP-Protocol-https - dev-perl/libwww-perl - dev-perl/Mozilla-CA - virtual/perl-Time-Piece - dev-perl/URI -" -DEPEND="${RDEPEND} - virtual/perl-ExtUtils-MakeMaker - test? ( - virtual/perl-Data-Dumper - virtual/perl-File-Spec - virtual/perl-Test-Simple - ) -" - -src_test() { - perl_rm_files t/01-pod.t t/02-pod-coverage.t t/03-kwalitee.t \ - t/04-critic.t t/release-pod-syntax.t - perl-module_src_test -} diff --git a/dev-perl/Finance-Quote/Manifest b/dev-perl/Finance-Quote/Manifest index b995512e4286..604dc5278c5b 100644 --- a/dev-perl/Finance-Quote/Manifest +++ b/dev-perl/Finance-Quote/Manifest @@ -1,3 +1 @@ -DIST Finance-Quote-1.37.tar.gz 251374 BLAKE2B b961789ee2e628eb1ef4860269a441302bcd732e844262459ef9eadb27cb68f0528a07b074bf911f64dbd8895efa71ddae0c954e052b673783127b74f69237b3 SHA512 ed58d27d1c14f7818871af4906c1b6109b3d353586bc348140120597199ed72d57b8939cebc95fa534e86ad7b9f9bf69bc4315db1d1cc1da5796aa9771697c51 -DIST Finance-Quote-1.38.tar.gz 327822 BLAKE2B b8efe6c11d51d54a70b1830610ec5e0f9a1f18d8f0fc88c1d8bbbdf0f5d66d75d82b5aab1be5df7acaf4a2e93e0af89ac16d6ef4935342fabdc3db3a65c2a727 SHA512 b55382d56ecf89eaf662f49ec6fd803e9e5e0163b63d3020ca3c875d4dff7607f502fa7600997c5db8d62fa671ea82e81597300443fc4b24bb3f94c80bd32439 DIST Finance-Quote-1.47.tar.gz 270335 BLAKE2B 585ab3736b7ea448b083f4dbbed460ac442fb30285041b7b0bf2a52d6b2d533a8d1eb1d9bfa72cc1cd7a3d4664d2cb5104eb539ecd6b1042083548b8ef605333 SHA512 a900ed3e305edb8c713dc4a885b912ad9a9f873cb501d66d393a39aacd8a980af1bd4fb0fdf5bce8e2b2aeec744e811b861a2803a6fb0d5c71ab6b8d1c3a57f7 diff --git a/dev-perl/Finance-YahooQuote/Finance-YahooQuote-0.250.0.ebuild b/dev-perl/Finance-YahooQuote/Finance-YahooQuote-0.250.0.ebuild deleted file mode 100644 index 448a55f8577f..000000000000 --- a/dev-perl/Finance-YahooQuote/Finance-YahooQuote-0.250.0.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=EDD -MODULE_VERSION=0.25 -inherit perl-module - -DESCRIPTION="Get stock quotes from Yahoo! Finance" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="" - -RDEPEND=" - dev-perl/libwww-perl - virtual/perl-MIME-Base64 - >=dev-perl/HTML-Parser-2.200.0 - >=virtual/perl-Text-ParseWords-3.100.0 -" -DEPEND="${RDEPEND} - virtual/perl-ExtUtils-MakeMaker -" - -SRC_TEST=online diff --git a/dev-perl/Glib-Object-Introspection/Glib-Object-Introspection-0.40.0.ebuild b/dev-perl/Glib-Object-Introspection/Glib-Object-Introspection-0.40.0.ebuild deleted file mode 100644 index 2cde1dfc5c9e..000000000000 --- a/dev-perl/Glib-Object-Introspection/Glib-Object-Introspection-0.40.0.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DIST_AUTHOR=XAOC -DIST_VERSION=0.040 -inherit perl-module xdg-utils - -DESCRIPTION="Dynamically create Perl language bindings" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND=" - >=dev-perl/glib-perl-1.320.0 - >=dev-libs/gobject-introspection-1.0 - >=dev-libs/libffi-3.0.0 - >=dev-libs/glib-2.0.0 -" -DEPEND=" - >=dev-perl/ExtUtils-Depends-0.300.0 - >=dev-perl/ExtUtils-PkgConfig-1.0.0 - ${RDEPEND} -" - -pkg_setup() { - xdg_environment_reset # bug #599128 -} diff --git a/dev-perl/Glib-Object-Introspection/Glib-Object-Introspection-0.42.0.ebuild b/dev-perl/Glib-Object-Introspection/Glib-Object-Introspection-0.42.0.ebuild deleted file mode 100644 index c11717d16add..000000000000 --- a/dev-perl/Glib-Object-Introspection/Glib-Object-Introspection-0.42.0.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DIST_AUTHOR=XAOC -DIST_VERSION=0.042 -inherit perl-module xdg-utils - -DESCRIPTION="Dynamically create Perl language bindings" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND=" - >=dev-perl/glib-perl-1.320.0 - >=dev-libs/gobject-introspection-1.0 - >=dev-libs/libffi-3.0.0 - >=dev-libs/glib-2.0.0 -" -DEPEND=" - >=dev-perl/ExtUtils-Depends-0.300.0 - >=dev-perl/ExtUtils-PkgConfig-1.0.0 - ${RDEPEND} -" - -pkg_setup() { - xdg_environment_reset # bug #599128 -} diff --git a/dev-perl/Glib-Object-Introspection/Manifest b/dev-perl/Glib-Object-Introspection/Manifest index 74772dbd2daa..07c7fda318f4 100644 --- a/dev-perl/Glib-Object-Introspection/Manifest +++ b/dev-perl/Glib-Object-Introspection/Manifest @@ -1,3 +1 @@ -DIST Glib-Object-Introspection-0.040.tar.gz 79009 BLAKE2B dddb598823e6a5df9eaca9123226c9272b9540b5abfd1bb3805179acf1ab9410cb8c1c2357772bb413f948040b6e1495958c82c91517fa1ec700491690c7e92b SHA512 bd5e4db8b6e331fb9641e75a50a95fff1a823597a8e4c4e9f99a81e7aa2ee30d93856c56ecfea3785b8719dba6590169bcd006ea06d97170889091e6b9480e9f -DIST Glib-Object-Introspection-0.042.tar.gz 80942 BLAKE2B 2b894686b1e920f2b58df3110d625e63aea30909f5622f14645aababe2f055a9e82f1ec027f0ef1881137ec77a84d9a3c1bfd048a4a357ed4650f44936afd8b0 SHA512 a91ba7d553187ed0eb6b35bd68c70de40c82d5e42422ec0a370fa77268cc5b81be3b9b76947ceaf78541224bd188ab902f12be7a5e0efaf94638fea39ba57ba0 DIST Glib-Object-Introspection-0.043.tar.gz 80985 BLAKE2B 2f921b35167c45bc04e8d3505f85978d485d4f1244001cd2de7d1b1d3370731345757a0745852e0a047583e28d7b9ff0b18470714170c1d09b11b1e72a760c11 SHA512 b812ac4faca2f1df1192f7ac2374f5552811c353a363a33b3e6877c568ef68f0b4e1b8181a4738988017150317eb27e43976989cca802e7ba24d2a3cc2fa537e diff --git a/dev-perl/Goo-Canvas/Goo-Canvas-0.60.0-r1.ebuild b/dev-perl/Goo-Canvas/Goo-Canvas-0.60.0-r1.ebuild deleted file mode 100644 index 9618159222b7..000000000000 --- a/dev-perl/Goo-Canvas/Goo-Canvas-0.60.0-r1.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=YEWENBIN -MODULE_VERSION=0.06 -inherit perl-module - -DESCRIPTION="Perl interface to the GooCanvas" - -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND="x11-libs/goocanvas:0 - dev-perl/Gtk2 - dev-perl/glib-perl - dev-perl/Cairo" -DEPEND="${RDEPEND} - dev-perl/ExtUtils-Depends - dev-perl/ExtUtils-PkgConfig" - -PATCHES=( - # this patch fixes segfaults on amd64 platforms - "${FILESDIR}"/fix_implicit_pointer_declaration.patch -) diff --git a/dev-perl/Gtk2-Ex-PodViewer/Gtk2-Ex-PodViewer-0.180.0-r1.ebuild b/dev-perl/Gtk2-Ex-PodViewer/Gtk2-Ex-PodViewer-0.180.0-r1.ebuild deleted file mode 100644 index 7525f485c8ba..000000000000 --- a/dev-perl/Gtk2-Ex-PodViewer/Gtk2-Ex-PodViewer-0.180.0-r1.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -MODULE_AUTHOR=GBROWN -MODULE_VERSION=0.18 -inherit perl-module - -DESCRIPTION="a Gtk2 widget for displaying Plain old Documentation (POD)" - -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -#SRC_TEST="do" - -RDEPEND="x11-libs/gtk+:2 - dev-perl/Gtk2 - dev-perl/IO-stringy - virtual/perl-Pod-Parser - virtual/perl-Pod-Simple - dev-perl/Gtk2-Ex-Simple-List - dev-perl/Locale-gettext" -DEPEND="${RDEPEND}" diff --git a/dev-perl/Gtk2-Ex-PrintDialog/Gtk2-Ex-PrintDialog-0.30.0-r1.ebuild b/dev-perl/Gtk2-Ex-PrintDialog/Gtk2-Ex-PrintDialog-0.30.0-r1.ebuild deleted file mode 100644 index f4dd3f0ced79..000000000000 --- a/dev-perl/Gtk2-Ex-PrintDialog/Gtk2-Ex-PrintDialog-0.30.0-r1.ebuild +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=GBROWN -MODULE_VERSION=0.03 -inherit perl-module - -DESCRIPTION="a simple, pure Perl dialog for printing PostScript data in GTK+ applications" - -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="cups" - -RDEPEND="cups? ( dev-perl/Net-CUPS ) - dev-perl/Gtk2 - >=dev-perl/Locale-gettext-1.04" -DEPEND="${RDEPEND}" - -#SRC_TEST="do" diff --git a/dev-perl/Gtk2-Ex-Simple-List/Gtk2-Ex-Simple-List-0.500.0-r1.ebuild b/dev-perl/Gtk2-Ex-Simple-List/Gtk2-Ex-Simple-List-0.500.0-r1.ebuild deleted file mode 100644 index 0728edd28efe..000000000000 --- a/dev-perl/Gtk2-Ex-Simple-List/Gtk2-Ex-Simple-List-0.500.0-r1.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=RMCFARLA -MODULE_VERSION=0.50 -MODULE_SECTION=Gtk2-Perl-Ex -inherit perl-module - -DESCRIPTION="A simple interface to Gtk2's complex MVC list widget" - -LICENSE="|| ( LGPL-2.1 LGPL-3 )" # LGPL-2.1+ -SLOT="0" -KEYWORDS="amd64 ia64 sparc x86" -IUSE="" - -RDEPEND=" - >=dev-perl/Gtk2-1.60.0 - >=dev-perl/glib-perl-1.62.0 -" -DEPEND="${RDEPEND}" - -# needs X -SRC_TEST="no" diff --git a/dev-perl/Gtk2-ImageView/Gtk2-ImageView-0.50.0-r1.ebuild b/dev-perl/Gtk2-ImageView/Gtk2-ImageView-0.50.0-r1.ebuild deleted file mode 100644 index 971bb34f1127..000000000000 --- a/dev-perl/Gtk2-ImageView/Gtk2-ImageView-0.50.0-r1.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=RATCLIFFE -MODULE_VERSION=0.05 -inherit perl-module -#inherit virtualx - -DESCRIPTION="Perl binding for the GtkImageView image viewer widget" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND="dev-perl/Gtk2 - >=media-gfx/gtkimageview-1.6.3" -DEPEND="${RDEPEND} - dev-perl/glib-perl - >=dev-perl/ExtUtils-Depends-0.300 - >=dev-perl/ExtUtils-PkgConfig-1.030" - -#SRC_TEST=do -#src_test(){ -# Xmake test || die -#} diff --git a/dev-perl/Gtk2-Unique/Gtk2-Unique-0.50.0-r1.ebuild b/dev-perl/Gtk2-Unique/Gtk2-Unique-0.50.0-r1.ebuild deleted file mode 100644 index ef391ddd13ee..000000000000 --- a/dev-perl/Gtk2-Unique/Gtk2-Unique-0.50.0-r1.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=POTYL -MODULE_VERSION=0.05 -inherit perl-module - -DESCRIPTION="Perl binding for C libunique library" - -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND=" - dev-libs/libunique:1 - dev-perl/Gtk2 -" -DEPEND="${RDEPEND} - dev-perl/glib-perl - dev-perl/ExtUtils-Depends - dev-perl/ExtUtils-PkgConfig -" - -PATCHES=( "${FILESDIR}"/${PN}-0.05-implicit-pointer.patch ) diff --git a/dev-perl/HTML-Formatter/HTML-Formatter-2.140.0.ebuild b/dev-perl/HTML-Formatter/HTML-Formatter-2.140.0.ebuild deleted file mode 100644 index 0a54d6588078..000000000000 --- a/dev-perl/HTML-Formatter/HTML-Formatter-2.140.0.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DIST_AUTHOR=NIGELM -DIST_VERSION=2.14 -inherit perl-module - -DESCRIPTION="HTML Formatter" - -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="test" - -RDEPEND=" - virtual/perl-Carp - virtual/perl-Data-Dumper - virtual/perl-Encode - dev-perl/Font-AFM - dev-perl/HTML-Tree - virtual/perl-IO - virtual/perl-parent -" -DEPEND="${RDEPEND} - >=dev-perl/Module-Build-0.280.0 - test? ( - dev-perl/File-Slurper - virtual/perl-File-Spec - virtual/perl-Scalar-List-Utils - >=virtual/perl-Test-Simple-0.960.0 - ) -" -src_test() { - local badfile - perl_rm_files t/author-* t/release-* - for badfile in t/000-report-versions.t META.yml; do - einfo "Stripping bad test dependencies from ${badfile}" - sed -i -r -e '/Test::(CPAN|EOL|Kwalitee|NoTabs|Pod|Port|YAML)/d' "${badfile}" || die "Can't fix bad deps in ${badfile}" - done - perl-module_src_test -} diff --git a/dev-perl/HTML-Formatter/Manifest b/dev-perl/HTML-Formatter/Manifest index ed7780b453e0..432f199c41b3 100644 --- a/dev-perl/HTML-Formatter/Manifest +++ b/dev-perl/HTML-Formatter/Manifest @@ -1,2 +1 @@ -DIST HTML-Formatter-2.14.tar.gz 51298 BLAKE2B 4d6bbc0a7733113c313fc0e7a43d7632702b9e66edb241a80866454d876ceb987cc695de926ed93a510270a248f928a3983436bd9bc0e1194634d3c32e117dda SHA512 616ee70f3a6038589d9348a1463bd9c1cac4d7fe00aff5dbb52968d0ef44129658ff6cdc114f2c389a1eed068a64f48ab34bb90b60d3f20a0a024750ddadda42 DIST HTML-Formatter-2.16.tar.gz 54362 BLAKE2B 13a15ab4fd5e332595f5dde47f193aa32e965c1a59bb6024a0018f7b0fe29283ded991f826a68ea8244d9a695c253c7bd91bd16e097015ab6013fcf763eea14b SHA512 feb09ed5eefa36f1368f051aa077a8123b5c22a50feea10c09f3b7f826c78ac45868a3fde4f96a340bc922a9512afc9c4b02ca6d97d6e538e517e7f3797bd47c diff --git a/dev-perl/HTML-LinkExtractor/HTML-LinkExtractor-0.130.0-r1.ebuild b/dev-perl/HTML-LinkExtractor/HTML-LinkExtractor-0.130.0-r1.ebuild deleted file mode 100644 index 9f62924b8afa..000000000000 --- a/dev-perl/HTML-LinkExtractor/HTML-LinkExtractor-0.130.0-r1.ebuild +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=PODMASTER -MODULE_VERSION=0.13 -inherit perl-module - -DESCRIPTION="A bare-bone HTML parser, similar to HTML::Parser" - -SLOT="0" -KEYWORDS="amd64 ia64 ppc ppc64 sparc x86" -IUSE="" - -DEPEND="dev-perl/HTML-Parser" -RDEPEND="${DEPEND} - dev-perl/URI" diff --git a/dev-perl/HTML-Scrubber/HTML-Scrubber-0.150.0.ebuild b/dev-perl/HTML-Scrubber/HTML-Scrubber-0.150.0.ebuild deleted file mode 100644 index 7600acd522c7..000000000000 --- a/dev-perl/HTML-Scrubber/HTML-Scrubber-0.150.0.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=NIGELM -MODULE_VERSION=0.15 -inherit perl-module - -DESCRIPTION="Perl extension for scrubbing/sanitizing html" - -SLOT="0" -KEYWORDS="amd64 ppc ppc64 x86" -IUSE="test" - -RDEPEND="dev-perl/HTML-Parser" -DEPEND="${REPEND} - dev-perl/Module-Build - test? ( - dev-perl/Test-Memory-Cycle - )" - -SRC_TEST="do" - -src_test() { - perl_rm_files t/author-no-tabs.t t/release-unused-vars.t \ - t/release-has-version.t t/author-critic.t \ - t/release-minimum-version.t t/release-dist-manifest.t \ - t/author-eol.t t/release-pod-syntax.t \ - t/release-distmeta.t t/author-pod-spell.t \ - t/release-portability.t t/000-report-versions.t \ - t/release-synopsis.t - perl-module_src_test -} diff --git a/dev-perl/HTML-Scrubber/Manifest b/dev-perl/HTML-Scrubber/Manifest index 2c3ca5244ec2..2528ab24176c 100644 --- a/dev-perl/HTML-Scrubber/Manifest +++ b/dev-perl/HTML-Scrubber/Manifest @@ -1,2 +1 @@ -DIST HTML-Scrubber-0.15.tar.gz 34250 BLAKE2B db459c329723605cd187f8fb88d897e696d17e7452215abb777f6e287546b50860967dedbd90923a1124fa303294ced3b117faa95f5ea83c6181658a0bcb8cc0 SHA512 1c8fefdc686c6ae25f0eb11b02ef21b7960f72d48dc756e57cd0ea7cf40e26573c2229d13e9b58080c28a9a8a4a4f7edb74e6b335ac843708024526a2960a88e DIST HTML-Scrubber-0.17.tar.gz 37140 BLAKE2B e7c68b6a93f0efb7f63f431f14c4cdf6de3c0b95b6d95b9e5ee09161ee2e0515d7ab8e148df6293b3b2f1c4644e54e465c96372ef42b8682c4f95fb4b78bc57a SHA512 d6e04374d4da390d22cc4d51bfe2910078effc30d6d2ddc36dbc1b94ada12333c2f9c7acb1f444f777f9e268aed90ba8ea15c4c74a8b5ab955fe97ef04469ba7 diff --git a/dev-perl/HTML-SimpleParse/HTML-SimpleParse-0.120.0-r1.ebuild b/dev-perl/HTML-SimpleParse/HTML-SimpleParse-0.120.0-r1.ebuild deleted file mode 100644 index c83f72a19edb..000000000000 --- a/dev-perl/HTML-SimpleParse/HTML-SimpleParse-0.120.0-r1.ebuild +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=KWILLIAMS -MODULE_VERSION=0.12 -inherit perl-module - -DESCRIPTION="A bare-bones HTML parser, similar to HTML::Parser" - -SLOT="0" -KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86" -IUSE="" - -RDEPEND="" -DEPEND="${RDEPEND} - >=dev-perl/Module-Build-0.28" diff --git a/dev-perl/HTML-Strip/HTML-Strip-2.90.0.ebuild b/dev-perl/HTML-Strip/HTML-Strip-2.90.0.ebuild deleted file mode 100644 index 8d8a285dcf3c..000000000000 --- a/dev-perl/HTML-Strip/HTML-Strip-2.90.0.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=KILINRAX -MODULE_VERSION=2.09 -inherit perl-module - -DESCRIPTION="Extension for stripping HTML markup from text" - -SLOT="0" -KEYWORDS="amd64 ia64 ~ppc ppc64 sparc x86" -IUSE="test" - -RDEPEND=" - virtual/perl-Carp -" -DEPEND="${RDEPEND} - virtual/perl-ExtUtils-MakeMaker - test? ( - dev-perl/Test-Exception - virtual/perl-Test-Simple - ) -" - -SRC_TEST="do parallel" diff --git a/dev-perl/HTML-Strip/Manifest b/dev-perl/HTML-Strip/Manifest index 5700418930fa..ef27b3782014 100644 --- a/dev-perl/HTML-Strip/Manifest +++ b/dev-perl/HTML-Strip/Manifest @@ -1,2 +1 @@ -DIST HTML-Strip-2.09.tar.gz 15040 BLAKE2B 0bc2efd2b358bd607a98a5de6dff0d2c2aab3084462b3e5e2c55364b1c0f04d739778ff441e29902ca4d2c51e5fc08d7bf9d4271ba7ec0de60f150a43e2d03d2 SHA512 8dc1935b401a60b4ae510cfd492b103471d197f0820fb17bd37f5e5f30b0f110f99bc196c53bdfed65ebc3ba5068d4c8e4871020e6e97015a60b64ea38aecd5d DIST HTML-Strip-2.10.tar.gz 15333 BLAKE2B 3cb0b3d8a07c403fc9bd242d458ace0e698d7f7e8a071e0531ace502d721f7821aa629ffebbb1dc793357bf438a083d4b379bdfa95a14884be23ff21cd09d3cf SHA512 e5a5c7817e519542e39e3d27e6c113082188665f2f19c795d96aa841f8c35f3515880f1f0eab3a30d69377433311bb3164a8528c057fe331f28f29f8a18c9e05 diff --git a/dev-perl/HTML-TableExtract/HTML-TableExtract-2.130.0.ebuild b/dev-perl/HTML-TableExtract/HTML-TableExtract-2.130.0.ebuild deleted file mode 100644 index 53d56b11e0c7..000000000000 --- a/dev-perl/HTML-TableExtract/HTML-TableExtract-2.130.0.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=MSISK -MODULE_VERSION=2.13 -inherit perl-module - -DESCRIPTION="The Perl Table-Extract Module" - -SLOT="0" -KEYWORDS="alpha amd64 ppc ppc64 x86 ~x86-linux" -IUSE="" - -RDEPEND=" - >=dev-perl/HTML-Element-Extended-1.160.0 - dev-perl/HTML-Parser -" -DEPEND="${RDEPEND} - virtual/perl-ExtUtils-MakeMaker -" - -mydoc="TODO" - -SRC_TEST="do parallel" diff --git a/dev-perl/HTML-TableExtract/Manifest b/dev-perl/HTML-TableExtract/Manifest index 7b8e486ba7d7..e9e4e4556c22 100644 --- a/dev-perl/HTML-TableExtract/Manifest +++ b/dev-perl/HTML-TableExtract/Manifest @@ -1,2 +1 @@ -DIST HTML-TableExtract-2.13.tar.gz 36417 BLAKE2B 86a6ca27383f03eab5e57fda6c5b3a1f0e10d8e56db3689f8d18c7be93c0b361f2ec4ebf51d55120ca9127696daa7c4ef30f5a80fb7c4815ade43e1435e4ed6b SHA512 7a35952c37d6c2997e50901208cce06af97b597574f91a14d3e7700bef42df398721a6b42fe14bd3ed3733d248e80c2c8f0029c6e2caab4bc66a84474bdddf7c DIST HTML-TableExtract-2.15.tar.gz 36481 BLAKE2B 37562bcd8dc559b4a6dede3c3242e80726374e059841963d36c7ae83130444cadc9c080316bf5a830b12d7c6d9a01b2f27f75621afa0e0c063bf069be84e8ff8 SHA512 54fe445bd4bfc55d244ba6ba9888ea556b1a93b384be1f935ae3e93dc6d9e07167fa0fa07365d7fbc89e0a4924a40ea10fdc63d2ebf55f8d5f0d2ed90848a607 diff --git a/dev-perl/HTML-Template/HTML-Template-2.950.0.ebuild b/dev-perl/HTML-Template/HTML-Template-2.950.0.ebuild deleted file mode 100644 index f96f32e88c80..000000000000 --- a/dev-perl/HTML-Template/HTML-Template-2.950.0.ebuild +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=WONKO -MODULE_VERSION=2.95 -inherit perl-module - -DESCRIPTION="A Perl module to use HTML Templates" - -SLOT="0" -KEYWORDS="amd64 ~arm ~mips ppc ~ppc64 x86 ~x86-fbsd" -IUSE="test" - -DEPEND="test? ( dev-perl/CGI )" - -SRC_TEST="do" diff --git a/dev-perl/HTML-Template/Manifest b/dev-perl/HTML-Template/Manifest index 13b7fd6dc31a..be016984fd90 100644 --- a/dev-perl/HTML-Template/Manifest +++ b/dev-perl/HTML-Template/Manifest @@ -1,2 +1 @@ -DIST HTML-Template-2.95.tar.gz 91083 BLAKE2B b78d4ce7705ea96f46f2bdead067979217774762ec472b87bf9c1e62f6fb120543d441daf035b8f89a726d86d25e8af8090a4e27e4f941bf17cc92d21eaf447c SHA512 4b52856c7ac97a6c7985c73492aa5074f90b6b7f89dfb2434487a2cfeb9d521e55afe4e77c33285042e3d391fe6e9fc86a3f58bb6850d94f1331bb7be9809be7 DIST HTML-Template-2.97.tar.gz 88236 BLAKE2B 266b6d7988e04f4e2c0392c364245944cffbc5816d6038020dd1d9d56d5ebfbf6ce26d286ae6e09b17725faefc3409cadb4c562a5125fb753d59992895d98ded SHA512 e1cb68db24db1692c0fb3838739798e5716340e3e78260ee95614af5bf29ee100cc86bbd15a2dda3bb98c7f2ecdf0e3ff8ca7775171a44d9ed347d7f9c850783 diff --git a/dev-perl/HTTP-Cache-Transparent/HTTP-Cache-Transparent-1.100.0-r1.ebuild b/dev-perl/HTTP-Cache-Transparent/HTTP-Cache-Transparent-1.100.0-r1.ebuild deleted file mode 100644 index 46ecb80d89d6..000000000000 --- a/dev-perl/HTTP-Cache-Transparent/HTTP-Cache-Transparent-1.100.0-r1.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=MATTIASH -MODULE_VERSION=1.1 -inherit perl-module - -DESCRIPTION="Cache the result of http get-requests persistently" - -SLOT="0" -KEYWORDS="amd64 ia64 ppc sparc x86" -IUSE="test" - -RDEPEND="dev-perl/libwww-perl - virtual/perl-Digest-MD5 - virtual/perl-Storable" -DEPEND="${RDEPEND} - test? ( virtual/perl-Test-Simple )" - -SRC_TEST="do" - -src_test() { - perl_rm_files t/pod.t t/pod-coverage.t - perl-module_src_test -} diff --git a/dev-perl/HTTP-Cache-Transparent/Manifest b/dev-perl/HTTP-Cache-Transparent/Manifest index d70ca72cfdc1..723b728726f8 100644 --- a/dev-perl/HTTP-Cache-Transparent/Manifest +++ b/dev-perl/HTTP-Cache-Transparent/Manifest @@ -1,2 +1 @@ -DIST HTTP-Cache-Transparent-1.1.tar.gz 9005 BLAKE2B 91ccdf0b319300c24679464feda7b61692d6bd90a451dccb9ae4e2eefa7a52623da44554e7df46b510032252d319fdfec43bbe8812b2a15c6740076edba6946d SHA512 92993728c7803d6b9c2f7cfd8dce12e942df2002081908ebe3277034c1bcd35e3d4822fd246c028dd168229068a8e54b1caaca6f535b497319bd0dd3513c0ff0 DIST HTTP-Cache-Transparent-1.4.tar.gz 10289 BLAKE2B ccbd8a232cb5ff9ef8354d9613a98546efe4e6bacd5c77b9e36affd3ee8e04dd1f5ffae979e9737cf03f3cdb077158683ca7a310cdb06ac019c661595d7a4b18 SHA512 bd48290de4aeffe64cc4748d2f4b054abef539770dd8679f88fd24d9478819c31d7201918335404ea5ed0251d4c4f7d19926ccdeb6b4da2cecf251d2618589a4 diff --git a/dev-perl/HTTP-Headers-Fast/HTTP-Headers-Fast-0.200.0.ebuild b/dev-perl/HTTP-Headers-Fast/HTTP-Headers-Fast-0.200.0.ebuild deleted file mode 100644 index cb746054f33b..000000000000 --- a/dev-perl/HTTP-Headers-Fast/HTTP-Headers-Fast-0.200.0.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DIST_AUTHOR=TOKUHIROM -DIST_VERSION=0.20 -inherit perl-module - -DESCRIPTION="Faster implementation of HTTP::Headers" - -SLOT="0" -KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="test" - -RDEPEND=" - dev-perl/HTTP-Date -" -DEPEND="${RDEPEND} - >=dev-perl/Module-Build-0.380.0 - test? ( - >=virtual/perl-Test-Simple-0.980.0 - dev-perl/Test-Requires - ) -" diff --git a/dev-perl/HTTP-Headers-Fast/Manifest b/dev-perl/HTTP-Headers-Fast/Manifest index c3d169369bb5..09da20f55061 100644 --- a/dev-perl/HTTP-Headers-Fast/Manifest +++ b/dev-perl/HTTP-Headers-Fast/Manifest @@ -1,2 +1 @@ -DIST HTTP-Headers-Fast-0.20.tar.gz 19913 BLAKE2B 55c517d5b551a78629aa0b0a7096ff30467f75cfeedf1a96b4559d6427dde7c99376df8a2272ea0434f16c5818e0a4477c9c95e7b93b23532dff09d6d45a3d9b SHA512 45d8260bf03e0cea50b2cd8cff0ac373ee1aeadf880e77949cf48089014aa3a6668cbffcf3852d470f967e68ae3f403e1c2a5dc1a93b04fa4ab69148b3ce9b1b DIST HTTP-Headers-Fast-0.21.tar.gz 19578 BLAKE2B e3cb381a2a68cf84a99eba07d1f42016dc95e0f19c9478637365305ccb23204353c4a6730ca125da10f1eb8429fe0d15fd3d3910714d38eccf08d3bb4d8d1fcf SHA512 ce04b70f0748ee2d5911c772149b71c8c130d172267c11716151c1ca21b26e8c793af22227098d73a9253c9bfae57d618b6d67454c41862e2ba3a9798c067cf6 diff --git a/dev-perl/Hash-MoreUtils/Hash-MoreUtils-0.20.0-r1.ebuild b/dev-perl/Hash-MoreUtils/Hash-MoreUtils-0.20.0-r1.ebuild deleted file mode 100644 index 29f8b26e6428..000000000000 --- a/dev-perl/Hash-MoreUtils/Hash-MoreUtils-0.20.0-r1.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR="REHSACK" -MODULE_VERSION=0.02 - -inherit perl-module - -DESCRIPTION="Provide the stuff missing in Hash::Util" - -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="test" - -RDEPEND="" -DEPEND="${RDEPEND} - dev-perl/Module-Build - test? ( virtual/perl-Test-Simple ) -" - -SRC_TEST="do" - -src_test() { - perl_rm_files t/pod.t t/manifest.t t/pod-coverage.t - perl-module_src_test -} diff --git a/dev-perl/Hash-MoreUtils/Manifest b/dev-perl/Hash-MoreUtils/Manifest index 2ea2ad6f3c90..34b9282709d8 100644 --- a/dev-perl/Hash-MoreUtils/Manifest +++ b/dev-perl/Hash-MoreUtils/Manifest @@ -1,2 +1 @@ -DIST Hash-MoreUtils-0.02.tar.gz 5372 BLAKE2B 47ebb5653ed04b6b3cf17d7d8e6d2aac7dc9a015a55014e4ce0ccd818fe4c8a422f84d4cff0732e31ed6a013db5b0dd9bf060b175cab123a1783d7cf33bb0fdb SHA512 a0716e1cda6b10f1fe3196c480d6a19190cf89a668aa4f2f2ffa6f04842bc16c7a71062dc9bc64a2583e6c5e566a78ddaabd0d4edb7f7a037f922025591433b0 DIST Hash-MoreUtils-0.05.tar.gz 5809 BLAKE2B d8b5c6aa531556d0f17b8debc2fd82ff8115e3a70cc3618e14ea1df9bf025e8474263307b1fda193d38e47241c7f5da64d1ff4671940d4518bdda95c09872ecc SHA512 7e53dfda0336198b5981be772a0aeb3aa1fdbfa5885bf866032bcd168a73ceb03f92db6de92874d5812f062ab9c03e1fed27732f60a7004944da568c3cb04845 diff --git a/dev-perl/Hash-NoRef/Hash-NoRef-0.30.0-r1.ebuild b/dev-perl/Hash-NoRef/Hash-NoRef-0.30.0-r1.ebuild deleted file mode 100644 index 54521ba2bc1e..000000000000 --- a/dev-perl/Hash-NoRef/Hash-NoRef-0.30.0-r1.ebuild +++ /dev/null @@ -1,14 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=GMPASSOS -MODULE_VERSION=0.03 -inherit perl-module - -DESCRIPTION="Hash to store values without increasing reference count (weak references)" - -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" diff --git a/dev-perl/Heap/Heap-0.800.0-r1.ebuild b/dev-perl/Heap/Heap-0.800.0-r1.ebuild deleted file mode 100644 index 60dae659f0f3..000000000000 --- a/dev-perl/Heap/Heap-0.800.0-r1.ebuild +++ /dev/null @@ -1,14 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=JMM -MODULE_VERSION=0.80 -inherit perl-module - -DESCRIPTION="Heap - Perl extensions for keeping data partially sorted" - -SLOT="0" -KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86" -IUSE="" diff --git a/dev-perl/IMAP-Admin/IMAP-Admin-1.6.7-r1.ebuild b/dev-perl/IMAP-Admin/IMAP-Admin-1.6.7-r1.ebuild deleted file mode 100644 index 9b4ee09221b9..000000000000 --- a/dev-perl/IMAP-Admin/IMAP-Admin-1.6.7-r1.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=EESTABROO -inherit perl-module - -DESCRIPTION="Perl module for basic IMAP server administration" - -SLOT="0" -LICENSE="|| ( Artistic GPL-2 )" -KEYWORDS="amd64 x86" -IUSE="examples" - -src_install() { - perl-module_src_install - if use examples; then - docompress -x usr/share/doc/${PF}/examples/ - insinto usr/share/doc/${PF} - doins -r examples/ - fi -} diff --git a/dev-perl/IMAP-Admin/Manifest b/dev-perl/IMAP-Admin/Manifest index a63b673cdcbe..7d74ea8f3d0f 100644 --- a/dev-perl/IMAP-Admin/Manifest +++ b/dev-perl/IMAP-Admin/Manifest @@ -1,2 +1 @@ -DIST IMAP-Admin-1.6.7.tar.gz 14990 BLAKE2B 70d6635f54968a350376f6aa16d4fe5694f53b2222c86f24ebe9e67ad4ee0db5b161357516f517e40386f1a5dcc9b6f0acb5938cff4b5dd0207db9ae9a5d4c78 SHA512 cd4c735b3152e9f9db5198274b6c1dd39a8cf0f127b55e671880e6a6fb2278673e5443df46e9e01741cca1f1013f885781bee6b9c45214919510762475e72a75 DIST IMAP-Admin-1.6.8.tar.gz 15332 BLAKE2B 7a2935b5eb7f206aa9c2757e4153065150ecf9dbfb243f4e09b1611682e6b10d496493c4a19301a4967dfc4329c4360ccf8c1ae074a615d9a9660c12635646af SHA512 b9a600b66b539a9d7e5fa3c635f37302bbef87f5403c432f880edd724ab0576b1365303a309582d5dfd455093e8a67ad9716154d55ca9e938dd8175acb7fa0b1 diff --git a/dev-perl/IO-AIO/IO-AIO-4.330.0.ebuild b/dev-perl/IO-AIO/IO-AIO-4.330.0.ebuild deleted file mode 100644 index f47b51fd1be1..000000000000 --- a/dev-perl/IO-AIO/IO-AIO-4.330.0.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DIST_AUTHOR=MLEHMANN -DIST_VERSION=4.33 -inherit perl-module - -DESCRIPTION="Asynchronous Input/Output" - -SLOT="0" -KEYWORDS="amd64 ~ppc x86" -IUSE="" -# Tests trigger stack overflow in sandbox code, see bug 553918 -RESTRICT="test" - -RDEPEND="dev-perl/common-sense" -DEPEND="${RDEPEND} - >=dev-perl/Canary-Stability-2001 - >=virtual/perl-ExtUtils-MakeMaker-6.520.0 -" diff --git a/dev-perl/IO-AIO/Manifest b/dev-perl/IO-AIO/Manifest index abdcb456eb93..0088c88b8dec 100644 --- a/dev-perl/IO-AIO/Manifest +++ b/dev-perl/IO-AIO/Manifest @@ -1,2 +1 @@ -DIST IO-AIO-4.33.tar.gz 154120 BLAKE2B eb61e741763052a05e051391a6b08e234ac475a0990e1359650e62c9936b579604a25d0bf0d775d9588c937a554d6e1705fc7d9dee3bdf8fdd5b3fb88eeccc74 SHA512 9d59d9ad511bb07178ed760a0387357ade961f9b0e73cdc64861fa3b5674fb4cdb07b44a0c0810cc364909c1bc4fb012c2975269c1e3035cd37ba21a8a029df9 DIST IO-AIO-4.34.tar.gz 156615 BLAKE2B 913e90403bc8172d2376420c3cc3c48e4d694580a71adfa19e59e8f0c7d8d451df736686393423b94f2f916002c153ddae40a1350d05ae20f035f633e8df9c50 SHA512 7b7e05fb01513864321c1aa2a28192444299486831b75461bd57bad5a0370863d46df42c698288096eac55f9972a3492f8af46cb265f13c721da698c9fe3529c diff --git a/dev-perl/IO-BufferedSelect/IO-BufferedSelect-1.0.0-r1.ebuild b/dev-perl/IO-BufferedSelect/IO-BufferedSelect-1.0.0-r1.ebuild deleted file mode 100644 index 4c2258d47b8b..000000000000 --- a/dev-perl/IO-BufferedSelect/IO-BufferedSelect-1.0.0-r1.ebuild +++ /dev/null @@ -1,16 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=AFN -MODULE_VERSION=1.0 -inherit perl-module - -DESCRIPTION="Perl module that implements a line-buffered select interface" - -SLOT="0" -KEYWORDS="amd64 ppc sparc x86" -IUSE="" - -S="${WORKDIR}/${PN}" diff --git a/dev-perl/IO-Interactive/IO-Interactive-1.21.0.ebuild b/dev-perl/IO-Interactive/IO-Interactive-1.21.0.ebuild deleted file mode 100644 index 8b9ff0569378..000000000000 --- a/dev-perl/IO-Interactive/IO-Interactive-1.21.0.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DIST_AUTHOR=BDFOY -DIST_VERSION=1.021 -inherit perl-module - -DESCRIPTION="Utilities for interactive I/O" - -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="test" - -RDEPEND=" - >=virtual/perl-version-0.780.0 -" -DEPEND="${RDEPEND} - >=virtual/perl-ExtUtils-MakeMaker-6.640.0 - virtual/perl-File-Spec - test? ( >=virtual/perl-Test-Simple-0.940.0 ) -" -src_test() { - perl_rm_files "t/pod.t" "t/pod-coverage.t" - perl-module_src_test -} diff --git a/dev-perl/IO-Interactive/Manifest b/dev-perl/IO-Interactive/Manifest index 7800fc226a0e..420e7d04e616 100644 --- a/dev-perl/IO-Interactive/Manifest +++ b/dev-perl/IO-Interactive/Manifest @@ -1,2 +1 @@ -DIST IO-Interactive-1.021.tar.gz 11751 BLAKE2B 5161b93da3ef2d5680e6f61ac53111117f95f0c320a5050b679b8ab9d5548bb16a24906e687b52f58f74d16b4f07342de113630a010cfc4c888cbed7d5d42002 SHA512 16307148e762b6c382dcecef653eab581563fefabd5289d7f3f66a439d17fb496982e24f7e74494f5710749eb11654d366001e016bf50b2e43b1dca7564c24ae DIST IO-Interactive-1.022.tar.gz 11791 BLAKE2B c001a709531a48d4f4756712caab14ec8b9f2f21478f545fd4f858b3619fc625d75ff9bf744e4c3223a4b9ba39f2b97bb0e38b9eab8297d7d76e5aa0d88b7647 SHA512 159bd97912a848e20df3ac9f3f7b3063788c7bbe2eafd35c6cc9b798027c6e7c12d2488385936c87669877928707603729bc34b2d7b8c108534fa8fd42082074 diff --git a/dev-perl/IO-Pipely/IO-Pipely-0.005.0.ebuild b/dev-perl/IO-Pipely/IO-Pipely-0.005.0.ebuild deleted file mode 100644 index 334b1ec8a168..000000000000 --- a/dev-perl/IO-Pipely/IO-Pipely-0.005.0.ebuild +++ /dev/null @@ -1,14 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=RCAPUTO -MODULE_VERSION=0.005 -inherit perl-module - -DESCRIPTION="Portably create pipe() or pipe-like handles, one way or another" - -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="" diff --git a/dev-perl/IO-SessionData/IO-SessionData-1.30.0.ebuild b/dev-perl/IO-SessionData/IO-SessionData-1.30.0.ebuild deleted file mode 100644 index db81c828289b..000000000000 --- a/dev-perl/IO-SessionData/IO-SessionData-1.30.0.ebuild +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=PHRED -MODULE_VERSION=1.03 -inherit perl-module - -DESCRIPTION="Session data support module for SOAP::Lite" - -SLOT="0" -KEYWORDS="amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux" -IUSE="" - -RDEPEND="" -DEPEND="${RDEPEND} - virtual/perl-ExtUtils-MakeMaker -" - -SRC_TEST=do diff --git a/dev-perl/IO-Tee/IO-Tee-0.640.0-r1.ebuild b/dev-perl/IO-Tee/IO-Tee-0.640.0-r1.ebuild deleted file mode 100644 index 7fd859953894..000000000000 --- a/dev-perl/IO-Tee/IO-Tee-0.640.0-r1.ebuild +++ /dev/null @@ -1,16 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=KENSHAN -MODULE_VERSION=0.64 -inherit perl-module - -DESCRIPTION="Multiplex output to multiple output handles" - -SLOT="0" -KEYWORDS="amd64 ia64 ppc sparc x86" -IUSE="" - -SRC_TEST="do" diff --git a/dev-perl/IO-Tee/Manifest b/dev-perl/IO-Tee/Manifest index 4a3fa25724eb..1a1fbb04c862 100644 --- a/dev-perl/IO-Tee/Manifest +++ b/dev-perl/IO-Tee/Manifest @@ -1,2 +1 @@ -DIST IO-Tee-0.64.tar.gz 5039 BLAKE2B 916f63b12959bf519d6c4003f8bd5912c8a26e37df5de92e2b691f7a5b75afd4759ed78affc8b08d0d9c2795dc9105fa846a6b7a2000557faa27b89d5bf4e6db SHA512 9473a9ce3222ee6998cc53851a34051a9ae5990b9c514b5e5d322832d76f0e20d7af51bf7f06603ad927ab9789e5ab10da7a0693e4867112cd3e1dc1ca25d017 DIST IO-Tee-0.65.tar.gz 12842 BLAKE2B 28f48d16281ec761baa06f7db01dce6d36418d1b33ad86cde6f16d5fc8c3f02422a93276157cf976a49b2ad296f11e589bb32fce0bf0dadb098fa68833725c95 SHA512 f0f2f069c9c43098fc8fb343ef3a701e8ea5d6171a7f86b3c296f542435b1305f263085ede07431cfe34ccf02d845c8f3719ddf1eb6fe0d8def0c730f8e97236 diff --git a/dev-perl/IO-Util/IO-Util-1.500.0-r1.ebuild b/dev-perl/IO-Util/IO-Util-1.500.0-r1.ebuild deleted file mode 100644 index d32992f80a0e..000000000000 --- a/dev-perl/IO-Util/IO-Util-1.500.0-r1.ebuild +++ /dev/null @@ -1,14 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=DOMIZIO -MODULE_VERSION=1.5 -inherit perl-module - -DESCRIPTION="A selection of general-utility IO function" - -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" diff --git a/dev-perl/IPC-Signal/IPC-Signal-1.0.0-r1.ebuild b/dev-perl/IPC-Signal/IPC-Signal-1.0.0-r1.ebuild deleted file mode 100644 index 78662f5985a7..000000000000 --- a/dev-perl/IPC-Signal/IPC-Signal-1.0.0-r1.ebuild +++ /dev/null @@ -1,14 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=ROSCH -MODULE_VERSION=1.00 -inherit perl-module - -DESCRIPTION="Translate signal names to/from numbers" - -SLOT="0" -KEYWORDS="amd64 ia64 ppc sparc x86" -IUSE="" diff --git a/dev-perl/Image-Sane/Image-Sane-0.120.0.ebuild b/dev-perl/Image-Sane/Image-Sane-0.120.0.ebuild deleted file mode 100644 index 81c827e13d07..000000000000 --- a/dev-perl/Image-Sane/Image-Sane-0.120.0.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DIST_VERSION=${PV%0.0} -DIST_AUTHOR=RATCLIFFE -DIST_EXAMPLES=( "examples/*" ) -inherit perl-module - -DESCRIPTION="Access SANE-compatible scanners from Perl" - -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="test" - -RDEPEND=" - dev-perl/Exception-Class - dev-perl/Readonly - >=media-gfx/sane-backends-1.0.19" -DEPEND="${RDEPEND} - dev-perl/ExtUtils-Depends - dev-perl/ExtUtils-PkgConfig - test? ( - dev-perl/Test-Requires - dev-perl/Try-Tiny - ) -" -# https://rt.cpan.org/Ticket/Display.html?id=122380 -PERL_RM_FILES=( t/{90_MANIFEST,91_critic,pod,81_scanimage-perl}.t ) diff --git a/dev-perl/Image-Sane/Manifest b/dev-perl/Image-Sane/Manifest index af62e79e2501..41d06d27fc99 100644 --- a/dev-perl/Image-Sane/Manifest +++ b/dev-perl/Image-Sane/Manifest @@ -1,2 +1 @@ -DIST Image-Sane-0.12.tar.gz 46834 BLAKE2B 7df3803c84aedc09c962f66cf64e30fa770c2f71dd0bf2238caef853939132c34e3b6556038609a1e48bcdff0f9120f20597d262b673f7ddeebc304158e1fe11 SHA512 ba05f198bc4bddf43418af7abc9a171000fa8bb776d7247fe42094117e244e31705984fec8be70d47659003d3cceb33b60b66750e1fe07ccc9f903037be98edb DIST Image-Sane-0.14.tar.gz 47158 BLAKE2B a9dfd5f31f0ab66c3e4608e2126ddf019d9a3090dca45a8dc20d41393f3957d6c6e5eca025c0a1e58ab959ac3e22c491a0a0ed0c0295210138f84529383fcda6 SHA512 d08be5f0d18f367178b7d76d50abe12faaba48525374c782f6a91fdb44d314b1943617bab9f6e7b2bbbf4c95dcc221bfbd92cdf7c80783916aad24daf5b04bea diff --git a/dev-perl/LWPx-ParanoidAgent/LWPx-ParanoidAgent-1.100.0.ebuild b/dev-perl/LWPx-ParanoidAgent/LWPx-ParanoidAgent-1.100.0.ebuild deleted file mode 100644 index 541f840b7006..000000000000 --- a/dev-perl/LWPx-ParanoidAgent/LWPx-ParanoidAgent-1.100.0.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DIST_SECTION=lwp -DIST_AUTHOR=SAXJAZMAN -DIST_VERSION=1.10 -inherit perl-module - -DESCRIPTION="Subclass of LWP::UserAgent that protects you from harm" - -SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="" - -# Net::SSL 2.85 -> Crypt-SSLeay 0.58 -DEPEND="dev-perl/libwww-perl - dev-perl/Net-DNS - virtual/perl-Time-HiRes - >=dev-perl/Crypt-SSLeay-0.580.0 -" -RDEPEND="${DEPEND} - virtual/perl-ExtUtils-MakeMaker -" -src_test() { - local my_test_control - my_test_control=${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}} - if has network ${my_test_control}; then - einfo "Enabling ONLINE_TESTS" - export ONLINE_TESTS=1 - fi - perl-module_src_test -} diff --git a/dev-perl/LWPx-ParanoidAgent/Manifest b/dev-perl/LWPx-ParanoidAgent/Manifest index 8b0996956675..027014a00490 100644 --- a/dev-perl/LWPx-ParanoidAgent/Manifest +++ b/dev-perl/LWPx-ParanoidAgent/Manifest @@ -1,2 +1 @@ -DIST LWPx-ParanoidAgent-1.10.tar.gz 17665 BLAKE2B 81d74f1d35dcc9c4d8842b8d7a7be6b43bf683d377e9d1cc62fa0de854700ac3bcf9c31f79986cff65a010fda87d4b7244b5430f1afa111e44b5ab65f98fc498 SHA512 8a1a1cdc4ab826b66abedfbbe7baee694d1083fc6dce2c2f6b69bf5e369ef0212ffdcd2afc9fadafa9977e3be9f7a4e4b1ea092e6c6773c1f9fc356c87c5434d DIST LWPx-ParanoidAgent-1.12.tar.gz 57426 BLAKE2B f091f24ae6958f0512845d968816d3adc633a0fdea7183cc35a07b4866cd27cca661ec57f367130120d4bbccf11d30779c7ac647b28875838baa31c12f181042 SHA512 96c380bedfc47802e4167fc1e96dffac8544b74c5b29082728196cd709cd8997caf5c715f06a7d37aca7dbfb1bba1e452618e5711fb250d798beb1fc7a49134b diff --git a/dev-perl/Lingua-Translit/Lingua-Translit-0.250.0.ebuild b/dev-perl/Lingua-Translit/Lingua-Translit-0.250.0.ebuild deleted file mode 100644 index ffe4a31f6061..000000000000 --- a/dev-perl/Lingua-Translit/Lingua-Translit-0.250.0.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DIST_AUTHOR=ALINKE -DIST_VERSION=0.25 -inherit perl-module - -DESCRIPTION="Transliterates text between writing systems" - -SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="" - -RDEPEND="" -DEPEND="${RDEPEND} - virtual/perl-ExtUtils-MakeMaker -" diff --git a/dev-perl/Lingua-Translit/Lingua-Translit-0.270.0.ebuild b/dev-perl/Lingua-Translit/Lingua-Translit-0.270.0.ebuild deleted file mode 100644 index 4305a2d4ef27..000000000000 --- a/dev-perl/Lingua-Translit/Lingua-Translit-0.270.0.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DIST_AUTHOR=ALINKE -DIST_VERSION=0.27 -inherit perl-module - -DESCRIPTION="Transliterates text between writing systems" - -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="" - -RDEPEND="" -DEPEND="${RDEPEND} - virtual/perl-ExtUtils-MakeMaker -" diff --git a/dev-perl/Lingua-Translit/Manifest b/dev-perl/Lingua-Translit/Manifest index 513c92dee91d..3c4687737639 100644 --- a/dev-perl/Lingua-Translit/Manifest +++ b/dev-perl/Lingua-Translit/Manifest @@ -1,3 +1 @@ -DIST Lingua-Translit-0.25.tar.gz 394066 BLAKE2B 2819fc36cc139e265e05f055eff5c2640b12bc4a1734c1ef4aeb95c12de652d663ad8d1c5f608327ef89a0947cfab3795a7ca4a3226a9685279d3c5547e36135 SHA512 eb1ce2d48ceec9ee729f944b1f5979edea4b9abb7c3c6e61fb8eeccd6b15864b7f6f012d02ecb991054b051e3f7ac61cada467c6ea45e51fad39375e2cd43517 -DIST Lingua-Translit-0.27.tar.gz 110337 BLAKE2B 8805c36cee8b19163d0c141d0697c0e57f3d4a40cf7791574282377f8912c6693858f05f6e51876c146b7cf9f1fce63c8b354db48c6c2595e235295fb8ff0663 SHA512 a42aa61cc5e08d0358a7f5b72b5bf2a10938124ae49e693c6720ef8793b5afe653cc13cc4e7f3132427d3e9a0b87c6e95f7e083b23c044f478c43ac6bae7d2ba DIST Lingua-Translit-0.28.tar.gz 110433 BLAKE2B 44ec21048c5706ea8f1098fd8f8a8dfed8477d4bfd8a47701724257d433c5998904c10059b58e94ec87c84bc2f4a29af7baa129affa50ce4e8ea7fade4ff9b8f SHA512 eb6d6fb6cda3b4c73fffc3ccc907453b3f285cf3e1d7e3349c971c55af855c301bdb1fb0e9d6dbab77d6f036740ce5aebe28c6d7f04f812460b9e2b6f53d4bb8 diff --git a/dev-perl/Linux-DesktopFiles/Linux-DesktopFiles-0.130.0.ebuild b/dev-perl/Linux-DesktopFiles/Linux-DesktopFiles-0.130.0.ebuild deleted file mode 100644 index 6b58e73aa179..000000000000 --- a/dev-perl/Linux-DesktopFiles/Linux-DesktopFiles-0.130.0.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DIST_AUTHOR=TRIZEN -DIST_VERSION=0.13 -inherit perl-module - -DESCRIPTION="Perl module to get and parse the Linux .desktop files" - -LICENSE="Artistic-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=">=dev-lang/perl-5.14.0[gdbm]" -DEPEND="dev-perl/Module-Build" - -src_test() { - perl_rm_files t/pod-coverage.t t/pod.t - perl-module_src_test -} diff --git a/dev-perl/Linux-DesktopFiles/Linux-DesktopFiles-0.90.0.ebuild b/dev-perl/Linux-DesktopFiles/Linux-DesktopFiles-0.90.0.ebuild deleted file mode 100644 index 3b2b0eb5db62..000000000000 --- a/dev-perl/Linux-DesktopFiles/Linux-DesktopFiles-0.90.0.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR="TRIZEN" -MODULE_VERSION=0.09 -inherit perl-module - -DESCRIPTION="Perl module to get and parse the Linux .desktop files" - -LICENSE="|| ( Artistic GPL-1 GPL-2 GPL-3 )" -SLOT="0" -KEYWORDS="amd64 x86" - -RDEPEND=">=dev-lang/perl-5.14.0[gdbm]" -DEPEND="dev-perl/Module-Build" - -SRC_TEST="do" diff --git a/dev-perl/Linux-DesktopFiles/Manifest b/dev-perl/Linux-DesktopFiles/Manifest index d9c0351a137d..1cfeb6d14266 100644 --- a/dev-perl/Linux-DesktopFiles/Manifest +++ b/dev-perl/Linux-DesktopFiles/Manifest @@ -1,3 +1 @@ -DIST Linux-DesktopFiles-0.09.tar.gz 10268 BLAKE2B e7f5b99182402b353103d3ed7cb3f8fe1b85b3f8455c97c85d1c1c1a1adaa47bdad50b55c4203921c094bc526325e2f0814c417178f14727ace8be9e38e7b4ba SHA512 9c46ca6be9c21092481efa6e101aaaa162c54e9c02156ac38f62363ddad937b9341a2b66fb09331347c45e1a8b9eba9dbcb2a7b0f45da41237a896b4dd31bb78 -DIST Linux-DesktopFiles-0.13.tar.gz 15008 BLAKE2B 30d79d1c01be92216c80018dc8347943b62287a760d4319f3f846cba6207de3b913cf0427f160dabc1f85a7ad0c77b6c041b5f01ab1761f60fc295a747f0c68d SHA512 408df4ffd6c4879426d74b196b2bb0c0d13ceab09f53160f62851c44cc7b3de295dd430d3a0391bb5d5f6682eab5816a1f34c589db084f9cf41c00f633102b9f DIST Linux-DesktopFiles-0.25.tar.gz 13995 BLAKE2B 236fca9c343544dc5c80415f481945f0d052dccf85757d3a7fdf6bbbf218920f7a94c7c457273a4d2aa7fe2390457f69c6a4e2aa91bcea714c4f759bb488f623 SHA512 a825b014e85e53cf0a142c7d239948f288930627a517444d21a81b8ee898ab3bc1b7dc8864df7b76b2f3a982280ffcb09325f492d0d83950c682110999d5e107 diff --git a/dev-perl/Manifest.gz b/dev-perl/Manifest.gz index 2288b680e3d1..abf4ac8f34d1 100644 Binary files a/dev-perl/Manifest.gz and b/dev-perl/Manifest.gz differ diff --git a/dev-perl/gnome2-canvas/gnome2-canvas-1.2.0-r1.ebuild b/dev-perl/gnome2-canvas/gnome2-canvas-1.2.0-r1.ebuild deleted file mode 100644 index 9d67f8337a8d..000000000000 --- a/dev-perl/gnome2-canvas/gnome2-canvas-1.2.0-r1.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MY_PN=Gnome2-Canvas -MODULE_AUTHOR=TSCH -MODULE_VERSION=1.002 -inherit perl-module - -DESCRIPTION="Perl interface to the Gnome Canvas" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="alpha amd64 ia64 ~ppc sparc x86" -IUSE="" - -RDEPEND="x11-libs/gtk+:2 - >=gnome-base/libgnomecanvas-2 - >=dev-perl/glib-perl-1.040 - >=dev-perl/Gtk2-1.040" -DEPEND="${RDEPEND} - >=dev-perl/ExtUtils-PkgConfig-1.03 - >=dev-perl/ExtUtils-Depends-0.202 - virtual/pkgconfig" diff --git a/dev-perl/gtk2-trayicon/gtk2-trayicon-0.60.0-r1.ebuild b/dev-perl/gtk2-trayicon/gtk2-trayicon-0.60.0-r1.ebuild deleted file mode 100644 index f821ceeb8915..000000000000 --- a/dev-perl/gtk2-trayicon/gtk2-trayicon-0.60.0-r1.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MODULE_AUTHOR=BORUP -MODULE_VERSION=0.06 -MY_PN=Gtk2-TrayIcon -inherit perl-module - -DESCRIPTION="Perl wrappers for the egg cup Gtk2::TrayIcon utilities" -HOMEPAGE="http://gtk2-perl.sf.net/ ${HOMEPAGE}" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="amd64 ia64 ~ppc ~sparc x86" -IUSE="" - -RDEPEND=" - >=dev-perl/glib-perl-1.012 - >=dev-perl/Gtk2-1.012 - gnome-base/libglade:2.0 - x11-libs/gtk+:2" -DEPEND="${RDEPEND} - dev-perl/ExtUtils-Depends - dev-perl/ExtUtils-PkgConfig - virtual/pkgconfig" diff --git a/dev-perl/local-lib/Manifest b/dev-perl/local-lib/Manifest index 228299d04833..a18353a82ec2 100644 --- a/dev-perl/local-lib/Manifest +++ b/dev-perl/local-lib/Manifest @@ -1,2 +1 @@ -DIST local-lib-2.000019.tar.gz 62149 BLAKE2B 934ec8be32489632870cb7be112cb4328dc4948abac4bf96bc619d13d41e2cdcfd197e261cb6c5d0fff775f3567447b9f57c84ef2a52e2e3cc3dd1616eafdcb3 SHA512 ab7d2d43566fef1d5dce41649859a01306d302b46739cf110b4d0330ae3cec3e49e3b06f67612f9e33b6bcb7654ec5ff0a97cf44fecc8a9cd6d5b24421671614 DIST local-lib-2.000024.tar.gz 62941 BLAKE2B c618c320af46c9223f67109deb02857755b675223b0a71772227b2c7fec47225e323cdeaa9b2c66e78e9e69964fff0a19367c4e58fa4b9be5e120683e69e9078 SHA512 d23c984f0652ea8dd7028cd2dcc00991e69a5ad1ac6fce9707f953a5e6456d8173b444b7631884e764eb5ff18cea29e8e560c3835eacc0aa34382c0d172a7fd0 diff --git a/dev-perl/local-lib/local-lib-2.0.19.ebuild b/dev-perl/local-lib/local-lib-2.0.19.ebuild deleted file mode 100644 index 653c72072c88..000000000000 --- a/dev-perl/local-lib/local-lib-2.0.19.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -DIST_AUTHOR=HAARG -DIST_VERSION=2.000019 -inherit perl-module - -DESCRIPTION='create and use a local lib/ for perl modules with PERL5LIB' -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="test" - -RDEPEND=" - >=virtual/perl-CPAN-1.820.0 - >=virtual/perl-ExtUtils-Install-1.430.0 - >=virtual/perl-ExtUtils-MakeMaker-7.0.0 - >=dev-perl/Module-Build-0.360.0 -" -DEPEND="${RDEPEND} - >=virtual/perl-ExtUtils-MakeMaker-6.590.0 - test? ( virtual/perl-Test-Simple ) -" diff --git a/dev-python/Manifest.gz b/dev-python/Manifest.gz index 96de821317fc..936469717d60 100644 Binary files a/dev-python/Manifest.gz and b/dev-python/Manifest.gz differ diff --git a/dev-python/PyQt5/PyQt5-5.10.1-r1.ebuild b/dev-python/PyQt5/PyQt5-5.10.1-r1.ebuild index 55b8624c98a8..aac34c8a33a8 100644 --- a/dev-python/PyQt5/PyQt5-5.10.1-r1.ebuild +++ b/dev-python/PyQt5/PyQt5-5.10.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=6 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) +PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} ) inherit multibuild python-r1 qmake-utils DESCRIPTION="Python bindings for the Qt framework" diff --git a/dev-python/characteristic/characteristic-14.3.0-r1.ebuild b/dev-python/characteristic/characteristic-14.3.0-r1.ebuild index 81a65a9ef25c..026c8aa29c0c 100644 --- a/dev-python/characteristic/characteristic-14.3.0-r1.ebuild +++ b/dev-python/characteristic/characteristic-14.3.0-r1.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd" IUSE="doc test" RDEPEND="" diff --git a/dev-python/fonttools/fonttools-3.0.ebuild b/dev-python/fonttools/fonttools-3.0.ebuild index baa1f1be41d2..ece1a7adc9c1 100644 --- a/dev-python/fonttools/fonttools-3.0.ebuild +++ b/dev-python/fonttools/fonttools-3.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/fonttools/fonttools/archive/${PV}.tar.gz -> ${P}.tar LICENSE="BSD" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 sparc x86" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 s390 sparc x86" IUSE="" DEPEND=">=dev-python/numpy-1.0.2[${PYTHON_USEDEP}]" diff --git a/dev-python/fonttools/fonttools-3.20.1.ebuild b/dev-python/fonttools/fonttools-3.20.1.ebuild index f7f3da947a6c..4490d786c115 100644 --- a/dev-python/fonttools/fonttools-3.20.1.ebuild +++ b/dev-python/fonttools/fonttools-3.20.1.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/fonttools/fonttools/archive/${PV}.tar.gz -> ${P}.tar LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" IUSE="test" RDEPEND="" diff --git a/dev-python/fonttools/fonttools-3.21.1.ebuild b/dev-python/fonttools/fonttools-3.21.1.ebuild index 05b98a8b6b8d..d92e4bf9f85d 100644 --- a/dev-python/fonttools/fonttools-3.21.1.ebuild +++ b/dev-python/fonttools/fonttools-3.21.1.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/fonttools/fonttools/archive/${PV}.tar.gz -> ${P}.tar LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd" IUSE="test" RDEPEND="" diff --git a/dev-python/fonttools/fonttools-3.24.0.ebuild b/dev-python/fonttools/fonttools-3.24.0.ebuild index 05b98a8b6b8d..d92e4bf9f85d 100644 --- a/dev-python/fonttools/fonttools-3.24.0.ebuild +++ b/dev-python/fonttools/fonttools-3.24.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/fonttools/fonttools/archive/${PV}.tar.gz -> ${P}.tar LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd" IUSE="test" RDEPEND="" diff --git a/dev-python/fonttools/fonttools-3.24.1.ebuild b/dev-python/fonttools/fonttools-3.24.1.ebuild index e2594c28365a..84eddb375232 100644 --- a/dev-python/fonttools/fonttools-3.24.1.ebuild +++ b/dev-python/fonttools/fonttools-3.24.1.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/fonttools/fonttools/archive/${PV}.tar.gz -> ${P}.tar LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd" IUSE="test" RDEPEND="" diff --git a/dev-python/fonttools/fonttools-3.24.2.ebuild b/dev-python/fonttools/fonttools-3.24.2.ebuild index e2594c28365a..84eddb375232 100644 --- a/dev-python/fonttools/fonttools-3.24.2.ebuild +++ b/dev-python/fonttools/fonttools-3.24.2.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/fonttools/fonttools/archive/${PV}.tar.gz -> ${P}.tar LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd" IUSE="test" RDEPEND="" diff --git a/dev-python/fonttools/fonttools-3.28.0.ebuild b/dev-python/fonttools/fonttools-3.28.0.ebuild index 368e5345337e..af157d1f615e 100644 --- a/dev-python/fonttools/fonttools-3.28.0.ebuild +++ b/dev-python/fonttools/fonttools-3.28.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/fonttools/fonttools/archive/${PV}.tar.gz -> ${P}.tar LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd" IUSE="test" RDEPEND="" diff --git a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild index 6f23d1222a43..39da5c75617d 100644 --- a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild +++ b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" SLOT="0" LICENSE="Apache-2.0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux" IUSE="test" DEPEND=" diff --git a/dev-python/ioflo/ioflo-1.7.4.ebuild b/dev-python/ioflo/ioflo-1.7.4.ebuild index 6bc509dcef22..c9bb199ea62e 100644 --- a/dev-python/ioflo/ioflo-1.7.4.ebuild +++ b/dev-python/ioflo/ioflo-1.7.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -15,5 +15,9 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - >=dev-python/setuptools-git-1.1[${PYTHON_USEDEP}]" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +python_prepare_all() { + sed -e 's:"setuptools_git[^"]*",::' -i setup.py || die + distutils-r1_python_prepare_all +} diff --git a/dev-python/mimeparse/mimeparse-1.6.0.ebuild b/dev-python/mimeparse/mimeparse-1.6.0.ebuild index 4304ed8854ec..89383fbb4477 100644 --- a/dev-python/mimeparse/mimeparse-1.6.0.ebuild +++ b/dev-python/mimeparse/mimeparse-1.6.0.ebuild @@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" IUSE="" S="${WORKDIR}/${MY_P}" diff --git a/dev-python/pastedeploy/pastedeploy-1.5.2-r1.ebuild b/dev-python/pastedeploy/pastedeploy-1.5.2-r1.ebuild index f23af57e0f7c..eb55df773b5f 100644 --- a/dev-python/pastedeploy/pastedeploy-1.5.2-r1.ebuild +++ b/dev-python/pastedeploy/pastedeploy-1.5.2-r1.ebuild @@ -16,7 +16,7 @@ SRC_URI="https://bitbucket.org/ianb/pastedeploy/get/${PV}.tar.gz -> ${P}-r1.tar. LICENSE="MIT" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" IUSE="doc test" RDEPEND="dev-python/namespace-paste[${PYTHON_USEDEP}] diff --git a/dev-python/pytest-forked/pytest-forked-0.2.ebuild b/dev-python/pytest-forked/pytest-forked-0.2.ebuild index ffb369e51442..f073c8b7d42c 100644 --- a/dev-python/pytest-forked/pytest-forked-0.2.ebuild +++ b/dev-python/pytest-forked/pytest-forked-0.2.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" SLOT="0" LICENSE="MIT" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd" IUSE="test" RDEPEND=" diff --git a/dev-python/singledispatch/singledispatch-3.4.0.3.ebuild b/dev-python/singledispatch/singledispatch-3.4.0.3.ebuild index 176fc1e7e058..ce795777ee4b 100644 --- a/dev-python/singledispatch/singledispatch-3.4.0.3.ebuild +++ b/dev-python/singledispatch/singledispatch-3.4.0.3.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${PF}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 s390 sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" IUSE="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" diff --git a/dev-python/snakeoil/snakeoil-0.7.5.ebuild b/dev-python/snakeoil/snakeoil-0.7.5.ebuild index f0dbfe431f4a..2048fb505f05 100644 --- a/dev-python/snakeoil/snakeoil-0.7.5.ebuild +++ b/dev-python/snakeoil/snakeoil-0.7.5.ebuild @@ -10,7 +10,7 @@ if [[ ${PV} == *9999 ]] ; then EGIT_REPO_URI="https://github.com/pkgcore/snakeoil.git" inherit git-r3 else - KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86" + KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86" SRC_URI="https://github.com/pkgcore/snakeoil/releases/download/v${PV}/${P}.tar.gz" fi diff --git a/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.0.1-r1.ebuild b/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.0.1-r1.ebuild index d3a35643ea92..0cfb52983d55 100644 --- a/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.0.1-r1.ebuild +++ b/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.0.1-r1.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD-2" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-solaris" IUSE="test" RDEPEND=" diff --git a/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild b/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild index 4cd1c7bc186c..a03f6c0a8cb8 100644 --- a/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild +++ b/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-solaris" +KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-solaris" IUSE="test" RDEPEND=" diff --git a/dev-python/testscenarios/testscenarios-0.5.0.ebuild b/dev-python/testscenarios/testscenarios-0.5.0.ebuild index 87db01559867..960992a0261e 100644 --- a/dev-python/testscenarios/testscenarios-0.5.0.ebuild +++ b/dev-python/testscenarios/testscenarios-0.5.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~amd64-fbsd" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux" IUSE="test" RDEPEND=" diff --git a/dev-python/webob/webob-1.7.4.ebuild b/dev-python/webob/webob-1.7.4.ebuild index f1357fa7af0c..647bb643441c 100644 --- a/dev-python/webob/webob-1.7.4.ebuild +++ b/dev-python/webob/webob-1.7.4.ebuild @@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="doc test" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] diff --git a/dev-python/wxpython/Manifest b/dev-python/wxpython/Manifest index dfefe577e68c..7c15b2e20090 100644 --- a/dev-python/wxpython/Manifest +++ b/dev-python/wxpython/Manifest @@ -1,6 +1,2 @@ -DIST wxPython-demo-2.8.12.1.tar.bz2 3906851 BLAKE2B 73e6b662b0f8a0ca719cc21bee8a457b7175231547b495d29be0733e48e2ac16e739b6a3a25fd0de643dfbbe5dbde07e36b983746bcf873a16d0f35598f505a4 SHA512 aab71cf4e4fb6632afd4607cbe5cdef6785c4ed3f1c7f67d6cef5487d1caee2f7652bfd974ba95a6a03e8d7809c94e291aca00c2fdf74ea29e118e1e30c947d5 DIST wxPython-demo-3.0.2.0.tar.bz2 3992212 BLAKE2B 9defe133e3863be5ae07b7adb4bcb94688487e9dd9f5ab1f768d2f5942f30d05ff678f1ba74241d9bafde3584e3c68ffeae4978117aaa300e23165140e6a6d44 SHA512 361ecaa7dfe5bae0757e04215c564370eaf8e5260ead45007f9d70439c15701725c3cbcd76691a5191258bef24fd200ebd61347a3fd920d888137bfc98a16702 -DIST wxPython-docs-2.8.12.1.tar.bz2 2331363 BLAKE2B f3d640bb8a7da2880e8ec5c30797381320943a618ace7844818036d6a9137cbfd1187281e751efefb0cb3b39543dc85f833773abcc2334a226f815b93eacb5da SHA512 88591ef4f61bcbac29050d7dfecc230f7338cc006e7c3abc072b15da478e4fd994ab73ee5d072cb8b84f9de62ce182f1774354b0a7a4502ea639e59fdf965358 -DIST wxPython-newdocs-2.8.9.2.tar.bz2 1503913 BLAKE2B c56937a0f582ab123f5e6019aa8b84a56d04d6d18ccec6ab103c7443decc68f008585f71137e6da25c5d1d5c483845e688e5e175712312bc94b03876d0a986e6 SHA512 e114b2b44a7fd3ac292ca9735fb2e075459211384bc98d62ff2ba49e45111825101e74abd4af2ab0e5e52ede7b831641367c11a5c80e79f2da6ada3442463bfc -DIST wxPython-src-2.8.12.1.tar.bz2 31311482 BLAKE2B 33b3feb5f1182948badcd5695b35a68c673e36694a2db8c77b0b031b185c94c9f8bcf4753d9cbf8937e99a72f4c393d6f79850ed3d730af20a7263b97c620386 SHA512 4f826ccb57d5f4fc03fe7cae67499be70c727a99aebf9d153ea1060a21641642606d44d079ba897c38b176846336aeaebc21d30d5c7a0abec3934d65cf4529f3 DIST wxPython-src-3.0.2.0.tar.bz2 58304944 BLAKE2B 1144acf2cfa0a18aa2f90aabe81aaeca54d3fe6139818267dbc031accbae38035478a64ec084fe8bb8b89126fb70ff96e68981026df8ad3fc82e81c6d0e22d1a SHA512 a3798e89ff19344253aac7d771971e519f7fa9723e82bd97e98f16fd7f1572e513170b02295b872dae0b1ae3fa95efc4ef34d078045b839694b4fdad3a27c9e4 diff --git a/dev-python/wxpython/files/wxpython-2.8-cache-writable.patch b/dev-python/wxpython/files/wxpython-2.8-cache-writable.patch deleted file mode 100644 index 57f26b37c2e8..000000000000 --- a/dev-python/wxpython/files/wxpython-2.8-cache-writable.patch +++ /dev/null @@ -1,20 +0,0 @@ -Use /tmp for cache files since the user won't have -write permissions on ${DOCDIR}. - -diff -Naurp docs-orig/viewdocs.py docs/viewdocs.py ---- docs-orig/viewdocs.py 2008-09-28 15:59:16.000000000 -0600 -+++ docs/viewdocs.py 2009-01-18 00:16:27.000000000 -0600 -@@ -16,11 +16,11 @@ if not basePath: - - - # test for write access --if os.access(basePath, os.W_OK): -+if os.access('/tmp', os.W_OK): - - # setup the args - args = ['', -- '--cache='+basePath, -+ '--cache=/tmp', - os.path.join(basePath, 'wx.zip'), - ] - diff --git a/dev-python/wxpython/files/wxpython-2.8-wxversion-demo.patch b/dev-python/wxpython/files/wxpython-2.8-wxversion-demo.patch deleted file mode 100644 index 97829198a0b2..000000000000 --- a/dev-python/wxpython/files/wxpython-2.8-wxversion-demo.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- demo/demo.org 2005-04-28 03:00:13.431583384 +0000 -+++ demo/demo.py 2005-04-28 03:00:31.886777768 +0000 -@@ -1,4 +1,7 @@ - #!/usr/bin/env python - -+import wxversion -+wxversion.select("2.8") -+ - import Main - Main.main() diff --git a/dev-python/wxpython/files/wxpython-2.8.12-drop-categories.patch b/dev-python/wxpython/files/wxpython-2.8.12-drop-categories.patch deleted file mode 100644 index d860238e94de..000000000000 --- a/dev-python/wxpython/files/wxpython-2.8.12-drop-categories.patch +++ /dev/null @@ -1,37 +0,0 @@ -Fix QA issue wrt Bug 457586 -diff -ur wxPython-src-2.8.12.1.orig/wxPython/distrib/PyAlaMode.desktop wxPython-src-2.8.12.1/wxPython/distrib/PyAlaMode.desktop ---- distrib/PyAlaMode.desktop 2007-07-19 06:33:55.000000000 +0800 -+++ distrib/PyAlaMode.desktop 2013-03-04 13:48:51.737419595 +0800 -@@ -5,4 +5,4 @@ - Icon=PyCrust.png - Terminal=false - Type=Application --Categories=Application;Development; -+Categories=Development; -diff -ur wxPython-src-2.8.12.1.orig/wxPython/distrib/PyCrust.desktop wxPython-src-2.8.12.1/wxPython/distrib/PyCrust.desktop ---- distrib/PyCrust.desktop 2007-07-19 06:33:55.000000000 +0800 -+++ distrib/PyCrust.desktop 2013-03-04 13:49:12.209418445 +0800 -@@ -5,4 +5,4 @@ - Icon=PyCrust.png - Terminal=false - Type=Application --Categories=Application;Development; -+Categories=Development; -diff -ur wxPython-src-2.8.12.1.orig/wxPython/distrib/PyShell.desktop wxPython-src-2.8.12.1/wxPython/distrib/PyShell.desktop ---- distrib/PyShell.desktop 2007-07-19 06:33:55.000000000 +0800 -+++ distrib/PyShell.desktop 2013-03-04 13:49:28.713417518 +0800 -@@ -5,4 +5,4 @@ - Icon=PyCrust.png - Terminal=false - Type=Application --Categories=Application;Development; -+Categories=Development; -diff -ur wxPython-src-2.8.12.1.orig/wxPython/distrib/XRCed.desktop wxPython-src-2.8.12.1/wxPython/distrib/XRCed.desktop ---- distrib/XRCed.desktop 2007-07-19 06:33:55.000000000 +0800 -+++ distrib/XRCed.desktop 2013-03-04 13:49:46.345416526 +0800 -@@ -5,4 +5,4 @@ - Icon=XRCed.png - Terminal=false - Type=Application --Categories=Application;Development; -+Categories=Development; diff --git a/dev-python/wxpython/files/wxpython-2.8.12-drop-editra.patch b/dev-python/wxpython/files/wxpython-2.8.12-drop-editra.patch deleted file mode 100644 index 4b49f30a1385..000000000000 --- a/dev-python/wxpython/files/wxpython-2.8.12-drop-editra.patch +++ /dev/null @@ -1,55 +0,0 @@ ---- a/wxPython/setup.py -+++ b/wxPython/setup.py -@@ -887,20 +887,6 @@ WX_PKGLIST = [ 'wx', - 'wx.tools', - 'wx.tools.XRCed', - 'wx.tools.XRCed.plugins', -- 'wx.tools.Editra', -- 'wx.tools.Editra.src', -- 'wx.tools.Editra.src.autocomp', -- 'wx.tools.Editra.src.eclib', -- 'wx.tools.Editra.src.ebmlib', -- 'wx.tools.Editra.src.extern', -- 'wx.tools.Editra.src.extern.aui', -- 'wx.tools.Editra.src.extern.dexml', -- 'wx.tools.Editra.src.extern.pygments', -- 'wx.tools.Editra.src.extern.pygments.filters', -- 'wx.tools.Editra.src.extern.pygments.formatters', -- 'wx.tools.Editra.src.extern.pygments.lexers', -- 'wx.tools.Editra.src.extern.pygments.styles', -- 'wx.tools.Editra.src.syntax', - ] - - if not EGGing: -@@ -927,7 +913,6 @@ else: - opj('scripts/pywrap'), - opj('scripts/pywxrc'), - opj('scripts/xrced'), -- opj('scripts/editra'), - ] - if os.name == 'nt': - SCRIPTS.append( opj('scripts/genaxmodule') ) -@@ -941,15 +926,6 @@ DATA_FILES += find_data_files('wx/tools/XRCed', '*.txt', '*.xrc', '*.htb') - DATA_FILES += find_data_files('wx/tools/XRCed/plugins', '*.crx') - DATA_FILES += find_data_files('wx/tools/XRCed/plugins/bitmaps', '*.png') - --DATA_FILES += find_data_files('wx/tools/Editra/docs', '*.txt') --DATA_FILES += find_data_files('wx/tools/Editra/locale', '*.mo') --DATA_FILES += find_data_files('wx/tools/Editra/pixmaps', -- '*.png', '*.icns', '*.ico', 'README', 'AUTHORS', 'COPYING') --DATA_FILES += find_data_files('wx/tools/Editra/plugins', '*.egg') --DATA_FILES += find_data_files('wx/tools/Editra/src', 'README') --DATA_FILES += find_data_files('wx/tools/Editra/styles', '*.ess') --DATA_FILES += find_data_files('wx/tools/Editra/tests/syntax', '*') --DATA_FILES += find_data_files('wx/tools/Editra', '[A-Z]*', recursive=False) - - - ## import pprint -@@ -1000,7 +976,6 @@ if EGGing: - 'pyshell = wx.py.PyShell:main', - 'pywrap = wx.py.PyWrap:main', - 'helpviewer = wx.tools.helpviewer:main', -- 'editra = wx.tools.Editra.launcher:main', - 'xrced = wx.tools.XRCed.xrced:main', - ], - }, diff --git a/dev-python/wxpython/files/wxpython-2.8.9-wxversion-scripts.patch b/dev-python/wxpython/files/wxpython-2.8.9-wxversion-scripts.patch deleted file mode 100644 index 6a4567812308..000000000000 --- a/dev-python/wxpython/files/wxpython-2.8.9-wxversion-scripts.patch +++ /dev/null @@ -1,191 +0,0 @@ -diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/distrib/PyAlaMode.desktop wxPython-src-2.8.9.2/wxPython/distrib/PyAlaMode.desktop ---- wxPython-src-2.8.9.2-orig/wxPython/distrib/PyAlaMode.desktop 2007-07-18 16:33:55.000000000 -0600 -+++ wxPython-src-2.8.9.2/wxPython/distrib/PyAlaMode.desktop 2009-02-21 15:04:55.000000000 -0600 -@@ -1,8 +1,8 @@ - [Desktop Entry] --Name=PyAlaMode -+Name=PyAlaMode (2.8) - Comment=GUI Python Shell with Filling and editor windows --Exec=pyalamode --Icon=PyCrust.png -+Exec=pyalamode-2.8 -+Icon=/usr/share/pixmaps/PyCrust.png - Terminal=false - Type=Application - Categories=Application;Development; -diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/distrib/PyCrust.desktop wxPython-src-2.8.9.2/wxPython/distrib/PyCrust.desktop ---- wxPython-src-2.8.9.2-orig/wxPython/distrib/PyCrust.desktop 2007-07-18 16:33:55.000000000 -0600 -+++ wxPython-src-2.8.9.2/wxPython/distrib/PyCrust.desktop 2009-02-21 15:06:42.000000000 -0600 -@@ -1,8 +1,8 @@ - [Desktop Entry] --Name=PyCrust -+Name=PyCrust (2.8) - Comment=GUI Python Shell with Filling --Exec=pycrust --Icon=PyCrust.png -+Exec=pycrust-2.8 -+Icon=/usr/share/pixmaps/PyCrust.png - Terminal=false - Type=Application - Categories=Application;Development; -diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/distrib/PyShell.desktop wxPython-src-2.8.9.2/wxPython/distrib/PyShell.desktop ---- wxPython-src-2.8.9.2-orig/wxPython/distrib/PyShell.desktop 2007-07-18 16:33:55.000000000 -0600 -+++ wxPython-src-2.8.9.2/wxPython/distrib/PyShell.desktop 2009-02-21 15:08:19.000000000 -0600 -@@ -1,8 +1,8 @@ - [Desktop Entry] --Name=PyShell -+Name=PyShell (2.8) - Comment=GUI Python Shell --Exec=pyshell --Icon=PyCrust.png -+Exec=pyshell-2.8 -+Icon=/usr/share/pixmaps/PyCrust.png - Terminal=false - Type=Application - Categories=Application;Development; -diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/distrib/XRCed.desktop wxPython-src-2.8.9.2/wxPython/distrib/XRCed.desktop ---- wxPython-src-2.8.9.2-orig/wxPython/distrib/XRCed.desktop 2007-07-18 16:33:55.000000000 -0600 -+++ wxPython-src-2.8.9.2/wxPython/distrib/XRCed.desktop 2009-02-21 15:09:22.000000000 -0600 -@@ -1,8 +1,8 @@ - [Desktop Entry] --Name=XRCed -+Name=XRCed (2.8) - Comment=wxPython XRC resource editor --Exec=xrced --Icon=XRCed.png -+Exec=xrced-2.8 -+Icon=/usr/share/pixmaps/XRCed.png - Terminal=false - Type=Application - Categories=Application;Development; -diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/editra wxPython-src-2.8.9.2/wxPython/scripts/editra ---- wxPython-src-2.8.9.2-orig/wxPython/scripts/editra 2008-02-29 14:32:17.000000000 -0600 -+++ wxPython-src-2.8.9.2/wxPython/scripts/editra 2009-02-21 15:03:24.000000000 -0600 -@@ -1,4 +1,6 @@ - #!/usr/bin/env python -+import wxversion -+wxversion.select("2.8") - - from wx.tools.Editra.launcher import main - main() -diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/genaxmodule wxPython-src-2.8.9.2/wxPython/scripts/genaxmodule ---- wxPython-src-2.8.9.2-orig/wxPython/scripts/genaxmodule 2008-02-29 14:32:17.000000000 -0600 -+++ wxPython-src-2.8.9.2/wxPython/scripts/genaxmodule 2009-02-21 15:03:24.000000000 -0600 -@@ -1,4 +1,6 @@ - #!/usr/bin/env python -+import wxversion -+wxversion.select("2.8") - - from wx.tools.genaxmodule import main - main() -diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/helpviewer wxPython-src-2.8.9.2/wxPython/scripts/helpviewer ---- wxPython-src-2.8.9.2-orig/wxPython/scripts/helpviewer 2007-07-18 16:33:55.000000000 -0600 -+++ wxPython-src-2.8.9.2/wxPython/scripts/helpviewer 2009-02-21 15:03:24.000000000 -0600 -@@ -1,4 +1,6 @@ - #!/usr/bin/env python -+import wxversion -+wxversion.select("2.8") - - from wx.tools.helpviewer import main - main() -diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/img2png wxPython-src-2.8.9.2/wxPython/scripts/img2png ---- wxPython-src-2.8.9.2-orig/wxPython/scripts/img2png 2007-07-18 16:33:55.000000000 -0600 -+++ wxPython-src-2.8.9.2/wxPython/scripts/img2png 2009-02-21 15:03:24.000000000 -0600 -@@ -1,4 +1,6 @@ - #!/usr/bin/env python -+import wxversion -+wxversion.select("2.8") - - from wx.tools.img2png import main - main() -diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/img2py wxPython-src-2.8.9.2/wxPython/scripts/img2py ---- wxPython-src-2.8.9.2-orig/wxPython/scripts/img2py 2008-02-29 14:32:17.000000000 -0600 -+++ wxPython-src-2.8.9.2/wxPython/scripts/img2py 2009-02-21 15:03:24.000000000 -0600 -@@ -1,4 +1,6 @@ - #!/usr/bin/env python -+import wxversion -+wxversion.select("2.8") - - from wx.tools.img2py import main - main() -diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/img2xpm wxPython-src-2.8.9.2/wxPython/scripts/img2xpm ---- wxPython-src-2.8.9.2-orig/wxPython/scripts/img2xpm 2007-07-18 16:33:55.000000000 -0600 -+++ wxPython-src-2.8.9.2/wxPython/scripts/img2xpm 2009-02-21 15:03:24.000000000 -0600 -@@ -1,4 +1,6 @@ - #!/usr/bin/env python -+import wxversion -+wxversion.select("2.8") - - from wx.tools.img2xpm import main - main() -diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/pyalacarte wxPython-src-2.8.9.2/wxPython/scripts/pyalacarte ---- wxPython-src-2.8.9.2-orig/wxPython/scripts/pyalacarte 2007-07-18 16:33:55.000000000 -0600 -+++ wxPython-src-2.8.9.2/wxPython/scripts/pyalacarte 2009-02-21 15:03:24.000000000 -0600 -@@ -1,4 +1,6 @@ - #!/usr/bin/env python -+import wxversion -+wxversion.select("2.8") - - from wx.py.PyAlaCarte import main - main() -diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/pyalamode wxPython-src-2.8.9.2/wxPython/scripts/pyalamode ---- wxPython-src-2.8.9.2-orig/wxPython/scripts/pyalamode 2007-07-18 16:33:55.000000000 -0600 -+++ wxPython-src-2.8.9.2/wxPython/scripts/pyalamode 2009-02-21 15:03:24.000000000 -0600 -@@ -1,4 +1,6 @@ - #!/usr/bin/env python -+import wxversion -+wxversion.select("2.8") - - from wx.py.PyAlaMode import main - main() -diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/pycrust wxPython-src-2.8.9.2/wxPython/scripts/pycrust ---- wxPython-src-2.8.9.2-orig/wxPython/scripts/pycrust 2007-07-18 16:33:55.000000000 -0600 -+++ wxPython-src-2.8.9.2/wxPython/scripts/pycrust 2009-02-21 15:03:24.000000000 -0600 -@@ -1,4 +1,6 @@ - #!/usr/bin/env python -+import wxversion -+wxversion.select("2.8") - - from wx.py.PyCrust import main - main() -diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/pyshell wxPython-src-2.8.9.2/wxPython/scripts/pyshell ---- wxPython-src-2.8.9.2-orig/wxPython/scripts/pyshell 2007-07-18 16:33:55.000000000 -0600 -+++ wxPython-src-2.8.9.2/wxPython/scripts/pyshell 2009-02-21 15:03:24.000000000 -0600 -@@ -1,4 +1,6 @@ - #!/usr/bin/env python -+import wxversion -+wxversion.select("2.8") - - from wx.py.PyShell import main - main() -diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/pywrap wxPython-src-2.8.9.2/wxPython/scripts/pywrap ---- wxPython-src-2.8.9.2-orig/wxPython/scripts/pywrap 2007-07-18 16:33:55.000000000 -0600 -+++ wxPython-src-2.8.9.2/wxPython/scripts/pywrap 2009-02-21 15:03:24.000000000 -0600 -@@ -1,4 +1,6 @@ - #!/usr/bin/env python -+import wxversion -+wxversion.select("2.8") - - from wx.py.PyWrap import main - main() -diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/pywxrc wxPython-src-2.8.9.2/wxPython/scripts/pywxrc ---- wxPython-src-2.8.9.2-orig/wxPython/scripts/pywxrc 2008-02-29 14:32:17.000000000 -0600 -+++ wxPython-src-2.8.9.2/wxPython/scripts/pywxrc 2009-02-21 15:09:58.000000000 -0600 -@@ -1,5 +1,7 @@ - #!/usr/bin/env python - -+import wxversion -+wxversion.select("2.8") - from wx.tools.pywxrc import main - main() - -diff -Naurp wxPython-src-2.8.9.2-orig/wxPython/scripts/xrced wxPython-src-2.8.9.2/wxPython/scripts/xrced ---- wxPython-src-2.8.9.2-orig/wxPython/scripts/xrced 2007-07-18 16:33:55.000000000 -0600 -+++ wxPython-src-2.8.9.2/wxPython/scripts/xrced 2009-02-21 15:03:24.000000000 -0600 -@@ -1,4 +1,6 @@ - #!/usr/bin/env python -+import wxversion -+wxversion.select("2.8") - - from wx.tools.XRCed.xrced import main - main() diff --git a/dev-python/wxpython/metadata.xml b/dev-python/wxpython/metadata.xml index d87904c379c4..f6588d2f5c36 100644 --- a/dev-python/wxpython/metadata.xml +++ b/dev-python/wxpython/metadata.xml @@ -11,7 +11,6 @@ Install interactive demo module browser and sample applets. - Install HTML wxWidgets docs and wxpython API reference. wxpython diff --git a/dev-python/wxpython/wxpython-2.8.12.1-r2.ebuild b/dev-python/wxpython/wxpython-2.8.12.1-r2.ebuild deleted file mode 100644 index bb3bb88a6dd3..000000000000 --- a/dev-python/wxpython/wxpython-2.8.12.1-r2.ebuild +++ /dev/null @@ -1,194 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) -WX_GTK_VER="2.8" - -inherit alternatives distutils-r1 eutils fdo-mime flag-o-matic wxwidgets - -MY_P="${P/wxpython-/wxPython-src-}" - -DESCRIPTION="A blending of the wxWindows C++ class library with Python" -HOMEPAGE="http://www.wxpython.org/" -SRC_URI=" - mirror://sourceforge/wxpython/${MY_P}.tar.bz2 - doc? ( - mirror://sourceforge/wxpython/wxPython-docs-${PV}.tar.bz2 - mirror://sourceforge/wxpython/wxPython-newdocs-2.8.9.2.tar.bz2 ) - examples? ( mirror://sourceforge/wxpython/wxPython-demo-${PV}.tar.bz2 )" - -LICENSE="wxWinLL-3" -SLOT="2.8" -KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd" -IUSE="cairo doc examples opengl" - -RDEPEND=" - dev-lang/python-exec:2[${PYTHON_USEDEP}] - >=x11-libs/wxGTK-${PV}:${WX_GTK_VER}[opengl?,tiff,X] - dev-libs/glib:2 - dev-python/setuptools[${PYTHON_USEDEP}] - media-libs/libpng:0= - media-libs/tiff:0 - virtual/jpeg - x11-libs/gtk+:2 - x11-libs/pango[X] - cairo? ( >=dev-python/pycairo-1.8.4[${PYTHON_USEDEP}] ) - opengl? ( dev-python/pyopengl[${PYTHON_USEDEP}] )" - -DEPEND="${RDEPEND} - virtual/pkgconfig" - -S="${WORKDIR}/${MY_P}/wxPython" -DOC_S="${WORKDIR}/wxPython-${PV}" - -# The hacky build system seems to be broken with out-of-source builds, -# and installs 'wx' package globally. -DISTUTILS_IN_SOURCE_BUILD=1 - -python_prepare_all() { - sed -i "s:cflags.append('-O3'):pass:" config.py || die "sed failed" - - if use doc; then - cd "${DOC_S}" || die - epatch "${FILESDIR}"/${PN}-${SLOT}-cache-writable.patch - fi - - if use examples; then - cd "${DOC_S}" || die - epatch "${FILESDIR}"/${PN}-${SLOT}-wxversion-demo.patch - fi - - cd "${S}" || die - - local PATCHES=( - "${FILESDIR}"/${PN}-2.8.9-wxversion-scripts.patch - # drop editra - we have it as a separate package now - "${FILESDIR}"/${PN}-2.8.12-drop-editra.patch - "${FILESDIR}"/${PN}-2.8.12-drop-categories.patch - "${FILESDIR}"/${PN}-2.8-no-preservatives-added.patch - # fix handling egg_info command - "${FILESDIR}"/${PN}-2.8.12.1-disable-egging-mode.patch - ) - - distutils-r1_python_prepare_all -} - -python_configure_all() { - append-flags -fno-strict-aliasing - # Workaround, buildsystem uses CFLAGS as CXXFLAGS - export CFLAGS="${CXXFLAGS}" - need-wxwidgets unicode - - mydistutilsargs=( - WX_CONFIG="${WX_CONFIG}" - WXPORT=gtk2 - UNICODE=1 - BUILD_GLCANVAS=$(usex opengl 1 0) - ) -} - -python_compile() { - # We need to have separate libdirs due to hackery, bug #455332. - distutils-r1_python_compile \ - build --build-purelib "${BUILD_DIR}"/lib.common -} - -python_install() { - distutils-r1_python_install \ - build --build-purelib "${BUILD_DIR}"/lib.common - - # adjust the filenames for wxPython slots. - local file - for file in "${D}$(python_get_sitedir)"/wx{version.*,.pth}; do - mv "${file}" "${file}-${SLOT}" || die - done - cd "${ED}"usr/lib/python-exec/"${EPYTHON}" || die - for file in *; do - mv "${file}" "${file}-${SLOT}" || die - - # wrappers are common to all impls, so a parallel run may - # move it for us. ln+rm is more failure-proof. - ln -fs ../lib/python-exec/python-exec2 "${ED}usr/bin/${file}-${SLOT}" || die - rm -f "${ED}usr/bin/${file}" - done -} - -python_install_all() { - dodoc docs/{CHANGES,PyManual,README,wxPackage,wxPythonManual}.txt - - domenu distrib/{Py{AlaMode,Crust,Shell},XRCed}.desktop - newicon wx/py/PyCrust_32.png PyCrust.png - newicon wx/tools/XRCed/XRCed_32.png XRCed.png - - docdir=${D}usr/share/doc/${PF} - - if use doc; then - docinto docs - dodoc -r "${DOC_S}"/docs/. - # For some reason newer API docs aren't available so use 2.8.9.2's - dodoc -r "${WORKDIR}"/wxPython-2.8.9.2/docs/. - - docompress -x /usr/share/doc/${PF}/docs - fi - - if use examples; then - docinto demo - dodoc -r "${DOC_S}"/demo/. - docinto samples - dodoc -r "${DOC_S}"/samples/. - - [[ -e ${docdir}/samples/embedded/embedded ]] \ - && rm -f "${docdir}"/samples/embedded/embedded - - docompress -x /usr/share/doc/${PF}/{demo,samples} - fi - distutils-r1_python_install_all -} - -pkg_postinst() { - fdo-mime_desktop_database_update - - create_symlinks() { - alternatives_auto_makesym "$(python_get_sitedir)/wx.pth" "$(python_get_sitedir)/wx.pth-[0-9].[0-9]" - alternatives_auto_makesym "$(python_get_sitedir)/wxversion.py" "$(python_get_sitedir)/wxversion.py-[0-9].[0-9]" - } - python_foreach_impl create_symlinks - - echo - elog "Gentoo uses the Multi-version method for SLOT'ing." - elog "Developers, see this site for instructions on using" - elog "2.6 or 2.8 with your apps:" - elog "http://wiki.wxpython.org/index.cgi/MultiVersionInstalls" - if use doc; then - echo - elog "To access the general wxWidgets documentation, run" - elog "/usr/share/doc/${PF}/docs/viewdocs.py" - echo - elog "wxPython documentation is available by pointing a browser" - elog "at /usr/share/doc/${PF}/docs/api/index.html" - fi - if use examples; then - echo - elog "The demo.py app which contains hundreds of demo modules" - elog "with documentation and source code has been installed at" - elog "/usr/share/doc/${PF}/demo/demo.py" - echo - elog "Many more example apps and modules can be found in" - elog "/usr/share/doc/${PF}/samples/" - fi - echo - elog "Editra is not packaged with wxpython in Gentoo." - elog "You can find it in the tree as app-editors/editra" -} - -pkg_postrm() { - fdo-mime_desktop_database_update - - update_symlinks() { - alternatives_auto_makesym "$(python_get_sitedir)/wx.pth" "$(python_get_sitedir)/wx.pth-[0-9].[0-9]" - alternatives_auto_makesym "$(python_get_sitedir)/wxversion.py" "$(python_get_sitedir)/wxversion.py-[0-9].[0-9]" - } - python_foreach_impl update_symlinks -} diff --git a/games-mud/Manifest.gz b/games-mud/Manifest.gz index e150aab4e50f..cab2fd191524 100644 Binary files a/games-mud/Manifest.gz and b/games-mud/Manifest.gz differ diff --git a/games-mud/gnome-mud/gnome-mud-9999.ebuild b/games-mud/gnome-mud/gnome-mud-9999.ebuild index 074b3bad3d25..c990ec034066 100644 --- a/games-mud/gnome-mud/gnome-mud-9999.ebuild +++ b/games-mud/gnome-mud/gnome-mud-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -9,7 +9,7 @@ inherit gnome2 git-r3 DESCRIPTION="GNOME MUD client" HOMEPAGE="https://wiki.gnome.org/Apps/GnomeMud" SRC_URI="" -EGIT_REPO_URI="git://git.gnome.org/gnome-mud" +EGIT_REPO_URI="git://gitlab.gnome.org/GNOME/gnome-mud" LICENSE="GPL-2+" SLOT="0" diff --git a/gnome-base/Manifest.gz b/gnome-base/Manifest.gz index a2c7d85d9e64..c944b51741fc 100644 Binary files a/gnome-base/Manifest.gz and b/gnome-base/Manifest.gz differ diff --git a/gnome-base/gdm/gdm-3.24.3-r1.ebuild b/gnome-base/gdm/gdm-3.24.3-r1.ebuild index 4613febe8623..b434e40bb942 100644 --- a/gnome-base/gdm/gdm-3.24.3-r1.ebuild +++ b/gnome-base/gdm/gdm-3.24.3-r1.ebuild @@ -22,7 +22,7 @@ SLOT="0" IUSE="accessibility audit branding fprint +introspection ipv6 plymouth selinux smartcard tcpd test wayland xinerama" -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh x86" +KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh x86" # NOTE: x11-base/xorg-server dep is for X_SERVER_PATH etc, bug #295686 # nspr used by smartcard extension diff --git a/gnome-base/gdm/gdm-3.24.3.ebuild b/gnome-base/gdm/gdm-3.24.3.ebuild deleted file mode 100644 index 6dc61fc310ac..000000000000 --- a/gnome-base/gdm/gdm-3.24.3.ebuild +++ /dev/null @@ -1,211 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -GNOME2_LA_PUNT="yes" - -inherit eutils gnome2 pam readme.gentoo-r1 systemd user versionator - -DESCRIPTION="GNOME Display Manager for managing graphical display servers and user logins" -HOMEPAGE="https://wiki.gnome.org/Projects/GDM" - -SRC_URI="${SRC_URI} - branding? ( https://www.mail-archive.com/tango-artists@lists.freedesktop.org/msg00043/tango-gentoo-v1.1.tar.gz ) -" - -LICENSE=" - GPL-2+ - branding? ( CC-BY-SA-4.0 ) -" - -SLOT="0" - -IUSE="accessibility audit branding fprint +introspection ipv6 plymouth selinux smartcard tcpd test wayland xinerama" - -KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh x86" - -# NOTE: x11-base/xorg-server dep is for X_SERVER_PATH etc, bug #295686 -# nspr used by smartcard extension -# dconf, dbus and g-s-d are needed at install time for dconf update -# We need either systemd or >=openrc-0.12 to restart gdm properly, bug #463784 -COMMON_DEPEND=" - app-text/iso-codes - >=dev-libs/glib-2.36:2[dbus] - >=x11-libs/gtk+-2.91.1:3 - >=gnome-base/dconf-0.20 - >=gnome-base/gnome-settings-daemon-3.1.4 - gnome-base/gsettings-desktop-schemas - >=media-libs/fontconfig-2.5.0:1.0 - >=media-libs/libcanberra-0.4[gtk3] - sys-apps/dbus - >=sys-apps/accountsservice-0.6.35 - - x11-apps/sessreg - x11-base/xorg-server - x11-libs/libXi - x11-libs/libXau - x11-libs/libX11 - x11-libs/libXdmcp - x11-libs/libXext - x11-libs/libXft - x11-libs/libxcb - >=x11-misc/xdg-utils-1.0.2-r3 - - virtual/pam - >=sys-apps/systemd-186:0=[pam] - - sys-auth/pambase[systemd] - - audit? ( sys-process/audit ) - introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) - plymouth? ( sys-boot/plymouth ) - selinux? ( sys-libs/libselinux ) - tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) - xinerama? ( x11-libs/libXinerama ) -" -# XXX: These deps are from session and desktop files in data/ directory -# fprintd is used via dbus by gdm-fingerprint-extension -# gnome-session-3.6 needed to avoid freezing with orca -RDEPEND="${COMMON_DEPEND} - >=gnome-base/gnome-session-3.6 - >=gnome-base/gnome-shell-3.1.90 - x11-apps/xhost - - accessibility? ( - >=app-accessibility/orca-3.10 - gnome-extra/mousetweaks ) - fprint? ( - sys-auth/fprintd - sys-auth/pam_fprint ) - - !gnome-extra/fast-user-switch-applet -" -DEPEND="${COMMON_DEPEND} - app-text/docbook-xml-dtd:4.1.2 - dev-util/gdbus-codegen - >=dev-util/intltool-0.40.0 - dev-util/itstool - virtual/pkgconfig - x11-base/xorg-proto - test? ( >=dev-libs/check-0.9.4 ) -" - -DOC_CONTENTS=" - To make GDM start at boot, run:\n - # systemctl enable gdm.service\n - \n - For passwordless login to unlock your keyring, you need to install - sys-auth/pambase with USE=gnome-keyring and set an empty password - on your keyring. Use app-crypt/seahorse for that.\n - \n - You may need to install app-crypt/coolkey and sys-auth/pam_pkcs11 - for smartcard support -" - -pkg_setup() { - enewgroup gdm - enewgroup video # Just in case it hasn't been created yet - enewuser gdm -1 -1 /var/lib/gdm gdm,video - - # For compatibility with certain versions of nvidia-drivers, etc., need to - # ensure that gdm user is in the video group - if ! egetent group video | grep -q gdm; then - # FIXME XXX: is this at all portable, ldap-safe, etc.? - # XXX: egetent does not have a 1-argument form, so we can't use it to - # get the list of gdm's groups - local g=$(groups gdm) - elog "Adding user gdm to video group" - usermod -G video,${g// /,} gdm || die "Adding user gdm to video group failed" - fi -} - -src_prepare() { - # ssh-agent handling must be done at xinitrc.d, bug #220603 - eapply "${FILESDIR}/${PN}-2.32.0-xinitrc-ssh-agent.patch" - - # Gentoo does not have a fingerprint-auth pam stack - eapply "${FILESDIR}/${PN}-3.8.4-fingerprint-auth.patch" - - # Show logo when branding is enabled - use branding && eapply "${FILESDIR}/${PN}-3.8.4-logo.patch" - - gnome2_src_prepare -} - -src_configure() { - local myconf - # PAM is the only auth scheme supported - # even though configure lists shadow and crypt - # they don't have any corresponding code. - # --with-at-spi-registryd-directory= needs to be passed explicitly because - # of https://bugzilla.gnome.org/show_bug.cgi?id=607643#c4 - # Xevie is obsolete, bug #482304 - # --with-initial-vt=7 conflicts with plymouth, bug #453392 - ! use plymouth && myconf="${myconf} --with-initial-vt=7" - - gnome2_src_configure \ - --enable-gdm-xsession \ - --enable-user-display-server \ - --with-run-dir=/run/gdm \ - --localstatedir="${EPREFIX}"/var \ - --disable-static \ - --with-xdmcp=yes \ - --enable-authentication-scheme=pam \ - --with-default-pam-config=exherbo \ - --with-pam-mod-dir=$(getpam_mod_dir) \ - --with-at-spi-registryd-directory="${EPREFIX}"/usr/libexec \ - --without-xevie \ - --enable-systemd-journal \ - --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" \ - $(use_with audit libaudit) \ - $(use_enable ipv6) \ - $(use_with plymouth) \ - $(use_with selinux) \ - $(use_with tcpd tcp-wrappers) \ - $(use_enable wayland wayland-support) \ - $(use_with xinerama) \ - ${myconf} -} - -src_install() { - gnome2_src_install - - if ! use accessibility ; then - rm "${ED}"/usr/share/gdm/greeter/autostart/orca-autostart.desktop || die - fi - - exeinto /etc/X11/xinit/xinitrc.d - newexe "${FILESDIR}/49-keychain-r1" 49-keychain - newexe "${FILESDIR}/50-ssh-agent-r1" 50-ssh-agent - - # gdm user's home directory - keepdir /var/lib/gdm - fowners gdm:gdm /var/lib/gdm - - # install XDG_DATA_DIRS gdm changes - echo 'XDG_DATA_DIRS="/usr/share/gdm"' > 99xdg-gdm - doenvd 99xdg-gdm - - use branding && newicon "${WORKDIR}/tango-gentoo-v1.1/scalable/gentoo.svg" gentoo-gdm.svg - - readme.gentoo_create_doc -} - -pkg_postinst() { - local d ret - - gnome2_pkg_postinst - - # bug #436456; gdm crashes if /var/lib/gdm subdirs are not owned by gdm:gdm - ret=0 - ebegin "Fixing "${EROOT}"var/lib/gdm ownership" - chown gdm:gdm "${EROOT}var/lib/gdm" || ret=1 - for d in "${EROOT}var/lib/gdm/"{.cache,.config,.local}; do - [[ ! -e "${d}" ]] || chown -R gdm:gdm "${d}" || ret=1 - done - eend ${ret} - - systemd_reenable gdm.service - - readme.gentoo_print_elog -} diff --git a/gnome-base/libgnomeprint/Manifest b/gnome-base/libgnomeprint/Manifest deleted file mode 100644 index f359c322454b..000000000000 --- a/gnome-base/libgnomeprint/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST libgnomeprint-2.18.8.tar.bz2 880489 BLAKE2B e706e227c51b4be17246a86c59a29ec9129ea5dce7a073785debc29d04b2a13e71c731085088242bf4bc7946f7862f8d4c8c67b09afc05dc3e59d6809635a79d SHA512 eca4f118e918f8db04332c3c6df5370ee45497057b44747457b05f0517c55b38271b24cdf7493b8ba24875b2d53d99b5e64d5d63a04cd7fd895cb02ae1606469 diff --git a/gnome-base/libgnomeprint/files/libgnomeprint-2.18.8-bison3.patch b/gnome-base/libgnomeprint/files/libgnomeprint-2.18.8-bison3.patch deleted file mode 100644 index d9fbbdd84fb9..000000000000 --- a/gnome-base/libgnomeprint/files/libgnomeprint-2.18.8-bison3.patch +++ /dev/null @@ -1,39 +0,0 @@ -http://git.pld-linux.org/gitweb.cgi?p=packages/libgnomeprint.git;a=blob;f=bison3.patch - ---- libgnomeprint-2.18.8/libgnomeprint/grammar.y.orig 2010-02-09 13:32:51.000000000 +0100 -+++ libgnomeprint-2.18.8/libgnomeprint/grammar.y 2013-11-03 21:44:59.859877696 +0100 -@@ -6,8 +6,6 @@ - #include - #include - --#define YYPARSE_PARAM graph -- - static void - set_value_from_string (GParamSpec *pspec, GValue *v, const gchar *s) - { -@@ -99,7 +97,7 @@ - } - - static int yylex (void *lvalp); --static int yyerror (const char *s); -+static int yyerror (graph_t *g, const char *s); - %} - - %union { -@@ -117,6 +115,7 @@ - %type

pool - - %pure_parser -+%parse-param { graph_t *graph } - - %start graph - %% -@@ -185,7 +184,7 @@ - %% - - static int --yyerror (const char *s) -+yyerror (graph_t *g, const char *s) - { - return -1; - } diff --git a/gnome-base/libgnomeprint/files/libgnomeprint-2.18.8-cups-config.patch b/gnome-base/libgnomeprint/files/libgnomeprint-2.18.8-cups-config.patch deleted file mode 100644 index 999c6f075203..000000000000 --- a/gnome-base/libgnomeprint/files/libgnomeprint-2.18.8-cups-config.patch +++ /dev/null @@ -1,39 +0,0 @@ -From ffbc68cc8518c7e7263a42d4284b749b40c5e871 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= -Date: Sun, 29 Jun 2014 10:47:41 +0200 -Subject: [PATCH] Use AC_PATH_TOOL to find proper cups-config. - ---- - configure.in | 9 +++++---- - 1 file changed, 5 insertions(+), 4 deletions(-) - -diff --git a/configure.in b/configure.in -index 729278d..186fabf 100644 ---- a/configure.in -+++ b/configure.in -@@ -223,17 +223,18 @@ AC_ARG_WITH(cups, - ) - if test "x$try_cups" = "xyes"; then - PKG_CHECK_MODULES(CUPS, "gmodule-2.0") -+ AC_PATH_TOOL(CUPS_CONFIG, cups-config) - AC_MSG_CHECKING(for CUPS libraries version >= 1.1.20) -- if cups-config --version --libs > /dev/null 2>&1; then -- verstxt=`cups-config --version` -+ if $CUPS_CONFIG --version --libs > /dev/null 2>&1; then -+ verstxt=`$CUPS_CONFIG --version` - vers=`echo "$verstxt" | \ - awk -F. '{ printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'` - if test "$vers" -lt 1001020; then - AC_MSG_RESULT(Cups found but the version found is less than 1.1.20) - cups_msg="Version requirement not satisfied" - else -- CUPS_LIBS="$CUPS_LIBS `cups-config --ldflags` `cups-config --libs`" -- CUPS_CFLAGS="$CUPS_CFLAGS `cups-config --cflags`" -+ CUPS_LIBS="$CUPS_LIBS `$CUPS_CONFIG --ldflags` `$CUPS_CONFIG --libs`" -+ CUPS_CFLAGS="$CUPS_CFLAGS `$CUPS_CONFIG --cflags`" - AC_MSG_RESULT(Found version $verstxt) - fi - --- -2.0.0 - diff --git a/gnome-base/libgnomeprint/files/libgnomeprint-2.18.8-freetype-2.5.1.patch b/gnome-base/libgnomeprint/files/libgnomeprint-2.18.8-freetype-2.5.1.patch deleted file mode 100644 index 1a54e9be5b67..000000000000 --- a/gnome-base/libgnomeprint/files/libgnomeprint-2.18.8-freetype-2.5.1.patch +++ /dev/null @@ -1,91 +0,0 @@ -From e848ee98108ab8c5b12e2167b041b274b4bede83 Mon Sep 17 00:00:00 2001 -From: Lars Wendler -Date: Thu, 8 Oct 2015 11:06:44 +0200 -Subject: [PATCH] Update freetype includes to work with >=freetype-2.5.1 - -Signed-off-by: Lars Wendler ---- - configure.in | 22 +++------------------- - libgnomeprint/gnome-font-face.c | 3 ++- - libgnomeprint/gnome-print-gdi.c | 2 +- - libgnomeprint/gnome-rfont.c | 4 ++-- - 4 files changed, 8 insertions(+), 23 deletions(-) - -diff --git a/configure.in b/configure.in -index c15bb69..aebe591 100644 ---- a/configure.in -+++ b/configure.in -@@ -162,25 +162,9 @@ LDFLAGS="$LDFLAGS $LIBM" - dnl ================================= - dnl Checking for freetype2 - dnl ================================= --FREETYPE_LIBS= --FREETYPE_CFLAGS= --AC_PATH_PROG(FREETYPE_CONFIG, freetype-config, no) --if test "x$FREETYPE_CONFIG" = "xno" ; then -- AC_MSG_ERROR(You need FreeType2 (freetype-devel v 2.x package) for this version of libgnomeprint) --else -- FREETYPE_CFLAGS=`$FREETYPE_CONFIG --cflags` -- FREETYPE_LIBS=`$FREETYPE_CONFIG --libs` --fi -- --libgnomeprint_save_ldflags=$LDFLAGS --LDFLAGS="$LDFLAGS $FREETYPE_LIBS" -- --freetype_version=false --AC_MSG_NOTICE([checking for sufficiently new FreeType (at least 2.0.5)]) --AC_CHECK_LIB(freetype, FT_Get_Postscript_Name,:,[ -- AC_MSG_ERROR(You need FreeType2 (freetype-devel 2.0.5 or greater package) for this version of libgnomeprint)]) -- --LDFLAGS=$libgnomeprint_save_ldflags -+dnl "freetype2 >= 17" means freetype-2.5.1 -+PKG_CHECK_MODULES(FREETYPE, freetype2 >= 17, , -+ [PKG_CHECK_MODULES(FREETYPE, freetype2, [FREETYPE_CFLAGS="$FREETYPE_CFLAGS -I`$PKG_CONFIG --variable=includedir freetype2`/freetype2/freetype"])]) - - dnl ================================= - dnl END: Checking for freetype2 -diff --git a/libgnomeprint/gnome-font-face.c b/libgnomeprint/gnome-font-face.c -index 0447377..23794a8 100644 ---- a/libgnomeprint/gnome-font-face.c -+++ b/libgnomeprint/gnome-font-face.c -@@ -36,7 +36,8 @@ - #include - #include - --#include -+#include -+#include FT_OUTLINE_H - - #include - #include -diff --git a/libgnomeprint/gnome-print-gdi.c b/libgnomeprint/gnome-print-gdi.c -index f89a8e8..7755673 100755 ---- a/libgnomeprint/gnome-print-gdi.c -+++ b/libgnomeprint/gnome-print-gdi.c -@@ -36,7 +36,7 @@ - #include - - #include --#include -+#include FT_FREETYPE_H - - #define WIN32_LEAN_AND_MEAN - #include -diff --git a/libgnomeprint/gnome-rfont.c b/libgnomeprint/gnome-rfont.c -index 55ec261..a71bbda 100644 ---- a/libgnomeprint/gnome-rfont.c -+++ b/libgnomeprint/gnome-rfont.c -@@ -28,8 +28,8 @@ - - #include - #include FT_FREETYPE_H --#include --#include -+#include FT_GLYPH_H -+#include FT_BBOX_H - #include - #include - #include --- -2.6.1 - diff --git a/gnome-base/libgnomeprint/files/libgnomeprint-2.18.8-stdio-include.patch b/gnome-base/libgnomeprint/files/libgnomeprint-2.18.8-stdio-include.patch deleted file mode 100644 index dd9195434e87..000000000000 --- a/gnome-base/libgnomeprint/files/libgnomeprint-2.18.8-stdio-include.patch +++ /dev/null @@ -1,9 +0,0 @@ ---- a/libgnomeprint/modules/cups/gnome-print-cups-transport.c -+++ b/libgnomeprint/modules/cups/gnome-print-cups-transport.c -@@ -34,6 +34,7 @@ - #include - #include - #include -+#include - #include - #include diff --git a/gnome-base/libgnomeprint/libgnomeprint-2.18.8-r1.ebuild b/gnome-base/libgnomeprint/libgnomeprint-2.18.8-r1.ebuild deleted file mode 100644 index 599e35a3daac..000000000000 --- a/gnome-base/libgnomeprint/libgnomeprint-2.18.8-r1.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -GCONF_DEBUG="no" -GNOME_TARBALL_SUFFIX="bz2" - -inherit autotools eutils gnome2 multilib-minimal - -DESCRIPTION="Printer handling for Gnome" -HOMEPAGE="https://www.gnome.org/" - -LICENSE="GPL-2 LGPL-2.1" -SLOT="2.2" -KEYWORDS="alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris" -IUSE="cups doc" - -RDEPEND=">=dev-libs/glib-2.34.3[${MULTILIB_USEDEP}] - >=media-libs/libart_lgpl-2.3.21-r2[${MULTILIB_USEDEP}] - >=x11-libs/pango-1.36.3[${MULTILIB_USEDEP}] - >=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}] - >=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}] - >=media-libs/freetype-2.5.0.1[${MULTILIB_USEDEP}] - >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] - cups? ( - >=net-print/cups-1.7.1-r1[${MULTILIB_USEDEP}] - >=net-print/libgnomecups-0.2.3-r3[${MULTILIB_USEDEP}] )" -DEPEND="${RDEPEND} - sys-devel/gettext - >=dev-util/intltool-0.35 - >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] - sys-devel/flex - sys-devel/bison - doc? ( - ~app-text/docbook-xml-dtd-4.1.2 - >=dev-util/gtk-doc-0.9 )" - -src_prepare() { - epatch "${FILESDIR}"/${P}-stdio-include.patch \ - "${FILESDIR}"/${P}-freetype-2.5.1.patch \ - "${FILESDIR}"/${P}-bison3.patch \ - "${FILESDIR}"/${P}-cups-config.patch - eautoreconf - gnome2_src_prepare - - # Drop DEPRECATED flags, bug #384807 - sed -i -e 's:-D[A-Z_]*DISABLE_DEPRECATED::g' \ - configure.in configure || die - sed -i -e 's:-D[A-Z_]*DISABLE_DEPRECATED:$(NULL):g' \ - libgnomeprint/ttsubset/Makefile.am \ - libgnomeprint/ttsubset/Makefile.in || die -} - -multilib_src_configure() { - # Disable papi support until papi is in portage; avoids automagic - # dependencies on an untracked library. - - ECONF_SOURCE=${S} \ - gnome2_src_configure \ - $(use_with cups) \ - --without-papi \ - --disable-static -} - -multilib_src_install() { - gnome2_src_install -} - -multilib_src_install_all() { - DOCS="AUTHORS BUGS ChangeLog* NEWS README" - einstalldocs -} diff --git a/gnome-base/libgnomeprint/metadata.xml b/gnome-base/libgnomeprint/metadata.xml deleted file mode 100644 index 39980802b1da..000000000000 --- a/gnome-base/libgnomeprint/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - gnome@gentoo.org - Gentoo GNOME Desktop - - diff --git a/gnome-base/libgnomeprintui/Manifest b/gnome-base/libgnomeprintui/Manifest deleted file mode 100644 index c4f1df389f74..000000000000 --- a/gnome-base/libgnomeprintui/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST libgnomeprintui-2.18.6.tar.bz2 681125 BLAKE2B 2850749f0d41cada9ecc377ff1fad17d1d629094f423f012069790c5b5ec56c047668a8e2d703a11e8654046b1c8e06c075fb350e2d25e05a06622c3a2072efc SHA512 acf44fd8b273f5e48c9c7224647704c1d45a66c8fb7279414028506fd6b8941126636499793c825a767f2f731fcddce78ce750670969d5ff9236e9ff75dca002 diff --git a/gnome-base/libgnomeprintui/files/libgnomeprintui-2.18.6-adwaita-icon-theme.patch b/gnome-base/libgnomeprintui/files/libgnomeprintui-2.18.6-adwaita-icon-theme.patch deleted file mode 100644 index f1fc4541db65..000000000000 --- a/gnome-base/libgnomeprintui/files/libgnomeprintui-2.18.6-adwaita-icon-theme.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -up ./configure.in.orig ./configure.in ---- ./configure.in.orig 2014-05-04 11:07:55.308844477 +0300 -+++ ./configure.in 2014-05-04 11:08:26.884571685 +0300 -@@ -64,7 +64,7 @@ PKG_CHECK_MODULES(LIBGNOMEPRINTUI, [ - gtk+-2.0 >= 2.6.0 - libgnomeprint-2.2 >= 2.12.1 - libgnomecanvas-2.0 >= 1.117.0 -- gnome-icon-theme >= 1.1.92 -+ adwaita-icon-theme >= 1.1.92 - ]) - AC_SUBST(LIBGNOMEPRINTUI_CFLAGS) - AC_SUBST(LIBGNOMEPRINTUI_LIBS) diff --git a/gnome-base/libgnomeprintui/files/libgnomeprintui-2.18.6-intl.patch b/gnome-base/libgnomeprintui/files/libgnomeprintui-2.18.6-intl.patch deleted file mode 100644 index db206e6b13e8..000000000000 --- a/gnome-base/libgnomeprintui/files/libgnomeprintui-2.18.6-intl.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- libgnomeprintui-2.18.6/libgnomeprintui/gpaui/Makefile.am~ 2010-02-09 12:33:13.000000000 +0000 -+++ libgnomeprintui-2.18.6/libgnomeprintui/gpaui/Makefile.am 2015-11-03 23:16:49.625137517 +0000 -@@ -2,7 +2,6 @@ - - INCLUDES = \ - -I$(top_srcdir) \ -- -I$(top_srcdir)/intl \ - -I$(top_srcdir)/libgnomeprintui \ - -DWE_ARE_LIBGNOMEPRINT_INTERNALS \ - $(LIBGNOMEPRINTUI_CFLAGS) \ diff --git a/gnome-base/libgnomeprintui/files/libgnomeprintui-2.18.6-orientation-for-preview.patch b/gnome-base/libgnomeprintui/files/libgnomeprintui-2.18.6-orientation-for-preview.patch deleted file mode 100644 index 3a6aa63fe356..000000000000 --- a/gnome-base/libgnomeprintui/files/libgnomeprintui-2.18.6-orientation-for-preview.patch +++ /dev/null @@ -1,44 +0,0 @@ ---- ./libgnomeprintui/gnome-print-job-preview.c.orig 2012-02-23 22:48:42.000000000 +0600 -+++ ./libgnomeprintui/gnome-print-job-preview.c 2012-02-25 00:18:43.000000000 +0600 -@@ -152,6 +152,7 @@ - GtkWidget *last; - GnomeCanvas *canvas; - GnomePrintConfig *config; -+ guchar *paper_orientation_save; - - guint current_page, current_offset; - -@@ -2187,6 +2188,19 @@ - if (jp->config) - g_object_unref (G_OBJECT (jp->config)); - jp->config = config; -+ if( config ) { -+ guchar *txt = gnome_print_config_get( jp->config, (const guchar*)GNOME_PRINT_KEY_PAGE_ORIENTATION ); -+ if( ( g_ascii_strcasecmp(( const gchar* )txt, "R90") == 0 ) || -+ ( g_ascii_strcasecmp(( const gchar* )txt, "R270") == 0 ) ) { -+ jp->paper_orientation_save = -+ gnome_print_config_get( jp->config, (const guchar*)GNOME_PRINT_KEY_PAPER_ORIENTATION ); -+ gnome_print_config_set( jp->config, (const guchar*)GNOME_PRINT_KEY_PAPER_ORIENTATION, txt ); -+ g_free ( txt ); -+ } -+ else { -+ jp->paper_orientation_save = NULL; -+ } -+ } - if (!jp->config) - return; - g_object_ref (G_OBJECT (jp->config)); -@@ -2389,6 +2403,13 @@ - { - GnomePrintJobPreview *jp = GNOME_PRINT_JOB_PREVIEW (object); - -+ if( jp->paper_orientation_save ) { -+ gnome_print_config_set( jp->config, (const guchar*)GNOME_PRINT_KEY_PAPER_ORIENTATION, -+ jp->paper_orientation_save ); -+ g_free ( jp->paper_orientation_save ); -+ jp->paper_orientation_save = NULL; -+ } -+ - gnome_print_job_preview_set_config (jp, NULL); - gnome_print_job_preview_set_job (jp, NULL); - diff --git a/gnome-base/libgnomeprintui/files/libgnomeprintui-2.18.6-system-config-printer.patch b/gnome-base/libgnomeprintui/files/libgnomeprintui-2.18.6-system-config-printer.patch deleted file mode 100644 index 57e188c863b7..000000000000 --- a/gnome-base/libgnomeprintui/files/libgnomeprintui-2.18.6-system-config-printer.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -p -up libgnomeprintui-2.18.3/libgnomeprintui/gnome-printer-selector.c.system-config-printer libgnomeprintui-2.18.3/libgnomeprintui/gnome-printer-selector.c ---- libgnomeprintui-2.18.3/libgnomeprintui/gnome-printer-selector.c.system-config-printer 2008-09-23 10:49:59.000000000 +0200 -+++ libgnomeprintui-2.18.3/libgnomeprintui/gnome-printer-selector.c 2008-09-23 10:50:47.000000000 +0200 -@@ -47,7 +47,7 @@ - #include "gpaui/gpa-transport-selector.h" - - #define GPS_PAD 4 --#define ADD_PRINTER_APP "gnome-cups-add" -+#define ADD_PRINTER_APP "system-config-printer" - - static void gnome_printer_selector_class_init (GnomePrinterSelectorClass *klass); - static void gnome_printer_selector_init (GObject *object); diff --git a/gnome-base/libgnomeprintui/libgnomeprintui-2.18.6-r2.ebuild b/gnome-base/libgnomeprintui/libgnomeprintui-2.18.6-r2.ebuild deleted file mode 100644 index ab335f9a1373..000000000000 --- a/gnome-base/libgnomeprintui/libgnomeprintui-2.18.6-r2.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -GNOME_TARBALL_SUFFIX="bz2" - -inherit autotools gnome2 multilib-minimal - -DESCRIPTION="User interface libraries for gnome print" -HOMEPAGE="https://www.gnome.org/" - -LICENSE="GPL-2 LGPL-2.1" -SLOT="2.2" -KEYWORDS="alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris" -IUSE="" - -RDEPEND=" - >=gnome-base/libgnomeprint-2.12.1[${MULTILIB_USEDEP}] - >=gnome-base/libgnomecanvas-1.117[${MULTILIB_USEDEP}] - >=x11-libs/gtk+-2.6:2[${MULTILIB_USEDEP}] - x11-themes/adwaita-icon-theme -" -DEPEND="${RDEPEND} - sys-devel/gettext - virtual/pkgconfig[${MULTILIB_USEDEP}] -" - -src_prepare() { - # Patches from Mageia - eapply "${FILESDIR}"/${P}-adwaita-icon-theme.patch - eapply "${FILESDIR}"/${P}-intl.patch - eapply "${FILESDIR}"/${P}-orientation-for-preview.patch - eapply "${FILESDIR}"/${P}-system-config-printer.patch - eautoreconf - gnome2_src_prepare -} - -multilib_src_configure() { - ECONF_SOURCE=${S} \ - gnome2_src_configure \ - --disable-static -} - -multilib_src_install() { - gnome2_src_install -} diff --git a/gnome-base/libgnomeprintui/metadata.xml b/gnome-base/libgnomeprintui/metadata.xml deleted file mode 100644 index 39980802b1da..000000000000 --- a/gnome-base/libgnomeprintui/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - gnome@gentoo.org - Gentoo GNOME Desktop - - diff --git a/gnome-extra/Manifest.gz b/gnome-extra/Manifest.gz index 23ec512d8d60..74b1317e6e4d 100644 Binary files a/gnome-extra/Manifest.gz and b/gnome-extra/Manifest.gz differ diff --git a/gnome-extra/nm-applet/Manifest b/gnome-extra/nm-applet/Manifest index 071bda456bcf..10d3f80c98fe 100644 --- a/gnome-extra/nm-applet/Manifest +++ b/gnome-extra/nm-applet/Manifest @@ -1,2 +1,3 @@ DIST network-manager-applet-1.8.10.tar.xz 1479032 BLAKE2B 482c7a644edaf4f19ed02ca3f29ffbbcf11c01b1c9572affa430a7edb8314d1381ca6738d998e91537903f6eceea0cff1b82b88e7acd1e9b5665c566271cdf3c SHA512 319a280ad56efe8d1b31db7879aebd6242f2e67453287476d397835069f5f5c6ce7884c84d65e0177a94a554b8f1a6e1d353ab33f8ddfc63269d8133b76b1372 DIST network-manager-applet-1.8.14.tar.xz 1513668 BLAKE2B a07baa11717632333b4957e6cc60b9ee8d9c656874e99337d5e5c9d115c99f10daee94b2a75f72991fa4a20d268122e73cf2ed74f41d29bbee7614965f0b9900 SHA512 e446a2e90faf17e672fa79a53280957dfd9a7a022293dfd578b4ebb71e821c2f387f8ec821c2dcd9a24d1e00e0bd32a4ac3c5d802b9a4fdd7f876c870f406eea +DIST network-manager-applet-1.8.16.tar.xz 1521776 BLAKE2B 60d73846b365cc73eac2d5cc3c2d5ab8aa28d6fdc532db7eedcbf6b280db26a2c705829f9ce6c359690a9d6b44279215e7c34bf9d84dca749dd8535c09db4537 SHA512 d96b525c74095bf7912eef0081ee888450b13ba8799a5a0c82d0ac71d8b227b39336697ed7321f5d61829f75fa13971ee2a282fd3d6be71c419f23fd4b88ec48 diff --git a/gnome-extra/nm-applet/nm-applet-1.8.16.ebuild b/gnome-extra/nm-applet/nm-applet-1.8.16.ebuild new file mode 100644 index 000000000000..0b744571f329 --- /dev/null +++ b/gnome-extra/nm-applet/nm-applet-1.8.16.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +GNOME2_LA_PUNT="yes" +GNOME_ORG_MODULE="network-manager-applet" + +inherit gnome2 + +DESCRIPTION="GNOME applet for NetworkManager" +HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager" + +LICENSE="GPL-2+" +SLOT="0" +IUSE="ayatana +introspection +gcr +modemmanager selinux teamd" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86" + +RDEPEND=" + >=app-crypt/libsecret-0.18 + >=dev-libs/glib-2.38:2[dbus] + >=dev-libs/dbus-glib-0.88 + >=sys-apps/dbus-1.4.1 + >=sys-auth/polkit-0.96-r1 + >=x11-libs/gtk+-3.10:3[introspection?] + >=x11-libs/libnotify-0.7.0 + + app-text/iso-codes + >=net-misc/networkmanager-1.7:=[introspection?,modemmanager?,teamd?] + net-misc/mobile-broadband-provider-info + + ayatana? ( + dev-libs/libappindicator:3 + >=dev-libs/libdbusmenu-16.04.0 ) + introspection? ( >=dev-libs/gobject-introspection-0.9.6:= ) + virtual/freedesktop-icon-theme + virtual/libgudev:= + gcr? ( >=app-crypt/gcr-3.14:=[gtk] ) + modemmanager? ( net-misc/modemmanager ) + selinux? ( sys-libs/libselinux ) + teamd? ( >=dev-libs/jansson-2.7 ) +" +DEPEND="${RDEPEND} + >=dev-util/gtk-doc-am-1.0 + >=dev-util/intltool-0.50.1 + virtual/pkgconfig +" + +PDEPEND="virtual/notification-daemon" #546134 + +src_configure() { + local myconf=( + --with-appindicator=$(usex ayatana ubuntu no) + --disable-lto + --disable-ld-gc + --disable-more-warnings + --disable-static + --localstatedir=/var + $(use_enable introspection) + $(use_with gcr) + $(use_with modemmanager wwan) + $(use_with selinux) + $(use_with teamd team) + ) + gnome2_src_configure "${myconf[@]}" +} diff --git a/kde-apps/Manifest.gz b/kde-apps/Manifest.gz index 26b231c58e4b..e708b6fdfe12 100644 Binary files a/kde-apps/Manifest.gz and b/kde-apps/Manifest.gz differ diff --git a/kde-apps/kopete/kopete-18.04.3.ebuild b/kde-apps/kopete/kopete-18.04.3.ebuild index 61852c744b9d..166468c7d884 100644 --- a/kde-apps/kopete/kopete-18.04.3.ebuild +++ b/kde-apps/kopete/kopete-18.04.3.ebuild @@ -117,6 +117,7 @@ COMMONDEPEND=" ) " RDEPEND="${COMMONDEPEND} + !kde-apps/kde4-l10n latex? ( || ( media-gfx/imagemagick diff --git a/media-fonts/Manifest.gz b/media-fonts/Manifest.gz index f5092d4c20e7..8ef2dc01bb09 100644 Binary files a/media-fonts/Manifest.gz and b/media-fonts/Manifest.gz differ diff --git a/media-fonts/cantarell/cantarell-0.0.25.ebuild b/media-fonts/cantarell/cantarell-0.0.25.ebuild index ce0dc0abe1f0..01b0262950d2 100644 --- a/media-fonts/cantarell/cantarell-0.0.25.ebuild +++ b/media-fonts/cantarell/cantarell-0.0.25.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/CantarellFonts" LICENSE="OFL-1.1" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~x86-fbsd" IUSE="" RDEPEND="media-libs/fontconfig" diff --git a/media-fonts/cantarell/cantarell-0.101.ebuild b/media-fonts/cantarell/cantarell-0.101.ebuild index b63dba2c58db..5f8b20d7d6db 100644 --- a/media-fonts/cantarell/cantarell-0.101.ebuild +++ b/media-fonts/cantarell/cantarell-0.101.ebuild @@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/CantarellFonts" LICENSE="OFL-1.1" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" IUSE="" RDEPEND="media-libs/fontconfig" diff --git a/media-fonts/dejavu/dejavu-2.37.ebuild b/media-fonts/dejavu/dejavu-2.37.ebuild index 4c942005dc0e..5f2fb1fcb788 100644 --- a/media-fonts/dejavu/dejavu-2.37.ebuild +++ b/media-fonts/dejavu/dejavu-2.37.ebuild @@ -25,7 +25,7 @@ fi LICENSE="BitstreamVera" SLOT="0" -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 ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris" +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 ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="fontforge" DEPEND="fontforge? ( diff --git a/media-libs/Manifest.gz b/media-libs/Manifest.gz index 80470d7360c2..c1cfbed147e7 100644 Binary files a/media-libs/Manifest.gz and b/media-libs/Manifest.gz differ diff --git a/media-libs/glu/glu-9.0.0-r1.ebuild b/media-libs/glu/glu-9.0.0-r1.ebuild index 379b61d7c309..2c66edd816d4 100644 --- a/media-libs/glu/glu-9.0.0-r1.ebuild +++ b/media-libs/glu/glu-9.0.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -20,7 +20,7 @@ if [[ ${PV} = 9999* ]]; then SRC_URI="" else SRC_URI="https://mesa.freedesktop.org/archive/glu/${P}.tar.bz2" - KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris" + KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris" fi LICENSE="SGI-B-2.0" diff --git a/media-libs/libjpeg-turbo/libjpeg-turbo-1.5.3-r2.ebuild b/media-libs/libjpeg-turbo/libjpeg-turbo-1.5.3-r2.ebuild index 5bbbb1c7423b..b56ce1337290 100644 --- a/media-libs/libjpeg-turbo/libjpeg-turbo-1.5.3-r2.ebuild +++ b/media-libs/libjpeg-turbo/libjpeg-turbo-1.5.3-r2.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz LICENSE="BSD IJG" SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos" +KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos" IUSE="java static-libs" ASM_DEPEND="|| ( dev-lang/nasm dev-lang/yasm )" diff --git a/media-libs/woff2/woff2-1.0.2-r1.ebuild b/media-libs/woff2/woff2-1.0.2-r1.ebuild index f47f2c1b8db9..2644f825a78e 100644 --- a/media-libs/woff2/woff2-1.0.2-r1.ebuild +++ b/media-libs/woff2/woff2-1.0.2-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/google/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x64-solaris" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x64-solaris" IUSE="" RDEPEND="app-arch/brotli" diff --git a/media-sound/Manifest.gz b/media-sound/Manifest.gz index cd97d23c4469..50d67713bb60 100644 Binary files a/media-sound/Manifest.gz and b/media-sound/Manifest.gz differ diff --git a/media-sound/fluidsynth/fluidsynth-1.1.11.ebuild b/media-sound/fluidsynth/fluidsynth-1.1.11.ebuild index 2573e5279068..6aaee6e6460d 100644 --- a/media-sound/fluidsynth/fluidsynth-1.1.11.ebuild +++ b/media-sound/fluidsynth/fluidsynth-1.1.11.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/FluidSynth/fluidsynth/archive/v${PV}.tar.gz -> ${P}. LICENSE="LGPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 sparc x86 ~x86-fbsd" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 sparc x86 ~x86-fbsd" IUSE="alsa dbus debug examples ipv6 jack ladspa lash portaudio pulseaudio readline sndfile" RDEPEND=" diff --git a/metadata/Manifest.gz b/metadata/Manifest.gz index 38e603334e80..975848834f47 100644 Binary files a/metadata/Manifest.gz and b/metadata/Manifest.gz differ diff --git a/metadata/dtd/timestamp.chk b/metadata/dtd/timestamp.chk index 4dc0223a863b..050d87b3228f 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Thu, 16 Aug 2018 17:08:42 +0000 +Fri, 17 Aug 2018 04:38:45 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index 488566d8aa8a..050d87b3228f 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Thu, 16 Aug 2018 17:08:43 +0000 +Fri, 17 Aug 2018 04:38:45 +0000 diff --git a/metadata/md5-cache/Manifest.gz b/metadata/md5-cache/Manifest.gz index e6b275dc1de2..ec19382c75d7 100644 Binary files a/metadata/md5-cache/Manifest.gz and b/metadata/md5-cache/Manifest.gz differ diff --git a/metadata/md5-cache/app-admin/Manifest.gz b/metadata/md5-cache/app-admin/Manifest.gz index 29c67f634656..62de2ff17294 100644 Binary files a/metadata/md5-cache/app-admin/Manifest.gz and b/metadata/md5-cache/app-admin/Manifest.gz differ diff --git a/metadata/md5-cache/app-admin/conky-1.10.8-r2 b/metadata/md5-cache/app-admin/conky-1.10.8-r2 new file mode 100644 index 000000000000..c1d753f617ba --- /dev/null +++ b/metadata/md5-cache/app-admin/conky-1.10.8-r2 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst prepare setup test +DEPEND=X? ( imlib? ( media-libs/imlib2[X] ) lua-cairo? ( >=dev-lua/toluapp-1.0.93 x11-libs/cairo[X] ) lua-imlib? ( >=dev-lua/toluapp-1.0.93 media-libs/imlib2[X] ) lua-rsvg? ( >=dev-lua/toluapp-1.0.93 gnome-base/librsvg ) nvidia? ( || ( x11-drivers/nvidia-drivers[tools,static-libs] media-video/nvidia-settings ) ) truetype? ( x11-libs/libXft >=media-libs/freetype-2 ) x11-libs/libX11 x11-libs/libXdamage x11-libs/libXinerama x11-libs/libXfixes x11-libs/libXext audacious? ( >=media-sound/audacious-1.5 dev-libs/glib:2 ) xmms2? ( media-sound/xmms2 ) ) cmus? ( media-sound/cmus ) curl? ( net-misc/curl ) eve? ( net-misc/curl dev-libs/libxml2 ) ical? ( dev-libs/libical ) iconv? ( virtual/libiconv ) irc? ( net-libs/libircclient ) mysql? ( >=virtual/mysql-5.0 ) ncurses? ( sys-libs/ncurses:= ) pulseaudio? ( media-sound/pulseaudio ) rss? ( dev-libs/libxml2 net-misc/curl dev-libs/glib:2 ) systemd? ( sys-apps/systemd ) wifi? ( net-wireless/wireless-tools ) weather-metar? ( net-misc/curl ) weather-xoap? ( dev-libs/libxml2 net-misc/curl ) webserver? ( net-libs/libmicrohttpd ) >=dev-lang/lua-5.1.4-r8:0 app-text/docbook2X sys-devel/make >=dev-util/cmake-3.9.6 +DESCRIPTION=An advanced, highly configurable system monitor for X +EAPI=6 +HOMEPAGE=https://github.com/brndnmtthws/conky +IUSE=apcupsd audacious cmus curl eve hddtemp ical iconv imlib iostats ipv6 irc lua-cairo lua-imlib lua-rsvg math moc mpd mysql nano-syntax ncurses nvidia +portmon pulseaudio rss systemd thinkpad truetype vim-syntax weather-metar weather-xoap webserver wifi X xmms2 kernel_linux +KEYWORDS=~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-3 BSD LGPL-2.1 MIT +RDEPEND=X? ( imlib? ( media-libs/imlib2[X] ) lua-cairo? ( >=dev-lua/toluapp-1.0.93 x11-libs/cairo[X] ) lua-imlib? ( >=dev-lua/toluapp-1.0.93 media-libs/imlib2[X] ) lua-rsvg? ( >=dev-lua/toluapp-1.0.93 gnome-base/librsvg ) nvidia? ( || ( x11-drivers/nvidia-drivers[tools,static-libs] media-video/nvidia-settings ) ) truetype? ( x11-libs/libXft >=media-libs/freetype-2 ) x11-libs/libX11 x11-libs/libXdamage x11-libs/libXinerama x11-libs/libXfixes x11-libs/libXext audacious? ( >=media-sound/audacious-1.5 dev-libs/glib:2 ) xmms2? ( media-sound/xmms2 ) ) cmus? ( media-sound/cmus ) curl? ( net-misc/curl ) eve? ( net-misc/curl dev-libs/libxml2 ) ical? ( dev-libs/libical ) iconv? ( virtual/libiconv ) irc? ( net-libs/libircclient ) mysql? ( >=virtual/mysql-5.0 ) ncurses? ( sys-libs/ncurses:= ) pulseaudio? ( media-sound/pulseaudio ) rss? ( dev-libs/libxml2 net-misc/curl dev-libs/glib:2 ) systemd? ( sys-apps/systemd ) wifi? ( net-wireless/wireless-tools ) weather-metar? ( net-misc/curl ) weather-xoap? ( dev-libs/libxml2 net-misc/curl ) webserver? ( net-libs/libmicrohttpd ) >=dev-lang/lua-5.1.4-r8:0 apcupsd? ( sys-power/apcupsd ) hddtemp? ( app-admin/hddtemp ) moc? ( media-sound/moc ) nano-syntax? ( app-editors/nano ) vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) +SLOT=0 +SRC_URI=https://github.com/brndnmtthws/conky/archive/v1.10.8.tar.gz -> conky-1.10.8.tar.gz +_eclasses_=cmake-utils ec27c4d90ac99a1a0fb77d97bfc597ee desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 linux-info 915cae3d7d636732918d18827fb1c226 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 +_md5_=a0a8697e6a49682f4d3eb0486ba31564 diff --git a/metadata/md5-cache/app-crypt/Manifest.gz b/metadata/md5-cache/app-crypt/Manifest.gz index 84f26bdafa5b..39d040194917 100644 Binary files a/metadata/md5-cache/app-crypt/Manifest.gz and b/metadata/md5-cache/app-crypt/Manifest.gz differ diff --git a/metadata/md5-cache/app-crypt/ccid-1.4.29 b/metadata/md5-cache/app-crypt/ccid-1.4.29 index de55efb572fb..cd3473aba14a 100644 --- a/metadata/md5-cache/app-crypt/ccid-1.4.29 +++ b/metadata/md5-cache/app-crypt/ccid-1.4.29 @@ -4,10 +4,10 @@ DESCRIPTION=CCID free software driver EAPI=6 HOMEPAGE=https://ccid.apdu.fr/ IUSE=twinserial kobil-midentity +usb -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 +KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 LICENSE=GPL-2 RDEPEND=>=sys-apps/pcsc-lite-1.8.3 usb? ( virtual/libusb:1 ) SLOT=0 SRC_URI=https://ccid.apdu.fr/files/ccid-1.4.29.tar.bz2 _eclasses_=multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 udev 7af0412965eeadeee9e3b7ad98adabdf -_md5_=3c06788d56eea5c5e6c438c031e30f21 +_md5_=01411de8e7e1395739e3a2b0bd375aff diff --git a/metadata/md5-cache/app-crypt/rhash-1.3.6-r1 b/metadata/md5-cache/app-crypt/rhash-1.3.6-r1 index d76550172e77..337cb610310e 100644 --- a/metadata/md5-cache/app-crypt/rhash-1.3.6-r1 +++ b/metadata/md5-cache/app-crypt/rhash-1.3.6-r1 @@ -4,10 +4,10 @@ DESCRIPTION=Console utility and library for computing and verifying file hash su EAPI=6 HOMEPAGE=http://rhash.anz.ru/ IUSE=debug nls libressl ssl static-libs 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 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ssl? ( !libressl? ( dev-libs/openssl: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(-)?] ) libressl? ( dev-libs/libressl: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(-)?] ) ) SLOT=0 SRC_URI=mirror://sourceforge/rhash/rhash-1.3.6-src.tar.gz _eclasses_=multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 -_md5_=406f86fe96fdceaf36ece0ef1f5bd3bc +_md5_=9e911fe5e823927927d7a3dc0380d6f3 diff --git a/metadata/md5-cache/app-crypt/tpm-tools-1.3.9.1 b/metadata/md5-cache/app-crypt/tpm-tools-1.3.9.1 index aa14d5fb063c..d9bb026c22a7 100644 --- a/metadata/md5-cache/app-crypt/tpm-tools-1.3.9.1 +++ b/metadata/md5-cache/app-crypt/tpm-tools-1.3.9.1 @@ -4,10 +4,10 @@ DESCRIPTION=TrouSerS' support tools for the Trusted Platform Modules EAPI=6 HOMEPAGE=http://trousers.sourceforge.net IUSE=libressl nls pkcs11 debug -KEYWORDS=~amd64 ~arm ~arm64 ~m68k ~s390 ~sh x86 +KEYWORDS=amd64 ~arm ~arm64 ~m68k ~s390 ~sh x86 LICENSE=CPL-1.0 RDEPEND=>=app-crypt/trousers-0.3.0 !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) pkcs11? ( dev-libs/opencryptoki ) nls? ( virtual/libintl ) SLOT=0 SRC_URI=mirror://sourceforge/trousers/tpm-tools/tpm-tools-1.3.9.1.tar.gz _eclasses_=autotools d0e5375d47f4c809f406eb892e531513 desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=403c2f7085eebbc3872a7bf633941401 +_md5_=3ac7ad11618f7ee75f7d7248548dc32c diff --git a/metadata/md5-cache/app-dicts/Manifest.gz b/metadata/md5-cache/app-dicts/Manifest.gz index 954d60d28659..4d0c1cacb50c 100644 Binary files a/metadata/md5-cache/app-dicts/Manifest.gz and b/metadata/md5-cache/app-dicts/Manifest.gz differ diff --git a/metadata/md5-cache/app-dicts/myspell-lv-1.3.0 b/metadata/md5-cache/app-dicts/myspell-lv-1.3.0 index 32c3fa8991ef..df746f109beb 100644 --- a/metadata/md5-cache/app-dicts/myspell-lv-1.3.0 +++ b/metadata/md5-cache/app-dicts/myspell-lv-1.3.0 @@ -3,9 +3,9 @@ DEPEND=app-arch/unzip app-arch/unzip DESCRIPTION=Latvian dictionaries for myspell/hunspell EAPI=5 HOMEPAGE=http://dict.dv.lv/home.php?prj=lv https://extensions.libreoffice.org/extensions/latviesu-valodas-pareizrakstibas-parbaudes-modulis -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd LICENSE=LGPL-2.1 SLOT=0 SRC_URI=http://dict.dv.lv/download/lv_LV-1.3.0.zip -> myspell-lv-1.3.0.zip _eclasses_=myspell-r2 d7a80fcc3949917840a5c8f1a967004c -_md5_=66979a4d6898aa32091ca61fb7a2d0bc +_md5_=1cc7dd8a5d090a4b325b04c2b265b1b5 diff --git a/metadata/md5-cache/app-editors/Manifest.gz b/metadata/md5-cache/app-editors/Manifest.gz index be650d8546a5..f669a801ea30 100644 Binary files a/metadata/md5-cache/app-editors/Manifest.gz and b/metadata/md5-cache/app-editors/Manifest.gz differ diff --git a/metadata/md5-cache/app-editors/retext-7.0.3 b/metadata/md5-cache/app-editors/retext-7.0.3 index fc682b95ad3f..5cb87f18080a 100644 --- a/metadata/md5-cache/app-editors/retext-7.0.3 +++ b/metadata/md5-cache/app-editors/retext-7.0.3 @@ -4,11 +4,11 @@ DESCRIPTION=Simple editor for Markdown and reStructuredText EAPI=6 HOMEPAGE=https://github.com/retext-project/retext https://github.com/retext-project/retext/wiki IUSE=+spell python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 test -KEYWORDS=~amd64 x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 RDEPEND=>=dev-python/chardet-2.3[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-python/docutils[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-python/markdown[pygments,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-python/markups-2.0[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-python/pygments[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-python/PyQt5[gui,network,printsupport,webengine,widgets,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(-)] spell? ( dev-python/pyenchant[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(-)] ) 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 ) SLOT=0 SRC_URI=mirror://pypi/R/ReText/ReText-7.0.3.tar.gz _eclasses_=distutils-r1 8595c9c7530ac3963f3aa0d77aa7e2d8 l10n 97f2753e3f1f3753d53d856c7c0bbb0b multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 virtualx 401b718cc14d43a5a7fbe062c4851ba5 xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=ae68e2e0232fc1c4e85e9e1701f21a0a +_md5_=34dbc82689824ed72a9288d72d829122 diff --git a/metadata/md5-cache/app-emulation/Manifest.gz b/metadata/md5-cache/app-emulation/Manifest.gz index 2fffff4eeb38..bbd81569dbf5 100644 Binary files a/metadata/md5-cache/app-emulation/Manifest.gz and b/metadata/md5-cache/app-emulation/Manifest.gz differ diff --git a/metadata/md5-cache/app-emulation/skopeo-0.1.31 b/metadata/md5-cache/app-emulation/skopeo-0.1.31 new file mode 100644 index 000000000000..7c521c96efee --- /dev/null +++ b/metadata/md5-cache/app-emulation/skopeo-0.1.31 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install unpack +DEPEND=>=app-crypt/gpgme-1.5.5:= >=dev-libs/libassuan-2.4.3 >=sys-fs/btrfs-progs-4.0.1 >=sys-fs/lvm2-2.02.145 dev-go/go-md2man >=dev-lang/go-1.9 +DESCRIPTION=Command line utility foroperations on container images and image repositories +EAPI=6 +HOMEPAGE=https://github.com/projectatomic/skopeo +KEYWORDS=~amd64 +LICENSE=Apache-2.0 +RDEPEND=>=app-crypt/gpgme-1.5.5:= >=dev-libs/libassuan-2.4.3 >=sys-fs/btrfs-progs-4.0.1 >=sys-fs/lvm2-2.02.145 +RESTRICT=test +SLOT=0 +SRC_URI=https://github.com/projectatomic/skopeo/archive/v0.1.31.tar.gz -> skopeo-0.1.31.tar.gz +_eclasses_=golang-base 8e4d7f712ec0e170e2c190c1e3da6501 golang-vcs-snapshot 6f66975a5b570c5e05ed96910c574abc +_md5_=134192a56af4390bb965b776e3033a6c diff --git a/metadata/md5-cache/app-emulation/spice-0.13.3-r2 b/metadata/md5-cache/app-emulation/spice-0.13.3-r2 deleted file mode 100644 index fd9c3a0b9a78..000000000000 --- a/metadata/md5-cache/app-emulation/spice-0.13.3-r2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare setup -DEPEND=>=dev-libs/glib-2.22:2[static-libs(+)?] >=media-libs/celt-0.5.1.1:0.5.1[static-libs(+)?] media-libs/opus[static-libs(+)?] sys-libs/zlib[static-libs(+)?] virtual/jpeg:0=[static-libs(+)?] >=x11-libs/pixman-0.17.7[static-libs(+)?] !libressl? ( dev-libs/openssl:0=[static-libs(+)?] ) libressl? ( dev-libs/libressl:0=[static-libs(+)?] ) lz4? ( app-arch/lz4:0=[static-libs(+)?] ) smartcard? ( >=app-emulation/libcacard-0.1.2 ) sasl? ( dev-libs/cyrus-sasl[static-libs(+)?] ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) || ( dev-lang/python:3.6 dev-lang/python:3.5 dev-lang/python:3.4 >=dev-lang/python-2.7.5-r2:2.7 ) >=app-emulation/spice-protocol-0.12.12 virtual/pkgconfig || ( ( dev-lang/python:3.6 >=dev-python/pyparsing-1.5.6-r2[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/six[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ( dev-lang/python:3.5 >=dev-python/pyparsing-1.5.6-r2[python_targets_python3_5(-),python_single_target_python3_5(+)] dev-python/six[python_targets_python3_5(-),python_single_target_python3_5(+)] ) ( dev-lang/python:3.4 >=dev-python/pyparsing-1.5.6-r2[python_targets_python3_4(-),python_single_target_python3_4(+)] dev-python/six[python_targets_python3_4(-),python_single_target_python3_4(+)] ) ( >=dev-lang/python-2.7.5-r2:2.7 >=dev-python/pyparsing-1.5.6-r2[python_targets_python2_7(-),python_single_target_python2_7(+)] dev-python/six[python_targets_python2_7(-),python_single_target_python2_7(+)] ) ) smartcard? ( app-emulation/qemu[smartcard] ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=SPICE server -EAPI=6 -HOMEPAGE=https://www.spice-space.org/ -IUSE=libressl lz4 sasl smartcard static-libs gstreamer -KEYWORDS=amd64 ~arm64 x86 -LICENSE=LGPL-2.1 -RDEPEND=>=dev-libs/glib-2.22:2[static-libs(+)?] >=media-libs/celt-0.5.1.1:0.5.1[static-libs(+)?] media-libs/opus[static-libs(+)?] sys-libs/zlib[static-libs(+)?] virtual/jpeg:0=[static-libs(+)?] >=x11-libs/pixman-0.17.7[static-libs(+)?] !libressl? ( dev-libs/openssl:0=[static-libs(+)?] ) libressl? ( dev-libs/libressl:0=[static-libs(+)?] ) lz4? ( app-arch/lz4:0=[static-libs(+)?] ) smartcard? ( >=app-emulation/libcacard-0.1.2 ) sasl? ( dev-libs/cyrus-sasl[static-libs(+)?] ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) -SLOT=0 -SRC_URI=https://www.spice-space.org/download/releases/spice-0.13.3.tar.bz2 -_eclasses_=autotools d0e5375d47f4c809f406eb892e531513 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 4900ae970f827a22d33d41bd8b8f9ace python-utils-r1 12114a2a9aab35b93efc037a196b3234 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=e1712b431833292eb2bc82d2df155be1 diff --git a/metadata/md5-cache/app-emulation/spice-0.14.0-r2 b/metadata/md5-cache/app-emulation/spice-0.14.0-r2 new file mode 100644 index 000000000000..5c43be04373a --- /dev/null +++ b/metadata/md5-cache/app-emulation/spice-0.14.0-r2 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst prepare setup +DEPEND=dev-lang/orc[static-libs(+)?] >=dev-libs/glib-2.22:2[static-libs(+)?] media-libs/opus[static-libs(+)?] sys-libs/zlib[static-libs(+)?] virtual/jpeg:0=[static-libs(+)?] >=x11-libs/pixman-0.17.7[static-libs(+)?] !libressl? ( dev-libs/openssl:0=[static-libs(+)?] ) libressl? ( dev-libs/libressl:0=[static-libs(+)?] ) lz4? ( app-arch/lz4:0=[static-libs(+)?] ) smartcard? ( >=app-emulation/libcacard-0.1.2 ) sasl? ( dev-libs/cyrus-sasl[static-libs(+)?] ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) || ( dev-lang/python:3.6 dev-lang/python:3.5 dev-lang/python:3.4 >=dev-lang/python-2.7.5-r2:2.7 ) >=app-emulation/spice-protocol-0.12.13 virtual/pkgconfig || ( ( dev-lang/python:3.6 >=dev-python/pyparsing-1.5.6-r2[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/six[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ( dev-lang/python:3.5 >=dev-python/pyparsing-1.5.6-r2[python_targets_python3_5(-),python_single_target_python3_5(+)] dev-python/six[python_targets_python3_5(-),python_single_target_python3_5(+)] ) ( dev-lang/python:3.4 >=dev-python/pyparsing-1.5.6-r2[python_targets_python3_4(-),python_single_target_python3_4(+)] dev-python/six[python_targets_python3_4(-),python_single_target_python3_4(+)] ) ( >=dev-lang/python-2.7.5-r2:2.7 >=dev-python/pyparsing-1.5.6-r2[python_targets_python2_7(-),python_single_target_python2_7(+)] dev-python/six[python_targets_python2_7(-),python_single_target_python2_7(+)] ) ) smartcard? ( app-emulation/qemu[smartcard] ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=SPICE server +EAPI=6 +HOMEPAGE=https://www.spice-space.org/ +IUSE=libressl lz4 sasl smartcard static-libs gstreamer +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=LGPL-2.1 +RDEPEND=dev-lang/orc[static-libs(+)?] >=dev-libs/glib-2.22:2[static-libs(+)?] media-libs/opus[static-libs(+)?] sys-libs/zlib[static-libs(+)?] virtual/jpeg:0=[static-libs(+)?] >=x11-libs/pixman-0.17.7[static-libs(+)?] !libressl? ( dev-libs/openssl:0=[static-libs(+)?] ) libressl? ( dev-libs/libressl:0=[static-libs(+)?] ) lz4? ( app-arch/lz4:0=[static-libs(+)?] ) smartcard? ( >=app-emulation/libcacard-0.1.2 ) sasl? ( dev-libs/cyrus-sasl[static-libs(+)?] ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) +SLOT=0 +SRC_URI=https://www.spice-space.org/download/releases/spice-0.14.0.tar.bz2 +_eclasses_=autotools d0e5375d47f4c809f406eb892e531513 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 4900ae970f827a22d33d41bd8b8f9ace python-utils-r1 12114a2a9aab35b93efc037a196b3234 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 xdg-utils 89bb9f083a2590d9b447fd0b78a96186 +_md5_=dc890b594ba1ad8ecaa7eb14850d9b14 diff --git a/metadata/md5-cache/app-emulation/spice-protocol-0.12.12 b/metadata/md5-cache/app-emulation/spice-protocol-0.12.14 similarity index 60% rename from metadata/md5-cache/app-emulation/spice-protocol-0.12.12 rename to metadata/md5-cache/app-emulation/spice-protocol-0.12.14 index 5471e45fd63e..0b07bf260b6a 100644 --- a/metadata/md5-cache/app-emulation/spice-protocol-0.12.12 +++ b/metadata/md5-cache/app-emulation/spice-protocol-0.12.14 @@ -2,8 +2,8 @@ DEFINED_PHASES=- DESCRIPTION=Headers defining the SPICE protocol EAPI=6 HOMEPAGE=https://www.spice-space.org/ -KEYWORDS=~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=BSD SLOT=0 -SRC_URI=https://www.spice-space.org/download/releases/spice-protocol-0.12.12.tar.bz2 -_md5_=94ec2cbc985c0165842678118d255a05 +SRC_URI=https://www.spice-space.org/download/releases/spice-protocol-0.12.14.tar.bz2 +_md5_=97865071b506331fba217421f31a56c6 diff --git a/metadata/md5-cache/app-emulation/wine-vanilla-3.0.2 b/metadata/md5-cache/app-emulation/wine-vanilla-3.0.2 index 72c2bc12abfe..e1d4e9334a28 100644 --- a/metadata/md5-cache/app-emulation/wine-vanilla-3.0.2 +++ b/metadata/md5-cache/app-emulation/wine-vanilla-3.0.2 @@ -4,7 +4,7 @@ DESCRIPTION=Free implementation of Windows(tm) on Unix, without external patchse EAPI=6 HOMEPAGE=https://www.winehq.org/ IUSE=+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc +fontconfig +gecko gphoto2 gsm gstreamer +jpeg kerberos kernel_FreeBSD +lcms ldap +mono mp3 ncurses netapi nls odbc openal opencl +opengl osmesa oss +perl pcap +png prelink pulseaudio +realtime +run-exes samba scanner selinux +ssl test +threads +truetype udev +udisks v4l +X +xcomposite xinerama +xml 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 -KEYWORDS=-* ~amd64 x86 ~x86-fbsd +KEYWORDS=-* amd64 x86 ~x86-fbsd LICENSE=LGPL-2.1 RDEPEND=X? ( 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/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/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/libXrandr[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[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/libXxf86vm[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(-)?] ) alsa? ( media-libs/alsa-lib[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(-)?] ) capi? ( net-libs/libcapi[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:=[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(-)?] ) fontconfig? ( 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(-)?] ) gphoto2? ( media-libs/libgphoto2:=[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(-)?] ) gsm? ( media-sound/gsm:=[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(-)?] ) gstreamer? ( media-libs/gstreamer: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-plugins/gst-plugins-meta: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(-)?] ) jpeg? ( virtual/jpeg:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( virtual/krb5[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(-)?] ) lcms? ( media-libs/lcms: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(-)?] ) ldap? ( net-nds/openldap:=[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(-)?] ) mp3? ( >=media-sound/mpg123-1.5.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(-)?] ) ncurses? ( >=sys-libs/ncurses-5.2: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(-)?] ) netapi? ( net-fs/samba[netapi(+),abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) nls? ( sys-devel/gettext[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(-)?] ) odbc? ( dev-db/unixODBC:=[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(-)?] ) openal? ( media-libs/openal:=[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(-)?] ) opencl? ( virtual/opencl[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(-)?] ) opengl? ( virtual/glu[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/opengl[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(-)?] ) osmesa? ( >=media-libs/mesa-13[osmesa,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(-)?] ) pcap? ( net-libs/libpcap[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(-)?] ) png? ( media-libs/libpng: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(-)?] ) pulseaudio? ( media-sound/pulseaudio[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(-)?] ) scanner? ( media-gfx/sane-backends:=[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(-)?] ) ssl? ( net-libs/gnutls:=[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(-)?] ) truetype? ( >=media-libs/freetype-2.0.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(-)?] ) udev? ( virtual/libudev:=[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(-)?] ) udisks? ( sys-apps/dbus[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(-)?] ) v4l? ( media-libs/libv4l[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(-)?] ) xcomposite? ( 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(-)?] ) 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(-)?] ) xml? ( dev-libs/libxml2[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/libxslt[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-emulation/wine-desktop-common >app-eselect/eselect-wine-0.3 !app-emulation/wine:0 dos? ( >=games-emulation/dosbox-0.74_p20160629 ) gecko? ( app-emulation/wine-gecko:2.47[abi_x86_32?,abi_x86_64?] ) mono? ( app-emulation/wine-mono:4.7.1 ) perl? ( dev-lang/perl dev-perl/XML-Simple ) pulseaudio? ( realtime? ( sys-auth/rtkit ) ) samba? ( >=net-fs/samba-3.0.25[winbind] ) selinux? ( sec-policy/selinux-wine ) udisks? ( sys-fs/udisks:2 ) REQUIRED_USE=|| ( abi_x86_32 abi_x86_64 ) X? ( truetype ) elibc_glibc? ( threads ) osmesa? ( opengl ) test? ( abi_x86_32 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=3.0.2 SRC_URI=https://dl.winehq.org/wine/source/3.0/wine-3.0.2.tar.xz https://dev.gentoo.org/~np-hardass/distfiles/wine/gentoo-wine-patches-20180120.tar.xz _eclasses_=autotools d0e5375d47f4c809f406eb892e531513 desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 gnome2-utils c6060f4ab634aca444c4b2176b0f3877 l10n 97f2753e3f1f3753d53d856c7c0bbb0b libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 pax-utils e85f015e815dd463b0c206d781ef45a5 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 virtualx 401b718cc14d43a5a7fbe062c4851ba5 xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=31c7b79679997a2a171bc3d72886b758 +_md5_=5ddf679eda0af24ed344182feacbb517 diff --git a/metadata/md5-cache/app-eselect/Manifest.gz b/metadata/md5-cache/app-eselect/Manifest.gz index 20796589b98d..e61590426abb 100644 Binary files a/metadata/md5-cache/app-eselect/Manifest.gz and b/metadata/md5-cache/app-eselect/Manifest.gz differ diff --git a/metadata/md5-cache/app-eselect/eselect-opengl-1.3.1-r4 b/metadata/md5-cache/app-eselect/eselect-opengl-1.3.1-r4 index 0d3941d6136c..3dbaa47393fe 100644 --- a/metadata/md5-cache/app-eselect/eselect-opengl-1.3.1-r4 +++ b/metadata/md5-cache/app-eselect/eselect-opengl-1.3.1-r4 @@ -3,10 +3,10 @@ DEPEND=app-arch/xz-utils DESCRIPTION=Utility to change the OpenGL interface being used EAPI=5 HOMEPAGE=https://www.gentoo.org/ -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 +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=GPL-2 RDEPEND=>=app-admin/eselect-1.2.4 !=dev-libs/openobex-1.7 net-wireless/bluez perl? ( dev-lang/perl:= ) python? ( python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_single_target_python3_5? ( dev-lang/python:3.5 ) python_single_target_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?] ) ruby? ( || ( dev-lang/ruby:2.3 dev-lang/ruby:2.4 dev-lang/ruby:2.5 ) virtual/rubygems ) tcl? ( dev-lang/tcl:0= ) REQUIRED_USE=python? ( ^^ ( python_single_target_python2_7 python_single_target_python3_5 python_single_target_python3_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_5? ( python_targets_python3_5 ) python_single_target_python3_6? ( python_targets_python3_6 ) ) SLOT=0 SRC_URI=mirror://sourceforge/openobex/obexftp-0.24.2-Source.tar.gz _eclasses_=cmake-utils ec27c4d90ac99a1a0fb77d97bfc597ee desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 12114a2a9aab35b93efc037a196b3234 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils a43d6cd7f05b4d013e7e40104ddfd3c7 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=424ed61dd51ec84b4407ded37d52101e +_md5_=71cdf1caeb1d72eb6123518c2864c07b diff --git a/metadata/md5-cache/app-text/Manifest.gz b/metadata/md5-cache/app-text/Manifest.gz index 89dccc7f5fa6..e8c8440f65c9 100644 Binary files a/metadata/md5-cache/app-text/Manifest.gz and b/metadata/md5-cache/app-text/Manifest.gz differ diff --git a/metadata/md5-cache/app-text/ps2pkm-1.8_p20170524 b/metadata/md5-cache/app-text/ps2pkm-1.8_p20170524 index 5b9e0df33d00..17dbe2be394b 100644 --- a/metadata/md5-cache/app-text/ps2pkm-1.8_p20170524 +++ b/metadata/md5-cache/app-text/ps2pkm-1.8_p20170524 @@ -3,9 +3,9 @@ DEPEND=>=dev-libs/kpathsea-6.2.1 virtual/pkgconfig DESCRIPTION=Tool that converts a PostScript type1 font into a corresponding TeX PK font EAPI=5 HOMEPAGE=http://tug.org/texlive/ -KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=!=dev-libs/kpathsea-6.2.1 SLOT=0 SRC_URI=mirror://gentoo/texlive-20170524-source.tar.xz -_md5_=355e1fe44a765bb4df23678aebd6848c +_md5_=d48bdcb7fe1e229b6e657052fc1a109a diff --git a/metadata/md5-cache/dev-lang/Manifest.gz b/metadata/md5-cache/dev-lang/Manifest.gz index 35062a5e86de..a6675e2c9eec 100644 Binary files a/metadata/md5-cache/dev-lang/Manifest.gz and b/metadata/md5-cache/dev-lang/Manifest.gz differ diff --git a/metadata/md5-cache/dev-lang/php-5.6.36 b/metadata/md5-cache/dev-lang/php-5.6.36 index 4f2c0cf90383..349226396697 100644 --- a/metadata/md5-cache/dev-lang/php-5.6.36 +++ b/metadata/md5-cache/dev-lang/php-5.6.36 @@ -10,5 +10,5 @@ RDEPEND=>=app-eselect/eselect-php-0.9.1[apache2?,fpm?] >=dev-libs/libpcre-8.32[u REQUIRED_USE=|| ( cli cgi fpm apache2 embed ) cli? ( ^^ ( readline libedit ) ) truetype? ( gd zlib ) vpx? ( gd zlib ) cjk? ( gd zlib ) exif? ( gd zlib ) xpm? ( gd zlib ) gd? ( zlib ) simplexml? ( xml ) soap? ( xml ) wddx? ( xml ) xmlrpc? ( || ( xml iconv ) ) xmlreader? ( xml ) xslt? ( xml ) ldap-sasl? ( ldap ) mhash? ( hash ) phar? ( hash ) recode? ( !imap !mysql !mysqli !libmysqlclient ) libmysqlclient? ( || ( mysql mysqli pdo ) ) qdbm? ( !gdbm ) readline? ( !libedit ) sharedmem? ( !threads ) SLOT=5.6 SRC_URI=https://php.net/distributions/php-5.6.36.tar.xz -_eclasses_=autotools d0e5375d47f4c809f406eb892e531513 desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=c1fe8b89d63b4cd3caf23a6a740675a7 +_eclasses_=autotools d0e5375d47f4c809f406eb892e531513 desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf +_md5_=df61e62eae025b6addf7b321a8449a2f diff --git a/metadata/md5-cache/dev-lang/php-5.6.37 b/metadata/md5-cache/dev-lang/php-5.6.37 index cb11ab7a78dd..851f75abfa1e 100644 --- a/metadata/md5-cache/dev-lang/php-5.6.37 +++ b/metadata/md5-cache/dev-lang/php-5.6.37 @@ -10,5 +10,5 @@ RDEPEND=>=app-eselect/eselect-php-0.9.1[apache2?,fpm?] >=dev-libs/libpcre-8.32[u REQUIRED_USE=|| ( cli cgi fpm apache2 embed ) cli? ( ^^ ( readline libedit ) ) truetype? ( gd zlib ) vpx? ( gd zlib ) cjk? ( gd zlib ) exif? ( gd zlib ) xpm? ( gd zlib ) gd? ( zlib ) simplexml? ( xml ) soap? ( xml ) wddx? ( xml ) xmlrpc? ( || ( xml iconv ) ) xmlreader? ( xml ) xslt? ( xml ) ldap-sasl? ( ldap ) mhash? ( hash ) phar? ( hash ) recode? ( !imap !mysql !mysqli !libmysqlclient ) libmysqlclient? ( || ( mysql mysqli pdo ) ) qdbm? ( !gdbm ) readline? ( !libedit ) sharedmem? ( !threads ) SLOT=5.6 SRC_URI=https://php.net/distributions/php-5.6.37.tar.xz -_eclasses_=autotools d0e5375d47f4c809f406eb892e531513 desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=a16874a2e2aedc384ed78b566c611237 +_eclasses_=autotools d0e5375d47f4c809f406eb892e531513 desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf +_md5_=e6708cd6db149508201c80884b2ad141 diff --git a/metadata/md5-cache/dev-lang/php-7.0.29 b/metadata/md5-cache/dev-lang/php-7.0.29 index 0fa794be8c7d..8e900b97ff50 100644 --- a/metadata/md5-cache/dev-lang/php-7.0.29 +++ b/metadata/md5-cache/dev-lang/php-7.0.29 @@ -10,5 +10,5 @@ RDEPEND=>=app-eselect/eselect-php-0.9.1[apache2?,fpm?] >=dev-libs/libpcre-8.32[u REQUIRED_USE=|| ( cli cgi fpm apache2 embed phpdbg ) cli? ( ^^ ( readline libedit ) ) truetype? ( gd zlib ) webp? ( gd zlib ) cjk? ( gd zlib ) exif? ( gd zlib ) xpm? ( gd zlib ) gd? ( zlib ) simplexml? ( xml ) soap? ( xml ) wddx? ( xml ) xmlrpc? ( || ( xml iconv ) ) xmlreader? ( xml ) xslt? ( xml ) ldap-sasl? ( ldap ) mhash? ( hash ) phar? ( hash ) qdbm? ( !gdbm ) readline? ( !libedit ) recode? ( !imap !mysqli !mysql ) sharedmem? ( !threads ) mysql? ( || ( mysqli pdo ) ) SLOT=7.0 SRC_URI=https://secure.php.net/distributions/php-7.0.29.tar.xz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=6d06273299000122a68469009610f66b +_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf +_md5_=5c541e28e1f602e2caf4a29196f246c0 diff --git a/metadata/md5-cache/dev-lang/php-7.0.30 b/metadata/md5-cache/dev-lang/php-7.0.30 index ff8e9c71ba18..e7a9e038ff11 100644 --- a/metadata/md5-cache/dev-lang/php-7.0.30 +++ b/metadata/md5-cache/dev-lang/php-7.0.30 @@ -10,5 +10,5 @@ RDEPEND=>=app-eselect/eselect-php-0.9.1[apache2?,fpm?] >=dev-libs/libpcre-8.32[u REQUIRED_USE=|| ( cli cgi fpm apache2 embed phpdbg ) cli? ( ^^ ( readline libedit ) ) truetype? ( gd zlib ) webp? ( gd zlib ) cjk? ( gd zlib ) exif? ( gd zlib ) xpm? ( gd zlib ) gd? ( zlib ) simplexml? ( xml ) soap? ( xml ) wddx? ( xml ) xmlrpc? ( || ( xml iconv ) ) xmlreader? ( xml ) xslt? ( xml ) ldap-sasl? ( ldap ) mhash? ( hash ) phar? ( hash ) qdbm? ( !gdbm ) readline? ( !libedit ) recode? ( !imap !mysqli !mysql ) sharedmem? ( !threads ) mysql? ( || ( mysqli pdo ) ) SLOT=7.0 SRC_URI=https://secure.php.net/distributions/php-7.0.30.tar.xz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=6d06273299000122a68469009610f66b +_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf +_md5_=5c541e28e1f602e2caf4a29196f246c0 diff --git a/metadata/md5-cache/dev-lang/php-7.0.31 b/metadata/md5-cache/dev-lang/php-7.0.31 index 4dfb6e9e9640..5cfe08795146 100644 --- a/metadata/md5-cache/dev-lang/php-7.0.31 +++ b/metadata/md5-cache/dev-lang/php-7.0.31 @@ -10,5 +10,5 @@ RDEPEND=>=app-eselect/eselect-php-0.9.1[apache2?,fpm?] >=dev-libs/libpcre-8.32[u REQUIRED_USE=|| ( cli cgi fpm apache2 embed phpdbg ) cli? ( ^^ ( readline libedit ) ) truetype? ( gd zlib ) webp? ( gd zlib ) cjk? ( gd zlib ) exif? ( gd zlib ) xpm? ( gd zlib ) gd? ( zlib ) simplexml? ( xml ) soap? ( xml ) wddx? ( xml ) xmlrpc? ( || ( xml iconv ) ) xmlreader? ( xml ) xslt? ( xml ) ldap-sasl? ( ldap ) mhash? ( hash ) phar? ( hash ) qdbm? ( !gdbm ) readline? ( !libedit ) recode? ( !imap !mysqli !mysql ) sharedmem? ( !threads ) mysql? ( || ( mysqli pdo ) ) SLOT=7.0 SRC_URI=https://secure.php.net/distributions/php-7.0.31.tar.xz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=883ba362744fa2a3c87ee816ae1d5ce3 +_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf +_md5_=503dc36569fc61e1547c58c90bfa4420 diff --git a/metadata/md5-cache/dev-lang/php-7.1.16 b/metadata/md5-cache/dev-lang/php-7.1.16 index 5feb2d61304b..fe21dbff7553 100644 --- a/metadata/md5-cache/dev-lang/php-7.1.16 +++ b/metadata/md5-cache/dev-lang/php-7.1.16 @@ -10,5 +10,5 @@ RDEPEND=>=app-eselect/eselect-php-0.9.1[apache2?,fpm?] >=dev-libs/libpcre-8.32[u REQUIRED_USE=|| ( cli cgi fpm apache2 embed phpdbg ) cli? ( ^^ ( readline libedit ) ) truetype? ( gd zlib ) webp? ( gd zlib ) cjk? ( gd zlib ) exif? ( gd zlib ) xpm? ( gd zlib ) gd? ( zlib ) simplexml? ( xml ) soap? ( xml ) wddx? ( xml ) xmlrpc? ( || ( xml iconv ) ) xmlreader? ( xml ) xslt? ( xml ) ldap-sasl? ( ldap ) mhash? ( hash ) phar? ( hash ) qdbm? ( !gdbm ) readline? ( !libedit ) recode? ( !imap !mysqli !mysql ) session-mm? ( session !threads ) mysql? ( || ( mysqli pdo ) ) SLOT=7.1 SRC_URI=https://secure.php.net/distributions/php-7.1.16.tar.xz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=364eb5076207635db67f8c68381a3008 +_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf +_md5_=32a86531279d0230abc69dccd03e4cbf diff --git a/metadata/md5-cache/dev-lang/php-7.1.18 b/metadata/md5-cache/dev-lang/php-7.1.18 index 3cebca4a684e..627ccd00d51e 100644 --- a/metadata/md5-cache/dev-lang/php-7.1.18 +++ b/metadata/md5-cache/dev-lang/php-7.1.18 @@ -10,5 +10,5 @@ RDEPEND=>=app-eselect/eselect-php-0.9.1[apache2?,fpm?] >=dev-libs/libpcre-8.32[u REQUIRED_USE=|| ( cli cgi fpm apache2 embed phpdbg ) cli? ( ^^ ( readline libedit ) ) truetype? ( gd zlib ) webp? ( gd zlib ) cjk? ( gd zlib ) exif? ( gd zlib ) xpm? ( gd zlib ) gd? ( zlib ) simplexml? ( xml ) soap? ( xml ) wddx? ( xml ) xmlrpc? ( || ( xml iconv ) ) xmlreader? ( xml ) xslt? ( xml ) ldap-sasl? ( ldap ) mhash? ( hash ) phar? ( hash ) qdbm? ( !gdbm ) readline? ( !libedit ) recode? ( !imap !mysqli !mysql ) session-mm? ( session !threads ) mysql? ( || ( mysqli pdo ) ) SLOT=7.1 SRC_URI=https://secure.php.net/distributions/php-7.1.18.tar.xz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=65f33d2ccc7211d48249948d31bc03c7 +_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf +_md5_=c3c814c8c7a0555165074eb478ec6c49 diff --git a/metadata/md5-cache/dev-lang/php-7.1.20 b/metadata/md5-cache/dev-lang/php-7.1.20 index 3318bb8ecceb..89ea2af77a42 100644 --- a/metadata/md5-cache/dev-lang/php-7.1.20 +++ b/metadata/md5-cache/dev-lang/php-7.1.20 @@ -10,5 +10,5 @@ RDEPEND=>=app-eselect/eselect-php-0.9.1[apache2?,fpm?] >=dev-libs/libpcre-8.32[u REQUIRED_USE=|| ( cli cgi fpm apache2 embed phpdbg ) cli? ( ^^ ( readline libedit ) ) truetype? ( gd zlib ) webp? ( gd zlib ) cjk? ( gd zlib ) exif? ( gd zlib ) xpm? ( gd zlib ) gd? ( zlib ) simplexml? ( xml ) soap? ( xml ) wddx? ( xml ) xmlrpc? ( || ( xml iconv ) ) xmlreader? ( xml ) xslt? ( xml ) ldap-sasl? ( ldap ) mhash? ( hash ) phar? ( hash ) qdbm? ( !gdbm ) readline? ( !libedit ) recode? ( !imap !mysqli !mysql ) session-mm? ( session !threads ) mysql? ( || ( mysqli pdo ) ) SLOT=7.1 SRC_URI=https://secure.php.net/distributions/php-7.1.20.tar.xz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=db1dfea9e95c4e8774e1833d0098f134 +_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf +_md5_=156dc0c930e591876c1087045f226219 diff --git a/metadata/md5-cache/dev-lang/php-7.2.8 b/metadata/md5-cache/dev-lang/php-7.2.9 similarity index 90% rename from metadata/md5-cache/dev-lang/php-7.2.8 rename to metadata/md5-cache/dev-lang/php-7.2.9 index c93fb7d9abe2..39c8028176d6 100644 --- a/metadata/md5-cache/dev-lang/php-7.2.8 +++ b/metadata/md5-cache/dev-lang/php-7.2.9 @@ -9,6 +9,6 @@ LICENSE=PHP-3.01 BSD Zend-2.0 bcmath? ( LGPL-2.1+ ) fpm? ( BSD-2 ) gd? ( gd ) un RDEPEND=>=app-eselect/eselect-php-0.9.1[apache2?,fpm?] >=dev-libs/libpcre-8.32[unicode] fpm? ( acl? ( sys-apps/acl ) ) apache2? ( || ( >=www-servers/apache-2.4[apache2_modules_unixd,threads=] =net-misc/curl-7.10.5 ) enchant? ( app-text/enchant ) firebird? ( dev-db/firebird ) gd? ( virtual/jpeg:0 media-libs/libpng:0= sys-libs/zlib ) gdbm? ( >=sys-libs/gdbm-1.8.0:0= ) gmp? ( dev-libs/gmp:0= ) iconv? ( virtual/libiconv ) imap? ( virtual/imap-c-client[kerberos=,ssl=] ) intl? ( dev-libs/icu:= ) iodbc? ( dev-db/libiodbc ) kerberos? ( virtual/krb5 ) ldap? ( >=net-nds/openldap-1.2.11 ) ldap-sasl? ( dev-libs/cyrus-sasl >=net-nds/openldap-1.2.11 ) libedit? ( || ( sys-freebsd/freebsd-lib dev-libs/libedit ) ) lmdb? ( dev-db/lmdb:= ) mssql? ( dev-db/freetds[mssql] ) nls? ( sys-devel/gettext ) oci8-instant-client? ( dev-db/oracle-instantclient-basic ) odbc? ( >=dev-db/unixODBC-1.8.13 ) postgres? ( dev-db/postgresql:* ) qdbm? ( dev-db/qdbm ) readline? ( sys-libs/readline:0= ) recode? ( app-text/recode ) session-mm? ( dev-libs/mm ) simplexml? ( >=dev-libs/libxml2-2.6.8 ) snmp? ( >=net-analyzer/net-snmp-5.2 ) soap? ( >=dev-libs/libxml2-2.6.8 ) sodium? ( dev-libs/libsodium:= ) spell? ( >=app-text/aspell-0.50 ) sqlite? ( >=dev-db/sqlite-3.7.6.3 ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) tidy? ( || ( app-text/tidy-html5 app-text/htmltidy ) ) tokyocabinet? ( dev-db/tokyocabinet ) truetype? ( =media-libs/freetype-2* ) unicode? ( dev-libs/oniguruma:= ) wddx? ( >=dev-libs/libxml2-2.6.8 ) webp? ( media-libs/libwebp:0= ) xml? ( >=dev-libs/libxml2-2.6.8 ) xmlrpc? ( >=dev-libs/libxml2-2.6.8 virtual/libiconv ) xmlreader? ( >=dev-libs/libxml2-2.6.8 ) xmlwriter? ( >=dev-libs/libxml2-2.6.8 ) xpm? ( x11-libs/libXpm ) xslt? ( dev-libs/libxslt >=dev-libs/libxml2-2.6.8 ) zip? ( sys-libs/zlib:0= ) zip-encryption? ( >=dev-libs/libzip-1.2.0:= ) zlib? ( sys-libs/zlib:0= ) virtual/mta fpm? ( selinux? ( sec-policy/selinux-phpfpm ) systemd? ( sys-apps/systemd ) ) REQUIRED_USE=|| ( cli cgi fpm apache2 embed phpdbg ) cli? ( ^^ ( readline libedit ) ) truetype? ( gd zlib ) webp? ( gd zlib ) cjk? ( gd zlib ) exif? ( gd zlib ) xpm? ( gd zlib ) gd? ( zlib ) simplexml? ( xml ) soap? ( xml ) wddx? ( xml ) xmlrpc? ( || ( xml iconv ) ) xmlreader? ( xml ) xslt? ( xml ) ldap-sasl? ( ldap ) mhash? ( hash ) phar? ( hash ) qdbm? ( !gdbm ) readline? ( !libedit ) recode? ( !imap !mysqli !mysql ) session-mm? ( session !threads ) mysql? ( || ( mysqli pdo ) ) zip-encryption? ( zip ) SLOT=7.2 -SRC_URI=https://secure.php.net/distributions/php-7.2.8.tar.xz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=643b38c9857c0600954a654e189d59f4 +SRC_URI=https://secure.php.net/distributions/php-7.2.9.tar.xz +_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf +_md5_=018be3b088f66ba0fafe0a7855af680a diff --git a/metadata/md5-cache/dev-lang/php-7.3.0_alpha3 b/metadata/md5-cache/dev-lang/php-7.3.0_beta2 similarity index 90% rename from metadata/md5-cache/dev-lang/php-7.3.0_alpha3 rename to metadata/md5-cache/dev-lang/php-7.3.0_beta2 index 4d6d3378f392..f37f9c4d14ca 100644 --- a/metadata/md5-cache/dev-lang/php-7.3.0_alpha3 +++ b/metadata/md5-cache/dev-lang/php-7.3.0_beta2 @@ -9,6 +9,6 @@ LICENSE=PHP-3.01 BSD Zend-2.0 bcmath? ( LGPL-2.1+ ) fpm? ( BSD-2 ) gd? ( gd ) un RDEPEND=>=app-eselect/eselect-php-0.9.1[apache2?,fpm?] >=dev-libs/libpcre2-10.30[unicode] fpm? ( acl? ( sys-apps/acl ) ) apache2? ( || ( >=www-servers/apache-2.4[apache2_modules_unixd,threads=] =net-misc/curl-7.10.5 ) enchant? ( app-text/enchant ) firebird? ( dev-db/firebird ) gd? ( virtual/jpeg:0 media-libs/libpng:0= >=sys-libs/zlib-1.2.0.4 ) gdbm? ( >=sys-libs/gdbm-1.8.0:0= ) gmp? ( dev-libs/gmp:0= ) iconv? ( virtual/libiconv ) imap? ( virtual/imap-c-client[kerberos=,ssl=] ) intl? ( dev-libs/icu:= ) iodbc? ( dev-db/libiodbc ) kerberos? ( virtual/krb5 ) ldap? ( >=net-nds/openldap-1.2.11 ) ldap-sasl? ( dev-libs/cyrus-sasl >=net-nds/openldap-1.2.11 ) libedit? ( || ( sys-freebsd/freebsd-lib dev-libs/libedit ) ) lmdb? ( dev-db/lmdb:= ) mssql? ( dev-db/freetds[mssql] ) nls? ( sys-devel/gettext ) oci8-instant-client? ( dev-db/oracle-instantclient-basic ) odbc? ( >=dev-db/unixODBC-1.8.13 ) postgres? ( dev-db/postgresql:* ) qdbm? ( dev-db/qdbm ) readline? ( sys-libs/readline:0= ) recode? ( app-text/recode ) session-mm? ( dev-libs/mm ) simplexml? ( >=dev-libs/libxml2-2.6.8 ) snmp? ( >=net-analyzer/net-snmp-5.2 ) soap? ( >=dev-libs/libxml2-2.6.8 ) sodium? ( dev-libs/libsodium:= ) spell? ( >=app-text/aspell-0.50 ) sqlite? ( >=dev-db/sqlite-3.7.6.3 ) ssl? ( !libressl? ( >=dev-libs/openssl-1.0.1:0= ) libressl? ( dev-libs/libressl:0= ) ) tidy? ( || ( app-text/tidy-html5 app-text/htmltidy ) ) tokyocabinet? ( dev-db/tokyocabinet ) truetype? ( =media-libs/freetype-2* ) unicode? ( dev-libs/oniguruma:= ) wddx? ( >=dev-libs/libxml2-2.6.8 ) webp? ( media-libs/libwebp:0= ) xml? ( >=dev-libs/libxml2-2.6.8 ) xmlrpc? ( >=dev-libs/libxml2-2.6.8 virtual/libiconv ) xmlreader? ( >=dev-libs/libxml2-2.6.8 ) xmlwriter? ( >=dev-libs/libxml2-2.6.8 ) xpm? ( x11-libs/libXpm ) xslt? ( dev-libs/libxslt >=dev-libs/libxml2-2.6.8 ) zip? ( >=sys-libs/zlib-1.2.0.4:0= ) zip-encryption? ( >=dev-libs/libzip-1.2.0:= ) zlib? ( >=sys-libs/zlib-1.2.0.4:0= ) virtual/mta fpm? ( selinux? ( sec-policy/selinux-phpfpm ) systemd? ( sys-apps/systemd ) ) REQUIRED_USE=|| ( cli cgi fpm apache2 embed phpdbg ) cli? ( ^^ ( readline libedit ) ) truetype? ( gd zlib ) webp? ( gd zlib ) cjk? ( gd zlib ) exif? ( gd zlib ) xpm? ( gd zlib ) gd? ( zlib ) simplexml? ( xml ) soap? ( xml ) wddx? ( xml ) xmlrpc? ( || ( xml iconv ) ) xmlreader? ( xml ) xslt? ( xml ) ldap-sasl? ( ldap ) mhash? ( hash ) phar? ( hash ) qdbm? ( !gdbm ) readline? ( !libedit ) recode? ( !imap !mysqli !mysql ) session-mm? ( session !threads ) mysql? ( || ( mysqli pdo ) ) zip-encryption? ( zip ) SLOT=7.3 -SRC_URI=https://downloads.php.net/~cmb/php-7.3.0alpha3.tar.xz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=47d3bed92e5f84eb2a86a2a46a9ada49 +SRC_URI=https://downloads.php.net/~cmb/php-7.3.0beta2.tar.xz +_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf +_md5_=3489899f5669f2b4e17aa9fcc8f0b216 diff --git a/metadata/md5-cache/dev-libs/Manifest.gz b/metadata/md5-cache/dev-libs/Manifest.gz index f997ffba1500..f5a2f145427b 100644 Binary files a/metadata/md5-cache/dev-libs/Manifest.gz and b/metadata/md5-cache/dev-libs/Manifest.gz differ diff --git a/metadata/md5-cache/dev-libs/apr-util-1.5.4 b/metadata/md5-cache/dev-libs/apr-util-1.5.4 index d917c48d0540..9ddf561f7bb2 100644 --- a/metadata/md5-cache/dev-libs/apr-util-1.5.4 +++ b/metadata/md5-cache/dev-libs/apr-util-1.5.4 @@ -4,10 +4,10 @@ DESCRIPTION=Apache Portable Runtime Utility Library EAPI=4 HOMEPAGE=http://apr.apache.org/ IUSE=berkdb doc freetds gdbm ldap mysql nss odbc openssl postgres sqlite static-libs -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=Apache-2.0 RDEPEND=dev-libs/expat >=dev-libs/apr-1.4.6:1 berkdb? ( >=sys-libs/db-4 ) freetds? ( dev-db/freetds ) gdbm? ( sys-libs/gdbm ) ldap? ( =net-nds/openldap-2* ) mysql? ( =virtual/mysql-5* ) nss? ( dev-libs/nss ) odbc? ( dev-db/unixODBC ) openssl? ( dev-libs/openssl ) postgres? ( dev-db/postgresql ) sqlite? ( dev-db/sqlite:3 ) SLOT=1 SRC_URI=mirror://apache/apr/apr-util-1.5.4.tar.bz2 _eclasses_=autotools d0e5375d47f4c809f406eb892e531513 db-use 582140d1a711279e50ce284fc7b609f5 desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=8dcbedd250487595a9a4c31564a29c1c +_md5_=489d959d2515ff8c42b1f07a14ef1f49 diff --git a/metadata/md5-cache/dev-libs/botan-2.7.0 b/metadata/md5-cache/dev-libs/botan-2.7.0 index 474f0b3d7ed2..80a1d4ff70e5 100644 --- a/metadata/md5-cache/dev-libs/botan-2.7.0 +++ b/metadata/md5-cache/dev-libs/botan-2.7.0 @@ -4,10 +4,10 @@ DESCRIPTION=A C++ crypto library EAPI=6 HOMEPAGE=https://botan.randombit.net/ IUSE=bindist doc boost python bzip2 libressl lzma sqlite ssl static-libs zlib python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~ppc-macos +KEYWORDS=amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~ppc-macos LICENSE=BSD RDEPEND=bzip2? ( >=app-arch/bzip2-1.0.5 ) zlib? ( >=sys-libs/zlib-1.2.3 ) boost? ( >=dev-libs/boost-1.48 ) lzma? ( app-arch/xz-utils ) sqlite? ( dev-db/sqlite:3 ) ssl? ( !libressl? ( dev-libs/openssl:0=[bindist=] ) libressl? ( dev-libs/libressl:0= ) ) SLOT=2/7 SRC_URI=https://botan.randombit.net/releases/Botan-2.7.0.tgz _eclasses_=estack 43ddf5aaffa7a8d0482df54d25a66a1f multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 versionator 2352c3fc97241f6a02042773c8287748 -_md5_=2a399ed23180afbd6e06df219b3382d1 +_md5_=34bd1042fb0639ee8ca40055d54d46ce diff --git a/metadata/md5-cache/dev-libs/fribidi-0.19.7 b/metadata/md5-cache/dev-libs/fribidi-0.19.7 index 8742e9a5f62d..d9577211297f 100644 --- a/metadata/md5-cache/dev-libs/fribidi-0.19.7 +++ b/metadata/md5-cache/dev-libs/fribidi-0.19.7 @@ -4,10 +4,10 @@ DESCRIPTION=A free implementation of the unicode bidirectional algorithm EAPI=5 HOMEPAGE=https://fribidi.org/ IUSE=static-libs 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 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=LGPL-2.1 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(-)?] SLOT=0 SRC_URI=https://github.com/fribidi/fribidi/releases/download/0.19.7/fribidi-0.19.7.tar.bz2 _eclasses_=autotools d0e5375d47f4c809f406eb892e531513 autotools-multilib d4c92668ddddff2b1da2efb74daa43be autotools-utils 696393cddf6200db17a31641f597b403 desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=8898851129dff4c6b2466b87814b2bfb +_md5_=3325762eb93d4a9af226d2a1bef4008d diff --git a/metadata/md5-cache/dev-libs/fribidi-1.0.5 b/metadata/md5-cache/dev-libs/fribidi-1.0.5 index 16e9bc122440..468532227f24 100644 --- a/metadata/md5-cache/dev-libs/fribidi-1.0.5 +++ b/metadata/md5-cache/dev-libs/fribidi-1.0.5 @@ -4,9 +4,9 @@ DESCRIPTION=A free implementation of the unicode bidirectional algorithm EAPI=6 HOMEPAGE=https://fribidi.org/ IUSE=static-libs 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 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=LGPL-2.1+ SLOT=0 SRC_URI=https://github.com/fribidi/fribidi/releases/download/v1.0.5/fribidi-1.0.5.tar.bz2 _eclasses_=multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 -_md5_=ac88513a44830ebbecd481058ecdb8dc +_md5_=ef787a0ab0361672abaa1e728c1e3b73 diff --git a/metadata/md5-cache/dev-libs/hashit-0.9.7-r1 b/metadata/md5-cache/dev-libs/hashit-0.9.7-r1 deleted file mode 100644 index 48ea3879dfc2..000000000000 --- a/metadata/md5-cache/dev-libs/hashit-0.9.7-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Generic C hash library which supports multiple collision handling methods -EAPI=5 -HOMEPAGE=http://www.pleyades.net/david/projects/hashit -IUSE=debug -KEYWORDS=amd64 ~ppc x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=http://www.pleyades.net/david/projects/hashit/hashit-0.9.7.tar.bz2 -_eclasses_=cmake-utils ec27c4d90ac99a1a0fb77d97bfc597ee desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=5ce105f5d67be7761539e1a56bd1f75d diff --git a/metadata/md5-cache/dev-libs/hashit-0.9.8 b/metadata/md5-cache/dev-libs/hashit-0.9.8 index 9ac14ee85fcd..d631fc26b677 100644 --- a/metadata/md5-cache/dev-libs/hashit-0.9.8 +++ b/metadata/md5-cache/dev-libs/hashit-0.9.8 @@ -4,9 +4,9 @@ DESCRIPTION=Generic C hash library which supports multiple collision handling me EAPI=6 HOMEPAGE=http://www.pleyades.net/david/projects/hashit IUSE=debug -KEYWORDS=~amd64 ~ppc x86 +KEYWORDS=amd64 ~ppc x86 LICENSE=GPL-2 SLOT=0 SRC_URI=https://launchpad.net/hashit/trunk/0.9.8/+download/hashit-0.9.8.tar.bz2 _eclasses_=cmake-utils ec27c4d90ac99a1a0fb77d97bfc597ee desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=f7072f02c7608d9ebcac6ca7a3a29a49 +_md5_=f31e6a8b75b91dfae26667e7325f293c diff --git a/metadata/md5-cache/dev-libs/libinput-1.10.6 b/metadata/md5-cache/dev-libs/libinput-1.10.6 deleted file mode 100644 index 934afdc66a9b..000000000000 --- a/metadata/md5-cache/dev-libs/libinput-1.10.6 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install test -DEPEND=input_devices_wacom? ( >=dev-libs/libwacom-0.20 ) >=dev-libs/libevdev-1.3 >=sys-libs/mtdev-1.1 virtual/libudev virtual/pkgconfig doc? ( >=app-doc/doxygen-1.8.3 >=media-gfx/graphviz-2.38.0 ) >=dev-util/meson-0.45.1 >=dev-util/ninja-1.7.2 virtual/pkgconfig -DESCRIPTION=Library to handle input devices in Wayland -EAPI=6 -HOMEPAGE=https://www.freedesktop.org/wiki/Software/libinput/ -IUSE=doc input_devices_wacom test -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 -LICENSE=MIT -RDEPEND=input_devices_wacom? ( >=dev-libs/libwacom-0.20 ) >=dev-libs/libevdev-1.3 >=sys-libs/mtdev-1.1 virtual/libudev -RESTRICT=test -SLOT=0/10 -SRC_URI=https://www.freedesktop.org/software/libinput/libinput-1.10.6.tar.xz -_eclasses_=meson b953e9f7b0c7db44d8b115086b11ba16 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 udev 7af0412965eeadeee9e3b7ad98adabdf -_md5_=29649723d266f913bf622481a28cc7e3 diff --git a/metadata/md5-cache/dev-libs/libinput-1.11.2 b/metadata/md5-cache/dev-libs/libinput-1.11.2 deleted file mode 100644 index 9166a9671c7d..000000000000 --- a/metadata/md5-cache/dev-libs/libinput-1.11.2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst test -DEPEND=input_devices_wacom? ( >=dev-libs/libwacom-0.20 ) >=dev-libs/libevdev-1.3 >=sys-libs/mtdev-1.1 virtual/libudev:= virtual/udev virtual/pkgconfig doc? ( >=app-doc/doxygen-1.8.3 >=media-gfx/graphviz-2.38.0 ) >=dev-util/meson-0.45.1 >=dev-util/ninja-1.7.2 virtual/pkgconfig -DESCRIPTION=Library to handle input devices in Wayland -EAPI=6 -HOMEPAGE=https://www.freedesktop.org/wiki/Software/libinput/ -IUSE=doc input_devices_wacom test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -LICENSE=MIT -RDEPEND=input_devices_wacom? ( >=dev-libs/libwacom-0.20 ) >=dev-libs/libevdev-1.3 >=sys-libs/mtdev-1.1 virtual/libudev:= virtual/udev -RESTRICT=test -SLOT=0/10 -SRC_URI=https://www.freedesktop.org/software/libinput/libinput-1.11.2.tar.xz -_eclasses_=meson b953e9f7b0c7db44d8b115086b11ba16 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 udev 7af0412965eeadeee9e3b7ad98adabdf -_md5_=e30d3b13a58a029a72a80a477f79f658 diff --git a/metadata/md5-cache/dev-libs/libinput-1.11.3 b/metadata/md5-cache/dev-libs/libinput-1.11.3 index bc23a30825ce..08641349229b 100644 --- a/metadata/md5-cache/dev-libs/libinput-1.11.3 +++ b/metadata/md5-cache/dev-libs/libinput-1.11.3 @@ -3,7 +3,7 @@ DEPEND=input_devices_wacom? ( >=dev-libs/libwacom-0.20 ) >=dev-libs/libevdev-1.3 DESCRIPTION=Library to handle input devices in Wayland EAPI=6 HOMEPAGE=https://www.freedesktop.org/wiki/Software/libinput/ -IUSE=doc input_devices_wacom test +IUSE=doc input_devices_wacom KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 LICENSE=MIT RDEPEND=input_devices_wacom? ( >=dev-libs/libwacom-0.20 ) >=dev-libs/libevdev-1.3 >=sys-libs/mtdev-1.1 virtual/libudev:= virtual/udev @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0/10 SRC_URI=https://www.freedesktop.org/software/libinput/libinput-1.11.3.tar.xz _eclasses_=meson b953e9f7b0c7db44d8b115086b11ba16 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 udev 7af0412965eeadeee9e3b7ad98adabdf -_md5_=e30d3b13a58a029a72a80a477f79f658 +_md5_=403f7d3c985a1d2aac54b5faa1db202f diff --git a/metadata/md5-cache/dev-libs/libxml2-2.9.8 b/metadata/md5-cache/dev-libs/libxml2-2.9.8 index b53836e3d17e..47209ab46180 100644 --- a/metadata/md5-cache/dev-libs/libxml2-2.9.8 +++ b/metadata/md5-cache/dev-libs/libxml2-2.9.8 @@ -4,11 +4,11 @@ DESCRIPTION=XML C parser and toolkit EAPI=6 HOMEPAGE=http://www.xmlsoft.org/ IUSE=debug examples icu ipv6 lzma python readline static-libs test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=>=sys-libs/zlib-1.2.8-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] icu? ( >=dev-libs/icu-51.2-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(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-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(-)?] ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml] ) python_targets_python3_4? ( dev-lang/python:3.4[xml] ) python_targets_python3_5? ( dev-lang/python:3.5[xml] ) python_targets_python3_6? ( dev-lang/python:3.6[xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) readline? ( sys-libs/readline:= ) REQUIRED_USE=python? ( || ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) ) SLOT=2 SRC_URI=ftp://xmlsoft.org/libxml2/libxml2-2.9.8.tar.gz test? ( http://www.w3.org/XML/2004/xml-schema-test-suite/xmlschema2002-01-16/xsts-2002-01-16.tar.gz http://www.w3.org/XML/2004/xml-schema-test-suite/xmlschema2004-01-14/xsts-2004-01-14.tar.gz http://www.w3.org/XML/Test/xmlts20080827.tar.gz ) _eclasses_=autotools d0e5375d47f4c809f406eb892e531513 desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 prefix e51c7882b7b721e54e684f7eb143cbfe preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=60f81bfc16482a6eb2d7b46e2c1726f2 +_md5_=0279fa08493328e9dba700f78c263f84 diff --git a/metadata/md5-cache/dev-libs/openobex-1.7.2 b/metadata/md5-cache/dev-libs/openobex-1.7.2 index 8cfafa9bb5a1..4086d0cccceb 100644 --- a/metadata/md5-cache/dev-libs/openobex-1.7.2 +++ b/metadata/md5-cache/dev-libs/openobex-1.7.2 @@ -4,10 +4,10 @@ DESCRIPTION=Implementation of the OBEX protocol used for transferring data to mo EAPI=6 HOMEPAGE=https://sourceforge.net/projects/openobex/ IUSE=bluetooth irda usb -KEYWORDS=~amd64 ~arm ~hppa ppc ~ppc64 ~sparc x86 +KEYWORDS=amd64 ~arm ~hppa ppc ~ppc64 ~sparc x86 LICENSE=GPL-2 LGPL-2.1 RDEPEND=bluetooth? ( net-wireless/bluez:= ) usb? ( virtual/libusb:= ) SLOT=0/2 SRC_URI=mirror://sourceforge/openobex/1.7.2/openobex-1.7.2-Source.tar.gz _eclasses_=cmake-utils ec27c4d90ac99a1a0fb77d97bfc597ee desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 udev 7af0412965eeadeee9e3b7ad98adabdf vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=5902294d4a2d1ddd8a72e66618f56841 +_md5_=04de136e918c073d1a4cfc63ced79c58 diff --git a/metadata/md5-cache/dev-libs/opensc-0.18.0 b/metadata/md5-cache/dev-libs/opensc-0.18.0 index 69ad244e8090..0979f8c67f56 100644 --- a/metadata/md5-cache/dev-libs/opensc-0.18.0 +++ b/metadata/md5-cache/dev-libs/opensc-0.18.0 @@ -4,11 +4,11 @@ DESCRIPTION=Libraries and applications to access smartcards EAPI=6 HOMEPAGE=https://github.com/OpenSC/OpenSC/wiki IUSE=doc +pcsc-lite secure-messaging openct ctapi readline libressl ssl zlib -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc x86 +KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc x86 LICENSE=LGPL-2.1 RDEPEND=zlib? ( sys-libs/zlib ) readline? ( sys-libs/readline:0= ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) openct? ( >=dev-libs/openct-0.5.0 ) pcsc-lite? ( >=sys-apps/pcsc-lite-1.3.0 ) REQUIRED_USE=pcsc-lite? ( !openct !ctapi ) openct? ( !pcsc-lite !ctapi ) ctapi? ( !pcsc-lite !openct ) || ( pcsc-lite openct ctapi ) SLOT=0 SRC_URI=https://github.com/OpenSC/OpenSC/releases/download/0.18.0/opensc-0.18.0.tar.gz _eclasses_=ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 -_md5_=c621c28721100c81cf266ab04573aca0 +_md5_=7a2a9e7ff388b91fa9097d9a3c2ee4bc diff --git a/metadata/md5-cache/dev-libs/pkcs11-helper-1.25.1 b/metadata/md5-cache/dev-libs/pkcs11-helper-1.25.1 index 345e345c6184..ee5816fabdf9 100644 --- a/metadata/md5-cache/dev-libs/pkcs11-helper-1.25.1 +++ b/metadata/md5-cache/dev-libs/pkcs11-helper-1.25.1 @@ -4,10 +4,10 @@ DESCRIPTION=PKCS#11 helper library EAPI=6 HOMEPAGE=https://github.com/OpenSC/pkcs11-helper IUSE=doc gnutls libressl nss static-libs -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd LICENSE=|| ( BSD GPL-2 ) RDEPEND=!libressl? ( >=dev-libs/openssl-0.9.7:= ) libressl? ( dev-libs/libressl ) gnutls? ( >=net-libs/gnutls-1.4.4 ) nss? ( dev-libs/nss ) SLOT=0 SRC_URI=https://github.com/OpenSC/pkcs11-helper/releases/download/pkcs11-helper-1.25.1/pkcs11-helper-1.25.1.tar.bz2 _eclasses_=ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 -_md5_=8eacc473aa1896c20816946169701b74 +_md5_=0add14a2f65a99e9141caea46e03be19 diff --git a/metadata/md5-cache/dev-libs/tinyxml2-6.2.0 b/metadata/md5-cache/dev-libs/tinyxml2-6.2.0 index 9f32e1fa4538..28cc15f0db24 100644 --- a/metadata/md5-cache/dev-libs/tinyxml2-6.2.0 +++ b/metadata/md5-cache/dev-libs/tinyxml2-6.2.0 @@ -4,9 +4,9 @@ DESCRIPTION=A simple, small, efficient, C++ XML parser EAPI=6 HOMEPAGE=http://www.grinninglizard.com/tinyxml2/ https://github.com/leethomason/tinyxml2/ IUSE=static-libs test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~amd64 ~arm ~arm64 ~hppa sparc x86 +KEYWORDS=amd64 ~arm ~arm64 ~hppa sparc x86 LICENSE=ZLIB SLOT=0/6 SRC_URI=https://github.com/leethomason/tinyxml2/archive/6.2.0.tar.gz -> tinyxml2-6.2.0.tar.gz _eclasses_=cmake-multilib a2ef7e88c0043ca9dcbe33db04c84f23 cmake-utils ec27c4d90ac99a1a0fb77d97bfc597ee desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=b2ceecd1b91b0569b96ef89dc4a6a45c +_md5_=13cc07e6d2473222823b81ce57fc0a89 diff --git a/metadata/md5-cache/dev-perl/DateTime-Format-Mail-0.402.0 b/metadata/md5-cache/dev-perl/DateTime-Format-Mail-0.402.0 deleted file mode 100644 index 80e6e1160709..000000000000 --- a/metadata/md5-cache/dev-perl/DateTime-Format-Mail-0.402.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=virtual/perl-Carp >=dev-perl/DateTime-0.180.0 dev-perl/Params-Validate dev-perl/Dist-CheckConflicts virtual/perl-File-Spec >=virtual/perl-ExtUtils-MakeMaker-6.300.0 test? ( >=virtual/perl-Test-Simple-0.880.0 virtual/perl-File-Spec virtual/perl-Storable ) dev-lang/perl:=[-build(-)] -DESCRIPTION=Convert between DateTime and RFC2822/822 formats -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/DateTime-Format-Mail/ -IUSE=test -KEYWORDS=alpha amd64 arm ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-solaris -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=virtual/perl-Carp >=dev-perl/DateTime-0.180.0 dev-perl/Params-Validate dev-perl/Dist-CheckConflicts dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/B/BO/BOOK/DateTime-Format-Mail-0.402.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=760819e63554e8197e3ad70dd048e738 diff --git a/metadata/md5-cache/dev-perl/Encode-Detect-1.10.0-r1 b/metadata/md5-cache/dev-perl/Encode-Detect-1.10.0-r1 index 5693504b0566..10376f58e16c 100644 --- a/metadata/md5-cache/dev-perl/Encode-Detect-1.10.0-r1 +++ b/metadata/md5-cache/dev-perl/Encode-Detect-1.10.0-r1 @@ -3,10 +3,10 @@ DEPEND=dev-perl/Module-Build virtual/perl-ExtUtils-CBuilder dev-lang/perl:=[-bui DESCRIPTION=Encode::Detect - An Encode::Encoding subclass that detects the encoding of data EAPI=5 HOMEPAGE=http://search.cpan.org/dist/Encode-Detect/ -KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris +KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 s390 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris LICENSE=MPL-1.1 RDEPEND=dev-lang/perl:=[-build(-)] SLOT=0 SRC_URI=mirror://cpan/authors/id/J/JG/JGMYERS/Encode-Detect-1.01.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=1b5fee5de77c0dc169cbffdec34b2c4a +_md5_=411680c7245ac83276f01795cdb6f41f diff --git a/metadata/md5-cache/dev-perl/FCGI-ProcManager-0.250.0 b/metadata/md5-cache/dev-perl/FCGI-ProcManager-0.250.0 deleted file mode 100644 index d4f3cd3d3fbd..000000000000 --- a/metadata/md5-cache/dev-perl/FCGI-ProcManager-0.250.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=virtual/perl-ExtUtils-MakeMaker dev-lang/perl:=[-build(-)] -DESCRIPTION=A FastCGI process manager -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/FCGI-ProcManager/ -KEYWORDS=~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 -LICENSE=LGPL-2.1 -RDEPEND=dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/A/AR/ARODLAND/FCGI-ProcManager-0.25.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=f21f24279801282001f86979888f94aa diff --git a/metadata/md5-cache/dev-perl/Feed-Find-0.70.0-r1 b/metadata/md5-cache/dev-perl/Feed-Find-0.70.0-r1 deleted file mode 100644 index 8a0f19b25811..000000000000 --- a/metadata/md5-cache/dev-perl/Feed-Find-0.70.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-perl/Class-ErrorHandler dev-perl/HTML-Parser dev-perl/libwww-perl dev-perl/URI dev-lang/perl:= -DESCRIPTION=Syndication feed auto-discovery -EAPI=6 -HOMEPAGE=http://search.cpan.org/dist/Feed-Find/ -KEYWORDS=amd64 ~x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-perl/Class-ErrorHandler dev-perl/HTML-Parser dev-perl/libwww-perl dev-perl/URI dev-lang/perl:= -SLOT=0 -SRC_URI=mirror://cpan/authors/id/B/BT/BTROTT/Feed-Find-0.07.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce -_md5_=d2f0b5e9752bd59d960632cd13249355 diff --git a/metadata/md5-cache/dev-perl/File-chdir-0.101.0 b/metadata/md5-cache/dev-perl/File-chdir-0.101.0 deleted file mode 100644 index 697e99779f05..000000000000 --- a/metadata/md5-cache/dev-perl/File-chdir-0.101.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=virtual/perl-Carp virtual/perl-Exporter >=virtual/perl-File-Spec-3.27 >=virtual/perl-ExtUtils-MakeMaker-6.170.0 test? ( virtual/perl-Test-Simple ) dev-lang/perl:=[-build(-)] -DESCRIPTION=An alternative to File::Spec and CWD -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/File-chdir/ -IUSE=test -KEYWORDS=amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=virtual/perl-Carp virtual/perl-Exporter >=virtual/perl-File-Spec-3.27 dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/D/DA/DAGOLDEN/File-chdir-0.1010.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=cadeba4e17416acde506f73fad987819 diff --git a/metadata/md5-cache/dev-perl/Filesys-Df-0.920.0-r1 b/metadata/md5-cache/dev-perl/Filesys-Df-0.920.0-r1 deleted file mode 100644 index 69da52e711de..000000000000 --- a/metadata/md5-cache/dev-perl/Filesys-Df-0.920.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-lang/perl:=[-build(-)] -DESCRIPTION=Disk free based on Filesys::Statvfs -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/Filesys-Df/ -KEYWORDS=amd64 x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/I/IG/IGUTHRIE/Filesys-Df-0.92.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=84b806e54bbdf0d4344516c2f11dc701 diff --git a/metadata/md5-cache/dev-perl/Filesys-DiskSpace-0.50.0-r1 b/metadata/md5-cache/dev-perl/Filesys-DiskSpace-0.50.0-r1 deleted file mode 100644 index 2fee2dc6cfc0..000000000000 --- a/metadata/md5-cache/dev-perl/Filesys-DiskSpace-0.50.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-lang/perl:=[-build(-)] -DESCRIPTION=Perl df -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/Filesys-DiskSpace/ -KEYWORDS=amd64 ~ppc sparc x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/F/FT/FTASSIN/Filesys-DiskSpace-0.05.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=997c93b496e7d23750d6b52c26ac74aa diff --git a/metadata/md5-cache/dev-perl/Finance-Quote-1.370.0 b/metadata/md5-cache/dev-perl/Finance-Quote-1.370.0 deleted file mode 100644 index 717ee4bcbe94..000000000000 --- a/metadata/md5-cache/dev-perl/Finance-Quote-1.370.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-perl/CGI virtual/perl-Carp dev-perl/DateTime virtual/perl-Encode virtual/perl-Exporter dev-perl/HTML-Parser dev-perl/HTML-TableExtract dev-perl/HTML-Tree dev-perl/HTTP-Cookies dev-perl/HTTP-Message dev-perl/JSON dev-perl/LWP-Protocol-https dev-perl/libwww-perl dev-perl/Mozilla-CA virtual/perl-Time-Piece dev-perl/URI virtual/perl-ExtUtils-MakeMaker test? ( virtual/perl-Data-Dumper virtual/perl-File-Spec virtual/perl-Test-Simple ) dev-lang/perl:=[-build(-)] -DESCRIPTION=Get stock and mutual fund quotes from various exchanges -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/Finance-Quote/ -IUSE=test -KEYWORDS=alpha amd64 ppc ~ppc64 x86 -LICENSE=GPL-2 -RDEPEND=dev-perl/CGI virtual/perl-Carp dev-perl/DateTime virtual/perl-Encode virtual/perl-Exporter dev-perl/HTML-Parser dev-perl/HTML-TableExtract dev-perl/HTML-Tree dev-perl/HTTP-Cookies dev-perl/HTTP-Message dev-perl/JSON dev-perl/LWP-Protocol-https dev-perl/libwww-perl dev-perl/Mozilla-CA virtual/perl-Time-Piece dev-perl/URI dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/E/EC/ECOCODE/Finance-Quote-1.37.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=e6678735b941ac1e5b08c64b98c44aca diff --git a/metadata/md5-cache/dev-perl/Finance-Quote-1.380.0 b/metadata/md5-cache/dev-perl/Finance-Quote-1.380.0 deleted file mode 100644 index 05bf7e135c0f..000000000000 --- a/metadata/md5-cache/dev-perl/Finance-Quote-1.380.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-perl/CGI virtual/perl-Carp dev-perl/DateTime virtual/perl-Encode virtual/perl-Exporter dev-perl/HTML-Parser dev-perl/HTML-TableExtract dev-perl/HTML-Tree dev-perl/HTTP-Cookies dev-perl/HTTP-Message dev-perl/JSON dev-perl/LWP-Protocol-https dev-perl/libwww-perl dev-perl/Mozilla-CA virtual/perl-Time-Piece dev-perl/URI virtual/perl-ExtUtils-MakeMaker test? ( virtual/perl-Data-Dumper virtual/perl-File-Spec virtual/perl-Test-Simple ) dev-lang/perl:= -DESCRIPTION=Get stock and mutual fund quotes from various exchanges -EAPI=6 -HOMEPAGE=http://search.cpan.org/dist/Finance-Quote/ -IUSE=test -KEYWORDS=~alpha ~amd64 ~ppc ~ppc64 ~x86 -LICENSE=GPL-2 -RDEPEND=dev-perl/CGI virtual/perl-Carp dev-perl/DateTime virtual/perl-Encode virtual/perl-Exporter dev-perl/HTML-Parser dev-perl/HTML-TableExtract dev-perl/HTML-Tree dev-perl/HTTP-Cookies dev-perl/HTTP-Message dev-perl/JSON dev-perl/LWP-Protocol-https dev-perl/libwww-perl dev-perl/Mozilla-CA virtual/perl-Time-Piece dev-perl/URI dev-lang/perl:= -SLOT=0 -SRC_URI=mirror://cpan/authors/id/E/EC/ECOCODE/Finance-Quote-1.38.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce -_md5_=a6d574f759c9118c5c110a0005789104 diff --git a/metadata/md5-cache/dev-perl/Finance-YahooQuote-0.250.0 b/metadata/md5-cache/dev-perl/Finance-YahooQuote-0.250.0 deleted file mode 100644 index 4641dc76f9f8..000000000000 --- a/metadata/md5-cache/dev-perl/Finance-YahooQuote-0.250.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-perl/libwww-perl virtual/perl-MIME-Base64 >=dev-perl/HTML-Parser-2.200.0 >=virtual/perl-Text-ParseWords-3.100.0 virtual/perl-ExtUtils-MakeMaker dev-lang/perl:=[-build(-)] -DESCRIPTION=Get stock quotes from Yahoo! Finance -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/Finance-YahooQuote/ -KEYWORDS=amd64 ppc x86 -LICENSE=GPL-2+ -RDEPEND=dev-perl/libwww-perl virtual/perl-MIME-Base64 >=dev-perl/HTML-Parser-2.200.0 >=virtual/perl-Text-ParseWords-3.100.0 dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/E/ED/EDD/Finance-YahooQuote-0.25.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=c8cff2554966d04e06a7a738337c1fb3 diff --git a/metadata/md5-cache/dev-perl/Glib-Object-Introspection-0.40.0 b/metadata/md5-cache/dev-perl/Glib-Object-Introspection-0.40.0 deleted file mode 100644 index 8e35081f9f78..000000000000 --- a/metadata/md5-cache/dev-perl/Glib-Object-Introspection-0.40.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test -DEPEND=>=dev-perl/ExtUtils-Depends-0.300.0 >=dev-perl/ExtUtils-PkgConfig-1.0.0 >=dev-perl/glib-perl-1.320.0 >=dev-libs/gobject-introspection-1.0 >=dev-libs/libffi-3.0.0 >=dev-libs/glib-2.0.0 dev-lang/perl:= -DESCRIPTION=Dynamically create Perl language bindings -EAPI=6 -HOMEPAGE=http://search.cpan.org/dist/Glib-Object-Introspection/ -KEYWORDS=~amd64 ~x86 -LICENSE=LGPL-2.1 -RDEPEND=>=dev-perl/glib-perl-1.320.0 >=dev-libs/gobject-introspection-1.0 >=dev-libs/libffi-3.0.0 >=dev-libs/glib-2.0.0 dev-lang/perl:= -SLOT=0 -SRC_URI=mirror://cpan/authors/id/X/XA/XAOC/Glib-Object-Introspection-0.040.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=4215e2fe8a60a4ae02d667d03d31df7a diff --git a/metadata/md5-cache/dev-perl/Glib-Object-Introspection-0.42.0 b/metadata/md5-cache/dev-perl/Glib-Object-Introspection-0.42.0 deleted file mode 100644 index e4c99a5a2cc3..000000000000 --- a/metadata/md5-cache/dev-perl/Glib-Object-Introspection-0.42.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test -DEPEND=>=dev-perl/ExtUtils-Depends-0.300.0 >=dev-perl/ExtUtils-PkgConfig-1.0.0 >=dev-perl/glib-perl-1.320.0 >=dev-libs/gobject-introspection-1.0 >=dev-libs/libffi-3.0.0 >=dev-libs/glib-2.0.0 dev-lang/perl:= -DESCRIPTION=Dynamically create Perl language bindings -EAPI=6 -HOMEPAGE=http://search.cpan.org/dist/Glib-Object-Introspection/ -KEYWORDS=amd64 x86 -LICENSE=LGPL-2.1 -RDEPEND=>=dev-perl/glib-perl-1.320.0 >=dev-libs/gobject-introspection-1.0 >=dev-libs/libffi-3.0.0 >=dev-libs/glib-2.0.0 dev-lang/perl:= -SLOT=0 -SRC_URI=mirror://cpan/authors/id/X/XA/XAOC/Glib-Object-Introspection-0.042.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=70c4b53e381e1eb32541acb987b28465 diff --git a/metadata/md5-cache/dev-perl/Goo-Canvas-0.60.0-r1 b/metadata/md5-cache/dev-perl/Goo-Canvas-0.60.0-r1 deleted file mode 100644 index c19337835e60..000000000000 --- a/metadata/md5-cache/dev-perl/Goo-Canvas-0.60.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=x11-libs/goocanvas:0 dev-perl/Gtk2 dev-perl/glib-perl dev-perl/Cairo dev-perl/ExtUtils-Depends dev-perl/ExtUtils-PkgConfig dev-lang/perl:=[-build(-)] -DESCRIPTION=Perl interface to the GooCanvas -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/Goo-Canvas/ -KEYWORDS=amd64 x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=x11-libs/goocanvas:0 dev-perl/Gtk2 dev-perl/glib-perl dev-perl/Cairo dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/Y/YE/YEWENBIN/Goo-Canvas-0.06.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=aeaf60631647eb21356cea9cb8f18ed4 diff --git a/metadata/md5-cache/dev-perl/Gtk2-Ex-PodViewer-0.180.0-r1 b/metadata/md5-cache/dev-perl/Gtk2-Ex-PodViewer-0.180.0-r1 deleted file mode 100644 index 0a87f4d6be36..000000000000 --- a/metadata/md5-cache/dev-perl/Gtk2-Ex-PodViewer-0.180.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=x11-libs/gtk+:2 dev-perl/Gtk2 dev-perl/IO-stringy virtual/perl-Pod-Parser virtual/perl-Pod-Simple dev-perl/Gtk2-Ex-Simple-List dev-perl/Locale-gettext dev-lang/perl:=[-build(-)] -DESCRIPTION=a Gtk2 widget for displaying Plain old Documentation (POD) -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/Gtk2-Ex-PodViewer/ -KEYWORDS=amd64 x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=x11-libs/gtk+:2 dev-perl/Gtk2 dev-perl/IO-stringy virtual/perl-Pod-Parser virtual/perl-Pod-Simple dev-perl/Gtk2-Ex-Simple-List dev-perl/Locale-gettext dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/G/GB/GBROWN/Gtk2-Ex-PodViewer-0.18.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=ce0e14dcc1965f6b11e94580ab1070ab diff --git a/metadata/md5-cache/dev-perl/Gtk2-Ex-PrintDialog-0.30.0-r1 b/metadata/md5-cache/dev-perl/Gtk2-Ex-PrintDialog-0.30.0-r1 deleted file mode 100644 index dc729af2e4c7..000000000000 --- a/metadata/md5-cache/dev-perl/Gtk2-Ex-PrintDialog-0.30.0-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=cups? ( dev-perl/Net-CUPS ) dev-perl/Gtk2 >=dev-perl/Locale-gettext-1.04 dev-lang/perl:=[-build(-)] -DESCRIPTION=a simple, pure Perl dialog for printing PostScript data in GTK+ applications -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/Gtk2-Ex-PrintDialog/ -IUSE=cups -KEYWORDS=amd64 x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=cups? ( dev-perl/Net-CUPS ) dev-perl/Gtk2 >=dev-perl/Locale-gettext-1.04 dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/G/GB/GBROWN/Gtk2-Ex-PrintDialog-0.03.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=5f802e9cbf6ec25d613871b097128671 diff --git a/metadata/md5-cache/dev-perl/Gtk2-Ex-Simple-List-0.500.0-r1 b/metadata/md5-cache/dev-perl/Gtk2-Ex-Simple-List-0.500.0-r1 deleted file mode 100644 index eac5b8a6c7a2..000000000000 --- a/metadata/md5-cache/dev-perl/Gtk2-Ex-Simple-List-0.500.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=>=dev-perl/Gtk2-1.60.0 >=dev-perl/glib-perl-1.62.0 dev-lang/perl:=[-build(-)] -DESCRIPTION=A simple interface to Gtk2's complex MVC list widget -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/Gtk2-Ex-Simple-List/ -KEYWORDS=amd64 ia64 sparc x86 -LICENSE=|| ( LGPL-2.1 LGPL-3 ) -RDEPEND=>=dev-perl/Gtk2-1.60.0 >=dev-perl/glib-perl-1.62.0 dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/R/RM/RMCFARLA/Gtk2-Perl-Ex/Gtk2-Ex-Simple-List-0.50.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=79290bd2027a9e1ae4b2ee459744be87 diff --git a/metadata/md5-cache/dev-perl/Gtk2-ImageView-0.50.0-r1 b/metadata/md5-cache/dev-perl/Gtk2-ImageView-0.50.0-r1 deleted file mode 100644 index 2b0908804986..000000000000 --- a/metadata/md5-cache/dev-perl/Gtk2-ImageView-0.50.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-perl/Gtk2 >=media-gfx/gtkimageview-1.6.3 dev-perl/glib-perl >=dev-perl/ExtUtils-Depends-0.300 >=dev-perl/ExtUtils-PkgConfig-1.030 dev-lang/perl:=[-build(-)] -DESCRIPTION=Perl binding for the GtkImageView image viewer widget -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/Gtk2-ImageView/ -KEYWORDS=amd64 x86 -LICENSE=LGPL-3 -RDEPEND=dev-perl/Gtk2 >=media-gfx/gtkimageview-1.6.3 dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/R/RA/RATCLIFFE/Gtk2-ImageView-0.05.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=fb97c0b3dbd59d6678c72a7df65d689a diff --git a/metadata/md5-cache/dev-perl/Gtk2-Unique-0.50.0-r1 b/metadata/md5-cache/dev-perl/Gtk2-Unique-0.50.0-r1 deleted file mode 100644 index e4436d89b3ac..000000000000 --- a/metadata/md5-cache/dev-perl/Gtk2-Unique-0.50.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-libs/libunique:1 dev-perl/Gtk2 dev-perl/glib-perl dev-perl/ExtUtils-Depends dev-perl/ExtUtils-PkgConfig dev-lang/perl:=[-build(-)] -DESCRIPTION=Perl binding for C libunique library -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/Gtk2-Unique/ -KEYWORDS=amd64 x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-libs/libunique:1 dev-perl/Gtk2 dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/P/PO/POTYL/Gtk2-Unique-0.05.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=2e768bc3eb44a33ccc0e14878105fd09 diff --git a/metadata/md5-cache/dev-perl/HTML-Formatter-2.140.0 b/metadata/md5-cache/dev-perl/HTML-Formatter-2.140.0 deleted file mode 100644 index 5df745f7810f..000000000000 --- a/metadata/md5-cache/dev-perl/HTML-Formatter-2.140.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=virtual/perl-Carp virtual/perl-Data-Dumper virtual/perl-Encode dev-perl/Font-AFM dev-perl/HTML-Tree virtual/perl-IO virtual/perl-parent >=dev-perl/Module-Build-0.280.0 test? ( dev-perl/File-Slurper virtual/perl-File-Spec virtual/perl-Scalar-List-Utils >=virtual/perl-Test-Simple-0.960.0 ) dev-lang/perl:= -DESCRIPTION=HTML Formatter -EAPI=6 -HOMEPAGE=http://search.cpan.org/dist/HTML-Formatter/ -IUSE=test -KEYWORDS=amd64 ppc x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=virtual/perl-Carp virtual/perl-Data-Dumper virtual/perl-Encode dev-perl/Font-AFM dev-perl/HTML-Tree virtual/perl-IO virtual/perl-parent dev-lang/perl:= -SLOT=0 -SRC_URI=mirror://cpan/authors/id/N/NI/NIGELM/HTML-Formatter-2.14.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce -_md5_=b002be648b1437071fc7b17ebb6ee6ab diff --git a/metadata/md5-cache/dev-perl/HTML-LinkExtractor-0.130.0-r1 b/metadata/md5-cache/dev-perl/HTML-LinkExtractor-0.130.0-r1 deleted file mode 100644 index 38ab5505951c..000000000000 --- a/metadata/md5-cache/dev-perl/HTML-LinkExtractor-0.130.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-perl/HTML-Parser dev-lang/perl:=[-build(-)] -DESCRIPTION=A bare-bone HTML parser, similar to HTML::Parser -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/HTML-LinkExtractor/ -KEYWORDS=amd64 ia64 ppc ppc64 sparc x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-perl/HTML-Parser dev-perl/URI dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/P/PO/PODMASTER/HTML-LinkExtractor-0.13.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=18f70a53db0effb59f11d188ec26d00f diff --git a/metadata/md5-cache/dev-perl/HTML-Scrubber-0.150.0 b/metadata/md5-cache/dev-perl/HTML-Scrubber-0.150.0 deleted file mode 100644 index 3b8629f35fa3..000000000000 --- a/metadata/md5-cache/dev-perl/HTML-Scrubber-0.150.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-perl/Module-Build test? ( dev-perl/Test-Memory-Cycle ) dev-lang/perl:=[-build(-)] -DESCRIPTION=Perl extension for scrubbing/sanitizing html -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/HTML-Scrubber/ -IUSE=test -KEYWORDS=amd64 ppc ppc64 x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-perl/HTML-Parser dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/N/NI/NIGELM/HTML-Scrubber-0.15.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=d058e038653d296f642f9f8038222e15 diff --git a/metadata/md5-cache/dev-perl/HTML-SimpleParse-0.120.0-r1 b/metadata/md5-cache/dev-perl/HTML-SimpleParse-0.120.0-r1 deleted file mode 100644 index 14b94ba56507..000000000000 --- a/metadata/md5-cache/dev-perl/HTML-SimpleParse-0.120.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=>=dev-perl/Module-Build-0.28 dev-lang/perl:=[-build(-)] -DESCRIPTION=A bare-bones HTML parser, similar to HTML::Parser -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/HTML-SimpleParse/ -KEYWORDS=alpha amd64 ia64 ppc ppc64 sparc x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/K/KW/KWILLIAMS/HTML-SimpleParse-0.12.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=30d0245dea5f5c5e900139bcfbecb8e6 diff --git a/metadata/md5-cache/dev-perl/HTML-Strip-2.90.0 b/metadata/md5-cache/dev-perl/HTML-Strip-2.90.0 deleted file mode 100644 index c20e988f85f7..000000000000 --- a/metadata/md5-cache/dev-perl/HTML-Strip-2.90.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=virtual/perl-Carp virtual/perl-ExtUtils-MakeMaker test? ( dev-perl/Test-Exception virtual/perl-Test-Simple ) dev-lang/perl:=[-build(-)] -DESCRIPTION=Extension for stripping HTML markup from text -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/HTML-Strip/ -IUSE=test -KEYWORDS=amd64 ia64 ~ppc ppc64 sparc x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=virtual/perl-Carp dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/K/KI/KILINRAX/HTML-Strip-2.09.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=30230141097cd339bbde9537a389cc3f diff --git a/metadata/md5-cache/dev-perl/HTML-TableExtract-2.130.0 b/metadata/md5-cache/dev-perl/HTML-TableExtract-2.130.0 deleted file mode 100644 index 5a5a2a433ead..000000000000 --- a/metadata/md5-cache/dev-perl/HTML-TableExtract-2.130.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=>=dev-perl/HTML-Element-Extended-1.160.0 dev-perl/HTML-Parser virtual/perl-ExtUtils-MakeMaker dev-lang/perl:=[-build(-)] -DESCRIPTION=The Perl Table-Extract Module -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/HTML-TableExtract/ -KEYWORDS=alpha amd64 ppc ppc64 x86 ~x86-linux -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=>=dev-perl/HTML-Element-Extended-1.160.0 dev-perl/HTML-Parser dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/M/MS/MSISK/HTML-TableExtract-2.13.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=3f9201ebaa0907d726c5914c89855c55 diff --git a/metadata/md5-cache/dev-perl/HTML-Template-2.950.0 b/metadata/md5-cache/dev-perl/HTML-Template-2.950.0 deleted file mode 100644 index aeb9224ddf42..000000000000 --- a/metadata/md5-cache/dev-perl/HTML-Template-2.950.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=test? ( dev-perl/CGI ) dev-lang/perl:=[-build(-)] -DESCRIPTION=A Perl module to use HTML Templates -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/HTML-Template/ -IUSE=test -KEYWORDS=amd64 ~arm ~mips ppc ~ppc64 x86 ~x86-fbsd -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/W/WO/WONKO/HTML-Template-2.95.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=9b80afbb3b16b28b40e9187f0aef22bf diff --git a/metadata/md5-cache/dev-perl/HTTP-Cache-Transparent-1.100.0-r1 b/metadata/md5-cache/dev-perl/HTTP-Cache-Transparent-1.100.0-r1 deleted file mode 100644 index fa4f8c11eb3e..000000000000 --- a/metadata/md5-cache/dev-perl/HTTP-Cache-Transparent-1.100.0-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-perl/libwww-perl virtual/perl-Digest-MD5 virtual/perl-Storable test? ( virtual/perl-Test-Simple ) dev-lang/perl:=[-build(-)] -DESCRIPTION=Cache the result of http get-requests persistently -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/HTTP-Cache-Transparent/ -IUSE=test -KEYWORDS=amd64 ia64 ppc sparc x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-perl/libwww-perl virtual/perl-Digest-MD5 virtual/perl-Storable dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/M/MA/MATTIASH/HTTP-Cache-Transparent-1.1.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=5a192b631b5cc252a38acbc99fa76324 diff --git a/metadata/md5-cache/dev-perl/HTTP-Headers-Fast-0.200.0 b/metadata/md5-cache/dev-perl/HTTP-Headers-Fast-0.200.0 deleted file mode 100644 index a05550540d31..000000000000 --- a/metadata/md5-cache/dev-perl/HTTP-Headers-Fast-0.200.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-perl/HTTP-Date >=dev-perl/Module-Build-0.380.0 test? ( >=virtual/perl-Test-Simple-0.980.0 dev-perl/Test-Requires ) dev-lang/perl:= -DESCRIPTION=Faster implementation of HTTP::Headers -EAPI=6 -HOMEPAGE=http://search.cpan.org/dist/HTTP-Headers-Fast/ -IUSE=test -KEYWORDS=~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-perl/HTTP-Date dev-lang/perl:= -SLOT=0 -SRC_URI=mirror://cpan/authors/id/T/TO/TOKUHIROM/HTTP-Headers-Fast-0.20.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce -_md5_=08fcbace9a02421a1ab82fd625f6f2ab diff --git a/metadata/md5-cache/dev-perl/Hash-MoreUtils-0.20.0-r1 b/metadata/md5-cache/dev-perl/Hash-MoreUtils-0.20.0-r1 deleted file mode 100644 index 411a7f27e1ca..000000000000 --- a/metadata/md5-cache/dev-perl/Hash-MoreUtils-0.20.0-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-perl/Module-Build test? ( virtual/perl-Test-Simple ) dev-lang/perl:=[-build(-)] -DESCRIPTION=Provide the stuff missing in Hash::Util -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/Hash-MoreUtils/ -IUSE=test -KEYWORDS=amd64 x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/R/RE/REHSACK/Hash-MoreUtils-0.02.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=b67656d382d8f2137a1b5ee1c5f50e13 diff --git a/metadata/md5-cache/dev-perl/Hash-NoRef-0.30.0-r1 b/metadata/md5-cache/dev-perl/Hash-NoRef-0.30.0-r1 deleted file mode 100644 index fd244d5df439..000000000000 --- a/metadata/md5-cache/dev-perl/Hash-NoRef-0.30.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-lang/perl:=[-build(-)] -DESCRIPTION=Hash to store values without increasing reference count (weak references) -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/Hash-NoRef/ -KEYWORDS=amd64 x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/G/GM/GMPASSOS/Hash-NoRef-0.03.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=fa5e39fb4f9f9bab76f0b8b1eb551722 diff --git a/metadata/md5-cache/dev-perl/Heap-0.800.0-r1 b/metadata/md5-cache/dev-perl/Heap-0.800.0-r1 deleted file mode 100644 index 0b1a5f1be187..000000000000 --- a/metadata/md5-cache/dev-perl/Heap-0.800.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-lang/perl:=[-build(-)] -DESCRIPTION=Heap - Perl extensions for keeping data partially sorted -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/Heap/ -KEYWORDS=alpha amd64 ia64 ppc ppc64 sparc x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/J/JM/JMM/Heap-0.80.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=6c15e695ace4e47aab3acdc299baf780 diff --git a/metadata/md5-cache/dev-perl/IMAP-Admin-1.6.7-r1 b/metadata/md5-cache/dev-perl/IMAP-Admin-1.6.7-r1 deleted file mode 100644 index 38b916e6318c..000000000000 --- a/metadata/md5-cache/dev-perl/IMAP-Admin-1.6.7-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-lang/perl:=[-build(-)] -DESCRIPTION=Perl module for basic IMAP server administration -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/IMAP-Admin/ -IUSE=examples -KEYWORDS=amd64 x86 -LICENSE=|| ( Artistic GPL-2 ) -RDEPEND=dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/E/EE/EESTABROO/IMAP-Admin-1.6.7.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=f10c98f1473842f83ee7082307524982 diff --git a/metadata/md5-cache/dev-perl/IO-AIO-4.330.0 b/metadata/md5-cache/dev-perl/IO-AIO-4.330.0 deleted file mode 100644 index eaf74f7a3ba9..000000000000 --- a/metadata/md5-cache/dev-perl/IO-AIO-4.330.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-perl/common-sense >=dev-perl/Canary-Stability-2001 >=virtual/perl-ExtUtils-MakeMaker-6.520.0 dev-lang/perl:= -DESCRIPTION=Asynchronous Input/Output -EAPI=6 -HOMEPAGE=http://search.cpan.org/dist/IO-AIO/ -KEYWORDS=amd64 ~ppc x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-perl/common-sense dev-lang/perl:= -RESTRICT=test -SLOT=0 -SRC_URI=mirror://cpan/authors/id/M/ML/MLEHMANN/IO-AIO-4.33.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce -_md5_=56ee44d7b4c88477615c06cb75a07540 diff --git a/metadata/md5-cache/dev-perl/IO-BufferedSelect-1.0.0-r1 b/metadata/md5-cache/dev-perl/IO-BufferedSelect-1.0.0-r1 deleted file mode 100644 index 40b063aa9391..000000000000 --- a/metadata/md5-cache/dev-perl/IO-BufferedSelect-1.0.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-lang/perl:=[-build(-)] -DESCRIPTION=Perl module that implements a line-buffered select interface -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/IO-BufferedSelect/ -KEYWORDS=amd64 ppc sparc x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/A/AF/AFN/IO-BufferedSelect-1.0.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=10e91491c6f3bf410f097c3c659b2744 diff --git a/metadata/md5-cache/dev-perl/IO-Interactive-1.21.0 b/metadata/md5-cache/dev-perl/IO-Interactive-1.21.0 deleted file mode 100644 index 23541c22ffb0..000000000000 --- a/metadata/md5-cache/dev-perl/IO-Interactive-1.21.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=virtual/perl-version-0.780.0 >=virtual/perl-ExtUtils-MakeMaker-6.640.0 virtual/perl-File-Spec test? ( >=virtual/perl-Test-Simple-0.940.0 ) dev-lang/perl:= -DESCRIPTION=Utilities for interactive I/O -EAPI=6 -HOMEPAGE=http://search.cpan.org/dist/IO-Interactive/ -IUSE=test -KEYWORDS=amd64 x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=>=virtual/perl-version-0.780.0 dev-lang/perl:= -SLOT=0 -SRC_URI=mirror://cpan/authors/id/B/BD/BDFOY/IO-Interactive-1.021.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce -_md5_=a3f4733bc4021e0e3bd03a4e22f90d2e diff --git a/metadata/md5-cache/dev-perl/IO-Pipely-0.005.0 b/metadata/md5-cache/dev-perl/IO-Pipely-0.005.0 deleted file mode 100644 index f0314d87ce2d..000000000000 --- a/metadata/md5-cache/dev-perl/IO-Pipely-0.005.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-lang/perl:=[-build(-)] -DESCRIPTION=Portably create pipe() or pipe-like handles, one way or another -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/IO-Pipely/ -KEYWORDS=amd64 ppc x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/R/RC/RCAPUTO/IO-Pipely-0.005.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=59bd9108bf3342dffae1f7d4494dc5de diff --git a/metadata/md5-cache/dev-perl/IO-SessionData-1.30.0 b/metadata/md5-cache/dev-perl/IO-SessionData-1.30.0 deleted file mode 100644 index 4dd2f99e3b43..000000000000 --- a/metadata/md5-cache/dev-perl/IO-SessionData-1.30.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=virtual/perl-ExtUtils-MakeMaker dev-lang/perl:=[-build(-)] -DESCRIPTION=Session data support module for SOAP::Lite -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/IO-SessionData/ -KEYWORDS=amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/P/PH/PHRED/IO-SessionData-1.03.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=6958c8da84d619f1e3d87b6eec0235cb diff --git a/metadata/md5-cache/dev-perl/IO-Tee-0.640.0-r1 b/metadata/md5-cache/dev-perl/IO-Tee-0.640.0-r1 deleted file mode 100644 index 1189cdc7fe11..000000000000 --- a/metadata/md5-cache/dev-perl/IO-Tee-0.640.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-lang/perl:=[-build(-)] -DESCRIPTION=Multiplex output to multiple output handles -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/IO-Tee/ -KEYWORDS=amd64 ia64 ppc sparc x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/K/KE/KENSHAN/IO-Tee-0.64.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=c598251092b07036d2145031d0db96b2 diff --git a/metadata/md5-cache/dev-perl/IO-Util-1.500.0-r1 b/metadata/md5-cache/dev-perl/IO-Util-1.500.0-r1 deleted file mode 100644 index ab122dcf86c3..000000000000 --- a/metadata/md5-cache/dev-perl/IO-Util-1.500.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-lang/perl:=[-build(-)] -DESCRIPTION=A selection of general-utility IO function -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/IO-Util/ -KEYWORDS=amd64 x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/D/DO/DOMIZIO/IO-Util-1.5.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=6ddbe078126fc1a6ee4574e68b8e5108 diff --git a/metadata/md5-cache/dev-perl/IPC-Signal-1.0.0-r1 b/metadata/md5-cache/dev-perl/IPC-Signal-1.0.0-r1 deleted file mode 100644 index e5f556cbfed9..000000000000 --- a/metadata/md5-cache/dev-perl/IPC-Signal-1.0.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-lang/perl:=[-build(-)] -DESCRIPTION=Translate signal names to/from numbers -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/IPC-Signal/ -KEYWORDS=amd64 ia64 ppc sparc x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/R/RO/ROSCH/IPC-Signal-1.00.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=77c251f7066ddfd4993c7571900da4ef diff --git a/metadata/md5-cache/dev-perl/Image-Sane-0.120.0 b/metadata/md5-cache/dev-perl/Image-Sane-0.120.0 deleted file mode 100644 index 505fafa5cdab..000000000000 --- a/metadata/md5-cache/dev-perl/Image-Sane-0.120.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-perl/Exception-Class dev-perl/Readonly >=media-gfx/sane-backends-1.0.19 dev-perl/ExtUtils-Depends dev-perl/ExtUtils-PkgConfig test? ( dev-perl/Test-Requires dev-perl/Try-Tiny ) dev-lang/perl:= -DESCRIPTION=Access SANE-compatible scanners from Perl -EAPI=6 -HOMEPAGE=http://search.cpan.org/dist/Image-Sane/ -IUSE=test examples -KEYWORDS=amd64 x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-perl/Exception-Class dev-perl/Readonly >=media-gfx/sane-backends-1.0.19 dev-lang/perl:= -SLOT=0 -SRC_URI=mirror://cpan/authors/id/R/RA/RATCLIFFE/Image-Sane-0.12.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce -_md5_=90354a84a5b2c7b37e93985c152d5e43 diff --git a/metadata/md5-cache/dev-perl/LWPx-ParanoidAgent-1.100.0 b/metadata/md5-cache/dev-perl/LWPx-ParanoidAgent-1.100.0 deleted file mode 100644 index 630b12bdf3db..000000000000 --- a/metadata/md5-cache/dev-perl/LWPx-ParanoidAgent-1.100.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-perl/libwww-perl dev-perl/Net-DNS virtual/perl-Time-HiRes >=dev-perl/Crypt-SSLeay-0.580.0 dev-lang/perl:= -DESCRIPTION=Subclass of LWP::UserAgent that protects you from harm -EAPI=6 -HOMEPAGE=http://search.cpan.org/dist/LWPx-ParanoidAgent/ -KEYWORDS=amd64 ~x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-perl/libwww-perl dev-perl/Net-DNS virtual/perl-Time-HiRes >=dev-perl/Crypt-SSLeay-0.580.0 virtual/perl-ExtUtils-MakeMaker dev-lang/perl:= -SLOT=0 -SRC_URI=mirror://cpan/authors/id/S/SA/SAXJAZMAN/lwp/LWPx-ParanoidAgent-1.10.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce -_md5_=a86e96628f466647c91a1202acdeffaa diff --git a/metadata/md5-cache/dev-perl/Lingua-Translit-0.250.0 b/metadata/md5-cache/dev-perl/Lingua-Translit-0.250.0 deleted file mode 100644 index a59560c1a0ad..000000000000 --- a/metadata/md5-cache/dev-perl/Lingua-Translit-0.250.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=virtual/perl-ExtUtils-MakeMaker dev-lang/perl:= -DESCRIPTION=Transliterates text between writing systems -EAPI=6 -HOMEPAGE=http://search.cpan.org/dist/Lingua-Translit/ -KEYWORDS=amd64 ~x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-lang/perl:= -SLOT=0 -SRC_URI=mirror://cpan/authors/id/A/AL/ALINKE/Lingua-Translit-0.25.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce -_md5_=77fa1cafd783e2d0f49c5197f2517106 diff --git a/metadata/md5-cache/dev-perl/Lingua-Translit-0.270.0 b/metadata/md5-cache/dev-perl/Lingua-Translit-0.270.0 deleted file mode 100644 index 99833836255f..000000000000 --- a/metadata/md5-cache/dev-perl/Lingua-Translit-0.270.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=virtual/perl-ExtUtils-MakeMaker dev-lang/perl:= -DESCRIPTION=Transliterates text between writing systems -EAPI=6 -HOMEPAGE=http://search.cpan.org/dist/Lingua-Translit/ -KEYWORDS=~amd64 ~arm ~x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-lang/perl:= -SLOT=0 -SRC_URI=mirror://cpan/authors/id/A/AL/ALINKE/Lingua-Translit-0.27.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce -_md5_=8fb826e8804cf952b9c91bc07150f161 diff --git a/metadata/md5-cache/dev-perl/Linux-DesktopFiles-0.130.0 b/metadata/md5-cache/dev-perl/Linux-DesktopFiles-0.130.0 deleted file mode 100644 index 15cd576fe671..000000000000 --- a/metadata/md5-cache/dev-perl/Linux-DesktopFiles-0.130.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-perl/Module-Build dev-lang/perl:= -DESCRIPTION=Perl module to get and parse the Linux .desktop files -EAPI=6 -HOMEPAGE=http://search.cpan.org/dist/Linux-DesktopFiles/ -KEYWORDS=~amd64 ~x86 -LICENSE=Artistic-2 -RDEPEND=>=dev-lang/perl-5.14.0[gdbm] dev-lang/perl:= -SLOT=0 -SRC_URI=mirror://cpan/authors/id/T/TR/TRIZEN/Linux-DesktopFiles-0.13.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce -_md5_=bc0af098f18936e992e87635707d2a1f diff --git a/metadata/md5-cache/dev-perl/Linux-DesktopFiles-0.90.0 b/metadata/md5-cache/dev-perl/Linux-DesktopFiles-0.90.0 deleted file mode 100644 index 5f1d53fe8593..000000000000 --- a/metadata/md5-cache/dev-perl/Linux-DesktopFiles-0.90.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-perl/Module-Build dev-lang/perl:=[-build(-)] -DESCRIPTION=Perl module to get and parse the Linux .desktop files -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/Linux-DesktopFiles/ -KEYWORDS=amd64 x86 -LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) -RDEPEND=>=dev-lang/perl-5.14.0[gdbm] dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/T/TR/TRIZEN/Linux-DesktopFiles-0.09.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=14c51675835e07e08717a79d268b4ff5 diff --git a/metadata/md5-cache/dev-perl/Manifest.gz b/metadata/md5-cache/dev-perl/Manifest.gz index 5d1b3049d1fc..e3f762a0d641 100644 Binary files a/metadata/md5-cache/dev-perl/Manifest.gz and b/metadata/md5-cache/dev-perl/Manifest.gz differ diff --git a/metadata/md5-cache/dev-perl/gnome2-canvas-1.2.0-r1 b/metadata/md5-cache/dev-perl/gnome2-canvas-1.2.0-r1 deleted file mode 100644 index 6732ad4794e8..000000000000 --- a/metadata/md5-cache/dev-perl/gnome2-canvas-1.2.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=x11-libs/gtk+:2 >=gnome-base/libgnomecanvas-2 >=dev-perl/glib-perl-1.040 >=dev-perl/Gtk2-1.040 >=dev-perl/ExtUtils-PkgConfig-1.03 >=dev-perl/ExtUtils-Depends-0.202 virtual/pkgconfig dev-lang/perl:=[-build(-)] -DESCRIPTION=Perl interface to the Gnome Canvas -EAPI=5 -HOMEPAGE=http://search.cpan.org/dist/Gnome2-Canvas/ -KEYWORDS=alpha amd64 ia64 ~ppc sparc x86 -LICENSE=LGPL-2 -RDEPEND=x11-libs/gtk+:2 >=gnome-base/libgnomecanvas-2 >=dev-perl/glib-perl-1.040 >=dev-perl/Gtk2-1.040 dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/T/TS/TSCH/Gnome2-Canvas-1.002.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=e0d8d8dec9ec9a013e1419a16ae8cafc diff --git a/metadata/md5-cache/dev-perl/gtk2-trayicon-0.60.0-r1 b/metadata/md5-cache/dev-perl/gtk2-trayicon-0.60.0-r1 deleted file mode 100644 index cacccfdbbfae..000000000000 --- a/metadata/md5-cache/dev-perl/gtk2-trayicon-0.60.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=>=dev-perl/glib-perl-1.012 >=dev-perl/Gtk2-1.012 gnome-base/libglade:2.0 x11-libs/gtk+:2 dev-perl/ExtUtils-Depends dev-perl/ExtUtils-PkgConfig virtual/pkgconfig dev-lang/perl:=[-build(-)] -DESCRIPTION=Perl wrappers for the egg cup Gtk2::TrayIcon utilities -EAPI=5 -HOMEPAGE=http://gtk2-perl.sf.net/ http://search.cpan.org/dist/Gtk2-TrayIcon/ -KEYWORDS=amd64 ia64 ~ppc ~sparc x86 -LICENSE=LGPL-2 -RDEPEND=>=dev-perl/glib-perl-1.012 >=dev-perl/Gtk2-1.012 gnome-base/libglade:2.0 x11-libs/gtk+:2 dev-lang/perl:=[-build(-)] -SLOT=0 -SRC_URI=mirror://cpan/authors/id/B/BO/BORUP/Gtk2-TrayIcon-0.06.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=71104066a071aeaf16addc1f964c064c diff --git a/metadata/md5-cache/dev-perl/local-lib-2.0.19 b/metadata/md5-cache/dev-perl/local-lib-2.0.19 deleted file mode 100644 index 33e4dc0cd01c..000000000000 --- a/metadata/md5-cache/dev-perl/local-lib-2.0.19 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=virtual/perl-CPAN-1.820.0 >=virtual/perl-ExtUtils-Install-1.430.0 >=virtual/perl-ExtUtils-MakeMaker-7.0.0 >=dev-perl/Module-Build-0.360.0 >=virtual/perl-ExtUtils-MakeMaker-6.590.0 test? ( virtual/perl-Test-Simple ) dev-lang/perl:= -DESCRIPTION=create and use a local lib/ for perl modules with PERL5LIB -EAPI=6 -HOMEPAGE=http://search.cpan.org/dist/local-lib/ -IUSE=test -KEYWORDS=amd64 x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=>=virtual/perl-CPAN-1.820.0 >=virtual/perl-ExtUtils-Install-1.430.0 >=virtual/perl-ExtUtils-MakeMaker-7.0.0 >=dev-perl/Module-Build-0.360.0 dev-lang/perl:= -SLOT=0 -SRC_URI=mirror://cpan/authors/id/H/HA/HAARG/local-lib-2.000019.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module ee5593d6e2d067fafac171106655b5ce -_md5_=95683d9966d87f827c1179c045159dcb diff --git a/metadata/md5-cache/dev-python/Manifest.gz b/metadata/md5-cache/dev-python/Manifest.gz index 244bc1ccf167..71622cf46059 100644 Binary files a/metadata/md5-cache/dev-python/Manifest.gz and b/metadata/md5-cache/dev-python/Manifest.gz differ diff --git a/metadata/md5-cache/dev-python/PyQt5-5.10.1-r1 b/metadata/md5-cache/dev-python/PyQt5-5.10.1-r1 index ba6272bd1720..c60df307a6e3 100644 --- a/metadata/md5-cache/dev-python/PyQt5-5.10.1-r1 +++ b/metadata/md5-cache/dev-python/PyQt5-5.10.1-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install -DEPEND=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 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/sip-4.19.6:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-qt/qtcore-5.9.4:5 >=dev-qt/qtxml-5.9.4:5 bluetooth? ( >=dev-qt/qtbluetooth-5.9.4:5 ) dbus? ( dev-python/dbus-python[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-qt/qtdbus-5.9.4:5 ) declarative? ( >=dev-qt/qtdeclarative-5.9.4:5[widgets?] ) designer? ( >=dev-qt/designer-5.9.4:5 ) gui? ( >=dev-qt/qtgui-5.9.4:5[gles2=] ) help? ( >=dev-qt/qthelp-5.9.4:5 ) location? ( >=dev-qt/qtlocation-5.9.4:5 ) multimedia? ( >=dev-qt/qtmultimedia-5.9.4:5[widgets?] ) network? ( >=dev-qt/qtnetwork-5.9.4:5 ) opengl? ( >=dev-qt/qtopengl-5.9.4:5 ) positioning? ( >=dev-qt/qtpositioning-5.9.4:5 ) printsupport? ( >=dev-qt/qtprintsupport-5.9.4:5 ) sensors? ( >=dev-qt/qtsensors-5.9.4:5 ) serialport? ( >=dev-qt/qtserialport-5.9.4:5 ) sql? ( >=dev-qt/qtsql-5.9.4:5 ) svg? ( >=dev-qt/qtsvg-5.9.4:5 ) testlib? ( >=dev-qt/qttest-5.9.4:5 ) webchannel? ( >=dev-qt/qtwebchannel-5.9.4:5 ) webengine? ( >=dev-qt/qtwebengine-5.9.4:5[widgets?] ) webkit? ( >=dev-qt/qtwebkit-5.9:5[printsupport] ) websockets? ( >=dev-qt/qtwebsockets-5.9.4:5 ) widgets? ( >=dev-qt/qtwidgets-5.9.4:5 ) x11extras? ( >=dev-qt/qtx11extras-5.9.4:5 ) xmlpatterns? ( >=dev-qt/qtxmlpatterns-5.9.4:5 ) dbus? ( virtual/pkgconfig ) +DEPEND=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 ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/sip-4.19.6:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-qt/qtcore-5.9.4:5 >=dev-qt/qtxml-5.9.4:5 bluetooth? ( >=dev-qt/qtbluetooth-5.9.4:5 ) dbus? ( dev-python/dbus-python[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-qt/qtdbus-5.9.4:5 ) declarative? ( >=dev-qt/qtdeclarative-5.9.4:5[widgets?] ) designer? ( >=dev-qt/designer-5.9.4:5 ) gui? ( >=dev-qt/qtgui-5.9.4:5[gles2=] ) help? ( >=dev-qt/qthelp-5.9.4:5 ) location? ( >=dev-qt/qtlocation-5.9.4:5 ) multimedia? ( >=dev-qt/qtmultimedia-5.9.4:5[widgets?] ) network? ( >=dev-qt/qtnetwork-5.9.4:5 ) opengl? ( >=dev-qt/qtopengl-5.9.4:5 ) positioning? ( >=dev-qt/qtpositioning-5.9.4:5 ) printsupport? ( >=dev-qt/qtprintsupport-5.9.4:5 ) sensors? ( >=dev-qt/qtsensors-5.9.4:5 ) serialport? ( >=dev-qt/qtserialport-5.9.4:5 ) sql? ( >=dev-qt/qtsql-5.9.4:5 ) svg? ( >=dev-qt/qtsvg-5.9.4:5 ) testlib? ( >=dev-qt/qttest-5.9.4:5 ) webchannel? ( >=dev-qt/qtwebchannel-5.9.4:5 ) webengine? ( >=dev-qt/qtwebengine-5.9.4:5[widgets?] ) webkit? ( >=dev-qt/qtwebkit-5.9:5[printsupport] ) websockets? ( >=dev-qt/qtwebsockets-5.9.4:5 ) widgets? ( >=dev-qt/qtwidgets-5.9.4:5 ) x11extras? ( >=dev-qt/qtx11extras-5.9.4:5 ) xmlpatterns? ( >=dev-qt/qtxmlpatterns-5.9.4:5 ) dbus? ( virtual/pkgconfig ) DESCRIPTION=Python bindings for the Qt framework EAPI=6 HOMEPAGE=https://www.riverbankcomputing.com/software/pyqt/intro -IUSE=bluetooth dbus debug declarative designer examples gles2 gui help location multimedia network opengl positioning printsupport sensors serialport sql svg testlib webchannel webengine webkit websockets widgets x11extras xmlpatterns python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 +IUSE=bluetooth dbus debug declarative designer examples gles2 gui help location multimedia network opengl positioning printsupport sensors serialport sql svg testlib webchannel webengine webkit websockets widgets x11extras xmlpatterns python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 KEYWORDS=amd64 ~arm ~arm64 ~ppc ~ppc64 x86 LICENSE=GPL-3 -RDEPEND=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 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/sip-4.19.6:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-qt/qtcore-5.9.4:5 >=dev-qt/qtxml-5.9.4:5 bluetooth? ( >=dev-qt/qtbluetooth-5.9.4:5 ) dbus? ( dev-python/dbus-python[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-qt/qtdbus-5.9.4:5 ) declarative? ( >=dev-qt/qtdeclarative-5.9.4:5[widgets?] ) designer? ( >=dev-qt/designer-5.9.4:5 ) gui? ( >=dev-qt/qtgui-5.9.4:5[gles2=] ) help? ( >=dev-qt/qthelp-5.9.4:5 ) location? ( >=dev-qt/qtlocation-5.9.4:5 ) multimedia? ( >=dev-qt/qtmultimedia-5.9.4:5[widgets?] ) network? ( >=dev-qt/qtnetwork-5.9.4:5 ) opengl? ( >=dev-qt/qtopengl-5.9.4:5 ) positioning? ( >=dev-qt/qtpositioning-5.9.4:5 ) printsupport? ( >=dev-qt/qtprintsupport-5.9.4:5 ) sensors? ( >=dev-qt/qtsensors-5.9.4:5 ) serialport? ( >=dev-qt/qtserialport-5.9.4:5 ) sql? ( >=dev-qt/qtsql-5.9.4:5 ) svg? ( >=dev-qt/qtsvg-5.9.4:5 ) testlib? ( >=dev-qt/qttest-5.9.4:5 ) webchannel? ( >=dev-qt/qtwebchannel-5.9.4:5 ) webengine? ( >=dev-qt/qtwebengine-5.9.4:5[widgets?] ) webkit? ( >=dev-qt/qtwebkit-5.9:5[printsupport] ) websockets? ( >=dev-qt/qtwebsockets-5.9.4:5 ) widgets? ( >=dev-qt/qtwidgets-5.9.4:5 ) x11extras? ( >=dev-qt/qtx11extras-5.9.4:5 ) xmlpatterns? ( >=dev-qt/qtxmlpatterns-5.9.4:5 ) -REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) bluetooth? ( gui ) declarative? ( gui network ) designer? ( widgets ) help? ( gui widgets ) location? ( positioning ) multimedia? ( gui network ) opengl? ( gui widgets ) positioning? ( gui ) printsupport? ( gui widgets ) sensors? ( gui ) serialport? ( gui ) sql? ( widgets ) svg? ( gui widgets ) testlib? ( widgets ) webchannel? ( network ) webengine? ( network widgets? ( printsupport webchannel ) ) webkit? ( gui network printsupport widgets ) websockets? ( network ) widgets? ( gui ) xmlpatterns? ( network ) +RDEPEND=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 ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/sip-4.19.6:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-qt/qtcore-5.9.4:5 >=dev-qt/qtxml-5.9.4:5 bluetooth? ( >=dev-qt/qtbluetooth-5.9.4:5 ) dbus? ( dev-python/dbus-python[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-qt/qtdbus-5.9.4:5 ) declarative? ( >=dev-qt/qtdeclarative-5.9.4:5[widgets?] ) designer? ( >=dev-qt/designer-5.9.4:5 ) gui? ( >=dev-qt/qtgui-5.9.4:5[gles2=] ) help? ( >=dev-qt/qthelp-5.9.4:5 ) location? ( >=dev-qt/qtlocation-5.9.4:5 ) multimedia? ( >=dev-qt/qtmultimedia-5.9.4:5[widgets?] ) network? ( >=dev-qt/qtnetwork-5.9.4:5 ) opengl? ( >=dev-qt/qtopengl-5.9.4:5 ) positioning? ( >=dev-qt/qtpositioning-5.9.4:5 ) printsupport? ( >=dev-qt/qtprintsupport-5.9.4:5 ) sensors? ( >=dev-qt/qtsensors-5.9.4:5 ) serialport? ( >=dev-qt/qtserialport-5.9.4:5 ) sql? ( >=dev-qt/qtsql-5.9.4:5 ) svg? ( >=dev-qt/qtsvg-5.9.4:5 ) testlib? ( >=dev-qt/qttest-5.9.4:5 ) webchannel? ( >=dev-qt/qtwebchannel-5.9.4:5 ) webengine? ( >=dev-qt/qtwebengine-5.9.4:5[widgets?] ) webkit? ( >=dev-qt/qtwebkit-5.9:5[printsupport] ) websockets? ( >=dev-qt/qtwebsockets-5.9.4:5 ) widgets? ( >=dev-qt/qtwidgets-5.9.4:5 ) x11extras? ( >=dev-qt/qtx11extras-5.9.4:5 ) xmlpatterns? ( >=dev-qt/qtxmlpatterns-5.9.4:5 ) +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 ) bluetooth? ( gui ) declarative? ( gui network ) designer? ( widgets ) help? ( gui widgets ) location? ( positioning ) multimedia? ( gui network ) opengl? ( gui widgets ) positioning? ( gui ) printsupport? ( gui widgets ) sensors? ( gui ) serialport? ( gui ) sql? ( widgets ) svg? ( gui widgets ) testlib? ( widgets ) webchannel? ( network ) webengine? ( network widgets? ( printsupport webchannel ) ) webkit? ( gui network printsupport widgets ) websockets? ( network ) widgets? ( gui ) xmlpatterns? ( network ) SLOT=0 SRC_URI=mirror://sourceforge/pyqt/PyQt5_gpl-5.10.1.tar.gz _eclasses_=estack 43ddf5aaffa7a8d0482df54d25a66a1f multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 qmake-utils bdf97e69a34b864d6d545f4ec3143ff7 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 -_md5_=24654e4973bd8c6ebe59ca2508101123 +_md5_=c59e3844624eee5abf554c39213f78a0 diff --git a/metadata/md5-cache/dev-python/characteristic-14.3.0-r1 b/metadata/md5-cache/dev-python/characteristic-14.3.0-r1 index 0f628fc3723c..95d93ebca1df 100644 --- a/metadata/md5-cache/dev-python/characteristic-14.3.0-r1 +++ b/metadata/md5-cache/dev-python/characteristic-14.3.0-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Python attributes without the boilerplate EAPI=6 HOMEPAGE=https://characteristic.readthedocs.org/ https://github.com/hynek/characteristic IUSE=doc test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd LICENSE=MIT RDEPEND=python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) 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 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) SLOT=0 SRC_URI=mirror://pypi/c/characteristic/characteristic-14.3.0.tar.gz _eclasses_=distutils-r1 8595c9c7530ac3963f3aa0d77aa7e2d8 multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=df42a65da22231107891c702f2ae9ad9 +_md5_=3320a5211a0b72955ed957014993be42 diff --git a/metadata/md5-cache/dev-python/fonttools-3.0 b/metadata/md5-cache/dev-python/fonttools-3.0 index 58c8ee6cf0b2..9d7bc909af22 100644 --- a/metadata/md5-cache/dev-python/fonttools-3.0 +++ b/metadata/md5-cache/dev-python/fonttools-3.0 @@ -4,11 +4,11 @@ DESCRIPTION=Library for manipulating TrueType, OpenType, AFM and Type1 fonts EAPI=5 HOMEPAGE=https://github.com/fonttools/fonttools/ IUSE=python_targets_python2_7 -KEYWORDS=alpha amd64 arm arm64 hppa ia64 ppc ppc64 sparc x86 +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ppc ppc64 s390 sparc x86 LICENSE=BSD RDEPEND=>=dev-python/numpy-1.0.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/fonttools/fonttools/archive/3.0.tar.gz -> fonttools-3.0.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d distutils-r1 8595c9c7530ac3963f3aa0d77aa7e2d8 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=b0f773c64bf8d2aaeabbe178bc511f01 +_md5_=08559fc23a8c5f86fec72dc0a35d55c5 diff --git a/metadata/md5-cache/dev-python/fonttools-3.20.1 b/metadata/md5-cache/dev-python/fonttools-3.20.1 index 9b3645ba24bd..412f661c852f 100644 --- a/metadata/md5-cache/dev-python/fonttools-3.20.1 +++ b/metadata/md5-cache/dev-python/fonttools-3.20.1 @@ -4,11 +4,11 @@ DESCRIPTION=Library for manipulating TrueType, OpenType, AFM and Type1 fonts EAPI=6 HOMEPAGE=https://github.com/fonttools/fonttools/ IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 LICENSE=BSD RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[xml(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[xml(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[xml(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) SLOT=0 SRC_URI=https://github.com/fonttools/fonttools/archive/3.20.1.tar.gz -> fonttools-3.20.1.tar.gz _eclasses_=distutils-r1 8595c9c7530ac3963f3aa0d77aa7e2d8 multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=32cdfec320381e2c0814e50e1524b9b0 +_md5_=faace857993a4795b3470a1a6d129a0b diff --git a/metadata/md5-cache/dev-python/fonttools-3.21.1 b/metadata/md5-cache/dev-python/fonttools-3.21.1 index 71a56f7963fe..27f3b61ed9fd 100644 --- a/metadata/md5-cache/dev-python/fonttools-3.21.1 +++ b/metadata/md5-cache/dev-python/fonttools-3.21.1 @@ -4,11 +4,11 @@ DESCRIPTION=Library for manipulating TrueType, OpenType, AFM and Type1 fonts EAPI=6 HOMEPAGE=https://github.com/fonttools/fonttools/ IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd LICENSE=BSD RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[xml(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[xml(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[xml(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) SLOT=0 SRC_URI=https://github.com/fonttools/fonttools/archive/3.21.1.tar.gz -> fonttools-3.21.1.tar.gz _eclasses_=distutils-r1 8595c9c7530ac3963f3aa0d77aa7e2d8 multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=b67868e72fbacbe52d182824e40f811d +_md5_=0890677e1279a0a60759e678de0f8b72 diff --git a/metadata/md5-cache/dev-python/fonttools-3.24.0 b/metadata/md5-cache/dev-python/fonttools-3.24.0 index fc8fbea7d66d..cc1ec4b2f3bd 100644 --- a/metadata/md5-cache/dev-python/fonttools-3.24.0 +++ b/metadata/md5-cache/dev-python/fonttools-3.24.0 @@ -4,11 +4,11 @@ DESCRIPTION=Library for manipulating TrueType, OpenType, AFM and Type1 fonts EAPI=6 HOMEPAGE=https://github.com/fonttools/fonttools/ IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd LICENSE=BSD RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[xml(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[xml(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[xml(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) SLOT=0 SRC_URI=https://github.com/fonttools/fonttools/archive/3.24.0.tar.gz -> fonttools-3.24.0.tar.gz _eclasses_=distutils-r1 8595c9c7530ac3963f3aa0d77aa7e2d8 multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=b67868e72fbacbe52d182824e40f811d +_md5_=0890677e1279a0a60759e678de0f8b72 diff --git a/metadata/md5-cache/dev-python/fonttools-3.24.1 b/metadata/md5-cache/dev-python/fonttools-3.24.1 index 016c7b8f78d8..0b39259b21ec 100644 --- a/metadata/md5-cache/dev-python/fonttools-3.24.1 +++ b/metadata/md5-cache/dev-python/fonttools-3.24.1 @@ -4,11 +4,11 @@ DESCRIPTION=Library for manipulating TrueType, OpenType, AFM and Type1 fonts EAPI=6 HOMEPAGE=https://github.com/fonttools/fonttools/ IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd LICENSE=BSD RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[xml(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[xml(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[xml(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) SLOT=0 SRC_URI=https://github.com/fonttools/fonttools/archive/3.24.1.tar.gz -> fonttools-3.24.1.tar.gz _eclasses_=distutils-r1 8595c9c7530ac3963f3aa0d77aa7e2d8 multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=ddb1deb4ec76975285819ddd57eef99e +_md5_=a5ae3a00f85991d01ae75731516cdc59 diff --git a/metadata/md5-cache/dev-python/fonttools-3.24.2 b/metadata/md5-cache/dev-python/fonttools-3.24.2 index 0cbd05d6482c..91b39e9b40af 100644 --- a/metadata/md5-cache/dev-python/fonttools-3.24.2 +++ b/metadata/md5-cache/dev-python/fonttools-3.24.2 @@ -4,11 +4,11 @@ DESCRIPTION=Library for manipulating TrueType, OpenType, AFM and Type1 fonts EAPI=6 HOMEPAGE=https://github.com/fonttools/fonttools/ IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd LICENSE=BSD RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[xml(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[xml(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[xml(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) SLOT=0 SRC_URI=https://github.com/fonttools/fonttools/archive/3.24.2.tar.gz -> fonttools-3.24.2.tar.gz _eclasses_=distutils-r1 8595c9c7530ac3963f3aa0d77aa7e2d8 multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=ddb1deb4ec76975285819ddd57eef99e +_md5_=a5ae3a00f85991d01ae75731516cdc59 diff --git a/metadata/md5-cache/dev-python/fonttools-3.28.0 b/metadata/md5-cache/dev-python/fonttools-3.28.0 index 3686d679301a..fd5f4ca5170a 100644 --- a/metadata/md5-cache/dev-python/fonttools-3.28.0 +++ b/metadata/md5-cache/dev-python/fonttools-3.28.0 @@ -4,11 +4,11 @@ DESCRIPTION=Library for manipulating TrueType, OpenType, AFM and Type1 fonts EAPI=6 HOMEPAGE=https://github.com/fonttools/fonttools/ IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd LICENSE=BSD RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[xml(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[xml(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[xml(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) SLOT=0 SRC_URI=https://github.com/fonttools/fonttools/archive/3.28.0.tar.gz -> fonttools-3.28.0.tar.gz _eclasses_=distutils-r1 8595c9c7530ac3963f3aa0d77aa7e2d8 multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 virtualx 401b718cc14d43a5a7fbe062c4851ba5 xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=fc1ab47e554aa16c2b5102d4c37e505e +_md5_=133126d5c89fc50a7a90bb570e9b099c diff --git a/metadata/md5-cache/dev-python/funcsigs-1.0.2-r1 b/metadata/md5-cache/dev-python/funcsigs-1.0.2-r1 index e2747a567cef..3d6d6568dc15 100644 --- a/metadata/md5-cache/dev-python/funcsigs-1.0.2-r1 +++ b/metadata/md5-cache/dev-python/funcsigs-1.0.2-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Python function signatures backport from PEP362 for Python 2.7-3.5 EAPI=6 HOMEPAGE=https://pypi.org/project/funcsigs/ IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 -KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) 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 ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 ) SLOT=0 SRC_URI=mirror://pypi/f/funcsigs/funcsigs-1.0.2.tar.gz _eclasses_=distutils-r1 8595c9c7530ac3963f3aa0d77aa7e2d8 multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=0b121b6a8633640c6c106fd5a89976be +_md5_=e74c4562de67974ffcfe3b17842606e0 diff --git a/metadata/md5-cache/dev-python/ioflo-1.7.4 b/metadata/md5-cache/dev-python/ioflo-1.7.4 index 9c4b68dff5f0..2b3ac454539b 100644 --- a/metadata/md5-cache/dev-python/ioflo-1.7.4 +++ b/metadata/md5-cache/dev-python/ioflo-1.7.4 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/setuptools-git-1.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] 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 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] 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 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] DESCRIPTION=Automated Reasoning Engine and Flow Based Programming Framework EAPI=5 HOMEPAGE=https://github.com/ioflo/ioflo/ @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targe SLOT=0 SRC_URI=https://github.com/ioflo/ioflo/archive/v1.7.4.tar.gz -> ioflo-1.7.4.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d distutils-r1 8595c9c7530ac3963f3aa0d77aa7e2d8 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=58bb540419643a86b90f4ff2619b49ed +_md5_=0473795fe98839ba311a1b1e3b43f352 diff --git a/metadata/md5-cache/dev-python/mimeparse-1.6.0 b/metadata/md5-cache/dev-python/mimeparse-1.6.0 index f0bc3f87e199..c1bdeb663ab9 100644 --- a/metadata/md5-cache/dev-python/mimeparse-1.6.0 +++ b/metadata/md5-cache/dev-python/mimeparse-1.6.0 @@ -4,11 +4,11 @@ DESCRIPTION=Basic functions for handling mime-types in python EAPI=6 HOMEPAGE=https://github.com/dbtsai/python-mimeparse IUSE=python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 -KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux LICENSE=MIT RDEPEND=python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) 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 ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 ) SLOT=0 SRC_URI=mirror://pypi/p/python-mimeparse/python-mimeparse-1.6.0.tar.gz _eclasses_=distutils-r1 8595c9c7530ac3963f3aa0d77aa7e2d8 multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=01740f651766a5b5edabecd72f269f05 +_md5_=8ef6896712a47ad0f58d4dfe47565d15 diff --git a/metadata/md5-cache/dev-python/pastedeploy-1.5.2-r1 b/metadata/md5-cache/dev-python/pastedeploy-1.5.2-r1 index b41fc127c114..439778846f96 100644 --- a/metadata/md5-cache/dev-python/pastedeploy-1.5.2-r1 +++ b/metadata/md5-cache/dev-python/pastedeploy-1.5.2-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Load, configure, and compose WSGI applications and servers EAPI=5 HOMEPAGE=https://pypi.org/project/PasteDeploy/ IUSE=doc test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x86-solaris +KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~x86-solaris LICENSE=MIT RDEPEND=dev-python/namespace-paste[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] 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 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) SLOT=0 SRC_URI=https://bitbucket.org/ianb/pastedeploy/get/1.5.2.tar.gz -> pastedeploy-1.5.2-r1.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d distutils-r1 8595c9c7530ac3963f3aa0d77aa7e2d8 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf vcs-snapshot b77011b62e2053c646ad720defe6d921 xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=2c593ba3cac6748dcd161941f447b47c +_md5_=9e0a83447cd22f744288cc61de5c6753 diff --git a/metadata/md5-cache/dev-python/pytest-forked-0.2 b/metadata/md5-cache/dev-python/pytest-forked-0.2 index 04a5ed7fb81c..9f0954b9feff 100644 --- a/metadata/md5-cache/dev-python/pytest-forked-0.2 +++ b/metadata/md5-cache/dev-python/pytest-forked-0.2 @@ -4,11 +4,11 @@ DESCRIPTION=run tests in isolated forked subprocesses EAPI=6 HOMEPAGE=https://pypi.org/project/pytest-forked/ https://github.com/pytest-dev/pytest-forked IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd LICENSE=MIT RDEPEND=>=dev-python/pytest-2.6.0[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) 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 ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pytest-forked/pytest-forked-0.2.tar.gz _eclasses_=distutils-r1 8595c9c7530ac3963f3aa0d77aa7e2d8 multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=b05cbfc519cc92e69f4d9a146c6c27c7 +_md5_=27a934e374550b61a40ad8a15d4bcd23 diff --git a/metadata/md5-cache/dev-python/singledispatch-3.4.0.3 b/metadata/md5-cache/dev-python/singledispatch-3.4.0.3 index 85c46f46b297..f3f6ecabc2fb 100644 --- a/metadata/md5-cache/dev-python/singledispatch-3.4.0.3 +++ b/metadata/md5-cache/dev-python/singledispatch-3.4.0.3 @@ -4,11 +4,11 @@ DESCRIPTION=A library to bring functools.singledispatch from Python 3.4 to Pytho EAPI=5 HOMEPAGE=https://docs.python.org/3/library/functools.html#functools.singledispatch IUSE=python_targets_pypy python_targets_python2_7 -KEYWORDS=alpha amd64 arm arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ppc ppc64 s390 sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos LICENSE=MIT RDEPEND=dev-python/six[python_targets_pypy(-)?,python_targets_python2_7(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-)] python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/s/singledispatch/singledispatch-3.4.0.3.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d distutils-r1 8595c9c7530ac3963f3aa0d77aa7e2d8 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=7c03d4019013064abe9bc11ca817ba19 +_md5_=bbaae27b1c18d80de1dedff9009f496d diff --git a/metadata/md5-cache/dev-python/snakeoil-0.7.5 b/metadata/md5-cache/dev-python/snakeoil-0.7.5 index cd6573610077..2c2e25b9dda3 100644 --- a/metadata/md5-cache/dev-python/snakeoil-0.7.5 +++ b/metadata/md5-cache/dev-python/snakeoil-0.7.5 @@ -4,11 +4,11 @@ DESCRIPTION=misc common functionality and useful optimizations EAPI=6 HOMEPAGE=https://github.com/pkgcore/snakeoil IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 +KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 LICENSE=BSD RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[threads(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) SLOT=0 SRC_URI=https://github.com/pkgcore/snakeoil/releases/download/v0.7.5/snakeoil-0.7.5.tar.gz _eclasses_=distutils-r1 8595c9c7530ac3963f3aa0d77aa7e2d8 multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=29da29c6402271b17ad087bbf6c949a3 +_md5_=4fd0bef0c515589c7abfa2e8a9ee3ea6 diff --git a/metadata/md5-cache/dev-python/sphinxcontrib-websupport-1.0.1-r1 b/metadata/md5-cache/dev-python/sphinxcontrib-websupport-1.0.1-r1 index e1af4225fc19..11fb434437fc 100644 --- a/metadata/md5-cache/dev-python/sphinxcontrib-websupport-1.0.1-r1 +++ b/metadata/md5-cache/dev-python/sphinxcontrib-websupport-1.0.1-r1 @@ -4,7 +4,7 @@ DESCRIPTION=Sphinx websupport extension EAPI=6 HOMEPAGE=http://www.sphinx-doc.org IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-solaris +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-solaris LICENSE=BSD-2 PDEPEND=>=dev-python/sphinx-1.5.3[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] RDEPEND=>=dev-python/sqlalchemy-0.9[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/whoosh-2.0[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/six-1.5[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/namespace-sphinxcontrib[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) 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 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] @@ -12,4 +12,4 @@ REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python SLOT=0 SRC_URI=mirror://pypi/s/sphinxcontrib-websupport/sphinxcontrib-websupport-1.0.1.tar.gz _eclasses_=distutils-r1 8595c9c7530ac3963f3aa0d77aa7e2d8 multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=55324cb87f0e996af4e67ba9cacfe534 +_md5_=5a4c27849d6f7d04c2ea10f9c3ec8b46 diff --git a/metadata/md5-cache/dev-python/sphinxcontrib-websupport-1.1.0 b/metadata/md5-cache/dev-python/sphinxcontrib-websupport-1.1.0 index 233f4a51853c..cec29fa82597 100644 --- a/metadata/md5-cache/dev-python/sphinxcontrib-websupport-1.1.0 +++ b/metadata/md5-cache/dev-python/sphinxcontrib-websupport-1.1.0 @@ -4,7 +4,7 @@ DESCRIPTION=Sphinx websupport extension EAPI=6 HOMEPAGE=http://www.sphinx-doc.org IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 -KEYWORDS=~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-solaris +KEYWORDS=~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-solaris LICENSE=BSD-2 PDEPEND=>=dev-python/sphinx-1.5.3[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] RDEPEND=>=dev-python/sqlalchemy-0.9[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/whoosh-2.0[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/six-1.5[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/namespace-sphinxcontrib[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) 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 ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] @@ -12,4 +12,4 @@ REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python SLOT=0 SRC_URI=mirror://pypi/s/sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.tar.gz _eclasses_=distutils-r1 8595c9c7530ac3963f3aa0d77aa7e2d8 multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=b6a3a8cc63a45ee7e1cba9d75c9b632f +_md5_=ac9ee5d2708b3aa279b4e269b133c10c diff --git a/metadata/md5-cache/dev-python/testscenarios-0.5.0 b/metadata/md5-cache/dev-python/testscenarios-0.5.0 index e0d6ca555976..eaaf85936a07 100644 --- a/metadata/md5-cache/dev-python/testscenarios-0.5.0 +++ b/metadata/md5-cache/dev-python/testscenarios-0.5.0 @@ -4,11 +4,11 @@ DESCRIPTION=A pyunit extension for dependency injection EAPI=5 HOMEPAGE=https://launchpad.net/testscenarios IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 -KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~amd64-fbsd +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=dev-python/testtools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) 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 ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 ) SLOT=0 SRC_URI=mirror://pypi/t/testscenarios/testscenarios-0.5.0.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d distutils-r1 8595c9c7530ac3963f3aa0d77aa7e2d8 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=05fa314b8191b2f0bb6582989267c551 +_md5_=28637cda0c8be2f914c6434bec90dca7 diff --git a/metadata/md5-cache/dev-python/webob-1.7.4 b/metadata/md5-cache/dev-python/webob-1.7.4 index 4930f57d206a..0bf5e2792103 100644 --- a/metadata/md5-cache/dev-python/webob-1.7.4 +++ b/metadata/md5-cache/dev-python/webob-1.7.4 @@ -4,11 +4,11 @@ DESCRIPTION=WSGI request and response object EAPI=6 HOMEPAGE=https://webob.org/ https://pypi.org/project/WebOb/ IUSE=doc test python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos +KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos LICENSE=MIT RDEPEND=python_targets_pypy? ( >=virtual/pypy-5:0= ) 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 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) SLOT=0 SRC_URI=mirror://pypi/W/WebOb/WebOb-1.7.4.tar.gz _eclasses_=distutils-r1 8595c9c7530ac3963f3aa0d77aa7e2d8 estack 43ddf5aaffa7a8d0482df54d25a66a1f multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 versionator 2352c3fc97241f6a02042773c8287748 xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=7acb37f8e7bb404ff2637d2cfc5f4bd8 +_md5_=e06e114ed870956728175f8b1f972ae9 diff --git a/metadata/md5-cache/dev-python/wxpython-2.8.12.1-r2 b/metadata/md5-cache/dev-python/wxpython-2.8.12.1-r2 deleted file mode 100644 index fc786c7cb7a5..000000000000 --- a/metadata/md5-cache/dev-python/wxpython-2.8.12.1-r2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm prepare test -DEPEND=dev-lang/python-exec:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=x11-libs/wxGTK-2.8.12.1:2.8[opengl?,tiff,X] dev-libs/glib:2 dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] media-libs/libpng:0= media-libs/tiff:0 virtual/jpeg x11-libs/gtk+:2 x11-libs/pango[X] cairo? ( >=dev-python/pycairo-1.8.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) opengl? ( dev-python/pyopengl[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) virtual/pkgconfig 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(-)] -DESCRIPTION=A blending of the wxWindows C++ class library with Python -EAPI=5 -HOMEPAGE=http://www.wxpython.org/ -IUSE=cairo doc examples opengl python_targets_python2_7 -KEYWORDS=alpha amd64 arm ~hppa ia64 ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd -LICENSE=wxWinLL-3 -RDEPEND=dev-lang/python-exec:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=x11-libs/wxGTK-2.8.12.1:2.8[opengl?,tiff,X] dev-libs/glib:2 dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] media-libs/libpng:0= media-libs/tiff:0 virtual/jpeg x11-libs/gtk+:2 x11-libs/pango[X] cairo? ( >=dev-python/pycairo-1.8.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) opengl? ( dev-python/pyopengl[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=2.8 -SRC_URI=mirror://sourceforge/wxpython/wxPython-src-2.8.12.1.tar.bz2 doc? ( mirror://sourceforge/wxpython/wxPython-docs-2.8.12.1.tar.bz2 mirror://sourceforge/wxpython/wxPython-newdocs-2.8.9.2.tar.bz2 ) examples? ( mirror://sourceforge/wxpython/wxPython-demo-2.8.12.1.tar.bz2 ) -_eclasses_=alternatives 6c575717515f030736d1b718d507d2f9 desktop b1d22ac8bdd4679ab79c71aca235009d distutils-r1 8595c9c7530ac3963f3aa0d77aa7e2d8 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 fdo-mime 995b19d3f30e956b4e1bc5a91fdc4ea7 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wxwidgets ed63935305b6de2210ae97a407719d89 xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=34be39503524ab38c7fbd1d69692140c diff --git a/metadata/md5-cache/games-mud/Manifest.gz b/metadata/md5-cache/games-mud/Manifest.gz index 2efdea5998e2..70c708e967d1 100644 Binary files a/metadata/md5-cache/games-mud/Manifest.gz and b/metadata/md5-cache/games-mud/Manifest.gz differ diff --git a/metadata/md5-cache/games-mud/gnome-mud-9999 b/metadata/md5-cache/games-mud/gnome-mud-9999 index ef28bcf09b97..13f415f6b572 100644 --- a/metadata/md5-cache/games-mud/gnome-mud-9999 +++ b/metadata/md5-cache/games-mud/gnome-mud-9999 @@ -8,4 +8,4 @@ LICENSE=GPL-2+ RDEPEND=virtual/libintl >=dev-libs/glib-2.36:2 >=x11-libs/gtk+-2.24.0:2 >=x11-libs/vte-0.11:0 dev-libs/libpcre gnome-base/gconf:2 gstreamer? ( media-libs/gstreamer:1.0 ) SLOT=0 _eclasses_=autotools d0e5375d47f4c809f406eb892e531513 desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 git-r3 918d6a744039c29af2cadc7317459765 gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 acac536f2c3bbcd312ac3faaa3e55e40 gnome2-utils c6060f4ab634aca444c4b2176b0f3877 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 xdg 4939e61ae72d18779a8bdac386a7a07e xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=4dd7162b3535e2b3c4c1f5e9183a6c68 +_md5_=5b9b1d1563e98fdd5111a88f13804e87 diff --git a/metadata/md5-cache/gnome-base/Manifest.gz b/metadata/md5-cache/gnome-base/Manifest.gz index 0d30bff9e9a3..ee8b01a74ee6 100644 Binary files a/metadata/md5-cache/gnome-base/Manifest.gz and b/metadata/md5-cache/gnome-base/Manifest.gz differ diff --git a/metadata/md5-cache/gnome-base/gdm-3.24.3 b/metadata/md5-cache/gnome-base/gdm-3.24.3 deleted file mode 100644 index d70a79ec5b06..000000000000 --- a/metadata/md5-cache/gnome-base/gdm-3.24.3 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup -DEPEND=app-text/iso-codes >=dev-libs/glib-2.36:2[dbus] >=x11-libs/gtk+-2.91.1:3 >=gnome-base/dconf-0.20 >=gnome-base/gnome-settings-daemon-3.1.4 gnome-base/gsettings-desktop-schemas >=media-libs/fontconfig-2.5.0:1.0 >=media-libs/libcanberra-0.4[gtk3] sys-apps/dbus >=sys-apps/accountsservice-0.6.35 x11-apps/sessreg x11-base/xorg-server x11-libs/libXi x11-libs/libXau x11-libs/libX11 x11-libs/libXdmcp x11-libs/libXext x11-libs/libXft x11-libs/libxcb >=x11-misc/xdg-utils-1.0.2-r3 virtual/pam >=sys-apps/systemd-186:0=[pam] sys-auth/pambase[systemd] audit? ( sys-process/audit ) introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) plymouth? ( sys-boot/plymouth ) selinux? ( sys-libs/libselinux ) tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) xinerama? ( x11-libs/libXinerama ) app-text/docbook-xml-dtd:4.1.2 dev-util/gdbus-codegen >=dev-util/intltool-0.40.0 dev-util/itstool virtual/pkgconfig x11-base/xorg-proto test? ( >=dev-libs/check-0.9.4 ) >=app-portage/elt-patches-20170422 app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info virtual/pkgconfig -DESCRIPTION=GNOME Display Manager for managing graphical display servers and user logins -EAPI=6 -HOMEPAGE=https://wiki.gnome.org/Projects/GDM -IUSE=accessibility audit branding fprint +introspection ipv6 plymouth selinux smartcard tcpd test wayland xinerama -KEYWORDS=~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh x86 -LICENSE=GPL-2+ branding? ( CC-BY-SA-4.0 ) -RDEPEND=app-text/iso-codes >=dev-libs/glib-2.36:2[dbus] >=x11-libs/gtk+-2.91.1:3 >=gnome-base/dconf-0.20 >=gnome-base/gnome-settings-daemon-3.1.4 gnome-base/gsettings-desktop-schemas >=media-libs/fontconfig-2.5.0:1.0 >=media-libs/libcanberra-0.4[gtk3] sys-apps/dbus >=sys-apps/accountsservice-0.6.35 x11-apps/sessreg x11-base/xorg-server x11-libs/libXi x11-libs/libXau x11-libs/libX11 x11-libs/libXdmcp x11-libs/libXext x11-libs/libXft x11-libs/libxcb >=x11-misc/xdg-utils-1.0.2-r3 virtual/pam >=sys-apps/systemd-186:0=[pam] sys-auth/pambase[systemd] audit? ( sys-process/audit ) introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) plymouth? ( sys-boot/plymouth ) selinux? ( sys-libs/libselinux ) tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) xinerama? ( x11-libs/libXinerama ) >=gnome-base/gnome-session-3.6 >=gnome-base/gnome-shell-3.1.90 x11-apps/xhost accessibility? ( >=app-accessibility/orca-3.10 gnome-extra/mousetweaks ) fprint? ( sys-auth/fprintd sys-auth/pam_fprint ) !gnome-extra/fast-user-switch-applet -SLOT=0 -SRC_URI=mirror://gnome/sources/gdm/3.24/gdm-3.24.3.tar.xz branding? ( https://www.mail-archive.com/tango-artists@lists.freedesktop.org/msg00043/tango-gentoo-v1.1.tar.gz ) -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 acac536f2c3bbcd312ac3faaa3e55e40 gnome2-utils c6060f4ab634aca444c4b2176b0f3877 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e pam 3e788d86170dfcd5b06824d898315e18 preserve-libs ef207dc62baddfddfd39a164d9797648 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 user 8bc2845510e2109af75e3eeac607ec81 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 xdg 4939e61ae72d18779a8bdac386a7a07e xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=813e0998afcbcbba8d3d2d1e66e02b80 diff --git a/metadata/md5-cache/gnome-base/gdm-3.24.3-r1 b/metadata/md5-cache/gnome-base/gdm-3.24.3-r1 index 17af7ed17b83..61f2c9a99a21 100644 --- a/metadata/md5-cache/gnome-base/gdm-3.24.3-r1 +++ b/metadata/md5-cache/gnome-base/gdm-3.24.3-r1 @@ -4,10 +4,10 @@ DESCRIPTION=GNOME Display Manager for managing graphical display servers and use EAPI=6 HOMEPAGE=https://wiki.gnome.org/Projects/GDM IUSE=accessibility audit branding fprint +introspection ipv6 plymouth selinux smartcard tcpd test wayland xinerama -KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh x86 +KEYWORDS=~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh x86 LICENSE=GPL-2+ branding? ( CC-BY-SA-4.0 ) RDEPEND=app-text/iso-codes >=dev-libs/glib-2.36:2[dbus] >=x11-libs/gtk+-2.91.1:3 >=gnome-base/dconf-0.20 >=gnome-base/gnome-settings-daemon-3.1.4 gnome-base/gsettings-desktop-schemas >=media-libs/fontconfig-2.5.0:1.0 >=media-libs/libcanberra-0.4[gtk3] sys-apps/dbus >=sys-apps/accountsservice-0.6.35 x11-apps/sessreg x11-base/xorg-server x11-libs/libXi x11-libs/libXau x11-libs/libX11 x11-libs/libXdmcp x11-libs/libXext x11-libs/libXft x11-libs/libxcb >=x11-misc/xdg-utils-1.0.2-r3 virtual/pam >=sys-apps/systemd-186:0=[pam] sys-auth/pambase[systemd] audit? ( sys-process/audit ) introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) plymouth? ( sys-boot/plymouth ) selinux? ( sys-libs/libselinux ) tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) xinerama? ( x11-libs/libXinerama ) >=gnome-base/gnome-session-3.6 >=gnome-base/gnome-shell-3.1.90 x11-apps/xhost accessibility? ( >=app-accessibility/orca-3.10 gnome-extra/mousetweaks ) fprint? ( sys-auth/fprintd sys-auth/pam_fprint ) !gnome-extra/fast-user-switch-applet SLOT=0 SRC_URI=mirror://gnome/sources/gdm/3.24/gdm-3.24.3.tar.xz branding? ( https://www.mail-archive.com/tango-artists@lists.freedesktop.org/msg00043/tango-gentoo-v1.1.tar.gz ) _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 acac536f2c3bbcd312ac3faaa3e55e40 gnome2-utils c6060f4ab634aca444c4b2176b0f3877 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e pam 3e788d86170dfcd5b06824d898315e18 preserve-libs ef207dc62baddfddfd39a164d9797648 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 user 8bc2845510e2109af75e3eeac607ec81 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 xdg 4939e61ae72d18779a8bdac386a7a07e xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=9229ff3868f2332ddf6edd6f3881cfee +_md5_=f85fefe9ab3e7b70318330ce7750aaf8 diff --git a/metadata/md5-cache/gnome-base/libgnomeprint-2.18.8-r1 b/metadata/md5-cache/gnome-base/libgnomeprint-2.18.8-r1 deleted file mode 100644 index 40b2a47d7a7b..000000000000 --- a/metadata/md5-cache/gnome-base/libgnomeprint-2.18.8-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test unpack -DEPEND=>=dev-libs/glib-2.34.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(-)?] >=media-libs/libart_lgpl-2.3.21-r2[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[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[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[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-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] cups? ( >=net-print/cups-1.7.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(-)?] >=net-print/libgnomecups-0.2.3-r3[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/gettext >=dev-util/intltool-0.35 >=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(-)?] sys-devel/flex sys-devel/bison doc? ( ~app-text/docbook-xml-dtd-4.1.2 >=dev-util/gtk-doc-0.9 ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=Printer handling for Gnome -EAPI=5 -HOMEPAGE=https://www.gnome.org/ -IUSE=cups doc abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris -LICENSE=GPL-2 LGPL-2.1 -RDEPEND=>=dev-libs/glib-2.34.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(-)?] >=media-libs/libart_lgpl-2.3.21-r2[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[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[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[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-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] cups? ( >=net-print/cups-1.7.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(-)?] >=net-print/libgnomecups-0.2.3-r3[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.2 -SRC_URI=mirror://gnome/sources/libgnomeprint/2.18/libgnomeprint-2.18.8.tar.bz2 -_eclasses_=autotools d0e5375d47f4c809f406eb892e531513 desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 acac536f2c3bbcd312ac3faaa3e55e40 gnome2-utils c6060f4ab634aca444c4b2176b0f3877 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 xdg 4939e61ae72d18779a8bdac386a7a07e xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=beb7d068f349b1cfb8fd3d15827d0268 diff --git a/metadata/md5-cache/gnome-base/libgnomeprintui-2.18.6-r2 b/metadata/md5-cache/gnome-base/libgnomeprintui-2.18.6-r2 deleted file mode 100644 index 2dd225ed06bc..000000000000 --- a/metadata/md5-cache/gnome-base/libgnomeprintui-2.18.6-r2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test -DEPEND=>=gnome-base/libgnomeprint-2.12.1[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(-)?] >=gnome-base/libgnomecanvas-1.117[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/gtk+-2.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-themes/adwaita-icon-theme sys-devel/gettext 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(-)?] >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=User interface libraries for gnome print -EAPI=6 -HOMEPAGE=https://www.gnome.org/ -IUSE=abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris -LICENSE=GPL-2 LGPL-2.1 -RDEPEND=>=gnome-base/libgnomeprint-2.12.1[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(-)?] >=gnome-base/libgnomecanvas-1.117[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/gtk+-2.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-themes/adwaita-icon-theme -SLOT=2.2 -SRC_URI=mirror://gnome/sources/libgnomeprintui/2.18/libgnomeprintui-2.18.6.tar.bz2 -_eclasses_=autotools d0e5375d47f4c809f406eb892e531513 desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 acac536f2c3bbcd312ac3faaa3e55e40 gnome2-utils c6060f4ab634aca444c4b2176b0f3877 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 xdg 4939e61ae72d18779a8bdac386a7a07e xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=159da39a3d1facafd84aea5f49f695e1 diff --git a/metadata/md5-cache/gnome-extra/Manifest.gz b/metadata/md5-cache/gnome-extra/Manifest.gz index 0b935bd68c7c..fd5eee434ff8 100644 Binary files a/metadata/md5-cache/gnome-extra/Manifest.gz and b/metadata/md5-cache/gnome-extra/Manifest.gz differ diff --git a/metadata/md5-cache/gnome-extra/nm-applet-1.8.16 b/metadata/md5-cache/gnome-extra/nm-applet-1.8.16 new file mode 100644 index 000000000000..30a240239fd1 --- /dev/null +++ b/metadata/md5-cache/gnome-extra/nm-applet-1.8.16 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare +DEPEND=>=app-crypt/libsecret-0.18 >=dev-libs/glib-2.38:2[dbus] >=dev-libs/dbus-glib-0.88 >=sys-apps/dbus-1.4.1 >=sys-auth/polkit-0.96-r1 >=x11-libs/gtk+-3.10:3[introspection?] >=x11-libs/libnotify-0.7.0 app-text/iso-codes >=net-misc/networkmanager-1.7:=[introspection?,modemmanager?,teamd?] net-misc/mobile-broadband-provider-info ayatana? ( dev-libs/libappindicator:3 >=dev-libs/libdbusmenu-16.04.0 ) introspection? ( >=dev-libs/gobject-introspection-0.9.6:= ) virtual/freedesktop-icon-theme virtual/libgudev:= gcr? ( >=app-crypt/gcr-3.14:=[gtk] ) modemmanager? ( net-misc/modemmanager ) selinux? ( sys-libs/libselinux ) teamd? ( >=dev-libs/jansson-2.7 ) >=dev-util/gtk-doc-am-1.0 >=dev-util/intltool-0.50.1 virtual/pkgconfig >=app-portage/elt-patches-20170422 app-arch/xz-utils >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=GNOME applet for NetworkManager +EAPI=6 +HOMEPAGE=https://wiki.gnome.org/Projects/NetworkManager +IUSE=ayatana +introspection +gcr +modemmanager selinux teamd +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-2+ +PDEPEND=virtual/notification-daemon +RDEPEND=>=app-crypt/libsecret-0.18 >=dev-libs/glib-2.38:2[dbus] >=dev-libs/dbus-glib-0.88 >=sys-apps/dbus-1.4.1 >=sys-auth/polkit-0.96-r1 >=x11-libs/gtk+-3.10:3[introspection?] >=x11-libs/libnotify-0.7.0 app-text/iso-codes >=net-misc/networkmanager-1.7:=[introspection?,modemmanager?,teamd?] net-misc/mobile-broadband-provider-info ayatana? ( dev-libs/libappindicator:3 >=dev-libs/libdbusmenu-16.04.0 ) introspection? ( >=dev-libs/gobject-introspection-0.9.6:= ) virtual/freedesktop-icon-theme virtual/libgudev:= gcr? ( >=app-crypt/gcr-3.14:=[gtk] ) modemmanager? ( net-misc/modemmanager ) selinux? ( sys-libs/libselinux ) teamd? ( >=dev-libs/jansson-2.7 ) +SLOT=0 +SRC_URI=mirror://gnome/sources/network-manager-applet/1.8/network-manager-applet-1.8.16.tar.xz +_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 acac536f2c3bbcd312ac3faaa3e55e40 gnome2-utils c6060f4ab634aca444c4b2176b0f3877 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 xdg 4939e61ae72d18779a8bdac386a7a07e xdg-utils 89bb9f083a2590d9b447fd0b78a96186 +_md5_=86cc83dcd74dfba1b59e396253ac4bfd diff --git a/metadata/md5-cache/kde-apps/Manifest.gz b/metadata/md5-cache/kde-apps/Manifest.gz index e222c61189db..87649cb69bd9 100644 Binary files a/metadata/md5-cache/kde-apps/Manifest.gz and b/metadata/md5-cache/kde-apps/Manifest.gz differ diff --git a/metadata/md5-cache/kde-apps/kopete-18.04.3 b/metadata/md5-cache/kde-apps/kopete-18.04.3 index f9b91c74c254..06453535aa54 100644 --- a/metadata/md5-cache/kde-apps/kopete-18.04.3 +++ b/metadata/md5-cache/kde-apps/kopete-18.04.3 @@ -6,9 +6,9 @@ HOMEPAGE=https://kopete.kde.org https://www.kde.org/applications/internet/kopete IUSE=ssl v4l +addbookmarks +autoreplace +contactnotes +highlight history latex nowlistening otr pipes +privacy +statistics +texteffect translator +urlpicpreview webpresence gadu groupwise jingle meanwhile oscar testbed winpopup +xmpp zeroconf debug +handbook test KEYWORDS=amd64 x86 LICENSE=GPL-2 -RDEPEND=>=kde-frameworks/kcmutils-5.46.0:5 >=kde-frameworks/kconfig-5.46.0:5 >=kde-frameworks/kcrash-5.46.0:5 >=kde-frameworks/kdbusaddons-5.46.0:5 >=kde-frameworks/khtml-5.46.0:5 >=kde-frameworks/kcoreaddons-5.46.0:5 >=kde-frameworks/kdbusaddons-5.46.0:5 >=kde-frameworks/kdelibs4support-5.46.0:5 >=kde-frameworks/kemoticons-5.46.0:5 >=kde-frameworks/khtml-5.46.0:5 >=kde-frameworks/ki18n-5.46.0:5 >=kde-frameworks/knotifyconfig-5.46.0:5 >=kde-frameworks/kparts-5.46.0:5 >=kde-frameworks/ktexteditor-5.46.0:5 >=kde-apps/kcontacts-18.04.3:5 >=kde-apps/kidentitymanagement-18.04.3:5 >=kde-apps/libkleo-18.04.3:5 >=dev-qt/qtgui-5.9.4:5 >=dev-qt/qtsql-5.9.4:5 >=dev-qt/qtwidgets-5.9.4:5 >=dev-qt/qtxml-5.9.4:5 app-crypt/gpgme[cxx,qt5] dev-libs/libpcre media-libs/phonon[qt5(+)] x11-libs/libX11 x11-libs/libXScrnSaver gadu? ( >=net-libs/libgadu-1.8.0[threads] ) groupwise? ( app-crypt/qca:2[qt5(+)] ) jingle? ( dev-libs/expat dev-libs/openssl:0= >=media-libs/mediastreamer-2.3.0 media-libs/speex net-libs/libsrtp:= net-libs/ortp:= ) meanwhile? ( net-libs/meanwhile ) otr? ( >=net-libs/libotr-4.0.0 ) statistics? ( dev-db/sqlite:3 ) v4l? ( media-libs/libv4l ) webpresence? ( dev-libs/libxml2 dev-libs/libxslt ) xmpp? ( app-crypt/qca:2[qt5(+)] net-dns/libidn:0= sys-libs/zlib:= ) zeroconf? ( >=kde-frameworks/kdnssd-5.46.0:5 >=kde-apps/kidentitymanagement-18.04.3:5 ) latex? ( || ( media-gfx/imagemagick media-gfx/graphicsmagick[imagemagick] ) virtual/latex-base ) ssl? ( app-crypt/qca:2[ssl] ) >=kde-frameworks/kf-env-4 || ( >=kde-frameworks/breeze-icons-5.46.0:5 kde-frameworks/oxygen-icons:* ) !kde-apps/kopete:4 !kde-apps/kde-l10n !=dev-qt/qtcore-5.9.4:5 +RDEPEND=>=kde-frameworks/kcmutils-5.46.0:5 >=kde-frameworks/kconfig-5.46.0:5 >=kde-frameworks/kcrash-5.46.0:5 >=kde-frameworks/kdbusaddons-5.46.0:5 >=kde-frameworks/khtml-5.46.0:5 >=kde-frameworks/kcoreaddons-5.46.0:5 >=kde-frameworks/kdbusaddons-5.46.0:5 >=kde-frameworks/kdelibs4support-5.46.0:5 >=kde-frameworks/kemoticons-5.46.0:5 >=kde-frameworks/khtml-5.46.0:5 >=kde-frameworks/ki18n-5.46.0:5 >=kde-frameworks/knotifyconfig-5.46.0:5 >=kde-frameworks/kparts-5.46.0:5 >=kde-frameworks/ktexteditor-5.46.0:5 >=kde-apps/kcontacts-18.04.3:5 >=kde-apps/kidentitymanagement-18.04.3:5 >=kde-apps/libkleo-18.04.3:5 >=dev-qt/qtgui-5.9.4:5 >=dev-qt/qtsql-5.9.4:5 >=dev-qt/qtwidgets-5.9.4:5 >=dev-qt/qtxml-5.9.4:5 app-crypt/gpgme[cxx,qt5] dev-libs/libpcre media-libs/phonon[qt5(+)] x11-libs/libX11 x11-libs/libXScrnSaver gadu? ( >=net-libs/libgadu-1.8.0[threads] ) groupwise? ( app-crypt/qca:2[qt5(+)] ) jingle? ( dev-libs/expat dev-libs/openssl:0= >=media-libs/mediastreamer-2.3.0 media-libs/speex net-libs/libsrtp:= net-libs/ortp:= ) meanwhile? ( net-libs/meanwhile ) otr? ( >=net-libs/libotr-4.0.0 ) statistics? ( dev-db/sqlite:3 ) v4l? ( media-libs/libv4l ) webpresence? ( dev-libs/libxml2 dev-libs/libxslt ) xmpp? ( app-crypt/qca:2[qt5(+)] net-dns/libidn:0= sys-libs/zlib:= ) zeroconf? ( >=kde-frameworks/kdnssd-5.46.0:5 >=kde-apps/kidentitymanagement-18.04.3:5 ) !kde-apps/kde4-l10n latex? ( || ( media-gfx/imagemagick media-gfx/graphicsmagick[imagemagick] ) virtual/latex-base ) ssl? ( app-crypt/qca:2[ssl] ) >=kde-frameworks/kf-env-4 || ( >=kde-frameworks/breeze-icons-5.46.0:5 kde-frameworks/oxygen-icons:* ) !kde-apps/kopete:4 !kde-apps/kde-l10n !=dev-qt/qtcore-5.9.4:5 RESTRICT=test SLOT=5 SRC_URI=mirror://kde/stable/applications/18.04.3/src/kopete-18.04.3.tar.xz _eclasses_=cmake-utils ec27c4d90ac99a1a0fb77d97bfc597ee desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 gnome2-utils c6060f4ab634aca444c4b2176b0f3877 kde5 13d3b96a32511c767537abe037b05d16 kde5-functions 07abfd76b57ade4c7869f4cf94216f72 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 xdg 4939e61ae72d18779a8bdac386a7a07e xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=016064a8307c9853dd99c910ca7736cd +_md5_=3443b00dca316f541df070e9831ae3ce diff --git a/metadata/md5-cache/media-fonts/Manifest.gz b/metadata/md5-cache/media-fonts/Manifest.gz index 8cbe2a4c1a48..4feee4ced7ba 100644 Binary files a/metadata/md5-cache/media-fonts/Manifest.gz and b/metadata/md5-cache/media-fonts/Manifest.gz differ diff --git a/metadata/md5-cache/media-fonts/cantarell-0.0.25 b/metadata/md5-cache/media-fonts/cantarell-0.0.25 index fbbcce78531c..33fdb79cc2f0 100644 --- a/metadata/md5-cache/media-fonts/cantarell-0.0.25 +++ b/metadata/md5-cache/media-fonts/cantarell-0.0.25 @@ -4,11 +4,11 @@ DESCRIPTION=Default fontset for GNOME Shell EAPI=5 HOMEPAGE=https://wiki.gnome.org/Projects/CantarellFonts IUSE=X -KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~x86-fbsd LICENSE=OFL-1.1 RDEPEND=media-libs/fontconfig RESTRICT=binchecks strip SLOT=0 SRC_URI=mirror://gnome/sources/cantarell-fonts/0.0/cantarell-fonts-0.0.25.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 font 82836641e7d4639329d8c195234ad0e3 gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=6416cda411c6e8fc499388c24c1bae88 +_md5_=83c756c0ffc178f8ef06ad2795b98347 diff --git a/metadata/md5-cache/media-fonts/cantarell-0.101 b/metadata/md5-cache/media-fonts/cantarell-0.101 index 54e9f203d24d..057defa78618 100644 --- a/metadata/md5-cache/media-fonts/cantarell-0.101 +++ b/metadata/md5-cache/media-fonts/cantarell-0.101 @@ -4,11 +4,11 @@ DESCRIPTION=Default fontset for GNOME Shell EAPI=6 HOMEPAGE=https://wiki.gnome.org/Projects/CantarellFonts IUSE=X -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd LICENSE=OFL-1.1 RDEPEND=media-libs/fontconfig RESTRICT=binchecks strip SLOT=0 SRC_URI=mirror://gnome/sources/cantarell-fonts/0.101/cantarell-fonts-0.101.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 font 82836641e7d4639329d8c195234ad0e3 gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e meson b953e9f7b0c7db44d8b115086b11ba16 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=71179217b358038683a6be5478fe6cdf +_md5_=b6b854e6a56e36253b0f0d20db6f926d diff --git a/metadata/md5-cache/media-fonts/dejavu-2.37 b/metadata/md5-cache/media-fonts/dejavu-2.37 index 07446a80aeb8..ce3e0949aaef 100644 --- a/metadata/md5-cache/media-fonts/dejavu-2.37 +++ b/metadata/md5-cache/media-fonts/dejavu-2.37 @@ -4,9 +4,9 @@ DESCRIPTION=DejaVu fonts, bitstream vera with ISO-8859-2 characters EAPI=6 HOMEPAGE=https://dejavu-fonts.github.io/ IUSE=fontforge 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 ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris +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 ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=BitstreamVera SLOT=0 SRC_URI=!fontforge? ( mirror://sourceforge/dejavu/dejavu-fonts-ttf-2.37.tar.bz2 ) fontforge? ( mirror://sourceforge/dejavu/dejavu-fonts-2.37.tar.bz2 ) _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 font 82836641e7d4639329d8c195234ad0e3 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=87c4bec4ac32381b621ce2569af1d212 +_md5_=faee613b94666c6a9cfc175da5ea604a diff --git a/metadata/md5-cache/media-libs/Manifest.gz b/metadata/md5-cache/media-libs/Manifest.gz index 6809c17781a8..efe09b84c43c 100644 Binary files a/metadata/md5-cache/media-libs/Manifest.gz and b/metadata/md5-cache/media-libs/Manifest.gz differ diff --git a/metadata/md5-cache/media-libs/glu-9.0.0-r1 b/metadata/md5-cache/media-libs/glu-9.0.0-r1 index 4e4c3b301bba..77eefda4aeb2 100644 --- a/metadata/md5-cache/media-libs/glu-9.0.0-r1 +++ b/metadata/md5-cache/media-libs/glu-9.0.0-r1 @@ -4,10 +4,10 @@ DESCRIPTION=The OpenGL Utility Library EAPI=5 HOMEPAGE=https://gitlab.freedesktop.org/mesa/glu IUSE=static-libs 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 ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=SGI-B-2.0 RDEPEND=>=virtual/opengl-7.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(-)?] !=virtual/jre-1.5 ) java? ( >=dev-java/java-config-2.2.0-r3 ) SLOT=0 SRC_URI=mirror://sourceforge/libjpeg-turbo/libjpeg-turbo-1.5.3.tar.gz mirror://gentoo/libjpeg8_8d-2.debian.tar.gz _eclasses_=autotools d0e5375d47f4c809f406eb892e531513 desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 0ee72667014428e01a01df2345244cf3 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=02febde4fb959ba2e1ecc5a48ca753cb +_md5_=865e0c7c3bbb09a35e8e9e1740107a2c diff --git a/metadata/md5-cache/media-libs/woff2-1.0.2-r1 b/metadata/md5-cache/media-libs/woff2-1.0.2-r1 index 194ec9e95fbb..acb09daea307 100644 --- a/metadata/md5-cache/media-libs/woff2-1.0.2-r1 +++ b/metadata/md5-cache/media-libs/woff2-1.0.2-r1 @@ -3,10 +3,10 @@ DEPEND=app-arch/brotli virtual/pkgconfig sys-devel/make >=dev-util/cmake-3.9.6 DESCRIPTION=Encode/decode WOFF2 font format EAPI=6 HOMEPAGE=https://github.com/google/woff2 -KEYWORDS=~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x64-solaris +KEYWORDS=~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x64-solaris LICENSE=MIT RDEPEND=app-arch/brotli SLOT=0 SRC_URI=https://github.com/google/woff2/archive/v1.0.2.tar.gz -> woff2-1.0.2.tar.gz _eclasses_=cmake-utils ec27c4d90ac99a1a0fb77d97bfc597ee desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=0743980a0ec19c9b6a4b1fdc31a8a46e +_md5_=3785132f289e23393a3c8b10d408f043 diff --git a/metadata/md5-cache/media-sound/Manifest.gz b/metadata/md5-cache/media-sound/Manifest.gz index 3a36adc90891..25f59ebaa6f7 100644 Binary files a/metadata/md5-cache/media-sound/Manifest.gz and b/metadata/md5-cache/media-sound/Manifest.gz differ diff --git a/metadata/md5-cache/media-sound/fluidsynth-1.1.11 b/metadata/md5-cache/media-sound/fluidsynth-1.1.11 index 47bdd144c7fe..1d49a6fc25d2 100644 --- a/metadata/md5-cache/media-sound/fluidsynth-1.1.11 +++ b/metadata/md5-cache/media-sound/fluidsynth-1.1.11 @@ -4,10 +4,10 @@ DESCRIPTION=Software real-time synthesizer based on the Soundfont 2 specificatio EAPI=6 HOMEPAGE=http://www.fluidsynth.org/ IUSE=alsa dbus debug examples ipv6 jack ladspa lash portaudio pulseaudio readline sndfile 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 ~ppc ~ppc64 sparc x86 ~x86-fbsd +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 sparc x86 ~x86-fbsd 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(-)?] alsa? ( >=media-libs/alsa-lib-1.0.27.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(-)?] lash? ( >=media-sound/lash-0.5.4-r2[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(-)?] ) ) dbus? ( >=sys-apps/dbus-1.6.18-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(-)?] ) jack? ( virtual/jack[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(-)?] ) ladspa? ( >=media-libs/ladspa-cmt-1.16-r3[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/ladspa-sdk-1.13-r2[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(-)?] ) portaudio? ( >=media-libs/portaudio-19_pre20111121-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(-)?] ) pulseaudio? ( >=media-sound/pulseaudio-2.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(-)?] ) readline? ( >=sys-libs/readline-6.2_p5-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sndfile? ( >=media-libs/libsndfile-1.0.25[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=https://github.com/FluidSynth/fluidsynth/archive/v1.1.11.tar.gz -> fluidsynth-1.1.11.tar.gz _eclasses_=cmake-multilib a2ef7e88c0043ca9dcbe33db04c84f23 cmake-utils ec27c4d90ac99a1a0fb77d97bfc597ee desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=947d8989ca1808001f3160895ecd2985 +_md5_=8acd57d355cc39ccb7eb598a975ba96e diff --git a/metadata/md5-cache/net-dns/Manifest.gz b/metadata/md5-cache/net-dns/Manifest.gz index 66741d7499db..b31bfa876597 100644 Binary files a/metadata/md5-cache/net-dns/Manifest.gz and b/metadata/md5-cache/net-dns/Manifest.gz differ diff --git a/metadata/md5-cache/net-dns/nsd-4.1.24 b/metadata/md5-cache/net-dns/nsd-4.1.24 index d869dab9a0ea..6a06144a596b 100644 --- a/metadata/md5-cache/net-dns/nsd-4.1.24 +++ b/metadata/md5-cache/net-dns/nsd-4.1.24 @@ -1,5 +1,5 @@ -DEFINED_PHASES=configure install postinst -DEPEND=libevent? ( dev-libs/libevent ) munin? ( net-analyzer/munin ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) ) systemd? ( sys-apps/systemd ) sys-devel/flex virtual/yacc systemd? ( virtual/pkgconfig ) virtual/pkgconfig +DEFINED_PHASES=configure install postinst prepare +DEPEND=libevent? ( dev-libs/libevent ) munin? ( net-analyzer/munin ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) ) systemd? ( sys-apps/systemd ) sys-devel/flex virtual/yacc systemd? ( virtual/pkgconfig ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig DESCRIPTION=An authoritative only, high performance, open source name server EAPI=6 HOMEPAGE=http://www.nlnetlabs.nl/projects/nsd @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=libevent? ( dev-libs/libevent ) munin? ( net-analyzer/munin ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) ) systemd? ( sys-apps/systemd ) SLOT=0 SRC_URI=http://www.nlnetlabs.nl/downloads/nsd/nsd-4.1.24.tar.gz -_eclasses_=multilib 97f470f374f2e94ccab04a2fb21d811e systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 user 8bc2845510e2109af75e3eeac607ec81 -_md5_=7a840e43c7c1ced8d0e45713bde96ad0 +_eclasses_=autotools d0e5375d47f4c809f406eb892e531513 libtool 0081a71a261724730ec4c248494f044d multilib 97f470f374f2e94ccab04a2fb21d811e systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 user 8bc2845510e2109af75e3eeac607ec81 +_md5_=64132668167cee4c3ee0d98fa034f859 diff --git a/metadata/md5-cache/net-libs/Manifest.gz b/metadata/md5-cache/net-libs/Manifest.gz index 197d45790066..433745e5b657 100644 Binary files a/metadata/md5-cache/net-libs/Manifest.gz and b/metadata/md5-cache/net-libs/Manifest.gz differ diff --git a/metadata/md5-cache/net-libs/gnutls-3.5.19 b/metadata/md5-cache/net-libs/gnutls-3.5.19 index 50e0631ef17e..b2779e72a272 100644 --- a/metadata/md5-cache/net-libs/gnutls-3.5.19 +++ b/metadata/md5-cache/net-libs/gnutls-3.5.19 @@ -4,11 +4,11 @@ DESCRIPTION=A TLS 1.2 and SSL 3.0 implementation for the GNU project EAPI=6 HOMEPAGE=http://www.gnutls.org/ IUSE=+cxx dane doc examples guile +idn nls openpgp +openssl pkcs11 seccomp sslv2 sslv3 static-libs test test-full +tls-heartbeat tools valgrind zlib abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~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 ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~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 ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-3 LGPL-2.1 RDEPEND=>=dev-libs/libtasn1-4.9:=[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/libunistring:=[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/nettle-3.1:=[gmp,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/gmp-5.1.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(-)?] tools? ( sys-devel/autogen ) dane? ( >=net-dns/unbound-1.4.20[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(-)?] ) guile? ( >=dev-scheme/guile-1.8:=[networking] ) nls? ( >=virtual/libintl-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(-)?] ) pkcs11? ( >=app-crypt/p11-kit-0.23.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[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(-)?] ) idn? ( >=net-dns/libidn2-0.16-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(-)?] ) REQUIRED_USE=test-full? ( guile pkcs11 openpgp openssl idn seccomp tools zlib ) SLOT=0/30 SRC_URI=mirror://gnupg/gnutls/v3.5/gnutls-3.5.19.tar.xz _eclasses_=estack 43ddf5aaffa7a8d0482df54d25a66a1f libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 versionator 2352c3fc97241f6a02042773c8287748 -_md5_=d114a71e9f96fc75ff81324381f500a4 +_md5_=f0af367e9c3f281a1b4e4f21a7faaed2 diff --git a/metadata/md5-cache/net-libs/webkit-gtk-2.18.6 b/metadata/md5-cache/net-libs/webkit-gtk-2.18.6 deleted file mode 100644 index bb65235004b0..000000000000 --- a/metadata/md5-cache/net-libs/webkit-gtk-2.18.6 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test -DEPEND=>=x11-libs/cairo-1.10.2:= >=media-libs/fontconfig-2.8.0:1.0 >=media-libs/freetype-2.4.2:2 >=dev-libs/libgcrypt-1.6.0:0= >=x11-libs/gtk+-3.22:3[aqua?,introspection?,wayland?,X?] >=media-libs/harfbuzz-1.3.3:=[icu(+)] >=dev-libs/icu-3.8.1-r1:= virtual/jpeg:0= >=net-libs/libsoup-2.48:2.4[introspection?] >=dev-libs/libxml2-2.8.0:2 >=media-libs/libpng-1.4:0= dev-db/sqlite:3= sys-libs/zlib:0 >=dev-libs/atk-2.8.0 media-libs/libwebp:= >=dev-libs/glib-2.40:2 >=dev-libs/libxslt-1.1.7 gnome-keyring? ( app-crypt/libsecret ) geolocation? ( >=app-misc/geoclue-2.1.5:2.0 ) introspection? ( >=dev-libs/gobject-introspection-1.32.0:= ) dev-libs/libtasn1:= >=dev-libs/libgcrypt-1.7.0:0= nsplugin? ( >=x11-libs/gtk+-2.24.10:2 ) spell? ( >=app-text/enchant-0.22:= ) 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.10:1.0[opengl?,egl?] ) X? ( x11-libs/cairo[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXrender x11-libs/libXt ) libnotify? ( x11-libs/libnotify ) dev-libs/hyphen egl? ( media-libs/mesa[egl] ) gles2? ( media-libs/mesa[gles2] ) opengl? ( virtual/opengl x11-libs/cairo[opengl] ) webgl? ( x11-libs/cairo[opengl] x11-libs/libXcomposite x11-libs/libXdamage ) || ( >=dev-lang/python-2.7.5-r2:2.7 ) || ( dev-lang/ruby:2.3 dev-lang/ruby:2.4 ) virtual/rubygems >=app-accessibility/at-spi2-core-2.5.3 >=dev-lang/perl-5.10 >=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.9.6 >=app-portage/elt-patches-20170422 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=https://www.webkitgtk.org -IUSE=aqua coverage doc +egl +geolocation gles2 gnome-keyring +gstreamer +introspection +jit libnotify nsplugin +opengl spell wayland +webgl +X test -KEYWORDS=~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos -LICENSE=LGPL-2+ BSD -RDEPEND=>=x11-libs/cairo-1.10.2:= >=media-libs/fontconfig-2.8.0:1.0 >=media-libs/freetype-2.4.2:2 >=dev-libs/libgcrypt-1.6.0:0= >=x11-libs/gtk+-3.22:3[aqua?,introspection?,wayland?,X?] >=media-libs/harfbuzz-1.3.3:=[icu(+)] >=dev-libs/icu-3.8.1-r1:= virtual/jpeg:0= >=net-libs/libsoup-2.48:2.4[introspection?] >=dev-libs/libxml2-2.8.0:2 >=media-libs/libpng-1.4:0= dev-db/sqlite:3= sys-libs/zlib:0 >=dev-libs/atk-2.8.0 media-libs/libwebp:= >=dev-libs/glib-2.40:2 >=dev-libs/libxslt-1.1.7 gnome-keyring? ( app-crypt/libsecret ) geolocation? ( >=app-misc/geoclue-2.1.5:2.0 ) introspection? ( >=dev-libs/gobject-introspection-1.32.0:= ) dev-libs/libtasn1:= >=dev-libs/libgcrypt-1.7.0:0= nsplugin? ( >=x11-libs/gtk+-2.24.10:2 ) spell? ( >=app-text/enchant-0.22:= ) 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.10:1.0[opengl?,egl?] ) X? ( x11-libs/cairo[X] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXrender x11-libs/libXt ) libnotify? ( x11-libs/libnotify ) dev-libs/hyphen egl? ( media-libs/mesa[egl] ) gles2? ( media-libs/mesa[gles2] ) opengl? ( virtual/opengl x11-libs/cairo[opengl] ) webgl? ( x11-libs/cairo[opengl] x11-libs/libXcomposite x11-libs/libXdamage ) -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=https://www.webkitgtk.org/releases/webkitgtk-2.18.6.tar.xz -_eclasses_=check-reqs 21aa24510a44d259c03425a957336b3b cmake-utils ec27c4d90ac99a1a0fb77d97bfc597ee desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 acac536f2c3bbcd312ac3faaa3e55e40 gnome2-utils c6060f4ab634aca444c4b2176b0f3877 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f pax-utils e85f015e815dd463b0c206d781ef45a5 preserve-libs ef207dc62baddfddfd39a164d9797648 python-any-r1 4900ae970f827a22d33d41bd8b8f9ace python-utils-r1 12114a2a9aab35b93efc037a196b3234 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils a43d6cd7f05b4d013e7e40104ddfd3c7 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 virtualx 401b718cc14d43a5a7fbe062c4851ba5 xdg 4939e61ae72d18779a8bdac386a7a07e xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=e4e44a8e94c9197bcb89b8e6d6d477dd diff --git a/metadata/md5-cache/net-libs/webkit-gtk-2.20.5 b/metadata/md5-cache/net-libs/webkit-gtk-2.20.5 index 0befd234d6eb..8e8e4edbacda 100644 --- a/metadata/md5-cache/net-libs/webkit-gtk-2.20.5 +++ b/metadata/md5-cache/net-libs/webkit-gtk-2.20.5 @@ -4,7 +4,7 @@ DESCRIPTION=Open source web browser engine EAPI=6 HOMEPAGE=https://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 ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x86-macos LICENSE=LGPL-2+ BSD RDEPEND=>=x11-libs/cairo-1.10.2:=[X?] >=media-libs/fontconfig-2.8.0:1.0 >=media-libs/freetype-2.4.2:2 >=dev-libs/libgcrypt-1.6.0:0= >=x11-libs/gtk+-3.22:3[aqua?,introspection?,wayland?,X?] >=media-libs/harfbuzz-1.3.3:=[icu(+)] >=dev-libs/icu-3.8.1-r1:= virtual/jpeg:0= >=net-libs/libsoup-2.48:2.4[introspection?] >=dev-libs/libxml2-2.8.0:2 >=media-libs/libpng-1.4:0= dev-db/sqlite:3= sys-libs/zlib:0 >=dev-libs/atk-2.8.0 media-libs/libwebp:= >=dev-libs/glib-2.40:2 >=dev-libs/libxslt-1.1.7 media-libs/woff2 gnome-keyring? ( app-crypt/libsecret ) geolocation? ( >=app-misc/geoclue-2.1.5:2.0 ) introspection? ( >=dev-libs/gobject-introspection-1.32.0:= ) dev-libs/libtasn1:= >=dev-libs/libgcrypt-1.7.0:0= nsplugin? ( >=x11-libs/gtk+-2.24.10:2 ) spell? ( >=app-text/enchant-0.22:= ) 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.10:1.0[egl?,gles2?,opengl?] ) X? ( x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXrender x11-libs/libXt ) libnotify? ( x11-libs/libnotify ) dev-libs/hyphen egl? ( media-libs/mesa[egl] ) gles2? ( media-libs/mesa[gles2] ) opengl? ( virtual/opengl ) webgl? ( x11-libs/libXcomposite x11-libs/libXdamage ) REQUIRED_USE=geolocation? ( introspection ) gles2? ( egl !opengl ) introspection? ( gstreamer ) nsplugin? ( X ) webgl? ( gstreamer || ( gles2 opengl ) ) wayland? ( egl ) || ( aqua wayland X ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=4/37 SRC_URI=https://www.webkitgtk.org/releases/webkitgtk-2.20.5.tar.xz _eclasses_=check-reqs 21aa24510a44d259c03425a957336b3b cmake-utils ec27c4d90ac99a1a0fb77d97bfc597ee desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 acac536f2c3bbcd312ac3faaa3e55e40 gnome2-utils c6060f4ab634aca444c4b2176b0f3877 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f pax-utils e85f015e815dd463b0c206d781ef45a5 preserve-libs ef207dc62baddfddfd39a164d9797648 python-any-r1 4900ae970f827a22d33d41bd8b8f9ace python-utils-r1 12114a2a9aab35b93efc037a196b3234 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils a43d6cd7f05b4d013e7e40104ddfd3c7 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 virtualx 401b718cc14d43a5a7fbe062c4851ba5 xdg 4939e61ae72d18779a8bdac386a7a07e xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=834f366c00f3ca6b741af01b4febdcb4 +_md5_=3ab7144218f8856367e6b3c8d50d9912 diff --git a/metadata/md5-cache/net-misc/Manifest.gz b/metadata/md5-cache/net-misc/Manifest.gz index 9201cd70c9ad..51beae4265fb 100644 Binary files a/metadata/md5-cache/net-misc/Manifest.gz and b/metadata/md5-cache/net-misc/Manifest.gz differ diff --git a/metadata/md5-cache/net-misc/spice-gtk-0.35 b/metadata/md5-cache/net-misc/spice-gtk-0.35 new file mode 100644 index 000000000000..dd4e4cc8803a --- /dev/null +++ b/metadata/md5-cache/net-misc/spice-gtk-0.35 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare +DEPEND=!libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) pulseaudio? ( media-sound/pulseaudio[glib] ) gstvideo? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 media-libs/gst-plugins-good:1.0 ) gstaudio? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 media-libs/gst-plugins-good:1.0 ) >=x11-libs/pixman-0.17.7 media-libs/opus gtk3? ( x11-libs/gtk+:3[introspection?] ) >=dev-libs/glib-2.36:2 >=x11-libs/cairo-1.2 virtual/jpeg:0= sys-libs/zlib introspection? ( dev-libs/gobject-introspection ) lz4? ( app-arch/lz4 ) sasl? ( dev-libs/cyrus-sasl ) smartcard? ( app-emulation/qemu[smartcard] ) usbredir? ( sys-apps/hwids >=sys-apps/usbredir-0.4.2 virtual/libusb:1 virtual/libgudev:= policykit? ( sys-apps/acl >=sys-auth/polkit-0.110-r1 !~sys-auth/polkit-0.111 ) ) webdav? ( net-libs/phodav:2.0 >=dev-libs/glib-2.43.90:2 >=net-libs/libsoup-2.49.91 ) >=app-emulation/spice-protocol-0.12.13 dev-perl/Text-CSV >=dev-util/gtk-doc-am-1.14 >=dev-util/intltool-0.40.0 >=sys-devel/gettext-0.17 virtual/pkgconfig vala? ( || ( dev-lang/vala:0.36[vapigen(+)] dev-lang/vala:0.34[vapigen(+)] dev-lang/vala:0.32[vapigen(+)] ) ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=Set of GObject and Gtk objects for connecting to Spice servers and a client GUI +EAPI=6 +HOMEPAGE=https://www.spice-space.org https://cgit.freedesktop.org/spice/spice-gtk/ +IUSE=dbus gstaudio gstvideo +gtk3 +introspection lz4 mjpeg policykit pulseaudio sasl smartcard static-libs usbredir vala webdav libressl +KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=LGPL-2.1 +RDEPEND=!libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) pulseaudio? ( media-sound/pulseaudio[glib] ) gstvideo? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 media-libs/gst-plugins-good:1.0 ) gstaudio? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 media-libs/gst-plugins-good:1.0 ) >=x11-libs/pixman-0.17.7 media-libs/opus gtk3? ( x11-libs/gtk+:3[introspection?] ) >=dev-libs/glib-2.36:2 >=x11-libs/cairo-1.2 virtual/jpeg:0= sys-libs/zlib introspection? ( dev-libs/gobject-introspection ) lz4? ( app-arch/lz4 ) sasl? ( dev-libs/cyrus-sasl ) smartcard? ( app-emulation/qemu[smartcard] ) usbredir? ( sys-apps/hwids >=sys-apps/usbredir-0.4.2 virtual/libusb:1 virtual/libgudev:= policykit? ( sys-apps/acl >=sys-auth/polkit-0.110-r1 !~sys-auth/polkit-0.111 ) ) webdav? ( net-libs/phodav:2.0 >=dev-libs/glib-2.43.90:2 >=net-libs/libsoup-2.49.91 ) +REQUIRED_USE=?? ( pulseaudio gstaudio ) +SLOT=0 +SRC_URI=https://www.spice-space.org/download/gtk/spice-gtk-0.35.tar.bz2 +_eclasses_=autotools d0e5375d47f4c809f406eb892e531513 desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vala 2f3804278870542119da624a5eded505 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 +_md5_=0f039d1b4ec68cee3c02902415e1291c diff --git a/metadata/md5-cache/net-wireless/Manifest.gz b/metadata/md5-cache/net-wireless/Manifest.gz index 17ebc188239d..b37d16eb1ff8 100644 Binary files a/metadata/md5-cache/net-wireless/Manifest.gz and b/metadata/md5-cache/net-wireless/Manifest.gz differ diff --git a/metadata/md5-cache/net-wireless/aircrack-ng-1.3-r2 b/metadata/md5-cache/net-wireless/aircrack-ng-1.3-r2 index d10da36fc067..a6b42d9d0e2e 100644 --- a/metadata/md5-cache/net-wireless/aircrack-ng-1.3-r2 +++ b/metadata/md5-cache/net-wireless/aircrack-ng-1.3-r2 @@ -4,7 +4,7 @@ DESCRIPTION=WLAN tools for breaking 802.11 WEP/WPA keys EAPI=6 HOMEPAGE=http://www.aircrack-ng.org IUSE=+airdrop-ng +airgraph-ng kernel_linux kernel_FreeBSD libressl +netlink +pcre +sqlite +experimental python_targets_python2_7 -KEYWORDS=~amd64 ~arm ~ppc x86 ~x86-fbsd ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm ~ppc x86 ~x86-fbsd ~amd64-linux ~x86-linux LICENSE=GPL-2 PDEPEND=kernel_linux? ( net-wireless/iw net-wireless/wireless-tools sys-apps/ethtool sys-apps/usbutils sys-apps/pciutils ) sys-apps/hwids airdrop-ng? ( net-wireless/lorcon[python,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) RDEPEND=net-libs/libpcap !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) netlink? ( dev-libs/libnl:3 ) pcre? ( dev-libs/libpcre ) airdrop-ng? ( 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(-)] ) airgraph-ng? ( 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(-)] ) experimental? ( sys-libs/zlib ) sqlite? ( >=dev-db/sqlite-3.4 ) @@ -12,4 +12,4 @@ REQUIRED_USE=airdrop-ng? ( || ( python_targets_python2_7 ) ) airgraph-ng? ( || ( SLOT=0 SRC_URI=https://download.aircrack-ng.org/aircrack-ng-1.3.tar.gz _eclasses_=autotools d0e5375d47f4c809f406eb892e531513 desktop b1d22ac8bdd4679ab79c71aca235009d distutils-r1 8595c9c7530ac3963f3aa0d77aa7e2d8 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=fdc59c5ed72257fcf625b3325ea8a479 +_md5_=c9844859c495183e685d6f6603a99413 diff --git a/metadata/md5-cache/net-wireless/bladerf-2016.06 b/metadata/md5-cache/net-wireless/bladerf-2018.08_rc1 similarity index 81% rename from metadata/md5-cache/net-wireless/bladerf-2016.06 rename to metadata/md5-cache/net-wireless/bladerf-2018.08_rc1 index d14d432c83e0..4a17b3da07fe 100644 --- a/metadata/md5-cache/net-wireless/bladerf-2016.06 +++ b/metadata/md5-cache/net-wireless/bladerf-2018.08_rc1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=>=dev-libs/libusb-1.0.16 tecla? ( dev-libs/libtecla ) virtual/pkgconfig sys-devel/make >=dev-util/cmake-3.9.6 virtual/pkgconfig DESCRIPTION=Libraries for supporing the BladeRF hardware from Nuand -EAPI=5 +EAPI=6 HOMEPAGE=http://nuand.com/ IUSE=doc +tecla KEYWORDS=~amd64 ~arm ~x86 LICENSE=GPL-2+ LGPL-2.1+ -PDEPEND=>=net-wireless/bladerf-firmware-2.0.0 >=net-wireless/bladerf-fpga-0.6.0 +PDEPEND=>=net-wireless/bladerf-firmware-2.2.0 >=net-wireless/bladerf-fpga-0.7.3 RDEPEND=>=dev-libs/libusb-1.0.16 tecla? ( dev-libs/libtecla ) -SLOT=0/2016.06 -SRC_URI=https://github.com/Nuand/bladeRF/archive/2016.06.tar.gz -> bladerf-2016.06.tar.gz +SLOT=0/2018.08_rc1 +SRC_URI=https://github.com/Nuand/bladeRF/archive/2018.08-rc1.tar.gz -> bladerf-2018.08_rc1.tar.gz _eclasses_=cmake-utils ec27c4d90ac99a1a0fb77d97bfc597ee desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 udev 7af0412965eeadeee9e3b7ad98adabdf vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=3b65149cbff5fe1afae0bd3f8351a4ba +_md5_=4c36384e9bc48092894951d2a373e25d diff --git a/metadata/md5-cache/net-wireless/bladerf-9999 b/metadata/md5-cache/net-wireless/bladerf-9999 index bd0f13240315..8f38c18bb3e5 100644 --- a/metadata/md5-cache/net-wireless/bladerf-9999 +++ b/metadata/md5-cache/net-wireless/bladerf-9999 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile configure install prepare test unpack DEPEND=>=dev-libs/libusb-1.0.16 tecla? ( dev-libs/libtecla ) virtual/pkgconfig sys-devel/make >=dev-util/cmake-3.9.6 virtual/pkgconfig >=dev-vcs/git-1.8.2.1[curl] DESCRIPTION=Libraries for supporing the BladeRF hardware from Nuand -EAPI=5 +EAPI=6 HOMEPAGE=http://nuand.com/ IUSE=doc +tecla LICENSE=GPL-2+ LGPL-2.1+ -PDEPEND=>=net-wireless/bladerf-firmware-2.0.0 >=net-wireless/bladerf-fpga-0.6.0 +PDEPEND=>=net-wireless/bladerf-firmware-2.2.0 >=net-wireless/bladerf-fpga-0.7.3 RDEPEND=>=dev-libs/libusb-1.0.16 tecla? ( dev-libs/libtecla ) SLOT=0/9999 _eclasses_=cmake-utils ec27c4d90ac99a1a0fb77d97bfc597ee desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 git-r3 918d6a744039c29af2cadc7317459765 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 udev 7af0412965eeadeee9e3b7ad98adabdf vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=3b65149cbff5fe1afae0bd3f8351a4ba +_md5_=4c36384e9bc48092894951d2a373e25d diff --git a/metadata/md5-cache/net-wireless/bladerf-firmware-2.2.0 b/metadata/md5-cache/net-wireless/bladerf-firmware-2.2.0 new file mode 100644 index 000000000000..76b153acff76 --- /dev/null +++ b/metadata/md5-cache/net-wireless/bladerf-firmware-2.2.0 @@ -0,0 +1,9 @@ +DEFINED_PHASES=install postinst unpack +DESCRIPTION=bladeRF FX3 firmware images +EAPI=6 +HOMEPAGE=http://nuand.com/fx3.php +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=MIT +SLOT=0 +SRC_URI=http://nuand.com/fx3/bladeRF_fw_v2.2.0.img +_md5_=51f4781899c36e4ed4c5fa80930d62dc diff --git a/metadata/md5-cache/net-wireless/bladerf-fpga-0.7.3 b/metadata/md5-cache/net-wireless/bladerf-fpga-0.7.3 new file mode 100644 index 000000000000..4b9cfbb758db --- /dev/null +++ b/metadata/md5-cache/net-wireless/bladerf-fpga-0.7.3 @@ -0,0 +1,10 @@ +DEFINED_PHASES=install unpack +DESCRIPTION=bladeRF FPGA bitstreams +EAPI=6 +HOMEPAGE=http://nuand.com/fpga.php +IUSE=+xA4 +xA9 +x40 +x115 +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=MIT +SLOT=0 +SRC_URI=xA4? ( http://nuand.com/fpga/v0.7.3/hostedxA4.rbf -> hostedxA4-0.7.3.rbf ) xA9? ( http://nuand.com/fpga/v0.7.3/hostedxA9.rbf -> hostedxA9-0.7.3.rbf ) x40? ( http://nuand.com/fpga/v0.7.3/hostedx40.rbf -> hostedx40-0.7.3.rbf ) x115? ( http://nuand.com/fpga/v0.7.3/hostedx115.rbf -> hostedx115-0.7.3.rbf ) +_md5_=4853e03e31cd9e2820e51a8dc8e98cc9 diff --git a/metadata/md5-cache/net-wireless/dump1090-0.0_p20180509 b/metadata/md5-cache/net-wireless/dump1090-0.0_p20180509 new file mode 100644 index 000000000000..39d07e61ae5a --- /dev/null +++ b/metadata/md5-cache/net-wireless/dump1090-0.0_p20180509 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile install +DEPEND=net-wireless/rtl-sdr virtual/libusb:1 +DESCRIPTION=simple Mode S decoder for RTLSDR devices +EAPI=6 +HOMEPAGE=https://github.com/mutability/dump1090 +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=net-wireless/rtl-sdr virtual/libusb:1 +SLOT=0 +SRC_URI=https://github.com/mutability/dump1090/archive/fb5942dba6505a21cbafc7905a5a7c513b214dc9.tar.gz -> dump1090-0.0_p20180509.tar.gz +_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf +_md5_=6c417f885b35c022979f7947a26842f9 diff --git a/metadata/md5-cache/net-wireless/gqrx-2.10 b/metadata/md5-cache/net-wireless/gqrx-2.11.5 similarity index 92% rename from metadata/md5-cache/net-wireless/gqrx-2.10 rename to metadata/md5-cache/net-wireless/gqrx-2.11.5 index 0b917553f624..53f2fb20673f 100644 --- a/metadata/md5-cache/net-wireless/gqrx-2.10 +++ b/metadata/md5-cache/net-wireless/gqrx-2.11.5 @@ -9,6 +9,6 @@ LICENSE=GPL-3 RDEPEND=>=net-wireless/gnuradio-3.7_rc:=[audio,analog,filter] >=net-wireless/gr-osmosdr-0.1.0:= dev-libs/boost:= dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 pulseaudio? ( media-sound/pulseaudio:= ) portaudio? ( media-libs/portaudio:= ) REQUIRED_USE=^^ ( pulseaudio portaudio gr-audio ) SLOT=0 -SRC_URI=https://github.com/csete/gqrx/archive/v2.10.tar.gz -> gqrx-2.10.tar.gz +SRC_URI=https://github.com/csete/gqrx/archive/v2.11.5.tar.gz -> gqrx-2.11.5.tar.gz _eclasses_=cmake-utils ec27c4d90ac99a1a0fb77d97bfc597ee desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=eab390f7e6ce039efb4f6448aa1126d0 +_md5_=6d1e1fa8035a3e17acb331afa457f1f8 diff --git a/metadata/md5-cache/net-wireless/gqrx-9999 b/metadata/md5-cache/net-wireless/gqrx-9999 index a375770802c5..cf9eae1d56ba 100644 --- a/metadata/md5-cache/net-wireless/gqrx-9999 +++ b/metadata/md5-cache/net-wireless/gqrx-9999 @@ -9,4 +9,4 @@ RDEPEND=>=net-wireless/gnuradio-3.7_rc:=[audio,analog,filter] >=net-wireless/gr- REQUIRED_USE=^^ ( pulseaudio portaudio gr-audio ) SLOT=0 _eclasses_=cmake-utils ec27c4d90ac99a1a0fb77d97bfc597ee desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 git-r3 918d6a744039c29af2cadc7317459765 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=cb823e8e9025342c5f1dd1b00614c213 +_md5_=6d1e1fa8035a3e17acb331afa457f1f8 diff --git a/metadata/md5-cache/net-wireless/gr-osmosdr-0.1.4_p20170612 b/metadata/md5-cache/net-wireless/gr-osmosdr-0.1.4_p20170612-r1 similarity index 57% rename from metadata/md5-cache/net-wireless/gr-osmosdr-0.1.4_p20170612 rename to metadata/md5-cache/net-wireless/gr-osmosdr-0.1.4_p20170612-r1 index f924ea213c01..3330bccfd993 100644 --- a/metadata/md5-cache/net-wireless/gr-osmosdr-0.1.4_p20170612 +++ b/metadata/md5-cache/net-wireless/gr-osmosdr-0.1.4_p20170612-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test -DEPEND=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_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_python3_7(-),python_single_target_python2_7(+)] dev-libs/boost:= >=net-wireless/gnuradio-3.7_rc:0=[fcd?,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_python3_7(-),python_single_target_python2_7(+)] bladerf? ( net-wireless/bladerf:= ) hackrf? ( net-libs/libhackrf:= ) iqbalance? ( net-wireless/gr-iqbal:=[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_python3_7(-),python_single_target_python2_7(+)] ) mirisdr? ( net-libs/libmirisdr:= ) rtlsdr? ( >=net-wireless/rtl-sdr-0.5.3:= ) soapy? ( net-wireless/soapysdr ) uhd? ( net-wireless/uhd:=[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_python3_7(-),python_single_target_python2_7(+)] ) dev-python/cheetah sys-devel/make >=dev-util/cmake-3.9.6 +DEPEND=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_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_python3_7(-),python_single_target_python2_7(+)] dev-libs/boost:= >=net-wireless/gnuradio-3.7_rc:0=[fcd?,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_python3_7(-),python_single_target_python2_7(+)] bladerf? ( =net-wireless/rtl-sdr-0.5.3:= ) soapy? ( net-wireless/soapysdr ) uhd? ( net-wireless/uhd:=[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_python3_7(-),python_single_target_python2_7(+)] ) dev-python/cheetah sys-devel/make >=dev-util/cmake-3.9.6 DESCRIPTION=GNU Radio source block for OsmoSDR and rtlsdr and hackrf EAPI=6 HOMEPAGE=http://sdr.osmocom.org/trac/wiki/GrOsmoSDR IUSE=bladerf fcd hackrf iqbalance mirisdr python rtlsdr soapy uhd python_targets_python2_7 KEYWORDS=~amd64 ~arm ~x86 LICENSE=GPL-3 -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_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_python3_7(-),python_single_target_python2_7(+)] dev-libs/boost:= >=net-wireless/gnuradio-3.7_rc:0=[fcd?,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_python3_7(-),python_single_target_python2_7(+)] bladerf? ( net-wireless/bladerf:= ) hackrf? ( net-libs/libhackrf:= ) iqbalance? ( net-wireless/gr-iqbal:=[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_python3_7(-),python_single_target_python2_7(+)] ) mirisdr? ( net-libs/libmirisdr:= ) rtlsdr? ( >=net-wireless/rtl-sdr-0.5.3:= ) soapy? ( net-wireless/soapysdr ) uhd? ( net-wireless/uhd:=[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_python3_7(-),python_single_target_python2_7(+)] ) +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_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_python3_7(-),python_single_target_python2_7(+)] dev-libs/boost:= >=net-wireless/gnuradio-3.7_rc:0=[fcd?,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_python3_7(-),python_single_target_python2_7(+)] bladerf? ( =net-wireless/rtl-sdr-0.5.3:= ) soapy? ( net-wireless/soapysdr ) uhd? ( net-wireless/uhd:=[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_python3_7(-),python_single_target_python2_7(+)] ) REQUIRED_USE=python_targets_python2_7 SLOT=0/0.1.4_p20170612 SRC_URI=https://dev.gentoo.org/~zerochaos/distfiles/gr-osmosdr-0.1.4_p20170612.tar.xz _eclasses_=cmake-utils ec27c4d90ac99a1a0fb77d97bfc597ee desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=84a160efcf9946a7c8617ac6486d975d +_md5_=cb0b4e79196eeb4e4a5c13eada10ec90 diff --git a/metadata/md5-cache/net-wireless/gr-osmosdr-0.1.4_p20180626 b/metadata/md5-cache/net-wireless/gr-osmosdr-0.1.4_p20180626 new file mode 100644 index 000000000000..8cc1bae94a24 --- /dev/null +++ b/metadata/md5-cache/net-wireless/gr-osmosdr-0.1.4_p20180626 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=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_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_python3_7(-),python_single_target_python2_7(+)] dev-libs/boost:= >=net-wireless/gnuradio-3.7_rc:0=[fcd?,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_python3_7(-),python_single_target_python2_7(+)] bladerf? ( >=net-wireless/bladerf-2018.08_rc1:= ) hackrf? ( net-libs/libhackrf:= ) iqbalance? ( net-wireless/gr-iqbal:=[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_python3_7(-),python_single_target_python2_7(+)] ) mirisdr? ( net-libs/libmirisdr:= ) rtlsdr? ( >=net-wireless/rtl-sdr-0.5.3:= ) soapy? ( net-wireless/soapysdr ) uhd? ( net-wireless/uhd:=[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_python3_7(-),python_single_target_python2_7(+)] ) dev-python/cheetah sys-devel/make >=dev-util/cmake-3.9.6 +DESCRIPTION=GNU Radio source block for OsmoSDR and rtlsdr and hackrf +EAPI=6 +HOMEPAGE=http://sdr.osmocom.org/trac/wiki/GrOsmoSDR +IUSE=bladerf fcd hackrf iqbalance mirisdr python rtlsdr soapy uhd python_targets_python2_7 +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=GPL-3 +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_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_python3_7(-),python_single_target_python2_7(+)] dev-libs/boost:= >=net-wireless/gnuradio-3.7_rc:0=[fcd?,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_python3_7(-),python_single_target_python2_7(+)] bladerf? ( >=net-wireless/bladerf-2018.08_rc1:= ) hackrf? ( net-libs/libhackrf:= ) iqbalance? ( net-wireless/gr-iqbal:=[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_python3_7(-),python_single_target_python2_7(+)] ) mirisdr? ( net-libs/libmirisdr:= ) rtlsdr? ( >=net-wireless/rtl-sdr-0.5.3:= ) soapy? ( net-wireless/soapysdr ) uhd? ( net-wireless/uhd:=[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_python3_7(-),python_single_target_python2_7(+)] ) +REQUIRED_USE=python_targets_python2_7 +SLOT=0/0.1.4_p20180626 +SRC_URI=https://dev.gentoo.org/~zerochaos/distfiles/gr-osmosdr-0.1.4_p20180626.tar.xz +_eclasses_=cmake-utils ec27c4d90ac99a1a0fb77d97bfc597ee desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 +_md5_=118c9c2da25d2cbd66866128ec189d78 diff --git a/metadata/md5-cache/net-wireless/soapybladerf-0.3.4 b/metadata/md5-cache/net-wireless/soapybladerf-0.3.5 similarity index 77% rename from metadata/md5-cache/net-wireless/soapybladerf-0.3.4 rename to metadata/md5-cache/net-wireless/soapybladerf-0.3.5 index cfc7a02800a5..ecb42bc0d978 100644 --- a/metadata/md5-cache/net-wireless/soapybladerf-0.3.4 +++ b/metadata/md5-cache/net-wireless/soapybladerf-0.3.5 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND=net-wireless/soapysdr >=net-wireless/bladerf-2017.12_rc1:= sys-devel/make >=dev-util/cmake-3.9.6 +DEPEND=net-wireless/soapysdr ~net-wireless/bladerf-2017.12_rc1:= sys-devel/make >=dev-util/cmake-3.9.6 DESCRIPTION=Soapy SDR plugin for the Blade RF EAPI=6 HOMEPAGE=https://github.com/pothosware/SoapyBladeRF KEYWORDS=~amd64 ~x86 LICENSE=MIT -RDEPEND=net-wireless/soapysdr >=net-wireless/bladerf-2017.12_rc1:= +RDEPEND=net-wireless/soapysdr ~net-wireless/bladerf-2017.12_rc1:= SLOT=0 -SRC_URI=https://github.com/pothosware/SoapyBladeRF/archive/soapy-bladerf-0.3.4.tar.gz -> soapybladerf-0.3.4.tar.gz +SRC_URI=https://github.com/pothosware/SoapyBladeRF/archive/soapy-bladerf-0.3.5.tar.gz -> soapybladerf-0.3.5.tar.gz _eclasses_=cmake-utils ec27c4d90ac99a1a0fb77d97bfc597ee desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=acb8280785312c5d7de54fbb6d9e714a +_md5_=71131f93e9e8affa42048d96df921b87 diff --git a/metadata/md5-cache/net-wireless/soapyhackrf-0.3.2 b/metadata/md5-cache/net-wireless/soapyhackrf-0.3.3 similarity index 95% rename from metadata/md5-cache/net-wireless/soapyhackrf-0.3.2 rename to metadata/md5-cache/net-wireless/soapyhackrf-0.3.3 index 37cc4ca16ab6..7366ccd7e9c5 100644 --- a/metadata/md5-cache/net-wireless/soapyhackrf-0.3.2 +++ b/metadata/md5-cache/net-wireless/soapyhackrf-0.3.3 @@ -7,6 +7,6 @@ KEYWORDS=~amd64 ~x86 LICENSE=MIT RDEPEND=net-wireless/soapysdr net-libs/libhackrf:= SLOT=0 -SRC_URI=https://github.com/pothosware/SoapyHackRF/archive/soapy-hackrf-0.3.2.tar.gz -> soapyhackrf-0.3.2.tar.gz +SRC_URI=https://github.com/pothosware/SoapyHackRF/archive/soapy-hackrf-0.3.3.tar.gz -> soapyhackrf-0.3.3.tar.gz _eclasses_=cmake-utils ec27c4d90ac99a1a0fb77d97bfc597ee desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 _md5_=9ef9ecd861297202302513cfeaa3359a diff --git a/metadata/md5-cache/net-wireless/soapyrtlsdr-0.2.4 b/metadata/md5-cache/net-wireless/soapyrtlsdr-0.2.5 similarity index 95% rename from metadata/md5-cache/net-wireless/soapyrtlsdr-0.2.4 rename to metadata/md5-cache/net-wireless/soapyrtlsdr-0.2.5 index c26a79586081..5c1a714de76d 100644 --- a/metadata/md5-cache/net-wireless/soapyrtlsdr-0.2.4 +++ b/metadata/md5-cache/net-wireless/soapyrtlsdr-0.2.5 @@ -7,6 +7,6 @@ KEYWORDS=~amd64 ~x86 LICENSE=MIT RDEPEND=net-wireless/soapysdr net-wireless/rtl-sdr SLOT=0 -SRC_URI=https://github.com/pothosware/SoapyRTLSDR/archive/soapy-rtlsdr-0.2.4.tar.gz -> soapyrtlsdr-0.2.4.tar.gz +SRC_URI=https://github.com/pothosware/SoapyRTLSDR/archive/soapy-rtlsdr-0.2.5.tar.gz -> soapyrtlsdr-0.2.5.tar.gz _eclasses_=cmake-utils ec27c4d90ac99a1a0fb77d97bfc597ee desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 _md5_=998e3dfc40fa95588f78cddcac12c1d1 diff --git a/metadata/md5-cache/sci-libs/Manifest.gz b/metadata/md5-cache/sci-libs/Manifest.gz index 33a7452caf1f..189c9bbf7742 100644 Binary files a/metadata/md5-cache/sci-libs/Manifest.gz and b/metadata/md5-cache/sci-libs/Manifest.gz differ diff --git a/metadata/md5-cache/sci-libs/lapack-reference-3.2.1-r4 b/metadata/md5-cache/sci-libs/lapack-reference-3.2.1-r4 index a6f2f8409865..bf9724abb1cf 100644 --- a/metadata/md5-cache/sci-libs/lapack-reference-3.2.1-r4 +++ b/metadata/md5-cache/sci-libs/lapack-reference-3.2.1-r4 @@ -4,10 +4,10 @@ DESCRIPTION=FORTRAN reference implementation of LAPACK Linear Algebra PACKage EAPI=5 HOMEPAGE=http://www.netlib.org/lapack/index.html IUSE=doc -KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 ~s390 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos +KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 s390 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos LICENSE=BSD RDEPEND=app-eselect/eselect-lapack virtual/blas virtual/fortran SLOT=0 SRC_URI=mirror://gentoo/lapack-3.2.1.tgz mirror://gentoo/lapack-reference-3.2.1-autotools.patch.bz2 _eclasses_=autotools d0e5375d47f4c809f406eb892e531513 desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 fortran-2 68fcf50e02640de6eb5698ea038d9537 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=a08a8e75e54d48d8ebd16663b9d7c769 +_md5_=89beafa2397755dcfe2e3018940871bf diff --git a/metadata/md5-cache/sys-apps/Manifest.gz b/metadata/md5-cache/sys-apps/Manifest.gz index af6e64635421..b11664b50bb2 100644 Binary files a/metadata/md5-cache/sys-apps/Manifest.gz and b/metadata/md5-cache/sys-apps/Manifest.gz differ diff --git a/metadata/md5-cache/sys-apps/accountsservice-0.6.50 b/metadata/md5-cache/sys-apps/accountsservice-0.6.50 new file mode 100644 index 000000000000..ae70f8e0cce8 --- /dev/null +++ b/metadata/md5-cache/sys-apps/accountsservice-0.6.50 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare +DEPEND=>=dev-libs/glib-2.44:2 sys-auth/polkit elogind? ( >=sys-auth/elogind-229.4 ) introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) systemd? ( >=sys-apps/systemd-186:0= ) !systemd? ( !elogind? ( sys-auth/consolekit ) ) dev-libs/libxslt dev-util/gdbus-codegen >=dev-util/gtk-doc-am-1.15 >=dev-util/intltool-0.40 sys-devel/gettext virtual/pkgconfig doc? ( app-text/docbook-xml-dtd:4.1.2 app-text/xmlto ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1: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 virtual/pkgconfig +DESCRIPTION=D-Bus interfaces for querying and manipulating user account information +EAPI=6 +HOMEPAGE=https://www.freedesktop.org/wiki/Software/AccountsService/ +IUSE=doc elogind +introspection selinux systemd +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-3+ +RDEPEND=>=dev-libs/glib-2.44:2 sys-auth/polkit elogind? ( >=sys-auth/elogind-229.4 ) introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) systemd? ( >=sys-apps/systemd-186:0= ) !systemd? ( !elogind? ( sys-auth/consolekit ) ) selinux? ( sec-policy/selinux-accountsd ) +REQUIRED_USE=?? ( elogind systemd ) +SLOT=0 +SRC_URI=https://www.freedesktop.org/software/accountsservice/accountsservice-0.6.50.tar.xz +_eclasses_=autotools d0e5375d47f4c809f406eb892e531513 desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 acac536f2c3bbcd312ac3faaa3e55e40 gnome2-utils c6060f4ab634aca444c4b2176b0f3877 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 xdg 4939e61ae72d18779a8bdac386a7a07e xdg-utils 89bb9f083a2590d9b447fd0b78a96186 +_md5_=392963798da9365484764d8926e1143b diff --git a/metadata/md5-cache/sys-apps/busybox-1.29.2 b/metadata/md5-cache/sys-apps/busybox-1.29.2 new file mode 100644 index 000000000000..5f1549deb26b --- /dev/null +++ b/metadata/md5-cache/sys-apps/busybox-1.29.2 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install postinst preinst prepare +DEPEND=!static? ( selinux? ( sys-libs/libselinux ) ) pam? ( sys-libs/pam ) static? ( selinux? ( sys-libs/libselinux[static-libs(+)] ) ) >=sys-kernel/linux-headers-2.6.39 +DESCRIPTION=Utilities for rescue and embedded systems +EAPI=6 +HOMEPAGE=https://www.busybox.net/ +IUSE=debug ipv6 livecd make-symlinks math mdev pam selinux sep-usr static syslog systemd savedconfig +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux +LICENSE=GPL-2 +RDEPEND=!static? ( selinux? ( sys-libs/libselinux ) ) pam? ( sys-libs/pam ) mdev? ( !=sys-auth/polkit-0.111 ) python? ( python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_single_target_python3_4? ( dev-lang/python:3.4 ) python_single_target_python3_5? ( dev-lang/python:3.5 ) python_single_target_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?] ) !=dev-util/cmake-3.9.6 +DEPEND=sys-libs/libcap dev-libs/openssl:0= bladerf? ( net-wireless/bladerf:= ) net-wireless/rtl-sdr virtual/pkgconfig sys-devel/make >=dev-util/cmake-3.9.6 DESCRIPTION=An entropy generator using SDR peripherals, including rtl-sdr and BladeRF EAPI=6 HOMEPAGE=http://rtl-entropy.org/ IUSE=bladerf KEYWORDS=~amd64 ~x86 LICENSE=GPL-3+ -RDEPEND=sys-libs/libcap dev-libs/openssl:0= bladerf? ( net-wireless/bladerf ) net-wireless/rtl-sdr +RDEPEND=sys-libs/libcap dev-libs/openssl:0= bladerf? ( net-wireless/bladerf:= ) net-wireless/rtl-sdr SLOT=0 SRC_URI=https://github.com/pwarren/rtl-entropy/archive/9f1768c35f6205a73a657cfc9ac7bd9f9a40936c.tar.gz -> rtl-entropy-0.1.2_p20180118.tar.gz _eclasses_=cmake-utils ec27c4d90ac99a1a0fb77d97bfc597ee desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 -_md5_=40d8b9c2c7aa7ee40788f3cf554926e7 +_md5_=229ebe944ad53d7325bf3499e9df590a diff --git a/metadata/md5-cache/sys-auth/Manifest.gz b/metadata/md5-cache/sys-auth/Manifest.gz index afdd1dde598a..139ab7b1ba5b 100644 Binary files a/metadata/md5-cache/sys-auth/Manifest.gz and b/metadata/md5-cache/sys-auth/Manifest.gz differ diff --git a/metadata/md5-cache/sys-auth/pam_p11-0.2.0 b/metadata/md5-cache/sys-auth/pam_p11-0.2.0 index 347027a78111..eefed9653763 100644 --- a/metadata/md5-cache/sys-auth/pam_p11-0.2.0 +++ b/metadata/md5-cache/sys-auth/pam_p11-0.2.0 @@ -3,10 +3,10 @@ DEPEND=virtual/pam dev-libs/libp11 dev-libs/openssl:0= virtual/pkgconfig DESCRIPTION=PAM module for authenticating against PKCS#11 tokens EAPI=6 HOMEPAGE=https://github.com/opensc/pam_p11/wiki -KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 +KEYWORDS=~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 LICENSE=LGPL-2.1 RDEPEND=virtual/pam dev-libs/libp11 dev-libs/openssl:0= SLOT=0 SRC_URI=https://github.com/OpenSC/pam_p11/releases/download/pam_p11-0.2.0/pam_p11-0.2.0.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e pam 3e788d86170dfcd5b06824d898315e18 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=10c76633db047e4763341fcacb027a96 +_md5_=5d942a0a1b1891e233a08aabbd35f55d diff --git a/metadata/md5-cache/sys-block/Manifest.gz b/metadata/md5-cache/sys-block/Manifest.gz index bf5f9bae91de..adbb1c5910ff 100644 Binary files a/metadata/md5-cache/sys-block/Manifest.gz and b/metadata/md5-cache/sys-block/Manifest.gz differ diff --git a/metadata/md5-cache/sys-block/di-4.46 b/metadata/md5-cache/sys-block/di-4.46 index e4b86ca88fd3..360cc1d7b1b1 100644 --- a/metadata/md5-cache/sys-block/di-4.46 +++ b/metadata/md5-cache/sys-block/di-4.46 @@ -4,10 +4,10 @@ DESCRIPTION=Disk Information Utility EAPI=6 HOMEPAGE=http://www.gentoo.com/di/ IUSE=nls -KEYWORDS=~amd64 ppc ~ppc64 x86 ~x86-fbsd +KEYWORDS=amd64 ppc ~ppc64 x86 ~x86-fbsd LICENSE=ZLIB RESTRICT=test SLOT=0 SRC_URI=http://www.gentoo.com/di/di-4.46.tar.gz _eclasses_=multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 -_md5_=2804ddaba200609f695b83881eaa972c +_md5_=b7ce8724b863d2aa9468b682d3c0ed9a diff --git a/metadata/md5-cache/sys-block/storcli-7.0504 b/metadata/md5-cache/sys-block/storcli-7.0504 index e410464061ba..3094e5e121a3 100644 --- a/metadata/md5-cache/sys-block/storcli-7.0504 +++ b/metadata/md5-cache/sys-block/storcli-7.0504 @@ -1,4 +1,5 @@ DEFINED_PHASES=install prepare unpack +DEPEND=app-arch/unzip DESCRIPTION=MegaRAID StorCLI (successor of the MegaCLI) EAPI=6 HOMEPAGE=https://www.broadcom.com/support/download-search?dk=storcli @@ -7,4 +8,4 @@ LICENSE=Avago LSI BSD SLOT=0/7.5 SRC_URI=https://docs.broadcom.com/docs-and-downloads/docs-and-downloads/raid-controllers/raid-controllers-common-files/007.0504.0000.0000_Unified_StorCLI.zip -> storcli-7.0504.zip _eclasses_=pax-utils e85f015e815dd463b0c206d781ef45a5 -_md5_=835f1668904379bc429ffe7a8b129241 +_md5_=89080ec89f68c8718cbdf1c15bc946c8 diff --git a/metadata/md5-cache/sys-cluster/Manifest.gz b/metadata/md5-cache/sys-cluster/Manifest.gz index 112d25fb3943..0c0f8e93ca9f 100644 Binary files a/metadata/md5-cache/sys-cluster/Manifest.gz and b/metadata/md5-cache/sys-cluster/Manifest.gz differ diff --git a/metadata/md5-cache/sys-cluster/ceph-12.2.7 b/metadata/md5-cache/sys-cluster/ceph-12.2.7 index ebd855c606f5..23e0413c1858 100644 --- a/metadata/md5-cache/sys-cluster/ceph-12.2.7 +++ b/metadata/md5-cache/sys-cluster/ceph-12.2.7 @@ -4,7 +4,7 @@ DESCRIPTION=Ceph distributed filesystem EAPI=6 HOMEPAGE=https://ceph.com/ IUSE=babeltrace cephfs fuse jemalloc ldap lttng +mgr nss +radosgw +ssl static-libs +system-boost systemd +tcmalloc test xfs zfs cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_sse4_1 cpu_flags_x86_sse4_2 cpu_flags_x86_ssse3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=~amd64 x86 +KEYWORDS=amd64 x86 LICENSE=LGPL-2.1 CC-BY-SA-3.0 GPL-2 BSD Boost-1.0 MIT RDEPEND=virtual/libudev:= app-arch/bzip2:=[static-libs?] app-arch/lz4:=[static-libs?] app-arch/snappy:=[static-libs?] app-arch/zstd:=[static-libs?] app-misc/jq:=[static-libs?] =dev-libs/boost-1.66:=[threads,context,python,static-libs?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) jemalloc? ( dev-libs/jemalloc:=[static-libs?] ) !jemalloc? ( >=dev-util/google-perftools-2.4:=[static-libs?] ) 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 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] net-misc/socat sys-apps/gptfdisk sys-block/parted sys-fs/cryptsetup sys-fs/lvm2 !=sys-libs/glibc-2.13 ) >=sys-devel/binutils-2.20 >=sys-apps/sed-4 sys-devel/gnuconfig >=app-portage/elt-patches-20170422 sys-libs/zlib nls? ( virtual/libintl ) virtual/libiconv >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= graphite? ( >=dev-libs/isl-0.14:0= ) >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 nls? ( sys-devel/gettext ) regression-test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) gcj? ( awt? ( x11-base/xorg-proto x11-libs/libXt x11-libs/libX11 x11-libs/libXtst =x11-libs/gtk+-2* virtual/pkgconfig x11-libs/pango ) >=media-libs/libart_lgpl-2.1 app-arch/zip app-arch/unzip ) +DESCRIPTION=The GNU Compiler Collection +EAPI=5 +HOMEPAGE=https://gcc.gnu.org/ +IUSE=regression-test vanilla altivec debug doc hardened multilib objc awt gcj pgo objc-gc libssp objc++ fixed-point go graphite cilk +vtv jit mpx +pie +ssp +pch +nls +nptl +cxx +fortran +openmp +sanitize +LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ +PDEPEND=elibc_glibc? ( >=sys-libs/glibc-2.13 ) >=sys-devel/gcc-config-1.7 +RDEPEND=sys-libs/zlib nls? ( virtual/libintl ) virtual/libiconv >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= graphite? ( >=dev-libs/isl-0.14:0= ) +RESTRICT=strip +SLOT=6.4.0 +SRC_URI=mirror://gnu/gcc/gcc-6.4.0/gcc-6.4.0.tar.xz mirror://gentoo/gcc-6.4.0-uclibc-patches-1.0.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-6.4.0-uclibc-patches-1.0.tar.bz2 https://dev.gentoo.org/~rhill/dist/gcc-6.4.0-uclibc-patches-1.0.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-6.4.0-uclibc-patches-1.0.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-6.4.0-uclibc-patches-1.0.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-6.4.0-uclibc-patches-1.0.tar.bz2 https://dev.gentoo.org/~slyfox/distfiles/gcc-6.4.0-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-6.4.0-patches-1.5.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-6.4.0-patches-1.5.tar.bz2 https://dev.gentoo.org/~rhill/dist/gcc-6.4.0-patches-1.5.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-6.4.0-patches-1.5.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-6.4.0-patches-1.5.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-6.4.0-patches-1.5.tar.bz2 https://dev.gentoo.org/~slyfox/distfiles/gcc-6.4.0-patches-1.5.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.5.jar ) +_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 fixheadtails 6b7b3d896b0b285c12a94f3105c2a06c flag-o-matic 5128c4729303400bd8d4b0b966530955 gnuconfig b8ec1c34be4ff9dac7ad4034d277936b libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e pax-utils e85f015e815dd463b0c206d781ef45a5 prefix e51c7882b7b721e54e684f7eb143cbfe preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain 46034afe4f841bee1cdbae6e58a05d19 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 +_md5_=bb964e9f80d96ff3ed10900c84a2f657 diff --git a/metadata/md5-cache/sys-devel/gcc-7.3.0-r4 b/metadata/md5-cache/sys-devel/gcc-7.3.0-r4 new file mode 100644 index 000000000000..8062599a3559 --- /dev/null +++ b/metadata/md5-cache/sys-devel/gcc-7.3.0-r4 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare pretend setup test unpack +DEPEND=elibc_glibc? ( >=sys-libs/glibc-2.13 ) >=sys-devel/binutils-2.20 >=sys-apps/sed-4 sys-devel/gnuconfig >=app-portage/elt-patches-20170422 sys-libs/zlib nls? ( virtual/libintl ) virtual/libiconv >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 nls? ( sys-devel/gettext ) regression-test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) +DESCRIPTION=The GNU Compiler Collection +EAPI=5 +HOMEPAGE=https://gcc.gnu.org/ +IUSE=regression-test vanilla altivec debug doc hardened multilib objc pgo objc-gc libssp objc++ fixed-point go graphite cilk +vtv jit mpx +pie +ssp +pch +nls +nptl +cxx +fortran +openmp +sanitize +LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ +PDEPEND=elibc_glibc? ( >=sys-libs/glibc-2.13 ) >=sys-devel/gcc-config-1.7 +RDEPEND=sys-libs/zlib nls? ( virtual/libintl ) virtual/libiconv >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) +RESTRICT=strip +SLOT=7.3.0 +SRC_URI=mirror://gnu/gcc/gcc-7.3.0/gcc-7.3.0.tar.xz mirror://gentoo/gcc-7.3.0-patches-1.5.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-7.3.0-patches-1.5.tar.bz2 https://dev.gentoo.org/~rhill/dist/gcc-7.3.0-patches-1.5.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-7.3.0-patches-1.5.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-7.3.0-patches-1.5.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-7.3.0-patches-1.5.tar.bz2 https://dev.gentoo.org/~slyfox/distfiles/gcc-7.3.0-patches-1.5.tar.bz2 +_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 fixheadtails 6b7b3d896b0b285c12a94f3105c2a06c flag-o-matic 5128c4729303400bd8d4b0b966530955 gnuconfig b8ec1c34be4ff9dac7ad4034d277936b libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e pax-utils e85f015e815dd463b0c206d781ef45a5 prefix e51c7882b7b721e54e684f7eb143cbfe preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain 46034afe4f841bee1cdbae6e58a05d19 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 +_md5_=fa95fab8873629c6ca3c3c6f04d04b31 diff --git a/metadata/md5-cache/sys-devel/llvm-6.0.1-r1 b/metadata/md5-cache/sys-devel/llvm-6.0.1-r1 new file mode 100644 index 000000000000..f09e99448e23 --- /dev/null +++ b/metadata/md5-cache/sys-devel/llvm-6.0.1-r1 @@ -0,0 +1,16 @@ +DEFINED_PHASES=compile configure install postinst prepare setup test +DEPEND=sys-libs/zlib:0= gold? ( >=sys-devel/binutils-2.22:*[cxx] ) libedit? ( dev-libs/libedit: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(-)?] ) libffi? ( >=virtual/libffi-3.0.13-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ncurses? ( >=sys-libs/ncurses-5.9-r3:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xar? ( app-arch/xar ) xml? ( dev-libs/libxml2: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-lang/perl || ( >=sys-devel/gcc-3.0 >=sys-devel/llvm-3.5 ( >=sys-freebsd/freebsd-lib-9.1-r10 sys-libs/libcxx ) ) kernel_Darwin? ( =sys-devel/binutils-apple-5.1 ) doc? ( dev-python/sphinx ) gold? ( sys-libs/binutils-libs ) libffi? ( virtual/pkgconfig ) !!=dev-lang/python-2.7.5-r2:2.7 ) dev-util/ninja >=dev-util/cmake-3.7.0-r1 +DESCRIPTION=Low Level Virtual Machine +EAPI=6 +HOMEPAGE=https://llvm.org/ +IUSE=debug doc gold libedit +libffi ncurses test xar xml kernel_Darwin llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_X86 llvm_targets_XCore abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos +LICENSE=UoI-NCSA rc BSD public-domain llvm_targets_ARM? ( LLVM-Grant ) +PDEPEND=sys-devel/llvm-common gold? ( >=sys-devel/llvmgold-6 ) +RDEPEND=sys-libs/zlib:0= gold? ( >=sys-devel/binutils-2.22:*[cxx] ) libedit? ( dev-libs/libedit: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(-)?] ) libffi? ( >=virtual/libffi-3.0.13-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ncurses? ( >=sys-libs/ncurses-5.9-r3:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xar? ( app-arch/xar ) xml? ( dev-libs/libxml2: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(-)?] ) !sys-devel/llvm:0 +REQUIRED_USE=|| ( llvm_targets_AArch64 llvm_targets_AMDGPU llvm_targets_ARM llvm_targets_BPF llvm_targets_Hexagon llvm_targets_Lanai llvm_targets_Mips llvm_targets_MSP430 llvm_targets_NVPTX llvm_targets_PowerPC llvm_targets_Sparc llvm_targets_SystemZ llvm_targets_X86 llvm_targets_XCore ) +RESTRICT=!test? ( test ) +SLOT=6 +SRC_URI=https://releases.llvm.org/6.0.1/llvm-6.0.1.src.tar.xz !doc? ( https://dev.gentoo.org/~mgorny/dist/llvm/llvm-6.0.1-manpages.tar.bz2 ) +_eclasses_=cmake-utils ec27c4d90ac99a1a0fb77d97bfc597ee desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f pax-utils e85f015e815dd463b0c206d781ef45a5 preserve-libs ef207dc62baddfddfd39a164d9797648 python-any-r1 4900ae970f827a22d33d41bd8b8f9ace python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 +_md5_=b554e89dd28d03b366798f882639efd1 diff --git a/metadata/md5-cache/sys-libs/Manifest.gz b/metadata/md5-cache/sys-libs/Manifest.gz index 6cd774587129..c8156f2707df 100644 Binary files a/metadata/md5-cache/sys-libs/Manifest.gz and b/metadata/md5-cache/sys-libs/Manifest.gz differ diff --git a/metadata/md5-cache/sys-libs/talloc-2.1.9 b/metadata/md5-cache/sys-libs/talloc-2.1.9 index 820f6ef34256..0e60213fbc0c 100644 --- a/metadata/md5-cache/sys-libs/talloc-2.1.9 +++ b/metadata/md5-cache/sys-libs/talloc-2.1.9 @@ -4,7 +4,7 @@ DESCRIPTION=Samba talloc library EAPI=6 HOMEPAGE=https://talloc.samba.org/ IUSE=compat +python python_targets_python2_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 -KEYWORDS=alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~sparc-solaris +KEYWORDS=alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~sparc-solaris LICENSE=GPL-3 LGPL-3+ LGPL-2 RDEPEND=python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[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_python3_7(-),python_single_target_python2_7(+)] ) !!=app-editors/emacs-vcs-26.1 ) SLOT=0 -_md5_=dd46fc362c8d13cc1e9071d208d6b617 +_md5_=117baa762a58c9310d2be874814b1c40 diff --git a/metadata/md5-cache/virtual/perl-Pod-Parser-1.630.0-r4 b/metadata/md5-cache/virtual/perl-Pod-Parser-1.630.0-r4 index 8cc273bb846b..55bb4c01e8a1 100644 --- a/metadata/md5-cache/virtual/perl-Pod-Parser-1.630.0-r4 +++ b/metadata/md5-cache/virtual/perl-Pod-Parser-1.630.0-r4 @@ -1,7 +1,7 @@ DEFINED_PHASES=- DESCRIPTION=Virtual for Pod-Parser EAPI=6 -KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris RDEPEND=|| ( =dev-lang/perl-5.28* =dev-lang/perl-5.26* =dev-lang/perl-5.24* ~perl-core/Pod-Parser-1.630.0 ) dev-lang/perl:= !perl-core/Pod-Parser-1.630.0-r999 SLOT=0 -_md5_=7d727d6957c0e698da9984cb96f8d5c9 +_md5_=fe9753bc7b8c4c99fa70cd05b06e87ee diff --git a/metadata/md5-cache/virtual/python-typing-0-r1 b/metadata/md5-cache/virtual/python-typing-0-r1 index 26d70f262a24..2c551290e09b 100644 --- a/metadata/md5-cache/virtual/python-typing-0-r1 +++ b/metadata/md5-cache/virtual/python-typing-0-r1 @@ -2,9 +2,9 @@ DEFINED_PHASES=- DESCRIPTION=A virtual for the Python typing module EAPI=6 IUSE=python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 -KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x64-solaris +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd ~x64-solaris RDEPEND=python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) 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 ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] python_targets_pypy? ( dev-python/typing[python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-),python_targets_python3_4(-)?,-python_single_target_python3_4(-)] ) python_targets_python2_7? ( dev-python/typing[python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-),python_targets_python3_4(-)?,-python_single_target_python3_4(-)] ) python_targets_python3_4? ( dev-python/typing[python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-),python_targets_python3_4(-)?,-python_single_target_python3_4(-)] ) REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 ) SLOT=0 _eclasses_=multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 -_md5_=16a0a2c3bae686dfaf7ba0be0beada46 +_md5_=ea500be8ab59a1d49d2906d12a02cb3d diff --git a/metadata/md5-cache/www-client/Manifest.gz b/metadata/md5-cache/www-client/Manifest.gz index 99e15b06620d..2affa02296e1 100644 Binary files a/metadata/md5-cache/www-client/Manifest.gz and b/metadata/md5-cache/www-client/Manifest.gz differ diff --git a/metadata/md5-cache/www-client/google-chrome-unstable-70.0.3514.0 b/metadata/md5-cache/www-client/google-chrome-unstable-70.0.3521.2 similarity index 97% rename from metadata/md5-cache/www-client/google-chrome-unstable-70.0.3514.0 rename to metadata/md5-cache/www-client/google-chrome-unstable-70.0.3521.2 index b1702394fc61..7fcf7dd8fc1d 100644 --- a/metadata/md5-cache/www-client/google-chrome-unstable-70.0.3514.0 +++ b/metadata/md5-cache/www-client/google-chrome-unstable-70.0.3521.2 @@ -9,6 +9,6 @@ LICENSE=google-chrome RDEPEND=app-accessibility/at-spi2-atk:2 app-arch/bzip2 app-misc/ca-certificates dev-libs/atk dev-libs/expat dev-libs/glib:2 dev-libs/nspr >=dev-libs/nss-3.26 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype:2 net-print/cups sys-apps/dbus sys-libs/libcap x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3[X] >=x11-libs/libX11-1.5.0 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libXtst x11-libs/libxcb x11-libs/pango x11-misc/xdg-utils RESTRICT=bindist mirror strip SLOT=0 -SRC_URI=https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_70.0.3514.0-1_amd64.deb +SRC_URI=https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_70.0.3521.2-1_amd64.deb _eclasses_=chromium-2 3d468f3fc7ed63c78db7408ea04246e3 desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils c6060f4ab634aca444c4b2176b0f3877 linux-info 915cae3d7d636732918d18827fb1c226 ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e pax-utils e85f015e815dd463b0c206d781ef45a5 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 unpacker 87633b2194cdb56adaa1f5a5c8862c44 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 89bb9f083a2590d9b447fd0b78a96186 _md5_=5c9876b3c63231eee981617a7dada453 diff --git a/metadata/md5-cache/www-plugins/Manifest.gz b/metadata/md5-cache/www-plugins/Manifest.gz index a8870115feed..8123b514fb1e 100644 Binary files a/metadata/md5-cache/www-plugins/Manifest.gz and b/metadata/md5-cache/www-plugins/Manifest.gz differ diff --git a/metadata/md5-cache/www-plugins/chrome-binary-plugins-70.0.3514.0_alpha b/metadata/md5-cache/www-plugins/chrome-binary-plugins-70.0.3521.2_alpha similarity index 91% rename from metadata/md5-cache/www-plugins/chrome-binary-plugins-70.0.3514.0_alpha rename to metadata/md5-cache/www-plugins/chrome-binary-plugins-70.0.3521.2_alpha index bb0599a0869e..ab31298d9867 100644 --- a/metadata/md5-cache/www-plugins/chrome-binary-plugins-70.0.3514.0_alpha +++ b/metadata/md5-cache/www-plugins/chrome-binary-plugins-70.0.3521.2_alpha @@ -8,6 +8,6 @@ LICENSE=google-chrome RDEPEND=widevine? ( dev-libs/glib:2 dev-libs/nspr dev-libs/nss !=net-nds/openldap-2.1.26 ) libev? ( >=dev-libs/libev-4.01 ) lua? ( >=dev-lang/lua-5.1:= ) memcached? ( dev-libs/libmemcached ) mysql? ( >=virtual/mysql-4.0 ) pcre? ( >=dev-libs/libpcre-3.1 ) php? ( dev-lang/php:*[cgi] ) rrdtool? ( net-analyzer/rrdtool ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.7:0=[kerberos?] ) libressl? ( dev-libs/libressl:= ) ) webdav? ( dev-libs/libxml2 >=dev-db/sqlite-3 sys-fs/e2fsprogs ) xattr? ( kernel_linux? ( sys-apps/attr ) ) zlib? ( >=sys-libs/zlib-1.1 ) selinux? ( sec-policy/selinux-apache ) REQUIRED_USE=kerberos? ( ssl !libressl ) SLOT=0 SRC_URI=https://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.45.tar.xz _eclasses_=autotools d0e5375d47f4c809f406eb892e531513 libtool 0081a71a261724730ec4c248494f044d multilib 97f470f374f2e94ccab04a2fb21d811e readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 user 8bc2845510e2109af75e3eeac607ec81 -_md5_=50bee2a811b43e947662d8b994b7ec20 +_md5_=568a2302f911c4447e0700789acf1a70 diff --git a/metadata/md5-cache/www-servers/lighttpd-1.4.49 b/metadata/md5-cache/www-servers/lighttpd-1.4.49 index 41d8e24434ba..0f3479b5934f 100644 --- a/metadata/md5-cache/www-servers/lighttpd-1.4.49 +++ b/metadata/md5-cache/www-servers/lighttpd-1.4.49 @@ -4,11 +4,11 @@ DESCRIPTION=Lightweight high-performance web server EAPI=6 HOMEPAGE=https://www.lighttpd.net https://github.com/lighttpd IUSE=bzip2 dbi doc fam gdbm geoip ipv6 kerberos ldap libev libressl lua minimal mmap memcached mysql pcre php postgres rrdtool sasl selinux ssl sqlite test webdav xattr zlib -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd LICENSE=BSD GPL-2 RDEPEND=bzip2? ( app-arch/bzip2 ) dbi? ( dev-db/libdbi ) fam? ( virtual/fam ) gdbm? ( sys-libs/gdbm ) geoip? ( dev-libs/geoip ) ldap? ( >=net-nds/openldap-2.1.26 ) libev? ( >=dev-libs/libev-4.01 ) lua? ( >=dev-lang/lua-5.1:= ) memcached? ( dev-libs/libmemcached ) mysql? ( >=virtual/mysql-4.0 ) pcre? ( >=dev-libs/libpcre-3.1 ) php? ( dev-lang/php:*[cgi] ) postgres? ( dev-db/postgresql:* ) rrdtool? ( net-analyzer/rrdtool ) sasl? ( dev-libs/cyrus-sasl ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.7:0=[kerberos?] ) libressl? ( dev-libs/libressl:= ) ) sqlite? ( dev-db/sqlite:3 ) webdav? ( dev-libs/libxml2 sys-fs/e2fsprogs ) xattr? ( kernel_linux? ( sys-apps/attr ) ) zlib? ( >=sys-libs/zlib-1.1 ) selinux? ( sec-policy/selinux-apache ) REQUIRED_USE=kerberos? ( ssl !libressl ) webdav? ( sqlite ) SLOT=0 SRC_URI=https://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.49.tar.xz _eclasses_=autotools d0e5375d47f4c809f406eb892e531513 desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 systemd 47c677ae1d7b69031f11f630ac09f0d1 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 user 8bc2845510e2109af75e3eeac607ec81 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=b3cfec1b163a2e14d79c47a9ba79c519 +_md5_=60b1f49766b987714fbe1971eb22a813 diff --git a/metadata/md5-cache/x11-apps/Manifest.gz b/metadata/md5-cache/x11-apps/Manifest.gz index 03294d6253af..c4757f4683c7 100644 Binary files a/metadata/md5-cache/x11-apps/Manifest.gz and b/metadata/md5-cache/x11-apps/Manifest.gz differ diff --git a/metadata/md5-cache/x11-apps/xinit-1.4.0 b/metadata/md5-cache/x11-apps/xinit-1.4.0 index daee033eda5d..f75adf67e02b 100644 --- a/metadata/md5-cache/x11-apps/xinit-1.4.0 +++ b/metadata/md5-cache/x11-apps/xinit-1.4.0 @@ -4,11 +4,11 @@ DESCRIPTION=X Window System initializer EAPI=5 HOMEPAGE=https://www.x.org/wiki/ https://cgit.freedesktop.org/ IUSE=+minimal -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux +KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux LICENSE=MIT GPL-2 PDEPEND=x11-apps/xrdb !minimal? ( x11-apps/xclock x11-apps/xsm x11-terms/xterm x11-wm/twm ) RDEPEND=!=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/libXext-1.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/libXi-1.7.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=0 SRC_URI=https://www.x.org/releases/individual/lib/libXtst-1.2.3.tar.bz2 _eclasses_=autotools d0e5375d47f4c809f406eb892e531513 autotools-multilib d4c92668ddddff2b1da2efb74daa43be autotools-utils 696393cddf6200db17a31641f597b403 desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xorg-2 3177e7a1a6d7ed77cd228f01de48336b -_md5_=59732deeaea3cd872333ec2468a8539e +_md5_=4afc9a1f80727289034679b99f603649 diff --git a/metadata/md5-cache/x11-libs/libdmx-1.1.3-r1 b/metadata/md5-cache/x11-libs/libdmx-1.1.3-r1 index eee9c4f852ec..8b1e74b15fb2 100644 --- a/metadata/md5-cache/x11-libs/libdmx-1.1.3-r1 +++ b/metadata/md5-cache/x11-libs/libdmx-1.1.3-r1 @@ -4,10 +4,10 @@ DESCRIPTION=X.Org dmx library EAPI=5 HOMEPAGE=https://www.x.org/wiki/ https://cgit.freedesktop.org/ IUSE=static-libs -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd +KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd LICENSE=MIT RDEPEND=x11-base/xorg-proto x11-libs/libX11 x11-libs/libXext SLOT=0 SRC_URI=https://www.x.org/releases/individual/lib/libdmx-1.1.3.tar.bz2 _eclasses_=autotools d0e5375d47f4c809f406eb892e531513 autotools-utils 696393cddf6200db17a31641f597b403 desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multilib 97f470f374f2e94ccab04a2fb21d811e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xorg-2 3177e7a1a6d7ed77cd228f01de48336b -_md5_=5403f5f98280e2f09d996259a8987bb6 +_md5_=25f182745dcfbde3f9ee9639d75d9097 diff --git a/metadata/md5-cache/x11-libs/libdrm-2.4.91 b/metadata/md5-cache/x11-libs/libdrm-2.4.91 index 856a3388f5bd..1d8b3cfec38e 100644 --- a/metadata/md5-cache/x11-libs/libdrm-2.4.91 +++ b/metadata/md5-cache/x11-libs/libdrm-2.4.91 @@ -4,11 +4,11 @@ DESCRIPTION=X.Org libdrm library EAPI=6 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 -KEYWORDS=alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux +KEYWORDS=alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux LICENSE=MIT RDEPEND=elibc_FreeBSD? ( >=dev-libs/libpthread-stubs-0.4:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) RESTRICT=test SLOT=0 SRC_URI=https://dri.freedesktop.org/libdrm/libdrm-2.4.91.tar.bz2 _eclasses_=meson b953e9f7b0c7db44d8b115086b11ba16 multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 12114a2a9aab35b93efc037a196b3234 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 -_md5_=0070b6e09794ad78b872232aa4dfd840 +_md5_=ff90a5195b345d51d39e8aa792468b1a diff --git a/metadata/md5-cache/x11-libs/libpciaccess-0.14 b/metadata/md5-cache/x11-libs/libpciaccess-0.14 index 484ebae0b9d9..2766776167c8 100644 --- a/metadata/md5-cache/x11-libs/libpciaccess-0.14 +++ b/metadata/md5-cache/x11-libs/libpciaccess-0.14 @@ -4,10 +4,10 @@ DESCRIPTION=Library providing generic access to the PCI bus and devices EAPI=5 HOMEPAGE=https://www.x.org/wiki/ https://cgit.freedesktop.org/ IUSE=zlib abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 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 ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=!=sys-libs/zlib-1.2.8-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sys-apps/hwids SLOT=0 SRC_URI=https://www.x.org/releases/individual/lib/libpciaccess-0.14.tar.bz2 _eclasses_=autotools d0e5375d47f4c809f406eb892e531513 autotools-multilib d4c92668ddddff2b1da2efb74daa43be autotools-utils 696393cddf6200db17a31641f597b403 desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xorg-2 3177e7a1a6d7ed77cd228f01de48336b -_md5_=76895e9fcefa3d3c4b45dcccc3558b71 +_md5_=e065f4d1201256d3ef5ecbdc9ca17a59 diff --git a/metadata/md5-cache/x11-libs/tslib-1.0-r3 b/metadata/md5-cache/x11-libs/tslib-1.0-r3 index 2fd423ae5026..c700965e5bf5 100644 --- a/metadata/md5-cache/x11-libs/tslib-1.0-r3 +++ b/metadata/md5-cache/x11-libs/tslib-1.0-r3 @@ -4,9 +4,9 @@ DESCRIPTION=Touchscreen Access Library EAPI=5 HOMEPAGE=https://github.com/kergoth/tslib IUSE=abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 +KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 LICENSE=LGPL-2 SLOT=0 SRC_URI=https://dev.gentoo.org/~mgorny/dist/tslib-1.0.tar.bz2 mirror://gentoo/tslib-1.0-patches-5.tar.bz2 _eclasses_=autotools d0e5375d47f4c809f406eb892e531513 desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=26e15a42ec5873a6930c59ed4211f668 +_md5_=57733e715cfb528ebf6e193e9cb187ea diff --git a/metadata/md5-cache/x11-libs/wxGTK-2.8.12.1-r2 b/metadata/md5-cache/x11-libs/wxGTK-2.8.12.1-r2 deleted file mode 100644 index 42a4f715c5e9..000000000000 --- a/metadata/md5-cache/x11-libs/wxGTK-2.8.12.1-r2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm prepare test -DEPEND=dev-libs/expat[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(-)?] odbc? ( dev-db/unixODBC[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(-)?] ) sdl? ( media-libs/libsdl[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? ( dev-libs/glib: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/libpng: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(-)?] sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/jpeg: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(-)?] x11-libs/gtk+: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/libSM[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/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(-)?] x11-libs/libXxf86vm[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[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(-)?] gnome? ( gnome-base/libgnomeprintui:2.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(-)?] ) gstreamer? ( gnome-base/gconf: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/gstreamer:0.10[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/gst-plugins-base:0.10[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(-)?] ) opengl? ( virtual/opengl[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(-)?] ) tiff? ( media-libs/tiff: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(-)?] ) ) aqua? ( x11-libs/gtk+:2[aqua=,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/jpeg: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(-)?] tiff? ( media-libs/tiff: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(-)?] ) ) 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(-)?] opengl? ( virtual/glu[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-base/xorg-proto ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=GTK+ version of wxWidgets, a cross-platform C++ GUI toolkit -EAPI=5 -HOMEPAGE=https://wxwidgets.org/ -IUSE=+X aqua doc debug gnome gstreamer odbc opengl pch sdl tiff 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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos -LICENSE=wxWinLL-3 GPL-2 odbc? ( LGPL-2 ) doc? ( wxWinFDL-3 ) -PDEPEND=>=app-eselect/eselect-wxwidgets-0.7 -RDEPEND=dev-libs/expat[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(-)?] odbc? ( dev-db/unixODBC[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(-)?] ) sdl? ( media-libs/libsdl[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? ( dev-libs/glib: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/libpng: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(-)?] sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/jpeg: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(-)?] x11-libs/gtk+: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/libSM[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/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(-)?] x11-libs/libXxf86vm[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[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(-)?] gnome? ( gnome-base/libgnomeprintui:2.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(-)?] ) gstreamer? ( gnome-base/gconf: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/gstreamer:0.10[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/gst-plugins-base:0.10[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(-)?] ) opengl? ( virtual/opengl[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(-)?] ) tiff? ( media-libs/tiff: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(-)?] ) ) aqua? ( x11-libs/gtk+:2[aqua=,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/jpeg: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(-)?] tiff? ( media-libs/tiff: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(-)?] ) ) -SLOT=2.8 -SRC_URI=mirror://sourceforge/wxpython/wxPython-src-2.8.12.1.tar.bz2 -_eclasses_=autotools d0e5375d47f4c809f406eb892e531513 desktop b1d22ac8bdd4679ab79c71aca235009d epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 5128c4729303400bd8d4b0b966530955 libtool 0081a71a261724730ec4c248494f044d ltprune 08f9e1d9ee0af8f5d9a7854efbcd8c0e multibuild 40fe59465edacd730c644ec2bc197809 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 1e35303c63cd707f6c3422b4493d5607 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=705f67ba4f706ba5a704db4c5f3c4229 diff --git a/metadata/md5-cache/x11-misc/Manifest.gz b/metadata/md5-cache/x11-misc/Manifest.gz index ad47d089aaf6..0e966511e5dd 100644 Binary files a/metadata/md5-cache/x11-misc/Manifest.gz and b/metadata/md5-cache/x11-misc/Manifest.gz differ diff --git a/metadata/md5-cache/x11-misc/xkeyboard-config-2.23.1-r1 b/metadata/md5-cache/x11-misc/xkeyboard-config-2.23.1-r1 index c9929a4125bd..8a10d780d322 100644 --- a/metadata/md5-cache/x11-misc/xkeyboard-config-2.23.1-r1 +++ b/metadata/md5-cache/x11-misc/xkeyboard-config-2.23.1-r1 @@ -3,10 +3,10 @@ DEPEND=sys-devel/gettext dev-util/intltool >=app-portage/elt-patches-20170422 !< DESCRIPTION=X keyboard configuration database EAPI=5 HOMEPAGE=https://www.freedesktop.org/wiki/Software/XKeyboardConfig -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 ~x86-solaris +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 ~x86-solaris LICENSE=MIT RDEPEND=! 4.0.0rc1 MY_PV="${PV/_beta/b}" @@ -41,6 +41,11 @@ PATCHES=( "${FILESDIR}"/nsd_munin_.patch ) +src_prepare() { + default + eautoreconf +} + src_configure() { local myeconfargs=( --enable-largefile diff --git a/net-libs/Manifest.gz b/net-libs/Manifest.gz index 7b3452260114..a3800e91ee45 100644 Binary files a/net-libs/Manifest.gz and b/net-libs/Manifest.gz differ diff --git a/net-libs/gnutls/gnutls-3.5.19.ebuild b/net-libs/gnutls/gnutls-3.5.19.ebuild index 97fe26905712..bdf798b7b77a 100644 --- a/net-libs/gnutls/gnutls-3.5.19.ebuild +++ b/net-libs/gnutls/gnutls-3.5.19.ebuild @@ -11,7 +11,7 @@ SRC_URI="mirror://gnupg/gnutls/v$(get_version_component_range 1-2)/${P}.tar.xz" LICENSE="GPL-3 LGPL-2.1" SLOT="0/30" # libgnutls.so number -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~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 ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~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 ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="+cxx dane doc examples guile +idn nls openpgp +openssl pkcs11 seccomp sslv2 sslv3 static-libs test test-full +tls-heartbeat tools valgrind zlib" REQUIRED_USE=" diff --git a/net-libs/webkit-gtk/Manifest b/net-libs/webkit-gtk/Manifest index 23ab85c6a440..c83bb09b3e1c 100644 --- a/net-libs/webkit-gtk/Manifest +++ b/net-libs/webkit-gtk/Manifest @@ -1,3 +1,2 @@ -DIST webkitgtk-2.18.6.tar.xz 14829316 BLAKE2B 4c0140c17d513f064efe09aaefff434e3cbf2a88691c7916ed393bf9bd25a3cb5a1d4ea8699eb7e0d678d807293b66c4629e46df9088df9b4d122c554b280ead SHA512 375907d4c84e27aaa4b5df9a71424488c1b2ba0cf1d63e107d678c0f55f677996a80e9d9a9d4a412b40d1d0dde77b88464c54246cbafe70751042ec8a7bbe029 DIST webkitgtk-2.20.4.tar.xz 16625400 BLAKE2B e2a07bbf38f059424738c69ecab7a1eee205cede2bbed4dedd0899e3d38c4b0b6b8f4fc52f5af6d65c0a0c8111c6c73d8765e55452a89022c476e90fb2ff8275 SHA512 3e6a370823d9a3521862fea0e7ae9f2455101afee247fda7b6d23ea609a0d1db3aeb86c41f903a89776550c190a2cf0baa903883671eca7222249849adc49090 DIST webkitgtk-2.20.5.tar.xz 16625200 BLAKE2B 1fd803d81df1659fd87a93821413326eb798fe9c21af86deeb92f16b3f8eab14350851db499e79745457b708305d013032769416877660db3d5bc7c6058b13cc SHA512 d92fd079ec2826b2880ae5b2d90795ee3071a331bd7a576230b77b9f67a829ab27f09a9b0241a780f612f4f78ea5cc849e4b3d09285d4903eb600a7a7729c1e7 diff --git a/net-libs/webkit-gtk/files/2.20.3-jsc-build-fixes.patch b/net-libs/webkit-gtk/files/2.20.3-jsc-build-fixes.patch deleted file mode 100644 index 32ff3a52844f..000000000000 --- a/net-libs/webkit-gtk/files/2.20.3-jsc-build-fixes.patch +++ /dev/null @@ -1,14 +0,0 @@ -https://bugs.gentoo.org/662002 -https://bugs.webkit.org/show_bug.cgi?id=183788 -https://trac.webkit.org/changeset/229282/webkit - -Index: /trunk/Source/JavaScriptCore/CMakeLists.txt -=================================================================== ---- a/Source/JavaScriptCore/CMakeLists.txt (revision 229281) -+++ b/Source/JavaScriptCore/CMakeLists.txt (revision 229282) -@@ -248,4 +248,5 @@ - ) - target_link_libraries(LLIntOffsetsExtractor WTF) -+add_dependencies(LLIntOffsetsExtractor JavaScriptCoreForwardingHeaders) - - # The build system will execute asm.rb every time LLIntOffsetsExtractor's mtime is newer than diff --git a/net-libs/webkit-gtk/files/webkit-gtk-2.8.5-fix-ia64-build.patch b/net-libs/webkit-gtk/files/webkit-gtk-2.8.5-fix-ia64-build.patch deleted file mode 100644 index 6c88c49d8b9e..000000000000 --- a/net-libs/webkit-gtk/files/webkit-gtk-2.8.5-fix-ia64-build.patch +++ /dev/null @@ -1,21 +0,0 @@ ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -98,6 +98,8 @@ - set(WTF_CPU_PPC64LE 1) - elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "parisc*") - set(WTF_CPU_HPPA 1) -+elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "ia64") -+ set(WTF_CPU_IA64 1) - elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "s390") - set(WTF_CPU_S390 1) - elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "s390x") ---- a/Source/JavaScriptCore/CMakeLists.txt -+++ b/Source/JavaScriptCore/CMakeLists.txt -@@ -1147,6 +1147,7 @@ - endif () - elseif (WTF_CPU_ARM64) - elseif (WTF_CPU_HPPA) -+elseif (WTF_CPU_IA64) - elseif (WTF_CPU_PPC) - elseif (WTF_CPU_PPC64) - elseif (WTF_CPU_PPC64LE) diff --git a/net-libs/webkit-gtk/webkit-gtk-2.18.6.ebuild b/net-libs/webkit-gtk/webkit-gtk-2.18.6.ebuild deleted file mode 100644 index 6695ba990022..000000000000 --- a/net-libs/webkit-gtk/webkit-gtk-2.18.6.ebuild +++ /dev/null @@ -1,284 +0,0 @@ -# Copyright 1999-2018 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="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="https://www.webkitgtk.org" -SRC_URI="https://www.webkitgtk.org/releases/${MY_P}.tar.xz" - -LICENSE="LGPL-2+ BSD" -SLOT="4/37" # soname version of libwebkit2gtk-4.0 -KEYWORDS="~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" - -# Aqua support in gtk3 is untested -# Dependencies found at Source/cmake/OptionsGTK.cmake -# Various compile-time optionals for gtk+-3.22.0 - ensure it -# Missing OpenWebRTC checks and conditionals, but ENABLE_MEDIA_STREAM/ENABLE_WEB_RTC is experimental upstream (PRIVATE OFF) -RDEPEND=" - >=x11-libs/cairo-1.10.2:= - >=media-libs/fontconfig-2.8.0:1.0 - >=media-libs/freetype-2.4.2:2 - >=dev-libs/libgcrypt-1.6.0:0= - >=x11-libs/gtk+-3.22:3[aqua?,introspection?,wayland?,X?] - >=media-libs/harfbuzz-1.3.3:=[icu(+)] - >=dev-libs/icu-3.8.1-r1:= - virtual/jpeg:0= - >=net-libs/libsoup-2.48:2.4[introspection?] - >=dev-libs/libxml2-2.8.0:2 - >=media-libs/libpng-1.4:0= - dev-db/sqlite:3= - sys-libs/zlib:0 - >=dev-libs/atk-2.8.0 - media-libs/libwebp:= - - >=dev-libs/glib-2.40:2 - >=dev-libs/libxslt-1.1.7 - gnome-keyring? ( app-crypt/libsecret ) - geolocation? ( >=app-misc/geoclue-2.1.5:2.0 ) - introspection? ( >=dev-libs/gobject-introspection-1.32.0:= ) - dev-libs/libtasn1:= - >=dev-libs/libgcrypt-1.7.0:0= - nsplugin? ( >=x11-libs/gtk+-2.24.10:2 ) - spell? ( >=app-text/enchant-0.22:= ) - 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.10:1.0[opengl?,egl?] ) - - X? ( - x11-libs/cairo[X] - x11-libs/libX11 - x11-libs/libXcomposite - x11-libs/libXdamage - x11-libs/libXrender - x11-libs/libXt ) - - libnotify? ( x11-libs/libnotify ) - dev-libs/hyphen - - egl? ( media-libs/mesa[egl] ) - gles2? ( media-libs/mesa[gles2] ) - opengl? ( virtual/opengl - x11-libs/cairo[opengl] ) - webgl? ( - x11-libs/cairo[opengl] - x11-libs/libXcomposite - x11-libs/libXdamage ) -" - -# paxctl needed for bug #407085 -# Need real bison, not yacc -DEPEND="${RDEPEND} - ${PYTHON_DEPS} - ${RUBY_DEPS} - >=app-accessibility/at-spi2-core-2.5.3 - >=dev-lang/perl-5.10 - >=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 - -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_prepare() { - # https://bugs.gentoo.org/show_bug.cgi?id=555504 - eapply "${FILESDIR}"/${PN}-2.8.5-fix-ia64-build.patch - cmake-utils_src_prepare - gnome2_src_prepare -} - -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 - - # Multiple rendering bugs on youtube, github, etc without this, bug #547224 - append-flags $(test-flags -fno-strict-aliasing) - - local ruby_interpreter="" - - if has_version "virtual/rubygems[ruby_targets_ruby24]"; then - ruby_interpreter="-DRUBY_EXECUTABLE=$(type -P ruby24)" - elif has_version "virtual/rubygems[ruby_targets_ruby23]"; then - ruby_interpreter="-DRUBY_EXECUTABLE=$(type -P ruby23)" - elif has_version "virtual/rubygems[ruby_targets_ruby22]"; then - ruby_interpreter="-DRUBY_EXECUTABLE=$(type -P ruby22)" - else - ruby_interpreter="-DRUBY_EXECUTABLE=$(type -P ruby21)" - fi - - # TODO: Check Web Audio support - # should somehow let user select between them? - # - # FTL_JIT requires llvm - # - # opengl needs to be explicetly handled, bug #576634 - - local opengl_enabled - if use opengl || use gles2; then - opengl_enabled=ON - else - opengl_enabled=OFF - fi - - # support for webgl (aka 2d-canvas accelerating) - local canvas_enabled - if use webgl && ! use gles2 ; then - canvas_enabled=ON - else - canvas_enabled=OFF - fi - - local mycmakeargs=( - -DENABLE_QUARTZ_TARGET=$(usex aqua) - -DENABLE_API_TESTS=$(usex test) - -DENABLE_GTKDOC=$(usex doc) - -DENABLE_GEOLOCATION=$(usex geolocation) - $(cmake-utils_use_find_package gles2 OpenGLES2) - -DENABLE_GLES2=$(usex gles2) - -DENABLE_VIDEO=$(usex gstreamer) - -DENABLE_WEB_AUDIO=$(usex gstreamer) - -DENABLE_INTROSPECTION=$(usex introspection) - -DENABLE_JIT=$(usex jit) - -DUSE_LIBNOTIFY=$(usex libnotify) - -DUSE_LIBSECRET=$(usex gnome-keyring) - -DENABLE_PLUGIN_PROCESS_GTK2=$(usex nsplugin) - -DENABLE_SPELLCHECK=$(usex spell) - -DENABLE_WAYLAND_TARGET=$(usex wayland) - -DENABLE_WEBGL=$(usex webgl) - $(cmake-utils_use_find_package egl EGL) - $(cmake-utils_use_find_package opengl OpenGL) - -DENABLE_X11_TARGET=$(usex X) - -DENABLE_OPENGL=${opengl_enabled} - -DENABLE_ACCELERATED_2D_CANVAS=${canvas_enabled} - -DCMAKE_BUILD_TYPE=Release - -DPORT=GTK - ${ruby_interpreter} - ) - - # Allow it to use GOLD when possible as it has all the magic to - # detect when to use it and using gold for this concrete package has - # multiple advantages and is also the upstream default, bug #585788 -# if tc-ld-is-gold ; then -# mycmakeargs+=( -DUSE_LD_GOLD=ON ) -# else -# mycmakeargs+=( -DUSE_LD_GOLD=OFF ) -# fi - - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_compile -} - -src_test() { - # Prevents test failures on PaX systems - use jit && pax-mark m $(list-paxables Programs/*[Tt]ests/*) # Programs/unittests/.libs/test* - - cmake-utils_src_test -} - -src_install() { - cmake-utils_src_install - - # Prevents crashes on PaX systems, bug #522808 - use jit && pax-mark m "${ED}usr/libexec/webkit2gtk-4.0/jsc" "${ED}usr/libexec/webkit2gtk-4.0/WebKitWebProcess" - pax-mark m "${ED}usr/libexec/webkit2gtk-4.0/WebKitPluginProcess" - use nsplugin && pax-mark m "${ED}usr/libexec/webkit2gtk-4.0/WebKitPluginProcess"2 -} diff --git a/net-libs/webkit-gtk/webkit-gtk-2.20.5.ebuild b/net-libs/webkit-gtk/webkit-gtk-2.20.5.ebuild index ebbb9fe817c3..67e35f0c639a 100644 --- a/net-libs/webkit-gtk/webkit-gtk-2.20.5.ebuild +++ b/net-libs/webkit-gtk/webkit-gtk-2.20.5.ebuild @@ -15,7 +15,7 @@ SRC_URI="https://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 ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-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" diff --git a/net-misc/Manifest.gz b/net-misc/Manifest.gz index 8f1e719a4121..ad886311bb93 100644 Binary files a/net-misc/Manifest.gz and b/net-misc/Manifest.gz differ diff --git a/net-misc/dhcpcd-ui/metadata.xml b/net-misc/dhcpcd-ui/metadata.xml index 1f8337a2bebb..a2e2ed249ee7 100644 --- a/net-misc/dhcpcd-ui/metadata.xml +++ b/net-misc/dhcpcd-ui/metadata.xml @@ -1,13 +1,7 @@ - - tokiclover@gmail.com - - - proxy-maint@gentoo.org - Proxy Maintainers - + Add support for x11-libs/gtk+ (The GIMP Toolkit) diff --git a/net-misc/spice-gtk/Manifest b/net-misc/spice-gtk/Manifest index cb5fee8a774a..3966ab8aa8cf 100644 --- a/net-misc/spice-gtk/Manifest +++ b/net-misc/spice-gtk/Manifest @@ -1 +1,2 @@ DIST spice-gtk-0.34.tar.bz2 1480566 BLAKE2B 35350cf930d091fa11df1d573f9eff23696745a20e88fcd20783c108b6ddca9064bc4e75d414f23bd94318e37d509e581866c5dcc955cd21ca7c9384b492f0ec SHA512 17ea737511855b47f5eaf5143756483542cf8ee83f8d276cbfb2c0407355f68ed329fcbed8a67737179f3e53587710634d6faa856590234ee68be7b4b13f2689 +DIST spice-gtk-0.35.tar.bz2 1437231 BLAKE2B f2731a794cf22b491bf858fff44506288af730b37f1c37e16ac3042d662373b4e4021808d5ca72440012fb36a5119ad11858cb8cf872b04376518487faebef49 SHA512 f0914a4a9baf892e39dab7d51aa9f5ab4dbb4ef01f09da158b20756f890745837d0a6c8c1f7897844e695be2ed01f3b1d04ada1cacc958b5cfadb0d4bf7c4729 diff --git a/net-misc/spice-gtk/spice-gtk-0.35.ebuild b/net-misc/spice-gtk/spice-gtk-0.35.ebuild new file mode 100644 index 000000000000..3bba2079f5f8 --- /dev/null +++ b/net-misc/spice-gtk/spice-gtk-0.35.ebuild @@ -0,0 +1,153 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +GCONF_DEBUG="no" +VALA_MIN_API_VERSION="0.14" +VALA_USE_DEPEND="vapigen" + +inherit autotools eutils xdg-utils vala readme.gentoo-r1 + +DESCRIPTION="Set of GObject and Gtk objects for connecting to Spice servers and a client GUI" +HOMEPAGE="https://www.spice-space.org https://cgit.freedesktop.org/spice/spice-gtk/" + +LICENSE="LGPL-2.1" +SLOT="0" +SRC_URI="https://www.spice-space.org/download/gtk/${P}.tar.bz2" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="dbus gstaudio gstvideo +gtk3 +introspection lz4 mjpeg policykit pulseaudio sasl smartcard static-libs usbredir vala webdav libressl" + +REQUIRED_USE="?? ( pulseaudio gstaudio )" + +# TODO: +# * check if sys-freebsd/freebsd-lib (from virtual/acl) provides acl/libacl.h +# * use external pnp.ids as soon as that means not pulling in gnome-desktop +RDEPEND=" + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + pulseaudio? ( media-sound/pulseaudio[glib] ) + gstvideo? ( + media-libs/gstreamer:1.0 + media-libs/gst-plugins-base:1.0 + media-libs/gst-plugins-good:1.0 + ) + gstaudio? ( + media-libs/gstreamer:1.0 + media-libs/gst-plugins-base:1.0 + media-libs/gst-plugins-good:1.0 + ) + >=x11-libs/pixman-0.17.7 + media-libs/opus + gtk3? ( x11-libs/gtk+:3[introspection?] ) + >=dev-libs/glib-2.36:2 + >=x11-libs/cairo-1.2 + virtual/jpeg:0= + sys-libs/zlib + introspection? ( dev-libs/gobject-introspection ) + lz4? ( app-arch/lz4 ) + sasl? ( dev-libs/cyrus-sasl ) + smartcard? ( app-emulation/qemu[smartcard] ) + usbredir? ( + sys-apps/hwids + >=sys-apps/usbredir-0.4.2 + virtual/libusb:1 + virtual/libgudev:= + policykit? ( + sys-apps/acl + >=sys-auth/polkit-0.110-r1 + !~sys-auth/polkit-0.111 ) + ) + webdav? ( + net-libs/phodav:2.0 + >=dev-libs/glib-2.43.90:2 + >=net-libs/libsoup-2.49.91 ) +" +DEPEND="${RDEPEND} + >=app-emulation/spice-protocol-0.12.13 + dev-perl/Text-CSV + >=dev-util/gtk-doc-am-1.14 + >=dev-util/intltool-0.40.0 + >=sys-devel/gettext-0.17 + virtual/pkgconfig + vala? ( $(vala_depend) ) +" + +PATCHES=( + "${FILESDIR}"/${P}-libressl.patch + "${FILESDIR}"/${P}-openssl11.patch +) + +src_prepare() { + # bug 558558 + export GIT_CEILING_DIRECTORIES="${WORKDIR}" + echo GIT_CEILING_DIRECTORIES=${GIT_CEILING_DIRECTORIES} + + default + + eautoreconf + + use vala && vala_src_prepare +} + +src_configure() { + # Prevent sandbox violations, bug #581836 + # https://bugzilla.gnome.org/show_bug.cgi?id=744134 + # https://bugzilla.gnome.org/show_bug.cgi?id=744135 + addpredict /dev + + # Clean up environment, bug #586642 + xdg_environment_reset + + local myconf + + if use vala ; then + # force vala regen for MinGW, etc + rm -fv gtk/controller/controller.{c,vala.stamp} gtk/controller/menu.c + fi + + myconf=" + $(use_enable static-libs static) + $(use_enable introspection) + $(use_with sasl) + $(use_enable smartcard) + $(use_enable usbredir) + $(use_with usbredir usb-ids-path /usr/share/misc/usb.ids) + $(use_with usbredir usb-acl-helper-dir /usr/libexec) + $(use_with gtk3 gtk 3.0) + $(use_enable policykit polkit) + $(use_enable pulseaudio pulse) + $(use_enable gstaudio) + $(use_enable gstvideo) + $(use_enable mjpeg builtin-mjpeg) + $(use_enable vala) + $(use_enable webdav) + $(use_enable dbus) + --disable-celt051 + --disable-gtk-doc + --disable-maintainer-mode + --disable-werror + --enable-pie" + + econf ${myconf} +} + +src_compile() { + # Prevent sandbox violations, bug #581836 + # https://bugzilla.gnome.org/show_bug.cgi?id=744134 + # https://bugzilla.gnome.org/show_bug.cgi?id=744135 + addpredict /dev + + default +} + +src_install() { + default + + dodoc AUTHORS ChangeLog NEWS README THANKS TODO + + # Remove .la files if they're not needed + use static-libs || prune_libtool_files + + make_desktop_entry spicy Spicy "utilities-terminal" "Network;RemoteAccess;" + readme.gentoo_create_doc +} diff --git a/net-misc/tipcutils/metadata.xml b/net-misc/tipcutils/metadata.xml index 28efbae751da..6d830367c0cd 100644 --- a/net-misc/tipcutils/metadata.xml +++ b/net-misc/tipcutils/metadata.xml @@ -1,13 +1,7 @@ - - tokiclover@gmail.com - - - proxy-maint@gentoo.org - Proxy Maintainers - + tipc diff --git a/net-wireless/Manifest.gz b/net-wireless/Manifest.gz index 99c184c400d2..ee10833f47b7 100644 Binary files a/net-wireless/Manifest.gz and b/net-wireless/Manifest.gz differ diff --git a/net-wireless/aircrack-ng/aircrack-ng-1.3-r2.ebuild b/net-wireless/aircrack-ng/aircrack-ng-1.3-r2.ebuild index 2b7f6a3f6b8c..e5103942e69c 100644 --- a/net-wireless/aircrack-ng/aircrack-ng-1.3-r2.ebuild +++ b/net-wireless/aircrack-ng/aircrack-ng-1.3-r2.ebuild @@ -14,11 +14,11 @@ HOMEPAGE="http://www.aircrack-ng.org" if [[ ${PV} == "9999" ]] ; then inherit git-r3 EGIT_REPO_URI="https://github.com/aircrack-ng/aircrack-ng.git" - KEYWORDS="x86" + KEYWORDS="amd64 x86" else MY_PV=${PV/_/-} SRC_URI="https://download.aircrack-ng.org/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~ppc x86 ~x86-fbsd ~amd64-linux ~x86-linux" + KEYWORDS="amd64 ~arm ~ppc x86 ~x86-fbsd ~amd64-linux ~x86-linux" fi LICENSE="GPL-2" diff --git a/net-wireless/bladerf-firmware/Manifest b/net-wireless/bladerf-firmware/Manifest index d4e57c2f23ed..399836468af5 100644 --- a/net-wireless/bladerf-firmware/Manifest +++ b/net-wireless/bladerf-firmware/Manifest @@ -2,3 +2,4 @@ DIST bladeRF_fw_v1.7.1.img 122408 BLAKE2B 41477eac09fd8f69f716ac4c182c023a4e2143 DIST bladeRF_fw_v1.8.0.img 122576 BLAKE2B 08850c706ea0a069c58cc1aee12b03716143c51cd77d4da3b67b49468eaac0400b4d924f27d2b5294dd34d6ef146daec99a8848f66962ae803e40e5f15dbb572 SHA512 5cc8e69e550e60af0c9fbead9655c6af19a29afa18c352b0d010727e28b7c8fa015c6294054d19a65caa4a8ed2fb5096fa90f460561e4a7abaabb2b0bb15e366 DIST bladeRF_fw_v1.9.0.img 118704 BLAKE2B 8ead6156e5e3ede9ad9fbe754faaa7eff6ac59918d3f5818b8a15c5cd77d0661273e7bf3cbd2f1d7306acb42ef6032b5201ba41cd2e5c3fd84da742e0ba7f4d2 SHA512 a1cebd8abdcebfc84eb581808900926033ae7f621e4abfe217c6aae6169bf60dd78f32b1d883eab8b82b5d1f10afbf949821c19421bd6d4ffe2707a5acd58553 DIST bladeRF_fw_v2.0.0.img 121128 BLAKE2B 9783fba9c24fd87702d83c27962ff5e358d248167cd1ebad22e492b64555c0c57964a08258de47e404b29a1627196ac27a80df81fe37deb55c309c5359dff53d SHA512 716aaaad1d0c14186bd1dcf258b46a102ee720ce7c8dc8bd0998cd72e42c9df7a4372fc27ec0c3860cca50cb62894008326c65937f461a37a908d56f5989eaab +DIST bladeRF_fw_v2.2.0.img 122760 BLAKE2B ec7ea8e7abec7feba9efbbc4b1e681fdeae51622013e72e2244368b5b9522861f7f76fcc9f8a7d523281d4be06726e63bf286670530641d55da540424cf11963 SHA512 64c75b8ad8a2be6a311892e7e28b16966f6c962b483547e2b959e28b050e0d6b1ac4fa078c53711555bf41e1c5a56945c58807870941b499501b6274410b05f7 diff --git a/net-wireless/bladerf-firmware/bladerf-firmware-2.2.0.ebuild b/net-wireless/bladerf-firmware/bladerf-firmware-2.2.0.ebuild new file mode 100644 index 000000000000..b10085ff842e --- /dev/null +++ b/net-wireless/bladerf-firmware/bladerf-firmware-2.2.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="bladeRF FX3 firmware images" +HOMEPAGE="http://nuand.com/fx3.php" + +#firmware is open source, but uses a proprietary toolchain to build +#automated builds from git are available, but likely unneeded +#http://hoopycat.com/bladerf_builds/ +SRC_URI="http://nuand.com/fx3/bladeRF_fw_v${PV}.img" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +S="${DISTDIR}" + +src_unpack() { + true +} + +src_install() { + insinto /usr/share/Nuand/bladeRF/ + doins bladeRF_fw_v${PV}.img +} + +pkg_postinst() { + elog "Please remember you have to actually flash this onto" + elog "your bladerf with the following command:" + elog "bladeRF-cli -f /usr/share/Nuand/bladeRF/bladeRF_fw_v${PV}.img" +} diff --git a/net-wireless/bladerf-fpga/Manifest b/net-wireless/bladerf-fpga/Manifest index 7b333d0f76c4..fa10850b70e7 100644 --- a/net-wireless/bladerf-fpga/Manifest +++ b/net-wireless/bladerf-fpga/Manifest @@ -3,10 +3,14 @@ DIST hostedx115-0.1.2.rbf 3571462 BLAKE2B c3e7caf5994606ca3bf36140171a923f6af5af DIST hostedx115-0.3.4.rbf 3571462 BLAKE2B 39e98a1cb275eb86596f326549563482f1196e5d79dfc4d7350ff1c7e320d1cdf6c17ac8ccaed685e52a211a6d778cc3c3836f2bad476b7f7cd2abb1ee625859 SHA512 8ab1373c7ac2de64962f619e0809e0bff7d0df82666ed9601cf51dae0de1914240e929c6ab3a8b34928b7f89c2906782522238cd6a8809f8201af4d1275d8e25 DIST hostedx115-0.5.0.rbf 3571462 BLAKE2B 9d8c60d75bb03eddcbcae828bc6535c09015203b0f975b608cda7ce7bc3f1f1b397fd326afe05946df60f088a387167954488d07e82d878606195e9a5d38cff2 SHA512 9ae85345551c11bcb3242d243d5da046bcc385861dba8e10cb2986017344eaa43609280aef75f18da6a6ce6ec5b685e701b918923daf1c9999b1f4b5a2bec80c DIST hostedx115-0.6.0.rbf 3571462 BLAKE2B 922b12fe65f5fb0dcd886eb9c7f082ef9ce01ac4501be47f33e9f0bb7199ce03dc6f574c7c97331f52b2a424142ca037b28a2236b6402b0c359e2eb50347d1ff SHA512 771625cfeda4f184660834a99309e351ddd6e05d53e2cc2252773fd9decf689479da07ad2ca2f1bb8f8fd14be79cf0d661021a40af7f70aaf92e1948a5b80b8c +DIST hostedx115-0.7.3.rbf 3571462 BLAKE2B 828c28623b42c8f16ee5ec8d6b3f8132b7d93662d5e8b6aad45cb3bfbd14f9788b1a0f236377ce6fb204163d4b1ea1d775d7ddcb566610bef04a8143d9525ce0 SHA512 43a46b5081d52ed0770dafa19e7e71925b9d79ead13da782ee42637db41c42140597c703b0b6da1b56866c92947f811c76c08407eff3b043eeaf66e5560ffa6f DIST hostedx115.rbf 3571462 BLAKE2B 5c097653b57e9c7e08dc5b54cdb6890bd0eeb376bb5b0cbd25ebadbc24eb1398127d81efe31367cded97f88e5267a015f4f1e16ae5fe026db3123bd5f1e5f1d1 SHA512 4df268602e662cd54a6da2b94d52cc355afdda8578c8342ea1be6a168ff874c095f92230f3cdfe5aada3d1c3237d8572e427c377c57f4a6d555f0ca49f85d6e4 DIST hostedx40-0.1.1.rbf 1191788 BLAKE2B d0c8c4f8622815cc3bfd73cc81b99e5163389b0594941b20b98c64c5ed751d6c611fc853e5ce1af7c1ccad91c271bc221040dedbc43c24e4c6ebb7f7cab99719 SHA512 426aa48c588e02fe3a13c7310ab7f2a78f0c5aaba1925164c78f484cf99cfcfba103b8a738329a198c3b905fd23cb48fbe29fa4e08ded6d2fe5d70f90b850af1 DIST hostedx40-0.1.2.rbf 1191788 BLAKE2B 51a67c8b757d9fb16ce2300211dc7d843e304b6ca8e0c5fe908fb043c96514f439733bcf6dda6d49425047ac825e0426575d62daa0a1fdca10e1c974311db22e SHA512 9f06b5560d91ed65df14e48c729da04ae4c8720aae863d215f24db7efc4a353751840605aeb6b2ae9e4a71ffb9820d7f310bdca6dddad27768514e2edd7fc933 DIST hostedx40-0.3.4.rbf 1191788 BLAKE2B 8fea897acaa6623fca3289d40e83768d10e22b6b0d9761545aa2af8aa38a4803d70733805a26aed7b3e5f557d57d758ab9e704b96e86ed9324ea54749815773d SHA512 0529bda4bf39ee83aa9d48dabc30af7333018e3a369e9968d030995a915e6f4ae67c17df22e55e0c4144eced0fbbac786d82dccb70d0393e8eee095e49792ade DIST hostedx40-0.5.0.rbf 1191788 BLAKE2B 1d57a8906ae6072f597cfbb44b97cbddf28287b37311e6eff334ec560dc0096cc25e2001fe06fcc868248dca4851d660ad0a354086629da75401afa1088d805c SHA512 140d83197aa847124a32ede492a1f15365fb0300fad1d4d67f13d4fa0f787cae59c293be0f7e355e61ef345f9e8c1d6eeb500cfa04e67d02790bc4ec5122b5eb DIST hostedx40-0.6.0.rbf 1191788 BLAKE2B 8e2567430baf56f6d09729b9924630d9b5c6e8f0b68816635b2043dafa5c029933aafbbfdabf0980682732468d253f07be969a09d916d9fd8c28b07a614ffb79 SHA512 25ccccae9d14f2044f978b0d0a58f121a3bc52bc5c5a9d20ef383efaa5b38d41b7adbb320d82c15f473863cf8d9de37671ae5a5b263eb513c515ea8b84be1547 +DIST hostedx40-0.7.3.rbf 1191788 BLAKE2B 489372b297a9e7385809b36efa80df7d489cc803e5ae5b8c1a6bdc80434fd462ec5e12ab5996a4412fe3306038766330200776b0e11c816d0004cc7602721aec SHA512 b4619b8918d178a42e0bd4885ef1671a96e8aeb224291ee21a792e0be73a6e4ea2b8951003aa093581971aa220f7d101c4a1cddec90845ca31f11b17c5f67fdd DIST hostedx40.rbf 1191788 BLAKE2B 86b48c9b5bd8e3f3f9af689a49c45608ced241d64d728cbe365b9ff0c6f3b00f3018c45a7fb5662580297952d32d67d473ae42cccb10196d5b3ce75cf949f381 SHA512 e56686a8dd4372cf11d3f373ef4262c3897f9adbd8952d82b3d737d38e77d8ddde9c427ddb6ba20364ff3748d57f29974044bd32c0f4177690ff37a600b210e9 +DIST hostedxA4-0.7.3.rbf 2632660 BLAKE2B a98ea6ffc1ffdbf9b8ded3144d4f9fb19dac6b196239dccdd9ce908b185eac4898a65ac897f460b1a0dee437131bdeccecf2b36714099d4f86962f04108c856e SHA512 655df2f698ae376577925349fc4773cf3819360f7bff0932761160aa823625d408be48a809df7edd2e3a4054b418f5dd6a0769f2aa982551ea3b847eaea5fc87 +DIST hostedxA9-0.7.3.rbf 12858972 BLAKE2B 71bbdea5ef372b9a6a6512757391c2b143ff69efbcfec58178873eff14c7995750a43939ea93b69529ccca62987ec4437621b6f78289a94acbc2f14c02069e64 SHA512 e33970360e3104891d3c738ab46662b80a29160d87b913c3a4655aa03bd6ff8236274d1f2ad591e4dcee40c85ff579abcd69e637aa5cf86e1a08c143f89ba685 diff --git a/net-wireless/bladerf-fpga/bladerf-fpga-0.7.3.ebuild b/net-wireless/bladerf-fpga/bladerf-fpga-0.7.3.ebuild new file mode 100644 index 000000000000..739ce1773ca2 --- /dev/null +++ b/net-wireless/bladerf-fpga/bladerf-fpga-0.7.3.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="bladeRF FPGA bitstreams" +HOMEPAGE="http://nuand.com/fpga.php" + +#fpga code is open source, but uses a proprietary toolchain to build +#automated builds from git are available, but likely unneeded +#http://hoopycat.com/bladerf_builds/ +SRC_URI="xA4? ( http://nuand.com/fpga/v${PV}/hostedxA4.rbf -> hostedxA4-${PV}.rbf ) + xA9? ( http://nuand.com/fpga/v${PV}/hostedxA9.rbf -> hostedxA9-${PV}.rbf ) + x40? ( http://nuand.com/fpga/v${PV}/hostedx40.rbf -> hostedx40-${PV}.rbf ) + x115? ( http://nuand.com/fpga/v${PV}/hostedx115.rbf -> hostedx115-${PV}.rbf )" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="+xA4 +xA9 +x40 +x115" + +DEPEND="" +RDEPEND="${DEPEND}" + +S="${DISTDIR}" + +src_unpack() { + true +} + +src_install() { + insinto /usr/share/Nuand/bladeRF/ + use xA4 && newins hostedxA4-${PV}.rbf hostedxA4.rbf + use xA9 && newins hostedxA9-${PV}.rbf hostedxA9.rbf + use x40 && newins hostedx40-${PV}.rbf hostedx40.rbf + use x115 && newins hostedx115-${PV}.rbf hostedx115.rbf +} diff --git a/net-wireless/bladerf-fpga/metadata.xml b/net-wireless/bladerf-fpga/metadata.xml index 6513afabbb3d..3db0ffc8038d 100644 --- a/net-wireless/bladerf-fpga/metadata.xml +++ b/net-wireless/bladerf-fpga/metadata.xml @@ -10,7 +10,9 @@ Radio -bitstream for the x40KLE Cyclone IV FPGA bladerf model" -bitstream for the x115KLE Cyclone IV FPGA bladerf model" +bitstream for the xA4 49 kLE Cyclone V FPGA bladerf 2.0 micro model" +bitstream for the xA9 301 kLE Cyclone V FPGA bladerf 2.0 micro model" +bitstream for the x40 kLE Cyclone IV FPGA bladerf model" +bitstream for the x115 kLE Cyclone IV FPGA bladerf model" diff --git a/net-wireless/bladerf/Manifest b/net-wireless/bladerf/Manifest index 15471dcf1a44..66edb73bfcef 100644 --- a/net-wireless/bladerf/Manifest +++ b/net-wireless/bladerf/Manifest @@ -1,2 +1,2 @@ -DIST bladerf-2016.06.tar.gz 1654784 BLAKE2B 540f9fbb21c1439e80bda37a9e265dfaf987a9c6cedb29ac8556bbdff4ead899d99d00cc9b5a02f03055945955a5d43f4d94b822085dffecc7e2f63ee0724764 SHA512 0834e9f5fa2e41bf15629d9699f11ef29d5365a0ed2c17b83c6a77ed43d72fa62e6d35060d8d478dcbc1e7080cac825d82644b8fcdc03eae0dccef3cb1a7325d DIST bladerf-2017.12_rc1.tar.gz 1723370 BLAKE2B f6d19765674602354b42bb62acdfd874b04df55bd45ec74077aa310e5f6bd81d298148c3b1f2e1396d8659644f374cadf2e91df4b644a29d70c8369aaa6f4694 SHA512 19a3f24f9b6000af9e9d80cc31cbbf46b11deabb4e12eafb68c01f240cdf43884c5f8640ecbfa32fab8cc6a9c8e3b6cbc8596dfe564869c1a85163f00c62d96f +DIST bladerf-2018.08_rc1.tar.gz 2166449 BLAKE2B 5406553755fb4d64a4b731e5272a03f8debb43e480e5c00375957f3ad85b02ca896cdd9a8772b7bbaba1dd9ead9dfa16e7d6b0fe07f1ac2f3f8a0de8406e15db SHA512 3a3bbf51e472792feff4ffde490810fd6af7d4d476102d6fe42e35f2926ac900887dc96ce6acbc6f1406423b80dd6c53266c66e76b9a766dbc43b794144a72c2 diff --git a/net-wireless/bladerf/bladerf-2016.06.ebuild b/net-wireless/bladerf/bladerf-2018.08_rc1.ebuild similarity index 83% rename from net-wireless/bladerf/bladerf-2016.06.ebuild rename to net-wireless/bladerf/bladerf-2018.08_rc1.ebuild index 856e4493762d..f8fd38c19cd7 100644 --- a/net-wireless/bladerf/bladerf-2016.06.ebuild +++ b/net-wireless/bladerf/bladerf-2018.08_rc1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 inherit cmake-utils udev @@ -37,14 +37,14 @@ CDEPEND=">=dev-libs/libusb-1.0.16 DEPEND="${CDEPEND} virtual/pkgconfig" RDEPEND="${CDEPEND}" -PDEPEND=">=net-wireless/bladerf-firmware-2.0.0 - >=net-wireless/bladerf-fpga-0.6.0" +PDEPEND=">=net-wireless/bladerf-firmware-2.2.0 + >=net-wireless/bladerf-fpga-0.7.3" src_configure() { mycmakeargs=( -DVERSION_INFO_OVERRIDE:STRING="${PV}" - $(cmake-utils_use_enable doc BUILD_DOCUMENTATION) - $(cmake-utils_use_enable tecla LIBTECLA) + -DBUILD_DOCUMENTATION="$(usex doc)" + -DENABLE_LIBTECLA="$(usex tecla)" -DTREAT_WARNINGS_AS_ERRORS=OFF -DUDEV_RULES_PATH="$(get_udevdir)"/rules.d ) diff --git a/net-wireless/bladerf/bladerf-9999.ebuild b/net-wireless/bladerf/bladerf-9999.ebuild index 856e4493762d..f8fd38c19cd7 100644 --- a/net-wireless/bladerf/bladerf-9999.ebuild +++ b/net-wireless/bladerf/bladerf-9999.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 inherit cmake-utils udev @@ -37,14 +37,14 @@ CDEPEND=">=dev-libs/libusb-1.0.16 DEPEND="${CDEPEND} virtual/pkgconfig" RDEPEND="${CDEPEND}" -PDEPEND=">=net-wireless/bladerf-firmware-2.0.0 - >=net-wireless/bladerf-fpga-0.6.0" +PDEPEND=">=net-wireless/bladerf-firmware-2.2.0 + >=net-wireless/bladerf-fpga-0.7.3" src_configure() { mycmakeargs=( -DVERSION_INFO_OVERRIDE:STRING="${PV}" - $(cmake-utils_use_enable doc BUILD_DOCUMENTATION) - $(cmake-utils_use_enable tecla LIBTECLA) + -DBUILD_DOCUMENTATION="$(usex doc)" + -DENABLE_LIBTECLA="$(usex tecla)" -DTREAT_WARNINGS_AS_ERRORS=OFF -DUDEV_RULES_PATH="$(get_udevdir)"/rules.d ) diff --git a/net-wireless/dump1090/Manifest b/net-wireless/dump1090/Manifest index 2070308ba1b8..806756ce7a23 100644 --- a/net-wireless/dump1090/Manifest +++ b/net-wireless/dump1090/Manifest @@ -1 +1,2 @@ DIST dump1090-0.0_p20140919.tar.xz 445108 BLAKE2B 96da9faae0139710b92adfeb921f7b84ea3342c3916d69baebfb2709076c9f3d8e3be3457d8f2c074d3b58255ad745cda9f35a71f6707b8184a83c0c8a54e141 SHA512 4b7f915d5dd9c728da36298ecfe6c0e1da17bb9082e5f1c41376e6425dce429c099b0fd2d8436a966f5d3189788b818602f26fb0aea62e5dbe753e489bf0a760 +DIST dump1090-0.0_p20180509.tar.gz 1032244 BLAKE2B 2d91c8bdbe2fca787e9653ac08eb40a4faab181ab10f7247a9dedf6390f35520642caee548dbadb58c5347c0f0284a66e000da747bc39b3dab1e4cbce0fbbc3d SHA512 08d7f1d031a5d3a26ea73bce543209bd84054b1acd94ba72a0dca206cc7f11c1778fb5d6286bfe434812f6647ccaab73b56bc6539ae594e2aa3364851428cad3 diff --git a/net-wireless/dump1090/dump1090-0.0_p20180509.ebuild b/net-wireless/dump1090/dump1090-0.0_p20180509.ebuild new file mode 100644 index 000000000000..73b4a4c99b08 --- /dev/null +++ b/net-wireless/dump1090/dump1090-0.0_p20180509.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit toolchain-funcs eutils + +DESCRIPTION="simple Mode S decoder for RTLSDR devices" +#Original repo +#HOMEPAGE="https://github.com/antirez/dump1090" +#Repo that has actually been touched recenly +HOMEPAGE="https://github.com/mutability/dump1090" + +if [[ ${PV} == "9999" ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/mutability/${PN}.git" + KEYWORDS="" +else + KEYWORDS="~amd64 ~x86" + COMMIT="fb5942dba6505a21cbafc7905a5a7c513b214dc9" + SRC_URI="https://github.com/mutability/dump1090/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}/${PN}-${COMMIT}" +fi + +LICENSE="BSD" +SLOT="0" +IUSE="" + +RDEPEND="net-wireless/rtl-sdr + virtual/libusb:1" +DEPEND="${RDEPEND}" + +src_compile() { + emake CC="$(tc-getCC)" \ + UNAME="Linux" + CFLAGS="$($(tc-getPKG_CONFIG) --cflags librtlsdr) ${CFLAGS}" \ + EXTRACFLAGS="-DHTMLPATH='/usr/share/dump1090/html'" \ + LIBS="${LDFLAGS} $($(tc-getPKG_CONFIG) --libs librtlsdr) -lm -lpthread" +} + +src_install() { + dobin ${PN} + dobin view1090 + dodoc README.md + + insinto /usr/share/${PN}/html + doins -r public_html/* + + insinto /usr/share/${PN}/tools + doins -r tools/* + + #insinto /etc/lighttpd/conf-available + #doins -r debian/lighttpd/* + #insinto /etc/nginx/sites-available + #doins -r debian/nginx/* +} diff --git a/net-wireless/gqrx/Manifest b/net-wireless/gqrx/Manifest index b08c426b5454..89e367f5b788 100644 --- a/net-wireless/gqrx/Manifest +++ b/net-wireless/gqrx/Manifest @@ -1 +1 @@ -DIST gqrx-2.10.tar.gz 1327015 BLAKE2B ee3e83825e5e7d165d991b6715435f924c6c2c8a9c045ebc3f0c9c2dec3f186b68ff0057e22a55fcc9222eeac173956778587df20fbdeb777aec41c3fbcae2d8 SHA512 662894326b5fd9527fb918cfb890e2cdbf248660201452d6c2adf105341650cd2a3dbd03561d055e182626a078fcd788aa401efaaa73f45d16f34f5f1ade97a9 +DIST gqrx-2.11.5.tar.gz 1329054 BLAKE2B 205bf1d984f18d43c914bb24e59f7ed42e9faf8060b44c2f78f6d1bb7a222d87395c347626802438c45a30225acac18ca3114d412faf3f8385840276c0c08ac8 SHA512 d2928559d377b85ea683839b0e7dd1213038ee350718f9dad5064afacab20b08d1c1edc189ae8c5ae992ad019636c930555f9a441aee88964231d174db25ae6f diff --git a/net-wireless/gqrx/gqrx-2.10.ebuild b/net-wireless/gqrx/gqrx-2.11.5.ebuild similarity index 98% rename from net-wireless/gqrx/gqrx-2.10.ebuild rename to net-wireless/gqrx/gqrx-2.11.5.ebuild index f696cb12c53e..b9b3d7bb2cf0 100644 --- a/net-wireless/gqrx/gqrx-2.10.ebuild +++ b/net-wireless/gqrx/gqrx-2.11.5.ebuild @@ -53,6 +53,7 @@ src_prepare() { if use !pulseaudio; then sed -i 's/AUDIO_BACKEND = pulse/#AUDIO_BACKEND = pulse/' gqrx.pro || die fi + cmake-utils_src_prepare eapply_user } diff --git a/net-wireless/gqrx/gqrx-9999.ebuild b/net-wireless/gqrx/gqrx-9999.ebuild index d280c8f3e3c5..b9b3d7bb2cf0 100644 --- a/net-wireless/gqrx/gqrx-9999.ebuild +++ b/net-wireless/gqrx/gqrx-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -53,6 +53,7 @@ src_prepare() { if use !pulseaudio; then sed -i 's/AUDIO_BACKEND = pulse/#AUDIO_BACKEND = pulse/' gqrx.pro || die fi + cmake-utils_src_prepare eapply_user } diff --git a/net-wireless/gr-osmosdr/Manifest b/net-wireless/gr-osmosdr/Manifest index ac7f8ecc5e22..97074e544a30 100644 --- a/net-wireless/gr-osmosdr/Manifest +++ b/net-wireless/gr-osmosdr/Manifest @@ -1 +1,2 @@ DIST gr-osmosdr-0.1.4_p20170612.tar.xz 174416 BLAKE2B d0ef0d4348b561da10f3e8b99fb43f93fbee5c19a1a4fdcc465f2a63425a42ad0f8d64f522e4aafd5182e66c3c96b42f603e9b595e61b0be15b45eae5330fe5e SHA512 9cf3d0453696c7cfe0679136335a71ec5fd18c4b09cbe3e75fca90626065bf6640969bf224219fe796739abbc3b627eb8bf3509b52f764c38b57f169005ea933 +DIST gr-osmosdr-0.1.4_p20180626.tar.xz 179568 BLAKE2B 223d23bd17edd5f4ee78237e509c79e5e7e49bbfb516009c3b5a715f386fcd138beea48e417d4576a7749cdb440736b6d92c8766b614bf617ef6b2bb4a293fda SHA512 8540da1f4d6936e0a97fa2f3e24af1866d44620fd7e7bc65b323364f67f1527fe8e0efd7bf0349be5e3d61f2ed24fa736c924ea0038e44fa3ab72848fe254a28 diff --git a/net-wireless/gr-osmosdr/gr-osmosdr-0.1.4_p20170612.ebuild b/net-wireless/gr-osmosdr/gr-osmosdr-0.1.4_p20170612-r1.ebuild similarity index 97% rename from net-wireless/gr-osmosdr/gr-osmosdr-0.1.4_p20170612.ebuild rename to net-wireless/gr-osmosdr/gr-osmosdr-0.1.4_p20170612-r1.ebuild index 579c974f8abe..6e8fa0434f9e 100644 --- a/net-wireless/gr-osmosdr/gr-osmosdr-0.1.4_p20170612.ebuild +++ b/net-wireless/gr-osmosdr/gr-osmosdr-0.1.4_p20170612-r1.ebuild @@ -29,7 +29,7 @@ IUSE="bladerf fcd hackrf iqbalance mirisdr python rtlsdr soapy uhd" RDEPEND="${PYTHON_DEPS} dev-libs/boost:= >=net-wireless/gnuradio-3.7_rc:0=[fcd?,${PYTHON_USEDEP}] - bladerf? ( net-wireless/bladerf:= ) + bladerf? ( ../gr-osmosdr-${PV}.tar.xz + SRC_URI="https://dev.gentoo.org/~zerochaos/distfiles/gr-osmosdr-${PV}.tar.xz" + KEYWORDS="~amd64 ~arm ~x86" +fi + +LICENSE="GPL-3" +SLOT="0/${PV}" +IUSE="bladerf fcd hackrf iqbalance mirisdr python rtlsdr soapy uhd" + +RDEPEND="${PYTHON_DEPS} + dev-libs/boost:= + >=net-wireless/gnuradio-3.7_rc:0=[fcd?,${PYTHON_USEDEP}] + bladerf? ( >=net-wireless/bladerf-2018.08_rc1:= ) + hackrf? ( net-libs/libhackrf:= ) + iqbalance? ( net-wireless/gr-iqbal:=[${PYTHON_USEDEP}] ) + mirisdr? ( net-libs/libmirisdr:= ) + rtlsdr? ( >=net-wireless/rtl-sdr-0.5.3:= ) + soapy? ( net-wireless/soapysdr ) + uhd? ( net-wireless/uhd:=[${PYTHON_USEDEP}] )" +DEPEND="${RDEPEND} + dev-python/cheetah" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +src_configure() { + local mycmakeargs=( + -DENABLE_DEFAULT=OFF + -DPYTHON_EXECUTABLE="${PYTHON}" + -DENABLE_FILE=ON + -DENABLE_BLADERF="$(usex bladerf)" + -DENABLE_FCD="$(usex fcd)" + -DENABLE_HACKRF="$(usex hackrf)" + -DENABLE_IQBALANCE="$(usex iqbalance)" + -DENABLE_MIRI="$(usex mirisdr)" + -DENABLE_PYTHON="$(usex python)" + -DENABLE_RTL="$(usex rtlsdr)" + -DENABLE_RTL_TCP="$(usex rtlsdr)" + -DENABLE_SOAPY="$(usex soapy)" + -DENABLE_UHD="$(usex uhd)" + ) + + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install + if use python; then + python_fix_shebang "${ED}"/usr/bin + fi +} diff --git a/net-wireless/soapybladerf/Manifest b/net-wireless/soapybladerf/Manifest index 5df46181c0be..5f9d5cfb5610 100644 --- a/net-wireless/soapybladerf/Manifest +++ b/net-wireless/soapybladerf/Manifest @@ -1 +1 @@ -DIST soapybladerf-0.3.4.tar.gz 26618 BLAKE2B 1c09aa4733e16de67bb176bd531d544b11358901a58325e6fdff3391bf8e218cdb13729f14c0ed87d5d32de5783368024a3c73e8ea8a9d5885d06bd8ae51e44f SHA512 694ec68da292efc98b5d0864a8afa71ecf72fa91ac03650e5f2b75e938fb27cc73fb1dabe57c336e4d4a217d8931fb6750b1932881bdf4aa0bbd53cf8617564b +DIST soapybladerf-0.3.5.tar.gz 27937 BLAKE2B eb94e0deb97a376b2e45f41100ce64ed4a0718c9b2623b4270e27c23faa0c035d6568b2a8129308851a75ebef8f9f7e9ad519af23896493ca4616d271e0a2438 SHA512 af22703c16d8b40d58e966ce9ce705652e2661bd46d2c0dc2a2c0315a66f4283172d17de4dc3d080cf011cdde9c002107653fe5a02de27df19b47098235f40a7 diff --git a/net-wireless/soapybladerf/soapybladerf-0.3.4.ebuild b/net-wireless/soapybladerf/soapybladerf-0.3.5.ebuild similarity index 94% rename from net-wireless/soapybladerf/soapybladerf-0.3.4.ebuild rename to net-wireless/soapybladerf/soapybladerf-0.3.5.ebuild index 29262fb3f0f0..d12292f05f7d 100644 --- a/net-wireless/soapybladerf/soapybladerf-0.3.4.ebuild +++ b/net-wireless/soapybladerf/soapybladerf-0.3.5.ebuild @@ -22,5 +22,5 @@ LICENSE="MIT" SLOT="0" RDEPEND="net-wireless/soapysdr - >=net-wireless/bladerf-2017.12_rc1:=" + ~net-wireless/bladerf-2017.12_rc1:=" DEPEND="${RDEPEND}" diff --git a/net-wireless/soapyhackrf/Manifest b/net-wireless/soapyhackrf/Manifest index f926d7075369..4c95626f68be 100644 --- a/net-wireless/soapyhackrf/Manifest +++ b/net-wireless/soapyhackrf/Manifest @@ -1 +1 @@ -DIST soapyhackrf-0.3.2.tar.gz 15643 BLAKE2B e57a0e2bc50984434f0e97207f8b274cc08d84e5884f4bee523614adb07d10cee810f1dd43d771f8b3a97bdb0dd84a0ac6b34d840aa9c93df19f7777f658d8d4 SHA512 667f27491d5fe18a04670ff0ade32b4a6f696ba8718e211957c7f8bab64957023ee4905df22214524ae3796a350a725d4f192fde21bb3d60cb9e69a4e629df90 +DIST soapyhackrf-0.3.3.tar.gz 15853 BLAKE2B 2e4c551add132e153033197ca6dc4762bac854d0959b524de7c65cdb0371ff862a52102868a1c9a5ad730c43d09730c2093666d186b79abe0d3d74e84b76a800 SHA512 d0e6ddbb8054b11bfb121a18e435c0f0c23290e5e29e89af83f660865e1c8adf4ed38082c96ab6a3cb68a50b7379f3fe5ef171616eccabe3f67d65b71d08dba9 diff --git a/net-wireless/soapyhackrf/soapyhackrf-0.3.2.ebuild b/net-wireless/soapyhackrf/soapyhackrf-0.3.3.ebuild similarity index 100% rename from net-wireless/soapyhackrf/soapyhackrf-0.3.2.ebuild rename to net-wireless/soapyhackrf/soapyhackrf-0.3.3.ebuild diff --git a/net-wireless/soapyrtlsdr/Manifest b/net-wireless/soapyrtlsdr/Manifest index ee3b8c0065df..544fddc49523 100644 --- a/net-wireless/soapyrtlsdr/Manifest +++ b/net-wireless/soapyrtlsdr/Manifest @@ -1 +1 @@ -DIST soapyrtlsdr-0.2.4.tar.gz 14003 BLAKE2B b638bc9795d722446cec4e2866e3cf8ee78665b874e44bb7249b6b8c465b024488284ccf3ac50aa504146253501d96c899abfa367732f14d90cf5d3641866de0 SHA512 3e5efd18793cc0404b833784c7d0b2f1786b38ed34529c12e949ce624d2488f04f0236e86bec7da08cd0baec5f36ccb6610d945d57622868e9e340c6f288b7a6 +DIST soapyrtlsdr-0.2.5.tar.gz 14101 BLAKE2B 3fc48e5cece291220a64ec1fd06492a94497e3e639c4fbdcb4c88d4b0431676bbf7a8d531123acc91d937380abe6a96a1b9df4cd7150203e31e17ba859da7113 SHA512 2e6343833d0ef48b11c6be6ea85c87276d58ab810b6b47fa2735b909beb6a758856ef2cbef3a0d478c27dd1fea829a049dd91252ae9807415f8ea66f15054a64 diff --git a/net-wireless/soapyrtlsdr/soapyrtlsdr-0.2.4.ebuild b/net-wireless/soapyrtlsdr/soapyrtlsdr-0.2.5.ebuild similarity index 100% rename from net-wireless/soapyrtlsdr/soapyrtlsdr-0.2.4.ebuild rename to net-wireless/soapyrtlsdr/soapyrtlsdr-0.2.5.ebuild diff --git a/profiles/Manifest.gz b/profiles/Manifest.gz index 97e511bd28d3..180e422c71ef 100644 Binary files a/profiles/Manifest.gz and b/profiles/Manifest.gz differ diff --git a/profiles/package.mask b/profiles/package.mask index 57da48c97241..0639e25225af 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -98,17 +98,12 @@ x11-themes/ethemes # >=dev-python/celery-4.0. Removal in 30 days. Bug #661804 dev-python/django-celery -# Mart Raudsepp (16 Jul 2018) -# Obsolete early GNOME 2 era print libraries. Applications -# use printing support found directly in x11-libs/gtk+ now. -# Removal in 30 days. Bug #352952 -gnome-base/libgnomeprintui -gnome-base/libgnomeprint - # Mart Raudsepp (16 Jul 2018) # Parallel-installable old versions with no remaining consumers # in main tree. Use applications ported to wxGTK:3.0 and -# wxpython:3.0 instead. Bug #661284 +# wxpython:3.0 instead. +# Please keep this package.mask entry until at least 16th Oct 2018 +# for extra notification of the unmerge need. Bug #661284 x11-libs/wxGTK:2.8 dev-python/wxpython:2.8 diff --git a/profiles/use.local.desc b/profiles/use.local.desc index 35a3a06b28d0..d8d3e818cf9d 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -2688,7 +2688,6 @@ dev-python/twisted-core:serial - include serial port support dev-python/vatnumber:vies - Enable VIES dev-python/ws4py:client - Install client modules dev-python/ws4py:server - Install server modules -dev-python/wxpython:doc - Install HTML wxWidgets docs and wxpython API reference. dev-python/wxpython:examples - Install interactive demo module browser and sample applets. dev-python/zeep:async - Add async support dev-python/zeep:tornado - Add tornado support @@ -6955,8 +6954,10 @@ net-wireless/aircrack-ng:experimental - Build the "experimental" tools which may net-wireless/aircrack-ng:netlink - Use netlink for channel control instead of WEXT net-wireless/aircrack-ng:unstable - Build the "unstable" tools which may randomly fail to run properly net-wireless/bladerf:tecla - use libtecla for command line editing, tab completion, and history -net-wireless/bladerf-fpga:x115 - bitstream for the x115KLE Cyclone IV FPGA bladerf model" -net-wireless/bladerf-fpga:x40 - bitstream for the x40KLE Cyclone IV FPGA bladerf model" +net-wireless/bladerf-fpga:x115 - bitstream for the x115 kLE Cyclone IV FPGA bladerf model" +net-wireless/bladerf-fpga:x40 - bitstream for the x40 kLE Cyclone IV FPGA bladerf model" +net-wireless/bladerf-fpga:xA4 - bitstream for the xA4 49 kLE Cyclone V FPGA bladerf 2.0 micro model" +net-wireless/bladerf-fpga:xA9 - bitstream for the xA9 301 kLE Cyclone V FPGA bladerf 2.0 micro model" net-wireless/blueman:appindicator - Enable usage of dev-libs/libappindicator to export menu options net-wireless/blueman:network - Add functionality to setup (host) PAN connections using either net-dns/dnsmasq or net-misc/dhcp net-wireless/bluez:btpclient - Enable BTP client @@ -8775,7 +8776,6 @@ x11-libs/qscintilla:designer - Build plugin for Qt Designer x11-libs/qwt:designer - Installs dev-qt/designer plugin. x11-libs/qwt:mathml - Use the MathML renderer of the Qt solutions package. x11-libs/vte:glade - Provide integration with dev-util/glade. -x11-libs/wxGTK:gnome - Use gnome-base/libgnomeprintui for printing tasks. x11-libs/wxGTK:gstreamer - Enable the wxMediaCtrl class for playing audio and video through gstreamer. x11-libs/wxGTK:sdl - Use Simple Directmedia Layer (media-libs/libsdl) for audio. x11-misc/alock:doc - Build and install manpage with app-text/asciidoc. diff --git a/sci-libs/Manifest.gz b/sci-libs/Manifest.gz index 7c0d52957812..f90c38286811 100644 Binary files a/sci-libs/Manifest.gz and b/sci-libs/Manifest.gz differ diff --git a/sci-libs/lapack-reference/lapack-reference-3.2.1-r4.ebuild b/sci-libs/lapack-reference/lapack-reference-3.2.1-r4.ebuild index 26258bbf0c57..e8d5f5d55d16 100644 --- a/sci-libs/lapack-reference/lapack-reference-3.2.1-r4.ebuild +++ b/sci-libs/lapack-reference/lapack-reference-3.2.1-r4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -16,7 +16,7 @@ SRC_URI=" LICENSE="BSD" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" IUSE="doc" RDEPEND=" diff --git a/sys-apps/Manifest.gz b/sys-apps/Manifest.gz index c350505654d6..5b104613b94c 100644 Binary files a/sys-apps/Manifest.gz and b/sys-apps/Manifest.gz differ diff --git a/sys-apps/accountsservice/Manifest b/sys-apps/accountsservice/Manifest index 2e0a9fdecf90..3f86949ecd79 100644 --- a/sys-apps/accountsservice/Manifest +++ b/sys-apps/accountsservice/Manifest @@ -1 +1,2 @@ DIST accountsservice-0.6.45.tar.xz 382740 BLAKE2B ce88e53c7d0187f53ed0a2758f81c8e2d1083ab1c95ec6cddebb2167b36706b1537ecf74b7904a9002c6179cfdf811a3268451af9443727ba9793a9af06cf8aa SHA512 09975f9fa03a3177d923de6d6f6e6acfffeb2ff4924c45eaac78c994c16974427c8e936a87034747ba494d2bb3df6e8a92ff44db387761b06e06e311d7cf105a +DIST accountsservice-0.6.50.tar.xz 384484 BLAKE2B 52c06ba85498f292204834f967211d8f0940786dc2ea3070124d3aecccd551375bfbc8fc31f23a2c3c86e23359294307656c3b927c4e819fc102d8626ae0dd82 SHA512 6e07cd318452b1cbedeacd729f0ebb200525caf1b09981abb2bac16fd90756a790ebec08aca0a0cea016f14ab27c159a68fe1332ef4bc636c5863b8c61040f64 diff --git a/sys-apps/accountsservice/accountsservice-0.6.50.ebuild b/sys-apps/accountsservice/accountsservice-0.6.50.ebuild new file mode 100644 index 000000000000..0b54f0f7bc24 --- /dev/null +++ b/sys-apps/accountsservice/accountsservice-0.6.50.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +GNOME2_EAUTORECONF="yes" + +inherit gnome2 systemd + +DESCRIPTION="D-Bus interfaces for querying and manipulating user account information" +HOMEPAGE="https://www.freedesktop.org/wiki/Software/AccountsService/" +SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" + +IUSE="doc elogind +introspection selinux systemd" +REQUIRED_USE="?? ( elogind systemd )" + +CDEPEND=" + >=dev-libs/glib-2.44:2 + sys-auth/polkit + elogind? ( >=sys-auth/elogind-229.4 ) + introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) + systemd? ( >=sys-apps/systemd-186:0= ) + !systemd? ( !elogind? ( sys-auth/consolekit ) ) +" +DEPEND="${CDEPEND} + dev-libs/libxslt + dev-util/gdbus-codegen + >=dev-util/gtk-doc-am-1.15 + >=dev-util/intltool-0.40 + sys-devel/gettext + virtual/pkgconfig + doc? ( + app-text/docbook-xml-dtd:4.1.2 + app-text/xmlto ) +" +RDEPEND="${CDEPEND} + selinux? ( sec-policy/selinux-accountsd ) +" + +PATCHES=( + "${FILESDIR}"/${PN}-0.6.35-gentoo-system-users.patch +) + +src_configure() { + gnome2_src_configure \ + --disable-static \ + --disable-more-warnings \ + --localstatedir="${EPREFIX}"/var \ + --enable-admin-group="wheel" \ + --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" \ + $(use_enable doc docbook-docs) \ + $(use_enable elogind) \ + $(use_enable introspection) \ + $(use_enable systemd) +} diff --git a/sys-apps/busybox/Manifest b/sys-apps/busybox/Manifest index 6a7d923eec83..3f4f5623a9c1 100644 --- a/sys-apps/busybox/Manifest +++ b/sys-apps/busybox/Manifest @@ -3,3 +3,4 @@ DIST busybox-1.28.3.tar.bz2 2260586 BLAKE2B f2fec31ab1c6e6b865cea20a2819f58cb8e4 DIST busybox-1.28.4.tar.bz2 2263342 BLAKE2B f35c81e67136d888a998f41b1418589e4bddaacde25d55eb509822a13ab93d351dcda6b147794a47e3c3c5c4141e9d8cc834ed239e0afba176f08bf3cb55b911 SHA512 92471617fcf3c1e28b468f3de2c83a1041f5ba5106580cc791e9c4cd602b7ccffabc51ce0807881ed734a89c3089113048265d6659a4d595528bd9150288d2ed DIST busybox-1.29.0.tar.bz2 2303680 BLAKE2B 2b3082952a3dc17c4a65ee6de24276d0c9dca9082bc75df23e67855d9667508ba146ff2210f6c548628341fae7bbd1ff16f4ef445b4297cd2a1a05be2b4fb591 SHA512 49afcb0bfcea881b37cb740cd17b144cb46596d456e72702884a835eee5e4b0b681c3a21ee7095a927a2fe4cd2bb691890aa8f3f32dbd98c4da20c2fa4e7edf9 DIST busybox-1.29.1.tar.bz2 2304866 BLAKE2B b8fb576507b952c241f733b76980a246fc0fad0bb5c97fe39a63d7e780e9934fae325d27e997641250248d1c7dc9f480ed42a09fdfc9b0bedc9eb909137c6ca9 SHA512 4506c149abb9ce0d98c75ee1f73d2915b124b8d1975cd9d20b9cd894b47226ea492c4fa802b28cfaae3082991fb7ab127f2376713401545ce4aea8810c36da76 +DIST busybox-1.29.2.tar.bz2 2305093 BLAKE2B 04344bab3dbce6ff01746ce60c7966a883af42987cbc3ef43c9a4c831872aaf5c2727e3ed89e2c8f71f547a7f2cb87b31a302367546cb5149c6f65cd9023a663 SHA512 16191a0773f51fb53ba54765813754982621e0ab391a1d07f66a3fb52d28c567ebff019e39f151cdf29f3c878d691f0fb7cdb4cb67e29b732d45224953c5d70f diff --git a/sys-apps/busybox/busybox-1.29.2.ebuild b/sys-apps/busybox/busybox-1.29.2.ebuild new file mode 100644 index 000000000000..ea0b4ce81fb0 --- /dev/null +++ b/sys-apps/busybox/busybox-1.29.2.ebuild @@ -0,0 +1,329 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +# See `man savedconfig.eclass` for info on how to use USE=savedconfig. + +EAPI=6 + +inherit flag-o-matic savedconfig toolchain-funcs + +DESCRIPTION="Utilities for rescue and embedded systems" +HOMEPAGE="https://www.busybox.net/" +if [[ ${PV} == "9999" ]] ; then + MY_P=${P} + EGIT_REPO_URI="https://git.busybox.net/busybox" + inherit git-r3 +else + MY_P=${PN}-${PV/_/-} + SRC_URI="https://www.busybox.net/downloads/${MY_P}.tar.bz2" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux" +fi + +LICENSE="GPL-2" # GPL-2 only +SLOT="0" +IUSE="debug ipv6 livecd make-symlinks math mdev pam selinux sep-usr static syslog systemd" +REQUIRED_USE="pam? ( !static )" +RESTRICT="test" + +COMMON_DEPEND="!static? ( selinux? ( sys-libs/libselinux ) ) + pam? ( sys-libs/pam )" +DEPEND="${COMMON_DEPEND} + static? ( selinux? ( sys-libs/libselinux[static-libs(+)] ) ) + >=sys-kernel/linux-headers-2.6.39" +RDEPEND="${COMMON_DEPEND} + mdev? ( !::g' \ + Makefile.flags || die + #sed -i '/bbsh/s:^//::' include/applets.h + sed -i '/^#error Aborting compilation./d' applets/applets.c || die + use elibc_glibc && sed -i 's:-Wl,--gc-sections::' Makefile + sed -i \ + -e "/^CROSS_COMPILE/s:=.*:= ${CHOST}-:" \ + -e "/^AR\>/s:=.*:= $(tc-getAR):" \ + -e "/^CC\>/s:=.*:= $(tc-getCC):" \ + -e "/^HOSTCC/s:=.*:= $(tc-getBUILD_CC):" \ + -e "/^PKG_CONFIG\>/s:=.*:= $(tc-getPKG_CONFIG):" \ + Makefile || die + sed -i \ + -e 's:-static-libgcc::' \ + Makefile.flags || die +} + +src_configure() { + # check for a busybox config before making one of our own. + # if one exist lets return and use it. + + restore_config .config + if [ -f .config ]; then + yes "" | emake -j1 -s oldconfig >/dev/null + return 0 + else + ewarn "Could not locate user configfile, so we will save a default one" + fi + + # setup the config file + emake -j1 -s allyesconfig >/dev/null + # nommu forces a bunch of things off which we want on #387555 + busybox_config_option n NOMMU + sed -i '/^#/d' .config + yes "" | emake -j1 -s oldconfig >/dev/null + + # now turn off stuff we really don't want + busybox_config_option n DMALLOC + busybox_config_option n FEATURE_2_4_MODULES #607548 + busybox_config_option n FEATURE_SUID_CONFIG + busybox_config_option n BUILD_AT_ONCE + busybox_config_option n BUILD_LIBBUSYBOX + busybox_config_option n FEATURE_CLEAN_UP + busybox_config_option n MONOTONIC_SYSCALL + busybox_config_option n USE_PORTABLE_CODE + busybox_config_option n WERROR + # triming the BSS size may be dangerous + busybox_config_option n FEATURE_USE_BSS_TAIL + + # These cause trouble with musl. + if use elibc_musl; then + busybox_config_option n FEATURE_UTMP + busybox_config_option n EXTRA_COMPAT + busybox_config_option n FEATURE_VI_REGEX_SEARCH + fi + + # If these are not set and we are using a uclibc/busybox setup + # all calls to system() will fail. + busybox_config_option y ASH + busybox_config_option y SH_IS_ASH + busybox_config_option n HUSH + busybox_config_option n SH_IS_HUSH + + busybox_config_option '"/run"' PID_FILE_PATH + busybox_config_option '"/run/ifstate"' IFUPDOWN_IFSTATE_PATH + + # disable ipv6 applets + if ! use ipv6; then + busybox_config_option n FEATURE_IPV6 + busybox_config_option n TRACEROUTE6 + busybox_config_option n PING6 + busybox_config_option n UDHCPC6 + fi + + busybox_config_option pam PAM + busybox_config_option static STATIC + busybox_config_option syslog {K,SYS}LOGD LOGGER + busybox_config_option systemd FEATURE_SYSTEMD + busybox_config_option math FEATURE_AWK_LIBM + + # disable features that uClibc doesn't (yet?) provide. + if use elibc_uclibc; then + busybox_config_option n FEATURE_SYNC_FANCY #567598 + busybox_config_option n NSENTER + fi + + # all the debug options are compiler related, so punt them + busybox_config_option n DEBUG_SANITIZE + busybox_config_option n DEBUG + busybox_config_option y NO_DEBUG_LIB + busybox_config_option n DMALLOC + busybox_config_option n EFENCE + busybox_config_option $(usex debug y n) TFTP_DEBUG + + busybox_config_option selinux SELINUX + + # this opt only controls mounting with /dev/null +} + +src_compile() { + unset KBUILD_OUTPUT #88088 + export SKIP_STRIP=y + + emake V=1 busybox +} + +src_install() { + unset KBUILD_OUTPUT #88088 + save_config .config + + into / + dodir /bin + if use sep-usr ; then + # install /ginit to take care of mounting stuff + exeinto / + newexe busybox_unstripped ginit + dosym /ginit /bin/bb + dosym bb /bin/busybox + else + newbin busybox_unstripped busybox + dosym busybox /bin/bb + fi + if use mdev ; then + dodir /$(get_libdir)/mdev/ + use make-symlinks || dosym /bin/bb /sbin/mdev + cp "${S}"/examples/mdev_fat.conf "${ED}"/etc/mdev.conf + + exeinto /$(get_libdir)/mdev/ + doexe "${FILESDIR}"/mdev/* + + newinitd "${FILESDIR}"/mdev.initd mdev + fi + if use livecd ; then + dosym busybox /bin/vi + fi + + # add busybox daemon's, bug #444718 + if busybox_config_enabled FEATURE_NTPD_SERVER; then + newconfd "${FILESDIR}/ntpd.confd" "busybox-ntpd" + newinitd "${FILESDIR}/ntpd.initd" "busybox-ntpd" + fi + if busybox_config_enabled SYSLOGD; then + newconfd "${FILESDIR}/syslogd.confd" "busybox-syslogd" + newinitd "${FILESDIR}/syslogd.initd" "busybox-syslogd" + fi + if busybox_config_enabled KLOGD; then + newconfd "${FILESDIR}/klogd.confd" "busybox-klogd" + newinitd "${FILESDIR}/klogd.initd" "busybox-klogd" + fi + if busybox_config_enabled WATCHDOG; then + newconfd "${FILESDIR}/watchdog.confd" "busybox-watchdog" + newinitd "${FILESDIR}/watchdog.initd" "busybox-watchdog" + fi + if busybox_config_enabled UDHCPC; then + local path=$(busybox_config_enabled UDHCPC_DEFAULT_SCRIPT) + exeinto "${path%/*}" + newexe examples/udhcp/simple.script "${path##*/}" + fi + if busybox_config_enabled UDHCPD; then + insinto /etc + doins examples/udhcp/udhcpd.conf + fi + + # bundle up the symlink files for use later + emake DESTDIR="${ED}" install + rm _install/bin/busybox + # for compatibility, provide /usr/bin/env + mkdir -p _install/usr/bin + ln -s /bin/env _install/usr/bin/env + tar cf busybox-links.tar -C _install . || : #;die + insinto /usr/share/${PN} + use make-symlinks && doins busybox-links.tar + + dodoc AUTHORS README TODO + + cd docs + docinto txt + dodoc *.txt + docinto pod + dodoc *.pod + docinto html + dodoc *.html + + cd ../examples + docinto examples + dodoc inittab depmod.pl *.conf *.script undeb unrpm +} + +pkg_preinst() { + if use make-symlinks && [[ ! ${VERY_BRAVE_OR_VERY_DUMB} == "yes" ]] && [[ ${ROOT} == "/" ]] ; then + ewarn "setting USE=make-symlinks and emerging to / is very dangerous." + ewarn "it WILL overwrite lots of system programs like: ls bash awk grep (bug 60805 for full list)." + ewarn "If you are creating a binary only and not merging this is probably ok." + ewarn "set env VERY_BRAVE_OR_VERY_DUMB=yes if this is really what you want." + die "silly options will destroy your system" + fi + + if use make-symlinks ; then + mv "${ED}"/usr/share/${PN}/busybox-links.tar "${T}"/ || die + fi +} + +pkg_postinst() { + savedconfig_pkg_postinst + + if use make-symlinks ; then + cd "${T}" || die + mkdir _install + tar xf busybox-links.tar -C _install || die + cp -vpPR _install/* "${ROOT}"/ || die "copying links for ${x} failed" + fi + + if use sep-usr ; then + elog "In order to use the sep-usr support, you have to update your" + elog "kernel command line. Add the option:" + elog " init=/ginit" + elog "To launch a different init than /sbin/init, use:" + elog " init=/ginit /sbin/yourinit" + elog "To get a rescue shell, you may boot with:" + elog " init=/ginit bb" + fi +} diff --git a/sys-apps/pcsc-lite/pcsc-lite-1.8.23.ebuild b/sys-apps/pcsc-lite/pcsc-lite-1.8.23.ebuild index f32f5ce385a1..7e3fdf9557ff 100644 --- a/sys-apps/pcsc-lite/pcsc-lite-1.8.23.ebuild +++ b/sys-apps/pcsc-lite/pcsc-lite-1.8.23.ebuild @@ -15,7 +15,7 @@ SRC_URI="https://pcsclite.apdu.fr/files/${P}.tar.bz2" # upstream. LICENSE="BSD ISC MIT GPL-3+ GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" # This is called libusb so that it doesn't fool people in thinking that # it is _required_ for USB support. Otherwise they'll disable udev and diff --git a/sys-apps/rtl-entropy/rtl-entropy-0.1.2_p20180118.ebuild b/sys-apps/rtl-entropy/rtl-entropy-0.1.2_p20180118-r1.ebuild similarity index 96% rename from sys-apps/rtl-entropy/rtl-entropy-0.1.2_p20180118.ebuild rename to sys-apps/rtl-entropy/rtl-entropy-0.1.2_p20180118-r1.ebuild index 98a244b359e8..8b430e3b66ea 100644 --- a/sys-apps/rtl-entropy/rtl-entropy-0.1.2_p20180118.ebuild +++ b/sys-apps/rtl-entropy/rtl-entropy-0.1.2_p20180118-r1.ebuild @@ -19,7 +19,7 @@ IUSE="bladerf" RDEPEND="sys-libs/libcap dev-libs/openssl:0= - bladerf? ( net-wireless/bladerf ) + bladerf? ( net-wireless/bladerf:= ) net-wireless/rtl-sdr" DEPEND="${RDEPEND} virtual/pkgconfig" diff --git a/sys-auth/Manifest.gz b/sys-auth/Manifest.gz index eedc39ff68c5..434adb09a648 100644 Binary files a/sys-auth/Manifest.gz and b/sys-auth/Manifest.gz differ diff --git a/sys-auth/pam_p11/pam_p11-0.2.0.ebuild b/sys-auth/pam_p11/pam_p11-0.2.0.ebuild index ca9459f51000..e177e7584216 100644 --- a/sys-auth/pam_p11/pam_p11-0.2.0.ebuild +++ b/sys-auth/pam_p11/pam_p11-0.2.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/OpenSC/${PN}/releases/download/${P}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86" +KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86" IUSE="" RDEPEND="virtual/pam diff --git a/sys-block/Manifest.gz b/sys-block/Manifest.gz index 1fe4762ac6a6..bc8ddd2fb53f 100644 Binary files a/sys-block/Manifest.gz and b/sys-block/Manifest.gz differ diff --git a/sys-block/di/di-4.46.ebuild b/sys-block/di/di-4.46.ebuild index fd3027d02ccb..19c8af5d5224 100644 --- a/sys-block/di/di-4.46.ebuild +++ b/sys-block/di/di-4.46.ebuild @@ -10,7 +10,7 @@ SRC_URI="http://www.gentoo.com/di/${P}.tar.gz" LICENSE="ZLIB" SLOT="0" -KEYWORDS="~amd64 ppc ~ppc64 x86 ~x86-fbsd" +KEYWORDS="amd64 ppc ~ppc64 x86 ~x86-fbsd" IUSE="nls" RESTRICT="test" #405205, #405471 diff --git a/sys-block/storcli/storcli-7.0504.ebuild b/sys-block/storcli/storcli-7.0504.ebuild index 8201ffda1b9e..cfa99582d6a6 100644 --- a/sys-block/storcli/storcli-7.0504.ebuild +++ b/sys-block/storcli/storcli-7.0504.ebuild @@ -18,7 +18,7 @@ KEYWORDS="-* ~amd64 ~x86" IUSE="" RDEPEND="" -DEPEND="" +DEPEND="app-arch/unzip" DOCS=( readme.txt license.txt ) diff --git a/sys-cluster/Manifest.gz b/sys-cluster/Manifest.gz index 027fb02991bd..ec0b0eec15b1 100644 Binary files a/sys-cluster/Manifest.gz and b/sys-cluster/Manifest.gz differ diff --git a/sys-cluster/ceph/ceph-12.2.7.ebuild b/sys-cluster/ceph/ceph-12.2.7.ebuild index 72ad468ceb66..75cd704ac78f 100644 --- a/sys-cluster/ceph/ceph-12.2.7.ebuild +++ b/sys-cluster/ceph/ceph-12.2.7.ebuild @@ -14,7 +14,7 @@ if [[ ${PV} == *9999* ]]; then SRC_URI="" else SRC_URI="https://download.ceph.com/tarballs/${P}.tar.gz" - KEYWORDS="~amd64 x86" + KEYWORDS="amd64 x86" fi DESCRIPTION="Ceph distributed filesystem" diff --git a/sys-devel/Manifest.gz b/sys-devel/Manifest.gz index 5ebd7f6cfd20..cada4255278b 100644 Binary files a/sys-devel/Manifest.gz and b/sys-devel/Manifest.gz differ diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest index 6ab5b44d23fa..a681d1c3a942 100644 --- a/sys-devel/gcc/Manifest +++ b/sys-devel/gcc/Manifest @@ -50,9 +50,11 @@ DIST gcc-5.4.0-uclibc-patches-1.0.tar.bz2 3731 BLAKE2B fa436d1c1d9c150714092132f DIST gcc-5.4.0.tar.bz2 95661481 BLAKE2B bf882acfa28cc1064cddd21e25332fff6bc65505d6af9acb2e455916edbc4f6b1de9b3524867f51d7819fc4f213ce21332fbf67cf71cd6c7b96fb8907e51d570 SHA512 2941cc950c8f2409a314df497631f9b0266211aa74746c1839c46e04f1c7c299afe2528d1ef16ea39def408a644ba48f97519ec7a7dd37d260c3e9423514265b DIST gcc-6.4.0-patches-1.3.tar.bz2 13617 BLAKE2B 6bfb1d70397e6ca4359e5d190e36003c18c7a03a9be4f923461dcff11307601e6b3502a2e289585b53baeb919008d83c29ad24078f814aed9b331140e4687419 SHA512 91be7c8db0004cdd150fec0f8daa709374753d2f524c58087dcf45b6696dbd609972297e866f971fba1aa679464cf96a384dd111e104183c0939ab69add017b2 DIST gcc-6.4.0-patches-1.4.tar.bz2 13451 BLAKE2B 9934558989405141ae22c941fc4f5b4fb9dc425b0f35b458ab9c2704b8fbf61975a93c3d0e4c9ebde0cc7f935be868e9ad7ebdd78441235b81316fcca339fc42 SHA512 6d94f1ac196deabc8fcd30215bcbec4bbb19924929ef11c3000c8bfa189c59d87f95d37ac8cb0ff2d59cc2fc632b5767dbb80cbe7a354084cb2bc5e14cfbabb2 +DIST gcc-6.4.0-patches-1.5.tar.bz2 14187 BLAKE2B 3313f8e45ca3318fe3f34e6f8e29bca93643f29d74ca058975a80c821c8bd17e70cf905944e049851ff20b8dc8778f5a82307ecd5c8703fc27f475bf7df250aa SHA512 2cc48a0ad01bdd911e142e1ddf80a34974b5097953889f0596dfbb9877d6fd576c640f365c26277453c3181adbf82994923a7239d1f9032a5a230a529335e63e DIST gcc-6.4.0-uclibc-patches-1.0.tar.bz2 1586 BLAKE2B 21f97a9e1c349b3d52def092a03e5a90533521da9af586be7ee527594f2d65745491ff8758d88c99a7ac215bde7ebf4e47a0a36cfcd7e66f70e0bebf2dadd922 SHA512 266dbe2bb53d892a24cd752d5c6833ea33f8df8b11b0471700ee53865243cd41f412f9bea8a369b474c9cd1435faff2e03902c7cb5638dd3ddcaa665aa2ec522 DIST gcc-6.4.0.tar.xz 76156220 BLAKE2B 2018c338b28ea644cdd1b327cb0dfe7ee9aa2010357c93f7e71969f587c58d3fdfa2bb4c82a309490c48bc86924400022fa93f41dc6c4345878d1bc1d8204265 SHA512 02c60e54527c7adf584798d5251f8a0b80c93d5deafce82501b2c28e6692e0bd783927bbfc4bc527a863c0cccc025150a34740a9e29badb02d4b48e56a8aba90 DIST gcc-7.3.0-patches-1.4.tar.bz2 8238 BLAKE2B 72a5dcb046558c8f5c3a75040fe24ce1106c43af7510d6febf667b4377cb9caea5ebe9e1287af90e4ebfffa3f3f22ca85f533acf57c2e2d896f92adc1659b9f5 SHA512 24ed0d82240426efb111bbf48913b96fdc824ae3aa5a653298a726ebe64a40791f484229bbab9cc58f73d658e0b4b83ccd13081cfbea6e1673ef1d076cca3b33 +DIST gcc-7.3.0-patches-1.5.tar.bz2 10977 BLAKE2B 89970f74aa7355f917cf576220b2d47ebba7964abdde22ae69c866fac57d173f793c6452af263bf87bc906d4b42f06e2396a16722d8edc5d4444df5f245957ec SHA512 de3d8ba8610b22dd8cfa903eb64fb788a9e11c1951e9b0e3a9b57fcdf01d260db58f567f198fe16c0707f514a20b35ac64d05c1537de0f1eb7919f134de1d08b DIST gcc-7.3.0.tar.xz 62462388 BLAKE2B dc8f132b21bd0543c3d9dd17557038aafe65675aa73c540954234a3c972b4c31c939149bd50183d072ab6c8d16919e19daeaaffd619ce2ccd62dbdf9a5bb3302 SHA512 ad41a7e4584e40e92cdf860bc0288500fbaf5dfb7e8c3fcabe9eba809c87bcfa85b46c19c19921b0cdf6d05483faede8287bb9ea120c0d1559449a70e602c8d4 DIST gcc-8.1.0-patches-1.3.tar.bz2 10713 BLAKE2B 3e5cddf5b0c0b9b2bbd2b0aa546dc3aee9bf0e8421656c9260bb7561baa8bb53f7b6ad651bf12d68102fd9e9f97fa17c3306d52a657a46d2dedd16e9a1a74579 SHA512 37c785fbfd801d48c46c65e21d33085c1470942531b8f13c28f933debcec944a1389a50fe0f72afa7dbba25a931959a3ebb1c42911abadd11ee530812f1034bb DIST gcc-8.1.0.tar.xz 63372320 BLAKE2B 6465809cf90f4c65c0a82d0390de86c98f954e0b910e2f2de2282b828cca8b6aaf0a5243548854048344ec4840046017887fc0b253fb0ced4238da67ef68f946 SHA512 c96246f34a7aeb404c4525b754dc7f7708a18e06271aadb2b32fef00e6e0940f584e52430bfe2ab01e699c93e3cb418adc113d2622fa826facbec0ec8ce3eb2c diff --git a/sys-devel/gcc/gcc-6.4.0-r3.ebuild b/sys-devel/gcc/gcc-6.4.0-r3.ebuild new file mode 100644 index 000000000000..952bde066256 --- /dev/null +++ b/sys-devel/gcc/gcc-6.4.0-r3.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="5" + +PATCH_VER="1.5" +UCLIBC_VER="1.0" + +inherit toolchain + +#unkeyworded yet. not enough changes to warant a revbump +#KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" + +RDEPEND="" +DEPEND="${RDEPEND} + elibc_glibc? ( >=sys-libs/glibc-2.13 ) + >=${CATEGORY}/binutils-2.20" + +if [[ ${CATEGORY} != cross-* ]] ; then + PDEPEND="${PDEPEND} elibc_glibc? ( >=sys-libs/glibc-2.13 )" +fi + +src_prepare() { + toolchain_src_prepare +} diff --git a/sys-devel/gcc/gcc-7.3.0-r4.ebuild b/sys-devel/gcc/gcc-7.3.0-r4.ebuild new file mode 100644 index 000000000000..e354054d48c5 --- /dev/null +++ b/sys-devel/gcc/gcc-7.3.0-r4.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="5" + +PATCH_VER="1.5" +#UCLIBC_VER="1.0" + +inherit toolchain + +#needs minimal test before unkeywording +#KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos" + +RDEPEND="" +DEPEND="${RDEPEND} + elibc_glibc? ( >=sys-libs/glibc-2.13 ) + >=${CATEGORY}/binutils-2.20" + +if [[ ${CATEGORY} != cross-* ]] ; then + PDEPEND="${PDEPEND} elibc_glibc? ( >=sys-libs/glibc-2.13 )" +fi + +src_prepare() { + toolchain_src_prepare +} diff --git a/sys-devel/llvm/files/6.0.1/0002-llvm-mc-Produce-R_X86_64_PLT32-for-call-jmp-foo.patch b/sys-devel/llvm/files/6.0.1/0002-llvm-mc-Produce-R_X86_64_PLT32-for-call-jmp-foo.patch new file mode 100644 index 000000000000..eac5fe44178e --- /dev/null +++ b/sys-devel/llvm/files/6.0.1/0002-llvm-mc-Produce-R_X86_64_PLT32-for-call-jmp-foo.patch @@ -0,0 +1,314 @@ +From 9ff352cb602d5dd68bcd7bf2ba4711c8568271a9 Mon Sep 17 00:00:00 2001 +From: George Rimar +Date: Tue, 20 Feb 2018 10:17:57 +0000 +Subject: [PATCH] [llvm-mc] - Produce R_X86_64_PLT32 for "call/jmp foo". + +For instructions like call foo and jmp foo patch changes +relocation produced from R_X86_64_PC32 to R_X86_64_PLT32. +Relocation can be used as a marker for 32-bit PC-relative branches. +Linker will reduce PLT32 relocation to PC32 if function is defined locally. + +Differential revision: https://reviews.llvm.org/D43383 + +git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@325569 91177308-0d34-0410-b5e6-96231b3b80d8 +--- + lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp | 3 ++ + .../X86/MCTargetDesc/X86ELFObjectWriter.cpp | 3 ++ + lib/Target/X86/MCTargetDesc/X86FixupKinds.h | 1 + + .../X86/MCTargetDesc/X86MCCodeEmitter.cpp | 32 +++++++++++++++++-- + .../X86/MCTargetDesc/X86MachObjectWriter.cpp | 1 + + .../MCTargetDesc/X86WinCOFFObjectWriter.cpp | 1 + + test/CodeGen/X86/cmp.ll | 2 +- + test/CodeGen/X86/fma.ll | 8 ++--- + test/MC/ELF/basic-elf-64.s | 18 ++++++----- + test/MC/ELF/ifunc-reloc.s | 2 +- + test/MC/ELF/weak-diff.s | 2 +- + test/MC/ELF/weak-relocation.s | 2 +- + test/MC/ELF/weakref-reloc.s | 2 +- + 13 files changed, 58 insertions(+), 19 deletions(-) + +diff --git a/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp b/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp +index 34db5918926..b301722b535 100644 +--- a/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp ++++ b/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp +@@ -46,6 +46,7 @@ static unsigned getFixupKindLog2Size(unsigned Kind) { + case X86::reloc_signed_4byte: + case X86::reloc_signed_4byte_relax: + case X86::reloc_global_offset_table: ++ case X86::reloc_branch_4byte_pcrel: + case FK_SecRel_4: + case FK_Data_4: + return 2; +@@ -95,6 +96,7 @@ public: + {"reloc_signed_4byte_relax", 0, 32, 0}, + {"reloc_global_offset_table", 0, 32, 0}, + {"reloc_global_offset_table8", 0, 64, 0}, ++ {"reloc_branch_4byte_pcrel", 0, 32, MCFixupKindInfo::FKF_IsPCRel}, + }; + + if (Kind < FirstTargetFixupKind) +@@ -102,6 +104,7 @@ public: + + assert(unsigned(Kind - FirstTargetFixupKind) < getNumFixupKinds() && + "Invalid kind!"); ++ assert(Infos[Kind - FirstTargetFixupKind].Name && "Empty fixup name!"); + return Infos[Kind - FirstTargetFixupKind]; + } + +diff --git a/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp b/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp +index 4cdbae4d0d9..2ecbb80cd06 100644 +--- a/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp ++++ b/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp +@@ -75,6 +75,9 @@ static X86_64RelType getType64(unsigned Kind, + case X86::reloc_riprel_4byte_relax_rex: + case X86::reloc_riprel_4byte_movq_load: + return RT64_32; ++ case X86::reloc_branch_4byte_pcrel: ++ Modifier = MCSymbolRefExpr::VK_PLT; ++ return RT64_32; + case FK_PCRel_2: + case FK_Data_2: + return RT64_16; +diff --git a/lib/Target/X86/MCTargetDesc/X86FixupKinds.h b/lib/Target/X86/MCTargetDesc/X86FixupKinds.h +index dfdc9ec29ae..3c04b13e002 100644 +--- a/lib/Target/X86/MCTargetDesc/X86FixupKinds.h ++++ b/lib/Target/X86/MCTargetDesc/X86FixupKinds.h +@@ -30,6 +30,7 @@ enum Fixups { + // of the instruction. Used only + // for _GLOBAL_OFFSET_TABLE_. + reloc_global_offset_table8, // 64-bit variant. ++ reloc_branch_4byte_pcrel, // 32-bit PC relative branch. + // Marker + LastTargetFixupKind, + NumTargetFixupKinds = LastTargetFixupKind - FirstTargetFixupKind +diff --git a/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp b/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp +index 4ddc1f0ba42..608dc4acb04 100644 +--- a/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp ++++ b/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp +@@ -152,6 +152,8 @@ public: + + uint8_t DetermineREXPrefix(const MCInst &MI, uint64_t TSFlags, + int MemOperand, const MCInstrDesc &Desc) const; ++ ++ bool isPCRel32Branch(const MCInst &MI) const; + }; + + } // end anonymous namespace +@@ -276,6 +278,22 @@ static bool HasSecRelSymbolRef(const MCExpr *Expr) { + return false; + } + ++bool X86MCCodeEmitter::isPCRel32Branch(const MCInst &MI) const { ++ unsigned Opcode = MI.getOpcode(); ++ const MCInstrDesc &Desc = MCII.get(Opcode); ++ if ((Opcode != X86::CALL64pcrel32 && Opcode != X86::JMP_4) || ++ getImmFixupKind(Desc.TSFlags) != FK_PCRel_4) ++ return false; ++ ++ unsigned CurOp = X86II::getOperandBias(Desc); ++ const MCOperand &Op = MI.getOperand(CurOp); ++ if (!Op.isExpr()) ++ return false; ++ ++ const MCSymbolRefExpr *Ref = dyn_cast(Op.getExpr()); ++ return Ref && Ref->getKind() == MCSymbolRefExpr::VK_None; ++} ++ + void X86MCCodeEmitter:: + EmitImmediate(const MCOperand &DispOp, SMLoc Loc, unsigned Size, + MCFixupKind FixupKind, unsigned &CurByte, raw_ostream &OS, +@@ -331,7 +349,8 @@ EmitImmediate(const MCOperand &DispOp, SMLoc Loc, unsigned Size, + FixupKind == MCFixupKind(X86::reloc_riprel_4byte) || + FixupKind == MCFixupKind(X86::reloc_riprel_4byte_movq_load) || + FixupKind == MCFixupKind(X86::reloc_riprel_4byte_relax) || +- FixupKind == MCFixupKind(X86::reloc_riprel_4byte_relax_rex)) ++ FixupKind == MCFixupKind(X86::reloc_riprel_4byte_relax_rex) || ++ FixupKind == MCFixupKind(X86::reloc_branch_4byte_pcrel)) + ImmOffset -= 4; + if (FixupKind == FK_PCRel_2) + ImmOffset -= 2; +@@ -1287,9 +1306,18 @@ encodeInstruction(const MCInst &MI, raw_ostream &OS, + EmitByte(BaseOpcode, CurByte, OS); + break; + } +- case X86II::RawFrm: ++ case X86II::RawFrm: { + EmitByte(BaseOpcode, CurByte, OS); ++ ++ if (!is64BitMode(STI) || !isPCRel32Branch(MI)) ++ break; ++ ++ const MCOperand &Op = MI.getOperand(CurOp++); ++ EmitImmediate(Op, MI.getLoc(), X86II::getSizeOfImm(TSFlags), ++ MCFixupKind(X86::reloc_branch_4byte_pcrel), CurByte, OS, ++ Fixups); + break; ++ } + case X86II::RawFrmMemOffs: + // Emit segment override opcode prefix as needed. + EmitSegmentOverridePrefix(CurByte, 1, MI, OS); +diff --git a/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp b/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp +index 965f7de809b..22773e64409 100644 +--- a/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp ++++ b/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp +@@ -94,6 +94,7 @@ static unsigned getFixupKindLog2Size(unsigned Kind) { + case X86::reloc_riprel_4byte_movq_load: + case X86::reloc_signed_4byte: + case X86::reloc_signed_4byte_relax: ++ case X86::reloc_branch_4byte_pcrel: + case FK_Data_4: return 2; + case FK_Data_8: return 3; + } +diff --git a/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp b/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp +index 5139bb46b56..291056e3526 100644 +--- a/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp ++++ b/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp +@@ -62,6 +62,7 @@ unsigned X86WinCOFFObjectWriter::getRelocType(MCContext &Ctx, + case X86::reloc_riprel_4byte_movq_load: + case X86::reloc_riprel_4byte_relax: + case X86::reloc_riprel_4byte_relax_rex: ++ case X86::reloc_branch_4byte_pcrel: + return COFF::IMAGE_REL_AMD64_REL32; + case FK_Data_4: + case X86::reloc_signed_4byte: +diff --git a/test/CodeGen/X86/cmp.ll b/test/CodeGen/X86/cmp.ll +index 1ab8421638d..244e651e182 100644 +--- a/test/CodeGen/X86/cmp.ll ++++ b/test/CodeGen/X86/cmp.ll +@@ -240,7 +240,7 @@ define i32 @test12() ssp uwtable { + ; CHECK-NEXT: pushq %rax # encoding: [0x50] + ; CHECK-NEXT: .cfi_def_cfa_offset 16 + ; CHECK-NEXT: callq test12b # encoding: [0xe8,A,A,A,A] +-; CHECK-NEXT: # fixup A - offset: 1, value: test12b-4, kind: FK_PCRel_4 ++; CHECK-NEXT: # fixup A - offset: 1, value: test12b-4, kind: reloc_branch_4byte_pcrel + ; CHECK-NEXT: testb %al, %al # encoding: [0x84,0xc0] + ; CHECK-NEXT: je .LBB12_2 # encoding: [0x74,A] + ; CHECK-NEXT: # fixup A - offset: 1, value: .LBB12_2-1, kind: FK_PCRel_1 +diff --git a/test/CodeGen/X86/fma.ll b/test/CodeGen/X86/fma.ll +index 611f707d64c..2c919e3ebc9 100644 +--- a/test/CodeGen/X86/fma.ll ++++ b/test/CodeGen/X86/fma.ll +@@ -137,7 +137,7 @@ define x86_fp80 @test_f80(x86_fp80 %a, x86_fp80 %b, x86_fp80 %c) #0 { + ; FMA64-NEXT: fstpt {{[0-9]+}}(%rsp) ## encoding: [0xdb,0x7c,0x24,0x10] + ; FMA64-NEXT: fstpt (%rsp) ## encoding: [0xdb,0x3c,0x24] + ; FMA64-NEXT: callq _fmal ## encoding: [0xe8,A,A,A,A] +-; FMA64-NEXT: ## fixup A - offset: 1, value: _fmal-4, kind: FK_PCRel_4 ++; FMA64-NEXT: ## fixup A - offset: 1, value: _fmal-4, kind: reloc_branch_4byte_pcrel + ; FMA64-NEXT: addq $56, %rsp ## encoding: [0x48,0x83,0xc4,0x38] + ; FMA64-NEXT: retq ## encoding: [0xc3] + ; +@@ -151,7 +151,7 @@ define x86_fp80 @test_f80(x86_fp80 %a, x86_fp80 %b, x86_fp80 %c) #0 { + ; FMACALL64-NEXT: fstpt {{[0-9]+}}(%rsp) ## encoding: [0xdb,0x7c,0x24,0x10] + ; FMACALL64-NEXT: fstpt (%rsp) ## encoding: [0xdb,0x3c,0x24] + ; FMACALL64-NEXT: callq _fmal ## encoding: [0xe8,A,A,A,A] +-; FMACALL64-NEXT: ## fixup A - offset: 1, value: _fmal-4, kind: FK_PCRel_4 ++; FMACALL64-NEXT: ## fixup A - offset: 1, value: _fmal-4, kind: reloc_branch_4byte_pcrel + ; FMACALL64-NEXT: addq $56, %rsp ## encoding: [0x48,0x83,0xc4,0x38] + ; FMACALL64-NEXT: retq ## encoding: [0xc3] + ; +@@ -165,7 +165,7 @@ define x86_fp80 @test_f80(x86_fp80 %a, x86_fp80 %b, x86_fp80 %c) #0 { + ; AVX512-NEXT: fstpt {{[0-9]+}}(%rsp) ## encoding: [0xdb,0x7c,0x24,0x10] + ; AVX512-NEXT: fstpt (%rsp) ## encoding: [0xdb,0x3c,0x24] + ; AVX512-NEXT: callq _fmal ## encoding: [0xe8,A,A,A,A] +-; AVX512-NEXT: ## fixup A - offset: 1, value: _fmal-4, kind: FK_PCRel_4 ++; AVX512-NEXT: ## fixup A - offset: 1, value: _fmal-4, kind: reloc_branch_4byte_pcrel + ; AVX512-NEXT: addq $56, %rsp ## encoding: [0x48,0x83,0xc4,0x38] + ; AVX512-NEXT: retq ## encoding: [0xc3] + ; +@@ -179,7 +179,7 @@ define x86_fp80 @test_f80(x86_fp80 %a, x86_fp80 %b, x86_fp80 %c) #0 { + ; AVX512VL-NEXT: fstpt {{[0-9]+}}(%rsp) ## encoding: [0xdb,0x7c,0x24,0x10] + ; AVX512VL-NEXT: fstpt (%rsp) ## encoding: [0xdb,0x3c,0x24] + ; AVX512VL-NEXT: callq _fmal ## encoding: [0xe8,A,A,A,A] +-; AVX512VL-NEXT: ## fixup A - offset: 1, value: _fmal-4, kind: FK_PCRel_4 ++; AVX512VL-NEXT: ## fixup A - offset: 1, value: _fmal-4, kind: reloc_branch_4byte_pcrel + ; AVX512VL-NEXT: addq $56, %rsp ## encoding: [0x48,0x83,0xc4,0x38] + ; AVX512VL-NEXT: retq ## encoding: [0xc3] + entry: +diff --git a/test/MC/ELF/basic-elf-64.s b/test/MC/ELF/basic-elf-64.s +index 01f020bd64b..ae0903ec8cd 100644 +--- a/test/MC/ELF/basic-elf-64.s ++++ b/test/MC/ELF/basic-elf-64.s +@@ -13,6 +13,7 @@ main: # @main + callq puts + xorl %eax, %eax + addq $8, %rsp ++ call foo@GOTPCREL + ret + .Ltmp0: + .size main, .Ltmp0-main +@@ -44,14 +45,15 @@ main: # @main + + // CHECK: Name: .rela.text + +-// CHECK: Relocations [ +-// CHECK: Section {{.*}} .rela.text { +-// CHECK: 0x5 R_X86_64_32 .rodata.str1.1 0x0 +-// CHECK: 0xA R_X86_64_PC32 puts 0xFFFFFFFFFFFFFFFC +-// CHECK: 0xF R_X86_64_32 .rodata.str1.1 0x6 +-// CHECK: 0x14 R_X86_64_PC32 puts 0xFFFFFFFFFFFFFFFC +-// CHECK: } +-// CHECK: ] ++// CHECK: Relocations [ ++// CHECK: Section {{.*}} .rela.text { ++// CHECK-NEXT: 0x5 R_X86_64_32 .rodata.str1.1 0x0 ++// CHECK-NEXT: 0xA R_X86_64_PLT32 puts 0xFFFFFFFFFFFFFFFC ++// CHECK-NEXT: 0xF R_X86_64_32 .rodata.str1.1 0x6 ++// CHECK-NEXT: 0x14 R_X86_64_PLT32 puts 0xFFFFFFFFFFFFFFFC ++// CHECK-NEXT: 0x1F R_X86_64_GOTPCREL foo 0xFFFFFFFFFFFFFFFC ++// CHECK-NEXT: } ++// CHECK-NEXT: ] + + // CHECK: Symbol { + // CHECK: Binding: Local +diff --git a/test/MC/ELF/ifunc-reloc.s b/test/MC/ELF/ifunc-reloc.s +index 6f1d79b22c4..b4917371b0f 100644 +--- a/test/MC/ELF/ifunc-reloc.s ++++ b/test/MC/ELF/ifunc-reloc.s +@@ -11,6 +11,6 @@ alias: + + // CHECK: Relocations [ + // CHECK-NEXT: Section {{.*}} .rela.text { +-// CHECK-NEXT: 0x1 R_X86_64_PC32 sym 0xFFFFFFFFFFFFFFFC ++// CHECK-NEXT: 0x1 R_X86_64_PLT32 sym 0xFFFFFFFFFFFFFFFC + // CHECK-NEXT: } + // CHECK-NEXT: ] +diff --git a/test/MC/ELF/weak-diff.s b/test/MC/ELF/weak-diff.s +index ded89b8f833..9785a2befb1 100644 +--- a/test/MC/ELF/weak-diff.s ++++ b/test/MC/ELF/weak-diff.s +@@ -2,7 +2,7 @@ + + // CHECK: Relocations [ + // CHECK-NEXT: Section ({{.*}}) .rela.text { +-// CHECK-NEXT: 0x1D R_X86_64_PC32 f2 0xFFFFFFFFFFFFFFFC ++// CHECK-NEXT: 0x1D R_X86_64_PLT32 f2 0xFFFFFFFFFFFFFFFC + // CHECK-NEXT: } + // CHECK-NEXT: ] + +diff --git a/test/MC/ELF/weak-relocation.s b/test/MC/ELF/weak-relocation.s +index 19153aa50da..defaf4e6a38 100644 +--- a/test/MC/ELF/weak-relocation.s ++++ b/test/MC/ELF/weak-relocation.s +@@ -9,6 +9,6 @@ bar: + + // CHECK: Relocations [ + // CHECK-NEXT: Section ({{[0-9]+}}) .rela.text { +-// CHECK-NEXT: 0x1 R_X86_64_PC32 foo 0xFFFFFFFFFFFFFFFC ++// CHECK-NEXT: 0x1 R_X86_64_PLT32 foo 0xFFFFFFFFFFFFFFFC + // CHECK-NEXT: } + // CHECK-NEXT: ] +diff --git a/test/MC/ELF/weakref-reloc.s b/test/MC/ELF/weakref-reloc.s +index baf80060c43..997aea0477a 100644 +--- a/test/MC/ELF/weakref-reloc.s ++++ b/test/MC/ELF/weakref-reloc.s +@@ -9,6 +9,6 @@ + // CHECK: Relocations [ + // CHECK-NEXT: Section ({{[0-9]+}}) {{[^ ]+}} { + // CHECK-NEXT: 0x1 R_X86_64_PLT32 zed 0xFFFFFFFFFFFFFFFC +-// CHECK-NEXT: 0x6 R_X86_64_PC32 foo 0xFFFFFFFFFFFFFFFC ++// CHECK-NEXT: 0x6 R_X86_64_PLT32 foo 0xFFFFFFFFFFFFFFFC + // CHECK-NEXT: } + // CHECK-NEXT: ] +-- +2.18.0 + diff --git a/sys-devel/llvm/llvm-6.0.1-r1.ebuild b/sys-devel/llvm/llvm-6.0.1-r1.ebuild new file mode 100644 index 000000000000..1d5d5a04df1d --- /dev/null +++ b/sys-devel/llvm/llvm-6.0.1-r1.ebuild @@ -0,0 +1,266 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +: ${CMAKE_MAKEFILE_GENERATOR:=ninja} +# (needed due to CMAKE_BUILD_TYPE != Gentoo) +CMAKE_MIN_VERSION=3.7.0-r1 +PYTHON_COMPAT=( python2_7 ) + +inherit cmake-utils eapi7-ver flag-o-matic multilib-minimal \ + multiprocessing pax-utils python-any-r1 toolchain-funcs + +DESCRIPTION="Low Level Virtual Machine" +HOMEPAGE="https://llvm.org/" +SRC_URI="https://releases.llvm.org/${PV/_//}/${P/_/}.src.tar.xz + !doc? ( https://dev.gentoo.org/~mgorny/dist/llvm/${P}-manpages.tar.bz2 )" + +# Keep in sync with CMakeLists.txt +ALL_LLVM_TARGETS=( AArch64 AMDGPU ARM BPF Hexagon Lanai Mips MSP430 + NVPTX PowerPC Sparc SystemZ X86 XCore ) +ALL_LLVM_TARGETS=( "${ALL_LLVM_TARGETS[@]/#/llvm_targets_}" ) + +# Additional licenses: +# 1. OpenBSD regex: Henry Spencer's license ('rc' in Gentoo) + BSD. +# 2. ARM backend: LLVM Software Grant by ARM. +# 3. MD5 code: public-domain. +# 4. Tests (not installed): +# a. gtest: BSD. +# b. YAML tests: MIT. + +LICENSE="UoI-NCSA rc BSD public-domain + llvm_targets_ARM? ( LLVM-Grant )" +SLOT="$(ver_cut 1)" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="debug doc gold libedit +libffi ncurses test xar xml + kernel_Darwin ${ALL_LLVM_TARGETS[*]}" +RESTRICT="!test? ( test )" + +RDEPEND=" + sys-libs/zlib:0= + gold? ( >=sys-devel/binutils-2.22:*[cxx] ) + libedit? ( dev-libs/libedit:0=[${MULTILIB_USEDEP}] ) + libffi? ( >=virtual/libffi-3.0.13-r1:0=[${MULTILIB_USEDEP}] ) + ncurses? ( >=sys-libs/ncurses-5.9-r3:0=[${MULTILIB_USEDEP}] ) + xar? ( app-arch/xar ) + xml? ( dev-libs/libxml2:2=[${MULTILIB_USEDEP}] )" +# configparser-3.2 breaks the build (3.3 or none at all are fine) +DEPEND="${RDEPEND} + dev-lang/perl + || ( >=sys-devel/gcc-3.0 >=sys-devel/llvm-3.5 + ( >=sys-freebsd/freebsd-lib-9.1-r10 sys-libs/libcxx ) + ) + kernel_Darwin? ( + =sys-devel/binutils-apple-5.1 + ) + doc? ( dev-python/sphinx ) + gold? ( sys-libs/binutils-libs ) + libffi? ( virtual/pkgconfig ) + !! FreeBSD). + eapply "${FILESDIR}"/6.0.1/0001-cmake-Append-Wl-rpath-link-conditionally-to-GNULD.patch + + # Fix assembly compatibility with binutils-2.31.1 + # https://bugs.gentoo.org/663442 + eapply "${FILESDIR}"/6.0.1/0002-llvm-mc-Produce-R_X86_64_PLT32-for-call-jmp-foo.patch + + # disable use of SDK on OSX, bug #568758 + sed -i -e 's/xcrun/false/' utils/lit/lit/util.py || die + + # User patches + QA + cmake-utils_src_prepare +} + +multilib_src_configure() { + local ffi_cflags ffi_ldflags + if use libffi; then + ffi_cflags=$($(tc-getPKG_CONFIG) --cflags-only-I libffi) + ffi_ldflags=$($(tc-getPKG_CONFIG) --libs-only-L libffi) + fi + + local libdir=$(get_libdir) + local mycmakeargs=( + # disable appending VCS revision to the version to improve + # direct cache hit ratio + -DLLVM_APPEND_VC_REV=OFF + -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr/lib/llvm/${SLOT}" + -DLLVM_LIBDIR_SUFFIX=${libdir#lib} + + -DBUILD_SHARED_LIBS=ON + -DLLVM_TARGETS_TO_BUILD="${LLVM_TARGETS// /;}" + -DLLVM_BUILD_TESTS=$(usex test) + + -DLLVM_ENABLE_FFI=$(usex libffi) + -DLLVM_ENABLE_LIBEDIT=$(usex libedit) + -DLLVM_ENABLE_TERMINFO=$(usex ncurses) + -DLLVM_ENABLE_LIBXML2=$(usex xml) + -DLLVM_ENABLE_ASSERTIONS=$(usex debug) + -DLLVM_ENABLE_EH=ON + -DLLVM_ENABLE_RTTI=ON + + -DWITH_POLLY=OFF # TODO + + -DLLVM_HOST_TRIPLE="${CHOST}" + + -DFFI_INCLUDE_DIR="${ffi_cflags#-I}" + -DFFI_LIBRARY_DIR="${ffi_ldflags#-L}" + # used only for llvm-objdump tool + -DHAVE_LIBXAR=$(multilib_native_usex xar 1 0) + + # disable OCaml bindings (now in dev-ml/llvm-ocaml) + -DOCAMLFIND=NO + ) + +# Note: go bindings have no CMake rules at the moment +# but let's kill the check in case they are introduced +# if ! multilib_is_native_abi || ! use go; then + mycmakeargs+=( + -DGO_EXECUTABLE=GO_EXECUTABLE-NOTFOUND + ) +# fi + + use test && mycmakeargs+=( + -DLLVM_LIT_ARGS="-vv;-j;${LIT_JOBS:-$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")}" + ) + + if multilib_is_native_abi; then + mycmakeargs+=( + -DLLVM_BUILD_DOCS=$(usex doc) + -DLLVM_ENABLE_OCAMLDOC=OFF + -DLLVM_ENABLE_SPHINX=$(usex doc) + -DLLVM_ENABLE_DOXYGEN=OFF + -DLLVM_INSTALL_UTILS=ON + ) + use doc && mycmakeargs+=( + -DCMAKE_INSTALL_MANDIR="${EPREFIX}/usr/lib/llvm/${SLOT}/share/man" + -DLLVM_INSTALL_SPHINX_HTML_DIR="${EPREFIX}/usr/share/doc/${PF}/html" + -DSPHINX_WARNINGS_AS_ERRORS=OFF + ) + use gold && mycmakeargs+=( + -DLLVM_BINUTILS_INCDIR="${EPREFIX}"/usr/include + ) + fi + + if tc-is-cross-compiler; then + local tblgen="${EPREFIX}/usr/lib/llvm/${SLOT}/bin/llvm-tblgen" + [[ -x "${tblgen}" ]] \ + || die "${tblgen} not found or usable" + mycmakeargs+=( + -DCMAKE_CROSSCOMPILING=ON + -DLLVM_TABLEGEN="${tblgen}" + ) + fi + + # workaround BMI bug in gcc-7 (fixed in 7.4) + # https://bugs.gentoo.org/649880 + # apply only to x86, https://bugs.gentoo.org/650506 + if tc-is-gcc && [[ ${MULTILIB_ABI_FLAG} == abi_x86* ]] && + [[ $(gcc-major-version) -eq 7 && $(gcc-minor-version) -lt 4 ]] + then + local CFLAGS="${CFLAGS} -mno-bmi" + local CXXFLAGS="${CXXFLAGS} -mno-bmi" + fi + + # LLVM_ENABLE_ASSERTIONS=NO does not guarantee this for us, #614844 + use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG" + cmake-utils_src_configure +} + +multilib_src_compile() { + cmake-utils_src_compile + + pax-mark m "${BUILD_DIR}"/bin/llvm-rtdyld + pax-mark m "${BUILD_DIR}"/bin/lli + pax-mark m "${BUILD_DIR}"/bin/lli-child-target + + if use test; then + pax-mark m "${BUILD_DIR}"/unittests/ExecutionEngine/Orc/OrcJITTests + pax-mark m "${BUILD_DIR}"/unittests/ExecutionEngine/MCJIT/MCJITTests + pax-mark m "${BUILD_DIR}"/unittests/Support/SupportTests + fi +} + +multilib_src_test() { + # respect TMPDIR! + local -x LIT_PRESERVES_TMP=1 + cmake-utils_src_make check +} + +src_install() { + local MULTILIB_CHOST_TOOLS=( + /usr/lib/llvm/${SLOT}/bin/llvm-config + ) + + local MULTILIB_WRAPPED_HEADERS=( + /usr/include/llvm/Config/llvm-config.h + ) + + local LLVM_LDPATHS=() + multilib-minimal_src_install + + # move wrapped headers back + mv "${ED%/}"/usr/include "${ED%/}"/usr/lib/llvm/${SLOT}/include || die +} + +multilib_src_install() { + cmake-utils_src_install + + # move headers to /usr/include for wrapping + rm -rf "${ED%/}"/usr/include || die + mv "${ED%/}"/usr/lib/llvm/${SLOT}/include "${ED%/}"/usr/include || die + + LLVM_LDPATHS+=( "${EPREFIX}/usr/lib/llvm/${SLOT}/$(get_libdir)" ) +} + +multilib_src_install_all() { + local revord=$(( 9999 - ${SLOT} )) + cat <<-_EOF_ > "${T}/10llvm-${revord}" || die + PATH="${EPREFIX}/usr/lib/llvm/${SLOT}/bin" + # we need to duplicate it in ROOTPATH for Portage to respect... + ROOTPATH="${EPREFIX}/usr/lib/llvm/${SLOT}/bin" + MANPATH="${EPREFIX}/usr/lib/llvm/${SLOT}/share/man" + LDPATH="$( IFS=:; echo "${LLVM_LDPATHS[*]}" )" +_EOF_ + doenvd "${T}/10llvm-${revord}" + + # install pre-generated manpages + if ! use doc; then + # (doman does not support custom paths) + insinto "/usr/lib/llvm/${SLOT}/share/man/man1" + doins "${WORKDIR}/${P}-manpages/llvm"/*.1 + fi + + docompress "/usr/lib/llvm/${SLOT}/share/man" +} + +pkg_postinst() { + elog "You can find additional opt-viewer utility scripts in:" + elog " ${EROOT}/usr/lib/llvm/${SLOT}/share/opt-viewer" + elog "To use these scripts, you will need Python 2.7 along with the following" + elog "packages:" + elog " dev-python/pygments (for opt-viewer)" + elog " dev-python/pyyaml (for all of them)" +} diff --git a/sys-libs/Manifest.gz b/sys-libs/Manifest.gz index 263bac27f2a2..8c57b4470254 100644 Binary files a/sys-libs/Manifest.gz and b/sys-libs/Manifest.gz differ diff --git a/sys-libs/talloc/talloc-2.1.9.ebuild b/sys-libs/talloc/talloc-2.1.9.ebuild index 7d882a2fc7ee..83c666b0d1d7 100644 --- a/sys-libs/talloc/talloc-2.1.9.ebuild +++ b/sys-libs/talloc/talloc-2.1.9.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://www.samba.org/ftp/${PN}/${P}.tar.gz" LICENSE="GPL-3 LGPL-3+ LGPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~sparc-solaris" +KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~sparc-solaris" IUSE="compat +python" REQUIRED_USE="${PYTHON_REQUIRED_USE}" diff --git a/virtual/Manifest.gz b/virtual/Manifest.gz index 8868d0dbc5d0..5658f9ee41b7 100644 Binary files a/virtual/Manifest.gz and b/virtual/Manifest.gz differ diff --git a/virtual/emacs/emacs-26.ebuild b/virtual/emacs/emacs-26.ebuild index f23f7e4c1cc9..e7c8448e5734 100644 --- a/virtual/emacs/emacs-26.ebuild +++ b/virtual/emacs/emacs-26.ebuild @@ -5,6 +5,6 @@ EAPI=6 DESCRIPTION="Virtual for GNU Emacs" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" RDEPEND="|| ( app-editors/emacs:26 >=app-editors/emacs-vcs-26.1 )" diff --git a/virtual/perl-Pod-Parser/perl-Pod-Parser-1.630.0-r4.ebuild b/virtual/perl-Pod-Parser/perl-Pod-Parser-1.630.0-r4.ebuild index 18387df97c37..49e7553519d3 100644 --- a/virtual/perl-Pod-Parser/perl-Pod-Parser-1.630.0-r4.ebuild +++ b/virtual/perl-Pod-Parser/perl-Pod-Parser-1.630.0-r4.ebuild @@ -5,7 +5,7 @@ EAPI=6 DESCRIPTION="Virtual for ${PN#perl-}" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" RDEPEND=" || ( =dev-lang/perl-5.28* =dev-lang/perl-5.26* =dev-lang/perl-5.24* ~perl-core/${PN#perl-}-${PV} ) diff --git a/virtual/python-typing/python-typing-0-r1.ebuild b/virtual/python-typing/python-typing-0-r1.ebuild index 27b8d0b9b327..af93bf809ced 100644 --- a/virtual/python-typing/python-typing-0-r1.ebuild +++ b/virtual/python-typing/python-typing-0-r1.ebuild @@ -9,7 +9,7 @@ inherit python-r1 DESCRIPTION="A virtual for the Python typing module" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x64-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd ~x64-solaris" REQUIRED_USE="${PYTHON_REQUIRED_USE}" RDEPEND="${PYTHON_DEPS} diff --git a/www-client/Manifest.gz b/www-client/Manifest.gz index 4ac98ca9a08e..2fed14df953c 100644 Binary files a/www-client/Manifest.gz and b/www-client/Manifest.gz differ diff --git a/www-client/google-chrome-unstable/Manifest b/www-client/google-chrome-unstable/Manifest index 05d24992d4d6..d5d54bf254e3 100644 --- a/www-client/google-chrome-unstable/Manifest +++ b/www-client/google-chrome-unstable/Manifest @@ -1 +1 @@ -DIST google-chrome-unstable_70.0.3514.0-1_amd64.deb 56585072 BLAKE2B 84fbc0ad5076b1ce8225cc60d91e82bb4fb6fff1fd418b801145792ea7d2100bc56d44873c1a3234e0da4d81993656b345140f9bfd9541c842a98a2b9397c75d SHA512 7f0936f4ebdda3ce2a9c22abe7dafd153d420b414d19777aecbfe1ad9e792c245a8b2b49056a6bb698417c22f42f673470979002468c4d577fbcf799c551d7a5 +DIST google-chrome-unstable_70.0.3521.2-1_amd64.deb 56809642 BLAKE2B 85080bdd451e8552ed742c5382966c7ee219e332034f43a22710b0037834e32cabbdf5885ac72a9e433c8fa579f79f9ed8bac0d3a1fbe3af61003bb9cfc89547 SHA512 4a24ebb1a5759976f09f3730cd3e0d50266f1ceda0ae1a72be19f1e1ae58233810f5cec95418aa4b003ad8e2fd472b97c0fdbc41b714987e6c7a2c2e307b3de3 diff --git a/www-client/google-chrome-unstable/google-chrome-unstable-70.0.3514.0.ebuild b/www-client/google-chrome-unstable/google-chrome-unstable-70.0.3521.2.ebuild similarity index 100% rename from www-client/google-chrome-unstable/google-chrome-unstable-70.0.3514.0.ebuild rename to www-client/google-chrome-unstable/google-chrome-unstable-70.0.3521.2.ebuild diff --git a/www-plugins/Manifest.gz b/www-plugins/Manifest.gz index efb39c85fe52..d791ae95c783 100644 Binary files a/www-plugins/Manifest.gz and b/www-plugins/Manifest.gz differ diff --git a/www-plugins/chrome-binary-plugins/Manifest b/www-plugins/chrome-binary-plugins/Manifest index b222757503ba..026e808f8ce9 100644 --- a/www-plugins/chrome-binary-plugins/Manifest +++ b/www-plugins/chrome-binary-plugins/Manifest @@ -1,3 +1,3 @@ DIST google-chrome-beta_69.0.3497.32-1_amd64.deb 56414518 BLAKE2B 505502be1a2a3cc5472c10f5f605aa4f6c2c0b672a68a1032d746dd39cd97c5b9a02cde0d48f33874c4f4f44647fec4268a4c24681f9be275f5be7725b3f03b2 SHA512 3021ade904b5f9618f43bc39abfeb74e32de884ca9908e7b03b99254f276186f0ebd959e2a73289a9b2e9185c9a89618c35ee4ddc97619e731ee865e5d926de3 DIST google-chrome-stable_68.0.3440.106-1_amd64.deb 54090226 BLAKE2B b75d4eb0b1328cff35737253fd2339758be9d1630053d2e268e44d0fae25668f0c5c130c28b93a58820579a3c5698d46f18e7fb371f6d1704a5f5b9879a0cc6e SHA512 32d8f250039a28bf8343deea056b217b2ef748492d6910cb3704579686427b544d4007d62b8eeb7ecf27b229fbdd2c21fa05c43fa2bafdadb6fe473b6c5ef924 -DIST google-chrome-unstable_70.0.3514.0-1_amd64.deb 56585072 BLAKE2B 84fbc0ad5076b1ce8225cc60d91e82bb4fb6fff1fd418b801145792ea7d2100bc56d44873c1a3234e0da4d81993656b345140f9bfd9541c842a98a2b9397c75d SHA512 7f0936f4ebdda3ce2a9c22abe7dafd153d420b414d19777aecbfe1ad9e792c245a8b2b49056a6bb698417c22f42f673470979002468c4d577fbcf799c551d7a5 +DIST google-chrome-unstable_70.0.3521.2-1_amd64.deb 56809642 BLAKE2B 85080bdd451e8552ed742c5382966c7ee219e332034f43a22710b0037834e32cabbdf5885ac72a9e433c8fa579f79f9ed8bac0d3a1fbe3af61003bb9cfc89547 SHA512 4a24ebb1a5759976f09f3730cd3e0d50266f1ceda0ae1a72be19f1e1ae58233810f5cec95418aa4b003ad8e2fd472b97c0fdbc41b714987e6c7a2c2e307b3de3 diff --git a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-70.0.3514.0_alpha.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-70.0.3521.2_alpha.ebuild similarity index 100% rename from www-plugins/chrome-binary-plugins/chrome-binary-plugins-70.0.3514.0_alpha.ebuild rename to www-plugins/chrome-binary-plugins/chrome-binary-plugins-70.0.3521.2_alpha.ebuild diff --git a/www-servers/Manifest.gz b/www-servers/Manifest.gz index d284a3fb3348..e83e079d57c9 100644 Binary files a/www-servers/Manifest.gz and b/www-servers/Manifest.gz differ diff --git a/www-servers/lighttpd/lighttpd-1.4.45-r1.ebuild b/www-servers/lighttpd/lighttpd-1.4.45-r1.ebuild index 517cf66fb0de..998089c89aff 100644 --- a/www-servers/lighttpd/lighttpd-1.4.45-r1.ebuild +++ b/www-servers/lighttpd/lighttpd-1.4.45-r1.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://download.lighttpd.net/lighttpd/releases-1.4.x/${P}.tar.xz" LICENSE="BSD GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~x86-fbsd" IUSE="bzip2 doc fam gdbm ipv6 kerberos ldap libev libressl lua minimal mmap memcached mysql pcre php rrdtool selinux ssl test webdav xattr zlib" REQUIRED_USE="kerberos? ( ssl !libressl )" diff --git a/www-servers/lighttpd/lighttpd-1.4.49.ebuild b/www-servers/lighttpd/lighttpd-1.4.49.ebuild index efcb7010d961..b13d9470ccd1 100644 --- a/www-servers/lighttpd/lighttpd-1.4.49.ebuild +++ b/www-servers/lighttpd/lighttpd-1.4.49.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://download.lighttpd.net/lighttpd/releases-1.4.x/${P}.tar.xz" LICENSE="BSD GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" IUSE="bzip2 dbi doc fam gdbm geoip ipv6 kerberos ldap libev libressl lua minimal mmap memcached mysql pcre php postgres rrdtool sasl selinux ssl sqlite test webdav xattr zlib" REQUIRED_USE="kerberos? ( ssl !libressl ) diff --git a/x11-apps/Manifest.gz b/x11-apps/Manifest.gz index 5ea920f49b1c..29a4a99183da 100644 Binary files a/x11-apps/Manifest.gz and b/x11-apps/Manifest.gz differ diff --git a/x11-apps/xinit/xinit-1.4.0.ebuild b/x11-apps/xinit/xinit-1.4.0.ebuild index 67abbac0edf9..11869af32fe1 100644 --- a/x11-apps/xinit/xinit-1.4.0.ebuild +++ b/x11-apps/xinit/xinit-1.4.0.ebuild @@ -8,7 +8,7 @@ inherit xorg-2 DESCRIPTION="X Window System initializer" LICENSE="${LICENSE} GPL-2" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux" IUSE="+minimal" RDEPEND=" diff --git a/x11-libs/Manifest.gz b/x11-libs/Manifest.gz index 88edc038d8c2..3ea5139a10a3 100644 Binary files a/x11-libs/Manifest.gz and b/x11-libs/Manifest.gz differ diff --git a/x11-libs/libXtst/libXtst-1.2.3-r1.ebuild b/x11-libs/libXtst/libXtst-1.2.3-r1.ebuild index 2480d438c3ce..245dfc3321b3 100644 --- a/x11-libs/libXtst/libXtst-1.2.3-r1.ebuild +++ b/x11-libs/libXtst/libXtst-1.2.3-r1.ebuild @@ -9,7 +9,7 @@ inherit xorg-2 DESCRIPTION="X.Org Xlib-based client API for the XTEST & RECORD extensions library" -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 ~x86-winnt" +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 ~x86-winnt" IUSE="" RDEPEND="x11-base/xorg-proto diff --git a/x11-libs/libdmx/libdmx-1.1.3-r1.ebuild b/x11-libs/libdmx/libdmx-1.1.3-r1.ebuild index d1f21753e75a..952303706498 100644 --- a/x11-libs/libdmx/libdmx-1.1.3-r1.ebuild +++ b/x11-libs/libdmx/libdmx-1.1.3-r1.ebuild @@ -5,7 +5,7 @@ EAPI=5 inherit xorg-2 DESCRIPTION="X.Org dmx library" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd" IUSE="" RDEPEND="x11-base/xorg-proto diff --git a/x11-libs/libdrm/libdrm-2.4.91.ebuild b/x11-libs/libdrm/libdrm-2.4.91.ebuild index 1cf253a47ba5..5eb1bc8ff251 100644 --- a/x11-libs/libdrm/libdrm-2.4.91.ebuild +++ b/x11-libs/libdrm/libdrm-2.4.91.ebuild @@ -17,7 +17,7 @@ if [[ ${PV} = 9999* ]]; then SRC_URI="" else SRC_URI="https://dri.freedesktop.org/libdrm/${P}.tar.bz2" - KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux" + KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux" fi VIDEO_CARDS="amdgpu exynos freedreno intel nouveau omap radeon tegra vc4 vivante vmware" diff --git a/x11-libs/libpciaccess/libpciaccess-0.14.ebuild b/x11-libs/libpciaccess/libpciaccess-0.14.ebuild index 7fb134876fa6..27d19496e55f 100644 --- a/x11-libs/libpciaccess/libpciaccess-0.14.ebuild +++ b/x11-libs/libpciaccess/libpciaccess-0.14.ebuild @@ -7,7 +7,7 @@ XORG_MULTILIB=yes inherit xorg-2 DESCRIPTION="Library providing generic access to the PCI bus and devices" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="zlib" DEPEND="! -Date: Thu, 17 Jun 2010 22:30:27 +0000 -Subject: Backport fix from bakefile svn for autoconf 2.65. - -Use AC_REQUIRE() instead of directly using a macro, the latter doesn't work -with autoconf 2.65. - -This is a backport of r1337 from bakefile svn to allow people to use autoconf -2.65 immediately and will become unnecessary when we update to the next -bakefile version. - -git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64620 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 - -diff --git a/build/aclocal/bakefile-lang.m4 b/build/aclocal/bakefile-lang.m4 -index 4cc4a67..ec0f711 100644 ---- a/build/aclocal/bakefile-lang.m4 -+++ b/build/aclocal/bakefile-lang.m4 -@@ -240,7 +240,7 @@ dnl check for different proprietary compilers depending on target platform - dnl _AC_BAKEFILE_PROG_COMPILER(LANG) - AC_DEFUN([_AC_BAKEFILE_PROG_COMPILER], - [ -- AC_PROG_$1 -+ AC_REQUIRE([AC_PROG_$1]) - - dnl Intel compiler can be used under several different OS and even - dnl different architectures (x86, amd64 and Itanium) so it's easier to just diff --git a/x11-libs/wxGTK/files/wxGTK-2.8.12.1-bakefile.patch b/x11-libs/wxGTK/files/wxGTK-2.8.12.1-bakefile.patch deleted file mode 100644 index f497665cef8f..000000000000 --- a/x11-libs/wxGTK/files/wxGTK-2.8.12.1-bakefile.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 006b0650b0f390c1e9a19361988b6af7a327e296 Mon Sep 17 00:00:00 2001 -From: nE0sIghT -Date: Wed, 5 Aug 2015 12:38:39 +0300 -Subject: [PATCH 2/2] Fixed bakefile version - ---- - build/aclocal/bakefile.m4 | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/build/aclocal/bakefile.m4 b/build/aclocal/bakefile.m4 -index 88478ca..aa04b16 100644 ---- a/build/aclocal/bakefile.m4 -+++ b/build/aclocal/bakefile.m4 -@@ -837,7 +837,7 @@ AC_DEFUN([AC_BAKEFILE], - AC_SUBST(OBJCXXFLAGS) - - -- BAKEFILE_BAKEFILE_M4_VERSION="0.2.8" -+ BAKEFILE_BAKEFILE_M4_VERSION="0.2.9" - - dnl includes autoconf_inc.m4: - $1 --- -2.4.6 - diff --git a/x11-libs/wxGTK/files/wxGTK-2.8.12.1-fix-c++14.patch b/x11-libs/wxGTK/files/wxGTK-2.8.12.1-fix-c++14.patch deleted file mode 100644 index dc9b14359107..000000000000 --- a/x11-libs/wxGTK/files/wxGTK-2.8.12.1-fix-c++14.patch +++ /dev/null @@ -1,77 +0,0 @@ -Fix building with C++14, which errors out due to narrowing conversions. -See also: https://bugs.gentoo.org/show_bug.cgi?id=592442 - -Patch by Francesco Turco - ---- a/src/gtk/bdiag.xbm -+++ b/src/gtk/bdiag.xbm -@@ -1,6 +1,6 @@ - #define bdiag_width 16 - #define bdiag_height 16 - static char bdiag_bits[] = { -- 0x80, 0x80, 0x40, 0x40, 0x20, 0x20, 0x10, 0x10, 0x08, 0x08, 0x04, 0x04, -- 0x02, 0x02, 0x01, 0x01, 0x80, 0x80, 0x40, 0x40, 0x20, 0x20, 0x10, 0x10, -- 0x08, 0x08, 0x04, 0x04, 0x02, 0x02, 0x01, 0x01}; -+ (char)0x80, (char)0x80, (char)0x40, (char)0x40, (char)0x20, (char)0x20, (char)0x10, (char)0x10, (char)0x08, (char)0x08, (char)0x04, (char)0x04, -+ (char)0x02, (char)0x02, (char)0x01, (char)0x01, (char)0x80, (char)0x80, (char)0x40, (char)0x40, (char)0x20, (char)0x20, (char)0x10, (char)0x10, -+ (char)0x08, (char)0x08, (char)0x04, (char)0x04, (char)0x02, (char)0x02, (char)0x01, (char)0x01}; ---- a/src/gtk/cdiag.xbm -+++ b/src/gtk/cdiag.xbm -@@ -1,6 +1,6 @@ - #define cdiag_width 16 - #define cdiag_height 16 - static char cdiag_bits[] = { -- 0x81, 0x81, 0x42, 0x42, 0x24, 0x24, 0x18, 0x18, 0x18, 0x18, 0x24, 0x24, -- 0x42, 0x42, 0x81, 0x81, 0x81, 0x81, 0x42, 0x42, 0x24, 0x24, 0x18, 0x18, -- 0x18, 0x18, 0x24, 0x24, 0x42, 0x42, 0x81, 0x81}; -+ (char)0x81, (char)0x81, (char)0x42, (char)0x42, (char)0x24, (char)0x24, (char)0x18, (char)0x18, (char)0x18, (char)0x18, (char)0x24, (char)0x24, -+ (char)0x42, (char)0x42, (char)0x81, (char)0x81, (char)0x81, (char)0x81, (char)0x42, (char)0x42, (char)0x24, (char)0x24, (char)0x18, (char)0x18, -+ (char)0x18, (char)0x18, (char)0x24, (char)0x24, (char)0x42, (char)0x42, (char)0x81, (char)0x81}; ---- a/src/gtk/cross.xbm -+++ b/src/gtk/cross.xbm -@@ -1,6 +1,6 @@ - #define cross_width 15 - #define cross_height 15 - static char cross_bits[] = { -- 0x84, 0x10, 0x84, 0x10, 0xff, 0x7f, 0x84, 0x10, 0x84, 0x10, 0x84, 0x10, -- 0x84, 0x10, 0xff, 0x7f, 0x84, 0x10, 0x84, 0x10, 0x84, 0x10, 0x84, 0x10, -- 0xff, 0x7f, 0x84, 0x10, 0x84, 0x10}; -+ (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0xff, (char)0x7f, (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0x84, (char)0x10, -+ (char)0x84, (char)0x10, (char)0xff, (char)0x7f, (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0x84, (char)0x10, -+ (char)0xff, (char)0x7f, (char)0x84, (char)0x10, (char)0x84, (char)0x10}; ---- a/src/gtk/fdiag.xbm -+++ b/src/gtk/fdiag.xbm -@@ -1,6 +1,6 @@ - #define fdiag_width 16 - #define fdiag_height 16 - static char fdiag_bits[] = { -- 0x01, 0x01, 0x02, 0x02, 0x04, 0x04, 0x08, 0x08, 0x10, 0x10, 0x20, 0x20, -- 0x40, 0x40, 0x80, 0x80, 0x01, 0x01, 0x02, 0x02, 0x04, 0x04, 0x08, 0x08, -- 0x10, 0x10, 0x20, 0x20, 0x40, 0x40, 0x80, 0x80}; -+ (char)0x01, (char)0x01, (char)0x02, (char)0x02, (char)0x04, (char)0x04, (char)0x08, (char)0x08, (char)0x10, (char)0x10, (char)0x20, (char)0x20, -+ (char)0x40, (char)0x40, (char)0x80, (char)0x80, (char)0x01, (char)0x01, (char)0x02, (char)0x02, (char)0x04, (char)0x04, (char)0x08, (char)0x08, -+ (char)0x10, (char)0x10, (char)0x20, (char)0x20, (char)0x40, (char)0x40, (char)0x80, (char)0x80}; ---- a/src/gtk/horiz.xbm -+++ b/src/gtk/horiz.xbm -@@ -1,6 +1,6 @@ - #define horiz_width 15 - #define horiz_height 15 - static char horiz_bits[] = { -- 0x00, 0x00, 0x00, 0x00, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -- 0x00, 0x00, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -- 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00}; -+ (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0xff, (char)0x7f, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, -+ (char)0x00, (char)0x00, (char)0xff, (char)0x7f, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, -+ (char)0xff, (char)0x7f, (char)0x00, (char)0x00, (char)0x00, (char)0x00}; ---- a/src/gtk/verti.xbm -+++ b/src/gtk/verti.xbm -@@ -1,6 +1,6 @@ - #define verti_width 15 - #define verti_height 15 - static char verti_bits[] = { -- 0x84, 0x10, 0x84, 0x10, 0x84, 0x10, 0x84, 0x10, 0x84, 0x10, 0x84, 0x10, -- 0x84, 0x10, 0x84, 0x10, 0x84, 0x10, 0x84, 0x10, 0x84, 0x10, 0x84, 0x10, -- 0x84, 0x10, 0x84, 0x10, 0x84, 0x10}; -+ (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0x84, (char)0x10, -+ (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0x84, (char)0x10, -+ (char)0x84, (char)0x10, (char)0x84, (char)0x10, (char)0x84, (char)0x10}; diff --git a/x11-libs/wxGTK/files/wxGTK-2.8.12.1-libdir.patch b/x11-libs/wxGTK/files/wxGTK-2.8.12.1-libdir.patch deleted file mode 100644 index db9571438d86..000000000000 --- a/x11-libs/wxGTK/files/wxGTK-2.8.12.1-libdir.patch +++ /dev/null @@ -1,304 +0,0 @@ -From e87336e8d583044d62b1a9400db4c29f1474fa50 Mon Sep 17 00:00:00 2001 -From: nE0sIghT -Date: Wed, 5 Aug 2015 12:37:36 +0300 -Subject: [PATCH 1/2] Backported new libraries search code - ---- - acinclude.m4 | 75 ++++++++++++++++++++++++++++++++++++++++++++--- - configure.in | 96 +++++++++++++++++++++++------------------------------------- - 2 files changed, 107 insertions(+), 64 deletions(-) - -diff --git a/acinclude.m4 b/acinclude.m4 -index a44747c..1e307c9 100644 ---- a/acinclude.m4 -+++ b/acinclude.m4 -@@ -43,16 +43,17 @@ for ac_dir in $1 /usr/include; - ]) - - dnl --------------------------------------------------------------------------- --dnl call WX_PATH_FIND_LIBRARIES(search path, lib name), sets ac_find_libraries --dnl to the full name of the file that was found or leaves it empty if not found -+dnl call WX_PATH_FIND_LIBRARIES(lib name, [optional extra search paths]) -+dnl sets ac_find_libraries to the full name of the file that was found -+dnl or leaves it empty if not found - dnl --------------------------------------------------------------------------- - AC_DEFUN([WX_PATH_FIND_LIBRARIES], - [ - ac_find_libraries= -- for ac_dir in $1; -+ for ac_dir in $2 $SEARCH_LIB - do - for ac_extension in a so sl dylib dll.a; do -- if test -f "$ac_dir/lib$2.$ac_extension"; then -+ if test -f "$ac_dir/lib$1.$ac_extension"; then - ac_find_libraries=$ac_dir - break 2 - fi -@@ -115,6 +116,72 @@ AC_DEFUN([WX_LINK_PATH_EXIST], - fi - ]) - -+dnl --------------------------------------------------------------------------- -+dnl Usage: WX_FIND_LIB(lib-name, [lib-function to test], [extra search paths]) -+dnl -+dnl Tests in a variety of ways for the presence of lib-name -+dnl -+dnl On success, returns any novel path found in ac_find_libraries; else "std" -+dnl and any cflags in ac_find_cflags -+dnl On failure, ac_find_libraries will be empty -+dnl --------------------------------------------------------------------------- -+AC_DEFUN([WX_FIND_LIB], -+[ -+ ac_find_libraries= -+ -+ dnl Try with pkg-config first. It requires its lib-name parameter lowercase -+ fl_pkgname=`echo "$1" | tr [[:upper:]] [[:lower:]]` -+ dnl suppress PKG_PROG_PKG_CONFIG output; we don't want to keep seeing it -+ PKG_PROG_PKG_CONFIG() AS_MESSAGE_FD> /dev/null -+ PKG_CHECK_MODULES([$1], [$fl_pkgname], -+ [ -+ dnl Start by assuming there are no novel lib paths -+ ac_find_libraries="std" -+ -+ dnl A simple copy of the internal vars $1_CFLAGS $1_LIBS doesn't work -+ dnl inside the macro -+ dnl -+ dnl TODO: When we stop being autoconf 2.61 compatible, the next 2 lines -+ dnl should become: -+ dnl AS_VAR_COPY([ac_find_cflags], [$1_CFLAGS]) -+ dnl AS_VAR_COPY([fl_libs], [$1_LIBS]) -+ eval ac_find_cflags=\$$1_CFLAGS -+ eval fl_libs=\$$1_LIBS -+ -+ dnl fl_libs may now contain -Lfoopath -lfoo (only non-standard paths are -+ dnl added) We only want the path bit, not the lib names -+ for fl_path in $fl_libs -+ do -+ if test `echo "$fl_path" | cut -c 1-2` = "-L"; then -+ dnl there shouldn't be >1 novel path -+ dnl return it without the -L, ready for WX_LINK_PATH_EXIST -+ ac_find_libraries=`echo "$fl_path" | cut -c 3-` -+ fi -+ done -+ ], -+ [ -+ if test "x$ac_find_libraries" = "x"; then -+ dnl Next with AC_CHECK_LIB, if a test function was provided -+ if test "x$2" != "x"; then -+ AC_CHECK_LIB([$1], [$2], [ac_find_libraries="std"]) -+ fi -+ fi -+ -+ if test "x$ac_find_libraries" = "x"; then -+ dnl Finally try the search path -+ dnl Output a message again, as AC_CHECK_LIB will just have said "no" -+ AC_MSG_CHECKING([elsewhere]) -+ dnl $3 will occasionally hold extra path(s) to search -+ WX_PATH_FIND_LIBRARIES([$1], [$3]) -+ if test "x$ac_find_libraries" != "x"; then -+ AC_MSG_RESULT([yes]) -+ else -+ AC_MSG_RESULT([no]) -+ fi -+ fi -+ ]) -+]) -+ - dnl =========================================================================== - dnl C++ features test - dnl =========================================================================== -diff --git a/configure.in b/configure.in -index 021845d..9c78ba3 100644 ---- a/configure.in -+++ b/configure.in -@@ -2767,7 +2767,7 @@ if test "$build" != "$host" -a "$GCC" = yes; then - x_includes=$ac_find_includes - fi - if test -z "$x_libraries" -o "$x_libraries" = NONE; then -- WX_PATH_FIND_LIBRARIES($SEARCH_LIB, Xt) -+ WX_PATH_FIND_LIBRARIES(Xt) - x_libraries=$ac_find_libraries - fi - fi -@@ -3554,7 +3554,7 @@ libraries returned by 'pkg-config gtk+-2.0 --libs' or 'gtk-config - dnl test for external libxpm if we're configured to use it - if test "$wxUSE_GPE" = "yes"; then - AC_MSG_CHECKING(for gpewidget library) -- WX_PATH_FIND_LIBRARIES($SEARCH_LIB,gpewidget) -+ WX_PATH_FIND_LIBRARIES(gpewidget) - if test "$ac_find_libraries" != "" ; then - WX_LINK_PATH_EXIST($ac_find_libraries,$GUI_TK_LIBRARY) - dnl -lgpewidget must be before all GTK libs and -@@ -3567,7 +3567,7 @@ libraries returned by 'pkg-config gtk+-2.0 --libs' or 'gtk-config - fi - - dnl AC_MSG_CHECKING(for gpe library) -- dnl WX_PATH_FIND_LIBRARIES($SEARCH_LIB,gpe) -+ dnl WX_PATH_FIND_LIBRARIES(gpe) - dnl if test "$ac_find_libraries" != "" ; then - dnl WX_LINK_PATH_EXIST($ac_find_libraries,$GUI_TK_LIBRARY) - dnl GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lgpe" -@@ -3817,7 +3817,7 @@ libraries returned by 'pkg-config gtk+-2.0 --libs' or 'gtk-config - - - AC_MSG_CHECKING(for Motif/Lesstif library) -- WX_PATH_FIND_LIBRARIES($SEARCH_LIB, Xm) -+ WX_PATH_FIND_LIBRARIES(Xm) - - if test "x$ac_find_libraries" != "x" ; then - AC_MSG_RESULT(found in $ac_find_libraries) -@@ -3956,7 +3956,7 @@ libraries returned by 'pkg-config gtk+-2.0 --libs' or 'gtk-config - dnl test for external libxpm if we're configured to use it - if test "$wxUSE_LIBXPM" = "sys"; then - AC_MSG_CHECKING(for Xpm library) -- WX_PATH_FIND_LIBRARIES($SEARCH_LIB,Xpm) -+ WX_PATH_FIND_LIBRARIES(Xpm) - if test "$ac_find_libraries" != "" ; then - WX_LINK_PATH_EXIST($ac_find_libraries,$GUI_TK_LIBRARY) - GUI_TK_LIBRARY="$GUI_TK_LIBRARY$ac_path_to_link" -@@ -4192,41 +4192,23 @@ dnl --------------------------------------------------------------------------- - dnl wxDisplay Sanity checks - dnl --------------------------------------------------------------------------- - -+USE_XINERAMA=0 - if test "$wxUSE_DISPLAY" = "yes"; then - dnl --------------------------------------------------------------------------- - dnl Xinerama (for unix ) - Brian Victor - dnl --------------------------------------------------------------------------- - if test "$wxUSE_UNIX" = "yes" -a "$wxUSE_MAC" != 1 -a "$wxUSE_COCOA" != 1; then -- AC_MSG_CHECKING([for Xinerama]) -- WX_PATH_FIND_LIBRARIES([$SEARCH_LIB],Xinerama) -+ WX_FIND_LIB(Xinerama, XineramaQueryScreens) - if test "$ac_find_libraries" != "" ; then -- WX_LINK_PATH_EXIST([$ac_find_libraries],[$LDFLAGS]) -- if test "$ac_path_to_link" != " -L/usr/lib" ; then -- LDFLAGS="$LDFLAGS $ac_path_to_link" -+ if test "$ac_find_libraries" != "std" ; then -+ WX_LINK_PATH_EXIST([$ac_find_libraries],[$LDFLAGS]) -+ if test "$ac_path_to_link" != " -L/usr/lib" ; then -+ LDFLAGS="$LDFLAGS $ac_path_to_link" -+ fi - fi -+ USE_XINERAMA=1 - GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lXinerama" -- AC_MSG_RESULT([yes]) -- -- AC_MSG_CHECKING([for Xxf86vm extension]) -- WX_PATH_FIND_LIBRARIES([$SEARCH_LIB],Xxf86vm) -- if test "$ac_find_libraries" != "" ; then -- AC_MSG_RESULT([yes]) -- AC_CHECK_HEADERS([X11/extensions/xf86vmode.h], -- [ -- GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lXxf86vm" -- ], -- [], -- [ -- #if HAVE_X11_XLIB_H -- #include -- #endif -- ]) -- else -- AC_MSG_RESULT([no]) -- fi -- - else -- AC_MSG_RESULT([no]) - AC_MSG_WARN([Xinerama not found; disabling wxDisplay]) - wxUSE_DISPLAY="no" - fi -@@ -4243,17 +4225,16 @@ dnl X11 session management - dnl --------------------------------------------------------------------------- - if test "$wxUSE_DETECT_SM" = "yes"; then - if test "$wxUSE_UNIX" = "yes" -a "$wxUSE_MAC" != 1 -a "$wxUSE_COCOA" != 1; then -- AC_MSG_CHECKING([for -lSM - X11 session management]) -- WX_PATH_FIND_LIBRARIES([$SEARCH_LIB],SM) -+ WX_FIND_LIB(SM, SmcOpenConnection) - if test "$ac_find_libraries" != "" ; then -- WX_LINK_PATH_EXIST([$ac_find_libraries],[$LDFLAGS]) -- if test "$ac_path_to_link" != " -L/usr/lib" ; then -+ if test "$ac_find_libraries" != "std" ; then -+ WX_LINK_PATH_EXIST([$ac_find_libraries],[$LDFLAGS]) -+ if test "$ac_path_to_link" != " -L/usr/lib" ; then - LDFLAGS="$LDFLAGS $ac_path_to_link" -+ fi - fi - GUI_TK_LIBRARY="$GUI_TK_LIBRARY -lSM" -- AC_MSG_RESULT([yes]) - else -- AC_MSG_RESULT([no]) - AC_MSG_WARN([libSM not found; disabling session management detection]) - wxUSE_DETECT_SM="no" - fi -@@ -4295,51 +4276,46 @@ if test "$wxUSE_OPENGL" = "yes"; then - AC_CHECK_HEADER(GL/glu.h, [ - found_gl=0 - -- AC_MSG_CHECKING([for -lGL]) -- WX_PATH_FIND_LIBRARIES([$SEARCH_LIB /opt/graphics/OpenGL/lib],GL) -+ WX_FIND_LIB(GL, glBegin, [/opt/graphics/OpenGL/lib]) - if test "$ac_find_libraries" != "" ; then -- AC_MSG_RESULT([found in $ac_find_libraries]) -- -- WX_LINK_PATH_EXIST([$ac_find_libraries],[$LDFLAGS]) -- if test "$ac_path_to_link" != " -L/usr/lib" ; then -+ if test "$ac_find_libraries" != "std" ; then -+ WX_LINK_PATH_EXIST([$ac_find_libraries],[$LDFLAGS]) -+ if test "$ac_path_to_link" != " -L/usr/lib" ; then - LDFLAGS_GL="$ac_path_to_link" -+ fi - fi - - dnl don't suppose that libGL and libGLU are always in the - dnl same directory -- this is not true for some common - dnl distributions -- AC_MSG_CHECKING([for -lGLU]) -- WX_PATH_FIND_LIBRARIES([$SEARCH_LIB],GLU) -+ WX_FIND_LIB(GLU, gluBeginCurve, [/opt/graphics/OpenGL/lib]) - if test "$ac_find_libraries" != "" ; then -+ if test "$ac_find_libraries" != "std" ; then - WX_LINK_PATH_EXIST([$ac_find_libraries],[$LDFLAGS]) - if test "$ac_path_to_link" != " -L/usr/lib" -a \ -- "$ac_path_to_link" != "$LDFLAGS_GL"; then -- LDFLAGS_GL="$LDFLAGS_GL$ac_path_to_link" -+ "$ac_path_to_link" != "$LDFLAGS_GL" ; then -+ LDFLAGS_GL="$LDFLAGS_GL$ac_path_to_link" - fi -+ fi - - found_gl=1 - OPENGL_LIBS="-lGL -lGLU" -- AC_MSG_RESULT([yes]) -- else -- AC_MSG_RESULT([no]) - fi -- else -- AC_MSG_RESULT([no]) - fi - - if test "$found_gl" != 1; then -- AC_MSG_CHECKING([for -lMesaGL]) -- WX_PATH_FIND_LIBRARIES([$SEARCH_LIB],MesaGL) -+ WX_FIND_LIB(MesaGL, glEnable, [/opt/graphics/OpenGL/lib]) - if test "$ac_find_libraries" != "" ; then -+ if test "$ac_find_libraries" != "std" ; then - WX_LINK_PATH_EXIST([$ac_find_libraries],[$LDFLAGS]) -- LDFLAGS_GL="$LDFLAGS$ac_path_to_link" -- OPENGL_LIBS="-lMesaGL -lMesaGLU" -- AC_MSG_RESULT([yes]) -- else -- AC_MSG_RESULT([no]) -+ if test "$ac_path_to_link" != " -L/usr/lib" ; then -+ LDFLAGS_GL="$LDFLAGS_GL$ac_path_to_link" -+ fi -+ fi -+ OPENGL_LIBS="-lMesaGL -lMesaGLU" - fi - fi -- ]) -+ ],, [ ]) - ], - [], - [ ]) --- -2.4.6 - diff --git a/x11-libs/wxGTK/files/wxGTK-2.8.7-mmedia.patch b/x11-libs/wxGTK/files/wxGTK-2.8.7-mmedia.patch deleted file mode 100644 index cbe3103a0bce..000000000000 --- a/x11-libs/wxGTK/files/wxGTK-2.8.7-mmedia.patch +++ /dev/null @@ -1,11 +0,0 @@ -diff -Naur wxPython-src-2.8.7.1-orig/contrib/src/Makefile.in wxPython-src-2.8.7.1/contrib/src/Makefile.in ---- wxPython-src-2.8.7.1-orig/contrib/src/Makefile.in 2007-07-27 17:57:27.000000000 -0600 -+++ wxPython-src-2.8.7.1/contrib/src/Makefile.in 2007-12-28 17:34:28.000000000 -0600 -@@ -1,6 +1,6 @@ - # $Id$ - --CONTRIB_SUBDIRS=fl gizmos mmedia ogl plot stc svg #deprecated #applet -+CONTRIB_SUBDIRS=fl gizmos ogl plot stc svg #deprecated #applet mmedia - - all: - @for d in $(CONTRIB_SUBDIRS); do (cd $$d && $(MAKE)); done diff --git a/x11-libs/wxGTK/metadata.xml b/x11-libs/wxGTK/metadata.xml index e8b0e7257496..aa10f7e1f6dd 100644 --- a/x11-libs/wxGTK/metadata.xml +++ b/x11-libs/wxGTK/metadata.xml @@ -10,9 +10,6 @@ Enable the wxMediaCtrl class for playing audio and video through gstreamer. - - Use gnome-base/libgnomeprintui for printing tasks. - Use Simple Directmedia Layer (media-libs/libsdl) for audio. diff --git a/x11-libs/wxGTK/wxGTK-2.8.12.1-r2.ebuild b/x11-libs/wxGTK/wxGTK-2.8.12.1-r2.ebuild deleted file mode 100644 index 5bfab6f5f38e..000000000000 --- a/x11-libs/wxGTK/wxGTK-2.8.12.1-r2.ebuild +++ /dev/null @@ -1,184 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -inherit autotools eutils flag-o-matic versionator multilib-minimal - -DESCRIPTION="GTK+ version of wxWidgets, a cross-platform C++ GUI toolkit" -HOMEPAGE="https://wxwidgets.org/" - -BASE_PV="$(get_version_component_range 1-3)" -BASE_P="${PN}-${BASE_PV}" - -# we use the wxPython tarballs because they include the full wxGTK sources and -# docs, and are released more frequently than wxGTK. -SRC_URI="mirror://sourceforge/wxpython/wxPython-src-${PV}.tar.bz2" - -KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" -IUSE="+X aqua doc debug gnome gstreamer odbc opengl pch sdl tiff" - -SLOT="2.8" - -RDEPEND=" - dev-libs/expat[${MULTILIB_USEDEP}] - odbc? ( dev-db/unixODBC[${MULTILIB_USEDEP}] ) - sdl? ( media-libs/libsdl[${MULTILIB_USEDEP}] ) - X? ( - dev-libs/glib:2[${MULTILIB_USEDEP}] - media-libs/libpng:0=[${MULTILIB_USEDEP}] - sys-libs/zlib[${MULTILIB_USEDEP}] - virtual/jpeg:0=[${MULTILIB_USEDEP}] - x11-libs/gtk+:2[${MULTILIB_USEDEP}] - x11-libs/libSM[${MULTILIB_USEDEP}] - x11-libs/libXinerama[${MULTILIB_USEDEP}] - x11-libs/libXxf86vm[${MULTILIB_USEDEP}] - x11-libs/pango[X,${MULTILIB_USEDEP}] - gnome? ( gnome-base/libgnomeprintui:2.2[${MULTILIB_USEDEP}] ) - gstreamer? ( - gnome-base/gconf:2[${MULTILIB_USEDEP}] - media-libs/gstreamer:0.10[${MULTILIB_USEDEP}] - media-libs/gst-plugins-base:0.10[${MULTILIB_USEDEP}] ) - opengl? ( virtual/opengl[${MULTILIB_USEDEP}] ) - tiff? ( media-libs/tiff:0[${MULTILIB_USEDEP}] ) - ) - aqua? ( - x11-libs/gtk+:2[aqua=,${MULTILIB_USEDEP}] - virtual/jpeg:0=[${MULTILIB_USEDEP}] - tiff? ( media-libs/tiff:0[${MULTILIB_USEDEP}] ) - )" - -DEPEND="${RDEPEND} - virtual/pkgconfig[${MULTILIB_USEDEP}] - opengl? ( virtual/glu[${MULTILIB_USEDEP}] ) - X? ( x11-base/xorg-proto ) -" - -PDEPEND=">=app-eselect/eselect-wxwidgets-0.7" - -LICENSE="wxWinLL-3 - GPL-2 - odbc? ( LGPL-2 ) - doc? ( wxWinFDL-3 )" - -S="${WORKDIR}/wxPython-src-${PV}" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-2.8.11-unicode-odbc.patch - epatch "${FILESDIR}"/${PN}-2.8.11-collision.patch - epatch "${FILESDIR}"/${PN}-2.8.7-mmedia.patch # Bug #174874 - epatch "${FILESDIR}"/${PN}-2.8.10.1-odbc-defines.patch # Bug #310923 - epatch "${FILESDIR}"/${PN}-2.8.12.1-fix-c++14.patch # Bug #592442 - - # Bug #421851 - epatch "${FILESDIR}"/${P}-libdir.patch - epatch "${FILESDIR}"/${P}-bakefile.patch - epatch "${FILESDIR}"/${P}-autoconf.patch - - # prefix https://bugs.gentoo.org/394123 - sed -i -e "s:/usr:${EPREFIX}/usr:g" \ - -e '/SEARCH_INCLUDE="\\/,/"/cSEARCH_INCLUDE="'${EPREFIX}'/usr/include"' \ - configure || die - - epatch_user - - mv configure.in configure.ac || die - eautoconf -} - -multilib_src_configure() { - local myconf - - append-flags -fno-strict-aliasing - - # X independent options - myconf="--enable-compat26 - --enable-shared - --enable-unicode - --with-regex=builtin - --with-zlib=sys - --with-expat=sys - $(use_enable debug) - $(use_enable pch precomp-headers) - $(use_with odbc odbc sys) - $(use_with sdl) - $(use_with tiff libtiff sys)" - - # wxGTK options - # --enable-graphics_ctx - needed for webkit, editra - # --without-gnomevfs - bug #203389 - use X && \ - myconf="${myconf} - --enable-graphics_ctx - --enable-gui - --with-libpng=sys - --with-libxpm=sys - --with-libjpeg=sys - $(use_enable gstreamer mediactrl) - $(use_enable opengl) - $(use_with opengl) - $(use_with gnome gnomeprint) - --without-gnomevfs" - - use aqua && \ - myconf="${myconf} - --enable-graphics_ctx - --enable-gui - --with-libpng=sys - --with-libxpm=sys - --with-libjpeg=sys - --with-mac - --with-opengl" - # cocoa toolkit seems to be broken - - # wxBase options - if use !X && use !aqua ; then - myconf="${myconf} - --disable-gui" - fi - - ECONF_SOURCE="${S}" econf ${myconf} -} - -multilib_src_compile() { - emake - - if [[ -d contrib/src ]]; then - cd contrib/src || die - emake - fi -} - -multilib_src_install() { - default - - if [[ -d contrib/src ]]; then - cd contrib/src || die - emake DESTDIR="${D}" install - fi -} - -multilib_src_install_all() { - cd "${S}"/docs || die - dodoc changes.txt readme.txt todo30.txt - newdoc base/readme.txt base_readme.txt - newdoc gtk/readme.txt gtk_readme.txt - - if use doc; then - dodoc -r "${S}"/docs/html - fi - - # Stray windows locale file, causes collisions - local wxmsw="${ED}usr/share/locale/it/LC_MESSAGES/wxmsw.mo" - [[ -e ${wxmsw} ]] && rm "${wxmsw}" -} - -pkg_postinst() { - has_version app-eselect/eselect-wxwidgets \ - && eselect wxwidgets update -} - -pkg_postrm() { - has_version app-eselect/eselect-wxwidgets \ - && eselect wxwidgets update -} diff --git a/x11-misc/Manifest.gz b/x11-misc/Manifest.gz index 918707370448..03fa7e574b7e 100644 Binary files a/x11-misc/Manifest.gz and b/x11-misc/Manifest.gz differ diff --git a/x11-misc/xkeyboard-config/xkeyboard-config-2.23.1-r1.ebuild b/x11-misc/xkeyboard-config/xkeyboard-config-2.23.1-r1.ebuild index f69fd4b0d123..311bf01f70d6 100644 --- a/x11-misc/xkeyboard-config/xkeyboard-config-2.23.1-r1.ebuild +++ b/x11-misc/xkeyboard-config/xkeyboard-config-2.23.1-r1.ebuild @@ -12,7 +12,7 @@ DESCRIPTION="X keyboard configuration database" HOMEPAGE="https://www.freedesktop.org/wiki/Software/XKeyboardConfig" [[ ${PV} == *9999* ]] || SRC_URI="https://www.x.org/releases/individual/data/xkeyboard-config/${P}.tar.bz2" -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 ~x86-solaris" +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 ~x86-solaris" IUSE="" LICENSE="MIT"