diff --git a/Manifest.files.gz b/Manifest.files.gz index 6ea3bdb0b26f..f17398dbfff7 100644 Binary files a/Manifest.files.gz and b/Manifest.files.gz differ diff --git a/app-emacs/Manifest.gz b/app-emacs/Manifest.gz index f842b31fba31..5e8734dec25e 100644 Binary files a/app-emacs/Manifest.gz and b/app-emacs/Manifest.gz differ diff --git a/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.6-r2.ebuild b/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.6-r1.ebuild similarity index 90% rename from app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.6-r2.ebuild rename to app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.6-r1.ebuild index 5e48e30334cd..84eab96b484e 100644 --- a/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.6-r2.ebuild +++ b/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.6-r1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=6 -inherit elisp-common desktop xdg-utils gnome2-utils readme.gentoo-r1 +inherit elisp-common desktop xdg-utils gnome2-utils readme.gentoo-r1 user DESCRIPTION="Common files needed by all GNU Emacs versions" HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Emacs" @@ -11,13 +11,15 @@ SRC_URI="https://dev.gentoo.org/~ulm/emacs/${P}.tar.xz" LICENSE="GPL-3+" SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~riscv ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-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 ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE="games X" -RDEPEND="games? ( acct-group/gamestat )" -DEPEND="${RDEPEND}" PDEPEND="virtual/emacs" +pkg_setup() { + use games && enewgroup gamestat 36 +} + src_install() { insinto "${SITELISP}" doins subdirs.el diff --git a/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.6-r3.ebuild b/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.6-r3.ebuild new file mode 100644 index 000000000000..abe44b42f393 --- /dev/null +++ b/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.6-r3.ebuild @@ -0,0 +1,102 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit elisp-common desktop xdg-utils readme.gentoo-r1 + +DESCRIPTION="Common files needed by all GNU Emacs versions" +HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Emacs" +SRC_URI="https://dev.gentoo.org/~ulm/emacs/${P}.tar.xz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="games X" + +RDEPEND="games? ( acct-group/gamestat )" +DEPEND="${RDEPEND}" +PDEPEND="virtual/emacs" + +src_install() { + insinto "${SITELISP}" + doins subdirs.el + newins site-gentoo.el{,.orig} + + keepdir /etc/emacs + insinto /etc/emacs + doins site-start.el + + if use games; then + keepdir /var/games/emacs + fowners 0:gamestat /var/games/emacs + fperms g+w /var/games/emacs + fi + + if use X; then + local i + domenu emacs.desktop emacsclient.desktop || die + + pushd icons || die + newicon sink.png emacs-sink.png + newicon emacs25_48.png emacs.png + for i in 16 24 32 48 128; do + [[ ${i} -le 48 ]] && newicon -s ${i} emacs22_${i}.png emacs22.png + newicon -s ${i} emacs23_${i}.png emacs23.png + newicon -s ${i} emacs25_${i}.png emacs.png + done + doicon -s scalable emacs23.svg + newicon -s scalable emacs25.svg emacs.svg + popd + fi + + DOC_CONTENTS="All site initialisation for Gentoo-installed packages is + added to ${SITELISP}/site-gentoo.el. In order for this site + initialisation to be loaded for all users automatically, a default + site startup file /etc/emacs/site-start.el is installed. You are + responsible for maintenance of this file. + \n\nAlternatively, individual users can add the following command: + \n\n(require 'site-gentoo) + \n\nto their ~/.emacs initialisation files, or, for greater + flexibility, users may load single package-specific initialisation + files from the ${SITELISP}/site-gentoo.d/ directory." + readme.gentoo_create_doc +} + +pkg_preinst() { + # make sure that site-gentoo.el exists since site-start.el requires it + if [[ ! -f ${ED}${SITELISP}/site-gentoo.el ]]; then #554518 + mv "${ED}${SITELISP}"/site-gentoo.el{.orig,} || die + fi + if [[ -d ${EROOT}${SITELISP} ]]; then + elisp-site-regen + cp "${EROOT}${SITELISP}/site-gentoo.el" "${ED}${SITELISP}/" || die + fi + + if use games; then + local f + for f in /var/games/emacs/{snake,tetris}-scores; do + if [[ -e ${EROOT}${f} ]]; then + cp "${EROOT}${f}" "${ED}${f}" || die + fi + touch "${ED}${f}" || die + chgrp gamestat "${ED}${f}" || die + chmod g+w "${ED}${f}" || die + done + fi +} + +pkg_postinst() { + if use X; then + xdg_desktop_database_update + xdg_icon_cache_update + fi + readme.gentoo_print_elog +} + +pkg_postrm() { + if use X; then + xdg_desktop_database_update + xdg_icon_cache_update + fi +} diff --git a/dev-libs/Manifest.gz b/dev-libs/Manifest.gz index 24e86440f9e4..412188fd7151 100644 Binary files a/dev-libs/Manifest.gz and b/dev-libs/Manifest.gz differ diff --git a/dev-libs/liblouis/liblouis-3.10.0.ebuild b/dev-libs/liblouis/liblouis-3.10.0.ebuild index 4df6d31e3ae5..07dbdf708bdd 100644 --- a/dev-libs/liblouis/liblouis-3.10.0.ebuild +++ b/dev-libs/liblouis/liblouis-3.10.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/liblouis/liblouis/archive/v${PV}.tar.gz -> ${P}.tar. LICENSE="LGPL-2.1+" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86" IUSE="python" BDEPEND="sys-apps/help2man" RDEPEND="python? ( ${PYTHON_DEPS} )" diff --git a/dev-libs/libofx/files/libofx-0.9.14-0001-Makefile.am-remove-INSTALL-from-docs.patch b/dev-libs/libofx/files/libofx-0.9.14-0001-Makefile.am-remove-INSTALL-from-docs.patch new file mode 100644 index 000000000000..b4e68e43ec34 --- /dev/null +++ b/dev-libs/libofx/files/libofx-0.9.14-0001-Makefile.am-remove-INSTALL-from-docs.patch @@ -0,0 +1,28 @@ +From a8f965718de5c046fa64344b6bae521cbd5a6a20 Mon Sep 17 00:00:00 2001 +From: Bernd Waibel +Date: Wed, 21 Aug 2019 10:50:46 +0200 +Subject: [PATCH] Makefile.am: remove INSTALL from docs + +Gentoo specific: Remove the missing INSTALL file from Makefile.am +This could have been copied by eautoreconf, but unfortunately isn't. + +Signed-off-by: Bernd Waibel +--- + Makefile.am | 1 - + 1 file changed, 1 deletion(-) + +diff --git a/Makefile.am b/Makefile.am +index 3a83560..fd81144 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -11,7 +11,6 @@ docdir = $(datadir)/doc/libofx + doc_DATA = \ + AUTHORS \ + COPYING \ +- INSTALL \ + NEWS \ + README \ + ChangeLog \ +-- +2.22.0 + diff --git a/dev-libs/libofx/libofx-0.9.14-r1.ebuild b/dev-libs/libofx/libofx-0.9.14-r1.ebuild new file mode 100644 index 000000000000..fd778ed1a508 --- /dev/null +++ b/dev-libs/libofx/libofx-0.9.14-r1.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools flag-o-matic + +DESCRIPTION="A library to support the Open Financial eXchange XML format" +HOMEPAGE="https://github.com/libofx/libofx" +SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0/7" +KEYWORDS="~amd64 ~hppa ~x86" +IUSE="static-libs test" + +RDEPEND=" + >=dev-cpp/libxmlpp-2.40.1:2.6 + >=net-misc/curl-7.9.7 + virtual/libiconv +" +DEPEND=" + ${RDEPEND} + >app-text/opensp-1.5 +" +BDEPEND=" + dev-util/gengetopt + sys-apps/help2man + virtual/pkgconfig + test? ( app-crypt/gnupg ) +" + +PATCHES=( + "${FILESDIR}/${P}-0001-Makefile.am-remove-INSTALL-from-docs.patch" +) + +# workaround needed for ofxconnect to compile +MAKEOPTS="-j1" + +src_prepare() { + default + eautoreconf + + # we will tell you where we wants the docs! + sed -i -e 's:docdir.*::' Makefile.am || die + + # configure arguments alone don't disable everything + sed -e "/^SUBDIRS/s/doc//" -i Makefile.am || die + + append-cxxflags -std=c++14 +} + +src_configure() { + econf --docdir=/usr/share/doc/${PF} +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die + if ! use static-libs; then + find "${D}" -type f -name '*.a' -delete || die + fi +} diff --git a/dev-ruby/Manifest.gz b/dev-ruby/Manifest.gz index 6f2de738ac2f..c03fb638e324 100644 Binary files a/dev-ruby/Manifest.gz and b/dev-ruby/Manifest.gz differ diff --git a/dev-ruby/rspec-core/rspec-core-3.8.2.ebuild b/dev-ruby/rspec-core/rspec-core-3.8.2.ebuild index 3001460f0c23..89c08b7c5e06 100644 --- a/dev-ruby/rspec-core/rspec-core-3.8.2.ebuild +++ b/dev-ruby/rspec-core/rspec-core-3.8.2.ebuild @@ -22,7 +22,7 @@ SRC_URI="https://github.com/rspec/${PN}/archive/v${PV}.tar.gz -> ${P}-git.tgz" LICENSE="MIT" SLOT="3" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="highlight" SUBVERSION="$(ver_cut 1-2)" diff --git a/dev-ruby/rspec-expectations/rspec-expectations-3.8.4.ebuild b/dev-ruby/rspec-expectations/rspec-expectations-3.8.4.ebuild index 4824329e6218..ce2cbe5607dc 100644 --- a/dev-ruby/rspec-expectations/rspec-expectations-3.8.4.ebuild +++ b/dev-ruby/rspec-expectations/rspec-expectations-3.8.4.ebuild @@ -19,7 +19,7 @@ SRC_URI="https://github.com/rspec/${PN}/archive/v${PV}.tar.gz -> ${P}-git.tgz" LICENSE="MIT" SLOT="3" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" SUBVERSION="$(ver_cut 1-2)" diff --git a/dev-ruby/rspec-mocks/rspec-mocks-3.8.1.ebuild b/dev-ruby/rspec-mocks/rspec-mocks-3.8.1.ebuild index 9fc734d5aa0e..c9bc10621f7e 100644 --- a/dev-ruby/rspec-mocks/rspec-mocks-3.8.1.ebuild +++ b/dev-ruby/rspec-mocks/rspec-mocks-3.8.1.ebuild @@ -17,7 +17,7 @@ SRC_URI="https://github.com/rspec/${PN}/archive/v${PV}.tar.gz -> ${P}-git.tgz" LICENSE="MIT" SLOT="3" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" SUBVERSION="$(ver_cut 1-2)" diff --git a/dev-ruby/rspec-support/rspec-support-3.8.2.ebuild b/dev-ruby/rspec-support/rspec-support-3.8.2.ebuild index fd0d94b690bc..a10afc1dce48 100644 --- a/dev-ruby/rspec-support/rspec-support-3.8.2.ebuild +++ b/dev-ruby/rspec-support/rspec-support-3.8.2.ebuild @@ -19,7 +19,7 @@ SRC_URI="https://github.com/rspec/${PN}/archive/v${PV}.tar.gz -> ${P}-git.tgz" LICENSE="MIT" SLOT="3" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" ruby_add_bdepend "test? ( >=dev-ruby/rspec-3.8.0:3 >=dev-ruby/thread_order-1.1.0 )" diff --git a/dev-ruby/rspec/rspec-3.8.0.ebuild b/dev-ruby/rspec/rspec-3.8.0.ebuild index e4b27f605e99..74e5a0819369 100644 --- a/dev-ruby/rspec/rspec-3.8.0.ebuild +++ b/dev-ruby/rspec/rspec-3.8.0.ebuild @@ -16,7 +16,7 @@ HOMEPAGE="https://github.com/rspec/rspec" LICENSE="MIT" SLOT="3" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86" IUSE="" SUBVERSION="$(ver_cut 1-2)" diff --git a/dev-vcs/Manifest.gz b/dev-vcs/Manifest.gz index 0436d132912a..8a98bfdfd196 100644 Binary files a/dev-vcs/Manifest.gz and b/dev-vcs/Manifest.gz differ diff --git a/dev-vcs/gitg/gitg-3.32.1.ebuild b/dev-vcs/gitg/gitg-3.32.1.ebuild index eebf3483fd21..5fee531ed8b8 100644 --- a/dev-vcs/gitg/gitg-3.32.1.ebuild +++ b/dev-vcs/gitg/gitg-3.32.1.ebuild @@ -3,7 +3,8 @@ EAPI=7 PYTHON_COMPAT=( python3_{5,6,7} ) -VALA_MIN_API_VERSION="0.32" # Needed when gtk+-3.20 is found +# vala-0.36 fails to build, https://bugs.gentoo.org/692538 +VALA_MIN_API_VERSION="0.40" inherit gnome.org gnome2-utils meson python-r1 vala xdg-utils diff --git a/media-gfx/Manifest.gz b/media-gfx/Manifest.gz index c92f583de8c6..6da25fd3cd95 100644 Binary files a/media-gfx/Manifest.gz and b/media-gfx/Manifest.gz differ diff --git a/media-gfx/digikam/digikam-6.2.0.ebuild b/media-gfx/digikam/digikam-6.2.0.ebuild index 4478b85ae239..d28773546dc8 100644 --- a/media-gfx/digikam/digikam-6.2.0.ebuild +++ b/media-gfx/digikam/digikam-6.2.0.ebuild @@ -109,6 +109,7 @@ RESTRICT+=" test" PATCHES=( "${FILESDIR}/${P}-googlephoto-upload.patch" "${FILESDIR}/${P}-cmake.patch" + "${FILESDIR}/${P}-imagemagick-7.0.8.60.patch" ) pkg_pretend() { diff --git a/media-gfx/digikam/files/digikam-6.2.0-imagemagick-7.0.8.60.patch b/media-gfx/digikam/files/digikam-6.2.0-imagemagick-7.0.8.60.patch new file mode 100644 index 000000000000..264da2c34f29 --- /dev/null +++ b/media-gfx/digikam/files/digikam-6.2.0-imagemagick-7.0.8.60.patch @@ -0,0 +1,14 @@ +--- a/core/tests/dimg/magickloader.cpp ++++ a/core/tests/dimg/magickloader.cpp +@@ -139,7 +139,11 @@ int main(int argc, char** argv) + if (inf->encoder) mode.append(QLatin1Char('W')); + else mode.append(QLatin1Char('-')); + ++#if( (MagickLibVersion >= 0x708) && defined(magick_module) ) /* defined since 7.0.8.60 */ ++ QString module = QLatin1String(inf->magick_module); ++#else + QString module = QLatin1String(inf->module); ++#endif + QString mime = QMimeDatabase().mimeTypeForFile(QFileInfo(QString::fromLatin1("foo.%1").arg(module))).name(); + + if (module != QLatin1String("DNG") && \ No newline at end of file diff --git a/media-libs/Manifest.gz b/media-libs/Manifest.gz index 43d1e61125b9..19ea4dfff702 100644 Binary files a/media-libs/Manifest.gz and b/media-libs/Manifest.gz differ diff --git a/media-libs/phonon-gstreamer/phonon-gstreamer-9999.ebuild b/media-libs/phonon-gstreamer/phonon-gstreamer-9999.ebuild deleted file mode 100644 index 777afe2e954d..000000000000 --- a/media-libs/phonon-gstreamer/phonon-gstreamer-9999.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit kde5 - -DESCRIPTION="GStreamer backend for the Phonon multimedia library" -HOMEPAGE="https://phonon.kde.org/" - -if [[ ${KDE_BUILD_TYPE} = release ]]; then - SRC_URI="mirror://kde/stable/phonon/phonon-backend-gstreamer/${PV}/phonon-backend-gstreamer-${PV}.tar.xz" - KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-fbsd" -fi - -LICENSE="LGPL-2.1+ || ( LGPL-2.1 LGPL-3 )" -SLOT="0" -IUSE="alsa debug +network" - -BDEPEND=" - dev-qt/linguist-tools:5 - virtual/pkgconfig -" -DEPEND=" - dev-libs/glib:2 - dev-libs/libxml2:2 - dev-qt/qtgui:5 - dev-qt/qtopengl:5 - dev-qt/qtwidgets:5 - dev-qt/qtx11extras:5 - media-libs/gst-plugins-base:1.0 - media-libs/gstreamer:1.0 - >=media-libs/phonon-4.10.60 - media-plugins/gst-plugins-meta:1.0[alsa?,ogg,vorbis] - virtual/opengl -" -RDEPEND="${DEPEND} - network? ( media-plugins/gst-plugins-soup:1.0 ) -" diff --git a/media-libs/phonon-vlc/phonon-vlc-9999.ebuild b/media-libs/phonon-vlc/phonon-vlc-9999.ebuild deleted file mode 100644 index 890afef5f158..000000000000 --- a/media-libs/phonon-vlc/phonon-vlc-9999.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit kde5 - -DESCRIPTION="VLC backend for the Phonon multimedia library" -HOMEPAGE="https://phonon.kde.org/" - -if [[ ${KDE_BUILD_TYPE} = release ]]; then - SRC_URI="mirror://kde/stable/phonon/phonon-backend-vlc/${PV}/phonon-backend-vlc-${PV}.tar.xz" - KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" -fi - -LICENSE="LGPL-2.1+ || ( LGPL-2.1 LGPL-3 )" -SLOT="0" -IUSE="debug" - -BDEPEND=" - virtual/pkgconfig -" -DEPEND=" - dev-qt/qtgui:5 - dev-qt/qtwidgets:5 - >=media-libs/phonon-4.10.60 - media-video/vlc:=[dbus,ogg,vorbis] -" -RDEPEND="${DEPEND}" diff --git a/media-libs/phonon/metadata.xml b/media-libs/phonon/metadata.xml index 206f8e058c2c..c965ebc5d239 100644 --- a/media-libs/phonon/metadata.xml +++ b/media-libs/phonon/metadata.xml @@ -6,7 +6,6 @@ Gentoo KDE Project - Install device preferences and backend settings GUI Install plugin for dev-qt/designer Install VLC Phonon backend diff --git a/media-libs/phonon/phonon-9999.ebuild b/media-libs/phonon/phonon-9999.ebuild deleted file mode 100644 index cee83b281de2..000000000000 --- a/media-libs/phonon/phonon-9999.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit kde5 - -DESCRIPTION="KDE multimedia abstraction library" -HOMEPAGE="https://phonon.kde.org/" - -if [[ ${KDE_BUILD_TYPE} = release ]]; then - SRC_URI="mirror://kde/stable/phonon/${PV}/${P}.tar.xz" - KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-fbsd" -fi - -LICENSE="|| ( LGPL-2.1 LGPL-3 )" -SLOT="0" -IUSE="debug designer gstreamer gui pulseaudio +vlc" - -BDEPEND=" - dev-qt/linguist-tools:5 - virtual/pkgconfig -" -DEPEND=" - !!dev-qt/qtphonon:4 - dev-qt/qtdbus:5 - dev-qt/qtgui:5 - dev-qt/qtwidgets:5 - designer? ( dev-qt/designer:5 ) - pulseaudio? ( - dev-libs/glib:2 - media-sound/pulseaudio[glib] - ) -" -RDEPEND="${DEPEND}" -PDEPEND=" - gstreamer? ( >=media-libs/phonon-gstreamer-4.9.60 ) - vlc? ( >=media-libs/phonon-vlc-0.9.60 ) -" - -src_configure() { - local mycmakeargs=( - -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Declarative=ON - -DPHONON_BUILD_DESIGNER_PLUGIN=$(usex designer) - -DCMAKE_DISABLE_FIND_PACKAGE_GLIB2=$(usex !pulseaudio) - -DCMAKE_DISABLE_FIND_PACKAGE_PulseAudio=$(usex !pulseaudio) - -DPHONON_BUILD_SETTINGS=$(usex gui) - ) - kde5_src_configure -} diff --git a/media-sound/Manifest.gz b/media-sound/Manifest.gz index 39558ab5d13b..16109a761767 100644 Binary files a/media-sound/Manifest.gz and b/media-sound/Manifest.gz differ diff --git a/media-sound/mpd/Manifest b/media-sound/mpd/Manifest index 40fe268feeda..493fda4573bd 100644 --- a/media-sound/mpd/Manifest +++ b/media-sound/mpd/Manifest @@ -2,3 +2,4 @@ DIST mpd-0.21.10.tar.xz 670952 BLAKE2B efebbd5202b82e52800ff7e4f60fb9e7606e0b07c DIST mpd-0.21.11.tar.xz 671444 BLAKE2B d10e65103e9c0c6dfc44f8d4858c202ad68a5e7a44bd7dd473b7f78c697b20ab7d52d2bff0f7e7434ce06b1afb9a68e6f71ca6148efdf51e122c463506b356b2 SHA512 40e25428295f1bded618872c1450f6836c46b2e788dca06d0af134b939a25a7a9a215273bb005306df288e5dc5ccb44d4054c47e5583e54b970fa252e4b030a7 DIST mpd-0.21.12.tar.xz 672144 BLAKE2B 06eda513314fcb028784115cfc378d0d6482174565ee843a2025af7b2af1fdd7dfadc05b08981e227d11b615aa457f979e80170bc1a91886648f464772240ece SHA512 d35eb7162cfb50c10d57d1d4b035f6c4f7088fb930add97c2159c7b29ab9d7ed33a8b4d22640af78527387305b9f5d380c7c03b98cf957dc1519f772d842e7e3 DIST mpd-0.21.13.tar.xz 672184 BLAKE2B 5aad54f0d747034f3e43f741ecaeff8317a91192c125a4631e99978f7f9c7274a921a05b92a4496fb53f70ee428321f5ae92f96386e439733c028664d80c4dc1 SHA512 626e658b4d53408be5419ce3a93a19005da5c5386119b241c1572eaaba96a628f941d5f46977de08e1de736eeab6cd6ba274d5df8f1df3e3f4b0df064a6ec43d +DIST mpd-0.21.14.tar.xz 673036 BLAKE2B 73eed90c0d48e26d747e26b0cd000d3e0a12dfebb015f865fe9d3ddbe5f7fa564b1655b7e0639951e9aeb2554185063b11d6bc818813ca6366688ea05705ba4a SHA512 d5ce06741444d545c7334f4c4ab32dbfacaa264df5a1ac61b73d951e0a6f952c8ea1e4df1b5bfc827e7faa35a6b8026e78cbf3a057ee35adf448fa7204389cd9 diff --git a/media-sound/mpd/mpd-0.21.14.ebuild b/media-sound/mpd/mpd-0.21.14.ebuild new file mode 100644 index 000000000000..984310bc5363 --- /dev/null +++ b/media-sound/mpd/mpd-0.21.14.ebuild @@ -0,0 +1,294 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit flag-o-matic linux-info meson systemd user + +DESCRIPTION="The Music Player Daemon (mpd)" +HOMEPAGE="https://www.musicpd.org https://github.com/MusicPlayerDaemon/MPD" +SRC_URI="https://www.musicpd.org/download/${PN}/${PV%.*}/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sh ~x86 ~x86-fbsd ~x64-macos" +IUSE="adplug +alsa ao audiofile bzip2 cdio chromaprint +cue +curl +dbus debug + +eventfd expat faad +ffmpeg +fifo flac fluidsynth gme +icu +id3tag +inotify + +ipv6 jack lame libav libmpdclient libsamplerate libsoxr +mad mikmod mms + modplug mpg123 musepack +network nfs openal opus oss pipe pulseaudio qobuz + recorder samba selinux sid signalfd sndfile soundcloud sqlite systemd + test tidal twolame udisks unicode vorbis wavpack webdav wildmidi upnp + zeroconf zip zlib" + +OUTPUT_PLUGINS="alsa ao fifo jack network openal oss pipe pulseaudio recorder" +DECODER_PLUGINS="adplug audiofile faad ffmpeg flac fluidsynth mad mikmod + modplug mpg123 musepack flac sid vorbis wavpack wildmidi" +ENCODER_PLUGINS="audiofile flac lame twolame vorbis" + +REQUIRED_USE=" + || ( ${OUTPUT_PLUGINS} ) + || ( ${DECODER_PLUGINS} ) + network? ( || ( ${ENCODER_PLUGINS} ) ) + recorder? ( || ( ${ENCODER_PLUGINS} ) ) + upnp? ( expat ) + webdav? ( curl expat ) + " + +RESTRICT="!test? ( test )" + +RDEPEND=" + adplug? ( media-libs/adplug:= ) + alsa? ( + media-libs/alsa-lib + media-sound/alsa-utils + ) + + ao? ( media-libs/libao[alsa?,pulseaudio?] ) + audiofile? ( media-libs/audiofile:= ) + + cdio? ( + dev-libs/libcdio:= + dev-libs/libcdio-paranoia + ) + + chromaprint? ( media-libs/chromaprint ) + curl? ( net-misc/curl ) + dbus? ( sys-apps/dbus ) + expat? ( dev-libs/expat ) + faad? ( media-libs/faad2 ) + + ffmpeg? ( + libav? ( media-video/libav:0= ) + !libav? ( media-video/ffmpeg:0= ) + ) + + flac? ( media-libs/flac ) + fluidsynth? ( media-sound/fluidsynth ) + gme? ( >=media-libs/game-music-emu-0.6.0_pre20120802 ) + icu? ( dev-libs/icu:= ) + id3tag? ( media-libs/libid3tag ) + jack? ( virtual/jack ) + lame? ( network? ( media-sound/lame ) ) + libmpdclient? ( media-libs/libmpdclient ) + libsamplerate? ( media-libs/libsamplerate ) + libsoxr? ( media-libs/soxr ) + mad? ( media-libs/libmad ) + mikmod? ( media-libs/libmikmod ) + mms? ( media-libs/libmms ) + modplug? ( media-libs/libmodplug ) + mpg123? ( media-sound/mpg123 ) + musepack? ( media-sound/musepack-tools ) + network? ( media-libs/libshout ) + nfs? ( net-fs/libnfs ) + openal? ( media-libs/openal ) + opus? ( media-libs/opus ) + pulseaudio? ( media-sound/pulseaudio ) + qobuz? ( dev-libs/libgcrypt:0 ) + samba? ( net-fs/samba ) + selinux? ( sec-policy/selinux-mpd ) + sid? ( || ( + media-libs/libsidplay:2 + media-libs/libsidplayfp + ) ) + sndfile? ( media-libs/libsndfile ) + soundcloud? ( >=dev-libs/yajl-2:= ) + sqlite? ( dev-db/sqlite:3 ) + systemd? ( sys-apps/systemd ) + twolame? ( media-sound/twolame ) + udisks? ( sys-fs/udisks:2 ) + upnp? ( net-libs/libupnp:0 ) + vorbis? ( media-libs/libvorbis ) + wavpack? ( media-sound/wavpack ) + wildmidi? ( media-sound/wildmidi ) + zeroconf? ( net-dns/avahi[dbus] ) + zip? ( dev-libs/zziplib ) + zlib? ( sys-libs/zlib:= )" + +DEPEND="${RDEPEND} + >=dev-libs/boost-1.58:= + test? ( dev-cpp/gtest )" + +BDEPEND=">=dev-util/meson-0.49.2 + virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}"/${PN}-0.18.conf.patch +) + +pkg_setup() { + enewuser mpd "" "" "/var/lib/mpd" audio + + if use eventfd; then + CONFIG_CHECK+=" ~EVENTFD" + ERROR_EVENTFD="${P} requires eventfd in-kernel support." + fi + + if use signalfd; then + CONFIG_CHECK+=" ~SIGNALFD" + ERROR_SIGNALFD="${P} requires signalfd in-kernel support." + fi + + if use inotify; then + CONFIG_CHECK+=" ~INOTIFY_USER" + ERROR_INOTIFY_USER="${P} requires inotify in-kernel support." + fi + + if use eventfd || use signalfd || use inotify; then + linux-info_pkg_setup + fi + + elog "If you will be starting mpd via /etc/init.d/mpd, please make + sure that MPD's pid_file is _set_." +} + +src_prepare() { + cp -f doc/mpdconf.example doc/mpdconf.dist || die "cp failed" + default +} + +src_configure() { + local emesonargs=( + -Dbzip2=$(usex bzip2 enabled disabled) + -Dcdio_paranoia=$(usex cdio enabled disabled) + -Dchromaprint=$(usex chromaprint enabled disabled) + -Dcue=$(usex cue true false) + -Dcurl=$(usex curl enabled disabled) + -Ddbus=$(usex dbus enabled disabled) + -Ddebug=$(usex debug true false) + -Deventfd=$(usex eventfd true false) + -Dexpat=$(usex expat enabled disabled) + -Dicu=$(usex icu enabled disabled) + -Did3tag=$(usex id3tag enabled disabled) + -Dinotify=$(usex inotify true false) + -Dipv6=$(usex ipv6 enabled disabled) + -Diso9660=$(usex cdio enabled disabled) + -Dlibmpdclient=$(usex libmpdclient enabled disabled) + -Dlibsamplerate=$(usex libsamplerate enabled disabled) + -Dmms=$(usex mms enabled disabled) + -Dnfs=$(usex nfs enabled disabled) + -Dsignalfd=$(usex signalfd true false) + -Dsmbclient=$(usex samba enabled disabled) + -Dsoxr=$(usex libsoxr enabled disabled) + -Dsqlite=$(usex sqlite enabled disabled) + -Dsystemd=$(usex systemd enabled disabled) + -Dtest=$(usex test true false) + -Dudisks=$(usex udisks enabled disabled) + -Dupnp=$(usex upnp enabled disabled) + -Dwebdav=$(usex webdav enabled disabled) + -Dzeroconf=$(usex zeroconf avahi disabled) + -Dzlib=$(usex zlib enabled disabled) + -Dzzip=$(usex zip enabled disabled) + ) + + emesonargs+=( + -Dalsa=$(usex alsa enabled disabled) + -Dao=$(usex ao enabled disabled) + -Dfifo=$(usex fifo true false) + -Djack=$(usex jack enabled disabled) + -Dopenal=$(usex openal enabled disabled) + -Doss=$(usex oss enabled disabled) + -Dpipe=$(usex pipe true false) + -Dpulse=$(usex pulseaudio enabled disabled) + -Drecorder=$(usex recorder true false) + ) + + if use samba || use upnp; then + emesonargs+=( -Dneighbor=true ) + fi + + append-lfs-flags + append-ldflags "-L/usr/$(get_libdir)/sidplay/builders" + + if use network; then + + emesonargs+=( + -Dshine=disabled + -Dshout=enabled + -Dvorbisenc=$(usex vorbis enabled disabled) + -Dhttpd=true + -Dlame=$(usex lame enabled disabled) + -Dtwolame=$(usex twolame enabled disabled) + -Dwave_encoder=$(usex audiofile true false) + ) + fi + + emesonargs+=( + -Dadplug=$(usex adplug enabled disabled) + -Daudiofile=$(usex audiofile enabled disabled) + -Dfaad=$(usex faad enabled disabled) + -Dffmpeg=$(usex ffmpeg enabled disabled) + -Dflac=$(usex flac enabled disabled) + -Dfluidsynth=$(usex fluidsynth enabled disabled) + -Dgme=$(usex gme enabled disabled) + -Dmad=$(usex mad enabled disabled) + -Dmikmod=$(usex mikmod enabled disabled) + -Dmodplug=$(usex modplug enabled disabled) + -Dmpcdec=$(usex musepack enabled disabled) + -Dmpg123=$(usex mpg123 enabled disabled) + -Dopus=$(usex opus enabled disabled) + -Dsidplay=$(usex sid enabled disabled) + -Dsndfile=$(usex sndfile enabled disabled) + -Dvorbis=$(usex vorbis enabled disabled) + -Dwavpack=$(usex wavpack enabled disabled) + -Dwildmidi=$(usex wildmidi enabled disabled) + + ) + + emesonargs+=( + -Dqobuz=$(usex qobuz enabled disabled) + -Dsoundcloud=$(usex soundcloud enabled disabled) + -Dtidal=$(usex tidal enabled disabled) + ) + + emesonargs+=( + --libdir="/usr/$(get_libdir)" + -Ddocumentation=false + -Dsndio=disabled #not yet in the tree + -Dsolaris_output=disabled + + -Ddatabase=true + -Ddsd=true + -Dtcp=true + + -Dsystemd_system_unit_dir="$(systemd_get_systemunitdir)" + -Dsystemd_user_unit_dir="$(systemd_get_userunitdir)" + ) + + if use icu; then + emesonargs+=( -Diconv=enabled ) + else + emesonargs+=( -Diconv=disabled ) + fi + + meson_src_configure +} + +src_install() { + meson_src_install + + insinto /etc + newins doc/mpdconf.dist mpd.conf + + insinto /etc/logrotate.d + newins "${FILESDIR}"/${PN}-0.21.1.logrotate ${PN} + + newinitd "${FILESDIR}"/${PN}-0.21.4.init ${PN} + + if use unicode; then + sed -i -e 's:^#filesystem_charset.*$:filesystem_charset "UTF-8":' \ + "${ED}"/etc/mpd.conf || die "sed failed" + fi + + doman doc/mpd.1 + doman doc/mpd.conf.5 + + keepdir /var/lib/mpd + keepdir /var/lib/mpd/music + keepdir /var/lib/mpd/playlists + +} + +pkg_postinst() { + # also change the homedir if the user has existed before + usermod -d "/var/lib/mpd" mpd || die "usermod failed" +} diff --git a/metadata/Manifest.gz b/metadata/Manifest.gz index 73fc3f17d342..75fe8e91d723 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 f1b7a472c9ae..e9dc488f9999 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Thu, 22 Aug 2019 11:08:54 +0000 +Thu, 22 Aug 2019 14:38:54 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index f1b7a472c9ae..e9dc488f9999 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Thu, 22 Aug 2019 11:08:54 +0000 +Thu, 22 Aug 2019 14:38:54 +0000 diff --git a/metadata/md5-cache/Manifest.gz b/metadata/md5-cache/Manifest.gz index 26174499cbde..56d1c2df839c 100644 Binary files a/metadata/md5-cache/Manifest.gz and b/metadata/md5-cache/Manifest.gz differ diff --git a/metadata/md5-cache/app-emacs/Manifest.gz b/metadata/md5-cache/app-emacs/Manifest.gz index 3e04f094dbca..bd4b249e0cd0 100644 Binary files a/metadata/md5-cache/app-emacs/Manifest.gz and b/metadata/md5-cache/app-emacs/Manifest.gz differ diff --git a/metadata/md5-cache/app-emacs/emacs-common-gentoo-1.6-r1 b/metadata/md5-cache/app-emacs/emacs-common-gentoo-1.6-r1 new file mode 100644 index 000000000000..1fc0b6df24fb --- /dev/null +++ b/metadata/md5-cache/app-emacs/emacs-common-gentoo-1.6-r1 @@ -0,0 +1,12 @@ +DEFINED_PHASES=install postinst postrm preinst setup +DESCRIPTION=Common files needed by all GNU Emacs versions +EAPI=6 +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Emacs +IUSE=games X +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 ~x86-solaris +LICENSE=GPL-3+ +PDEPEND=virtual/emacs +SLOT=0 +SRC_URI=https://dev.gentoo.org/~ulm/emacs/emacs-common-gentoo-1.6.tar.xz +_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d elisp-common 23f47b2e1de7abf387105eddd1318738 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 user 00484e1be1aac73e24fca1c99557a7d6 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=8d2a442b04c2b7697ac90c2e56238a31 diff --git a/metadata/md5-cache/app-emacs/emacs-common-gentoo-1.6-r2 b/metadata/md5-cache/app-emacs/emacs-common-gentoo-1.6-r3 similarity index 51% rename from metadata/md5-cache/app-emacs/emacs-common-gentoo-1.6-r2 rename to metadata/md5-cache/app-emacs/emacs-common-gentoo-1.6-r3 index c04be02a26fd..f8c1829f9fea 100644 --- a/metadata/md5-cache/app-emacs/emacs-common-gentoo-1.6-r2 +++ b/metadata/md5-cache/app-emacs/emacs-common-gentoo-1.6-r3 @@ -4,11 +4,11 @@ DESCRIPTION=Common files needed by all GNU Emacs versions EAPI=7 HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Emacs IUSE=games X -KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~riscv ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris LICENSE=GPL-3+ PDEPEND=virtual/emacs RDEPEND=games? ( acct-group/gamestat ) SLOT=0 SRC_URI=https://dev.gentoo.org/~ulm/emacs/emacs-common-gentoo-1.6.tar.xz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d elisp-common 23f47b2e1de7abf387105eddd1318738 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=a30366481a63544904f6d41c0306ca05 +_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d elisp-common 23f47b2e1de7abf387105eddd1318738 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=e95167f3d972e651811fe3c86fa11db9 diff --git a/metadata/md5-cache/dev-libs/Manifest.gz b/metadata/md5-cache/dev-libs/Manifest.gz index 0adcab20d057..f98a494aacae 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/liblouis-3.10.0 b/metadata/md5-cache/dev-libs/liblouis-3.10.0 index 6a9396b800e4..8f10f0636c0b 100644 --- a/metadata/md5-cache/dev-libs/liblouis-3.10.0 +++ b/metadata/md5-cache/dev-libs/liblouis-3.10.0 @@ -5,11 +5,11 @@ DESCRIPTION=An open-source braille translator and back-translator EAPI=7 HOMEPAGE=https://github.com/liblouis/liblouis IUSE=python python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 LICENSE=LGPL-2.1+ RDEPEND=python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[wide-unicode(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[wide-unicode(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[wide-unicode(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) REQUIRED_USE=python? ( || ( python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 ) ) SLOT=0 SRC_URI=https://github.com/liblouis/liblouis/archive/v3.10.0.tar.gz -> liblouis-3.10.0.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 distutils-r1 9838160d624a44b2d56d1266a69fd473 libtool f143db5a74ccd9ca28c1234deffede96 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 -_md5_=ffa27346ae19496c5356249dfcb9cde7 +_md5_=2861f076d3e800d65be715a777641d8e diff --git a/metadata/md5-cache/dev-libs/libofx-0.9.14-r1 b/metadata/md5-cache/dev-libs/libofx-0.9.14-r1 new file mode 100644 index 000000000000..ea4ad2bcd74c --- /dev/null +++ b/metadata/md5-cache/dev-libs/libofx-0.9.14-r1 @@ -0,0 +1,14 @@ +BDEPEND=dev-util/gengetopt sys-apps/help2man virtual/pkgconfig test? ( app-crypt/gnupg ) >=app-portage/elt-patches-20170815 !=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 +DEFINED_PHASES=configure install prepare +DEPEND=>=dev-cpp/libxmlpp-2.40.1:2.6 >=net-misc/curl-7.9.7 virtual/libiconv >app-text/opensp-1.5 +DESCRIPTION=A library to support the Open Financial eXchange XML format +EAPI=7 +HOMEPAGE=https://github.com/libofx/libofx +IUSE=static-libs test +KEYWORDS=~amd64 ~hppa ~x86 +LICENSE=GPL-2 +RDEPEND=>=dev-cpp/libxmlpp-2.40.1:2.6 >=net-misc/curl-7.9.7 virtual/libiconv +SLOT=0/7 +SRC_URI=https://github.com/libofx/libofx/archive/0.9.14.tar.gz -> libofx-0.9.14.tar.gz +_eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 7ba73aee7fe4462b3a745e3645ab92ca libtool f143db5a74ccd9ca28c1234deffede96 multilib 1d91b03d42ab6308b5f4f6b598ed110e toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 +_md5_=d51a7cf4c07fc98060be7daabc57507f diff --git a/metadata/md5-cache/dev-ruby/Manifest.gz b/metadata/md5-cache/dev-ruby/Manifest.gz index 59549bb470f7..0f7f145078e1 100644 Binary files a/metadata/md5-cache/dev-ruby/Manifest.gz and b/metadata/md5-cache/dev-ruby/Manifest.gz differ diff --git a/metadata/md5-cache/dev-ruby/rspec-3.8.0 b/metadata/md5-cache/dev-ruby/rspec-3.8.0 index 92e7959d7933..319959632bbe 100644 --- a/metadata/md5-cache/dev-ruby/rspec-3.8.0 +++ b/metadata/md5-cache/dev-ruby/rspec-3.8.0 @@ -4,11 +4,11 @@ DESCRIPTION=A Behaviour Driven Development (BDD) framework for Ruby EAPI=6 HOMEPAGE=https://github.com/rspec/rspec IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 test -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86 LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( =dev-ruby/rspec-core-3.8*[ruby_targets_ruby24] =dev-ruby/rspec-expectations-3.8*[ruby_targets_ruby24] =dev-ruby/rspec-mocks-3.8*[ruby_targets_ruby24] ) ruby_targets_ruby25? ( =dev-ruby/rspec-core-3.8*[ruby_targets_ruby25] =dev-ruby/rspec-expectations-3.8*[ruby_targets_ruby25] =dev-ruby/rspec-mocks-3.8*[ruby_targets_ruby25] ) ruby_targets_ruby26? ( =dev-ruby/rspec-core-3.8*[ruby_targets_ruby26] =dev-ruby/rspec-expectations-3.8*[ruby_targets_ruby26] =dev-ruby/rspec-mocks-3.8*[ruby_targets_ruby26] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) SLOT=3 SRC_URI=mirror://rubygems/rspec-3.8.0.gem _eclasses_=eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 estack 43ddf5aaffa7a8d0482df54d25a66a1f multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem f2b7caee23dbd528a62d0839d8c26c34 ruby-ng a28f4a400304e633468f10ad1b9e2f6e ruby-utils 5b782a86f95c84466cdb53f8c8a8be37 toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 -_md5_=4e59e220c50abd3365fe8a9f59ebc405 +_md5_=b89f89ca3ea8e7b212e61f12cb8e4eb3 diff --git a/metadata/md5-cache/dev-ruby/rspec-core-3.8.2 b/metadata/md5-cache/dev-ruby/rspec-core-3.8.2 index de714c660d8b..3370ca169b36 100644 --- a/metadata/md5-cache/dev-ruby/rspec-core-3.8.2 +++ b/metadata/md5-cache/dev-ruby/rspec-core-3.8.2 @@ -4,11 +4,11 @@ DESCRIPTION=A Behaviour Driven Development (BDD) framework for Ruby EAPI=6 HOMEPAGE=https://github.com/rspec/rspec-core IUSE=highlight test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( =dev-ruby/rspec-support-3.8*[ruby_targets_ruby24] !!=dev-ruby/coderay-1.1.1[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( =dev-ruby/rspec-support-3.8*[ruby_targets_ruby25] !!=dev-ruby/coderay-1.1.1[ruby_targets_ruby25] ) ) ruby_targets_ruby26? ( =dev-ruby/rspec-support-3.8*[ruby_targets_ruby26] !!=dev-ruby/coderay-1.1.1[ruby_targets_ruby26] ) ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-core/archive/v3.8.2.tar.gz -> rspec-core-3.8.2-git.tgz _eclasses_=eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 estack 43ddf5aaffa7a8d0482df54d25a66a1f multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem f2b7caee23dbd528a62d0839d8c26c34 ruby-ng a28f4a400304e633468f10ad1b9e2f6e ruby-utils 5b782a86f95c84466cdb53f8c8a8be37 toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 -_md5_=8db0734ed0d2a2916533c4b2a337cc3e +_md5_=de742490895f2ca989a9f35a82f3cbb3 diff --git a/metadata/md5-cache/dev-ruby/rspec-expectations-3.8.4 b/metadata/md5-cache/dev-ruby/rspec-expectations-3.8.4 index 5dfef8673d7d..6d2ec341aace 100644 --- a/metadata/md5-cache/dev-ruby/rspec-expectations-3.8.4 +++ b/metadata/md5-cache/dev-ruby/rspec-expectations-3.8.4 @@ -4,11 +4,11 @@ DESCRIPTION=A Behaviour Driven Development (BDD) framework for Ruby EAPI=6 HOMEPAGE=https://github.com/rspec/rspec-expectations IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 test test -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( >=dev-ruby/diff-lcs-1.2.0[ruby_targets_ruby24] =dev-ruby/diff-lcs-1.2.0[ruby_targets_ruby25] =dev-ruby/diff-lcs-1.2.0[ruby_targets_ruby26] rspec-expectations-3.8.4-git.tgz _eclasses_=eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 estack 43ddf5aaffa7a8d0482df54d25a66a1f multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem f2b7caee23dbd528a62d0839d8c26c34 ruby-ng a28f4a400304e633468f10ad1b9e2f6e ruby-utils 5b782a86f95c84466cdb53f8c8a8be37 toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 -_md5_=6b0dbfd4081188b3fe867b64b5bc3d71 +_md5_=b4e839d5c1226b28a63571fe6dc4c0a2 diff --git a/metadata/md5-cache/dev-ruby/rspec-mocks-3.8.1 b/metadata/md5-cache/dev-ruby/rspec-mocks-3.8.1 index 5744ac91d95d..d9ddd77fced8 100644 --- a/metadata/md5-cache/dev-ruby/rspec-mocks-3.8.1 +++ b/metadata/md5-cache/dev-ruby/rspec-mocks-3.8.1 @@ -4,11 +4,11 @@ DESCRIPTION=A Behaviour Driven Development (BDD) framework for Ruby EAPI=6 HOMEPAGE=https://github.com/rspec/rspec-mocks IUSE=test ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 test test -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( =dev-ruby/rspec-support-3.8*[ruby_targets_ruby24] >=dev-ruby/diff-lcs-1.2.0[ruby_targets_ruby24] =dev-ruby/diff-lcs-1*[ruby_targets_ruby24] ) ruby_targets_ruby25? ( =dev-ruby/rspec-support-3.8*[ruby_targets_ruby25] >=dev-ruby/diff-lcs-1.2.0[ruby_targets_ruby25] =dev-ruby/diff-lcs-1*[ruby_targets_ruby25] ) ruby_targets_ruby26? ( =dev-ruby/rspec-support-3.8*[ruby_targets_ruby26] >=dev-ruby/diff-lcs-1.2.0[ruby_targets_ruby26] =dev-ruby/diff-lcs-1*[ruby_targets_ruby26] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-mocks/archive/v3.8.1.tar.gz -> rspec-mocks-3.8.1-git.tgz _eclasses_=eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 estack 43ddf5aaffa7a8d0482df54d25a66a1f multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem f2b7caee23dbd528a62d0839d8c26c34 ruby-ng a28f4a400304e633468f10ad1b9e2f6e ruby-utils 5b782a86f95c84466cdb53f8c8a8be37 toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 -_md5_=eb90ce0a0fe2daa646a96ccf37fdfe1d +_md5_=a5fd52805d73748234e823677fd8c1bc diff --git a/metadata/md5-cache/dev-ruby/rspec-support-3.8.2 b/metadata/md5-cache/dev-ruby/rspec-support-3.8.2 index 1c8d7021d2dc..ea21af798b1f 100644 --- a/metadata/md5-cache/dev-ruby/rspec-support-3.8.2 +++ b/metadata/md5-cache/dev-ruby/rspec-support-3.8.2 @@ -4,11 +4,11 @@ DESCRIPTION=A Behaviour Driven Development (BDD) framework for Ruby EAPI=6 HOMEPAGE=https://github.com/rspec/rspec-support IUSE=ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26] ) REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-support/archive/v3.8.2.tar.gz -> rspec-support-3.8.2-git.tgz _eclasses_=estack 43ddf5aaffa7a8d0482df54d25a66a1f multilib 1d91b03d42ab6308b5f4f6b598ed110e ruby-fakegem f2b7caee23dbd528a62d0839d8c26c34 ruby-ng a28f4a400304e633468f10ad1b9e2f6e ruby-utils 5b782a86f95c84466cdb53f8c8a8be37 toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 -_md5_=d473e2631e62001b6442337c89d86994 +_md5_=fde8cc3fe0a7a659dcd3b25649351ae8 diff --git a/metadata/md5-cache/dev-vcs/Manifest.gz b/metadata/md5-cache/dev-vcs/Manifest.gz index d7f019f63392..db03f87572f1 100644 Binary files a/metadata/md5-cache/dev-vcs/Manifest.gz and b/metadata/md5-cache/dev-vcs/Manifest.gz differ diff --git a/metadata/md5-cache/dev-vcs/gitg-3.32.1 b/metadata/md5-cache/dev-vcs/gitg-3.32.1 index cfd0c6ca1504..7781d3963e79 100644 --- a/metadata/md5-cache/dev-vcs/gitg-3.32.1 +++ b/metadata/md5-cache/dev-vcs/gitg-3.32.1 @@ -1,6 +1,6 @@ BDEPEND=app-arch/xz-utils >=dev-util/meson-0.48.2 >=dev-util/ninja-1.7.2 DEFINED_PHASES=compile configure install postinst postrm prepare test -DEPEND=app-crypt/libsecret[vala] >=app-text/gtkspell-3.0.3:3[vala] >=dev-libs/glib-2.38:2[dbus] >=dev-libs/gobject-introspection-0.10.1:= dev-libs/libdazzle[vala] dev-libs/libgee:0.8[introspection] dev-libs/libgit2:=[threads] >=dev-libs/libgit2-glib-0.27[ssh] =dev-libs/libpeas-1.5.0[gtk] >=dev-libs/libxml2-2.9.0:2 >=gnome-base/gsettings-desktop-schemas-0.1.1 net-libs/libsoup:2.4 >=x11-libs/gtk+-3.20.0:3 >=x11-libs/gtksourceview-3.10:3.0 x11-themes/adwaita-icon-theme glade? ( >=dev-util/glade-3.2:3.10 ) python? ( 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_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pygobject:3[python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) || ( dev-lang/vala:0.46 dev-lang/vala:0.44 dev-lang/vala:0.42 dev-lang/vala:0.40 dev-lang/vala:0.36 ) >=dev-libs/libgit2-glib-0.24.4[vala] >=sys-devel/gettext-0.19.7 virtual/pkgconfig +DEPEND=app-crypt/libsecret[vala] >=app-text/gtkspell-3.0.3:3[vala] >=dev-libs/glib-2.38:2[dbus] >=dev-libs/gobject-introspection-0.10.1:= dev-libs/libdazzle[vala] dev-libs/libgee:0.8[introspection] dev-libs/libgit2:=[threads] >=dev-libs/libgit2-glib-0.27[ssh] =dev-libs/libpeas-1.5.0[gtk] >=dev-libs/libxml2-2.9.0:2 >=gnome-base/gsettings-desktop-schemas-0.1.1 net-libs/libsoup:2.4 >=x11-libs/gtk+-3.20.0:3 >=x11-libs/gtksourceview-3.10:3.0 x11-themes/adwaita-icon-theme glade? ( >=dev-util/glade-3.2:3.10 ) python? ( 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_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pygobject:3[python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) || ( dev-lang/vala:0.46 dev-lang/vala:0.44 dev-lang/vala:0.42 dev-lang/vala:0.40 ) >=dev-libs/libgit2-glib-0.24.4[vala] >=sys-devel/gettext-0.19.7 virtual/pkgconfig DESCRIPTION=git repository viewer for GNOME EAPI=7 HOMEPAGE=https://wiki.gnome.org/Apps/Gitg @@ -12,4 +12,4 @@ REQUIRED_USE=python? ( || ( python_targets_python3_5 python_targets_python3_6 py SLOT=0 SRC_URI=mirror://gnome/sources/gitg/3.32/gitg-3.32.1.tar.xz _eclasses_=eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome.org 532d56d07b9eace4831aaa817d2b756a gnome2-utils 532371cfcba45b2ab0d2950547c97d95 meson b5ee7a05833ab91225acf30ffdeed006 multibuild 40fe59465edacd730c644ec2bc197809 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 vala 682da46cf615b9f7a7d3680058139dcd xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=edd47fa7d6362764bf842dd79bc4cc85 +_md5_=139445e65bfad7a5f9628cf11148d81a diff --git a/metadata/md5-cache/media-gfx/Manifest.gz b/metadata/md5-cache/media-gfx/Manifest.gz index caf8d0d56ef2..9125041ddf38 100644 Binary files a/metadata/md5-cache/media-gfx/Manifest.gz and b/metadata/md5-cache/media-gfx/Manifest.gz differ diff --git a/metadata/md5-cache/media-gfx/digikam-6.2.0 b/metadata/md5-cache/media-gfx/digikam-6.2.0 index 3cd3fa0827fc..50096bf6dcf8 100644 --- a/metadata/md5-cache/media-gfx/digikam-6.2.0 +++ b/metadata/md5-cache/media-gfx/digikam-6.2.0 @@ -12,4 +12,4 @@ RESTRICT=test SLOT=5 SRC_URI=mirror://kde/stable/digikam/6.2.0/digikam-6.2.0.tar.xz _eclasses_=cmake-utils 91d6ef31dc426240577497cacbf2508c eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 7ba73aee7fe4462b3a745e3645ab92ca kde5 4f2f402770db1a28789af98b041f5f4a kde5-functions 8593b8fd9e43123f882a49d0079dc20e multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 virtualx 53625127887b62eabb9ec61d3d943462 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=626064f1bde75a0e2e206f387d12d06f +_md5_=d8ec902ee86812a7264bdd77272bb7bd diff --git a/metadata/md5-cache/media-libs/Manifest.gz b/metadata/md5-cache/media-libs/Manifest.gz index 353a39804ae7..1cea197e992b 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/phonon-9999 b/metadata/md5-cache/media-libs/phonon-9999 deleted file mode 100644 index 1ca59b34a352..000000000000 --- a/metadata/md5-cache/media-libs/phonon-9999 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=dev-qt/linguist-tools:5 virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.9.6 >=dev-vcs/git-1.8.2.1[curl] >=kde-frameworks/extra-cmake-modules-5.60.0:5 -DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack -DEPEND=!!dev-qt/qtphonon:4 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 designer? ( dev-qt/designer:5 ) pulseaudio? ( dev-libs/glib:2 media-sound/pulseaudio[glib] ) dev-util/desktop-file-utils x11-misc/shared-mime-info >=dev-qt/qtcore-5.12.3:5 -DESCRIPTION=KDE multimedia abstraction library -EAPI=7 -HOMEPAGE=https://phonon.kde.org/ -IUSE=debug designer gstreamer gui pulseaudio +vlc debug -LICENSE=|| ( LGPL-2.1 LGPL-3 ) -PDEPEND=gstreamer? ( >=media-libs/phonon-gstreamer-4.9.60 ) vlc? ( >=media-libs/phonon-vlc-0.9.60 ) -PROPERTIES=live -RDEPEND=!!dev-qt/qtphonon:4 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 designer? ( dev-qt/designer:5 ) pulseaudio? ( dev-libs/glib:2 media-sound/pulseaudio[glib] ) >=kde-frameworks/kf-env-4 || ( >=kde-frameworks/breeze-icons-5.60.0:5 kde-frameworks/oxygen-icons:* ) >=dev-qt/qtcore-5.12.3:5 -SLOT=0 -_eclasses_=cmake-utils 91d6ef31dc426240577497cacbf2508c eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 7ba73aee7fe4462b3a745e3645ab92ca git-r3 562b380fc59ae6a8622171d0acb777d1 kde5 4f2f402770db1a28789af98b041f5f4a kde5-functions 8593b8fd9e43123f882a49d0079dc20e multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 virtualx 53625127887b62eabb9ec61d3d943462 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=2d656178d5950418a7f70133ac486905 diff --git a/metadata/md5-cache/media-libs/phonon-gstreamer-9999 b/metadata/md5-cache/media-libs/phonon-gstreamer-9999 deleted file mode 100644 index 899f0a7bfcd3..000000000000 --- a/metadata/md5-cache/media-libs/phonon-gstreamer-9999 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-qt/linguist-tools:5 virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.9.6 >=dev-vcs/git-1.8.2.1[curl] >=kde-frameworks/extra-cmake-modules-5.60.0:5 -DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack -DEPEND=dev-libs/glib:2 dev-libs/libxml2:2 dev-qt/qtgui:5 dev-qt/qtopengl:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 media-libs/gst-plugins-base:1.0 media-libs/gstreamer:1.0 >=media-libs/phonon-4.10.60 media-plugins/gst-plugins-meta:1.0[alsa?,ogg,vorbis] virtual/opengl dev-util/desktop-file-utils x11-misc/shared-mime-info >=dev-qt/qtcore-5.12.3:5 -DESCRIPTION=GStreamer backend for the Phonon multimedia library -EAPI=7 -HOMEPAGE=https://phonon.kde.org/ -IUSE=alsa debug +network debug -LICENSE=LGPL-2.1+ || ( LGPL-2.1 LGPL-3 ) -PROPERTIES=live -RDEPEND=dev-libs/glib:2 dev-libs/libxml2:2 dev-qt/qtgui:5 dev-qt/qtopengl:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 media-libs/gst-plugins-base:1.0 media-libs/gstreamer:1.0 >=media-libs/phonon-4.10.60 media-plugins/gst-plugins-meta:1.0[alsa?,ogg,vorbis] virtual/opengl network? ( media-plugins/gst-plugins-soup:1.0 ) >=kde-frameworks/kf-env-4 || ( >=kde-frameworks/breeze-icons-5.60.0:5 kde-frameworks/oxygen-icons:* ) >=dev-qt/qtcore-5.12.3:5 -SLOT=0 -_eclasses_=cmake-utils 91d6ef31dc426240577497cacbf2508c eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 7ba73aee7fe4462b3a745e3645ab92ca git-r3 562b380fc59ae6a8622171d0acb777d1 kde5 4f2f402770db1a28789af98b041f5f4a kde5-functions 8593b8fd9e43123f882a49d0079dc20e multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 virtualx 53625127887b62eabb9ec61d3d943462 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=68e51fc8b583991bfe187e38be168026 diff --git a/metadata/md5-cache/media-libs/phonon-vlc-9999 b/metadata/md5-cache/media-libs/phonon-vlc-9999 deleted file mode 100644 index 8e276d138734..000000000000 --- a/metadata/md5-cache/media-libs/phonon-vlc-9999 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.9.6 >=dev-vcs/git-1.8.2.1[curl] >=kde-frameworks/extra-cmake-modules-5.60.0:5 -DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack -DEPEND=dev-qt/qtgui:5 dev-qt/qtwidgets:5 >=media-libs/phonon-4.10.60 media-video/vlc:=[dbus,ogg,vorbis] dev-util/desktop-file-utils x11-misc/shared-mime-info >=dev-qt/qtcore-5.12.3:5 -DESCRIPTION=VLC backend for the Phonon multimedia library -EAPI=7 -HOMEPAGE=https://phonon.kde.org/ -IUSE=debug debug -LICENSE=LGPL-2.1+ || ( LGPL-2.1 LGPL-3 ) -PROPERTIES=live -RDEPEND=dev-qt/qtgui:5 dev-qt/qtwidgets:5 >=media-libs/phonon-4.10.60 media-video/vlc:=[dbus,ogg,vorbis] >=kde-frameworks/kf-env-4 || ( >=kde-frameworks/breeze-icons-5.60.0:5 kde-frameworks/oxygen-icons:* ) >=dev-qt/qtcore-5.12.3:5 -SLOT=0 -_eclasses_=cmake-utils 91d6ef31dc426240577497cacbf2508c eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 7ba73aee7fe4462b3a745e3645ab92ca git-r3 562b380fc59ae6a8622171d0acb777d1 kde5 4f2f402770db1a28789af98b041f5f4a kde5-functions 8593b8fd9e43123f882a49d0079dc20e multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 virtualx 53625127887b62eabb9ec61d3d943462 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=e9329c96c42fd7ea7645d3d0ab65b6fa diff --git a/metadata/md5-cache/media-sound/Manifest.gz b/metadata/md5-cache/media-sound/Manifest.gz index cb578d44ff58..c797b52ae496 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/mpd-0.21.14 b/metadata/md5-cache/media-sound/mpd-0.21.14 new file mode 100644 index 000000000000..788a7e2aa26b --- /dev/null +++ b/metadata/md5-cache/media-sound/mpd-0.21.14 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-util/meson-0.49.2 virtual/pkgconfig >=dev-util/meson-0.48.2 >=dev-util/ninja-1.7.2 virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst prepare setup test +DEPEND=adplug? ( media-libs/adplug:= ) alsa? ( media-libs/alsa-lib media-sound/alsa-utils ) ao? ( media-libs/libao[alsa?,pulseaudio?] ) audiofile? ( media-libs/audiofile:= ) cdio? ( dev-libs/libcdio:= dev-libs/libcdio-paranoia ) chromaprint? ( media-libs/chromaprint ) curl? ( net-misc/curl ) dbus? ( sys-apps/dbus ) expat? ( dev-libs/expat ) faad? ( media-libs/faad2 ) ffmpeg? ( libav? ( media-video/libav:0= ) !libav? ( media-video/ffmpeg:0= ) ) flac? ( media-libs/flac ) fluidsynth? ( media-sound/fluidsynth ) gme? ( >=media-libs/game-music-emu-0.6.0_pre20120802 ) icu? ( dev-libs/icu:= ) id3tag? ( media-libs/libid3tag ) jack? ( virtual/jack ) lame? ( network? ( media-sound/lame ) ) libmpdclient? ( media-libs/libmpdclient ) libsamplerate? ( media-libs/libsamplerate ) libsoxr? ( media-libs/soxr ) mad? ( media-libs/libmad ) mikmod? ( media-libs/libmikmod ) mms? ( media-libs/libmms ) modplug? ( media-libs/libmodplug ) mpg123? ( media-sound/mpg123 ) musepack? ( media-sound/musepack-tools ) network? ( media-libs/libshout ) nfs? ( net-fs/libnfs ) openal? ( media-libs/openal ) opus? ( media-libs/opus ) pulseaudio? ( media-sound/pulseaudio ) qobuz? ( dev-libs/libgcrypt:0 ) samba? ( net-fs/samba ) selinux? ( sec-policy/selinux-mpd ) sid? ( || ( media-libs/libsidplay:2 media-libs/libsidplayfp ) ) sndfile? ( media-libs/libsndfile ) soundcloud? ( >=dev-libs/yajl-2:= ) sqlite? ( dev-db/sqlite:3 ) systemd? ( sys-apps/systemd ) twolame? ( media-sound/twolame ) udisks? ( sys-fs/udisks:2 ) upnp? ( net-libs/libupnp:0 ) vorbis? ( media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) wildmidi? ( media-sound/wildmidi ) zeroconf? ( net-dns/avahi[dbus] ) zip? ( dev-libs/zziplib ) zlib? ( sys-libs/zlib:= ) >=dev-libs/boost-1.58:= test? ( dev-cpp/gtest ) +DESCRIPTION=The Music Player Daemon (mpd) +EAPI=7 +HOMEPAGE=https://www.musicpd.org https://github.com/MusicPlayerDaemon/MPD +IUSE=adplug +alsa ao audiofile bzip2 cdio chromaprint +cue +curl +dbus debug +eventfd expat faad +ffmpeg +fifo flac fluidsynth gme +icu +id3tag +inotify +ipv6 jack lame libav libmpdclient libsamplerate libsoxr +mad mikmod mms modplug mpg123 musepack +network nfs openal opus oss pipe pulseaudio qobuz recorder samba selinux sid signalfd sndfile soundcloud sqlite systemd test tidal twolame udisks unicode vorbis wavpack webdav wildmidi upnp zeroconf zip zlib kernel_linux +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sh ~x86 ~x86-fbsd ~x64-macos +LICENSE=GPL-2 +RDEPEND=adplug? ( media-libs/adplug:= ) alsa? ( media-libs/alsa-lib media-sound/alsa-utils ) ao? ( media-libs/libao[alsa?,pulseaudio?] ) audiofile? ( media-libs/audiofile:= ) cdio? ( dev-libs/libcdio:= dev-libs/libcdio-paranoia ) chromaprint? ( media-libs/chromaprint ) curl? ( net-misc/curl ) dbus? ( sys-apps/dbus ) expat? ( dev-libs/expat ) faad? ( media-libs/faad2 ) ffmpeg? ( libav? ( media-video/libav:0= ) !libav? ( media-video/ffmpeg:0= ) ) flac? ( media-libs/flac ) fluidsynth? ( media-sound/fluidsynth ) gme? ( >=media-libs/game-music-emu-0.6.0_pre20120802 ) icu? ( dev-libs/icu:= ) id3tag? ( media-libs/libid3tag ) jack? ( virtual/jack ) lame? ( network? ( media-sound/lame ) ) libmpdclient? ( media-libs/libmpdclient ) libsamplerate? ( media-libs/libsamplerate ) libsoxr? ( media-libs/soxr ) mad? ( media-libs/libmad ) mikmod? ( media-libs/libmikmod ) mms? ( media-libs/libmms ) modplug? ( media-libs/libmodplug ) mpg123? ( media-sound/mpg123 ) musepack? ( media-sound/musepack-tools ) network? ( media-libs/libshout ) nfs? ( net-fs/libnfs ) openal? ( media-libs/openal ) opus? ( media-libs/opus ) pulseaudio? ( media-sound/pulseaudio ) qobuz? ( dev-libs/libgcrypt:0 ) samba? ( net-fs/samba ) selinux? ( sec-policy/selinux-mpd ) sid? ( || ( media-libs/libsidplay:2 media-libs/libsidplayfp ) ) sndfile? ( media-libs/libsndfile ) soundcloud? ( >=dev-libs/yajl-2:= ) sqlite? ( dev-db/sqlite:3 ) systemd? ( sys-apps/systemd ) twolame? ( media-sound/twolame ) udisks? ( sys-fs/udisks:2 ) upnp? ( net-libs/libupnp:0 ) vorbis? ( media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) wildmidi? ( media-sound/wildmidi ) zeroconf? ( net-dns/avahi[dbus] ) zip? ( dev-libs/zziplib ) zlib? ( sys-libs/zlib:= ) +REQUIRED_USE=|| ( alsa ao fifo jack network openal oss pipe pulseaudio recorder ) || ( adplug audiofile faad ffmpeg flac fluidsynth mad mikmod modplug mpg123 musepack flac sid vorbis wavpack wildmidi ) network? ( || ( audiofile flac lame twolame vorbis ) ) recorder? ( || ( audiofile flac lame twolame vorbis ) ) upnp? ( expat ) webdav? ( curl expat ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://www.musicpd.org/download/mpd/0.21/mpd-0.21.14.tar.xz +_eclasses_=eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 7ba73aee7fe4462b3a745e3645ab92ca linux-info 953c3b1c472dcadbf62098a9301327f2 meson b5ee7a05833ab91225acf30ffdeed006 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 08e17157a6807add7db1f8d01e7e391f systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 user 00484e1be1aac73e24fca1c99557a7d6 +_md5_=aadfb9bee59d891c60af11a2cace321c diff --git a/metadata/md5-cache/net-dns/Manifest.gz b/metadata/md5-cache/net-dns/Manifest.gz index 3dab4943ca78..03da5051e621 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/bind-tools-9.14.4 b/metadata/md5-cache/net-dns/bind-tools-9.14.4 index 785b784c98be..71c901794660 100644 --- a/metadata/md5-cache/net-dns/bind-tools-9.14.4 +++ b/metadata/md5-cache/net-dns/bind-tools-9.14.4 @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://downloads.isc.org/isc/bind9/9.14.4/bind-9.14.4.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 7ba73aee7fe4462b3a745e3645ab92ca libtool f143db5a74ccd9ca28c1234deffede96 multilib 1d91b03d42ab6308b5f4f6b598ed110e toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 -_md5_=c485e297093cfe5b879baf3a6c70d242 +_md5_=10e0936f89889807e9468787042d6aaa diff --git a/metadata/md5-cache/net-fs/Manifest.gz b/metadata/md5-cache/net-fs/Manifest.gz index 12c24947e9bb..357ee4b99ee6 100644 Binary files a/metadata/md5-cache/net-fs/Manifest.gz and b/metadata/md5-cache/net-fs/Manifest.gz differ diff --git a/metadata/md5-cache/net-fs/minio-2019.08.21.19.40.07 b/metadata/md5-cache/net-fs/minio-2019.08.21.19.40.07 new file mode 100644 index 000000000000..c4b1d5aa4434 --- /dev/null +++ b/metadata/md5-cache/net-fs/minio-2019.08.21.19.40.07 @@ -0,0 +1,12 @@ +BDEPEND=>=dev-lang/go-1.10 +DEFINED_PHASES=compile install prepare setup test unpack +DESCRIPTION=An Amazon S3 compatible object storage server +EAPI=7 +HOMEPAGE=https://github.com/minio/minio +KEYWORDS=~amd64 ~amd64-linux +LICENSE=Apache-2.0 +RESTRICT=test +SLOT=0 +SRC_URI=https://github.com/minio/minio/archive/RELEASE.2019-08-21T19-40-07Z.tar.gz -> minio-2019.08.21.19.40.07.tar.gz https://github.com/go-yaml/yaml/archive/51d6538a90f86fe93ac480b35f37b2be17fef232.tar.gz -> github.com-go-yaml-yaml-51d6538a90f86fe93ac480b35f37b2be17fef232.tar.gz https://github.com/olivere/elastic/archive/f72acaba629a7ec879103d17b7426a31bc38e199.tar.gz -> github.com-olivere-elastic-f72acaba629a7ec879103d17b7426a31bc38e199.tar.gz https://github.com/Shopify/sarama/archive/879f631812a30a580659e8035e7cda9994bb99ac.tar.gz -> github.com-Shopify-sarama-879f631812a30a580659e8035e7cda9994bb99ac.tar.gz https://github.com/googleapis/google-api-go-client/archive/bce707a4d0ea3488942724b3bcc1c8338f38f991.tar.gz -> github.com-googleapis-google-api-go-client-bce707a4d0ea3488942724b3bcc1c8338f38f991.tar.gz https://github.com/googleapis/google-api-go-client/archive/bce707a4d0ea3488942724b3bcc1c8338f38f991.tar.gz -> github.com-googleapis-google-api-go-client-bce707a4d0ea3488942724b3bcc1c8338f38f991.tar.gz https://github.com/googleapis/google-api-go-client/archive/bce707a4d0ea3488942724b3bcc1c8338f38f991.tar.gz -> github.com-googleapis-google-api-go-client-bce707a4d0ea3488942724b3bcc1c8338f38f991.tar.gz https://github.com/golang/time/archive/9d24e82272b4f38b78bc8cff74fa936d31ccd8ef.tar.gz -> github.com-golang-time-9d24e82272b4f38b78bc8cff74fa936d31ccd8ef.tar.gz https://github.com/golang/sys/archive/81d4e9dc473e5e8c933f2aaeba2a3d81efb9aed2.tar.gz -> github.com-golang-sys-81d4e9dc473e5e8c933f2aaeba2a3d81efb9aed2.tar.gz https://github.com/golang/net/archive/eb5bcb51f2a31c7d5141d810b70815c05d9c9146.tar.gz -> github.com-golang-net-eb5bcb51f2a31c7d5141d810b70815c05d9c9146.tar.gz https://github.com/golang/text/archive/e3703dcdd614d2d7488fff034c75c551ea25da95.tar.gz -> github.com-golang-text-e3703dcdd614d2d7488fff034c75c551ea25da95.tar.gz https://github.com/golang/crypto/archive/38d8ce5564a5b71b2e3a00553993f1b9a7ae852f.tar.gz -> github.com-golang-crypto-38d8ce5564a5b71b2e3a00553993f1b9a7ae852f.tar.gz https://github.com/uber-go/atomic/archive/1ea20fb1cbb1cc08cbd0d913a96dead89aa18289.tar.gz -> github.com-uber-go-atomic-1ea20fb1cbb1cc08cbd0d913a96dead89aa18289.tar.gz https://github.com/valyala/tcplisten/archive/ceec8f93295a060cdb565ec25e4ccf17941dbd55.tar.gz -> github.com-valyala-tcplisten-ceec8f93295a060cdb565ec25e4ccf17941dbd55.tar.gz https://github.com/googleapis/google-cloud-go/archive/a4ed3b9f8c7419c692a60bbf780ab0f1c4af5ce4.tar.gz -> github.com-googleapis-google-cloud-go-a4ed3b9f8c7419c692a60bbf780ab0f1c4af5ce4.tar.gz https://github.com/tidwall/sjson/archive/25fb082a20e29e83fb7b7ef5f5919166aad1f084.tar.gz -> github.com-tidwall-sjson-25fb082a20e29e83fb7b7ef5f5919166aad1f084.tar.gz https://github.com/tidwall/gjson/archive/eee0b6226f0d1db2675a176fdfaa8419bcad4ca8.tar.gz -> github.com-tidwall-gjson-eee0b6226f0d1db2675a176fdfaa8419bcad4ca8.tar.gz https://github.com/tidwall/pretty/archive/1166b9ac2b65e46a43d8618d30d1554f4652d49b.tar.gz -> github.com-tidwall-pretty-1166b9ac2b65e46a43d8618d30d1554f4652d49b.tar.gz https://github.com/tidwall/match/archive/33827db735fff6510490d69a8622612558a557ed.tar.gz -> github.com-tidwall-match-33827db735fff6510490d69a8622612558a557ed.tar.gz https://github.com/streadway/amqp/archive/14f78b41ce6da3d698c2ef2cc8c0ea7ce9e26688.tar.gz -> github.com-streadway-amqp-14f78b41ce6da3d698c2ef2cc8c0ea7ce9e26688.tar.gz https://github.com/skyrings/skyring-common/archive/d1c0bb1cbd5ed8438be1385c85c4f494608cde1e.tar.gz -> github.com-skyrings-skyring-common-d1c0bb1cbd5ed8438be1385c85c4f494608cde1e.tar.gz https://github.com/segmentio/go-prompt/archive/f0d19b6901ade831d5a3204edc0d6a7d6457fbb2.tar.gz -> github.com-segmentio-go-prompt-f0d19b6901ade831d5a3204edc0d6a7d6457fbb2.tar.gz https://github.com/rs/cors/archive/9a47f48565a795472d43519dd49aac781f3034fb.tar.gz -> github.com-rs-cors-9a47f48565a795472d43519dd49aac781f3034fb.tar.gz https://github.com/rjeczalik/notify/archive/69d839f37b13a8cb7a78366f7633a4071cb43be7.tar.gz -> github.com-rjeczalik-notify-69d839f37b13a8cb7a78366f7633a4071cb43be7.tar.gz https://github.com/rcrowley/go-metrics/archive/3113b8401b8a98917cde58f8bbd42a1b1c03b1fd.tar.gz -> github.com-rcrowley-go-metrics-3113b8401b8a98917cde58f8bbd42a1b1c03b1fd.tar.gz https://github.com/prometheus/client_golang/archive/505eaef017263e299324067d40ca2c48f6a2cf50.tar.gz -> github.com-prometheus-client_golang-505eaef017263e299324067d40ca2c48f6a2cf50.tar.gz https://github.com/prometheus/procfs/archive/55ae3d9d557340b5bc24cd8aa5f6fa2c2ab31352.tar.gz -> github.com-prometheus-procfs-55ae3d9d557340b5bc24cd8aa5f6fa2c2ab31352.tar.gz https://github.com/prometheus/common/archive/5df5c82edb7502fd6cbe093223a19b6e1231494f.tar.gz -> github.com-prometheus-common-5df5c82edb7502fd6cbe093223a19b6e1231494f.tar.gz https://github.com/prometheus/client_model/archive/fd36f4220a901265f90734c3183c5f0c91daa0b8.tar.gz -> github.com-prometheus-client_model-fd36f4220a901265f90734c3183c5f0c91daa0b8.tar.gz https://github.com/pkg/profile/archive/f6fe06335df110bcf1ed6d4e852b760bfc15beee.tar.gz -> github.com-pkg-profile-f6fe06335df110bcf1ed6d4e852b760bfc15beee.tar.gz https://github.com/pkg/errors/archive/ba968bfe8b2f7e042a574c888954fccecfa385b4.tar.gz -> github.com-pkg-errors-ba968bfe8b2f7e042a574c888954fccecfa385b4.tar.gz https://github.com/pierrec/lz4/archive/315a67e90e415bcdaff33057da191569bf4d8479.tar.gz -> github.com-pierrec-lz4-315a67e90e415bcdaff33057da191569bf4d8479.tar.gz https://github.com/nsqio/go-nsq/archive/eee57a3ac4174c55924125bb15eeeda8cffb6e6f.tar.gz -> github.com-nsqio-go-nsq-eee57a3ac4174c55924125bb15eeeda8cffb6e6f.tar.gz https://github.com/nats-io/nats/archive/70fe06cee50d4b6f98248d9675fb55f2a3aa7228.tar.gz -> github.com-nats-io-nats-70fe06cee50d4b6f98248d9675fb55f2a3aa7228.tar.gz https://github.com/nats-io/nuid/archive/3024a71c3cbe30667286099921591e6fcc328230.tar.gz -> github.com-nats-io-nuid-3024a71c3cbe30667286099921591e6fcc328230.tar.gz https://github.com/nats-io/nkeys/archive/1546a3320a8f195a5b5c84aef8309377c2e411d5.tar.gz -> github.com-nats-io-nkeys-1546a3320a8f195a5b5c84aef8309377c2e411d5.tar.gz https://github.com/nats-io/go-nats/archive/70fe06cee50d4b6f98248d9675fb55f2a3aa7228.tar.gz -> github.com-nats-io-go-nats-70fe06cee50d4b6f98248d9675fb55f2a3aa7228.tar.gz https://github.com/nats-io/go-nats-streaming/archive/4366d43a0648b4997ed32080f937e8702ab86c48.tar.gz -> github.com-nats-io-go-nats-streaming-4366d43a0648b4997ed32080f937e8702ab86c48.tar.gz https://github.com/Azure/azure-sdk-for-go/archive/d659f2a91175cac99aa5627d09b83026eacc978d.tar.gz -> github.com-Azure-azure-sdk-for-go-d659f2a91175cac99aa5627d09b83026eacc978d.tar.gz https://github.com/Azure/go-autorest/archive/3b1641ed03046f2ee28d73f7a51e5b884d55b92a.tar.gz -> github.com-Azure-go-autorest-3b1641ed03046f2ee28d73f7a51e5b884d55b92a.tar.gz https://github.com/DataDog/zstd/archive/c7161f8c63c045cbc7ca051dcc969dd0e4054de2.tar.gz -> github.com-DataDog-zstd-c7161f8c63c045cbc7ca051dcc969dd0e4054de2.tar.gz https://github.com/mailru/easyjson/archive/1ea4449da9834f4d333f1cc461c374aea217d249.tar.gz -> github.com-mailru-easyjson-1ea4449da9834f4d333f1cc461c374aea217d249.tar.gz https://github.com/gorilla/mux/archive/a7962380ca08b5a188038c69871b8d3fbdf31e89.tar.gz -> github.com-gorilla-mux-a7962380ca08b5a188038c69871b8d3fbdf31e89.tar.gz https://github.com/coredns/coredns/archive/8dcc7fccd74454134b33c8bc9f780ed6d7f076cf.tar.gz -> github.com-coredns-coredns-8dcc7fccd74454134b33c8bc9f780ed6d7f076cf.tar.gz https://github.com/matttproud/golang_protobuf_extensions/archive/c182affec369e30f25d3eb8cd8a478dee585ae7d.tar.gz -> github.com-matttproud-golang_protobuf_extensions-c182affec369e30f25d3eb8cd8a478dee585ae7d.tar.gz https://github.com/eapache/go-resiliency/archive/842e16ec2c98ef0c59eebfe60d2d3500a793ba19.tar.gz -> github.com-eapache-go-resiliency-842e16ec2c98ef0c59eebfe60d2d3500a793ba19.tar.gz https://github.com/minio/minio-go/archive/5325257a208fc630aaaac31bc00789acbc998c14.tar.gz -> github.com-minio-minio-go-5325257a208fc630aaaac31bc00789acbc998c14.tar.gz https://github.com/alecthomas/participle/archive/98cb121381c371cf1542c7ae145e485d703aec0b.tar.gz -> github.com-alecthomas-participle-98cb121381c371cf1542c7ae145e485d703aec0b.tar.gz https://github.com/aliyun/aliyun-oss-go-sdk/archive/86c17b95fcd5db33628a61e492fb4a1a937d5906.tar.gz -> github.com-aliyun-aliyun-oss-go-sdk-86c17b95fcd5db33628a61e492fb4a1a937d5906.tar.gz https://github.com/bcicen/jstream/archive/16c1f8af81c2a9967b30d365a29472126274f998.tar.gz -> github.com-bcicen-jstream-16c1f8af81c2a9967b30d365a29472126274f998.tar.gz https://github.com/beorn7/perks/archive/3a771d992973f24aa725d07868b467d1ddfceafb.tar.gz -> github.com-beorn7-perks-3a771d992973f24aa725d07868b467d1ddfceafb.tar.gz https://github.com/cheggaaa/pb/archive/f907f6f5dd81f77c2bbc1cde92e4c5a04720cb11.tar.gz -> github.com-cheggaaa-pb-f907f6f5dd81f77c2bbc1cde92e4c5a04720cb11.tar.gz https://github.com/gogo/protobuf/archive/382325bbbb4d1c850eec1f3ec92a1a16f502d68b.tar.gz -> github.com-gogo-protobuf-382325bbbb4d1c850eec1f3ec92a1a16f502d68b.tar.gz https://github.com/davecgh/go-spew/archive/d8f796af33cc11cb798c1aaeb27a4ebc5099927d.tar.gz -> github.com-davecgh-go-spew-d8f796af33cc11cb798c1aaeb27a4ebc5099927d.tar.gz https://github.com/inconshreveable/go-update/archive/8152e7eb6ccf8679a64582a66b78519688d156ad.tar.gz -> github.com-inconshreveable-go-update-8152e7eb6ccf8679a64582a66b78519688d156ad.tar.gz https://github.com/howeyc/gopass/archive/bf9dde6d0d2c004a008c27aaee91170c786f6db8.tar.gz -> github.com-howeyc-gopass-bf9dde6d0d2c004a008c27aaee91170c786f6db8.tar.gz https://github.com/mitchellh/go-homedir/archive/af06845cf3004701891bf4fdb884bfe4920b3727.tar.gz -> github.com-mitchellh-go-homedir-af06845cf3004701891bf4fdb884bfe4920b3727.tar.gz https://github.com/klauspost/pgzip/archive/083b1c3f84dd6486588802e5ce295de3a7f41a8b.tar.gz -> github.com-klauspost-pgzip-083b1c3f84dd6486588802e5ce295de3a7f41a8b.tar.gz https://github.com/marstr/guid/archive/8bd9a64bf37eb297b492a4101fb28e80ac0b290f.tar.gz -> github.com-marstr-guid-8bd9a64bf37eb297b492a4101fb28e80ac0b290f.tar.gz https://github.com/coreos/etcd/archive/d57e8b8d97adfc4a6c224fe116714bf1a1f3beb9.tar.gz -> github.com-coreos-etcd-d57e8b8d97adfc4a6c224fe116714bf1a1f3beb9.tar.gz https://github.com/dgrijalva/jwt-go/archive/06ea1031745cb8b3dab3f6a236daf2b0aa468b7e.tar.gz -> github.com-dgrijalva-jwt-go-06ea1031745cb8b3dab3f6a236daf2b0aa468b7e.tar.gz https://github.com/gorilla/rpc/archive/bffcfa752ad4e523cc8f720afeb5b985ed41ae16.tar.gz -> github.com-gorilla-rpc-bffcfa752ad4e523cc8f720afeb5b985ed41ae16.tar.gz https://github.com/djherbis/atime/archive/8e47e0e01d08df8b9f840d74299c8ab70a024a30.tar.gz -> github.com-djherbis-atime-8e47e0e01d08df8b9f840d74299c8ab70a024a30.tar.gz https://github.com/dustin/go-humanize/archive/9f541cc9db5d55bce703bd99987c9d5cb8eea45e.tar.gz -> github.com-dustin-go-humanize-9f541cc9db5d55bce703bd99987c9d5cb8eea45e.tar.gz https://github.com/eapache/go-xerial-snappy/archive/776d5712da21bc4762676d614db1d8a64f4238b0.tar.gz -> github.com-eapache-go-xerial-snappy-776d5712da21bc4762676d614db1d8a64f4238b0.tar.gz https://github.com/eapache/queue/archive/093482f3f8ce946c05bcba64badd2c82369e084d.tar.gz -> github.com-eapache-queue-093482f3f8ce946c05bcba64badd2c82369e084d.tar.gz https://github.com/golang/protobuf/archive/d3c38a4eb4970272b87a425ae00ccc4548e2f9bb.tar.gz -> github.com-golang-protobuf-d3c38a4eb4970272b87a425ae00ccc4548e2f9bb.tar.gz https://github.com/fatih/structs/archive/4966fc68f5b7593aafa6cbbba2d65ec6e1416047.tar.gz -> github.com-fatih-structs-4966fc68f5b7593aafa6cbbba2d65ec6e1416047.tar.gz https://github.com/minio/parquet-go/archive/9d767baf16793cc4b7fd55d642474c36c077ef77.tar.gz -> github.com-minio-parquet-go-9d767baf16793cc4b7fd55d642474c36c077ef77.tar.gz https://github.com/go-ini/ini/archive/c85607071cf08ca1adaf48319cd1aa322e81d8c1.tar.gz -> github.com-go-ini-ini-c85607071cf08ca1adaf48319cd1aa322e81d8c1.tar.gz https://github.com/grpc/grpc-go/archive/3507fb8e1a5ad030303c106fef3a47c9fdad16ad.tar.gz -> github.com-grpc-grpc-go-3507fb8e1a5ad030303c106fef3a47c9fdad16ad.tar.gz https://github.com/google/go-genproto/archive/64821d5d210748c883cd2b809589555ae4654203.tar.gz -> github.com-google-go-genproto-64821d5d210748c883cd2b809589555ae4654203.tar.gz https://github.com/census-instrumentation/opencensus-go/archive/43463a80402d8447b7fce0d2c58edf1687ff0b58.tar.gz -> github.com-census-instrumentation-opencensus-go-43463a80402d8447b7fce0d2c58edf1687ff0b58.tar.gz https://github.com/apache/thrift/archive/c9b1e29bc9e0702d7441383358d565e1e76ccea7.tar.gz -> github.com-apache-thrift-c9b1e29bc9e0702d7441383358d565e1e76ccea7.tar.gz https://github.com/elazarl/go-bindata-assetfs/archive/30f82fa23fd844bd5bb1e5f216db87fd77b5eb43.tar.gz -> github.com-elazarl-go-bindata-assetfs-30f82fa23fd844bd5bb1e5f216db87fd77b5eb43.tar.gz https://github.com/eclipse/paho.mqtt.golang/archive/20337d8c394721c308cc6ec096990ee451a7cd7f.tar.gz -> github.com-eclipse-paho.mqtt.golang-20337d8c394721c308cc6ec096990ee451a7cd7f.tar.gz https://github.com/klauspost/compress/archive/30be6041bed523c18e269a700ebd9c2ea9328574.tar.gz -> github.com-klauspost-compress-30be6041bed523c18e269a700ebd9c2ea9328574.tar.gz https://github.com/hashicorp/vault/archive/36aa8c8dd1936e10ebd7a4c1d412ae0e6f7900bd.tar.gz -> github.com-hashicorp-vault-36aa8c8dd1936e10ebd7a4c1d412ae0e6f7900bd.tar.gz https://github.com/fatih/color/archive/5b77d2a35fb0ede96d138fc9a99f5c9b6aef11b4.tar.gz -> github.com-fatih-color-5b77d2a35fb0ede96d138fc9a99f5c9b6aef11b4.tar.gz https://github.com/miekg/dns/archive/73601d4aed9d844322611759d7f3619110b7c88e.tar.gz -> github.com-miekg-dns-73601d4aed9d844322611759d7f3619110b7c88e.tar.gz https://github.com/klauspost/reedsolomon/archive/a9588190c00b0ccd742218388f6ff68bbad83e5c.tar.gz -> github.com-klauspost-reedsolomon-a9588190c00b0ccd742218388f6ff68bbad83e5c.tar.gz https://github.com/gomodule/redigo/archive/9c11da706d9b7902c6da69c592f75637793fe121.tar.gz -> github.com-gomodule-redigo-9c11da706d9b7902c6da69c592f75637793fe121.tar.gz https://github.com/go-sql-driver/mysql/archive/72cd26f257d44c1114970e19afddcd812016007e.tar.gz -> github.com-go-sql-driver-mysql-72cd26f257d44c1114970e19afddcd812016007e.tar.gz https://github.com/gorilla/handlers/archive/7e0847f9db758cdebd26c149d0ae9d5d0b9c98ce.tar.gz -> github.com-gorilla-handlers-7e0847f9db758cdebd26c149d0ae9d5d0b9c98ce.tar.gz https://github.com/mattn/go-isatty/archive/c2a7a6ca930a4cd0bc33a3f298eb71960732a3a7.tar.gz -> github.com-mattn-go-isatty-c2a7a6ca930a4cd0bc33a3f298eb71960732a3a7.tar.gz https://github.com/satori/go.uuid/archive/f58768cc1a7a7e77a3bd49e98cdd21419399b6a3.tar.gz -> github.com-satori-go.uuid-f58768cc1a7a7e77a3bd49e98cdd21419399b6a3.tar.gz https://github.com/golang/snappy/archive/2a8bb927dd31d8daada140a5d09578521ce5c36a.tar.gz -> github.com-golang-snappy-2a8bb927dd31d8daada140a5d09578521ce5c36a.tar.gz https://github.com/klauspost/cpuid/archive/e7e905edc00ea8827e58662220139109efea09db.tar.gz -> github.com-klauspost-cpuid-e7e905edc00ea8827e58662220139109efea09db.tar.gz https://github.com/census-ecosystem/opencensus-go-exporter-ocagent/archive/902c0ccba68df93f7fefbe7e7c6f16be33108b40.tar.gz -> github.com-census-ecosystem-opencensus-go-exporter-ocagent-902c0ccba68df93f7fefbe7e7c6f16be33108b40.tar.gz https://github.com/lib/pq/archive/4ded0e9383f75c197b3a2aaa6d590ac52df6fd79.tar.gz -> github.com-lib-pq-4ded0e9383f75c197b3a2aaa6d590ac52df6fd79.tar.gz https://github.com/mattn/go-runewidth/archive/3ee7d812e62a0804a7d0a324e0249ca2db3476d3.tar.gz -> github.com-mattn-go-runewidth-3ee7d812e62a0804a7d0a324e0249ca2db3476d3.tar.gz https://github.com/census-instrumentation/opencensus-proto/archive/a105b96453fe85139acc07b68de48f2cbdd71249.tar.gz -> github.com-census-instrumentation-opencensus-proto-a105b96453fe85139acc07b68de48f2cbdd71249.tar.gz https://github.com/minio/cli/archive/8683fa7fef37cc8cb092f47bdb6b403e0049f9ee.tar.gz -> github.com-minio-cli-8683fa7fef37cc8cb092f47bdb6b403e0049f9ee.tar.gz https://github.com/minio/mc/archive/a1355e50e2e8984d645cc7745230c42b27396341.tar.gz -> github.com-minio-mc-a1355e50e2e8984d645cc7745230c42b27396341.tar.gz https://github.com/googleapis/google-api-go-client/archive/bce707a4d0ea3488942724b3bcc1c8338f38f991.tar.gz -> github.com-googleapis-google-api-go-client-bce707a4d0ea3488942724b3bcc1c8338f38f991.tar.gz https://github.com/grpc-ecosystem/grpc-gateway/archive/20f268a412e5b342ebfb1a0eef7c3b7bd6c260ea.tar.gz -> github.com-grpc-ecosystem-grpc-gateway-20f268a412e5b342ebfb1a0eef7c3b7bd6c260ea.tar.gz https://github.com/mattn/go-colorable/archive/3a70a971f94a22f2fa562ffcc7a0eb45f5daf045.tar.gz -> github.com-mattn-go-colorable-3a70a971f94a22f2fa562ffcc7a0eb45f5daf045.tar.gz https://github.com/minio/blazer/archive/2081f5bf046503f576d8712253724fbf2950fffe.tar.gz -> github.com-minio-blazer-2081f5bf046503f576d8712253724fbf2950fffe.tar.gz https://github.com/minio/highwayhash/archive/02ca4b43caa3297fbb615700d8800acc7933be98.tar.gz -> github.com-minio-highwayhash-02ca4b43caa3297fbb615700d8800acc7933be98.tar.gz https://github.com/minio/lsync/archive/v1.0.1.tar.gz -> github.com-minio-lsync-v1.0.1.tar.gz https://github.com/minio/sha256-simd/archive/05b4dd3047e5d6e86cb4e0477164b850cd896261.tar.gz -> github.com-minio-sha256-simd-05b4dd3047e5d6e86cb4e0477164b850cd896261.tar.gz https://github.com/minio/sio/archive/035b4ef8c449ba2ba21ec143c91964e76a1fb68c.tar.gz -> github.com-minio-sio-035b4ef8c449ba2ba21ec143c91964e76a1fb68c.tar.gz https://github.com/golang/sync/archive/e225da77a7e68af35c70ccbf71af2b83e6acac3c.tar.gz -> github.com-golang-sync-e225da77a7e68af35c70ccbf71af2b83e6acac3c.tar.gz https://github.com/golang/oauth2/archive/9f3314589c9a9136388751d9adae6b0ed400978a.tar.gz -> github.com-golang-oauth2-9f3314589c9a9136388751d9adae6b0ed400978a.tar.gz https://github.com/googleapis/google-cloud-go/archive/458e1f376a2b44413160b5d301183b65debaa3f6.tar.gz -> github.com-googleapis-google-cloud-go-458e1f376a2b44413160b5d301183b65debaa3f6.tar.gz https://github.com/googleapis/gax-go/archive/beaecbbdd8af86aa3acf14180d53828ce69400b2.tar.gz -> github.com-googleapis-gax-go-beaecbbdd8af86aa3acf14180d53828ce69400b2.tar.gz https://github.com/hashicorp/golang-lru/archive/7087cb70de9f7a8bc0a10c375cb0d2280a8edf9c.tar.gz -> github.com-hashicorp-golang-lru-7087cb70de9f7a8bc0a10c375cb0d2280a8edf9c.tar.gz https://github.com/json-iterator/go/archive/0ff49de124c6f76f8494e194af75bde0f1a49a29.tar.gz -> github.com-json-iterator-go-0ff49de124c6f76f8494e194af75bde0f1a49a29.tar.gz https://github.com/colinmarc/hdfs/archive/fd1e410ff7bf76b870f625dc0aa3eb4e44f5bc50.tar.gz -> github.com-colinmarc-hdfs-fd1e410ff7bf76b870f625dc0aa3eb4e44f5bc50.tar.gz https://github.com/hashicorp/go-uuid/archive/4f571afc59f3043a65f8fe6bf46d887b10a01d43.tar.gz -> github.com-hashicorp-go-uuid-4f571afc59f3043a65f8fe6bf46d887b10a01d43.tar.gz https://github.com/jcmturner/gofork/archive/dc7c13fece037a4a36e2b3c69db4991498d30692.tar.gz -> github.com-jcmturner-gofork-dc7c13fece037a4a36e2b3c69db4991498d30692.tar.gz https://github.com/modern-go/concurrent/archive/bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94.tar.gz -> github.com-modern-go-concurrent-bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94.tar.gz https://github.com/modern-go/reflect2/archive/94122c33edd36123c84d5368cfb2b69df93a0ec8.tar.gz -> github.com-modern-go-reflect2-94122c33edd36123c84d5368cfb2b69df93a0ec8.tar.gz https://github.com/jcmturner/aescts/archive/f6abebb3171c4c1b1fea279cb7c7325020a26290.tar.gz -> github.com-jcmturner-aescts-f6abebb3171c4c1b1fea279cb7c7325020a26290.tar.gz https://github.com/jcmturner/dnsutils/archive/13eeb8d49ffb74d7a75784c35e4d900607a3943c.tar.gz -> github.com-jcmturner-dnsutils-13eeb8d49ffb74d7a75784c35e4d900607a3943c.tar.gz https://github.com/klauspost/readahead/archive/v1.3.0.tar.gz -> github.com-klauspost-readahead-v1.3.0.tar.gz https://github.com/kurin/blazer/archive/v0.5.3.tar.gz -> github.com-kurin-blazer-v0.5.3.tar.gz https://github.com/minio/dsync/archive/fedfb5c974fa2ab238e45a6e6b19d38774e0326f.tar.gz -> github.com-minio-dsync-fedfb5c974fa2ab238e45a6e6b19d38774e0326f.tar.gz https://github.com/ncw/directio/archive/v1.0.5.tar.gz -> github.com-ncw-directio-v1.0.5.tar.gz https://github.com/nats-io/stan.go/archive/v0.4.5.tar.gz -> github.com-nats-io-stan.go-v0.4.5.tar.gz https://github.com/nats-io/nats.go/archive/v1.8.0.tar.gz -> github.com-nats-io-nats.go-v1.8.0.tar.gz https://github.com/minio/minio-go/archive/v6.0.29.tar.gz -> github.com-minio-minio-go-v6.0.29.tar.gz https://github.com/minio/hdfs/archive/v3.0.1.tar.gz -> github.com-minio-hdfs-v3.0.1.tar.gz https://github.com/minio/gokrb5/archive/v7.2.5.tar.gz -> github.com-minio-gokrb5-v7.2.5.tar.gz https://github.com/minio/minio-go/archive/v6.0.29.tar.gz -> github.com-minio-minio-go-v6.0.29.tar.gz https://github.com/jcmturner/goidentity/archive/v5.0.0.tar.gz -> github.com-jcmturner-goidentity-v5.0.0.tar.gz https://github.com/jcmturner/rpc/archive/99a8ce2fbf8b8087b6ed12a37c61b10f04070043.tar.gz -> github.com-jcmturner-rpc-99a8ce2fbf8b8087b6ed12a37c61b10f04070043.tar.gz https://github.com/jcmturner/goidentity/archive/v2.0.0.tar.gz -> github.com-jcmturner-goidentity-v2.0.0.tar.gz https://github.com/jcmturner/goidentity/archive/v3.0.0.tar.gz -> github.com-jcmturner-goidentity-v3.0.0.tar.gz https://github.com/kurin/blazer/archive/cf2f27cc0be3dac3c1a94c3c8b76834ce741439e.tar.gz -> github.com-kurin-blazer-cf2f27cc0be3dac3c1a94c3c8b76834ce741439e.tar.gz https://github.com/valyala/fastjson/archive/v1.4.1.tar.gz -> github.com-valyala-fastjson-v1.4.1.tar.gz +_eclasses_=golang-base c57d2c3f9e1a02d0feb8b87c7b689892 golang-build dc25bafa8fc1305a4de66a0a448472e7 golang-vcs-snapshot 12177e83bede6f7fb87eae383864b40b user 00484e1be1aac73e24fca1c99557a7d6 +_md5_=19f9e2af0691b5f99377ed88b6fa5a8a diff --git a/metadata/md5-cache/net-vpn/Manifest.gz b/metadata/md5-cache/net-vpn/Manifest.gz index 7f7c8154fafb..502cf11fcef8 100644 Binary files a/metadata/md5-cache/net-vpn/Manifest.gz and b/metadata/md5-cache/net-vpn/Manifest.gz differ diff --git a/metadata/md5-cache/net-vpn/vtun-3.0.3-r1 b/metadata/md5-cache/net-vpn/vtun-3.0.3-r1 index 8f0dcf8646df..56ddfff48244 100644 --- a/metadata/md5-cache/net-vpn/vtun-3.0.3-r1 +++ b/metadata/md5-cache/net-vpn/vtun-3.0.3-r1 @@ -4,10 +4,10 @@ DESCRIPTION=Create tunnels over TCP/IP networks with shaping, encryption, and co EAPI=6 HOMEPAGE=http://vtun.sourceforge.net/ IUSE=lzo socks5 ssl zlib kernel_linux -KEYWORDS=~alpha amd64 ~ppc ~sparc ~x86 +KEYWORDS=~alpha amd64 ~ppc ~sparc x86 LICENSE=GPL-2 RDEPEND=ssl? ( dev-libs/openssl:0 ) lzo? ( dev-libs/lzo:2 ) zlib? ( sys-libs/zlib ) socks5? ( net-proxy/dante ) SLOT=0 SRC_URI=mirror://sourceforge/vtun/vtun-3.0.3.tar.gz _eclasses_=eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 linux-info 953c3b1c472dcadbf62098a9301327f2 multilib 1d91b03d42ab6308b5f4f6b598ed110e toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 -_md5_=3157db0598dead96f819696c4f5995c6 +_md5_=448ffc57dec1171ac3e2a3a4084808e0 diff --git a/metadata/md5-cache/sci-mathematics/Manifest.gz b/metadata/md5-cache/sci-mathematics/Manifest.gz index 53178d5f704e..79a1f619b6e5 100644 Binary files a/metadata/md5-cache/sci-mathematics/Manifest.gz and b/metadata/md5-cache/sci-mathematics/Manifest.gz differ diff --git a/metadata/md5-cache/sci-mathematics/rstudio-1.1.463-r1 b/metadata/md5-cache/sci-mathematics/rstudio-1.1.463-r1 index 0cdf81c94913..88a1f054ffa2 100644 --- a/metadata/md5-cache/sci-mathematics/rstudio-1.1.463-r1 +++ b/metadata/md5-cache/sci-mathematics/rstudio-1.1.463-r1 @@ -11,4 +11,4 @@ RDEPEND=>=app-text/pandoc-1.19.2.1 dev-haskell/pandoc-citeproc >=dev-lang/R-2.11 SLOT=0 SRC_URI=https://github.com/rstudio/rstudio/archive/v1.1.463.tar.gz -> rstudio-1.1.463.tar.gz https://s3.amazonaws.com/rstudio-buildtools/gin-1.5.zip https://s3.amazonaws.com/rstudio-buildtools/gwt-2.7.0.zip https://s3.amazonaws.com/rstudio-buildtools/selenium-java-2.37.0.zip https://s3.amazonaws.com/rstudio-buildtools/selenium-server-standalone-2.37.0.jar https://s3.amazonaws.com/rstudio-buildtools/chromedriver-linux https://s3.amazonaws.com/rstudio-dictionaries/core-dictionaries.zip https://dev.gentoo.org/~gienah/distfiles/packrat-0.98.1000.tar.gz https://dev.gentoo.org/~gienah/distfiles/rmarkdown-0.98.1000.tar.gz https://dev.gentoo.org/~gienah/distfiles/shinyapps-0.98.1000.tar.gz https://dev.gentoo.org/~gienah/distfiles/rsconnect_0.4.1.4_fcac892a69817febd7b655b189bf57193260cda0.tar.gz _eclasses_=cmake-utils 91d6ef31dc426240577497cacbf2508c estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic 7ba73aee7fe4462b3a745e3645ab92ca gnome2-utils 532371cfcba45b2ab0d2950547c97d95 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 dd352559d0e143500ec878acc74da909 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f pam 756a09f72c4cdbb55f2694c95f1e0860 pax-utils db85a3c508cf82c45f24b2723791cc93 qmake-utils bdf97e69a34b864d6d545f4ec3143ff7 toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 user 00484e1be1aac73e24fca1c99557a7d6 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=177d0758b24de9b806c472e058b81654 +_md5_=7c3810299edb1f2b819750010da768ab diff --git a/metadata/md5-cache/sci-mathematics/spass-3.9 b/metadata/md5-cache/sci-mathematics/spass-3.9 index a0d1b050723f..3fb3a7d9c504 100644 --- a/metadata/md5-cache/sci-mathematics/spass-3.9 +++ b/metadata/md5-cache/sci-mathematics/spass-3.9 @@ -10,4 +10,4 @@ RDEPEND=isabelle? ( sci-mathematics/isabelle:= ) SLOT=0/3.9 SRC_URI=http://www.spass-prover.org/download/sources/spass39.tgz _eclasses_=multilib 1d91b03d42ab6308b5f4f6b598ed110e toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 -_md5_=a68ffe554be6e3a9f44235840ffb2b33 +_md5_=833c8ef8eff5f69f461e9ad75176255b diff --git a/metadata/md5-cache/www-client/Manifest.gz b/metadata/md5-cache/www-client/Manifest.gz index 92a5a92ca528..2a18c8667932 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/opera-63.0.3368.43 b/metadata/md5-cache/www-client/opera-63.0.3368.43 new file mode 100644 index 000000000000..b2b260a0ca4d --- /dev/null +++ b/metadata/md5-cache/www-client/opera-63.0.3368.43 @@ -0,0 +1,12 @@ +DEFINED_PHASES=install postinst postrm prepare setup unpack +DESCRIPTION=A fast and secure web browser +EAPI=7 +HOMEPAGE=https://www.opera.com/ +IUSE=kernel_linux +l10n_be +l10n_bg +l10n_bn +l10n_ca +l10n_cs +l10n_da +l10n_de +l10n_el +l10n_en-GB +l10n_en-US +l10n_es-419 +l10n_es +l10n_fil +l10n_fi +l10n_fr-CA +l10n_fr +l10n_hi +l10n_hr +l10n_hu +l10n_id +l10n_it +l10n_ja +l10n_ko +l10n_lt +l10n_lv +l10n_ms +l10n_nb +l10n_nl +l10n_pl +l10n_pt-BR +l10n_pt-PT +l10n_ro +l10n_ru +l10n_sk +l10n_sr +l10n_sv +l10n_sw +l10n_ta +l10n_te +l10n_th +l10n_tr +l10n_uk +l10n_vi +l10n_zh-CN +l10n_zh-TW +KEYWORDS=~amd64 +LICENSE=OPERA-2014 +RDEPEND=dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss gnome-base/gconf:2 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype net-misc/curl net-print/cups sys-apps/dbus x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:3 x11-libs/libX11 x11-libs/libXScrnSaver 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/libXtst x11-libs/libnotify x11-libs/pango[X] +SLOT=0 +SRC_URI=https://download1.operacdn.com/pub/opera/desktop/63.0.3368.43/linux/opera-stable_63.0.3368.43_amd64.deb https://download2.operacdn.com/pub/opera/desktop/63.0.3368.43/linux/opera-stable_63.0.3368.43_amd64.deb https://download3.operacdn.com/pub/opera/desktop/63.0.3368.43/linux/opera-stable_63.0.3368.43_amd64.deb https://download4.operacdn.com/pub/opera/desktop/63.0.3368.43/linux/opera-stable_63.0.3368.43_amd64.deb +_eclasses_=chromium-2 92ff174aa2b13d6ea0c4539533f0b2de eutils 6e6c2737b59a4b982de6fb3ecefd87f8 linux-info 953c3b1c472dcadbf62098a9301327f2 multilib 1d91b03d42ab6308b5f4f6b598ed110e toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 unpacker 3cd8bad0d31e525cd26be1bfa4e61631 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=da3889161f4011bdda5da1700c2e7970 diff --git a/metadata/md5-cache/xfce-base/Manifest.gz b/metadata/md5-cache/xfce-base/Manifest.gz index 6e288d75bb2f..87ac0b1b5b4f 100644 Binary files a/metadata/md5-cache/xfce-base/Manifest.gz and b/metadata/md5-cache/xfce-base/Manifest.gz differ diff --git a/metadata/md5-cache/xfce-base/garcon-0.6.2 b/metadata/md5-cache/xfce-base/garcon-0.6.2 deleted file mode 100644 index ce9109000333..000000000000 --- a/metadata/md5-cache/xfce-base/garcon-0.6.2 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install -DEPEND=>=dev-libs/glib-2.30:= gtk2? ( >=x11-libs/gtk+-2.24:2= ) >=x11-libs/gtk+-3.20:3= >=xfce-base/libxfce4ui-4.12:=[gtk3(+)] >=xfce-base/libxfce4util-4.12:= dev-util/glib-utils dev-util/gtk-doc-am dev-util/intltool sys-devel/gettext virtual/pkgconfig -DESCRIPTION=Xfce's freedesktop.org specification compatible menu implementation library -EAPI=7 -HOMEPAGE=https://docs.xfce.org/xfce/exo/start -IUSE=+gtk2 -KEYWORDS=alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x86-solaris -LICENSE=LGPL-2+ FDL-1.1+ -RDEPEND=>=dev-libs/glib-2.30:= gtk2? ( >=x11-libs/gtk+-2.24:2= ) >=x11-libs/gtk+-3.20:3= >=xfce-base/libxfce4ui-4.12:=[gtk3(+)] >=xfce-base/libxfce4util-4.12:= -SLOT=0 -SRC_URI=https://archive.xfce.org/src/xfce/garcon/0.6/garcon-0.6.2.tar.bz2 -_md5_=0afd109e44b74800991ecf9529bf63ef diff --git a/metadata/md5-cache/xfce-base/garcon-0.6.2-r1 b/metadata/md5-cache/xfce-base/garcon-0.6.2-r1 new file mode 100644 index 000000000000..4bb1745ca06d --- /dev/null +++ b/metadata/md5-cache/xfce-base/garcon-0.6.2-r1 @@ -0,0 +1,12 @@ +DEFINED_PHASES=configure install +DEPEND=>=dev-libs/glib-2.30:= >=x11-libs/gtk+-3.20:3= >=xfce-base/libxfce4ui-4.12:=[gtk2(+)?,gtk3(+)] >=xfce-base/libxfce4util-4.12:= gtk2? ( >=x11-libs/gtk+-2.24:2= ) dev-util/glib-utils dev-util/gtk-doc-am dev-util/intltool sys-devel/gettext virtual/pkgconfig +DESCRIPTION=Xfce's freedesktop.org specification compatible menu implementation library +EAPI=7 +HOMEPAGE=https://docs.xfce.org/xfce/exo/start +IUSE=+gtk2 +KEYWORDS=alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x86-solaris +LICENSE=LGPL-2+ FDL-1.1+ +RDEPEND=>=dev-libs/glib-2.30:= >=x11-libs/gtk+-3.20:3= >=xfce-base/libxfce4ui-4.12:=[gtk2(+)?,gtk3(+)] >=xfce-base/libxfce4util-4.12:= gtk2? ( >=x11-libs/gtk+-2.24:2= ) +SLOT=0 +SRC_URI=https://archive.xfce.org/src/xfce/garcon/0.6/garcon-0.6.2.tar.bz2 +_md5_=e42311e8392c5eae1cef3dc133b5c52e diff --git a/metadata/md5-cache/xfce-base/garcon-0.6.3 b/metadata/md5-cache/xfce-base/garcon-0.6.3 index f2f0a7076e80..aee23082ab11 100644 --- a/metadata/md5-cache/xfce-base/garcon-0.6.3 +++ b/metadata/md5-cache/xfce-base/garcon-0.6.3 @@ -1,12 +1,12 @@ DEFINED_PHASES=configure install -DEPEND=>=dev-libs/glib-2.30:= gtk2? ( >=x11-libs/gtk+-2.24:2= ) >=x11-libs/gtk+-3.20:3= >=xfce-base/libxfce4ui-4.12:=[gtk3(+)] >=xfce-base/libxfce4util-4.12:= dev-util/glib-utils dev-util/gtk-doc-am dev-util/intltool sys-devel/gettext virtual/pkgconfig +DEPEND=>=dev-libs/glib-2.30:= >=x11-libs/gtk+-3.20:3= >=xfce-base/libxfce4ui-4.12:=[gtk2(+)?,gtk3(+)] >=xfce-base/libxfce4util-4.12:= gtk2? ( >=x11-libs/gtk+-2.24:2= ) dev-util/glib-utils dev-util/gtk-doc-am dev-util/intltool sys-devel/gettext virtual/pkgconfig DESCRIPTION=Xfce's freedesktop.org specification compatible menu implementation library EAPI=7 HOMEPAGE=https://docs.xfce.org/xfce/exo/start IUSE=+gtk2 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x86-solaris LICENSE=LGPL-2+ FDL-1.1+ -RDEPEND=>=dev-libs/glib-2.30:= gtk2? ( >=x11-libs/gtk+-2.24:2= ) >=x11-libs/gtk+-3.20:3= >=xfce-base/libxfce4ui-4.12:=[gtk3(+)] >=xfce-base/libxfce4util-4.12:= +RDEPEND=>=dev-libs/glib-2.30:= >=x11-libs/gtk+-3.20:3= >=xfce-base/libxfce4ui-4.12:=[gtk2(+)?,gtk3(+)] >=xfce-base/libxfce4util-4.12:= gtk2? ( >=x11-libs/gtk+-2.24:2= ) SLOT=0 SRC_URI=https://archive.xfce.org/src/xfce/garcon/0.6/garcon-0.6.3.tar.bz2 -_md5_=1c1c4ad81939733af8bb3d195b5cbaeb +_md5_=cced29407f4c4c1ac750b19590e529f8 diff --git a/metadata/md5-cache/xfce-base/garcon-0.6.4 b/metadata/md5-cache/xfce-base/garcon-0.6.4 deleted file mode 100644 index 5574cedd48ee..000000000000 --- a/metadata/md5-cache/xfce-base/garcon-0.6.4 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install -DEPEND=>=dev-libs/glib-2.30:= gtk2? ( >=x11-libs/gtk+-2.24:2= ) >=x11-libs/gtk+-3.20:3= >=xfce-base/libxfce4ui-4.12:=[gtk3(+)] >=xfce-base/libxfce4util-4.12:= dev-util/glib-utils dev-util/gtk-doc-am dev-util/intltool sys-devel/gettext virtual/pkgconfig -DESCRIPTION=Xfce's freedesktop.org specification compatible menu implementation library -EAPI=7 -HOMEPAGE=https://docs.xfce.org/xfce/exo/start -IUSE=+gtk2 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x86-solaris -LICENSE=LGPL-2+ FDL-1.1+ -RDEPEND=>=dev-libs/glib-2.30:= gtk2? ( >=x11-libs/gtk+-2.24:2= ) >=x11-libs/gtk+-3.20:3= >=xfce-base/libxfce4ui-4.12:=[gtk3(+)] >=xfce-base/libxfce4util-4.12:= -SLOT=0 -SRC_URI=https://archive.xfce.org/src/xfce/garcon/0.6/garcon-0.6.4.tar.bz2 -_md5_=1c1c4ad81939733af8bb3d195b5cbaeb diff --git a/metadata/md5-cache/xfce-base/garcon-0.6.4-r1 b/metadata/md5-cache/xfce-base/garcon-0.6.4-r1 new file mode 100644 index 000000000000..4ac6a413e1ca --- /dev/null +++ b/metadata/md5-cache/xfce-base/garcon-0.6.4-r1 @@ -0,0 +1,12 @@ +DEFINED_PHASES=configure install +DEPEND=>=dev-libs/glib-2.30:= >=x11-libs/gtk+-3.20:3= >=xfce-base/libxfce4ui-4.12:=[gtk2(+)?,gtk3(+)] >=xfce-base/libxfce4util-4.12:= gtk2? ( >=x11-libs/gtk+-2.24:2= ) dev-util/glib-utils dev-util/gtk-doc-am dev-util/intltool sys-devel/gettext virtual/pkgconfig +DESCRIPTION=Xfce's freedesktop.org specification compatible menu implementation library +EAPI=7 +HOMEPAGE=https://docs.xfce.org/xfce/exo/start +IUSE=+gtk2 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x86-solaris +LICENSE=LGPL-2+ FDL-1.1+ +RDEPEND=>=dev-libs/glib-2.30:= >=x11-libs/gtk+-3.20:3= >=xfce-base/libxfce4ui-4.12:=[gtk2(+)?,gtk3(+)] >=xfce-base/libxfce4util-4.12:= gtk2? ( >=x11-libs/gtk+-2.24:2= ) +SLOT=0 +SRC_URI=https://archive.xfce.org/src/xfce/garcon/0.6/garcon-0.6.4.tar.bz2 +_md5_=cced29407f4c4c1ac750b19590e529f8 diff --git a/metadata/md5-cache/xfce-base/libxfce4ui-4.14.1 b/metadata/md5-cache/xfce-base/libxfce4ui-4.14.1 index 191084e5946d..e2c8dba53157 100644 --- a/metadata/md5-cache/xfce-base/libxfce4ui-4.14.1 +++ b/metadata/md5-cache/xfce-base/libxfce4ui-4.14.1 @@ -1,14 +1,15 @@ DEFINED_PHASES=configure install postinst postrm prepare -DEPEND=>=dev-libs/glib-2.42:2= >=x11-libs/gtk+-2.24:2= >=x11-libs/gtk+-3.18:3=[introspection?] x11-libs/libX11:= x11-libs/libICE:= x11-libs/libSM:= >=xfce-base/libxfce4util-4.12:=[introspection?] >=xfce-base/xfconf-4.12:= glade? ( dev-util/glade:3.10= ) introspection? ( dev-libs/gobject-introspection:= ) startup-notification? ( x11-libs/startup-notification:= ) !xfce-base/xfce-utils dev-lang/perl dev-util/intltool sys-devel/gettext virtual/pkgconfig vala? ( || ( dev-lang/vala:0.46 dev-lang/vala:0.44 dev-lang/vala:0.42 dev-lang/vala:0.40 dev-lang/vala:0.36 ) ) +DEPEND=>=dev-libs/glib-2.42:2= >=x11-libs/gtk+-3.18:3=[introspection?] x11-libs/libX11:= x11-libs/libICE:= x11-libs/libSM:= >=xfce-base/libxfce4util-4.12:=[introspection?] >=xfce-base/xfconf-4.12:= glade? ( dev-util/glade:3.10= ) gtk2? ( >=x11-libs/gtk+-2.24:2= ) introspection? ( dev-libs/gobject-introspection:= ) startup-notification? ( x11-libs/startup-notification:= ) !xfce-base/xfce-utils dev-lang/perl dev-util/intltool sys-devel/gettext virtual/pkgconfig vala? ( || ( dev-lang/vala:0.46 dev-lang/vala:0.44 dev-lang/vala:0.42 dev-lang/vala:0.40 dev-lang/vala:0.36 ) ) DESCRIPTION=Unified widget and session management libs for Xfce EAPI=7 HOMEPAGE=https://wiki.gentoo.org/wiki/No_homepage -IUSE=debug glade introspection startup-notification vala +IUSE=debug glade +gtk2 introspection startup-notification vala KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x86-solaris LICENSE=LGPL-2+ GPL-2+ -RDEPEND=>=dev-libs/glib-2.42:2= >=x11-libs/gtk+-2.24:2= >=x11-libs/gtk+-3.18:3=[introspection?] x11-libs/libX11:= x11-libs/libICE:= x11-libs/libSM:= >=xfce-base/libxfce4util-4.12:=[introspection?] >=xfce-base/xfconf-4.12:= glade? ( dev-util/glade:3.10= ) introspection? ( dev-libs/gobject-introspection:= ) startup-notification? ( x11-libs/startup-notification:= ) !xfce-base/xfce-utils +RDEPEND=>=dev-libs/glib-2.42:2= >=x11-libs/gtk+-3.18:3=[introspection?] x11-libs/libX11:= x11-libs/libICE:= x11-libs/libSM:= >=xfce-base/libxfce4util-4.12:=[introspection?] >=xfce-base/xfconf-4.12:= glade? ( dev-util/glade:3.10= ) gtk2? ( >=x11-libs/gtk+-2.24:2= ) introspection? ( dev-libs/gobject-introspection:= ) startup-notification? ( x11-libs/startup-notification:= ) !xfce-base/xfce-utils REQUIRED_USE=vala? ( introspection ) +RESTRICT=!gtk2? ( test ) SLOT=0 SRC_URI=https://archive.xfce.org/src/xfce/libxfce4ui/4.14/libxfce4ui-4.14.1.tar.bz2 _eclasses_=eutils 6e6c2737b59a4b982de6fb3ecefd87f8 multilib 1d91b03d42ab6308b5f4f6b598ed110e toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 vala 682da46cf615b9f7a7d3680058139dcd xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=46e4a80818a66a218a2744644a8a1129 +_md5_=75c34f839fe7bbd251d3db376cc7a00f diff --git a/metadata/md5-cache/xfce-base/thunar-1.6.16 b/metadata/md5-cache/xfce-base/thunar-1.6.16-r1 similarity index 55% rename from metadata/md5-cache/xfce-base/thunar-1.6.16 rename to metadata/md5-cache/xfce-base/thunar-1.6.16-r1 index 8bca59f27e39..3de5b14b51d7 100644 --- a/metadata/md5-cache/xfce-base/thunar-1.6.16 +++ b/metadata/md5-cache/xfce-base/thunar-1.6.16-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=configure postinst postrm test -DEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.30:= >=x11-libs/gdk-pixbuf-2.14:= >=x11-libs/gtk+-2.24:2= >=xfce-base/exo-0.10:= >=xfce-base/libxfce4ui-4.10:= >=xfce-base/libxfce4util-4.10.1:= >=xfce-base/xfconf-4.10:= dbus? ( >=dev-libs/dbus-glib-0.100:= ) exif? ( >=media-libs/libexif-0.6.19:= ) libnotify? ( >=x11-libs/libnotify-0.7:= ) pcre? ( >=dev-libs/libpcre-6:= ) trash-panel-plugin? ( >=xfce-base/xfce4-panel-4.10:= ) udisks? ( virtual/libgudev:= ) dev-util/intltool sys-devel/gettext virtual/pkgconfig test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +DEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.30:= >=x11-libs/gdk-pixbuf-2.14:= >=x11-libs/gtk+-2.24:2= >=xfce-base/exo-0.10:= >=xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10.1:= >=xfce-base/xfconf-4.10:= dbus? ( >=dev-libs/dbus-glib-0.100:= ) exif? ( >=media-libs/libexif-0.6.19:= ) libnotify? ( >=x11-libs/libnotify-0.7:= ) pcre? ( >=dev-libs/libpcre-6:= ) trash-panel-plugin? ( >=xfce-base/xfce4-panel-4.10:= ) udisks? ( virtual/libgudev:= ) dev-util/intltool sys-devel/gettext virtual/pkgconfig test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) DESCRIPTION=File manager for the Xfce desktop environment EAPI=6 HOMEPAGE=https://www.xfce.org/projects/ https://docs.xfce.org/xfce/thunar/start IUSE=+dbus exif libnotify pcre test +trash-panel-plugin udisks test KEYWORDS=alpha amd64 arm ~arm64 ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris LICENSE=GPL-2+ LGPL-2+ -RDEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.30:= >=x11-libs/gdk-pixbuf-2.14:= >=x11-libs/gtk+-2.24:2= >=xfce-base/exo-0.10:= >=xfce-base/libxfce4ui-4.10:= >=xfce-base/libxfce4util-4.10.1:= >=xfce-base/xfconf-4.10:= dbus? ( >=dev-libs/dbus-glib-0.100:= ) exif? ( >=media-libs/libexif-0.6.19:= ) libnotify? ( >=x11-libs/libnotify-0.7:= ) pcre? ( >=dev-libs/libpcre-6:= ) trash-panel-plugin? ( >=xfce-base/xfce4-panel-4.10:= ) udisks? ( virtual/libgudev:= ) >=dev-util/desktop-file-utils-0.20-r1 x11-misc/shared-mime-info dbus? ( >=gnome-base/gvfs-1.18.3 ) trash-panel-plugin? ( >=gnome-base/gvfs-1.18.3 ) udisks? ( virtual/udev >=gnome-base/gvfs-1.18.3[udisks,udev] ) +RDEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.30:= >=x11-libs/gdk-pixbuf-2.14:= >=x11-libs/gtk+-2.24:2= >=xfce-base/exo-0.10:= >=xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10.1:= >=xfce-base/xfconf-4.10:= dbus? ( >=dev-libs/dbus-glib-0.100:= ) exif? ( >=media-libs/libexif-0.6.19:= ) libnotify? ( >=x11-libs/libnotify-0.7:= ) pcre? ( >=dev-libs/libpcre-6:= ) trash-panel-plugin? ( >=xfce-base/xfce4-panel-4.10:= ) udisks? ( virtual/libgudev:= ) >=dev-util/desktop-file-utils-0.20-r1 x11-misc/shared-mime-info dbus? ( >=gnome-base/gvfs-1.18.3 ) trash-panel-plugin? ( >=gnome-base/gvfs-1.18.3 ) udisks? ( virtual/udev >=gnome-base/gvfs-1.18.3[udisks,udev] ) REQUIRED_USE=trash-panel-plugin? ( dbus ) SLOT=0 SRC_URI=https://archive.xfce.org/src/xfce/thunar/1.6/Thunar-1.6.16.tar.bz2 _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 53625127887b62eabb9ec61d3d943462 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=ca07a1d4f8059a02e6bfe5c9d7aca21d +_md5_=265be9abed76af1efd3fa8d35d1bca5f diff --git a/metadata/md5-cache/xfce-base/thunar-1.6.17 b/metadata/md5-cache/xfce-base/thunar-1.6.17 index 67b81637cf75..cdb4068c7c75 100644 --- a/metadata/md5-cache/xfce-base/thunar-1.6.17 +++ b/metadata/md5-cache/xfce-base/thunar-1.6.17 @@ -1,14 +1,14 @@ DEFINED_PHASES=configure postinst postrm test -DEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.30:= >=x11-libs/gdk-pixbuf-2.14:= >=x11-libs/gtk+-2.24:2= =xfce-base/libxfce4ui-4.10:= >=xfce-base/libxfce4util-4.10.1:= >=xfce-base/xfconf-4.10:= dbus? ( >=dev-libs/dbus-glib-0.100:= ) exif? ( >=media-libs/libexif-0.6.19:= ) libnotify? ( >=x11-libs/libnotify-0.7:= ) pcre? ( >=dev-libs/libpcre-6:= ) trash-panel-plugin? ( >=xfce-base/xfce4-panel-4.10:= ) udisks? ( virtual/libgudev:= ) dev-util/intltool sys-devel/gettext virtual/pkgconfig test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +DEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.30:= >=x11-libs/gdk-pixbuf-2.14:= >=x11-libs/gtk+-2.24:2= =xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10.1:= >=xfce-base/xfconf-4.10:= dbus? ( >=dev-libs/dbus-glib-0.100:= ) exif? ( >=media-libs/libexif-0.6.19:= ) libnotify? ( >=x11-libs/libnotify-0.7:= ) pcre? ( >=dev-libs/libpcre-6:= ) trash-panel-plugin? ( >=xfce-base/xfce4-panel-4.10:= ) udisks? ( virtual/libgudev:= ) dev-util/intltool sys-devel/gettext virtual/pkgconfig test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) DESCRIPTION=File manager for the Xfce desktop environment EAPI=6 HOMEPAGE=https://www.xfce.org/projects/ https://docs.xfce.org/xfce/thunar/start IUSE=+dbus exif libnotify pcre test +trash-panel-plugin udisks test KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris LICENSE=GPL-2+ LGPL-2+ -RDEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.30:= >=x11-libs/gdk-pixbuf-2.14:= >=x11-libs/gtk+-2.24:2= =xfce-base/libxfce4ui-4.10:= >=xfce-base/libxfce4util-4.10.1:= >=xfce-base/xfconf-4.10:= dbus? ( >=dev-libs/dbus-glib-0.100:= ) exif? ( >=media-libs/libexif-0.6.19:= ) libnotify? ( >=x11-libs/libnotify-0.7:= ) pcre? ( >=dev-libs/libpcre-6:= ) trash-panel-plugin? ( >=xfce-base/xfce4-panel-4.10:= ) udisks? ( virtual/libgudev:= ) >=dev-util/desktop-file-utils-0.20-r1 x11-misc/shared-mime-info dbus? ( >=gnome-base/gvfs-1.18.3 ) trash-panel-plugin? ( >=gnome-base/gvfs-1.18.3 ) udisks? ( virtual/udev >=gnome-base/gvfs-1.18.3[udisks,udev] ) +RDEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.30:= >=x11-libs/gdk-pixbuf-2.14:= >=x11-libs/gtk+-2.24:2= =xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10.1:= >=xfce-base/xfconf-4.10:= dbus? ( >=dev-libs/dbus-glib-0.100:= ) exif? ( >=media-libs/libexif-0.6.19:= ) libnotify? ( >=x11-libs/libnotify-0.7:= ) pcre? ( >=dev-libs/libpcre-6:= ) trash-panel-plugin? ( >=xfce-base/xfce4-panel-4.10:= ) udisks? ( virtual/libgudev:= ) >=dev-util/desktop-file-utils-0.20-r1 x11-misc/shared-mime-info dbus? ( >=gnome-base/gvfs-1.18.3 ) trash-panel-plugin? ( >=gnome-base/gvfs-1.18.3 ) udisks? ( virtual/udev >=gnome-base/gvfs-1.18.3[udisks,udev] ) REQUIRED_USE=trash-panel-plugin? ( dbus ) SLOT=0 SRC_URI=https://archive.xfce.org/src/xfce/thunar/1.6/Thunar-1.6.17.tar.bz2 _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 53625127887b62eabb9ec61d3d943462 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=5009b191c756d15ff63d62f56bdce0e1 +_md5_=935b28eb000e60b2feccbe2241398847 diff --git a/metadata/md5-cache/xfce-base/xfce4-panel-4.14.0 b/metadata/md5-cache/xfce-base/xfce4-panel-4.14.0 index e25d95ab9154..87626c6e1dd7 100644 --- a/metadata/md5-cache/xfce-base/xfce4-panel-4.14.0 +++ b/metadata/md5-cache/xfce-base/xfce4-panel-4.14.0 @@ -1,14 +1,15 @@ DEFINED_PHASES=configure install postinst postrm prepare -DEPEND=>=dev-libs/glib-2.42 >=x11-libs/cairo-1 >=x11-libs/gtk+-2.20:2 >=x11-libs/gtk+-3.22:3[introspection?] x11-libs/libX11 x11-libs/libwnck:3 >=xfce-base/exo-0.11.2:= >=xfce-base/garcon-0.5:= >=xfce-base/libxfce4ui-4.13:= >=xfce-base/libxfce4util-4.13:=[introspection?] >=xfce-base/xfconf-4.13:= introspection? ( dev-libs/gobject-introspection:= ) vala? ( || ( dev-lang/vala:0.46 dev-lang/vala:0.44 dev-lang/vala:0.42 dev-lang/vala:0.40 dev-lang/vala:0.36 ) ) dev-lang/perl dev-util/gtk-doc-am dev-util/intltool sys-devel/gettext virtual/pkgconfig +DEPEND=>=dev-libs/glib-2.42 >=x11-libs/cairo-1 >=x11-libs/gtk+-3.22:3[introspection?] x11-libs/libX11 x11-libs/libwnck:3 >=xfce-base/exo-0.11.2:= >=xfce-base/garcon-0.5:= >=xfce-base/libxfce4ui-4.13:= >=xfce-base/libxfce4util-4.13:=[introspection?] >=xfce-base/xfconf-4.13:= gtk2? ( >=x11-libs/gtk+-2.20:2 ) introspection? ( dev-libs/gobject-introspection:= ) vala? ( || ( dev-lang/vala:0.46 dev-lang/vala:0.44 dev-lang/vala:0.42 dev-lang/vala:0.40 dev-lang/vala:0.36 ) ) dev-lang/perl dev-util/gtk-doc-am dev-util/intltool sys-devel/gettext virtual/pkgconfig DESCRIPTION=Panel for the Xfce desktop environment EAPI=7 HOMEPAGE=https://www.xfce.org/projects/ -IUSE=introspection vala +IUSE=+gtk2 introspection vala KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris LICENSE=GPL-2+ LGPL-2.1+ -RDEPEND=>=dev-libs/glib-2.42 >=x11-libs/cairo-1 >=x11-libs/gtk+-2.20:2 >=x11-libs/gtk+-3.22:3[introspection?] x11-libs/libX11 x11-libs/libwnck:3 >=xfce-base/exo-0.11.2:= >=xfce-base/garcon-0.5:= >=xfce-base/libxfce4ui-4.13:= >=xfce-base/libxfce4util-4.13:=[introspection?] >=xfce-base/xfconf-4.13:= introspection? ( dev-libs/gobject-introspection:= ) +RDEPEND=>=dev-libs/glib-2.42 >=x11-libs/cairo-1 >=x11-libs/gtk+-3.22:3[introspection?] x11-libs/libX11 x11-libs/libwnck:3 >=xfce-base/exo-0.11.2:= >=xfce-base/garcon-0.5:= >=xfce-base/libxfce4ui-4.13:= >=xfce-base/libxfce4util-4.13:=[introspection?] >=xfce-base/xfconf-4.13:= gtk2? ( >=x11-libs/gtk+-2.20:2 ) introspection? ( dev-libs/gobject-introspection:= ) REQUIRED_USE=vala? ( introspection ) +RESTRICT=!gtk2? ( test ) SLOT=0 SRC_URI=https://archive.xfce.org/src/xfce/xfce4-panel/4.14/xfce4-panel-4.14.0.tar.bz2 _eclasses_=eutils 6e6c2737b59a4b982de6fb3ecefd87f8 multilib 1d91b03d42ab6308b5f4f6b598ed110e toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 vala 682da46cf615b9f7a7d3680058139dcd xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=6182c1a88c90e4595c070afb29250118 +_md5_=85ad93dc0ed67dd514bc017c3f5e5c20 diff --git a/metadata/md5-cache/xfce-base/xfce4-settings-4.12.4 b/metadata/md5-cache/xfce-base/xfce4-settings-4.12.4-r1 similarity index 66% rename from metadata/md5-cache/xfce-base/xfce4-settings-4.12.4 rename to metadata/md5-cache/xfce-base/xfce4-settings-4.12.4-r1 index e31ace4339b1..8d24073c4ca9 100644 --- a/metadata/md5-cache/xfce-base/xfce4-settings-4.12.4 +++ b/metadata/md5-cache/xfce-base/xfce4-settings-4.12.4-r1 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure postinst postrm -DEPEND=>=dev-libs/dbus-glib-0.100 >=dev-libs/glib-2.24 media-libs/fontconfig >=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=x11-libs/libXcursor-1.1 >=x11-libs/libXi-1.3 >=x11-libs/libXrandr-1.2 >=xfce-base/garcon-0.2 >=xfce-base/exo-0.8 >=xfce-base/libxfce4ui-4.11 >=xfce-base/libxfce4util-4.11 >=xfce-base/xfconf-4.10 libcanberra? ( >=media-libs/libcanberra-0.25[sound] ) input_devices_libinput? ( x11-drivers/xf86-input-libinput ) libnotify? ( >=x11-libs/libnotify-0.7 ) upower? ( >=sys-power/upower-0.9.23 ) xklavier? ( >=x11-libs/libxklavier-5 ) dev-util/intltool virtual/pkgconfig sys-devel/gettext x11-base/xorg-proto +DEPEND=>=dev-libs/dbus-glib-0.100 >=dev-libs/glib-2.24 media-libs/fontconfig >=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=x11-libs/libXcursor-1.1 >=x11-libs/libXi-1.3 >=x11-libs/libXrandr-1.2 >=xfce-base/garcon-0.2 >=xfce-base/exo-0.8 >=xfce-base/libxfce4ui-4.11[gtk2(+)] >=xfce-base/libxfce4util-4.11 >=xfce-base/xfconf-4.10 libcanberra? ( >=media-libs/libcanberra-0.25[sound] ) input_devices_libinput? ( x11-drivers/xf86-input-libinput ) libnotify? ( >=x11-libs/libnotify-0.7 ) upower? ( >=sys-power/upower-0.9.23 ) xklavier? ( >=x11-libs/libxklavier-5 ) dev-util/intltool virtual/pkgconfig sys-devel/gettext x11-base/xorg-proto DESCRIPTION=Configuration system for the Xfce desktop environment EAPI=6 HOMEPAGE=https://www.xfce.org/projects/ IUSE=input_devices_libinput libcanberra libnotify upower +xklavier KEYWORDS=alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 -RDEPEND=>=dev-libs/dbus-glib-0.100 >=dev-libs/glib-2.24 media-libs/fontconfig >=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=x11-libs/libXcursor-1.1 >=x11-libs/libXi-1.3 >=x11-libs/libXrandr-1.2 >=xfce-base/garcon-0.2 >=xfce-base/exo-0.8 >=xfce-base/libxfce4ui-4.11 >=xfce-base/libxfce4util-4.11 >=xfce-base/xfconf-4.10 libcanberra? ( >=media-libs/libcanberra-0.25[sound] ) input_devices_libinput? ( x11-drivers/xf86-input-libinput ) libnotify? ( >=x11-libs/libnotify-0.7 ) upower? ( >=sys-power/upower-0.9.23 ) xklavier? ( >=x11-libs/libxklavier-5 ) +RDEPEND=>=dev-libs/dbus-glib-0.100 >=dev-libs/glib-2.24 media-libs/fontconfig >=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=x11-libs/libXcursor-1.1 >=x11-libs/libXi-1.3 >=x11-libs/libXrandr-1.2 >=xfce-base/garcon-0.2 >=xfce-base/exo-0.8 >=xfce-base/libxfce4ui-4.11[gtk2(+)] >=xfce-base/libxfce4util-4.11 >=xfce-base/xfconf-4.10 libcanberra? ( >=media-libs/libcanberra-0.25[sound] ) input_devices_libinput? ( x11-drivers/xf86-input-libinput ) libnotify? ( >=x11-libs/libnotify-0.7 ) upower? ( >=sys-power/upower-0.9.23 ) xklavier? ( >=x11-libs/libxklavier-5 ) SLOT=0 SRC_URI=https://archive.xfce.org/src/xfce/xfce4-settings/4.12/xfce4-settings-4.12.4.tar.bz2 _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=3324aebd680b28fc258142b97c3b8bfb +_md5_=c0a963c3e378568be96a75505db65149 diff --git a/metadata/md5-cache/xfce-base/xfdesktop-4.12.4 b/metadata/md5-cache/xfce-base/xfdesktop-4.12.4 index dc359c3bce46..36088f180a6e 100644 --- a/metadata/md5-cache/xfce-base/xfdesktop-4.12.4 +++ b/metadata/md5-cache/xfce-base/xfdesktop-4.12.4 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure postinst postrm -DEPEND=>=x11-libs/cairo-1.6:= >=dev-libs/dbus-glib-0.100:= >=dev-libs/glib-2.20:= >=x11-libs/gtk+-2.24:2= >=x11-libs/libwnck-2.30:1= x11-libs/libX11:= >=xfce-base/exo-0.8:= >=xfce-base/garcon-0.3:= >=xfce-base/libxfce4ui-4.11:= >=xfce-base/libxfce4util-4.11:= >=xfce-base/xfconf-4.10:= libnotify? ( >=x11-libs/libnotify-0.7:= ) thunar? ( >=dev-libs/glib-2.38:= =xfce-base/thunar-1.6*:=[dbus] ) dev-util/intltool sys-devel/gettext virtual/pkgconfig +DEPEND=>=x11-libs/cairo-1.6:= >=dev-libs/dbus-glib-0.100:= >=dev-libs/glib-2.20:= >=x11-libs/gtk+-2.24:2= >=x11-libs/libwnck-2.30:1= x11-libs/libX11:= >=xfce-base/exo-0.8:= >=xfce-base/garcon-0.3:= >=xfce-base/libxfce4ui-4.11:=[gtk2(+)] >=xfce-base/libxfce4util-4.11:= >=xfce-base/xfconf-4.10:= libnotify? ( >=x11-libs/libnotify-0.7:= ) thunar? ( >=dev-libs/glib-2.38:= =xfce-base/thunar-1.6*:=[dbus] ) dev-util/intltool sys-devel/gettext virtual/pkgconfig DESCRIPTION=Desktop manager for the Xfce desktop environment EAPI=6 HOMEPAGE=https://www.xfce.org/projects/ IUSE=debug libnotify +thunar KEYWORDS=alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris LICENSE=GPL-2 -RDEPEND=>=x11-libs/cairo-1.6:= >=dev-libs/dbus-glib-0.100:= >=dev-libs/glib-2.20:= >=x11-libs/gtk+-2.24:2= >=x11-libs/libwnck-2.30:1= x11-libs/libX11:= >=xfce-base/exo-0.8:= >=xfce-base/garcon-0.3:= >=xfce-base/libxfce4ui-4.11:= >=xfce-base/libxfce4util-4.11:= >=xfce-base/xfconf-4.10:= libnotify? ( >=x11-libs/libnotify-0.7:= ) thunar? ( >=dev-libs/glib-2.38:= =xfce-base/thunar-1.6*:=[dbus] ) +RDEPEND=>=x11-libs/cairo-1.6:= >=dev-libs/dbus-glib-0.100:= >=dev-libs/glib-2.20:= >=x11-libs/gtk+-2.24:2= >=x11-libs/libwnck-2.30:1= x11-libs/libX11:= >=xfce-base/exo-0.8:= >=xfce-base/garcon-0.3:= >=xfce-base/libxfce4ui-4.11:=[gtk2(+)] >=xfce-base/libxfce4util-4.11:= >=xfce-base/xfconf-4.10:= libnotify? ( >=x11-libs/libnotify-0.7:= ) thunar? ( >=dev-libs/glib-2.38:= =xfce-base/thunar-1.6*:=[dbus] ) SLOT=0 SRC_URI=https://archive.xfce.org/src/xfce/xfdesktop/4.12/xfdesktop-4.12.4.tar.bz2 _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=eb354261934b9da3e22cd58c7a719e32 +_md5_=02fdbf7445248c0f85951027919d4774 diff --git a/metadata/md5-cache/xfce-base/xfdesktop-4.12.5 b/metadata/md5-cache/xfce-base/xfdesktop-4.12.5-r1 similarity index 61% rename from metadata/md5-cache/xfce-base/xfdesktop-4.12.5 rename to metadata/md5-cache/xfce-base/xfdesktop-4.12.5-r1 index 8124d320d945..557eedd053fb 100644 --- a/metadata/md5-cache/xfce-base/xfdesktop-4.12.5 +++ b/metadata/md5-cache/xfce-base/xfdesktop-4.12.5-r1 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure postinst postrm -DEPEND=>=x11-libs/cairo-1.6:= >=dev-libs/dbus-glib-0.100:= >=dev-libs/glib-2.20:= >=x11-libs/gtk+-2.24:2= >=x11-libs/libwnck-2.30:1= x11-libs/libX11:= =xfce-base/garcon-0.3:= >=xfce-base/libxfce4ui-4.11:= >=xfce-base/libxfce4util-4.11:= >=xfce-base/xfconf-4.10:= libnotify? ( >=x11-libs/libnotify-0.7:= ) thunar? ( >=dev-libs/glib-2.38:= =xfce-base/thunar-1.6*:=[dbus] ) dev-util/intltool sys-devel/gettext virtual/pkgconfig +DEPEND=>=x11-libs/cairo-1.6:= >=dev-libs/dbus-glib-0.100:= >=dev-libs/glib-2.20:= >=x11-libs/gtk+-2.24:2= >=x11-libs/libwnck-2.30:1= x11-libs/libX11:= =xfce-base/garcon-0.3:= >=xfce-base/libxfce4ui-4.11:=[gtk2(+)] >=xfce-base/libxfce4util-4.11:= >=xfce-base/xfconf-4.10:= libnotify? ( >=x11-libs/libnotify-0.7:= ) thunar? ( >=dev-libs/glib-2.38:= =xfce-base/thunar-1.6*:=[dbus] ) dev-util/intltool sys-devel/gettext virtual/pkgconfig DESCRIPTION=Desktop manager for the Xfce desktop environment EAPI=7 HOMEPAGE=https://www.xfce.org/projects/ IUSE=debug libnotify +thunar KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris LICENSE=GPL-2+ -RDEPEND=>=x11-libs/cairo-1.6:= >=dev-libs/dbus-glib-0.100:= >=dev-libs/glib-2.20:= >=x11-libs/gtk+-2.24:2= >=x11-libs/libwnck-2.30:1= x11-libs/libX11:= =xfce-base/garcon-0.3:= >=xfce-base/libxfce4ui-4.11:= >=xfce-base/libxfce4util-4.11:= >=xfce-base/xfconf-4.10:= libnotify? ( >=x11-libs/libnotify-0.7:= ) thunar? ( >=dev-libs/glib-2.38:= =xfce-base/thunar-1.6*:=[dbus] ) +RDEPEND=>=x11-libs/cairo-1.6:= >=dev-libs/dbus-glib-0.100:= >=dev-libs/glib-2.20:= >=x11-libs/gtk+-2.24:2= >=x11-libs/libwnck-2.30:1= x11-libs/libX11:= =xfce-base/garcon-0.3:= >=xfce-base/libxfce4ui-4.11:=[gtk2(+)] >=xfce-base/libxfce4util-4.11:= >=xfce-base/xfconf-4.10:= libnotify? ( >=x11-libs/libnotify-0.7:= ) thunar? ( >=dev-libs/glib-2.38:= =xfce-base/thunar-1.6*:=[dbus] ) SLOT=0 SRC_URI=https://archive.xfce.org/src/xfce/xfdesktop/4.12/xfdesktop-4.12.5.tar.bz2 _eclasses_=xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=ce655926910c767120aad2e099913c79 +_md5_=115dd1d8ea6c9c49283cc54c8930908b diff --git a/metadata/md5-cache/xfce-base/xfwm4-4.12.5 b/metadata/md5-cache/xfce-base/xfwm4-4.12.5-r1 similarity index 60% rename from metadata/md5-cache/xfce-base/xfwm4-4.12.5 rename to metadata/md5-cache/xfce-base/xfwm4-4.12.5-r1 index 1f6f0b02878b..8c5df8e31a88 100644 --- a/metadata/md5-cache/xfce-base/xfwm4-4.12.5 +++ b/metadata/md5-cache/xfce-base/xfwm4-4.12.5-r1 @@ -1,12 +1,12 @@ DEFINED_PHASES=configure -DEPEND=dev-libs/dbus-glib:= >=dev-libs/glib-2.20:= >=x11-libs/gtk+-2.24:2= x11-libs/libX11:= x11-libs/libXext:= x11-libs/libXinerama:= x11-libs/libXrandr:= x11-libs/libXrender:= x11-libs/pango:= >=x11-libs/libwnck-2.30:1= >=xfce-base/libxfce4util-4.10:= >=xfce-base/libxfce4ui-4.11:= >=xfce-base/xfconf-4.10:= startup-notification? ( x11-libs/startup-notification:= ) xcomposite? ( x11-libs/libXcomposite:= x11-libs/libXdamage:= x11-libs/libXfixes:= ) dev-util/intltool sys-devel/gettext x11-libs/libICE x11-libs/libSM xfce-base/exo virtual/pkgconfig dri? ( >=x11-libs/libdrm-2.4 ) +DEPEND=dev-libs/dbus-glib:= >=dev-libs/glib-2.20:= >=x11-libs/gtk+-2.24:2= x11-libs/libX11:= x11-libs/libXext:= x11-libs/libXinerama:= x11-libs/libXrandr:= x11-libs/libXrender:= x11-libs/pango:= >=x11-libs/libwnck-2.30:1= >=xfce-base/libxfce4util-4.10:= >=xfce-base/libxfce4ui-4.11:=[gtk2(+)] >=xfce-base/xfconf-4.10:= startup-notification? ( x11-libs/startup-notification:= ) xcomposite? ( x11-libs/libXcomposite:= x11-libs/libXdamage:= x11-libs/libXfixes:= ) dev-util/intltool sys-devel/gettext x11-libs/libICE x11-libs/libSM xfce-base/exo virtual/pkgconfig dri? ( >=x11-libs/libdrm-2.4 ) DESCRIPTION=Window manager for the Xfce desktop environment EAPI=6 HOMEPAGE=https://www.xfce.org/projects/ IUSE=dri startup-notification +xcomposite KEYWORDS=alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x86-solaris LICENSE=GPL-2 -RDEPEND=dev-libs/dbus-glib:= >=dev-libs/glib-2.20:= >=x11-libs/gtk+-2.24:2= x11-libs/libX11:= x11-libs/libXext:= x11-libs/libXinerama:= x11-libs/libXrandr:= x11-libs/libXrender:= x11-libs/pango:= >=x11-libs/libwnck-2.30:1= >=xfce-base/libxfce4util-4.10:= >=xfce-base/libxfce4ui-4.11:= >=xfce-base/xfconf-4.10:= startup-notification? ( x11-libs/startup-notification:= ) xcomposite? ( x11-libs/libXcomposite:= x11-libs/libXdamage:= x11-libs/libXfixes:= ) +RDEPEND=dev-libs/dbus-glib:= >=dev-libs/glib-2.20:= >=x11-libs/gtk+-2.24:2= x11-libs/libX11:= x11-libs/libXext:= x11-libs/libXinerama:= x11-libs/libXrandr:= x11-libs/libXrender:= x11-libs/pango:= >=x11-libs/libwnck-2.30:1= >=xfce-base/libxfce4util-4.10:= >=xfce-base/libxfce4ui-4.11:=[gtk2(+)] >=xfce-base/xfconf-4.10:= startup-notification? ( x11-libs/startup-notification:= ) xcomposite? ( x11-libs/libXcomposite:= x11-libs/libXdamage:= x11-libs/libXfixes:= ) SLOT=0 SRC_URI=https://archive.xfce.org/src/xfce/xfwm4/4.12/xfwm4-4.12.5.tar.bz2 -_md5_=64fad4ba393b95ea4b23b7fd6d36faaf +_md5_=c323c4927d204b8a66d7f0a1cb0f59b7 diff --git a/metadata/md5-cache/xfce-extra/Manifest.gz b/metadata/md5-cache/xfce-extra/Manifest.gz index 7a8939ccce2d..40b2576a6b68 100644 Binary files a/metadata/md5-cache/xfce-extra/Manifest.gz and b/metadata/md5-cache/xfce-extra/Manifest.gz differ diff --git a/metadata/md5-cache/xfce-extra/multiload-nandhp-0.3-r1 b/metadata/md5-cache/xfce-extra/multiload-nandhp-0.3-r2 similarity index 54% rename from metadata/md5-cache/xfce-extra/multiload-nandhp-0.3-r1 rename to metadata/md5-cache/xfce-extra/multiload-nandhp-0.3-r2 index 1699b6a48679..dfdd1bc559cb 100644 --- a/metadata/md5-cache/xfce-extra/multiload-nandhp-0.3-r1 +++ b/metadata/md5-cache/xfce-extra/multiload-nandhp-0.3-r2 @@ -1,12 +1,12 @@ DEFINED_PHASES=configure install prepare -DEPEND=>=x11-libs/gtk+-2.14:2= x11-libs/cairo:= >=gnome-base/libgtop-2.11.92:= >=xfce-base/libxfce4ui-4.10:= >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10:= dev-util/intltool sys-devel/gettext virtual/pkgconfig >=app-portage/elt-patches-20170815 !=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 +DEPEND=>=x11-libs/gtk+-2.14:2= x11-libs/cairo:= >=gnome-base/libgtop-2.11.92:= >=xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10:=[gtk2(+)] dev-util/intltool sys-devel/gettext virtual/pkgconfig >=app-portage/elt-patches-20170815 !=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=A port of the GNOME multiload applet for the Xfce panel EAPI=6 HOMEPAGE=https://github.com/nandhp/multiload-nandhp KEYWORDS=amd64 x86 LICENSE=GPL-2 -RDEPEND=>=x11-libs/gtk+-2.14:2= x11-libs/cairo:= >=gnome-base/libgtop-2.11.92:= >=xfce-base/libxfce4ui-4.10:= >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10:= +RDEPEND=>=x11-libs/gtk+-2.14:2= x11-libs/cairo:= >=gnome-base/libgtop-2.11.92:= >=xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10:=[gtk2(+)] SLOT=0 SRC_URI=https://github.com/nandhp/multiload-nandhp/archive/version-0-3.tar.gz -> multiload-nandhp-0.3.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 multilib 1d91b03d42ab6308b5f4f6b598ed110e toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 -_md5_=1a5b4197fde9dfe881a010252b0e039f +_md5_=5d811f09444faab347ea9fedf3113148 diff --git a/metadata/md5-cache/xfce-extra/thunar-volman-0.8.1-r1 b/metadata/md5-cache/xfce-extra/thunar-volman-0.8.1-r2 similarity index 68% rename from metadata/md5-cache/xfce-extra/thunar-volman-0.8.1-r1 rename to metadata/md5-cache/xfce-extra/thunar-volman-0.8.1-r2 index e2c8a2b83da5..84e80ed7f1f1 100644 --- a/metadata/md5-cache/xfce-extra/thunar-volman-0.8.1-r1 +++ b/metadata/md5-cache/xfce-extra/thunar-volman-0.8.1-r2 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure postinst postrm -DEPEND=>=dev-libs/glib-2.30 virtual/libgudev:= >=x11-libs/gtk+-2.24:2 >=xfce-base/exo-0.10 >=xfce-base/libxfce4ui-4.10 >=xfce-base/libxfce4util-4.10 >=xfce-base/xfconf-4.10 libnotify? ( >=x11-libs/libnotify-0.7 ) dev-util/intltool sys-devel/gettext virtual/pkgconfig +DEPEND=>=dev-libs/glib-2.30 virtual/libgudev:= >=x11-libs/gtk+-2.24:2 >=xfce-base/exo-0.10 >=xfce-base/libxfce4ui-4.10[gtk2(+)] >=xfce-base/libxfce4util-4.10 >=xfce-base/xfconf-4.10 libnotify? ( >=x11-libs/libnotify-0.7 ) dev-util/intltool sys-devel/gettext virtual/pkgconfig DESCRIPTION=Daemon that enforces volume-related policies EAPI=6 HOMEPAGE=https://goodies.xfce.org/projects/thunar-plugins/thunar-volman IUSE=libnotify KEYWORDS=alpha amd64 arm ~arm64 ~ia64 ppc ppc64 ~sparc x86 LICENSE=GPL-2 -RDEPEND=>=dev-libs/glib-2.30 virtual/libgudev:= >=x11-libs/gtk+-2.24:2 >=xfce-base/exo-0.10 >=xfce-base/libxfce4ui-4.10 >=xfce-base/libxfce4util-4.10 >=xfce-base/xfconf-4.10 libnotify? ( >=x11-libs/libnotify-0.7 ) virtual/udev >=xfce-base/thunar-1.6[udisks] +RDEPEND=>=dev-libs/glib-2.30 virtual/libgudev:= >=x11-libs/gtk+-2.24:2 >=xfce-base/exo-0.10 >=xfce-base/libxfce4ui-4.10[gtk2(+)] >=xfce-base/libxfce4util-4.10 >=xfce-base/xfconf-4.10 libnotify? ( >=x11-libs/libnotify-0.7 ) virtual/udev >=xfce-base/thunar-1.6[udisks] SLOT=0 SRC_URI=https://archive.xfce.org/src/apps/thunar-volman/0.8/thunar-volman-0.8.1.tar.bz2 _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=44b53deef0ea3413710097b718825285 +_md5_=3505143eb8d6a4df1cb3c99907db4dd2 diff --git a/metadata/md5-cache/xfce-extra/xfce4-alsa-plugin-0.1.1 b/metadata/md5-cache/xfce-extra/xfce4-alsa-plugin-0.1.1 index f65f568c9d81..b087cf9b7069 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-alsa-plugin-0.1.1 +++ b/metadata/md5-cache/xfce-extra/xfce4-alsa-plugin-0.1.1 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile configure install prepare setup -DEPEND=media-libs/alsa-lib xfce-base/xfce4-panel x11-libs/gtk+:2 || ( dev-lang/python:3.6[threads(+)] dev-lang/python:3.5[threads(+)] >=dev-lang/python-2.7.5-r2:2.7[threads(+)] ) || ( dev-lang/vala:0.46 dev-lang/vala:0.44 dev-lang/vala:0.42 dev-lang/vala:0.40 dev-lang/vala:0.36 ) dev-util/intltool +DEPEND=media-libs/alsa-lib xfce-base/xfce4-panel[gtk2(+)] x11-libs/gtk+:2 || ( dev-lang/python:3.6[threads(+)] dev-lang/python:3.5[threads(+)] >=dev-lang/python-2.7.5-r2:2.7[threads(+)] ) || ( dev-lang/vala:0.46 dev-lang/vala:0.44 dev-lang/vala:0.42 dev-lang/vala:0.40 dev-lang/vala:0.36 ) dev-util/intltool DESCRIPTION=Simple ALSA volume control for xfce4-panel EAPI=6 HOMEPAGE=https://github.com/equeim/xfce4-alsa-plugin KEYWORDS=amd64 ~arm64 x86 LICENSE=GPL-3 -RDEPEND=media-libs/alsa-lib xfce-base/xfce4-panel x11-libs/gtk+:2 +RDEPEND=media-libs/alsa-lib xfce-base/xfce4-panel[gtk2(+)] x11-libs/gtk+:2 SLOT=0 SRC_URI=https://github.com/equeim/xfce4-alsa-plugin/archive/0.1.1.tar.gz -> xfce4-alsa-plugin-0.1.1.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-any-r1 b5f01473006ccc2cd78bc3dab20fced4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 vala 682da46cf615b9f7a7d3680058139dcd vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf waf-utils 1fab5379519d4b71bff5790435a71986 -_md5_=a71ba4d4448b278c88997f139dda203a +_md5_=df9cf8fd622fb54334f765907131809d diff --git a/metadata/md5-cache/xfce-extra/xfce4-cpugraph-plugin-1.0.5-r1 b/metadata/md5-cache/xfce-extra/xfce4-cpugraph-plugin-1.0.5-r2 similarity index 74% rename from metadata/md5-cache/xfce-extra/xfce4-cpugraph-plugin-1.0.5-r1 rename to metadata/md5-cache/xfce-extra/xfce4-cpugraph-plugin-1.0.5-r2 index b36a999408e6..a7e7ff755c2b 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-cpugraph-plugin-1.0.5-r1 +++ b/metadata/md5-cache/xfce-extra/xfce4-cpugraph-plugin-1.0.5-r2 @@ -1,12 +1,12 @@ DEFINED_PHASES=install postinst postrm -DEPEND=>=x11-libs/gtk+-2.12:2 >=xfce-base/libxfce4ui-4.8 >=xfce-base/xfce4-panel-4.8 dev-util/intltool sys-devel/gettext virtual/pkgconfig +DEPEND=>=x11-libs/gtk+-2.12:2 >=xfce-base/libxfce4ui-4.8[gtk2(+)] >=xfce-base/xfce4-panel-4.8[gtk2(+)] dev-util/intltool sys-devel/gettext virtual/pkgconfig DESCRIPTION=A system load plug-in for the Xfce panel EAPI=6 HOMEPAGE=https://goodies.xfce.org/projects/panel-plugins/xfce4-cpugraph-plugin KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux LICENSE=BSD-2 GPL-2 -RDEPEND=>=x11-libs/gtk+-2.12:2 >=xfce-base/libxfce4ui-4.8 >=xfce-base/xfce4-panel-4.8 +RDEPEND=>=x11-libs/gtk+-2.12:2 >=xfce-base/libxfce4ui-4.8[gtk2(+)] >=xfce-base/xfce4-panel-4.8[gtk2(+)] SLOT=0 SRC_URI=https://archive.xfce.org/src/panel-plugins/xfce4-cpugraph-plugin/1.0/xfce4-cpugraph-plugin-1.0.5.tar.bz2 _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=91e34bce291909fcdcde5f496228b99e +_md5_=446696bf9b6b116709f2bf6128d24ad3 diff --git a/metadata/md5-cache/xfce-extra/xfce4-embed-plugin-1.6.0-r1 b/metadata/md5-cache/xfce-extra/xfce4-embed-plugin-1.6.0-r2 similarity index 62% rename from metadata/md5-cache/xfce-extra/xfce4-embed-plugin-1.6.0-r1 rename to metadata/md5-cache/xfce-extra/xfce4-embed-plugin-1.6.0-r2 index 5852bb836e7d..95e6b214fbcb 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-embed-plugin-1.6.0-r1 +++ b/metadata/md5-cache/xfce-extra/xfce4-embed-plugin-1.6.0-r2 @@ -1,11 +1,11 @@ DEFINED_PHASES=install -DEPEND=>=x11-libs/gtk+-2.20:2 x11-libs/libX11:= >=xfce-base/libxfce4ui-4.10:= >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10:= dev-util/intltool sys-devel/gettext virtual/pkgconfig +DEPEND=>=x11-libs/gtk+-2.20:2 x11-libs/libX11:= >=xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10:=[gtk2(+)] dev-util/intltool sys-devel/gettext virtual/pkgconfig DESCRIPTION=A plug-in for embedding arbitrary application windows into the Xfce panel EAPI=6 HOMEPAGE=https://goodies.xfce.org/projects/panel-plugins/xfce4-embed-plugin KEYWORDS=amd64 x86 LICENSE=GPL-2 LGPL-2 -RDEPEND=>=x11-libs/gtk+-2.20:2 x11-libs/libX11:= >=xfce-base/libxfce4ui-4.10:= >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10:= +RDEPEND=>=x11-libs/gtk+-2.20:2 x11-libs/libX11:= >=xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10:=[gtk2(+)] SLOT=0 SRC_URI=https://archive.xfce.org/src/panel-plugins/xfce4-embed-plugin/1.6/xfce4-embed-plugin-1.6.0.tar.bz2 -_md5_=222c784d10d8a363afe2dba9accc8f73 +_md5_=166426fbc89077424591e7a28d0c39f9 diff --git a/metadata/md5-cache/xfce-extra/xfce4-equake-plugin-1.3.8.1 b/metadata/md5-cache/xfce-extra/xfce4-equake-plugin-1.3.8.1 index c9509b6b5ff0..6d57d178f319 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-equake-plugin-1.3.8.1 +++ b/metadata/md5-cache/xfce-extra/xfce4-equake-plugin-1.3.8.1 @@ -1,12 +1,12 @@ DEFINED_PHASES=postinst postrm -DEPEND=>=dev-libs/glib-2:= x11-libs/gtk+:2= x11-libs/libX11:= >=xfce-base/libxfce4ui-4.10:= >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10:= dev-util/intltool sys-devel/gettext virtual/pkgconfig +DEPEND=>=dev-libs/glib-2:= x11-libs/gtk+:2= x11-libs/libX11:= >=xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10:=[gtk2(+)] dev-util/intltool sys-devel/gettext virtual/pkgconfig DESCRIPTION=Panel plug-in that displays information about earthquakes at regular intervals EAPI=6 HOMEPAGE=http://www.e-quake.org/ KEYWORDS=amd64 x86 LICENSE=GPL-3 -RDEPEND=>=dev-libs/glib-2:= x11-libs/gtk+:2= x11-libs/libX11:= >=xfce-base/libxfce4ui-4.10:= >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10:= +RDEPEND=>=dev-libs/glib-2:= x11-libs/gtk+:2= x11-libs/libX11:= >=xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10:=[gtk2(+)] SLOT=0 SRC_URI=https://archive.xfce.org/src/panel-plugins/xfce4-equake-plugin/1.3/xfce4-equake-plugin-1.3.8.1.tar.bz2 _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=8a9562d2be7c4598ed98ec5d935d8454 +_md5_=11256f196b14b2b50ccdeb6698257243 diff --git a/metadata/md5-cache/xfce-extra/xfce4-eyes-plugin-4.4.5-r1 b/metadata/md5-cache/xfce-extra/xfce4-eyes-plugin-4.4.5-r2 similarity index 65% rename from metadata/md5-cache/xfce-extra/xfce4-eyes-plugin-4.4.5-r1 rename to metadata/md5-cache/xfce-extra/xfce4-eyes-plugin-4.4.5-r2 index c88b9aa45813..eae5f56f252c 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-eyes-plugin-4.4.5-r1 +++ b/metadata/md5-cache/xfce-extra/xfce4-eyes-plugin-4.4.5-r2 @@ -1,11 +1,11 @@ DEFINED_PHASES=install -DEPEND=>=dev-libs/glib-2.20 >=x11-libs/gtk+-2.14:2 >=xfce-base/libxfce4ui-4.10:= >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10:= dev-util/intltool virtual/pkgconfig +DEPEND=>=dev-libs/glib-2.20 >=x11-libs/gtk+-2.14:2 >=xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10:=[gtk2(+)] dev-util/intltool virtual/pkgconfig DESCRIPTION=A panel plug-in which adds classic eyes to your every step EAPI=6 HOMEPAGE=https://goodies.xfce.org/projects/panel-plugins/xfce4-eyes-plugin KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 -RDEPEND=>=dev-libs/glib-2.20 >=x11-libs/gtk+-2.14:2 >=xfce-base/libxfce4ui-4.10:= >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10:= +RDEPEND=>=dev-libs/glib-2.20 >=x11-libs/gtk+-2.14:2 >=xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10:=[gtk2(+)] SLOT=0 SRC_URI=https://archive.xfce.org/src/panel-plugins/xfce4-eyes-plugin/4.4/xfce4-eyes-plugin-4.4.5.tar.bz2 -_md5_=cec27d2deb07f953c03a917d95ef5673 +_md5_=0dab1b8b04554b3370f272a71f59ae69 diff --git a/metadata/md5-cache/xfce-extra/xfce4-hdaps-0.0.9-r1 b/metadata/md5-cache/xfce-extra/xfce4-hdaps-0.0.9-r2 similarity index 76% rename from metadata/md5-cache/xfce-extra/xfce4-hdaps-0.0.9-r1 rename to metadata/md5-cache/xfce-extra/xfce4-hdaps-0.0.9-r2 index 5bbd2bb3ffb5..8e11ee547de6 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-hdaps-0.0.9-r1 +++ b/metadata/md5-cache/xfce-extra/xfce4-hdaps-0.0.9-r2 @@ -1,13 +1,13 @@ DEFINED_PHASES=install postinst postrm pretend setup -DEPEND=>=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 dev-util/intltool sys-devel/gettext virtual/pkgconfig +DEPEND=>=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=xfce-base/libxfce4ui-4.8[gtk2(+)] >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8[gtk2(+)] dev-util/intltool sys-devel/gettext virtual/pkgconfig DESCRIPTION=A plugin to indicate the status of the IBM Hard Drive Active Protection System EAPI=6 HOMEPAGE=http://michael.orlitzky.com/code/xfce4-hdaps.php IUSE=kernel_linux KEYWORDS=amd64 x86 LICENSE=GPL-3 -RDEPEND=>=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 >=app-laptop/hdapsd-20090101 >=app-laptop/tp_smapi-0.39 +RDEPEND=>=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=xfce-base/libxfce4ui-4.8[gtk2(+)] >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8[gtk2(+)] >=app-laptop/hdapsd-20090101 >=app-laptop/tp_smapi-0.39 SLOT=0 SRC_URI=http://michael.orlitzky.com/code/releases/xfce4-hdaps-0.0.9.tar.bz2 _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 linux-info 953c3b1c472dcadbf62098a9301327f2 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=3e2e45ebb7eb1bbc08d39cfc2dc19a0b +_md5_=0acb3e3bbf6e72f411e027a3bf8b7aec diff --git a/metadata/md5-cache/xfce-extra/xfce4-kbdleds-plugin-0.0.6-r1 b/metadata/md5-cache/xfce-extra/xfce4-kbdleds-plugin-0.0.6-r2 similarity index 69% rename from metadata/md5-cache/xfce-extra/xfce4-kbdleds-plugin-0.0.6-r1 rename to metadata/md5-cache/xfce-extra/xfce4-kbdleds-plugin-0.0.6-r2 index d79d3ed71af4..e4e950e4f2a7 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-kbdleds-plugin-0.0.6-r1 +++ b/metadata/md5-cache/xfce-extra/xfce4-kbdleds-plugin-0.0.6-r2 @@ -1,12 +1,12 @@ DEFINED_PHASES=install postinst postrm -DEPEND=>=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 >=x11-libs/gtk+-2.20:2 dev-util/intltool virtual/pkgconfig sys-devel/gettext +DEPEND=>=xfce-base/libxfce4ui-4.8[gtk2(+)] >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8[gtk2(+)] >=x11-libs/gtk+-2.20:2 dev-util/intltool virtual/pkgconfig sys-devel/gettext DESCRIPTION=A panel plug-in to show state of Caps, Num and Scroll Lock keys EAPI=6 HOMEPAGE=https://goodies.xfce.org/projects/panel-plugins/xfce4-kbdleds-plugin KEYWORDS=amd64 x86 LICENSE=GPL-2 LGPL-2 -RDEPEND=>=xfce-base/libxfce4ui-4.8 >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8 >=x11-libs/gtk+-2.20:2 +RDEPEND=>=xfce-base/libxfce4ui-4.8[gtk2(+)] >=xfce-base/libxfce4util-4.8 >=xfce-base/xfce4-panel-4.8[gtk2(+)] >=x11-libs/gtk+-2.20:2 SLOT=0 SRC_URI=http://compas.com.ua/oco/file/xfce4-kbdleds-plugin-0.0.6.tar.bz2 _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=00ecf79e3e6169d7345dc8518b4c1487 +_md5_=d650c84711f5d84f58a6b30ac33bd45b diff --git a/metadata/md5-cache/xfce-extra/xfce4-mailwatch-plugin-1.2.0-r2 b/metadata/md5-cache/xfce-extra/xfce4-mailwatch-plugin-1.2.0-r3 similarity index 68% rename from metadata/md5-cache/xfce-extra/xfce4-mailwatch-plugin-1.2.0-r2 rename to metadata/md5-cache/xfce-extra/xfce4-mailwatch-plugin-1.2.0-r3 index 843531e8cbec..37a69c14572f 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-mailwatch-plugin-1.2.0-r2 +++ b/metadata/md5-cache/xfce-extra/xfce4-mailwatch-plugin-1.2.0-r3 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install postinst postrm -DEPEND=>=dev-libs/glib-2:= >=x11-libs/gtk+-2.18:2= x11-libs/libX11:= =xfce-base/libxfce4ui-4.10:= >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10 ssl? ( dev-libs/libgcrypt:0= >=net-libs/gnutls-2:= ) dev-util/intltool sys-devel/gettext virtual/pkgconfig +DEPEND=>=dev-libs/glib-2:= >=x11-libs/gtk+-2.18:2= x11-libs/libX11:= =xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10[gtk2(+)] ssl? ( dev-libs/libgcrypt:0= >=net-libs/gnutls-2:= ) dev-util/intltool sys-devel/gettext virtual/pkgconfig DESCRIPTION=An mail notification panel plug-in for the Xfce desktop environment EAPI=6 HOMEPAGE=http://spuriousinterrupt.org/projects/xfce4-mailwatch-plugin/ IUSE=ipv6 ssl KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 -RDEPEND=>=dev-libs/glib-2:= >=x11-libs/gtk+-2.18:2= x11-libs/libX11:= =xfce-base/libxfce4ui-4.10:= >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10 ssl? ( dev-libs/libgcrypt:0= >=net-libs/gnutls-2:= ) +RDEPEND=>=dev-libs/glib-2:= >=x11-libs/gtk+-2.18:2= x11-libs/libX11:= =xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10[gtk2(+)] ssl? ( dev-libs/libgcrypt:0= >=net-libs/gnutls-2:= ) SLOT=0 SRC_URI=https://archive.xfce.org/src/panel-plugins/xfce4-mailwatch-plugin/1.2/xfce4-mailwatch-plugin-1.2.0.tar.bz2 _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib 1d91b03d42ab6308b5f4f6b598ed110e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=320c7b8ab78acf8af4e5b8876ca7a670 +_md5_=b144eff1856c44de935332725082adf3 diff --git a/metadata/md5-cache/xfce-extra/xfce4-notes-plugin-1.8.1-r1 b/metadata/md5-cache/xfce-extra/xfce4-notes-plugin-1.8.1-r2 similarity index 60% rename from metadata/md5-cache/xfce-extra/xfce4-notes-plugin-1.8.1-r1 rename to metadata/md5-cache/xfce-extra/xfce4-notes-plugin-1.8.1-r2 index 466ec85e14c5..7a86986d8b40 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-notes-plugin-1.8.1-r1 +++ b/metadata/md5-cache/xfce-extra/xfce4-notes-plugin-1.8.1-r2 @@ -1,12 +1,12 @@ DEFINED_PHASES=install postinst postrm -DEPEND=>=dev-libs/glib-2.24:2 >=x11-libs/gtk+-2.20:2 >=xfce-base/libxfce4ui-4.10:= >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10:= >=xfce-base/xfconf-4.10:= dev-libs/libunique:1= virtual/pkgconfig dev-util/intltool +DEPEND=>=dev-libs/glib-2.24:2 >=x11-libs/gtk+-2.20:2 >=xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10:=[gtk2(+)] >=xfce-base/xfconf-4.10:= dev-libs/libunique:1= virtual/pkgconfig dev-util/intltool DESCRIPTION=Xfce4 panel sticky notes plugin EAPI=7 HOMEPAGE=https://goodies.xfce.org/projects/panel-plugins/xfce4-notes-plugin KEYWORDS=alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux LICENSE=GPL-2+ -RDEPEND=>=dev-libs/glib-2.24:2 >=x11-libs/gtk+-2.20:2 >=xfce-base/libxfce4ui-4.10:= >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10:= >=xfce-base/xfconf-4.10:= dev-libs/libunique:1= +RDEPEND=>=dev-libs/glib-2.24:2 >=x11-libs/gtk+-2.20:2 >=xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10:=[gtk2(+)] >=xfce-base/xfconf-4.10:= dev-libs/libunique:1= SLOT=0 SRC_URI=https://archive.xfce.org/src/panel-plugins/xfce4-notes-plugin/1.8/xfce4-notes-plugin-1.8.1.tar.bz2 _eclasses_=xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=69c41f2722c487b3bf09eaaaf2ae07e0 +_md5_=397ac5016d00fd825ce88bde6c9f3924 diff --git a/metadata/md5-cache/xfce-extra/xfce4-places-plugin-1.7.0-r1 b/metadata/md5-cache/xfce-extra/xfce4-places-plugin-1.7.0-r2 similarity index 52% rename from metadata/md5-cache/xfce-extra/xfce4-places-plugin-1.7.0-r1 rename to metadata/md5-cache/xfce-extra/xfce4-places-plugin-1.7.0-r2 index 3e8fea2ec3dc..6182aec6d243 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-places-plugin-1.7.0-r1 +++ b/metadata/md5-cache/xfce-extra/xfce4-places-plugin-1.7.0-r2 @@ -1,12 +1,12 @@ DEFINED_PHASES=configure install -DEPEND=>=dev-libs/glib-2.28:2 >=x11-libs/gtk+-2.20:2 x11-libs/libX11:= >=xfce-base/exo-0.6:= >=xfce-base/libxfce4ui-4.8:= >=xfce-base/libxfce4util-4.8:= >=xfce-base/xfce4-panel-4.8:= >=xfce-base/xfconf-4.8:= libnotify? ( >=x11-libs/libnotify-0.7:= ) dev-util/intltool sys-devel/gettext virtual/pkgconfig +DEPEND=>=dev-libs/glib-2.28:2 >=x11-libs/gtk+-2.20:2 x11-libs/libX11:= >=xfce-base/exo-0.6:=[gtk2(+)] >=xfce-base/libxfce4ui-4.8:=[gtk2(+)] >=xfce-base/libxfce4util-4.8:= >=xfce-base/xfce4-panel-4.8:=[gtk2(+)] >=xfce-base/xfconf-4.8:= libnotify? ( >=x11-libs/libnotify-0.7:= ) dev-util/intltool sys-devel/gettext virtual/pkgconfig DESCRIPTION=A panel plug-in to provide quick access to files, folders and removable media EAPI=7 HOMEPAGE=https://goodies.xfce.org/projects/panel-plugins/xfce4-places-plugin IUSE=libnotify KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux LICENSE=GPL-2+ -RDEPEND=>=dev-libs/glib-2.28:2 >=x11-libs/gtk+-2.20:2 x11-libs/libX11:= >=xfce-base/exo-0.6:= >=xfce-base/libxfce4ui-4.8:= >=xfce-base/libxfce4util-4.8:= >=xfce-base/xfce4-panel-4.8:= >=xfce-base/xfconf-4.8:= libnotify? ( >=x11-libs/libnotify-0.7:= ) +RDEPEND=>=dev-libs/glib-2.28:2 >=x11-libs/gtk+-2.20:2 x11-libs/libX11:= >=xfce-base/exo-0.6:=[gtk2(+)] >=xfce-base/libxfce4ui-4.8:=[gtk2(+)] >=xfce-base/libxfce4util-4.8:= >=xfce-base/xfce4-panel-4.8:=[gtk2(+)] >=xfce-base/xfconf-4.8:= libnotify? ( >=x11-libs/libnotify-0.7:= ) SLOT=0 SRC_URI=https://archive.xfce.org/src/panel-plugins/xfce4-places-plugin/1.7/xfce4-places-plugin-1.7.0.tar.bz2 -_md5_=b1d1462df8e2793015d782fc9121375a +_md5_=ced929d473b4920dec7f6125abac2093 diff --git a/metadata/md5-cache/xfce-extra/xfce4-time-out-plugin-1.0.2-r1 b/metadata/md5-cache/xfce-extra/xfce4-time-out-plugin-1.0.2-r1 index cf3548a44eb2..d9575ce74dbd 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-time-out-plugin-1.0.2-r1 +++ b/metadata/md5-cache/xfce-extra/xfce4-time-out-plugin-1.0.2-r1 @@ -1,12 +1,12 @@ DEFINED_PHASES=install postinst postrm -DEPEND=x11-libs/gtk+:2 x11-libs/libX11:= >=xfce-base/libxfce4ui-4.8:= >=xfce-base/libxfce4util-4.8:= >=xfce-base/xfce4-panel-4.8:= dev-util/intltool virtual/pkgconfig +DEPEND=x11-libs/gtk+:2 x11-libs/libX11:= >=xfce-base/libxfce4ui-4.8:=[gtk2(+)] >=xfce-base/libxfce4util-4.8:= >=xfce-base/xfce4-panel-4.8:=[gtk2(+)] dev-util/intltool virtual/pkgconfig DESCRIPTION=A panel plug-in to take periodical breaks from the computer EAPI=7 HOMEPAGE=https://goodies.xfce.org/projects/panel-plugins/xfce4-time-out-plugin KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux LICENSE=GPL-2+ -RDEPEND=x11-libs/gtk+:2 x11-libs/libX11:= >=xfce-base/libxfce4ui-4.8:= >=xfce-base/libxfce4util-4.8:= >=xfce-base/xfce4-panel-4.8:= +RDEPEND=x11-libs/gtk+:2 x11-libs/libX11:= >=xfce-base/libxfce4ui-4.8:=[gtk2(+)] >=xfce-base/libxfce4util-4.8:= >=xfce-base/xfce4-panel-4.8:=[gtk2(+)] SLOT=0 SRC_URI=https://archive.xfce.org/src/panel-plugins/xfce4-time-out-plugin/1.0/xfce4-time-out-plugin-1.0.2.tar.bz2 _eclasses_=xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=fc8f4d2af0074ab2320ceeee45fa0e60 +_md5_=5e03c0c6f377563724bfec2e9fd5b0aa diff --git a/metadata/md5-cache/xfce-extra/xfce4-time-out-plugin-1.0.3 b/metadata/md5-cache/xfce-extra/xfce4-time-out-plugin-1.0.3-r1 similarity index 71% rename from metadata/md5-cache/xfce-extra/xfce4-time-out-plugin-1.0.3 rename to metadata/md5-cache/xfce-extra/xfce4-time-out-plugin-1.0.3-r1 index b0dd398c45fd..8c1d5befd64d 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-time-out-plugin-1.0.3 +++ b/metadata/md5-cache/xfce-extra/xfce4-time-out-plugin-1.0.3-r1 @@ -1,12 +1,12 @@ DEFINED_PHASES=install postinst postrm -DEPEND=x11-libs/gtk+:2 x11-libs/libX11 >=xfce-base/libxfce4ui-4.8:= >=xfce-base/libxfce4util-4.8:= >=xfce-base/xfce4-panel-4.8:= dev-util/intltool virtual/pkgconfig +DEPEND=x11-libs/gtk+:2 x11-libs/libX11 >=xfce-base/libxfce4ui-4.8:=[gtk2(+)] >=xfce-base/libxfce4util-4.8:= >=xfce-base/xfce4-panel-4.8:=[gtk2(+)] dev-util/intltool virtual/pkgconfig DESCRIPTION=A panel plug-in to take periodical breaks from the computer EAPI=7 HOMEPAGE=https://goodies.xfce.org/projects/panel-plugins/xfce4-time-out-plugin KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux LICENSE=GPL-2+ -RDEPEND=x11-libs/gtk+:2 x11-libs/libX11 >=xfce-base/libxfce4ui-4.8:= >=xfce-base/libxfce4util-4.8:= >=xfce-base/xfce4-panel-4.8:= +RDEPEND=x11-libs/gtk+:2 x11-libs/libX11 >=xfce-base/libxfce4ui-4.8:=[gtk2(+)] >=xfce-base/libxfce4util-4.8:= >=xfce-base/xfce4-panel-4.8:=[gtk2(+)] SLOT=0 SRC_URI=https://archive.xfce.org/src/panel-plugins/xfce4-time-out-plugin/1.0/xfce4-time-out-plugin-1.0.3.tar.bz2 _eclasses_=xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=77d4d1a243f27944cc61d74feb971f4b +_md5_=6742ca400d95d9239539b0cbe9fbcecb diff --git a/metadata/md5-cache/xfce-extra/xfce4-windowck-plugin-0.4.6 b/metadata/md5-cache/xfce-extra/xfce4-windowck-plugin-0.4.6-r1 similarity index 67% rename from metadata/md5-cache/xfce-extra/xfce4-windowck-plugin-0.4.6 rename to metadata/md5-cache/xfce-extra/xfce4-windowck-plugin-0.4.6-r1 index b43c597413d4..c5085bd6c552 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-windowck-plugin-0.4.6 +++ b/metadata/md5-cache/xfce-extra/xfce4-windowck-plugin-0.4.6-r1 @@ -1,13 +1,13 @@ BDEPEND=>=app-portage/elt-patches-20170815 !=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 DEFINED_PHASES=install postinst postrm prepare setup -DEPEND=>=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=x11-libs/libwnck-2.30:1 >=xfce-base/libxfce4ui-4.10:= >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.12:= >=xfce-base/xfconf-4.10:= || ( dev-lang/python:3.7 dev-lang/python:3.6 ) dev-util/intltool dev-util/xfce4-dev-tools media-gfx/imagemagick[png] sys-devel/gettext virtual/pkgconfig +DEPEND=>=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=x11-libs/libwnck-2.30:1 >=xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.12:=[gtk2(+)] >=xfce-base/xfconf-4.10:= || ( dev-lang/python:3.7 dev-lang/python:3.6 ) dev-util/intltool dev-util/xfce4-dev-tools media-gfx/imagemagick[png] sys-devel/gettext virtual/pkgconfig DESCRIPTION=Xfce plugin puts the maximized window title and windows buttons on the panel EAPI=7 HOMEPAGE=https://github.com/cedl38/xfce4-windowck-plugin KEYWORDS=amd64 x86 LICENSE=GPL-3+ -RDEPEND=>=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=x11-libs/libwnck-2.30:1 >=xfce-base/libxfce4ui-4.10:= >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.12:= >=xfce-base/xfconf-4.10:= +RDEPEND=>=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=x11-libs/libwnck-2.30:1 >=xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.12:=[gtk2(+)] >=xfce-base/xfconf-4.10:= SLOT=0 SRC_URI=https://github.com/cedl38/xfce4-windowck-plugin/archive/v0.4.6.tar.gz -> xfce4-windowck-plugin-0.4.6.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 multilib 1d91b03d42ab6308b5f4f6b598ed110e python-any-r1 b5f01473006ccc2cd78bc3dab20fced4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs a3a237ef6c0c58546bf23b2c382f9e56 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=99376c6ed6e0545b3a7a119cb08b7321 +_md5_=eabd749d4d7a4efbc9f0af77ba742a5d diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index f1b7a472c9ae..e9dc488f9999 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Thu, 22 Aug 2019 11:08:54 +0000 +Thu, 22 Aug 2019 14:38:54 +0000 diff --git a/metadata/timestamp b/metadata/timestamp index 0f1720e8bda2..be569fb8546d 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Thu Aug 22 11:08:54 UTC 2019 +Thu Aug 22 14:38:54 UTC 2019 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index 58e677fe1fd3..99e9bd9d054a 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Thu, 22 Aug 2019 11:30:01 +0000 +Thu, 22 Aug 2019 15:00:01 +0000 diff --git a/metadata/timestamp.commit b/metadata/timestamp.commit index e9da1d14d713..3df48299bdde 100644 --- a/metadata/timestamp.commit +++ b/metadata/timestamp.commit @@ -1 +1 @@ -b4b7bf578d6915570fc39d5ec71d692604af4d1c 1566471707 2019-08-22T11:01:47+00:00 +33943e9d5d1670bfb5781dcde0b4fbcdb2c0989b 1566483338 2019-08-22T14:15:38+00:00 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index dcfb246b4a35..027673606586 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1566471901 Thu 22 Aug 2019 11:05:01 AM UTC +1566484501 Thu 22 Aug 2019 02:35:01 PM UTC diff --git a/metadata/xml-schema/timestamp.chk b/metadata/xml-schema/timestamp.chk index f1b7a472c9ae..e9dc488f9999 100644 --- a/metadata/xml-schema/timestamp.chk +++ b/metadata/xml-schema/timestamp.chk @@ -1 +1 @@ -Thu, 22 Aug 2019 11:08:54 +0000 +Thu, 22 Aug 2019 14:38:54 +0000 diff --git a/net-dns/Manifest.gz b/net-dns/Manifest.gz index 59a5e1f0f9cb..9d06ed9a2102 100644 Binary files a/net-dns/Manifest.gz and b/net-dns/Manifest.gz differ diff --git a/net-dns/bind-tools/bind-tools-9.14.4.ebuild b/net-dns/bind-tools/bind-tools-9.14.4.ebuild index 489ecbb114fe..7090d635dc05 100644 --- a/net-dns/bind-tools/bind-tools-9.14.4.ebuild +++ b/net-dns/bind-tools/bind-tools-9.14.4.ebuild @@ -42,6 +42,8 @@ S="${WORKDIR}/${MY_P}" # bug 479092, requires networking RESTRICT="test" +PATCHES=( "${FILESDIR}"/sparc-pause-instruction.patch ) + src_prepare() { default diff --git a/net-dns/bind-tools/files/sparc-pause-instruction.patch b/net-dns/bind-tools/files/sparc-pause-instruction.patch new file mode 100644 index 000000000000..35ddb24da0b0 --- /dev/null +++ b/net-dns/bind-tools/files/sparc-pause-instruction.patch @@ -0,0 +1,135 @@ +From a5ad6b16c5c0bfd333758d707a6397be79a92914 Mon Sep 17 00:00:00 2001 +From: Sergei Trofimovich +Date: Thu, 8 Aug 2019 08:33:10 +0100 +Subject: [PATCH] configure.ac: autodetect 'pause' instruction presence on + sparc + +The change fixes the following build failure on sparc T3 and older CPUs: + +``` +sparc-unknown-linux-gnu-gcc ... -O2 -mcpu=niagara2 ... -c rwlock.c +{standard input}: Assembler messages: +{standard input}:398: Error: Architecture mismatch on "pause ". +{standard input}:398: (Requires v9e|v9v|v9m|m8; requested architecture is v9b.) +make[1]: *** [Makefile:280: rwlock.o] Error 1 +``` + +`pause` insutruction exists only on `-mcpu=niagara4` (`T4`) and upper. + +The change adds `pause` configure-time autodetection and uses it if available. +config.h.in got new `HAVE_SPARC_PAUSE` knob. Fallback is a fall-through no-op. + +Build-tested on: + +- sparc-unknown-linux-gnu-gcc (no `pause`, build succeeds) +- sparc-unknown-linux-gnu-gcc -mcpu=niagara4 (`pause`, build succeeds) + +Reported-by: Rolf Eike Beer +Bug: https://bugs.gentoo.org/691708 +Signed-off-by: Sergei Trofimovich +--- + config.h.in | 3 +++ + configure | 33 +++++++++++++++++++++++++++++++++ + configure.ac | 14 ++++++++++++++ + lib/isc/rwlock.c | 2 +- + 4 files changed, 51 insertions(+), 1 deletion(-) + +diff --git a/config.h.in b/config.h.in +index 91508e5d91..eeba105ec6 100644 +--- a/config.h.in ++++ b/config.h.in +@@ -357,6 +357,9 @@ + /* Define to 1 if you have the `setresuid' function. */ + #undef HAVE_SETRESUID + ++/* define if the SPARC pause instruction is available */ ++#undef HAVE_SPARC_PAUSE ++ + /* define if struct stat has st_mtim.tv_nsec field */ + #undef HAVE_STAT_NSEC + +diff --git a/configure b/configure +index d336f6aa24..757dacb06e 100755 +--- a/configure ++++ b/configure +@@ -13872,6 +13872,39 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ;; #( + ;; + esac + ++# ++# Check for pause support on SPARC processors ++# ++case $host in #( ++ sparc*) : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pause instruction support" >&5 ++$as_echo_n "checking for pause instruction support... " >&6; } ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++__asm__ __volatile__ ("pause") ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 ++$as_echo "yes" >&6; } ++ ++$as_echo "#define HAVE_SPARC_PAUSE 1" >>confdefs.h ++ ++else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 ++$as_echo "no" >&6; } ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ;; #( ++ *) : ++ ;; ++esac ++ + for ac_func in sysctlbyname + do : + ac_fn_c_check_func "$LINENO" "sysctlbyname" "ac_cv_func_sysctlbyname" +diff --git a/configure.ac b/configure.ac +index 90aafae8d0..b04c651966 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -415,6 +415,20 @@ AS_CASE([$host], + [define if the ARM yield instruction is available])], + [AC_MSG_RESULT([no])])]) + ++# ++# Check for pause support on SPARC processors ++# ++AS_CASE([$host], ++ [sparc*], ++ [AC_MSG_CHECKING([for pause instruction support]) ++ AC_COMPILE_IFELSE( ++ [AC_LANG_PROGRAM([[]], ++ [[__asm__ __volatile__ ("pause")]])], ++ [AC_MSG_RESULT([yes]) ++ AC_DEFINE([HAVE_SPARC_PAUSE], [1], ++ [define if the SPARC pause instruction is available])], ++ [AC_MSG_RESULT([no])])]) ++ + AC_CHECK_FUNCS([sysctlbyname]) + + # +diff --git a/lib/isc/rwlock.c b/lib/isc/rwlock.c +index a6ea35feed..e313a912e0 100644 +--- a/lib/isc/rwlock.c ++++ b/lib/isc/rwlock.c +@@ -152,7 +152,7 @@ isc_rwlock_destroy(isc_rwlock_t *rwl) { + # define isc_rwlock_pause() __asm__ __volatile__ ("yield") + #elif defined(sun) && (defined(__sparc) || defined(__sparc__)) + # define isc_rwlock_pause() smt_pause() +-#elif defined(__sparc) || defined(__sparc__) ++#elif (defined(__sparc) || defined(__sparc__)) && HAVE_SPARC_PAUSE + # define isc_rwlock_pause() __asm__ __volatile__ ("pause") + #elif defined(__ppc__) || defined(_ARCH_PPC) || \ + defined(_ARCH_PWR) || defined(_ARCH_PWR2) || defined(_POWER) +-- +2.21.0 + diff --git a/net-fs/Manifest.gz b/net-fs/Manifest.gz index 54b71fd2e5d4..94871abe353e 100644 Binary files a/net-fs/Manifest.gz and b/net-fs/Manifest.gz differ diff --git a/net-fs/minio/Manifest b/net-fs/minio/Manifest index e575a0ee5f14..72b3107fb59d 100644 --- a/net-fs/minio/Manifest +++ b/net-fs/minio/Manifest @@ -126,6 +126,7 @@ DIST github.com-tidwall-match-33827db735fff6510490d69a8622612558a557ed.tar.gz 43 DIST github.com-tidwall-pretty-1166b9ac2b65e46a43d8618d30d1554f4652d49b.tar.gz 8823 BLAKE2B 6470a0221efb65e13d22e7cb8c5c5e43065d2980511b3972e22dfedb77b374879e4be055cae64fe9e95ca7dd0fc89c99159dd49651d43db8466f0b18e8128f4e SHA512 3a3820a4029a310e69d997dcd2a378fae2e8c0c0f76c9e2eef87bf43754832999ab4dc4c506a75e3b788ff855842b62fde8b1782ea7259a6c640a0de99a3921f DIST github.com-tidwall-sjson-25fb082a20e29e83fb7b7ef5f5919166aad1f084.tar.gz 26764 BLAKE2B 1756704c32c465c7368f7947ec0c7f257dcc007a0a4eaa3b18c3a3dbcebc5bd952d128dd92010bb04a4ad55a0a1e2e3e3c6524bd18ef082671d39fb9225eb0b6 SHA512 314d63ad24d9b5c4133f8a2f603a19e09f73958a61c8b10b758f760825a411fd478ab47a1fa0e95c1c5156e7b2aa0ad611ba2ca91bf0b10f6bf2b9608bbc8f4a DIST github.com-uber-go-atomic-1ea20fb1cbb1cc08cbd0d913a96dead89aa18289.tar.gz 8055 BLAKE2B 89cd909922bf9e565cd01e86b5970dfd55e0f4cbb3109ac052080013aa9a1dfef79761b5f3e08f6c2f2fe1cbcc99d7148e129461b7f95e266ff8253b38124732 SHA512 1455ebfeb0457da779eda76de3bdd5ef8aa18aa440563b3933d2013bff5b3742f245dd396cc9e93bbb343d166d048877b192b159b23b41c630128ac2e2ab26a5 +DIST github.com-valyala-fastjson-v1.4.1.tar.gz 728333 BLAKE2B bf43df3d72c0e9c06667bf6670aef178b638efc51ac5918c2bd9dc1a3016daa9bd98b78f426289262963e40b4233434e46086d113d4dabe43296a8e4e19bdc46 SHA512 6af810588ee07c39d3e4416aca6dc3ea6aa344b3febd0a2204cfb12e1ac3383a6736a1e1d48593bb31ddaf59520bc5a566ccd489d8596632e6fceb7672ba6582 DIST github.com-valyala-tcplisten-ceec8f93295a060cdb565ec25e4ccf17941dbd55.tar.gz 4579 BLAKE2B d1c4bdac60073d25e0d953c2f48820c72e0da13b730f439abff498ff9fe09165ee006b021df4d6c925e9d364f5565025dd0fb8f10cad20d16db3e14aa32ddafd SHA512 69f9afd7e71c9dabb851b2592f99d565d83be9dea2ff55ee0208401debf6445e92d74973079f369d4028c64bcf6e9156a9144ba536cef8b6f72685762f28197e DIST minio-2019.01.10.00.21.20.tar.gz 9272639 BLAKE2B e8d64c436795894ad6e20cfc5acc193598312a6c1d7e20b58a1250f0bcc4791f004afd1dfed4d0e2d506f4690290d0d29596a263853c216456555792e84da5b2 SHA512 fe68bbd56f131ba4e189114b45fbf2f95925cce3a11384503c67debdc9eb04cf1c034f28f792adbcca373783cf74f3f57853a6e61241a5864898e19946c31e6f DIST minio-2019.01.16.21.44.08.tar.gz 9284989 BLAKE2B f54ecdd5892375c2bc8c3f2c8dc0144ee61c4e94342e12a27d8c55e1745b74c82a480a5562274553d2a5c968fc252ec8b95d0c708405089304b63520eb10405a SHA512 457c2adfe15a70c39fba8e8c7ac6dfa3dccc7265a725c932f57d4e45b5285859ce45701c8c7fa953300ad28322a46d1083f27e668ada5c3616c62337cdaf006c @@ -149,3 +150,4 @@ DIST minio-2019.07.24.02.02.23.tar.gz 6071931 BLAKE2B 927d20dd4d0d905004bd4f6f69 DIST minio-2019.07.31.18.57.56.tar.gz 6075316 BLAKE2B f1ce00ac4ef82a543afadf8d816b5f3e771b5ca6e1f24d31fbec25f2e6202ba740b3887c4530df9583a518b2bc364dc5949a18943353876e145408585f6b4efa SHA512 ecceb4d66caafafa5a0af80d493822d2dd2f93ba53f876d6eecb94cfb7e8963034e64ac138f818f1bc114f2a26b9b3d26ae732fd03f1d3ffea7a166dc0041676 DIST minio-2019.08.01.22.18.54.tar.gz 6075510 BLAKE2B 73d21e067c5e067465a98dbbfc0442317f11ae6c08c1b910624dfbfc7850022b12e29bdff75c6cd2c0d5f45b2ff6607349bebce17864d69db1079be5be4860b8 SHA512 a2a6008a5516210048e2258c0c3dff9788efc6f7c510225d4e49da78d7c9ebae84be696796d4ca49bddea7cf8804784e743fcd1fab635ea9c6eb613678a6b8dd DIST minio-2019.08.14.20.37.41.tar.gz 6943472 BLAKE2B 5f79acc95d25f33d3428dba27a22c6c7b6ccedea0a996994931b21e1376f3a8d43dc8f4b091fee5e320d7b5198e58ec493e3a3a0902b0bad3ea0c6d598be8663 SHA512 87f4c47eb3d7c719099da3704e9144b5c8e5b93fa7fd49434c0764670a8a164d21af0a05474c6ee049b99d162a62c47b6a145d5876b2c723a0c415f7b26811e6 +DIST minio-2019.08.21.19.40.07.tar.gz 6945260 BLAKE2B a44d09e1344ff3e24c7de66a4b6250ad2f49dbaa9d8512a2eeab12465a4666e975e9917cb0bbe5b591f187be31c8f043e70620151505f70ae0b9bad41f247731 SHA512 f66a746a3155ab20054e70b48aac035000bb590adda63e74520eb6da54a37e11c978b3528238cfe90ed5ce9270e93b2951a513b261e1ed4d7360fc6e082450c7 diff --git a/net-fs/minio/minio-2019.08.21.19.40.07.ebuild b/net-fs/minio/minio-2019.08.21.19.40.07.ebuild new file mode 100644 index 000000000000..c0b5ee79d46f --- /dev/null +++ b/net-fs/minio/minio-2019.08.21.19.40.07.ebuild @@ -0,0 +1,197 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +EGO_VENDOR=( "gopkg.in/yaml.v2 51d6538a90f86fe93ac480b35f37b2be17fef232 github.com/go-yaml/yaml" + "gopkg.in/olivere/elastic.v5 f72acaba629a7ec879103d17b7426a31bc38e199 github.com/olivere/elastic" + "gopkg.in/Shopify/sarama.v1 879f631812a30a580659e8035e7cda9994bb99ac github.com/Shopify/sarama" + "google.golang.org/api/option bce707a4d0ea3488942724b3bcc1c8338f38f991 github.com/googleapis/google-api-go-client" + "google.golang.org/api/iterator bce707a4d0ea3488942724b3bcc1c8338f38f991 github.com/googleapis/google-api-go-client" + "google.golang.org/api/googleapi bce707a4d0ea3488942724b3bcc1c8338f38f991 github.com/googleapis/google-api-go-client" + "golang.org/x/time 9d24e82272b4f38b78bc8cff74fa936d31ccd8ef github.com/golang/time" + "golang.org/x/sys 81d4e9dc473e5e8c933f2aaeba2a3d81efb9aed2 github.com/golang/sys" + "golang.org/x/net eb5bcb51f2a31c7d5141d810b70815c05d9c9146 github.com/golang/net" + "golang.org/x/text e3703dcdd614d2d7488fff034c75c551ea25da95 github.com/golang/text" + "golang.org/x/crypto 38d8ce5564a5b71b2e3a00553993f1b9a7ae852f github.com/golang/crypto" + "go.uber.org/atomic 1ea20fb1cbb1cc08cbd0d913a96dead89aa18289 github.com/uber-go/atomic" + "github.com/valyala/tcplisten ceec8f93295a060cdb565ec25e4ccf17941dbd55" + "cloud.google.com/go/storage a4ed3b9f8c7419c692a60bbf780ab0f1c4af5ce4 github.com/googleapis/google-cloud-go" + "github.com/tidwall/sjson 25fb082a20e29e83fb7b7ef5f5919166aad1f084" + "github.com/tidwall/gjson eee0b6226f0d1db2675a176fdfaa8419bcad4ca8" + "github.com/tidwall/pretty 1166b9ac2b65e46a43d8618d30d1554f4652d49b" + "github.com/tidwall/match 33827db735fff6510490d69a8622612558a557ed" + "github.com/streadway/amqp 14f78b41ce6da3d698c2ef2cc8c0ea7ce9e26688" + "github.com/skyrings/skyring-common d1c0bb1cbd5ed8438be1385c85c4f494608cde1e" + "github.com/segmentio/go-prompt f0d19b6901ade831d5a3204edc0d6a7d6457fbb2" + "github.com/rs/cors 9a47f48565a795472d43519dd49aac781f3034fb" + "github.com/rjeczalik/notify 69d839f37b13a8cb7a78366f7633a4071cb43be7" + "github.com/rcrowley/go-metrics 3113b8401b8a98917cde58f8bbd42a1b1c03b1fd" + "github.com/prometheus/client_golang 505eaef017263e299324067d40ca2c48f6a2cf50" + "github.com/prometheus/procfs 55ae3d9d557340b5bc24cd8aa5f6fa2c2ab31352" + "github.com/prometheus/common 5df5c82edb7502fd6cbe093223a19b6e1231494f" + "github.com/prometheus/client_model fd36f4220a901265f90734c3183c5f0c91daa0b8" + "github.com/pkg/profile f6fe06335df110bcf1ed6d4e852b760bfc15beee" + "github.com/pkg/errors ba968bfe8b2f7e042a574c888954fccecfa385b4" + "github.com/pierrec/lz4 315a67e90e415bcdaff33057da191569bf4d8479" + "github.com/nsqio/go-nsq eee57a3ac4174c55924125bb15eeeda8cffb6e6f" + "github.com/nats-io/nats 70fe06cee50d4b6f98248d9675fb55f2a3aa7228" + "github.com/nats-io/nuid 3024a71c3cbe30667286099921591e6fcc328230" + "github.com/nats-io/nkeys 1546a3320a8f195a5b5c84aef8309377c2e411d5" + "github.com/nats-io/go-nats 70fe06cee50d4b6f98248d9675fb55f2a3aa7228" + "github.com/nats-io/go-nats-streaming 4366d43a0648b4997ed32080f937e8702ab86c48" + "github.com/Azure/azure-sdk-for-go d659f2a91175cac99aa5627d09b83026eacc978d" + "github.com/Azure/go-autorest 3b1641ed03046f2ee28d73f7a51e5b884d55b92a" + "github.com/DataDog/zstd c7161f8c63c045cbc7ca051dcc969dd0e4054de2" + "github.com/mailru/easyjson 1ea4449da9834f4d333f1cc461c374aea217d249" + "github.com/gorilla/mux a7962380ca08b5a188038c69871b8d3fbdf31e89" + "github.com/coredns/coredns 8dcc7fccd74454134b33c8bc9f780ed6d7f076cf" + "github.com/matttproud/golang_protobuf_extensions c182affec369e30f25d3eb8cd8a478dee585ae7d" + "github.com/eapache/go-resiliency 842e16ec2c98ef0c59eebfe60d2d3500a793ba19" + "github.com/minio/minio-go 5325257a208fc630aaaac31bc00789acbc998c14" + "github.com/alecthomas/participle 98cb121381c371cf1542c7ae145e485d703aec0b" + "github.com/aliyun/aliyun-oss-go-sdk 86c17b95fcd5db33628a61e492fb4a1a937d5906" + "github.com/bcicen/jstream 16c1f8af81c2a9967b30d365a29472126274f998" + "github.com/beorn7/perks 3a771d992973f24aa725d07868b467d1ddfceafb" + "github.com/cheggaaa/pb f907f6f5dd81f77c2bbc1cde92e4c5a04720cb11" + "github.com/gogo/protobuf 382325bbbb4d1c850eec1f3ec92a1a16f502d68b" + "github.com/davecgh/go-spew d8f796af33cc11cb798c1aaeb27a4ebc5099927d" + "github.com/inconshreveable/go-update 8152e7eb6ccf8679a64582a66b78519688d156ad" + "github.com/howeyc/gopass bf9dde6d0d2c004a008c27aaee91170c786f6db8" + "github.com/mitchellh/go-homedir af06845cf3004701891bf4fdb884bfe4920b3727" + "github.com/klauspost/pgzip 083b1c3f84dd6486588802e5ce295de3a7f41a8b" + "github.com/marstr/guid 8bd9a64bf37eb297b492a4101fb28e80ac0b290f" + "github.com/coreos/etcd d57e8b8d97adfc4a6c224fe116714bf1a1f3beb9" + "github.com/dgrijalva/jwt-go 06ea1031745cb8b3dab3f6a236daf2b0aa468b7e" + "github.com/gorilla/rpc bffcfa752ad4e523cc8f720afeb5b985ed41ae16" + "github.com/djherbis/atime 8e47e0e01d08df8b9f840d74299c8ab70a024a30" + "github.com/dustin/go-humanize 9f541cc9db5d55bce703bd99987c9d5cb8eea45e" + "github.com/eapache/go-xerial-snappy 776d5712da21bc4762676d614db1d8a64f4238b0" + "github.com/eapache/queue 093482f3f8ce946c05bcba64badd2c82369e084d" + "github.com/golang/protobuf d3c38a4eb4970272b87a425ae00ccc4548e2f9bb" + "github.com/fatih/structs 4966fc68f5b7593aafa6cbbba2d65ec6e1416047" + "github.com/minio/parquet-go 9d767baf16793cc4b7fd55d642474c36c077ef77" + "gopkg.in/ini.v1 c85607071cf08ca1adaf48319cd1aa322e81d8c1 github.com/go-ini/ini" + "google.golang.org/grpc 3507fb8e1a5ad030303c106fef3a47c9fdad16ad github.com/grpc/grpc-go" + "google.golang.org/genproto 64821d5d210748c883cd2b809589555ae4654203 github.com/google/go-genproto" + "go.opencensus.io 43463a80402d8447b7fce0d2c58edf1687ff0b58 github.com/census-instrumentation/opencensus-go" + "git.apache.org/thrift.git c9b1e29bc9e0702d7441383358d565e1e76ccea7 github.com/apache/thrift" + "github.com/elazarl/go-bindata-assetfs 30f82fa23fd844bd5bb1e5f216db87fd77b5eb43" + "github.com/eclipse/paho.mqtt.golang 20337d8c394721c308cc6ec096990ee451a7cd7f" + "github.com/klauspost/compress 30be6041bed523c18e269a700ebd9c2ea9328574" + "github.com/hashicorp/vault 36aa8c8dd1936e10ebd7a4c1d412ae0e6f7900bd" + "github.com/fatih/color 5b77d2a35fb0ede96d138fc9a99f5c9b6aef11b4" + "github.com/miekg/dns 73601d4aed9d844322611759d7f3619110b7c88e" + "github.com/klauspost/reedsolomon a9588190c00b0ccd742218388f6ff68bbad83e5c" + "github.com/gomodule/redigo 9c11da706d9b7902c6da69c592f75637793fe121" + "github.com/go-sql-driver/mysql 72cd26f257d44c1114970e19afddcd812016007e" + "github.com/gorilla/handlers 7e0847f9db758cdebd26c149d0ae9d5d0b9c98ce" + "github.com/mattn/go-isatty c2a7a6ca930a4cd0bc33a3f298eb71960732a3a7" + "github.com/satori/go.uuid f58768cc1a7a7e77a3bd49e98cdd21419399b6a3" + "github.com/golang/snappy 2a8bb927dd31d8daada140a5d09578521ce5c36a" + "github.com/klauspost/cpuid e7e905edc00ea8827e58662220139109efea09db" + "contrib.go.opencensus.io/exporter/ocagent 902c0ccba68df93f7fefbe7e7c6f16be33108b40 github.com/census-ecosystem/opencensus-go-exporter-ocagent" + "github.com/lib/pq 4ded0e9383f75c197b3a2aaa6d590ac52df6fd79" + "github.com/mattn/go-runewidth 3ee7d812e62a0804a7d0a324e0249ca2db3476d3" + "github.com/census-instrumentation/opencensus-proto a105b96453fe85139acc07b68de48f2cbdd71249" + "github.com/minio/cli 8683fa7fef37cc8cb092f47bdb6b403e0049f9ee" + "github.com/minio/mc a1355e50e2e8984d645cc7745230c42b27396341" + "google.golang.org/api bce707a4d0ea3488942724b3bcc1c8338f38f991 github.com/googleapis/google-api-go-client" + "github.com/grpc-ecosystem/grpc-gateway 20f268a412e5b342ebfb1a0eef7c3b7bd6c260ea" + "github.com/mattn/go-colorable 3a70a971f94a22f2fa562ffcc7a0eb45f5daf045" + "github.com/minio/blazer 2081f5bf046503f576d8712253724fbf2950fffe" + "github.com/minio/highwayhash 02ca4b43caa3297fbb615700d8800acc7933be98" + "github.com/minio/lsync v1.0.1" + "github.com/minio/sha256-simd 05b4dd3047e5d6e86cb4e0477164b850cd896261" + "github.com/minio/sio 035b4ef8c449ba2ba21ec143c91964e76a1fb68c" + "golang.org/x/sync e225da77a7e68af35c70ccbf71af2b83e6acac3c github.com/golang/sync" + "golang.org/x/oauth2 9f3314589c9a9136388751d9adae6b0ed400978a github.com/golang/oauth2" + "cloud.google.com/go 458e1f376a2b44413160b5d301183b65debaa3f6 github.com/googleapis/google-cloud-go" + "github.com/googleapis/gax-go beaecbbdd8af86aa3acf14180d53828ce69400b2" + "github.com/hashicorp/golang-lru 7087cb70de9f7a8bc0a10c375cb0d2280a8edf9c" + "github.com/json-iterator/go 0ff49de124c6f76f8494e194af75bde0f1a49a29" + "github.com/colinmarc/hdfs/v2 fd1e410ff7bf76b870f625dc0aa3eb4e44f5bc50 github.com/colinmarc/hdfs" + "github.com/hashicorp/go-uuid 4f571afc59f3043a65f8fe6bf46d887b10a01d43" + "github.com/jcmturner/gofork dc7c13fece037a4a36e2b3c69db4991498d30692" + "github.com/modern-go/concurrent bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94" + "github.com/modern-go/reflect2 94122c33edd36123c84d5368cfb2b69df93a0ec8" + "gopkg.in/jcmturner/aescts.v1 f6abebb3171c4c1b1fea279cb7c7325020a26290 github.com/jcmturner/aescts" + "gopkg.in/jcmturner/dnsutils.v1 13eeb8d49ffb74d7a75784c35e4d900607a3943c github.com/jcmturner/dnsutils" + "github.com/klauspost/readahead v1.3.0" + "github.com/kurin/blazer v0.5.3" + "github.com/minio/dsync/v2 fedfb5c974fa2ab238e45a6e6b19d38774e0326f github.com/minio/dsync" + "github.com/ncw/directio v1.0.5" + "github.com/nats-io/stan.go v0.4.5" + "github.com/nats-io/nats.go v1.8.0" + "github.com/minio/minio-go v6.0.29" + "github.com/minio/hdfs/v3 v3.0.1 github.com/minio/hdfs" + "github.com/minio/gokrb5/v7 v7.2.5 github.com/minio/gokrb5" + "github.com/minio/minio-go/v6 v6.0.29 github.com/minio/minio-go" + "gopkg.in/jcmturner/goidentity.v3 v5.0.0 github.com/jcmturner/goidentity" + "gopkg.in/jcmturner/rpc.v1 99a8ce2fbf8b8087b6ed12a37c61b10f04070043 github.com/jcmturner/rpc" + "gopkg.in/jcmturner/goidentity.v2 v2.0.0 github.com/jcmturner/goidentity" + "gopkg.in/jcmturner/goidentity.v3 v3.0.0 github.com/jcmturner/goidentity" + "github.com/kurin/blazer cf2f27cc0be3dac3c1a94c3c8b76834ce741439e" + "github.com/valyala/fastjson v1.4.1" +) + +inherit user golang-build golang-vcs-snapshot + +EGO_PN="github.com/minio/minio" +MY_PV="$(ver_cut 1-3)T$(ver_cut 4-7)Z" +MY_PV=${MY_PV//./-} +EGIT_COMMIT="3e3fbdf8e6e5e889232eb7afc0b27ac054adfda0" +ARCHIVE_URI="https://${EGO_PN}/archive/RELEASE.${MY_PV}.tar.gz -> ${P}.tar.gz + ${EGO_VENDOR_URI}" + +KEYWORDS="~amd64 ~amd64-linux" + +DESCRIPTION="An Amazon S3 compatible object storage server" +HOMEPAGE="https://github.com/minio/minio" +SRC_URI="${ARCHIVE_URI}" +LICENSE="Apache-2.0" +SLOT="0" + +RESTRICT="test" + +pkg_setup() { + enewgroup ${PN} + enewuser ${PN} -1 -1 /var/lib/${PN} ${PN} +} + +src_prepare() { + default + + pushd src/${EGO_PN} || die + + rm go.mod || die + + sed -i -e "s/time.Now().UTC().Format(time.RFC3339)/\"${MY_PV}\"/"\ + -e "s/-s //"\ + -e "/time/d"\ + -e "s/+ commitID()/+ \"${EGIT_COMMIT}\"/"\ + buildscripts/gen-ldflags.go || die + + popd || die +} + +src_compile() { + unset XDG_CACHE_HOME + + pushd src/${EGO_PN} || die + MINIO_RELEASE="${MY_PV}" + go run buildscripts/gen-ldflags.go + GOPATH="${S}" GOCACHE="${T}"/go-cache go build --ldflags "$(go run buildscripts/gen-ldflags.go)" -o ${PN} || die + + popd || die +} + +src_install() { + pushd src/${EGO_PN} || die + dodoc -r README.md CONTRIBUTING.md MAINTAINERS.md docs + dobin minio + popd || die + newinitd "${FILESDIR}"/${PN}.initd ${PN} + keepdir /var/{lib,log}/${PN} + fowners ${PN}:${PN} /var/{lib,log}/${PN} +} diff --git a/net-vpn/Manifest.gz b/net-vpn/Manifest.gz index f29e1ed906c9..d53a54d0b7c5 100644 Binary files a/net-vpn/Manifest.gz and b/net-vpn/Manifest.gz differ diff --git a/net-vpn/vtun/vtun-3.0.3-r1.ebuild b/net-vpn/vtun/vtun-3.0.3-r1.ebuild index afb8c9202672..66e0df51bca7 100644 --- a/net-vpn/vtun/vtun-3.0.3-r1.ebuild +++ b/net-vpn/vtun/vtun-3.0.3-r1.ebuild @@ -11,7 +11,7 @@ HOMEPAGE="http://vtun.sourceforge.net/" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~ppc ~sparc ~x86" +KEYWORDS="~alpha amd64 ~ppc ~sparc x86" IUSE="lzo socks5 ssl zlib" RDEPEND="ssl? ( dev-libs/openssl:0 ) diff --git a/profiles/Manifest.gz b/profiles/Manifest.gz index 3667cf8e16d4..896ac1aa424b 100644 Binary files a/profiles/Manifest.gz and b/profiles/Manifest.gz differ diff --git a/profiles/use.local.desc b/profiles/use.local.desc index 2f1c30889299..951a6760d3b7 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -4646,7 +4646,6 @@ media-libs/opusfile:http - Enable http connections media-libs/osl:partio - Use media-libs/partio media-libs/osl:qt5 - Build the osltoy binary media-libs/phonon:designer - Install plugin for dev-qt/designer -media-libs/phonon:gui - Install device preferences and backend settings GUI media-libs/phonon:vlc - Install VLC Phonon backend media-libs/phonon-gstreamer:network - Enable network streaming support via libsoup media-libs/portmidi:test-programs - Install various example programs @@ -9397,7 +9396,9 @@ x11-wm/xpra:webcam - Enable webcam support via opencv xfce-base/exo:gtk2 - Build deprecated GTK+2 libexo-1 library. xfce-base/garcon:gtk2 - Build the garcon-gtk2-1 library (required for xfce-base/xfce4-panel < 4.13 only). xfce-base/libxfce4ui:glade - Build support for Glade 3's GtkBuilder implementation +xfce-base/libxfce4ui:gtk2 - Build deprecated GTK+2 libxfce4ui-1 library. xfce-base/thunar:trash-panel-plugin - Build the trash status indicator plugin for the XFCE panel +xfce-base/xfce4-panel:gtk2 - Enable GTK+2 plugin support. xfce-base/xfce4-settings:libcanberra - Enable sound event support using media-libs/libcanberra xfce-base/xfce4-settings:xklavier - Enable keyboard layout selection support using x11-libs/libxklavier xfce-base/xfdesktop:thunar - Build support for desktop icons (for example, launchers and folders) diff --git a/sci-mathematics/Manifest.gz b/sci-mathematics/Manifest.gz index 2e137a2f8f80..12d37063bd88 100644 Binary files a/sci-mathematics/Manifest.gz and b/sci-mathematics/Manifest.gz differ diff --git a/sci-mathematics/rstudio/rstudio-1.1.463-r1.ebuild b/sci-mathematics/rstudio/rstudio-1.1.463-r1.ebuild index 86b6db8da4ba..cc1c95318e3a 100644 --- a/sci-mathematics/rstudio/rstudio-1.1.463-r1.ebuild +++ b/sci-mathematics/rstudio/rstudio-1.1.463-r1.ebuild @@ -164,12 +164,12 @@ src_prepare() { CMakeGlobals.txt src/cpp/desktop/CMakeLists.txt || die # On Gentoo the rstudio-server configuration file is /etc/conf.d/rstudio-server.conf - sed -e "s@/etc/rstudio/rserver.conf@${EROOT}etc/conf.d/rstudio-server.conf@" \ + sed -e "s@/etc/rstudio/rserver.conf@${EROOT}/etc/conf.d/rstudio-server.conf@" \ -i src/cpp/server/ServerOptions.cpp \ || die # Set the rsession.conf file location for Gentoo prefix - sed -e "s@/etc/rstudio/rsession.conf@${EROOT}etc/rstudio/rsession.conf@" \ + sed -e "s@/etc/rstudio/rsession.conf@${EROOT}/etc/rstudio/rsession.conf@" \ -i src/cpp/session/SessionOptions.cpp \ || die @@ -225,7 +225,7 @@ src_install() { dodir /etc/rstudio insinto /etc/rstudio doins "${FILESDIR}"/rsession.conf - dosym "${ROOT}etc/conf.d/rstudio-server.conf" "${ROOT}etc/rstudio/rserver.conf" + dosym "${EROOT}/etc/conf.d/rstudio-server.conf" "/etc/rstudio/rserver.conf" if use dedicated || use server; then dopamd src/cpp/server/extras/pam/rstudio newinitd "${FILESDIR}"/rstudio-server.initd rstudio-server diff --git a/sci-mathematics/spass/spass-3.9.ebuild b/sci-mathematics/spass/spass-3.9.ebuild index 81289762c3d8..c702deaec240 100644 --- a/sci-mathematics/spass/spass-3.9.ebuild +++ b/sci-mathematics/spass/spass-3.9.ebuild @@ -123,7 +123,7 @@ pkg_postinst() { sed -e "/contrib\/${PN}-[0-9.]*/d" \ -i "${EROOT}/etc/isabelle/components" fi - cat <<- EOF >> "${ROOT}etc/isabelle/components" + cat <<- EOF >> "${EROOT}/etc/isabelle/components" contrib/${PN}-${PV} EOF fi diff --git a/www-client/Manifest.gz b/www-client/Manifest.gz index b7f932dc35a4..35b2d833c0be 100644 Binary files a/www-client/Manifest.gz and b/www-client/Manifest.gz differ diff --git a/www-client/opera/Manifest b/www-client/opera/Manifest index ab45a6b16457..6c19b8544ce3 100644 --- a/www-client/opera/Manifest +++ b/www-client/opera/Manifest @@ -4,3 +4,4 @@ DIST opera-12.16-1860.i386.linux.tar.xz 13154668 BLAKE2B 7f9ef54f44bc143c13173bc DIST opera-12.16-1860.x86_64.linux.tar.xz 14018800 BLAKE2B e0cb727ea79868d1c3c692d445fc8949f554c3bbe2bf3c9f222885891458cab7af1a29096cd3caf6936e83068841dda4bff5b8a17eb55a86bebe39ce2b270183 SHA512 c1289f352ea5fc8133b105771f48fdc56ccd770920330b1a0ed939ff909abc68081447673572eabeb1aae6db5194b6ab35c93afad78a91d8f7a9a0f91e81ef8b DIST opera-stable_62.0.3331.116_amd64.deb 66479598 BLAKE2B 1015f740686ce3ff8164040f6bdc3f495123dc4d8d7d30c39524d93150eda0de5d5282198103552c952dd6b268f7e88d7fc3de4b0a1fa09099542971e4d0abb8 SHA512 8bbcb77d12f86f3a37ee77f6c4de636b976a1f1367e0992d7efed76e718037bce8e651b0e1a4a722e7c8d9b2a2ad2223c0b6dfd7084191c2e4d670d682a23a52 DIST opera-stable_63.0.3368.35_amd64.deb 60629598 BLAKE2B 5e2be00d2156f87a479f58b0bc3554ca6ff1b9c3c59a7adfc9381602a139ad9172deb1a2e815dbb3c014c67deb474d2a91eb7d4851c8cd6ef857cd4a1ee09564 SHA512 2bb502fbd447efb07163f603f3e8aef23595020483a2670e7cc5ee1faeb093bbcbb8d42cb032ab13b8d6a3978ac305213246843e7603bda16b1c17295f62f87b +DIST opera-stable_63.0.3368.43_amd64.deb 60652496 BLAKE2B 67cf673cf5d27eb7b66fd9a86f28b475db2138a77740ae5f49bb3bab2eb928950d391ee7cc38947ebb13fce79c82d8de8379f9d3691f100d0247df25df9e002e SHA512 6e3c2fb4b13ddcf0ad461542e3f7f31280042b9604db90f82e8df4c4d8b84a9e234ef76eb372cd3df5a0bebfa373fba0ea62095be74016d440a6d5921b6f216b diff --git a/www-client/opera/opera-63.0.3368.43.ebuild b/www-client/opera/opera-63.0.3368.43.ebuild new file mode 100644 index 000000000000..fbf25ee7c636 --- /dev/null +++ b/www-client/opera/opera-63.0.3368.43.ebuild @@ -0,0 +1,111 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +CHROMIUM_LANGS=" + be bg bn ca cs da de el en-GB en-US es-419 es fil fi fr-CA fr hi hr hu id + it ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk vi + zh-CN zh-TW + +" +inherit chromium-2 multilib unpacker xdg-utils + +DESCRIPTION="A fast and secure web browser" +HOMEPAGE="https://www.opera.com/" +LICENSE="OPERA-2014" +SLOT="0" +SRC_URI_BASE=" + https://download1.operacdn.com/pub/ + https://download2.operacdn.com/pub/ + https://download3.operacdn.com/pub/ + https://download4.operacdn.com/pub/ +" +for uri in ${SRC_URI_BASE}; do +SRC_URI+=" + "${uri}${PN}/desktop/${PV}/linux/${PN}-stable_${PV}_amd64.deb" +" +done +KEYWORDS="~amd64" + +RDEPEND=" + dev-libs/expat + dev-libs/glib:2 + dev-libs/nspr + dev-libs/nss + gnome-base/gconf:2 + media-libs/alsa-lib + media-libs/fontconfig + media-libs/freetype + net-misc/curl + net-print/cups + sys-apps/dbus + x11-libs/cairo + x11-libs/gdk-pixbuf + x11-libs/gtk+:3 + x11-libs/libX11 + x11-libs/libXScrnSaver + 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/libXtst + x11-libs/libnotify + x11-libs/pango[X] +" + +QA_PREBUILT="*" +S=${WORKDIR} + +src_unpack() { + unpack_deb ${A} +} + +src_prepare() { + default + + OPERA_HOME="usr/$(get_libdir)/${PN}" + + case ${ARCH} in + amd64) + mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die + rm -r usr/lib || die + ;; + esac + + rm usr/bin/${PN} || die + + rm usr/share/doc/${PN}-stable/copyright || die + mv usr/share/doc/${PN}-stable usr/share/doc/${PF} || die + gunzip usr/share/doc/${PF}/changelog.gz || die + + pushd "${OPERA_HOME}"/localization > /dev/null || die + chromium_remove_language_paks + popd > /dev/null || die + + sed -i \ + -e 's|^TargetEnvironment|X-&|g' \ + usr/share/applications/${PN}.desktop || die +} + +src_install() { + rm "${OPERA_HOME}"/${PN}_autoupdate || die + mv * "${D}" || die + dosym ../$(get_libdir)/${PN}/${PN} /usr/bin/${PN} + fperms 4711 /"${OPERA_HOME}"/opera_sandbox +} + +pkg_postrm() { + xdg_icon_cache_update + xdg_desktop_database_update + xdg_mimeinfo_database_update +} + +pkg_postinst() { + xdg_icon_cache_update + xdg_desktop_database_update + xdg_mimeinfo_database_update +} diff --git a/xfce-base/Manifest.gz b/xfce-base/Manifest.gz index 12a5f1797343..851aeb9f1f99 100644 Binary files a/xfce-base/Manifest.gz and b/xfce-base/Manifest.gz differ diff --git a/xfce-base/garcon/garcon-0.6.2.ebuild b/xfce-base/garcon/garcon-0.6.2-r1.ebuild similarity index 88% rename from xfce-base/garcon/garcon-0.6.2.ebuild rename to xfce-base/garcon/garcon-0.6.2-r1.ebuild index 821f2c9ab0cb..edf7baab9f21 100644 --- a/xfce-base/garcon/garcon-0.6.2.ebuild +++ b/xfce-base/garcon/garcon-0.6.2-r1.ebuild @@ -13,10 +13,10 @@ KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~amd IUSE="+gtk2" RDEPEND=">=dev-libs/glib-2.30:= - gtk2? ( >=x11-libs/gtk+-2.24:2= ) >=x11-libs/gtk+-3.20:3= - >=xfce-base/libxfce4ui-4.12:=[gtk3(+)] - >=xfce-base/libxfce4util-4.12:=" + >=xfce-base/libxfce4ui-4.12:=[gtk2(+)?,gtk3(+)] + >=xfce-base/libxfce4util-4.12:= + gtk2? ( >=x11-libs/gtk+-2.24:2= )" DEPEND="${RDEPEND} dev-util/glib-utils dev-util/gtk-doc-am diff --git a/xfce-base/garcon/garcon-0.6.3.ebuild b/xfce-base/garcon/garcon-0.6.3.ebuild index b4bb94d0b25d..fe58837f910d 100644 --- a/xfce-base/garcon/garcon-0.6.3.ebuild +++ b/xfce-base/garcon/garcon-0.6.3.ebuild @@ -13,10 +13,10 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x8 IUSE="+gtk2" RDEPEND=">=dev-libs/glib-2.30:= - gtk2? ( >=x11-libs/gtk+-2.24:2= ) >=x11-libs/gtk+-3.20:3= - >=xfce-base/libxfce4ui-4.12:=[gtk3(+)] - >=xfce-base/libxfce4util-4.12:=" + >=xfce-base/libxfce4ui-4.12:=[gtk2(+)?,gtk3(+)] + >=xfce-base/libxfce4util-4.12:= + gtk2? ( >=x11-libs/gtk+-2.24:2= )" DEPEND="${RDEPEND} dev-util/glib-utils dev-util/gtk-doc-am diff --git a/xfce-base/garcon/garcon-0.6.4.ebuild b/xfce-base/garcon/garcon-0.6.4-r1.ebuild similarity index 88% rename from xfce-base/garcon/garcon-0.6.4.ebuild rename to xfce-base/garcon/garcon-0.6.4-r1.ebuild index b4bb94d0b25d..fe58837f910d 100644 --- a/xfce-base/garcon/garcon-0.6.4.ebuild +++ b/xfce-base/garcon/garcon-0.6.4-r1.ebuild @@ -13,10 +13,10 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x8 IUSE="+gtk2" RDEPEND=">=dev-libs/glib-2.30:= - gtk2? ( >=x11-libs/gtk+-2.24:2= ) >=x11-libs/gtk+-3.20:3= - >=xfce-base/libxfce4ui-4.12:=[gtk3(+)] - >=xfce-base/libxfce4util-4.12:=" + >=xfce-base/libxfce4ui-4.12:=[gtk2(+)?,gtk3(+)] + >=xfce-base/libxfce4util-4.12:= + gtk2? ( >=x11-libs/gtk+-2.24:2= )" DEPEND="${RDEPEND} dev-util/glib-utils dev-util/gtk-doc-am diff --git a/xfce-base/libxfce4ui/libxfce4ui-4.14.1.ebuild b/xfce-base/libxfce4ui/libxfce4ui-4.14.1.ebuild index e44453634d38..a3d70f36e050 100644 --- a/xfce-base/libxfce4ui/libxfce4ui-4.14.1.ebuild +++ b/xfce-base/libxfce4ui/libxfce4ui-4.14.1.ebuild @@ -12,11 +12,11 @@ SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2" LICENSE="LGPL-2+ GPL-2+" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x86-solaris" -IUSE="debug glade introspection startup-notification vala" +IUSE="debug glade +gtk2 introspection startup-notification vala" REQUIRED_USE="vala? ( introspection )" +RESTRICT="!gtk2? ( test )" RDEPEND=">=dev-libs/glib-2.42:2= - >=x11-libs/gtk+-2.24:2= >=x11-libs/gtk+-3.18:3=[introspection?] x11-libs/libX11:= x11-libs/libICE:= @@ -24,6 +24,7 @@ RDEPEND=">=dev-libs/glib-2.42:2= >=xfce-base/libxfce4util-4.12:=[introspection?] >=xfce-base/xfconf-4.12:= glade? ( dev-util/glade:3.10= ) + gtk2? ( >=x11-libs/gtk+-2.24:2= ) introspection? ( dev-libs/gobject-introspection:= ) startup-notification? ( x11-libs/startup-notification:= ) !xfce-base/xfce-utils" @@ -41,11 +42,10 @@ src_prepare() { src_configure() { local myconf=( + $(use_enable gtk2) $(use_enable introspection) $(use_enable startup-notification) $(use_enable vala) - # TODO: check revdeps and make it optional one day - --enable-gtk2 # requires deprecated glade:3 (gladeui-1.0), bug #551296 --disable-gladeui # this one's for :3.10 diff --git a/xfce-base/libxfce4ui/metadata.xml b/xfce-base/libxfce4ui/metadata.xml index f53823b4b9e2..c9c136a2dab2 100644 --- a/xfce-base/libxfce4ui/metadata.xml +++ b/xfce-base/libxfce4ui/metadata.xml @@ -7,5 +7,6 @@ Build support for Glade 3's GtkBuilder implementation + Build deprecated GTK+2 libxfce4ui-1 library. diff --git a/xfce-base/thunar/thunar-1.6.16.ebuild b/xfce-base/thunar/thunar-1.6.16-r1.ebuild similarity index 97% rename from xfce-base/thunar/thunar-1.6.16.ebuild rename to xfce-base/thunar/thunar-1.6.16-r1.ebuild index c209d3386cdd..7ee1cdf4239e 100644 --- a/xfce-base/thunar/thunar-1.6.16.ebuild +++ b/xfce-base/thunar/thunar-1.6.16-r1.ebuild @@ -21,7 +21,7 @@ COMMON_DEPEND=">=dev-lang/perl-5.6 >=x11-libs/gdk-pixbuf-2.14:= >=x11-libs/gtk+-2.24:2= >=xfce-base/exo-0.10:= - >=xfce-base/libxfce4ui-4.10:= + >=xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10.1:= >=xfce-base/xfconf-4.10:= dbus? ( >=dev-libs/dbus-glib-0.100:= ) diff --git a/xfce-base/thunar/thunar-1.6.17.ebuild b/xfce-base/thunar/thunar-1.6.17.ebuild index 229f1f055f14..f713a39b8413 100644 --- a/xfce-base/thunar/thunar-1.6.17.ebuild +++ b/xfce-base/thunar/thunar-1.6.17.ebuild @@ -21,7 +21,7 @@ COMMON_DEPEND=">=dev-lang/perl-5.6 >=x11-libs/gdk-pixbuf-2.14:= >=x11-libs/gtk+-2.24:2= =xfce-base/libxfce4ui-4.10:= + >=xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10.1:= >=xfce-base/xfconf-4.10:= dbus? ( >=dev-libs/dbus-glib-0.100:= ) diff --git a/xfce-base/xfce4-panel/metadata.xml b/xfce-base/xfce4-panel/metadata.xml index 359901b31db4..b307dd980e01 100644 --- a/xfce-base/xfce4-panel/metadata.xml +++ b/xfce-base/xfce4-panel/metadata.xml @@ -5,4 +5,7 @@ xfce@gentoo.org XFCE Team + + Enable GTK+2 plugin support. + diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.14.0.ebuild b/xfce-base/xfce4-panel/xfce4-panel-4.14.0.ebuild index 0bba6eebc237..0598e0545e8d 100644 --- a/xfce-base/xfce4-panel/xfce4-panel-4.14.0.ebuild +++ b/xfce-base/xfce4-panel/xfce4-panel-4.14.0.ebuild @@ -12,12 +12,12 @@ SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2" LICENSE="GPL-2+ LGPL-2.1+" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris" -IUSE="introspection vala" +IUSE="+gtk2 introspection vala" REQUIRED_USE="vala? ( introspection )" +RESTRICT="!gtk2? ( test )" RDEPEND=">=dev-libs/glib-2.42 >=x11-libs/cairo-1 - >=x11-libs/gtk+-2.20:2 >=x11-libs/gtk+-3.22:3[introspection?] x11-libs/libX11 x11-libs/libwnck:3 @@ -26,6 +26,7 @@ RDEPEND=">=dev-libs/glib-2.42 >=xfce-base/libxfce4ui-4.13:= >=xfce-base/libxfce4util-4.13:=[introspection?] >=xfce-base/xfconf-4.13:= + gtk2? ( >=x11-libs/gtk+-2.20:2 ) introspection? ( dev-libs/gobject-introspection:= )" DEPEND="${RDEPEND} vala? ( $(vala_depend) ) @@ -42,11 +43,9 @@ src_prepare() { src_configure() { local myconf=( + $(use_enable gtk2) $(use_enable introspection) $(use_enable vala) - - # enable GTK+2 compatibility - --enable-gtk2 ) use vala && vala_src_prepare diff --git a/xfce-base/xfce4-settings/xfce4-settings-4.12.4.ebuild b/xfce-base/xfce4-settings/xfce4-settings-4.12.4-r1.ebuild similarity index 97% rename from xfce-base/xfce4-settings/xfce4-settings-4.12.4.ebuild rename to xfce-base/xfce4-settings/xfce4-settings-4.12.4-r1.ebuild index dc8d924b72b2..bdba85f2b923 100644 --- a/xfce-base/xfce4-settings/xfce4-settings-4.12.4.ebuild +++ b/xfce-base/xfce4-settings/xfce4-settings-4.12.4-r1.ebuild @@ -23,7 +23,7 @@ RDEPEND=">=dev-libs/dbus-glib-0.100 >=x11-libs/libXrandr-1.2 >=xfce-base/garcon-0.2 >=xfce-base/exo-0.8 - >=xfce-base/libxfce4ui-4.11 + >=xfce-base/libxfce4ui-4.11[gtk2(+)] >=xfce-base/libxfce4util-4.11 >=xfce-base/xfconf-4.10 libcanberra? ( >=media-libs/libcanberra-0.25[sound] ) diff --git a/xfce-base/xfdesktop/xfdesktop-4.12.4.ebuild b/xfce-base/xfdesktop/xfdesktop-4.12.4.ebuild index 40b9614aeb97..58c055d5681b 100644 --- a/xfce-base/xfdesktop/xfdesktop-4.12.4.ebuild +++ b/xfce-base/xfdesktop/xfdesktop-4.12.4.ebuild @@ -23,7 +23,7 @@ RDEPEND=">=x11-libs/cairo-1.6:= x11-libs/libX11:= >=xfce-base/exo-0.8:= >=xfce-base/garcon-0.3:= - >=xfce-base/libxfce4ui-4.11:= + >=xfce-base/libxfce4ui-4.11:=[gtk2(+)] >=xfce-base/libxfce4util-4.11:= >=xfce-base/xfconf-4.10:= libnotify? ( >=x11-libs/libnotify-0.7:= ) diff --git a/xfce-base/xfdesktop/xfdesktop-4.12.5.ebuild b/xfce-base/xfdesktop/xfdesktop-4.12.5-r1.ebuild similarity index 96% rename from xfce-base/xfdesktop/xfdesktop-4.12.5.ebuild rename to xfce-base/xfdesktop/xfdesktop-4.12.5-r1.ebuild index 1eb489b1c328..8334da4176c9 100644 --- a/xfce-base/xfdesktop/xfdesktop-4.12.5.ebuild +++ b/xfce-base/xfdesktop/xfdesktop-4.12.5-r1.ebuild @@ -23,7 +23,7 @@ RDEPEND=">=x11-libs/cairo-1.6:= x11-libs/libX11:= =xfce-base/garcon-0.3:= - >=xfce-base/libxfce4ui-4.11:= + >=xfce-base/libxfce4ui-4.11:=[gtk2(+)] >=xfce-base/libxfce4util-4.11:= >=xfce-base/xfconf-4.10:= libnotify? ( >=x11-libs/libnotify-0.7:= ) diff --git a/xfce-base/xfwm4/xfwm4-4.12.5.ebuild b/xfce-base/xfwm4/xfwm4-4.12.5-r1.ebuild similarity index 97% rename from xfce-base/xfwm4/xfwm4-4.12.5.ebuild rename to xfce-base/xfwm4/xfwm4-4.12.5-r1.ebuild index 1edd28d357d9..c320a367906c 100644 --- a/xfce-base/xfwm4/xfwm4-4.12.5.ebuild +++ b/xfce-base/xfwm4/xfwm4-4.12.5-r1.ebuild @@ -23,7 +23,7 @@ RDEPEND="dev-libs/dbus-glib:= x11-libs/pango:= >=x11-libs/libwnck-2.30:1= >=xfce-base/libxfce4util-4.10:= - >=xfce-base/libxfce4ui-4.11:= + >=xfce-base/libxfce4ui-4.11:=[gtk2(+)] >=xfce-base/xfconf-4.10:= startup-notification? ( x11-libs/startup-notification:= ) xcomposite? ( diff --git a/xfce-extra/Manifest.gz b/xfce-extra/Manifest.gz index b4f4d4fdc7b1..dbd489454bf6 100644 Binary files a/xfce-extra/Manifest.gz and b/xfce-extra/Manifest.gz differ diff --git a/xfce-extra/multiload-nandhp/multiload-nandhp-0.3-r1.ebuild b/xfce-extra/multiload-nandhp/multiload-nandhp-0.3-r2.ebuild similarity index 86% rename from xfce-extra/multiload-nandhp/multiload-nandhp-0.3-r1.ebuild rename to xfce-extra/multiload-nandhp/multiload-nandhp-0.3-r2.ebuild index 0affafa8718f..573dd745136a 100644 --- a/xfce-extra/multiload-nandhp/multiload-nandhp-0.3-r1.ebuild +++ b/xfce-extra/multiload-nandhp/multiload-nandhp-0.3-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -18,9 +18,9 @@ IUSE="" RDEPEND=">=x11-libs/gtk+-2.14:2= x11-libs/cairo:= >=gnome-base/libgtop-2.11.92:= - >=xfce-base/libxfce4ui-4.10:= + >=xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10:= - >=xfce-base/xfce4-panel-4.10:=" + >=xfce-base/xfce4-panel-4.10:=[gtk2(+)]" DEPEND="${RDEPEND} dev-util/intltool sys-devel/gettext diff --git a/xfce-extra/thunar-volman/thunar-volman-0.8.1-r1.ebuild b/xfce-extra/thunar-volman/thunar-volman-0.8.1-r2.ebuild similarity index 96% rename from xfce-extra/thunar-volman/thunar-volman-0.8.1-r1.ebuild rename to xfce-extra/thunar-volman/thunar-volman-0.8.1-r2.ebuild index e7c2d621a297..c1006380dbe6 100644 --- a/xfce-extra/thunar-volman/thunar-volman-0.8.1-r1.ebuild +++ b/xfce-extra/thunar-volman/thunar-volman-0.8.1-r2.ebuild @@ -18,7 +18,7 @@ COMMON_DEPEND=">=dev-libs/glib-2.30 virtual/libgudev:= >=x11-libs/gtk+-2.24:2 >=xfce-base/exo-0.10 - >=xfce-base/libxfce4ui-4.10 + >=xfce-base/libxfce4ui-4.10[gtk2(+)] >=xfce-base/libxfce4util-4.10 >=xfce-base/xfconf-4.10 libnotify? ( >=x11-libs/libnotify-0.7 )" diff --git a/xfce-extra/xfce4-alsa-plugin/xfce4-alsa-plugin-0.1.1.ebuild b/xfce-extra/xfce4-alsa-plugin/xfce4-alsa-plugin-0.1.1.ebuild index 436914177d92..d78c37e16b94 100644 --- a/xfce-extra/xfce4-alsa-plugin/xfce4-alsa-plugin-0.1.1.ebuild +++ b/xfce-extra/xfce4-alsa-plugin/xfce4-alsa-plugin-0.1.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -19,7 +19,7 @@ IUSE="" RDEPEND=" media-libs/alsa-lib - xfce-base/xfce4-panel + xfce-base/xfce4-panel[gtk2(+)] x11-libs/gtk+:2 " DEPEND="${RDEPEND} diff --git a/xfce-extra/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin-1.0.5-r1.ebuild b/xfce-extra/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin-1.0.5-r2.ebuild similarity index 90% rename from xfce-extra/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin-1.0.5-r1.ebuild rename to xfce-extra/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin-1.0.5-r2.ebuild index ee9d5edde649..a2d50c7f1a54 100644 --- a/xfce-extra/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin-1.0.5-r1.ebuild +++ b/xfce-extra/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin-1.0.5-r2.ebuild @@ -14,8 +14,8 @@ SLOT="0" KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux" RDEPEND=">=x11-libs/gtk+-2.12:2 - >=xfce-base/libxfce4ui-4.8 - >=xfce-base/xfce4-panel-4.8" + >=xfce-base/libxfce4ui-4.8[gtk2(+)] + >=xfce-base/xfce4-panel-4.8[gtk2(+)]" DEPEND="${RDEPEND} dev-util/intltool sys-devel/gettext diff --git a/xfce-extra/xfce4-embed-plugin/xfce4-embed-plugin-1.6.0-r1.ebuild b/xfce-extra/xfce4-embed-plugin/xfce4-embed-plugin-1.6.0-r2.ebuild similarity index 83% rename from xfce-extra/xfce4-embed-plugin/xfce4-embed-plugin-1.6.0-r1.ebuild rename to xfce-extra/xfce4-embed-plugin/xfce4-embed-plugin-1.6.0-r2.ebuild index f45d45455bff..5228c9e5d641 100644 --- a/xfce-extra/xfce4-embed-plugin/xfce4-embed-plugin-1.6.0-r1.ebuild +++ b/xfce-extra/xfce4-embed-plugin/xfce4-embed-plugin-1.6.0-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -14,9 +14,9 @@ IUSE="" RDEPEND=">=x11-libs/gtk+-2.20:2 x11-libs/libX11:= - >=xfce-base/libxfce4ui-4.10:= + >=xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10:= - >=xfce-base/xfce4-panel-4.10:=" + >=xfce-base/xfce4-panel-4.10:=[gtk2(+)]" DEPEND="${RDEPEND} dev-util/intltool sys-devel/gettext diff --git a/xfce-extra/xfce4-equake-plugin/xfce4-equake-plugin-1.3.8.1.ebuild b/xfce-extra/xfce4-equake-plugin/xfce4-equake-plugin-1.3.8.1.ebuild index b6b3c192142a..8ac43429caed 100644 --- a/xfce-extra/xfce4-equake-plugin/xfce4-equake-plugin-1.3.8.1.ebuild +++ b/xfce-extra/xfce4-equake-plugin/xfce4-equake-plugin-1.3.8.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -17,9 +17,9 @@ IUSE="" RDEPEND=">=dev-libs/glib-2:= x11-libs/gtk+:2= x11-libs/libX11:= - >=xfce-base/libxfce4ui-4.10:= + >=xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10:= - >=xfce-base/xfce4-panel-4.10:=" + >=xfce-base/xfce4-panel-4.10:=[gtk2(+)]" DEPEND="${RDEPEND} dev-util/intltool sys-devel/gettext diff --git a/xfce-extra/xfce4-eyes-plugin/xfce4-eyes-plugin-4.4.5-r1.ebuild b/xfce-extra/xfce4-eyes-plugin/xfce4-eyes-plugin-4.4.5-r2.ebuild similarity index 89% rename from xfce-extra/xfce4-eyes-plugin/xfce4-eyes-plugin-4.4.5-r1.ebuild rename to xfce-extra/xfce4-eyes-plugin/xfce4-eyes-plugin-4.4.5-r2.ebuild index 89502869fc95..a989f20303ea 100644 --- a/xfce-extra/xfce4-eyes-plugin/xfce4-eyes-plugin-4.4.5-r1.ebuild +++ b/xfce-extra/xfce4-eyes-plugin/xfce4-eyes-plugin-4.4.5-r2.ebuild @@ -14,9 +14,9 @@ IUSE="" RDEPEND=">=dev-libs/glib-2.20 >=x11-libs/gtk+-2.14:2 - >=xfce-base/libxfce4ui-4.10:= + >=xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10:= - >=xfce-base/xfce4-panel-4.10:=" + >=xfce-base/xfce4-panel-4.10:=[gtk2(+)]" DEPEND="${RDEPEND} dev-util/intltool virtual/pkgconfig" diff --git a/xfce-extra/xfce4-hdaps/xfce4-hdaps-0.0.9-r1.ebuild b/xfce-extra/xfce4-hdaps/xfce4-hdaps-0.0.9-r2.ebuild similarity index 89% rename from xfce-extra/xfce4-hdaps/xfce4-hdaps-0.0.9-r1.ebuild rename to xfce-extra/xfce4-hdaps/xfce4-hdaps-0.0.9-r2.ebuild index 9894b32b51af..838a7e62f6fe 100644 --- a/xfce-extra/xfce4-hdaps/xfce4-hdaps-0.0.9-r1.ebuild +++ b/xfce-extra/xfce4-hdaps/xfce4-hdaps-0.0.9-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -15,9 +15,9 @@ IUSE="" COMMON_DEPEND=">=x11-libs/gtk+-2.20:2 x11-libs/libX11 - >=xfce-base/libxfce4ui-4.8 + >=xfce-base/libxfce4ui-4.8[gtk2(+)] >=xfce-base/libxfce4util-4.8 - >=xfce-base/xfce4-panel-4.8" + >=xfce-base/xfce4-panel-4.8[gtk2(+)]" RDEPEND="${COMMON_DEPEND} >=app-laptop/hdapsd-20090101 >=app-laptop/tp_smapi-0.39" diff --git a/xfce-extra/xfce4-kbdleds-plugin/xfce4-kbdleds-plugin-0.0.6-r1.ebuild b/xfce-extra/xfce4-kbdleds-plugin/xfce4-kbdleds-plugin-0.0.6-r2.ebuild similarity index 84% rename from xfce-extra/xfce4-kbdleds-plugin/xfce4-kbdleds-plugin-0.0.6-r1.ebuild rename to xfce-extra/xfce4-kbdleds-plugin/xfce4-kbdleds-plugin-0.0.6-r2.ebuild index 248b34a75823..4d5722a6e549 100644 --- a/xfce-extra/xfce4-kbdleds-plugin/xfce4-kbdleds-plugin-0.0.6-r1.ebuild +++ b/xfce-extra/xfce4-kbdleds-plugin/xfce4-kbdleds-plugin-0.0.6-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -14,9 +14,9 @@ SLOT="0" KEYWORDS="amd64 x86" IUSE="" -RDEPEND=">=xfce-base/libxfce4ui-4.8 +RDEPEND=">=xfce-base/libxfce4ui-4.8[gtk2(+)] >=xfce-base/libxfce4util-4.8 - >=xfce-base/xfce4-panel-4.8 + >=xfce-base/xfce4-panel-4.8[gtk2(+)] >=x11-libs/gtk+-2.20:2" DEPEND="${RDEPEND} dev-util/intltool diff --git a/xfce-extra/xfce4-mailwatch-plugin/xfce4-mailwatch-plugin-1.2.0-r2.ebuild b/xfce-extra/xfce4-mailwatch-plugin/xfce4-mailwatch-plugin-1.2.0-r3.ebuild similarity index 92% rename from xfce-extra/xfce4-mailwatch-plugin/xfce4-mailwatch-plugin-1.2.0-r2.ebuild rename to xfce-extra/xfce4-mailwatch-plugin/xfce4-mailwatch-plugin-1.2.0-r3.ebuild index f337fb97d368..35a670cfe278 100644 --- a/xfce-extra/xfce4-mailwatch-plugin/xfce4-mailwatch-plugin-1.2.0-r2.ebuild +++ b/xfce-extra/xfce4-mailwatch-plugin/xfce4-mailwatch-plugin-1.2.0-r3.ebuild @@ -18,9 +18,9 @@ RDEPEND=">=dev-libs/glib-2:= >=x11-libs/gtk+-2.18:2= x11-libs/libX11:= =xfce-base/libxfce4ui-4.10:= + >=xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10:= - >=xfce-base/xfce4-panel-4.10 + >=xfce-base/xfce4-panel-4.10[gtk2(+)] ssl? ( dev-libs/libgcrypt:0= >=net-libs/gnutls-2:= diff --git a/xfce-extra/xfce4-notes-plugin/xfce4-notes-plugin-1.8.1-r1.ebuild b/xfce-extra/xfce4-notes-plugin/xfce4-notes-plugin-1.8.1-r2.ebuild similarity index 90% rename from xfce-extra/xfce4-notes-plugin/xfce4-notes-plugin-1.8.1-r1.ebuild rename to xfce-extra/xfce4-notes-plugin/xfce4-notes-plugin-1.8.1-r2.ebuild index f3f229e31d11..716eebe8897c 100644 --- a/xfce-extra/xfce4-notes-plugin/xfce4-notes-plugin-1.8.1-r1.ebuild +++ b/xfce-extra/xfce4-notes-plugin/xfce4-notes-plugin-1.8.1-r2.ebuild @@ -16,9 +16,9 @@ IUSE="" RDEPEND=">=dev-libs/glib-2.24:2 >=x11-libs/gtk+-2.20:2 - >=xfce-base/libxfce4ui-4.10:= + >=xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10:= - >=xfce-base/xfce4-panel-4.10:= + >=xfce-base/xfce4-panel-4.10:=[gtk2(+)] >=xfce-base/xfconf-4.10:= dev-libs/libunique:1=" DEPEND="${RDEPEND} diff --git a/xfce-extra/xfce4-places-plugin/xfce4-places-plugin-1.7.0-r1.ebuild b/xfce-extra/xfce4-places-plugin/xfce4-places-plugin-1.7.0-r2.ebuild similarity index 89% rename from xfce-extra/xfce4-places-plugin/xfce4-places-plugin-1.7.0-r1.ebuild rename to xfce-extra/xfce4-places-plugin/xfce4-places-plugin-1.7.0-r2.ebuild index b4a80f3dddb6..1b1a4a0bca9f 100644 --- a/xfce-extra/xfce4-places-plugin/xfce4-places-plugin-1.7.0-r1.ebuild +++ b/xfce-extra/xfce4-places-plugin/xfce4-places-plugin-1.7.0-r2.ebuild @@ -15,10 +15,10 @@ IUSE="libnotify" RDEPEND=">=dev-libs/glib-2.28:2 >=x11-libs/gtk+-2.20:2 x11-libs/libX11:= - >=xfce-base/exo-0.6:= - >=xfce-base/libxfce4ui-4.8:= + >=xfce-base/exo-0.6:=[gtk2(+)] + >=xfce-base/libxfce4ui-4.8:=[gtk2(+)] >=xfce-base/libxfce4util-4.8:= - >=xfce-base/xfce4-panel-4.8:= + >=xfce-base/xfce4-panel-4.8:=[gtk2(+)] >=xfce-base/xfconf-4.8:= libnotify? ( >=x11-libs/libnotify-0.7:= )" DEPEND="${RDEPEND} diff --git a/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.0.2-r1.ebuild b/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.0.2-r1.ebuild index e1f126597899..8bb1c7efcec9 100644 --- a/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.0.2-r1.ebuild +++ b/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.0.2-r1.ebuild @@ -16,9 +16,9 @@ IUSE="" RDEPEND="x11-libs/gtk+:2 x11-libs/libX11:= - >=xfce-base/libxfce4ui-4.8:= + >=xfce-base/libxfce4ui-4.8:=[gtk2(+)] >=xfce-base/libxfce4util-4.8:= - >=xfce-base/xfce4-panel-4.8:=" + >=xfce-base/xfce4-panel-4.8:=[gtk2(+)]" DEPEND="${RDEPEND} dev-util/intltool virtual/pkgconfig" diff --git a/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.0.3.ebuild b/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.0.3-r1.ebuild similarity index 90% rename from xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.0.3.ebuild rename to xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.0.3-r1.ebuild index 0c73355d2e57..2b0e088a4f61 100644 --- a/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.0.3.ebuild +++ b/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.0.3-r1.ebuild @@ -16,9 +16,9 @@ IUSE="" RDEPEND="x11-libs/gtk+:2 x11-libs/libX11 - >=xfce-base/libxfce4ui-4.8:= + >=xfce-base/libxfce4ui-4.8:=[gtk2(+)] >=xfce-base/libxfce4util-4.8:= - >=xfce-base/xfce4-panel-4.8:=" + >=xfce-base/xfce4-panel-4.8:=[gtk2(+)]" DEPEND="${RDEPEND} dev-util/intltool virtual/pkgconfig" diff --git a/xfce-extra/xfce4-windowck-plugin/xfce4-windowck-plugin-0.4.6.ebuild b/xfce-extra/xfce4-windowck-plugin/xfce4-windowck-plugin-0.4.6-r1.ebuild similarity index 93% rename from xfce-extra/xfce4-windowck-plugin/xfce4-windowck-plugin-0.4.6.ebuild rename to xfce-extra/xfce4-windowck-plugin/xfce4-windowck-plugin-0.4.6-r1.ebuild index 1731f9cec343..ec4c80869267 100644 --- a/xfce-extra/xfce4-windowck-plugin/xfce4-windowck-plugin-0.4.6.ebuild +++ b/xfce-extra/xfce4-windowck-plugin/xfce4-windowck-plugin-0.4.6-r1.ebuild @@ -18,9 +18,9 @@ IUSE="" RDEPEND=">=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=x11-libs/libwnck-2.30:1 - >=xfce-base/libxfce4ui-4.10:= + >=xfce-base/libxfce4ui-4.10:=[gtk2(+)] >=xfce-base/libxfce4util-4.10:= - >=xfce-base/xfce4-panel-4.12:= + >=xfce-base/xfce4-panel-4.12:=[gtk2(+)] >=xfce-base/xfconf-4.10:=" DEPEND="${RDEPEND} ${PYTHON_DEPS}