diff --git a/Manifest.files.gz b/Manifest.files.gz index 0619512c4702..e18b20f41f8e 100644 Binary files a/Manifest.files.gz and b/Manifest.files.gz differ diff --git a/app-admin/Manifest.gz b/app-admin/Manifest.gz index e2fc8da882af..9bb515ebbf4b 100644 Binary files a/app-admin/Manifest.gz and b/app-admin/Manifest.gz differ diff --git a/app-admin/apache-tools/Manifest b/app-admin/apache-tools/Manifest index a3fa9c381f57..f418462be359 100644 --- a/app-admin/apache-tools/Manifest +++ b/app-admin/apache-tools/Manifest @@ -1,4 +1,2 @@ DIST httpd-2.2.34.tar.bz2 5779739 BLAKE2B 8cdd41fb5d1880da4a1cfef252b4682f613b938594057ea4c9665d3881a50b298fb7339c1ceb3dafc215aa927048f99d500f2d29c125016d5766954be9b632b4 SHA512 e6dac5865a48533c025fe17523ee74d68c3a23f9512c9441b78a140e33cfb6835573eb049b0ad424eb5c5ca78a1915778c54e8a409da95fbdd3890cb99e08240 -DIST httpd-2.4.34.tar.bz2 6942969 BLAKE2B 02ecb9980f48bef7ac915077598560353e0682001bdaa99410b7faad459c4581f8d0878b4840e38e570b1872d549d58743260cb3030c145ae93bef97fc692cc4 SHA512 2bc09213f08a4722e305929fbac5f5060c7a8444704494894bb9b61f17e4d20bb6e3d663bb93fc5b2030b04a43fb12373d260cc291422b210b299725aaf3b5c8 -DIST httpd-2.4.38.tar.bz2 7035030 BLAKE2B 52d965b0eae3402c268f1c5f5fb669ad84408699871d0518ba254c6e7c00f2198cba8cb6106114a62f0f6de67e0a8b921b5783af9530d165ed4d435312ce5164 SHA512 8bdc36fa2bd13fd83feee17fdce4a5316ed8f96c1ac32b636ba106572ba257815438c72068d2d0e900783a3fa25c90a5da34c3f83fc2c04a1dbdbf234f7ad448 DIST httpd-2.4.39.tar.bz2 7030539 BLAKE2B 1e378833efb9bbdd6fdc277a779620a08752d064524489f9ad747cf85350fbb6ad65f57b30c81d57273cd6693d8a2c4e988f5a2c42bd5c9c538b305b9b7719e8 SHA512 9742202040b3dc6344b301540f54b2d3f8e36898410d24206a7f8dcecb1bea7d7230fabc7256752724558af249facf64bffe2cf678b8f7cccb64076737abfda7 diff --git a/app-admin/apache-tools/apache-tools-2.4.34.ebuild b/app-admin/apache-tools/apache-tools-2.4.34.ebuild deleted file mode 100644 index ff23c968addb..000000000000 --- a/app-admin/apache-tools/apache-tools-2.4.34.ebuild +++ /dev/null @@ -1,105 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit flag-o-matic eutils multilib toolchain-funcs - -DESCRIPTION="Useful Apache tools - htdigest, htpasswd, ab, htdbm" -HOMEPAGE="https://httpd.apache.org/" -SRC_URI="mirror://apache/httpd/httpd-${PV}.tar.bz2" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc64-solaris ~x64-solaris" -IUSE="libressl ssl" -RESTRICT="test" - -RDEPEND=">=dev-libs/apr-1.5.0:1= - dev-libs/apr-util:1= - dev-libs/expat - dev-libs/libpcre - kernel_linux? ( sys-apps/util-linux ) - ssl? ( - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:0= ) - )" - -DEPEND="${RDEPEND} - sys-devel/libtool" - -S="${WORKDIR}/httpd-${PV}" - -PATCHES=( - "${FILESDIR}/${PN}-2.4.7-Makefile.patch" #459446 -) - -src_prepare() { - default - - # This package really should upgrade to using pcre's .pc file. - cat <<-\EOF >"${T}"/pcre-config - #!/bin/bash - flags=() - for flag; do - if [[ ${flag} == "--version" ]]; then - flags+=( --modversion ) - else - flags+=( "${flag}" ) - fi - done - exec ${PKG_CONFIG} libpcre "${flags[@]}" - EOF - chmod a+x "${T}"/pcre-config || die -} - -src_configure() { - # Brain dead check. - tc-is-cross-compiler && export ap_cv_void_ptr_lt_long="no" - - tc-export PKG_CONFIG - - local myeconfargs=( - --libexecdir="${EPREFIX}"/usr/$(get_libdir)/apache2/modules - --sbindir="${EPREFIX}"/usr/sbin - --with-perl="${EPREFIX}"/usr/bin/perl - --with-expat="${EPREFIX}"/usr - --with-z="${EPREFIX}"/usr - --with-apr="${SYSROOT}${EPREFIX}"/usr - --with-apr-util="${SYSROOT}${EPREFIX}"/usr - --with-pcre="${T}"/pcre-config - $(use_enable ssl) - $(usex ssl '--with-ssl="${EPREFIX}"/usr' '') - ) - # econf overwrites the stuff from config.layout. - ac_cv_path_PKGCONFIG=${PKG_CONFIG} \ - econf "${myeconfargs[@]}" - sed -i \ - -e '/^LTFLAGS/s:--silent::' \ - build/rules.mk build/config_vars.mk || die -} - -src_compile() { - emake -C support -} - -src_install() { - emake -C support DESTDIR="${D}" install - dodoc CHANGES - doman docs/man/{dbmmanage,htdigest,htpasswd,htdbm,ab,logresolve}.1 \ - docs/man/{htcacheclean,rotatelogs}.8 - - # Providing compatiblity symlinks for #177697 (which we'll stop to install - # at some point). - pushd "${ED%/}"/usr/sbin >/dev/null || die - local i - for i in *; do - dosym ${i} /usr/sbin/${i}2 - done - popd >/dev/null || die - - # Provide a symlink for ab-ssl - if use ssl ; then - dosym ab /usr/bin/ab-ssl - dosym ab /usr/bin/ab2-ssl - fi -} diff --git a/app-admin/apache-tools/apache-tools-2.4.38.ebuild b/app-admin/apache-tools/apache-tools-2.4.38.ebuild deleted file mode 100644 index 69417dd72479..000000000000 --- a/app-admin/apache-tools/apache-tools-2.4.38.ebuild +++ /dev/null @@ -1,105 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit flag-o-matic eutils multilib toolchain-funcs - -DESCRIPTION="Useful Apache tools - htdigest, htpasswd, ab, htdbm" -HOMEPAGE="https://httpd.apache.org/" -SRC_URI="mirror://apache/httpd/httpd-${PV}.tar.bz2" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc64-solaris ~x64-solaris" -IUSE="libressl ssl" -RESTRICT="test" - -RDEPEND=">=dev-libs/apr-1.5.0:1= - dev-libs/apr-util:1= - dev-libs/expat - dev-libs/libpcre - kernel_linux? ( sys-apps/util-linux ) - ssl? ( - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:0= ) - )" - -DEPEND="${RDEPEND} - sys-devel/libtool" - -S="${WORKDIR}/httpd-${PV}" - -PATCHES=( - "${FILESDIR}/${PN}-2.4.7-Makefile.patch" #459446 -) - -src_prepare() { - default - - # This package really should upgrade to using pcre's .pc file. - cat <<-\EOF >"${T}"/pcre-config - #!/bin/bash - flags=() - for flag; do - if [[ ${flag} == "--version" ]]; then - flags+=( --modversion ) - else - flags+=( "${flag}" ) - fi - done - exec ${PKG_CONFIG} libpcre "${flags[@]}" - EOF - chmod a+x "${T}"/pcre-config || die -} - -src_configure() { - # Brain dead check. - tc-is-cross-compiler && export ap_cv_void_ptr_lt_long="no" - - tc-export PKG_CONFIG - - local myeconfargs=( - --libexecdir="${EPREFIX}"/usr/$(get_libdir)/apache2/modules - --sbindir="${EPREFIX}"/usr/sbin - --with-perl="${EPREFIX}"/usr/bin/perl - --with-expat="${EPREFIX}"/usr - --with-z="${EPREFIX}"/usr - --with-apr="${SYSROOT}${EPREFIX}"/usr - --with-apr-util="${SYSROOT}${EPREFIX}"/usr - --with-pcre="${T}"/pcre-config - $(use_enable ssl) - $(usex ssl '--with-ssl="${EPREFIX}"/usr' '') - ) - # econf overwrites the stuff from config.layout. - ac_cv_path_PKGCONFIG=${PKG_CONFIG} \ - econf "${myeconfargs[@]}" - sed -i \ - -e '/^LTFLAGS/s:--silent::' \ - build/rules.mk build/config_vars.mk || die -} - -src_compile() { - emake -C support -} - -src_install() { - emake -C support DESTDIR="${D}" install - dodoc CHANGES - doman docs/man/{dbmmanage,htdigest,htpasswd,htdbm,ab,logresolve}.1 \ - docs/man/{htcacheclean,rotatelogs}.8 - - # Providing compatiblity symlinks for #177697 (which we'll stop to install - # at some point). - pushd "${ED%/}"/usr/sbin >/dev/null || die - local i - for i in *; do - dosym ${i} /usr/sbin/${i}2 - done - popd >/dev/null || die - - # Provide a symlink for ab-ssl - if use ssl ; then - dosym ab /usr/bin/ab-ssl - dosym ab /usr/bin/ab2-ssl - fi -} diff --git a/app-admin/apache-tools/apache-tools-2.4.39.ebuild b/app-admin/apache-tools/apache-tools-2.4.39.ebuild index 3cea8747c345..69417dd72479 100644 --- a/app-admin/apache-tools/apache-tools-2.4.39.ebuild +++ b/app-admin/apache-tools/apache-tools-2.4.39.ebuild @@ -10,7 +10,7 @@ SRC_URI="mirror://apache/httpd/httpd-${PV}.tar.bz2" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc64-solaris ~x64-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 ~m68k-mint ~sparc64-solaris ~x64-solaris" IUSE="libressl ssl" RESTRICT="test" diff --git a/app-admin/cgmanager/cgmanager-0.41.ebuild b/app-admin/cgmanager/cgmanager-0.41.ebuild index 0c71191244f1..87ae5aee337f 100644 --- a/app-admin/cgmanager/cgmanager-0.41.ebuild +++ b/app-admin/cgmanager/cgmanager-0.41.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://linuxcontainers.org/downloads/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -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="pam selinux" RDEPEND="sys-libs/libnih[dbus] diff --git a/app-admin/metalog/metalog-20181125.ebuild b/app-admin/metalog/metalog-20181125.ebuild index 3207814a7f06..5f1d8d747e96 100644 --- a/app-admin/metalog/metalog-20181125.ebuild +++ b/app-admin/metalog/metalog-20181125.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/hvisage/${PN}/archive/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~x64-cygwin ~x86-fbsd" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~x64-cygwin ~x86-fbsd" IUSE="unicode" RDEPEND=">=dev-libs/libpcre-3.4" diff --git a/app-admin/packagekit-base/metadata.xml b/app-admin/packagekit-base/metadata.xml index 1036ab84868f..4ca93f3e889e 100644 --- a/app-admin/packagekit-base/metadata.xml +++ b/app-admin/packagekit-base/metadata.xml @@ -11,8 +11,9 @@ Enable packagekit support on shell "command not found" + Use sys-auth/consolekit to get user session Install cron script for auto-update - Enable elogind support to get user session + Enable sys-auth/elogind support to get user session Enable Entropy backend diff --git a/app-admin/packagekit-base/packagekit-base-1.1.12.ebuild b/app-admin/packagekit-base/packagekit-base-1.1.12.ebuild index e7bddc8c7ca6..af42930c60e7 100644 --- a/app-admin/packagekit-base/packagekit-base-1.1.12.ebuild +++ b/app-admin/packagekit-base/packagekit-base-1.1.12.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" @@ -19,10 +19,10 @@ SRC_URI="https://www.freedesktop.org/software/${MY_PN}/releases/${MY_P}.tar.xz" LICENSE="GPL-2" SLOT="0/18" KEYWORDS="~alpha amd64 ~arm ~mips ~ppc ~ppc64 x86" -IUSE="cron command-not-found elogind +introspection entropy systemd test vala" +IUSE="command-not-found consolekit cron elogind entropy +introspection systemd test vala" REQUIRED_USE=" ${PYTHON_REQUIRED_USE} - ?? ( elogind systemd ) + ^^ ( consolekit elogind systemd ) vala? ( introspection ) entropy? ( $(python_gen_useflags 'python2*' ) ) " @@ -62,8 +62,8 @@ RDEPEND="${COMMON_DEPEND} >=sys-apps/portage-2.2[${PYTHON_USEDEP}] sys-apps/portage-mgorny[${PYTHON_USEDEP}] ) + consolekit? ( sys-auth/consolekit ) entropy? ( >=sys-apps/entropy-234[${PYTHON_USEDEP}] ) - !systemd? ( !elogind? ( sys-auth/consolekit ) ) " PATCHES=( diff --git a/app-arch/Manifest.gz b/app-arch/Manifest.gz index 78344fb9c290..64718d7e2194 100644 Binary files a/app-arch/Manifest.gz and b/app-arch/Manifest.gz differ diff --git a/app-arch/unrar/unrar-5.7.4.ebuild b/app-arch/unrar/unrar-5.7.4.ebuild index 87339265603f..053c78baecd8 100644 --- a/app-arch/unrar/unrar-5.7.4.ebuild +++ b/app-arch/unrar/unrar-5.7.4.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://www.rarlab.com/rar/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz" LICENSE="unRAR" # subslot = soname version SLOT="0/5" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE="" RDEPEND="!<=app-arch/unrar-gpl-0.0.1_p20080417" diff --git a/app-arch/xarchiver/xarchiver-0.5.4.14.ebuild b/app-arch/xarchiver/xarchiver-0.5.4.14.ebuild index 494fe2f0b86a..b080bdfdfd77 100644 --- a/app-arch/xarchiver/xarchiver-0.5.4.14.ebuild +++ b/app-arch/xarchiver/xarchiver-0.5.4.14.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/ib/xarchiver/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux" IUSE="doc" # older pigz versions have incompatible command-line processing diff --git a/app-crypt/Manifest.gz b/app-crypt/Manifest.gz index 5ee56a73d823..5733d3f2592d 100644 Binary files a/app-crypt/Manifest.gz and b/app-crypt/Manifest.gz differ diff --git a/app-crypt/bcwipe/bcwipe-1.9.13.ebuild b/app-crypt/bcwipe/bcwipe-1.9.13.ebuild index 2b76c45f52b2..e85e1d5109cd 100644 --- a/app-crypt/bcwipe/bcwipe-1.9.13.ebuild +++ b/app-crypt/bcwipe/bcwipe-1.9.13.ebuild @@ -14,6 +14,7 @@ LICENSE="bestcrypt" SLOT="0" IUSE="doc" KEYWORDS="amd64 ~arm ppc x86" +RESTRICT="mirror bindist" PATCHES=( "${FILESDIR}/${PN}-1.9.7-fix_warnings.patch" diff --git a/app-crypt/bestcrypt/bestcrypt-2.0.14.ebuild b/app-crypt/bestcrypt/bestcrypt-2.0.14.ebuild index d78350c9d4c1..afaa12d6d91d 100644 --- a/app-crypt/bestcrypt/bestcrypt-2.0.14.ebuild +++ b/app-crypt/bestcrypt/bestcrypt-2.0.14.ebuild @@ -13,6 +13,7 @@ SRC_URI="https://www.jetico.com/linux/${MY_PN}-${PV}.tar.gz" LICENSE="bestcrypt" SLOT="0" KEYWORDS="~amd64 ~x86" +RESTRICT="mirror bindist" DEPEND="virtual/linux-sources app-shells/bash" diff --git a/app-crypt/ccrypt/ccrypt-1.11.ebuild b/app-crypt/ccrypt/ccrypt-1.11.ebuild index 140cb93941e6..61474cf3ea15 100644 --- a/app-crypt/ccrypt/ccrypt-1.11.ebuild +++ b/app-crypt/ccrypt/ccrypt-1.11.ebuild @@ -8,4 +8,4 @@ HOMEPAGE="https://sourceforge.net/projects/ccrypt/" SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +KEYWORDS="amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" diff --git a/app-crypt/gpgme/gpgme-1.13.0.ebuild b/app-crypt/gpgme/gpgme-1.13.0.ebuild index c8905a1db9c7..1d2c8c8d4bfa 100644 --- a/app-crypt/gpgme/gpgme-1.13.0.ebuild +++ b/app-crypt/gpgme/gpgme-1.13.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://gnupg/gpgme/${P}.tar.bz2" LICENSE="GPL-2 LGPL-2.1" SLOT="1/11" # subslot = soname major version -KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~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 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="common-lisp static-libs cxx python qt5" COMMON_DEPEND=">=app-crypt/gnupg-2 diff --git a/app-crypt/md5deep/md5deep-4.4.ebuild b/app-crypt/md5deep/md5deep-4.4.ebuild index 83594289723f..ba36e6cdc452 100644 --- a/app-crypt/md5deep/md5deep-4.4.ebuild +++ b/app-crypt/md5deep/md5deep-4.4.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/jessek/hashdeep/archive/release-${PV}.tar.gz LICENSE="public-domain GPL-2" SLOT="0" -KEYWORDS="amd64 arm ~arm64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +KEYWORDS="amd64 arm arm64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos" IUSE="" S=${WORKDIR}/hashdeep-release-${PV} diff --git a/app-editors/Manifest.gz b/app-editors/Manifest.gz index a31fa77ad3f9..ce467e3b7a76 100644 Binary files a/app-editors/Manifest.gz and b/app-editors/Manifest.gz differ diff --git a/app-editors/gvim/gvim-9999.ebuild b/app-editors/gvim/gvim-9999.ebuild index ff138f4e695a..00fd53abf5c8 100644 --- a/app-editors/gvim/gvim-9999.ebuild +++ b/app-editors/gvim/gvim-9999.ebuild @@ -26,7 +26,6 @@ SLOT="0" LICENSE="vim" IUSE="acl aqua cscope debug gtk gtk2 lua luajit motif neXt netbeans nls perl python racket ruby selinux session tcl" REQUIRED_USE=" - luajit? ( lua ) python? ( ${PYTHON_REQUIRED_USE} ) " @@ -190,7 +189,6 @@ src_configure() { myconf=( --with-features=huge --disable-gpm - --enable-multibyte --with-gnome=no $(use_enable acl) $(use_enable cscope) diff --git a/app-editors/neovim/neovim-0.3.4-r1.ebuild b/app-editors/neovim/neovim-0.3.4-r1.ebuild index 0bebd86bae25..c3e917afd7fe 100644 --- a/app-editors/neovim/neovim-0.3.4-r1.ebuild +++ b/app-editors/neovim/neovim-0.3.4-r1.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then EGIT_REPO_URI="https://github.com/neovim/neovim.git" else SRC_URI="https://github.com/neovim/neovim/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" + KEYWORDS="~amd64 ~arm ~x86" fi LICENSE="Apache-2.0 vim" diff --git a/app-editors/okteta/okteta-0.26.1.ebuild b/app-editors/okteta/okteta-0.26.1.ebuild index 26543662e047..6ffa594faf9f 100644 --- a/app-editors/okteta/okteta-0.26.1.ebuild +++ b/app-editors/okteta/okteta-0.26.1.ebuild @@ -10,7 +10,7 @@ inherit kde5 if [[ ${KDE_BUILD_TYPE} = release ]]; then SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz" - KEYWORDS="~amd64 ~x86" + KEYWORDS="amd64 ~x86" fi DESCRIPTION="Hex editor by KDE" diff --git a/app-editors/vim/vim-9999.ebuild b/app-editors/vim/vim-9999.ebuild index 8701b63c9a19..d4037bd79419 100644 --- a/app-editors/vim/vim-9999.ebuild +++ b/app-editors/vim/vim-9999.ebuild @@ -25,7 +25,6 @@ SLOT="0" LICENSE="vim" IUSE="X acl cscope debug gpm lua luajit minimal nls perl python racket ruby selinux tcl terminal vim-pager" REQUIRED_USE=" - luajit? ( lua ) python? ( ${PYTHON_REQUIRED_USE} ) vim-pager? ( !minimal ) " @@ -143,7 +142,7 @@ src_prepare() { } src_configure() { - local myconf=( --enable-multibyte ) + local myconf=() # Fix bug 37354: Disallow -funroll-all-loops on amd64 # Bug 57859 suggests that we want to do this for all archs diff --git a/app-eselect/Manifest.gz b/app-eselect/Manifest.gz index fdb23b908acd..448118dcf4ae 100644 Binary files a/app-eselect/Manifest.gz and b/app-eselect/Manifest.gz differ diff --git a/app-eselect/eselect-opencascade/eselect-opencascade-0.ebuild b/app-eselect/eselect-opencascade/eselect-opencascade-1.ebuild similarity index 90% rename from app-eselect/eselect-opencascade/eselect-opencascade-0.ebuild rename to app-eselect/eselect-opencascade/eselect-opencascade-1.ebuild index c0ef1e3ddc24..4513c529b4a8 100644 --- a/app-eselect/eselect-opencascade/eselect-opencascade-0.ebuild +++ b/app-eselect/eselect-opencascade/eselect-opencascade-1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=4 +EAPI=7 DESCRIPTION="Manages opencascade env file" HOMEPAGE="https://www.gentoo.org/proj/en/eselect/" diff --git a/app-eselect/eselect-opencascade/files/eselect-opencascade-0.eselect b/app-eselect/eselect-opencascade/files/eselect-opencascade-1.eselect similarity index 91% rename from app-eselect/eselect-opencascade/files/eselect-opencascade-0.eselect rename to app-eselect/eselect-opencascade/files/eselect-opencascade-1.eselect index da97cb4a8c33..bf2e0497a170 100644 --- a/app-eselect/eselect-opencascade/files/eselect-opencascade-0.eselect +++ b/app-eselect/eselect-opencascade/files/eselect-opencascade-1.eselect @@ -1,5 +1,5 @@ # -*-eselect-*- vim: ft=eselect -# Copyright (c) 2006-2013 Gentoo Foundation +# Copyright (c) 2006-2019 Gentoo Authors # # This file is part of the 'eselect' tools framework. # @@ -15,6 +15,10 @@ # You should have received a copy of the GNU General Public License along with # eselect. If not, see . +DESCRIPTION="Manage OpenCASCADE implementation used by your system" +MAINTAINER="waebbl@gmail.com" +VERSION="1" + MODULE=opencascade TARGET=${EROOT}/etc/env.d/51${MODULE} CONFDIR=${EROOT}/etc/env.d/${MODULE} @@ -53,6 +57,10 @@ switch_implem() { echo ". /etc/profile" } +describe_list() { + echo "List available OpenCASCADE implementations" +} + do_list() { local implem i write_list_start "Installed $MODULE" diff --git a/app-eselect/eselect-opencascade/metadata.xml b/app-eselect/eselect-opencascade/metadata.xml index 6f49eba8f496..e0898fe1df72 100644 --- a/app-eselect/eselect-opencascade/metadata.xml +++ b/app-eselect/eselect-opencascade/metadata.xml @@ -1,5 +1,16 @@ - + + waebbl@gmail.com + Bernd Waibel + + + proxy-maint@gentoo.org + Proxy Maintainers project + + +Utility to switch between the different OpenCASCADE implementations +on your system. + diff --git a/app-eselect/eselect-timezone/eselect-timezone-0.2.ebuild b/app-eselect/eselect-timezone/eselect-timezone-0.2.ebuild index b05c2756b374..5367c3d5ba48 100644 --- a/app-eselect/eselect-timezone/eselect-timezone-0.2.ebuild +++ b/app-eselect/eselect-timezone/eselect-timezone-0.2.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 @@ -9,7 +9,7 @@ SRC_URI="https://dev.gentoo.org/~junghans/distfiles/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 arm x86" +KEYWORDS="amd64 arm ~arm64 x86" IUSE="" src_install() { diff --git a/app-i18n/Manifest.gz b/app-i18n/Manifest.gz index 538ddb43ecb8..7aa85c7cf25e 100644 Binary files a/app-i18n/Manifest.gz and b/app-i18n/Manifest.gz differ diff --git a/app-i18n/unicode-data/Manifest b/app-i18n/unicode-data/Manifest index 5655136c3bfe..0c8298ba41e0 100644 --- a/app-i18n/unicode-data/Manifest +++ b/app-i18n/unicode-data/Manifest @@ -2,5 +2,7 @@ DIST unicode-data-10.0.0-UCD.zip 5991193 BLAKE2B 4724c6f11156b8d97c924c1e08232d2 DIST unicode-data-10.0.0-Unihan.zip 6632227 BLAKE2B 2bd290b083c87752c3462b8fe7a8c13e3943c69083ba7fbbcc659ca40476e984de1d49a102648d0a669bdaac81babb4c15d0ccba7769e3e4eb1db9efba778f67 SHA512 377f53ddc9ae514e8866c0e6b79f9b1d3613fad5a7e29c57a06baf8be84cbada0703b1c660401e7dbd2bb861b09fa9159b77322f42b34f5a0dc0d8f70ac4db12 DIST unicode-data-11.0.0-UCD.zip 5751718 BLAKE2B e9ad8eb47b5b5753e345836b19b72b5bf34d51b45369e79330992e1426a971e75715675ec24bbc4200a969516811b1a80b81503b52fae7f6abc5f6dab8a573ea SHA512 954a499ff072727c8778e711fb1753834adf09277c9e9a2592c02b59971860f9a407c7e9985ed1e6bdda7a3cf3b1cd6316599c4bffe8b0625413f874486830c1 DIST unicode-data-11.0.0-Unihan.zip 6747669 BLAKE2B 522291be19f68978f6701c0e624d6d0589b94798d0c1099f8c554c778497383c04422b0ff3613c59af9ea496243f4aa4354ea5b85e66f601a24435da96a3ec00 SHA512 a045e79545f1ec3529a8556d41c73b20809979e002f98314068c6f91daa79abb2ab3ab383090651b55fb55e343d8fcf67bea822d93d6e3221a206d58ef9e3a7b +DIST unicode-data-12.0.0-UCD.zip 8410561 BLAKE2B 10d34faaad501ddaba6de73a126b8dc5acc2941f81050ec4ff432f9a6aeabe1e13004e0ee190d37751517e3c2ea07c879d3bf2e39b8430d473f93f7fe05b08a8 SHA512 f9d845170df7e4952f90c6c75b256c2d330e174b95534fd6e8076bc6ad827a007b5e2b49562d29a4f7e6a529a41bb59330fb2acf94993f983049114d7b294a33 +DIST unicode-data-12.0.0-Unihan.zip 6749737 BLAKE2B a6caeb86f5c9dc13bc265c81acaa8ae791fdc8dbf728d3fba7a7004edcfbfa655424371cd4c9e667e1f1d6a5623b0ac1d320f0709c232b58b02494a728c7d2dd SHA512 7fdefad078284c14a9105655d1cb4d2b0dc1c89c56effe92ffcbd5a30b325559a56d97574b6077144d7a4ed02df6e6a402a2a5360e4abc0c84bae5c589044375 DIST unicode-data-9.0.0-UCD.zip 5655592 BLAKE2B bacfd82142e2327d5633a927d6283d1bf3d43d0476b43ca5b23190abafba5aec3f29a59f096a651acc320a7bbf5f511aaa39e1f09b9fe24e96b0623610bec6a0 SHA512 e9bdf8ed6647b4d0bd83c6fcd885cb450fddbf84dac376e9771bddbb7ee1e8ea1ca8c2ca79e23832c26a4819dd62f86fcfa6eb6a1fcc7294185f5bc78be8fa2a DIST unicode-data-9.0.0-Unihan.zip 6558824 BLAKE2B 18900bacb9ec84eef99758a1647f657685f2fc40d705b7cd8f88ea727d9494aab38cf4d40829d52afca7c11087e6b2b2c03547c14980b7d206ba241bff3d3e47 SHA512 9856d30afe5d7b0b088bde36c12431eae267992b315944ca8a7ddb3559adee7474fedd2d0d6b22716439f9cddad573a4bb45c6209036b0066a85fbd19412852e diff --git a/app-i18n/unicode-data/unicode-data-12.0.0.ebuild b/app-i18n/unicode-data/unicode-data-12.0.0.ebuild new file mode 100644 index 000000000000..2f8edc45c49d --- /dev/null +++ b/app-i18n/unicode-data/unicode-data-12.0.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Unicode data from unicode.org" +HOMEPAGE="http://www.unicode.org/ucd/" +SRC_URI="http://www.unicode.org/Public/zipped/${PV}/UCD.zip -> ${P}-UCD.zip + http://www.unicode.org/Public/zipped/${PV}/Unihan.zip -> ${P}-Unihan.zip" + +LICENSE="unicode" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" +IUSE="" + +DEPEND="app-arch/unzip" +RDEPEND="" + +S="${WORKDIR}" + +src_unpack() { + # Unihan.zip needs to be installed as a zip for reverse deps + # https://bugzilla.gnome.org/show_bug.cgi?id=768210 + unpack ${P}-UCD.zip +} + +src_install() { + insinto /usr/share/${PN} + doins -r "${S}"/* + newins "${DISTDIR}"/${P}-Unihan.zip Unihan.zip +} diff --git a/app-metrics/Manifest.gz b/app-metrics/Manifest.gz index f0fc68ad57b6..ef8f87c8b459 100644 Binary files a/app-metrics/Manifest.gz and b/app-metrics/Manifest.gz differ diff --git a/app-metrics/redis_exporter/Manifest b/app-metrics/redis_exporter/Manifest index 715805b65c40..ceb2228cdb59 100644 --- a/app-metrics/redis_exporter/Manifest +++ b/app-metrics/redis_exporter/Manifest @@ -1,2 +1 @@ -DIST redis_exporter-0.15.0.tar.gz 1232990 BLAKE2B ade899ef0f21594d3bb59c379f44d941e2a42f06a5c2ba5b304cc0b8b83def12eb036e6011a7d88abe7d97104ae663cb025ca60287ec9aba7be93a734d84c959 SHA512 8892306500943ec18d8fa5110fc6f4954ec886fca4d0023cdc2134ee2498c6f39ab06bec8f998ecde796cc2053b66103146503b76a185db3da5cbab81ebd9f2a DIST redis_exporter-0.20.2.tar.gz 970030 BLAKE2B 55bee727f196fad642944a444220d9f71958d812f5f5f4d79a0c741cada25f29690ff4f185ec4028cf5216139e5351022a134fb1b0f2b5b45b384a831dbf1802 SHA512 eee4cc9de79ea256571c9650abae6b044fc78b7683abef544d5313dad5d46d3516c55e939c33f87849cc52ed2465797d20b606e386aa4fe187dd16d30354173e diff --git a/app-metrics/redis_exporter/redis_exporter-0.15.0.ebuild b/app-metrics/redis_exporter/redis_exporter-0.15.0.ebuild deleted file mode 100644 index 3e3d871df3c8..000000000000 --- a/app-metrics/redis_exporter/redis_exporter-0.15.0.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit user golang-build golang-vcs-snapshot systemd - -EGO_PN="github.com/oliver006/redis_exporter" -EGIT_COMMIT="a0d9e4c704b4d35cd08544d395038f417716a03a" -ARCHIVE_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" -KEYWORDS="~amd64" - -DESCRIPTION="Prometheus Exporter for Redis Metrics. Supports Redis 2.x, 3.x and 4.x" -HOMEPAGE="https://github.com/oliver006/redis_exporter" -SRC_URI="${ARCHIVE_URI}" -LICENSE="MIT" -SLOT="0" -IUSE="" - -pkg_setup() { - enewgroup ${PN} - enewuser ${PN} -1 -1 -1 ${PN} -} - -src_prepare() { - default - sed -e "s|\(^[[:space:]]*VERSION[[:space:]]*=[[:space:]]*\).*|\1\"${PV}\"|" \ - -e "s|\(^[[:space:]]*BUILD_DATE[[:space:]]*=[[:space:]]*\).*|\1\"$(LC_ALL=C date -u)\"|" \ - -e "s|\(^[[:space:]]*COMMIT_SHA1[[:space:]]*=[[:space:]]*\).*|\1\"${EGIT_COMMIT}\"|" \ - -i src/${EGO_PN}/main.go || die -} - -src_compile() { - pushd src/${EGO_PN} || die - GOPATH="${S}" \ - go install -v -work -x ${EGO_BUILD_FLAGS} "${EGO_PN}" - popd || die -} - -src_install() { - dobin bin/redis_exporter - dodoc src/${EGO_PN}/README.md - local dir - for dir in /var/{lib,log}/${PN}; do - keepdir "${dir}" - fowners ${PN}:${PN} "${dir}" - done - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - insinto /etc/logrotate.d - newins "${FILESDIR}/${PN}.logrotated" "${PN}" - systemd_dounit "${FILESDIR}/${PN}.service" -} diff --git a/app-metrics/redis_exporter/redis_exporter-0.20.2.ebuild b/app-metrics/redis_exporter/redis_exporter-0.20.2.ebuild index 8ead2d2063de..e6d81a4c74df 100644 --- a/app-metrics/redis_exporter/redis_exporter-0.20.2.ebuild +++ b/app-metrics/redis_exporter/redis_exporter-0.20.2.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 @@ -30,6 +30,7 @@ src_prepare() { } src_compile() { + export -n GOCACHE XDG_CACHE_HOME #684052 pushd src/${EGO_PN} || die GOPATH="${S}" \ go install -v -work -x ${EGO_BUILD_FLAGS} "${EGO_PN}" diff --git a/app-misc/Manifest.gz b/app-misc/Manifest.gz index 5e376402977d..1e830bdb27fe 100644 Binary files a/app-misc/Manifest.gz and b/app-misc/Manifest.gz differ diff --git a/app-misc/uptimed/uptimed-0.4.0-r1.ebuild b/app-misc/uptimed/uptimed-0.4.0-r1.ebuild index 2fbdfafd16b3..cea4bac4db8e 100644 --- a/app-misc/uptimed/uptimed-0.4.0-r1.ebuild +++ b/app-misc/uptimed/uptimed-0.4.0-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit autotools eutils user systemd +inherit autotools ltprune user systemd DESCRIPTION="System uptime record daemon that keeps track of your highest uptimes" HOMEPAGE="https://github.com/rpodgorny/uptimed/" @@ -36,15 +36,22 @@ src_install() { local DOCS=( ChangeLog README.md TODO AUTHORS CREDITS INSTALL.cgi sample-cgi/* ) default prune_libtool_files --all - keepdir /var/spool/uptimed - fowners uptimed:uptimed /var/spool/uptimed + + local spooldir="/var/spool/${PN}" + keepdir ${spooldir} + fowners uptimed:uptimed ${spooldir} + newinitd "${FILESDIR}"/${PN}.init-r1 uptimed systemd_dounit "${FILESDIR}/${PN}.service" } pkg_postinst() { - einfo "Fixing permissions in /var/spool/${PN}" - chown -R uptimed:uptimed /var/spool/${PN} + local spooldir="/var/spool/${PN}" + if [[ -d "${spooldir}" ]] ; then + einfo "Fixing permissions in ${spooldir}" + find ${spooldir} -type f -print0 \ + | xargs --null chown uptimed:uptimed || die + fi echo elog "Start uptimed with '/etc/init.d/uptimed start' (for openRC)" elog "or systemctl start uptimed (for systemd)" diff --git a/app-misc/uptimed/uptimed-0.4.1.ebuild b/app-misc/uptimed/uptimed-0.4.1.ebuild index 498d1fc64756..45e214fb1bee 100644 --- a/app-misc/uptimed/uptimed-0.4.1.ebuild +++ b/app-misc/uptimed/uptimed-0.4.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 @@ -11,7 +11,7 @@ SRC_URI="https://github.com/rpodgorny/uptimed/archive/v${PV}.tar.gz -> ${P}.tar. LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +KEYWORDS="~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" IUSE="static-libs" pkg_setup() { @@ -33,16 +33,23 @@ src_configure() { src_install() { local DOCS=( ChangeLog README.md TODO AUTHORS CREDITS INSTALL.cgi sample-cgi/* ) default - find "${ED}" \( -name '*.a' -o -name '*.la' \) -delete || die - keepdir /var/spool/uptimed - fowners uptimed:uptimed /var/spool/uptimed + find "${ED}" -name '*.la' -delete || die + + local spooldir="/var/spool/${PN}" + keepdir ${spooldir} + fowners uptimed:uptimed ${spooldir} + newinitd "${FILESDIR}"/${PN}.init-r1 uptimed systemd_dounit "${FILESDIR}/${PN}.service" } pkg_postinst() { - einfo "Fixing permissions in /var/spool/${PN}" - chown -R uptimed:uptimed /var/spool/${PN} + local spooldir="/var/spool/${PN}" + if [[ -d "${spooldir}" ]] ; then + einfo "Fixing permissions in ${spooldir}" + find ${spooldir} -type f -print0 \ + | xargs --null chown uptimed:uptimed || die + fi echo elog "Start uptimed with '/etc/init.d/uptimed start' (for openRC)" elog "or systemctl start uptimed (for systemd)" diff --git a/app-mobilephone/Manifest.gz b/app-mobilephone/Manifest.gz index d369d58302cc..70e9ce002ef6 100644 Binary files a/app-mobilephone/Manifest.gz and b/app-mobilephone/Manifest.gz differ diff --git a/app-mobilephone/heimdall/Manifest b/app-mobilephone/heimdall/Manifest index 36998f9fb32b..1f7c36016464 100644 --- a/app-mobilephone/heimdall/Manifest +++ b/app-mobilephone/heimdall/Manifest @@ -1 +1 @@ -DIST heimdall-1.4.2.tar.gz 5486708 BLAKE2B 3846176440f235bc5bb65ac77a2d86b29381dcdf8e999edd38529f02a9f3bd21070bf922ad48fbd8c73c58e1f4834345da4c849549d136dde82df8a68cc4155f SHA512 ed9c5cc7e9377647474ba1af8b7a06d7bbc2371d379d83c2e5cd8463637c52c08c269ab18b6a0a0bec91be8101978748b2d10dd78629ba567bd2c2e452633f63 +DIST heimdall-1.4.2.tar.bz2 5506713 BLAKE2B 775abc8d47f9efac21f28e47d607ab4b07f8948fcca005c78ddb7ed093e51a76f60ac5c04150a3424c360813d180cd1df1ff8a87295918bff872f41123250a58 SHA512 b2b0a8a8db6a52236716fff9748a391388c1b2b1774a26fab9b451b8dab5ff35e8e1403555a65daec180fc961388c7581d170df6e3599a102fd304a133da8674 diff --git a/app-mobilephone/heimdall/heimdall-1.4.2.ebuild b/app-mobilephone/heimdall/heimdall-1.4.2.ebuild index 3bb74e9129de..15242ac0f035 100644 --- a/app-mobilephone/heimdall/heimdall-1.4.2.ebuild +++ b/app-mobilephone/heimdall/heimdall-1.4.2.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 @@ -6,7 +6,7 @@ EAPI=6 inherit cmake-utils udev if [[ ${PV} != 9999 ]]; then - SRC_URI="https://gitlab.com/BenjaminDobell/Heimdall/-/archive/v${PV}/Heimdall-v${PV}.tar.gz -> ${P}.tar.gz" + SRC_URI="https://gitlab.com/BenjaminDobell/Heimdall/-/archive/v${PV}/Heimdall-v${PV}.tar.bz2 -> ${P}.tar.bz2" KEYWORDS="~amd64" S="${WORKDIR}/Heimdall-v${PV}" else @@ -25,9 +25,9 @@ IUSE="qt5" RDEPEND=" >=dev-libs/libusb-1.0.18:1= qt5? ( - dev-qt/qtcore:5= - dev-qt/qtgui:5= - dev-qt/qtwidgets:5= + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 ) sys-libs/zlib " diff --git a/app-mobilephone/heimdall/heimdall-9999.ebuild b/app-mobilephone/heimdall/heimdall-9999.ebuild index 3bb74e9129de..15242ac0f035 100644 --- a/app-mobilephone/heimdall/heimdall-9999.ebuild +++ b/app-mobilephone/heimdall/heimdall-9999.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 @@ -6,7 +6,7 @@ EAPI=6 inherit cmake-utils udev if [[ ${PV} != 9999 ]]; then - SRC_URI="https://gitlab.com/BenjaminDobell/Heimdall/-/archive/v${PV}/Heimdall-v${PV}.tar.gz -> ${P}.tar.gz" + SRC_URI="https://gitlab.com/BenjaminDobell/Heimdall/-/archive/v${PV}/Heimdall-v${PV}.tar.bz2 -> ${P}.tar.bz2" KEYWORDS="~amd64" S="${WORKDIR}/Heimdall-v${PV}" else @@ -25,9 +25,9 @@ IUSE="qt5" RDEPEND=" >=dev-libs/libusb-1.0.18:1= qt5? ( - dev-qt/qtcore:5= - dev-qt/qtgui:5= - dev-qt/qtwidgets:5= + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 ) sys-libs/zlib " diff --git a/app-office/Manifest.gz b/app-office/Manifest.gz index 04e87b9fa4ba..4ce18e53c52f 100644 Binary files a/app-office/Manifest.gz and b/app-office/Manifest.gz differ diff --git a/app-office/libreoffice-l10n/Manifest b/app-office/libreoffice-l10n/Manifest index 7f01f322d787..da99063e7c55 100644 --- a/app-office/libreoffice-l10n/Manifest +++ b/app-office/libreoffice-l10n/Manifest @@ -166,339 +166,171 @@ DIST LibreOffice_6.1.5.2_Linux_x86_rpm_langpack_xh.tar.gz 289979 BLAKE2B 4f43689 DIST LibreOffice_6.1.5.2_Linux_x86_rpm_langpack_zh-CN.tar.gz 799720 BLAKE2B 743ca753bcc5819dbf8ff88a93f71d8cc68fe95b090a68f8afc9b7d5d7123cc82c5acfdbffaa49dabaa809281a6fe10f8550d187d26575401d440647d6c6cab3 SHA512 03f24a6bd2c838338af841c589982e19036787dcf5d16feb42a3f14dbe4e1e1d539dc1ee7da2a7cd3df8a112ab6c91af3683c9243818649d1f4a3c2119f09aac DIST LibreOffice_6.1.5.2_Linux_x86_rpm_langpack_zh-TW.tar.gz 799065 BLAKE2B cec2d4481857f5fef0c9cfba34362a113d6380e5bc2c1764c7a03df454324aced62cf0c9c7152c41bea06a148d6907c403968e3320525991093035f8397b06f7 SHA512 458c862fec8d6ba9d7e7b2e45e5c725784a54aafe541b7c6e1c8b950da111496edb73b86803740e4dbdc31cade1c9ea7f924c695dc75a027983a91541a252886 DIST LibreOffice_6.1.5.2_Linux_x86_rpm_langpack_zu.tar.gz 321028 BLAKE2B 75aee804980813727f9d42c65001b47303703d97dd3faed4fc18680d1fbc282f9adfd033c723de6f079161e5362f03454f13cef929f1becfac66d7ac448b2e27 SHA512 447dba75bec89abbcd491e9b0279890a5e99c2e2c69f1f243c70625fd1ad439837452888d51775e0a1a3835e544b65b30d877c6d2cf759391ca33e6e001325c8 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_am.tar.gz 2562721 BLAKE2B e1bc4758108fcdf476bcb08b2f95761eb3fc1356e45b7dbc5bdd2d45979d49455822ddd3bf83fd729e025c99d3df0835b80a49d0b472cfdecc2838881d32a958 SHA512 18df593b55f008898d83af51cc3677a4dc294528d255d37fb180c2f58c11f1de5e5cd4843488ea5db0d8fc0cf8dae4264c9de1e695a785753c2f7197261c7f97 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ast.tar.gz 2455191 BLAKE2B 47b857906226ab4dec14add667584d5efdfca6ca90418fa5f106d30c5d14c1918881c91eff6a32e706dc37ec040acb788d926e2c369a6692b01c9dfc07a3b0e8 SHA512 72af3a48760c5310d54a36e71aff9dfacdb172c14e0f1f36458d9ec5c7bd721c6accec583a39e0af8b9c71f2250d77c3ea7f37949e041b53ba9d21777a981153 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_bg.tar.gz 2645006 BLAKE2B 1700c50c4159c16cc5ccdea1abfdbe0e0c29ec4258cf98c62d9b754993dbe6a2974638302fb8df58bc5dc88d7807b2dcecb1b39e7553f29217f0a856c5104b76 SHA512 8c6e1089156660398898577745528605538236aa696d8553c4866d9a7053e84a0fdc17ba2abd1004027eac11ab403a76951146ce3e0dd888326e6af09be56fc5 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_bn-IN.tar.gz 2661057 BLAKE2B f04b689b04b27f0fa8fab85648eed8eec676e6ccc5c17f4465d421c93539514cb03324570f96ea641e243308e5695905d8497ad202ceebb4bba3a1b045230340 SHA512 5e3142e92296c94a05a59a6e135b08e8208103e700b881a6ba2889507cc8b116211a4a667ff5a33ca78598459a59c6d41dfb95f9cea1b3030eb891a416eb58c3 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_bn.tar.gz 2638300 BLAKE2B 8cc8862ab81a21e60d1462016dd8cf3655f989b941c57e771ec77bb8f2614ac33ae974150589d885b2309ee55d4adb0ff88da880d46fbe2c9d4f2f430f97a762 SHA512 0afdd645efc6eac0bbd22a065348e3f18d7e42bfed5d6165505d26f5a07b6e02ca7ebacdb082163c2a5a3ff56dfc990414641436493a9c83fc9673609f02a5f0 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_bo.tar.gz 2651256 BLAKE2B 92717a6412bf3766a8784a16ac453d4bc7f507535cba6c2ca3e5cd44858bf0e7dc087c8a5fe52b8c7aae80e5233421a59cf45bae8cba0210938b4105b1587b82 SHA512 62743f55425a30889ce04c18c7c72d53b641dc0a398b6071887f125e781466622bdecc8303d5949e68f7fc485f6102c1f6fc49ed5a9ae0cc402292bd42fcf738 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_bs.tar.gz 2368371 BLAKE2B eafc6222a50086a1c24f1080eccc3a801258ddb59fb0f0fdd540e1e3b05c7b2f7df5f9f9151df254d7d1d999544b7f3fda4a3a7493237045731126ef836932a1 SHA512 0efde8959e3ee5b862e0e880e88c910b55ea818548de218b97682997bdaba6543af33dfa647ec71082e83eb8cc78d37db7b3f48035458a6d76c7ab7906fc4f18 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ca-valencia.tar.gz 2450825 BLAKE2B 9af3439ade1a75628cb28ce63c2953c85ebed20e2ebd2b91fe62e28c95bfbaba3758ef517c687cfc94b725086aa0dadf9410264119c34a7ac019650e9c7ad967 SHA512 1eeb330a828ed76b1b793de02f92ab04b3662ece1966d865995762074c5260a8785803beb325da403ad9b9b9fe4487983ec924de77774cfdcfa433afbb68588f -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ca.tar.gz 2436912 BLAKE2B d71d8dcb4b1c8310b01027f7d50d7ee2da48f2442443e72b8ceb07e82126d4d339b8bcfda226fb38bc3cacfa472bdbcd429579d1a4e15b6b4850813a30c725da SHA512 7a06b989e124dee27e17c5cc5b3e90364462e893fd1151f0bdf5857b98d1a47eded8a1f7349b9846de9db0631b1470dc244f08c65ab5874a34732674c11bb2ca -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_cs.tar.gz 2431604 BLAKE2B a39ca0667c21be8194745a10e4fa1a90520868a966d674c3d1689651db331a0b1edc9e009510099568b02a034d9446ba48b28b85b7486adee151cd5db29a7fe2 SHA512 2fe7c6109d65ca9b0982f13169330bd7ad2b1ebac80addafc694915fc89e6ed030470f357df2855230cec86c47fb22f9a458e494bbc58f72a5a310566bffecd6 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_da.tar.gz 2395563 BLAKE2B 71b591abbfe98a711544683430809e42c93a4cfc47cb881691129bcd8f5f2a3cb3edb349d8f183750b25d13e20b61c0e593c392b4e2d97f0580a0af6745ac003 SHA512 bdab92e35ef51f7f4f46989a7c92f8b600d59b2d7042912182504e1e0d3aca71c4787424a199ab8f090c7ef0c1acd0ae05ca39deaa931332788b1237daf063db -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_de.tar.gz 2491307 BLAKE2B 35e701c5dd1a79da029bf9591d621b8b5459cd9849e10346000fb5be89a0a092d86d0e8bb691fe8b6f1f6a5c31da362e11e2ec953debdf2b35c9be6d75676263 SHA512 5ea651c6ee8a8216ea1f06ded2ddef1753de872d657bef8837dde73ce89948e687a803d5e7233c96217ad503ccba1548de7d35ecd0f45cac8cbde4b33492272c -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_dz.tar.gz 2806766 BLAKE2B 0c1bd45d66fbcb99f30178e2d6314d0df0eea799d1d89bde1d6f3d3bd66dba88a44b745e0245474206ce7f9d5ede12b5d55f59301a2cb42a7d941983d6a16938 SHA512 e032f5c45df51b136dfbbe15361330eba16e1220de56cd8850396b680f6009cd09652e19cc6a133dd3b8615c35706d6224a71de15c502414804edd559f7ca02c -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_el.tar.gz 2853674 BLAKE2B 7e4dae4c8f27cd637171f392fa27a3c263875d321e84261c7476cb0b343e3075ed4843745a0d91a592cd780f7d4b87238f3222c1eef1f704c248cee8fd5ebb3a SHA512 050caa1da5112f1998684df938fbd630c8a83893d8bf5c6a43ae7369716e23171b2147c6570c3419137e5075435de7dd6201f47f2854f32991dc55a39be8888e -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_en-GB.tar.gz 2274195 BLAKE2B 3baf7789ab24cb979f7e2568ecfba5296a899fd52d8b7d4b36583de62b8e693eb649e71f0a3970ccf8373371d76ab619447c8f2cffc4abd74af9a33247017060 SHA512 87bdd5e5f7aa704eab187445af1545e9dfccfdd574c88e03389aa773603ce28de4ac647d30d07c12250b2e59a89871a615c464e22bdb3be4d83d2b1ec57d6be1 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_en-US.tar.gz 2100689 BLAKE2B 9b27660e4f67bdb076a5b02b90ab5a6edfc7ff3f0be71aba08ccc5ac92d59cf23fe127eff01d987b38836fa83baaa22afe77f4a17e7f4ab7b02d2da018d3ecf9 SHA512 c4a4701c500859ad1e38f42b488331eed0454384a72b348882371f7dc6764bd030d68989010f27addd94a9363e882c883a056c4fbedd880d1582688b65ba408f -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_en-ZA.tar.gz 2270956 BLAKE2B 5b0f9c58598073b1fabb93beff667ca12cabc6b59dc32d16784090327b86c975609f4bcacd21e81ddff55e188e458d979e065608116389a7db90cb81d415da2f SHA512 665272ad4148d62773648f4c8316f06158dfbc291ee1196a9599ad02b61586fbd08c5d71ac56b42ac35e47bb27cebfa157d2908b02dc10eb0662aa5d15b57acd -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_eo.tar.gz 2351135 BLAKE2B f0f3d91eb793a253798c87bd4cc00cc3fe31d96aa968968b27f01b7cfb8d5f3c0926c392ffdca3b59bc390fd53c61968a8211a2ac7bb5f9f2f745df51fa093e8 SHA512 c6b0709b783b41a02145a42aa921fcb91c4d8152352b7729da1a44f2afaa8c5ace7b9f477037738afe2775bf88185584ef62910be8b7a9650cf2f940bd17f36a -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_es.tar.gz 2477793 BLAKE2B 6b6a694b5adf82b1e09dd5a7b35d85f22964826e1e2670deb95a14d516d3b565c75d96b855d796f90c28ba7ea7d2e4ee87bfbd58248e28074b89436cc8c6e833 SHA512 4292c0aba39d92b51a3db34e6e4dd88fa297ce32a7a43f3d044481dd6dab4c000d56a2111b698ae46b351dcfb18845505edc650ee2d05eba8b860ab6f9d645fe -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_et.tar.gz 2395008 BLAKE2B 7e21e8fffc9d9772f5bd63a787944180ca403e8380d1abe94d7f7ddeee8c73c3022b07a3055c8f29efba6f3c356012f6be7c10350d4a2cb90ff5c7bd48af6799 SHA512 a06ec1e30902d43ae025e65fdd7a8493a51dc631ba59c37767779898594061595ef45773211135970c290a556aba4d3ebaef1c619459aa2f14188a68b5b88e2c -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_eu.tar.gz 2349033 BLAKE2B cb8c262719bf5784095e64e0064684d714fb28f3bdddf9516844231fd6162917e5c8c29cc8a58f155b818d70a8e67110e8672e945563e6d2b5fa3a1517c379f3 SHA512 ba943896e1f617ad485a4a251fe12135403b9ea7c8b4cfab432a038f7687d9bd69ece49a6711bf2fadd7ee7a000083ca621897712d250aba1364a14c04dc4036 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_fi.tar.gz 2445313 BLAKE2B 2c1df0e9a5bb045172026a036be6ae6b21d421b4e141b9c40fa16939d32cf80caff3db1cc65691756ac6b532514df942bb7e394f9a103ec63a7b4bbb4543e60c SHA512 2f79050c47c3d22054f6605746bc143c5eb19303ac64bda9bc7bce89bbe75625b5c8f7e7a5cd39e76e22b1534f82fda7c9abd0fe8435ea540b4dc78313855183 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_fr.tar.gz 2459229 BLAKE2B c9cbc1dcaf324f3cf7de83a51a5c6847d1f8d0372f2a69bcb1530150aa99aa809a86c7e35867b7d81c6cd7972bdd2950689d90055fa58e8c2ee8df42f3b90514 SHA512 f488b3302131d280c17c77dbda3f971bb810c9859ad06c9a792da13788a4445ed4619231cb064e5e70fcfb493a8de75876190e58c78d6a33bf683209d22a464d -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_gl.tar.gz 2435580 BLAKE2B b0e0b61c7ffcff33c9d6fc41e6cf77d119cbdfc1a713c29a57e08739b542032392c5bd9342e925861e38e8364d1985125b9931cf4be81128f7a62a5cb4dbd1bf SHA512 f96c571e7ab66a512a58c004b230081e6aa387eb66fdd5b72d6c3b6cafde3ee444e6476551d1c48c43e9410b078e5e04259d032b9b7b1b1573942fbce4c3c489 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_gu.tar.gz 2321537 BLAKE2B b5c93ac2da04a3e41175fc187d59c82969a8c452dd975788f4d24ec632dbb93468b62f4db2a2732d7ffd994595096c6e79c28fe9cfea5df94bf098a7e4cb1306 SHA512 ff790e7e8052630b6f665f02159c229bd389f8bc24e272e5bb0d2c8a38bdd42efcd7ec50c8de3671a565e1229d35f1dc4c5c7a9520945ee912776fb5e37158a2 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_he.tar.gz 2210680 BLAKE2B 06402b97c9204b9c31724fcb941fa01555a8a9e073884e84d7031ae89784e39b747f5e44e83c3f7ba3e649913abfbc2b56640c7ddd7b1eae8dd2a66933602994 SHA512 15d0b77bd783fc1b0bdf0e368ff6345a898959046febee84c321f1a9fb64d866f6e0129685cc0f0fedc248efc7f8fb1f3f583a4ecd8982085b1bc0936259afdf -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_hi.tar.gz 2429767 BLAKE2B 8d5bb5c5d101319d723083d78d68590dd4967010448c561df3950d8b548d6e47385ec904c4adc6af34f38f5eb1ab91d2968ed4958a96e1c2d7b4e1350e970f3a SHA512 326d85886c879ee5a96a15f1589f6816a8379ef854b672ef872440765a2dbdfdf9ed420b1f2dd52f6d7b43993d8e4becb46dfad0edf528cb0076b96ffea2e4e9 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_hr.tar.gz 2325697 BLAKE2B 896a59e007b8a1ee384fea5cdd13270a86e7390046a5a44cecd8318ed7b47be3a7eb4a1313fea394587554dae87f1873a0d1d5a13dbc03f5be146da7bb640656 SHA512 3d796887ae3eac3bbf8ab67ae50901a8f872590d111147d8564948973a94a85dc908f017b9d81812495ed41b2c1ef059e66361f93b4d5b0363cb000b6655a53e -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_hu.tar.gz 2559730 BLAKE2B 7223aba6dd7e6c7b0561929d718a319fe6dc323057419849f3524a2aaba183d455be65657b396b594e0a2270924c6e6e0e380acfbabccac9ac440b2da5c8f379 SHA512 4ae4d9140569a06acbbde5045f05c13b6a19c26048ded143b433a2e46525601c6ebcb7cf31d11623aa90863e428dff947bf6f8852d9b63c88fa1fa5d649f9b97 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_id.tar.gz 2326172 BLAKE2B bcc5136b095c991e545ec9976367e335df1801afb195c76cfeae7a99713a86b4d9e3d2c46b71478f336301de7e0fafa912aa8aa2f13506195579fc80cc53c773 SHA512 2e8f3415e9996e7ee2b3a6112c870076865bb55d99464c82d519c6dafe949bee7f86c5ea5c95c0583772bed989bfe591659b92c20909c9eb5c5dbb97130d5ffe -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_is.tar.gz 2348853 BLAKE2B 4ef03df255b41f8b4cd5fffc8b58f6b84c18e13285f3d23228e61ba516f4c93b9c41be88d957b4ecbbaf0ba706144aad85af0e2532a759fe31612eb1644a6bd4 SHA512 ff6b8f138c44425bb85a4b88e666b0d97ce8df3d98ee0ce0f3e1005d91f1cd08839a00e2ec78be7d06c7602a802f0b59612d53fb6f8d0339028aa7ee438cc759 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_it.tar.gz 2428563 BLAKE2B 3ad8dd8ffe258d41871993284bfafb70f253bafdb8aa4287e2aac5e14ff2888653e54c706371815313860f6b0ee89c717da31154bd3be03553771478da426a74 SHA512 5496ea8c562d83355af6e331824360057b2e5ca0f7f766e350719bddf79c7cdf43d0fb28e558bc84d33dbd62bf19e1c0d1247103b27ff22b9211ab90878dc1d7 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ja.tar.gz 2604541 BLAKE2B b310d3bfbc80f33beaae4c3e361c0034e5d88093a757232bb4776fddc2baddc86844ed30438964cac85625dc465fa35dc9102ce5323ce885d3261971f24f0fb4 SHA512 948802bce2a58ece869eaa81000a34f96d9cdd9d49200b6db25dc0eb5a5241c56e34e986b6ca3d053f605db681903b65f1aa7cd209c57525d80136982db338a7 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ka.tar.gz 2458986 BLAKE2B a20b28b56d26b2323c2081b9225a59aea9baa8ff1044eb1af1c6bd3d64b2a6f869b0f9527c0f7005ba3f9a0a803faaf89dc6832aadb5984c7d0e23f557ab3b13 SHA512 87ffd8ddce37172d12fc8b9879d25f96e80f946b70d5ad9947f458cac2cef4f40da4a20bf7070196f6ccf3ef4bafeb9c8fdce084a937da56ba3d374fd9236c6f -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_km.tar.gz 2747846 BLAKE2B b327a98f4d80f96e54904d9578f85fb225021066c77cbf00ba0366d75e02d31a761ef6f40e9a782d09a547de73dd7b557356fb7fe91578b98520adb9bde859b2 SHA512 6140c885a919456fb7ea5b225dd85277d8c1492c117ee2c1f72256047e0b9a17b2af7baa7ebf5fb231923c13de26d53c3e8f1c1c172ce963a4763f351ef3d414 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ko.tar.gz 2475689 BLAKE2B 73a402fadb4aa921f617ee511be62a48698b9ac39503e79ff16fd25257cb8307bbf98c717e97a91a819ef510a375fe3ee66c7bfdacda0b8bef9b445a4b4c2e57 SHA512 b55c6550c2a8bb0c3d9c3ec64a39bbbb68201fb05e400b2c700beafa15e45997ed43074c38f3d5b845ca184a39237ccce83725014a6fb9886823b4fa52b1387a -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_mk.tar.gz 2443626 BLAKE2B f95dff4280fc46c05f071aa215f93f1c120e7d2e7311c5d10190e6839c5c1f5864b35f9ef7ccc4f5dc58059ea80048be209523db6097b940de39292b41cfb11d SHA512 bbd3bea65a56744cb1a70cbca353b754a8ea45a441b513a3475acc77191ce2b3367ee9e8b371002f0b01da9e811a499c01165722e24c8aab1ab5b8400243b1b6 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_nb.tar.gz 2375890 BLAKE2B 4a60ec1bc25f783deb5241b678fa26fdcc626fa8715ff706fb0ed50785b293a47091b9abe5105f0638f599d4476ffc54b8a671143b252c0b79b2b3c477e59ca7 SHA512 8bd4f1c6f28905edfe7be847fa99bbbe6cdca4aa16040ef404f589c113c8bd118fa58179db8017fd8b3bee7a9f75061ccf9b3a8dd061a1cf03e2e2704001431b -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ne.tar.gz 2672690 BLAKE2B 77f0fb27e8b4d10990219bf01db0d90a1c2b18e0672e1dbf6b5aab08a1b197c7bc83de5a405958456d3e7c17b270a0b021977e319445fc6127180ab21220c864 SHA512 29d34c22c76b8e9e4d210f9c9a86e564290515682d1a370532241bc6992f9fb1806359304279cb08baf809724f00444f24398fd7c6255d5d9646969207a5622f -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_nl.tar.gz 2427931 BLAKE2B 0580e8bf547fe5e78f0e4fa176e1c5a0aa8bd283e5bdc19614f2350e156c0c56310ee5ece570e2cd8801e23a2733eefccdbb53663c279cc989e99bee606d8c78 SHA512 6af7ecd70352e0431b3ccddb12ab84a24bac9961bbdec7aa5761fbd53b0cd3f14e8425f4601d9916eea2146f54904c1f9d60a253649fced10a1ba58335c89cd2 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_nn.tar.gz 2370039 BLAKE2B 5e1db8afdc3ff3ff7567c66324ba117b7de38446e8606df3434d612a988346936b6bbe9331fd4801fc5c64520999d79be81cecfca0a79f1c3d438ac4bfea141b SHA512 30243cc74460f601676aa651221e6860bd8f0f2c1e9a4b2e11576089063472a563f5696773945631c1df070d3d97de07373d8a73e3803e742cc8299243e25370 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_om.tar.gz 2458539 BLAKE2B 68b5c2645eb3298ab3b78a346d70f44397f44357c42494f7fa2ef38c56363e65dbf05aaf5918bdd3b36d973d0bfff54b142b7861200a178c5e1f1b9a01e8d858 SHA512 46596b3b8743e87aaa1dd7cf30c1ecab1ee5efc46d112e9aa5bc4c7b34a9b50fe90f6395d6f5f86d4844149f0d303af8a83c6d53ffbaca6e2b13ed73951ba33a -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_pl.tar.gz 2529934 BLAKE2B 4be1f3a45cce56419d4816b76d035c1c429c8045f4c1e9b54adc90e46f8749c93d3b304ddf459203f8dab6a2ef9b5e2f9d09a69a498018542fdb73090a2aa190 SHA512 c779ddc3f73297f0c48eff475dc66eb340d1ccc8fbff87596857002abbeb1a8a46b2ebe160c7d707965e156f91e41be27f67b7723dce3a9bcf45d17deb581390 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_pt-BR.tar.gz 2446557 BLAKE2B 67295b0c6fd0077bdd514c45dad739681ffb0e8cf5d1a5110b2414fe25dcd568ffa20adf240ee4cb98a0fae4efc9c4f776883de37e587e94d0ade3821460d66f SHA512 b301b7e3eb34669a7ca9aa6460f07074dd1f23053cf7043cc099b61b99e4ebe8122fa4f38b4a66d169cbf1b99b59e4fc7f42c000ab21e82fe312fd35c35f754a -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_pt.tar.gz 2411107 BLAKE2B 4a33763ba5029789e64f58731520ecf435062f1ae06f01b816721e7079590189f02b2cac294043aa055c440ff05a8478c3ecf9810b471a0ede03fde4b04189cd SHA512 6ab6e01ad32968ff604a79f1a1804dc521a74a2632c712cb0221fcce23b59b07ea78dfd09dfc12b1bf7f691353fc86640bc56c55ef2f9e7527c713b8fd107cc7 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ru.tar.gz 2713707 BLAKE2B a76a1f1ca82bca10f5d025925be815b5f3fb3beb73379bc02fb36dcdcb282677fef2cd935cb17fc6dca4620de517d493a3a6cfc0e8b62c2b46aa581ace2fb652 SHA512 478baf56066e7987a470449be08f4fb951883b949b7045dc66f3ac716fb536a05fd7ef2f25cc0f333228cd23b2da7708b289edc2d39c7b0ff5086042b623e892 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_si.tar.gz 2417723 BLAKE2B b227e31ec8990edb492e04ab171bf28c2233b6ae410b14c103e48c72912d968806bea41992e8aecb343e414bf04f9ab4c8ab47f2e2aa8f1d6abd0e5f1f4bd3ae SHA512 6b6fbfabf8087977fdeb61bbd7d5d7cfce903d22ed575549d56d3e6fe0457d5f545720e73802978447c889c0675d5d369a630baabd3858fbd97c5977b3f784e1 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_sk.tar.gz 2467602 BLAKE2B e70d66541c5724afbcff10a59b7cb87c7bf365a53f5b27c289cb3eaa70527ce82383c26c94c346d57016c6673629e765c6d1724619b906b0d6d1a4ad20e23148 SHA512 a29ec22da003fbb304e25aa3ff42de8250d1902fb2659fe92b9a612d3b1477c54af37e0ede05cb4ff0e333d6fda68bcd96c38c746b967abe641fb9b5d39f604d -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_sl.tar.gz 2411972 BLAKE2B edcb8d5f74a413f1b2ada621e08223c7b639c5d3597e0dfd47d8ce39f241e598e4d7a9eb0d5324d727a1baf47c93993ec80c6738f3c41a857a5e3662b331b2a3 SHA512 6b789f5c2c1f2158bf68f34864c4fba42dfcbdd0e5c7f6a77eddaf1516f06feef722cbdddf7aee62932f4560bebbb2d59d6f7fc97318f0cbc301f253d8e1a5e5 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_sq.tar.gz 2327286 BLAKE2B 9dd37b721e1c6eb92a5ad2ce6b0acb79b8d5885432aa2deef6cc03d0e43610fc25fff5d8e4da4a59c8643ae1174ba35b5a5f9916f2d24947e42b2aaab5a92b4c SHA512 a5d46074c1e801306ae86f870a6ae616d192e7d76ce0c0169474e607aaf33d4948adc0048601a176614aad5137853a2f975d02c15ea2e3fe379da7ed7bd1baaf -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_sv.tar.gz 2411031 BLAKE2B cba5e4538bfd056301197a6b936eadaef841ff683165b1da97b14a54d2ddbf487e7802ea4e9b5f32dcdaeeeca915dab51604c56b81dbe2de5a01e7f7eb3e6bff SHA512 c9435fcdf5f4f912b74cc7327fcecd6f028db2646fdb9b59773e45a029acfbe1e958c0e0d124c2438d54a30beb6730a757e00a3a766c1d93d1ce22aa4c794ca3 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_tg.tar.gz 2414982 BLAKE2B db4cc216ad326d60954ccf609d604a3b008cb8b124537e84bb4d7ebb6be347b6ffb0dfe818e553090dae872c70fde77a2e4ca02478a1825102b1d0fa6344c7eb SHA512 7463f6a3926b641e0f96c38728af4943f9981579846dba5053c8799cb8ee2e5f415723f15c20197882b3413ce63f98a501ab7392887fd476a3945aac7432d1b7 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_tr.tar.gz 2479148 BLAKE2B 26329423444b393a0de85d5d409ef018f144807430cdec93b3fb97e3ab572c29e4aed69dec3bcdbd98f2a8ccdf884348d5ac96412ca41a768e0fceb9b2e3602b SHA512 b74e029135d4b922c1723cbe89e776e1984df097b641985a70879b911e367ee1d82c96fa26ba0d1a19656ac74ae103a950f0bed79294912b1742f8dd605384c6 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ug.tar.gz 2385434 BLAKE2B 7bc9b0e81a6d604b879ea1bfe4f7a63f3d14a258a89fa8b2439ef21df3ba09debd315d4191a5ac7d62b47580145d5664b4a03f201952df5bfe6897d6e0e5bb67 SHA512 9fd70588336445be80dca4665ec939aa1efd9f3e0e606059dda2ed24e532f7b9f18c3c186cc2f156e9175d2dd06a534210556600499b2da95713766b6535d4e5 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_uk.tar.gz 2663276 BLAKE2B 4e6e002517085cecb138d4ab67cf90a5ab96147c5e7f1e9b926b66cbffb4607347c97e29f8b5b3ea7cb2bcb7b6f4968769c51588051c6bbaca74594dec123342 SHA512 8bcc88ccd58d727e59c919849b6263047e19a65c81af737e592f4d234dd6fc3d6d1769f5b132d9a676edb3cc8b7c9255e0c4d43f1cef7f87172d550bbffbcb68 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_vi.tar.gz 2468550 BLAKE2B d007c67b3df23dc998b3fc86c7de16eae8bc8a806d9e0f630dda7ac83a9eccf0d9c776ed77a1d11660b40d6f6dc3baae49a6f59323a5e9eeb049f646a6be0758 SHA512 251ed831b7c153c64f4409c61765cbcd825ffedab41e146441f9f20395e6c1476cb59be664ecfa753cb980fce259731810843be9661918b7f1d7e6b7406ebb1d -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_zh-CN.tar.gz 2416270 BLAKE2B e7fa67aed28954c0bebee3f0cd18ef0ad22dac22d3ef4e594578499d62b7861e423724e2c1c595b521e8527f86603ac050220ffa7b3377b103fd07880362ceb3 SHA512 27d239ca999d5952c7e6a271f145b69b116c95de3a03e193f6079c3f5e6b28c4cebd8460d5acb5e9788af6c39079a3d14e0b8e2fe20ac15455fdf0d6d72a1d49 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_zh-TW.tar.gz 2511495 BLAKE2B c784f46f5792aa54835164b85b1f8dd3a4743efeb8239d594c52833d4f9b14ffd4afc7cb61b4193acc9973acf5854f6cbaa6277bc9d7fcded012bd15d8ebcd5f SHA512 b98e247c8144bbada64429a4381cf622653dd8a873b16f72e319310861f26cb8c4ee7b80d3a9b9f9a0af201887bc56deba5607d36a6e9feb1b52b7f113340b7f -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_af.tar.gz 1018428 BLAKE2B bd787a80bdeb3d0d4441e32a94977cbdb2547c2d2d117b1f3b9023037982e507287827abaff593acfd279a2a8e203f5fe1e7f032f5538a01ab60a796f2ef83d1 SHA512 fc1c6eed37e01a29ad62773f1c2db769a88f9b74e94a818d5c9b6d4dbdf3996c21a4b354a5270332f36ce9c18db089a607cce6f176c26f626a99d3580e1ca508 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_am.tar.gz 763200 BLAKE2B 963a9d3956a01c30ed4f9d0a6ff6b9f3e3e9e66e6da962eee087777315928ee9256b0d45587189b458148f848dc262afb35323f7c9f6e7c40b945d8f5d344c4b SHA512 65029b6c10bdef2596079cdb67c7aff5d01132c45724f63f5617854e1e2880153d04fad6663122900817fbda15d164df1cd4cdceaed9830077b86c805e99a8d8 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ar.tar.gz 2414727 BLAKE2B eba64d888c7b5371d8971c680f24f6fbf81f094451039aeb9842a0fb81b4f3ff8435d8ee48efa0f2c977b02794c80ab281b98e911b7fab8a3dd6ceb297a54aa6 SHA512 5d3a9e52496d5990baec5f8e274bd9f084effca98eb88cddf62a8f8e049a1124ad0d03b5668c8aafca16e5ccc3ce9eafa2a7d9ff977729316a778c7a6b04c615 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_as.tar.gz 532116 BLAKE2B 8b99e33a940dbc48a0e6f42e4de29e25cf506306453401ffdd767b7c85a07990dd6f14a71af751332b1a2b931e76103e588c168ac5298acdfa5317569cba3b27 SHA512 7bbae680bc355a3e707e7f26790b78e74ddb7f4d1068e21ba724077b48bcfbb3af8a2cec51b9030747ce82ecceb4fb1fde0dc3b36a639b4a9084f31b1aee83c2 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ast.tar.gz 440719 BLAKE2B a692691e18d3fa5be8341bbe234d8625ae2bdc4c27614bfb9e10bbd0472b232600dfe58c4960b126f54446a224ab865da93d687e5c4bf262e4c397da852ccd55 SHA512 2f89736da907ac3686eda2e21ddb496548a3c9f78881d391b9fad6658a1be2e3263970aa27fd72730b7bdb6d57596210ac8c02a0f4f3d2c858d568aa505147cf -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_be.tar.gz 1056389 BLAKE2B 6c25fff543ab6adde5843304e2eafaa8dfafc2b0eeb867d92ac41be8ebb0e6fb1d9282b6737f5ada70558ee2d08b39873738dd4dda2e14a9072c24a5209fa78d SHA512 3bc724ae4eb764deb67166094280c31a94e0c287b61b59fe559bdcb9555f28a258c870435b70f7889bc9b5bcf8880375db7a2c08d07d658264f247d0fce81907 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_bg.tar.gz 2448241 BLAKE2B d961ace413b852bfca0beeb012cc4831d2e47b3a6f3f14f867e44c7d3ff067d460d1034d8d7f4632815eb6c797977234192dced9aad325eb409a99346f56027f SHA512 748c5392b36ec854c7ce5dd2587f040b667599d88dcda68edf4811489076b8c487af0ffc6172ce17311ac5c8d89e27a3c9e4fc8a0fc03463b96d79e46be4fc41 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_bn-IN.tar.gz 648841 BLAKE2B 5ad1570b06e5b283f8534ff3981dc3fa96bc82ea7e7bd5ac9c5c8d455f4a4cb5aab4eccb690d8e2aa79c8606f51b2e66f12c221eeb4490eeeae673feb6afe4fd SHA512 de9a686b015cabe9466375f0193313cc44e16e39edb995f5c7b91f517e6357fa6e39dd59ba772bd5fa6a16b30728aa55573ef9ba29ff944c54c132ebde6261d6 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_bn.tar.gz 788775 BLAKE2B f154964dfe46151898f3754d699ab6eaeed1f87328d255f34c828b05e7a0aae2434faeb07878f680788065d885a77fb8be2a1d61a15110d0e5301cda04a6c025 SHA512 ae6cae99b3d7fa6f4c357d6bff1bc3a16cc13264cc67db649c96d21043e07ba794489afee2031a9c47af5bd4dbba14f5542f619782779a409aa8989d0c60bbce -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_bo.tar.gz 380807 BLAKE2B fb669c2fa3643a19bc3c9a389e44cffab6196ff988b98bb85a7dec0dfca4f3a1b99289ddba1c26241371b6631c84985a416b77dbb9f42c93314ddf2fd6de872f SHA512 05c9599f2be7dd5e5a7d871455cd84690be84dab4bf4675a3ea0730d31ec98bf5466a68ac894ce01654a0d4e5eec5f654cad2ae63aadae81287a1821ac764d09 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_br.tar.gz 1537944 BLAKE2B 44a96dc324539cd2707af320942c7d8357c6964dc4f2fbc3bf68002ffeb6e31edf292c43b908d61f39aec40c6eb3e461a31060ff0f9b72cdf18621052e529d71 SHA512 2e4102540212bcc61b46bf5a33f1ff0c7dd8604523bbadf718603ab6928c033fc4bec322f8d1d0e518bdc96a6141af14a02203395a166899e0dc8d81e8cf9eda -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_brx.tar.gz 337211 BLAKE2B 05dce1b0b3ef780d50c55519d7c34c15e89d56202f4e5dad6156b7413a8c1ad41965b7bb2caafe11edfde880ce505fb1c49553b8393431f7f11956be2efc5f8e SHA512 62d3948b0dfa9078fb66b0289fd779048bf6fd8b269c7b51043373e9abe8dd6eb8dd92db084b97221d6d4f2b2d9c99a72b964139e75db61a0a12eac52e4bb061 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_bs.tar.gz 636736 BLAKE2B 78b044c8be96518a898c116976835df0946f31746aa821deba9812c995db7c3a525d8b0224f5eb0cd47885d4a0aa5e16c03e700890c8c76239a3634631ebec20 SHA512 84e65ce9fb4a66aba53326633555d36423d3d8e15a56fc89d3fd588e74c4c25eb0f1ba23f790154b644e054fe50f4a840704e0298c3976714ff33d89e0dc3273 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ca-valencia.tar.gz 1973068 BLAKE2B 6196331820342ac70f7a1b87c4747bc44ef2842bded7634b9300bc8bb45fc310effc77ce879df7aa1e595d7838cf58238b8fb31cd145c10e7789ba2d56bf039e SHA512 862a157812f81f64a32f6ab63e65be5d294d1744f700b752ce10a7a8928dfa146eac911ee4b61cfc96e820b8a4b53ba902b9b596035f6e257ea6e8325bcb3a06 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ca.tar.gz 2020424 BLAKE2B bed4afaa739243d42cae3a084931f0a1daa5fa62e003b3256d37b1df98ffbdf9e84fc9c4a8c15d16f77d64af0ad586ff577ac0b94d2e859191e46dff1e50f750 SHA512 b88e43509092367cb5c6b6a0f5692afa792875680dcc5a729f55698bca167c625fff0176753fed6d7fafec97d418fce9aa4f2e206817711847e18e57c3d9e39f -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_cs.tar.gz 3189713 BLAKE2B 8715a0252d579e339ac099059a9a341f1fd0d82c9dc5a571d65ed16e0e03a2e678774b5ad75aaa40fb5f35aa04015be9ef5e20cf8608b34f45cb06b313ecd68e SHA512 c8ee81044ab7f8e92518b2f1aadf885772bf50949ccb1af94e220928dab593caf7abc6922c590d04711658002c7b77138f2563a00d6f1d0139ef37c11373e408 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_cy.tar.gz 724986 BLAKE2B a1e83ac3645b555f03d9300c7e0383dc652132678734e6a2ad3ab8689e1106c8b7bd50ea623236ba1e94f790efbaa9f70dc0a5168832884d4e7596de1f4ba07b SHA512 69c57289015dce615c59f82a68736ad2413c99b6b3dd1229a2f3237c08589b2f8ee7ed16f76aa9d750e329302435fb377200fcf9524f7b17cde23b0d1fee5c68 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_da.tar.gz 2629852 BLAKE2B 478dbd3f4c495a99daf87be750954a1cd28669583617807f98983e12c8863a62d0f4799424aace1a884965833c01b12a2caf1b23f3e3e431a20217d2dba426ba SHA512 d493557b949bde6d9c60b07f53321285ab54bb5e0b160ce4a82a31dc7f6e5eec20a2347f80ccb97e31f390aef880134eb2bb9b815591d094794ee063db340167 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_de.tar.gz 21756988 BLAKE2B 8b6033fb567e692b6c5cf25c6b03dce3913620ec972875521555e582824c5bb15781c0daea6833873d4412c5ec11f02ebf08d8d429c2e61da3e13b5e688ad9dd SHA512 8176e1d31eb5f75d07eef16c79e38dc29a2c7a54aed304f4ecd8d00e1ad27f15734d24ffb63aa5bc45b4e066c248cf4ac030bf22a3684c3213da75fae7a8a57b -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_dgo.tar.gz 441671 BLAKE2B 5d7cacddbfa8fd2b7cde973e1191a4cc75ec33b419998903dde69eaa4eb529d02266403786faf3d8b7e3f38bd753d3ce97157bdb61e83b8634586684edcc5f22 SHA512 771e6aa37dd4b02ecff7bac30f64b7b2a54d1e34847770a6e877096bc2aaae38b63d998e73ac1e7c23489a720a04e9cdea2b90bcc9ef0613229cc2400ba7b88f -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_dz.tar.gz 367879 BLAKE2B 72f0693e715cde003ebc8dd7efeb49c99ac22ececa374f57bf266e64d404ee863cfe9b43697962cda649982b972937d8b6f61325141a919193d3e21b31fa0857 SHA512 f2580dec51319a8ba5e8cd1fb1ed441896535c568ad8a3d870bdef2cbc4d3de7bab293d968a83a866bfc3bbdc52c4c5277fd30e4572cccab27e231038db53bf9 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_el.tar.gz 2828887 BLAKE2B 604446b49ff48284e3d16176605ad8d53933987a70f0cae7d48179f8b675697d8828585eda6d58db4acba5932331b5b26503112609d7914186638ba4d4ad35a2 SHA512 3e032940bacd91a43b81fe19c8f64fbd5770c615b69e73c784a7ef64c95d4524a1987e6c2061e1d89549a35db17300450d0a1db3684b699ddc0528ceec06cbf9 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_en-GB.tar.gz 7336219 BLAKE2B c0a34024aa040009b474666c337e1d3c0c109d641b5dbb2af768704926ab7e9a559e0ac8f63003de9ec4856899521294dd47a0c1ac6f1e87caddc5a20a49b2fc SHA512 d1af352bdf501ed0b96d622364831877a206ede5f6157ecc59d0171eda80ecc2b37049539bb10c58654a691bb31c0467babc49e7f636355639cb3f3c2f4f6b6f -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_en-ZA.tar.gz 6923721 BLAKE2B 907717f0cbbc191d9823e896eadda70a908ce83a9d663e691e8777416249b0ee05fd7fe0ca387402279d279cf5df08b00ab5bf48df1caf0058c9bfc8bb79f34b SHA512 5769a6758d7d9afafd74ab9ffd9788f0dce6ca8bd84b47e18afc7d7e9fd342a0640ef79df4d3d3eb127221f99d3ee1d2a93b40b6f27daa0c083f0d1237c31603 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_eo.tar.gz 720895 BLAKE2B 1bda2623033b9cce02c56b972c00fa3781860a2e900c51ee732f178c9fc0ecba7fcdc3dc04fb08312def9f6b875efb4be4619605b5c4bfe66c92b8344f00c47b SHA512 66addb0ee042a15cb60b13aa830832e4c036589045e2486df1a81f66b09a9704aaab1a227a5d9ba221b2afd9e7ef75ed5600a0d56dd28daa1c909377dfd16ec7 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_es.tar.gz 2241275 BLAKE2B 755793b203a3900274e6b34cc69ab4286c0a310b494d8a96e0cfd96710495078ce2f4decafe6f526bbf99b5a4d17414c4955e3892babcf5519dbf90b5c1e788e SHA512 6c1bff36e0e49ab5fabc4af9ee897cb0656a1736f5be8aad12d72a08b474a2b9583221bc0e4be4997dc6a8b4f3a6f52d696719045e00b227277700de0422eab7 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_et.tar.gz 1634392 BLAKE2B 5c3a9b7d8fce60ab58597f54a5a6e92792bafacb62e5140034a2f8a68e23c888335e0c5b626f535a93d328e0df931ef2464852f83e2ec8e771bcdc5f14c19e4b SHA512 3b387d2914f134bda57f068abb4164c5529a9ca7e79d93dfb497045c042fec88be1d80d1dd4a03c5f48466cb45d66fd01114b7654a0bad92a5b9a49fb4ceabb1 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_eu.tar.gz 729843 BLAKE2B 84f52336e6fd13041c905b8924c8b79a302c7038954113cda32b5134990e16a473d6fcc75a7d2965564731e8625fdeaa32608fe49f3f6fd3366245881fb61a15 SHA512 3c55b6edc4ef4f0bd7499728f93eb0fdde70c62f0e37f2fcdca57d12f0ee42505b26bed6e0037a4a52543588c48be6f4e05f089785e6cbb6fb209d1febbacdce -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_fa.tar.gz 332276 BLAKE2B 68df67454f9f5bd019805ca12a998d32222c85a6e76225693714481a3801a6f8776bd8471b5ad5a94ff8183a60b539af2ed47e906aef160267f52b6b4d65dcaf SHA512 f91360ba7e2683e60c5452c7f2ced7c4f274ae7679245b6e14077aa1478e5325d1743eb2d040248e2d40a90219632af6bcd31fa469f0755d9526446713956a99 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_fi.tar.gz 706605 BLAKE2B f390cded0c5a1b6544305349e983dbce7d209c83ec8d35df81ac60470ab9b1cc1805116a59b41b2a3755d54f1875ae81b0c3f9acf0b1282b06ffc6b5333b1549 SHA512 582a0f03b514c0394579fb07f707324451f780877601369ccb02ac6d74610521b40ef11e790f8a75937139b1c1e402fcf67b05c85ae880b626d24c540a5c6f1c -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_fr.tar.gz 3036001 BLAKE2B a6e9f65f67ce04c43d090c9c799ef5fe522040cc063c24830b9f1fa62b7000b971460e5c5953a287882cdbd78ddbddb1ec23586ed8639a443235b264857cd673 SHA512 a709881cbd9d3630166a2b1b65569b67fb6ca40cafa52e6c2898bd3f842ccca57c2289e86cf53feb9b3ecefa07d4f5be17f8e0976704ab498e349512dda386c4 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ga.tar.gz 743058 BLAKE2B 3b92d02ea35b75e5ce1eceb6c6a795b3a0d64c4a8d6447b24b3a8c3b4239a50bfc4ad3923dd38c95bc264c234f5cb7dd7e04b5d6be20bfcad514ea6527e1431b SHA512 9b22f748f9f074d5ff40cd416dae052a0a1969850610d5c1ff42f0bb41d53217652378d48d3ad49f7ee7df6309e0312f52eccbc2779a65a61cd667742a9114a7 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_gd.tar.gz 1780872 BLAKE2B ee093f4356bea56527e6a929dc46834a58680be947b9f74b2990270e62fdb3ac96f1b1779056258519caf87b29df1a8591071def7ba7a8ac45d8e92a7246fd4c SHA512 0eece77cc3f0394be3e5ce6669b6e4469a8eaefd761ec21bec3f285317f091d1f88595bf12ae4e263e5d3a4cb300ab04e575935d4a7353ebb73ee3b5c580a971 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_gl.tar.gz 2621614 BLAKE2B 92fd01f59deaf8c2d138988b4c98920fae9c212e238ad38c46bebf170b6c60265d45340435625e6ca03a2bdea6520154340a68abec03c48df2c6c3f2dc512a47 SHA512 7aab122f77c0edc23c08adb8a45b0b375802d3ee159a279abe90ce03835b112af3126b8ba376cfd52b4e322f31bb888f085bc860d52f8baef0b84a50e9ccc461 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_gu.tar.gz 1229444 BLAKE2B 250dd0ec956698bfed8a9767fbdfeee99e42a6ae745c666ab72473372b2b04caba69a68ef5bcc6320a3d929627b83bfd64642bda417a5b88d560bbca31733aee SHA512 d2bc698d1859e3d5571e522d91df9ea425e1197fd87a713c8b48b0bb7c88de578a441b3759a5d67292e100e88e6212d1c7ad371aebc9bfe80111b270c9d97a77 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_gug.tar.gz 509167 BLAKE2B b49883986527b844841d95e9fe86cada363ec09cae921b72b0318a8f45a8a76eb0b78d9744f7ce97915fe1a582f5e9a335dea861c913b8a94ec7d79e7aa59b26 SHA512 3675b3f3b4f95c38c581207bbc44de652b26665899bcac550c2d0a6978ee6a679f1806bde32942fcb270be2a72d17979736405b47da4056a6bba5d09c1d655fa -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_he.tar.gz 1622323 BLAKE2B 2b19a4867edbcf23009a30e9ad428ff9a8d22661da56ef0774c0aa643a37a3c6bd5d04e87b1d5265a31ef618e02a93802d8d53c3150794b37546966616c37f24 SHA512 0e42a32a93aedb92f792f38f81d9a3983f3ff83bd5baf8e1f36472d936c33d56879954339b95f8f4cbb2417c1891404795f1427711b871549f8b7c49bc254830 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_hi.tar.gz 570813 BLAKE2B 9037aba8a1baad1a5f236c68217a2617f8c6039dfcc7c5ed2aaf3da6aa3af94da6e171e1d3d74253edb42f92543a5c597c0375bc110d22fb44448feb276efc30 SHA512 a2e6a2c4bc6cce2f9d07a0c3ea8013bfed6c43b97d56b773233a09b37b8e336382b515a0cf0af04e86cde8623dedef65db64679d0523f0c4bfbefcfa1233a61c -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_hr.tar.gz 970820 BLAKE2B aed41b84647e0f07c4500346b41ee904189f755fc3ef129e584cb492916b357bd9751315ae0ad0881958d59d919675975d483c31d88dc935cc3c2acd87a2e6e7 SHA512 1981c6a6fe82d643fb98a9ff7a40316b582eac5b99458f63629f09e0bccb94cfd527d03ec220977e7afaf6665ce281c7f1636a0ef9bc86a704b28fbf6c78d469 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_hu.tar.gz 3018072 BLAKE2B cfc13f2eb0db6c1beed2b5145cdf03246b8c6425af9141e161214f88b813cc29d93e2d7a24ef3a55432ccf184e09852ae232aae9ef3fa9182b7a1e4aa3a78c4b SHA512 d9507a9dfdd04d97eb2f1a59d8603c23016775e15cc66d34de877488f51913093f007f2ed45b96cc72453e2888b951586d0b1171d1e7f00f50034d9ca43ed847 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_id.tar.gz 1587722 BLAKE2B d02a7fd216ca3e30b9a8a472be2911778f131096390aa45b7a437dc67aee1cff8917fa2b8bc4c7147c94cec6948c0f251fd568ed3da6becf498b72e0be25d922 SHA512 2b49e35f4c2368c367866ed3c1c36ec9b425194eb70163775262e267b549ec298da9f55a40d765fbb229857949b8d39e09a16288298e89a49543cc912836ffc4 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_is.tar.gz 1518964 BLAKE2B b4f6d771f25846373b4662467fe5ecdf53a353e4eb6215a9cd1581adbd4553a3e53d6c2cbc90610eda26e3658f790ef54e35fa5a3bb57d8c3616ecf16501cf3b SHA512 1afda128811bc2c7422b72c4000bcdebf53d095e9a9b4abc28d5edff56dc099c1e82e58708b20de34f374488325680c7e176d1976e247bd102f9c4a2afb340a8 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_it.tar.gz 2067752 BLAKE2B 5e497b46e093f9dd02f3cdcf4adbc36ab9f8d485a8d05d3e8d462661a1172cb9df6a20fcadb8c09ad7beeae9205c1b37462ec1d5704ec7c5ad6c84dcf7badf0f SHA512 18726c49ab69d7716849a90c25b37abf2a5c9b6f4c4c70591324b5dc25a811bcba674d42dd40cec29e5f9d6820f9c9d64038cb7843a3c1270297a6a6451afcdf -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ja.tar.gz 809930 BLAKE2B e321a859892166589f4fb02fc18ebc1a85421983f6db9d91b2961b8af27f689f7936e1da98b4fc2ba27f36154fe39df3c04a36e23eee1383ca94b1ab2ce6f6fc SHA512 c0ae864892c7fd263bac1f57db8d4c25b0a1bc622c6a043a13b64f1512344e1c6a2f88ea04a18f664edfed5d957376e58fdf06d06a2a425a23a44bb39337731c -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ka.tar.gz 361328 BLAKE2B 01e3dbe178b7f478c4b50fc7fa338e1691b6f0afa0b1855969a990566e24dc633eba049a080a2d8b56777525d444e1a5985c564f060687fe20801e48c74d3ba3 SHA512 d26c4cccb8a3cee828969e5c1b304aef9e8dfc5cbfd737413037d5ad2868657c3696184dd0df060ced3b65106046f381f2286b1abb409db80b18ab5d413257d3 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_kk.tar.gz 785780 BLAKE2B 1e3c90de6fbeb94183c128e173330d5cdbc429e327c3bd2233aa215d256d880e6a5b0047d3f8bceec2b096050e86afd76ce75c52c052c2eff357c7d43b53deee SHA512 7075736e43905d4e8b70d8a29968fb6242047f75c96c87e66933b3fa6836bc6f75774a5ca4fa561b04ab4891e2d6b4918614a86ce1082eecaf77dbb2ca161f6e -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_km.tar.gz 684222 BLAKE2B 86391b571a566c7aa092f6124e4a438fa18366e2bdd777d9261b0b672354f76a64441909170d824c58dc2d7932c5a93b21f47bd79ee3fd09f889b112d45eeba7 SHA512 3fec332598538d858c05070a4cb65b9b7dadc4b9135f32377c58e5a0642cf1937b5b332cf6675c2fc30e6d5dfa2abdae2377fa064c14ae9b47d5dd0f5db69d01 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_kmr-Latn.tar.gz 334443 BLAKE2B eafa805fcad561a5875eebf18f00759ce6595e078e8b9131b3531a345cce18354d08ecbce9090fbf659099d7c3fdcca3c73bfd8d11fe439100362928c1d1ad3d SHA512 e37677bf0084263a68f2f02763f8bbb36cc6993978ff776e200591da28e22eacb56bb3bc6c2af3c9df7c6c5f3a08dc218719f02f8f0d14c32f38146535650af8 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_kn.tar.gz 583667 BLAKE2B 4eb88cb4f249ffa12ea62691ac7b9e3149832d555dc46e4fbeb4fb54c83f5060f00e47603848a258b3c2b33571892aaef423ee35a3b1ee4cea63c13da8b515e5 SHA512 7bd7427fbc534c2bea4bec84883c26a21920e67033abdb33e59a525dae586434610ed4aed9bd861996e482be04e019b96b824a29f9e954a469c5682b95e6b39b -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ko.tar.gz 807399 BLAKE2B e983ccbbf84a4efec485a31938231d0a4a2dfbd1e16b7214a26b997e8a344a25f0b2390e7c9bf900aa8be443062f117b88e71d54e23744b8e583a73f2764e9d7 SHA512 12494719c73f456d2b1a0593bcc0924e400a6be1089414c8072b2c0f122ed3f0f9732c737bd2cd5167faf490184b399633e43497f41e87b6bf225bfe149acc41 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_kok.tar.gz 412511 BLAKE2B 4bd61746b704dea10cd9632cbe0f3bff1485af573ad644d4ea1de4d0fad980cf359b7f52c819d7c2af33a07dcfe39c97e6af1fe1a4fd926011bb332e1dfa0d1d SHA512 4bc43242a15172aa5cb9ef93e5d8d7c37e27896243de74e41729f6a62df2dbbd9e9bea0c388cee31baa7a2f485251ee7b4691a756bc54dbcac276f38936872b9 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ks.tar.gz 330007 BLAKE2B 8b40983c0c386f8f86ed7050bbda1b71733a25a121c1c01418e1a4438939621fd81916459674b93569e7d3a20ad302bca169c300917b4ade06bba54cfba0ce4e SHA512 f9e4e2ea0e82e43277b901cf03f89ea82874c93a54e4841674007a54fd50ee1ba54d6ac07ff0e74f5b4f03e3a1535fbc25e5dac702f7b4ef1bc7e1f4f19f461f -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_lb.tar.gz 142658 BLAKE2B 4489aaef80506c917503a1868d165cf258252870e5348e963a6151e979efc4977c9a6addb78c298cb2ef154c03d9235d0cafc0386faae5a49e71f9c7bc31a3a1 SHA512 40c0ff075f87f7059e32de9ffca328a446d6bc2e6497cbd22a0f7d41273b34910add71b65983b41a2da196c923f95bf4d07d67c450345cc27f53cea946ce210e -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_lo.tar.gz 432188 BLAKE2B 94832c68955890db393d109859ef946c3310ab500a8082748c3c1ce261a09f1678233987760fcd38a0805d972a1a9532ee9c02434bb421fd9a6d0bc43cff79cb SHA512 edd04123436de410f9e933a1f38fec770807ab86bb2e2b82bcf2d75d051ab5b62c0b14185df955ac7d5360aa59e44b1dc3c5b615decfb81d0ed2e2a0f32285c7 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_lt.tar.gz 1031607 BLAKE2B b94cfb135ae4495a04307af24c06ba6b978e86c30ebafaf5bb19083ec708c4356c2a311d351b0d7b05d6640f11540acf6f9b5fc7a3cf0d8dbfdfb52eac984909 SHA512 64d487f9d344bd9a4fdd4b34b349dd030865f6b3f1e8adc3a1c9ebf74d5bffef7ce9bb3ab5b0a23725346932f3f82f92ae2188a63f39d24e234cb0ce75b96194 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_lv.tar.gz 1494008 BLAKE2B 5f90f4b81a46c303b2c720438bfafc86b73d77ac997b09a91cf6714faf7219bed91de3307951583e2baed7b495a44d5ac84a138e2f2ccb1b24118477a2f3e794 SHA512 779b9157a62ad0b298ca32574bef32422cd79bd690839aafdf0801e68fe2127491e75108c4630be55d112bbce218a7a54806303e6a821a60510d12dde7efe8ec -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_mai.tar.gz 331844 BLAKE2B c7d85b45fe011fdfab6472d8de6c83ffceb4eb7041bff71368193c2f5b5d3a507647e7123038b0402fed205ed882ac80aec3ffc409ea7333308dd08f9928b1d9 SHA512 b6af04f9502da959d27aca8d1bb0b24c5cb49beed016476838cfbd3b26322291074ccf038a85a04b5e1511516ae444de47154705a94eb1ce92dd557f0ee3caf2 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_mk.tar.gz 383588 BLAKE2B da8837d38f7c9be1095d5a9964cd6fec59f4f3e3b19ac522768a12e3c2e1f0743472befe73e933e247496630bc9454b6f67f0162513539af2385b4f379622cf5 SHA512 4209e330a042040bf8866a7ef6be6e263ec56e790b14f24669075b15622dc1d34f717e1e207d4d9caccd4d1186aa65468e0bd248e37034a20e08a7229f0fa486 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ml.tar.gz 545145 BLAKE2B f81ebf267002afb633f44a0ba11e5bc97a695f7bddc2ecb0b4f5bcfd25b23c34710055d01b2143465d6f7cabf73d900ad0a3082667bf0775e02510fbdbfdb57b SHA512 4c6ac1b0b948e7045a4e112c17a82219b5e197c4d8407725b0f4f71fa3bc2c11b8d31d3204c834ff3829d78e25521373d8668ce7fd43ac98d9fc00aff8fcf558 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_mn.tar.gz 508305 BLAKE2B f65b4b0b2e05eca561257de524038b546922701eb2f0595c4fe8d380a2dde28942aff844744bc9f7471014a4858290614fa0da20825e75e4805889e624d3b42f SHA512 f9480dcdb5bf48385bc133539f8bb93326a7b46a45d7137d67dba008f623f81608ee80ec057746db80d408a36c85ce7691cdeea9572d776b3d23c7accd9de793 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_mni.tar.gz 403781 BLAKE2B cfd225cf39463a36a405832073bac96c32c9fcebd9f07abbd9022938aa7a103fe23c5b6209d4446dca0b0281c1ac90db1cfdddac8a1fd7f515040917ef9a11d0 SHA512 33db60aca7853d94dfccac8744edbc5ee076bde364ef77eccc9596a20998b1f7630619f4678ba6ab1b1f52bd9f998c770bba5c1532da78bad3fc078cf50ab77f -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_mr.tar.gz 578923 BLAKE2B 714e83d23ed78768851b85535c32c98920b73336c75d629ebaf90162015ba5020354f66b9d18fd49550ed0d769c36f4fb539a0d46980bbb522f09cbcaeee4a91 SHA512 c596f8d7c4c40108b0bc05894bfabc5f866dd7986a1b7880107ac28bbbac2cd3f7d035e3f93cf4b676b43940cc37dc13925f1794bff84e9b00271742413f40d1 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_my.tar.gz 465576 BLAKE2B 6c94cd630d4b98a6b2e7e77266b45453b871a54baf25a7fea46e0633baee324d4a8727dd485b533939be0c4dc19c19221503ba5cd27d01889465bf7feb299ec6 SHA512 bbcb96a9b134177e888db4f14f0c61073d5e7501ea4bd6500a79db462f8dbb5da548b7f3e5772207610ab101d9aab649dce73bddcd1e2c08e87949d5f6d824e4 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_nb.tar.gz 4064810 BLAKE2B c86c360c348ed4a23b2ef89721903093cd449dfd636191a028edc81444878540748cc5f95135ef3697d2cd24f90d2cfa7cb0acf6cdc5e0c0a14a505e97ce8aa5 SHA512 6834e37199ae7a7ac1d4e56487deba1c916be15c2d93cdb00db32fdfdb6fa200187d826a4aa5917474d75ccaf5f48ec6477e2e1ce8c6f14164f05272d69cc404 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ne.tar.gz 843616 BLAKE2B d0d3fd9ec6415525ab4fc7ad9dd6a84a4b0c911502fc14ec6b1361419ca8c8f68be69146ed8432c42b364bc05bb1a51f44b2ec677076225f70f379c1add2154f SHA512 ab983746970285f95274d02c36f43b6c1fa2c5d74c912ef320539944d3fad4097996f99b32e7e610c60ebf770bdb0cbd7c34c70a26e118dabf4d3b4e248313e9 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_nl.tar.gz 1523341 BLAKE2B e7c9e01e0b70f35c458a6625c28614d0d3b3ef6e08bc598d3f1a438b8aa6b48212fcbe56e04b15080b93e893b6073c8f0274695ef7720cb168ad8a52548a527f SHA512 9b5ded2794d82ef9d8c554c74f769625fb14adb1aa2eed4db37185cf0bbc4315d80dfae38a855195e655fb642878d3ba36ae789a03e7f4cb122014f3b214749e -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_nn.tar.gz 4063983 BLAKE2B 02af5f9a78bc05f2c8615f011fc836504e675f5f397d0e58adf7225b46eae550ecd365c2444e9c37c3046fa86cd3deb62277402eb3358d585972b7b933543011 SHA512 1f15bc35b1837972c9cfd8a408d9edbe00c363b20ea16b7d7d97bea663f7f1853ca7422771a643dbd1aeb76acdefd84d15086fd83ceda9d71f6f51e4fc1a8a67 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_nr.tar.gz 277575 BLAKE2B 8a5bf1c91674920be330c987c2fb3a01a62ee9e11aa07019f061d2494d48c04371a3ea623976a351777219011bbae02c9c19bd009dcd18349120ffed0a29d261 SHA512 83826538b7e4cc1063d4139dfc64832856a551baef210cff1d800d732a4d34c78f7681e33d84ec1b09223a6964586e5fdb96c33c447c4a860bc0577c58be8108 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_nso.tar.gz 322627 BLAKE2B dfd332da7da112576e10bb63a84cb753e2c1f0bbbea99597fb6fbde745c0c1662316bb9491587104134527e3b4d55cc022b076bff6b57a565a027b9df410cdc5 SHA512 b1160dbd91c0e8db0326f3211e524d2cbe97d39051450ccd35e13f81fa118092dd939b998a830c1745eb8d50819debf810eaf865192046d182df8c5503d319b4 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_oc.tar.gz 881471 BLAKE2B f28026bedd9cb368ce86422e5e2fde7457e8243d759b9660e0fa4c53df3a8773e6c9f695cc6a0dd8d08ed247fd731b8c555f1e549e333531aa6aec93e49fdb10 SHA512 f4a067cdea4d8d26e4fdbfe4f3e1be4f782e8307a889fbd3491141179ad1f1e620d68c4f6d126c8cddebe7ec91cbc580c10de2dd6d5ace091cb965b73bce649f -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_om.tar.gz 371028 BLAKE2B 6fe21000eb9b0502c3dafa1c2b9acfe50056e1dcbc1ffdc807d8b9088fe7ed81c31089526d7ee34c0a9bcc15c860b9df09c85a985def410345ea24fbb76bb87c SHA512 a35ec1e00c4b9998216fac3641e8d8ee8be3ad82b5720812ea1c7a28663ec9bc907282246b4402740fc1dcfed57c44d5d24d873e70d42eec6809b22b7dc31210 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_or.tar.gz 602003 BLAKE2B 5def92e29de567827e78c85d1e0a9a34b5429884bde9960fcbe7c44644a370fc75c3af6d948baab9525af97eaa75b5b9d392cad3f868f9888784000d3d440af6 SHA512 fdbfc8bc30e567e416dd45a7e49574023658eadd59351e3fbbf3104640b5b400cf6d64fdfa50e49c731e6136ecacdc8e47ab61246839fb179a5f264dd063238b -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_pa-IN.tar.gz 471533 BLAKE2B 56a8d228ba5b54be1a7c9fa3808cc253ff8b63674323a415d63a35976d4e7b62d7d6f02de61301c975df25913833de4eec76dbcbbf92f7ffdcfd7774f06337fa SHA512 4e8465cd7069646a3941096f12da631f1106f4929e76a84f54cac28e3a1313786bca72332fa3c4337428e926fcbf80b9ec676d16b66a0480c1867f21f09e72e0 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_pl.tar.gz 3095214 BLAKE2B 684277fef133e1687b52137cd6b87ea8433065897b2e94570373e301e98b743c9cb535697e59c14bf289bfa1f96e2db875cce46a1fd4b5a5e8b3e3c3fc74ed2b SHA512 44b222c3ae8e6b6af9f523671ba717985ed9cf2a559688df03c9b783b9f69c50a277d9f4588a1d47c7ace0300c5d6402a18362edc1bc7745ec9d175153ff03dc -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_pt-BR.tar.gz 2814888 BLAKE2B b4d9894465c7c9ade11c99f83726d6c36209174d04b4c2a87af2e6deb999b660d4046bca12e4ecafd4d6cbc31d37c850e9773d03def2b42d0e30b8b72fd4ead7 SHA512 549e1239fc3f69ebf5448a22cc824a841ada821c8758800e2e913a669a8f85a24b3e4a379ca9d0afdc828d7f9dc2774bce98fbca10160bd564c6a4134158f2f5 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_pt.tar.gz 2372304 BLAKE2B 6453a8c3397e8f96f0836327704f118093b1fffeff935d4fce730de46c8ac5c2cd6213bd2a45eac7cdd3d420829f00359d24642628ac8e76ba3316b6d5cdab66 SHA512 16d94cee32fbe4957c97eee47a67d3f31cc4070d9ba14b91f9be0f6c18f36f660c055d9cc7c9f4282bf6f177df7d4b08cc2659d74e72f3e5ac40e64ba55f8db5 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ro.tar.gz 2532070 BLAKE2B 64610d69fea8fdadf866db9e9ec1d1bcb029dd3e0587913af214d5fb6afaa2994857f88eb179ebd41b40c65b6d5711978253a8feaef1c115372ab3fe6bbcc6e3 SHA512 d293b180a9396dc17e9475bed6f1e56eed368883c6b7f43081c42ba2e4e2e9c9292938561b089fc673c9785895b3df4019d6b0556409f6d14053c0b52d1e9eb0 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ru.tar.gz 1902339 BLAKE2B 6a226ed9eb219f402ce8378e38cd95c285ff9de562f6518045c74785c2b2bbd66e1bdafe946ff37084c160084927dd4df1cb5725649ac9a4b0db9fd7ace3a4f3 SHA512 9759a7fa74faca0453a6f713212b75e9f3f4119f054354c5c8994b3c2b1514e3e4acb0be4ac43a43c65d503efca803e6205d4ea8723c9bcdba313fb3813ef5e2 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_rw.tar.gz 345595 BLAKE2B f21e2f5ca54510680d4499cab086f45dfc9bde94340172fc0cd8aa2e5fbc1ed8693d4fb613cd3cf9363343c122cc2e5addfcef150fad81be0fc870fc3c26dd2f SHA512 8394d277ca5fa945e441410a442c0d2aa0a2e1e3cb7d2c9ea0ebc98e8fb21b6a5d12d7e02247aa22db64ba4c1d7f9269396799bcb5eeb56ff5c171b513beb602 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sa-IN.tar.gz 451182 BLAKE2B f79e0394515119c52a9e6e8f7cd940e517a4990501fc844128c48007f7476d05584f358312c9e789ebe244f79e6039cc65abca7a5d394804dac8fe1bf9df7ee6 SHA512 be9356b074e3ea8cce2e0a397d6e147bbc81af2e16c7334c02ceaf53bf8ac1af9a6f95cbf609974be8d11c2b8f51b61141e275c7e377fd45e3789083721b7e37 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sat.tar.gz 522742 BLAKE2B f790439284c6f937baba247d02ec7bcfc7718319d2b28c165e828f016f9dfffe7198c193a9bd9c0fe21fd8c4879a912ccd6f9a5901957d69579565c022435e75 SHA512 dffa13a198d8552ac592f7f04229b885363ed8d8044d25c8a0c8114ac057c8ace84c925708734b5949386f4e96188c51c6dccfa1d4fcc97c5ce96f1ea25ed807 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sd.tar.gz 438454 BLAKE2B fc5272370486082fb1f37ec3ec0e6da8887131d6ae6d440dbe8ef1bce72539a9f7bca88a0afd90d24b18fc82e0b62168f576a5cd37c5d741666ca3d80d59d0c6 SHA512 d3c02327d55fa1135579ef7f7f24b3028afe6d4b11f21ddd865d6ab0cf0ff95291aabae026a4ffc2de42232296f927119b9fdc3833434db4df5bc3bdfe30e92e -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_si.tar.gz 738469 BLAKE2B 3d1314738a3367db38c0ff5219ebda193421a08cf5ec84db01ad1e478f65b3847c806bb5e999d611b547a2994f83283f89a4b845097d2f605becf0ce58e4201e SHA512 d78414f7d9543c2cec39822da6975af3bb7d9ec68f264f411b3fa24022b8652ada90dbb555d9940ec15e65efeda6e9b1ab11d2190eebad21162e7653605b1748 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sid.tar.gz 451655 BLAKE2B 69622ba5f7b68af0155eeedadae37aaae1fbd2a6e4762170fffbc50c79d070c22e30e42534d71682855e49c69af8f071635bd7aca434effda0e77a5934cf0c22 SHA512 f43e502798c9642ec3ac75cb79ad44366d28cd38022b35efd94ec0519804c2b65b7cc36490459ccb2aa5551ffc89e960a07d8f378051f5dff1cdb29f8f589aeb -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sk.tar.gz 2028403 BLAKE2B c49a220fe82b70a1e7aa156b450c4dba1cc91245af7816c62db3dca89077f66101f1e31ffcc44f19707b7557edeaaaf7183a5efb20b8d66734f185bd8da766e0 SHA512 64be0100b8ffa3038268741d25677e0c09ff41960daf02c567fbd49d82b354267fa9b13c3747188941db6d32109aa350f954e25cf9200137389f892858fb31a8 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sl.tar.gz 2432627 BLAKE2B 6447e7ef0a9fa6343a0f93b87825fc465ca06cc501e15084adedc2929876dcc5da2d786844d235d5670920924e720cb83fc3fe62aa306545c01710f391b0fc99 SHA512 0a586001f9f631d89698213746fc4af94bc0ec43a88500f40640af1bba7f11b5e538aad35212e05e3af195f1e55f60b2b7c55e4feb357d1787dceeab3a80fe98 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sq.tar.gz 1171106 BLAKE2B 0cf26e718d2e69c6eeab928c0f9d8f55746836911ece7c1d61ab05a1d2bfd493dc42c08bec719cc407df548283ad5b2396fdd7c0d4ecaf131f0bf0b76aa24f52 SHA512 9c7f4d0bd872ad578f941f21d09267ffe5a4e2d957238b8770c7789996ea3c6a0fa52788999ce2dc76d2b372b63c7cc1bed4a305cb24700c47e2a2b5295af3af -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sr-Latn.tar.gz 1461604 BLAKE2B 70aff554b30985d79f43e780872dc8e8d1fa5e47ed2d3f5bf05468aebc65939b62e43fd7a8414dc23639c9ede7dc91dcea1942d8e62981fef99efbd924638e16 SHA512 f19c08545006f7c398bf21f1476631965a85b29290f3344e088e79513ec6467508024669744a739ea4218fa3f319c28d431c61afed0a4da0c490cb1d9fae6df0 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sr.tar.gz 1480478 BLAKE2B 252b158411a4ff5e012d4847a8323461ec866645d42c2f8e75af2a8216559c8cd1f9efcdcdc44393977fd4a55308958145c2005a1b1c89ec39e77a4fc8eaa8ac SHA512 8d656ecb595377179fb74904ff10fcc68dc6230aeefbd016ed6ff36f564f1bb3e4669f7fcdf052fb640b2c822956b6cabec446c7a1f3552d14929415068e796a -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ss.tar.gz 286947 BLAKE2B 198b15c4aded33cd43776090661d6235a2b53ab22d611831ed65dc0ece11d21ac3c37b9160ee97cd02573c7da66b034cfc8f84228a537170db50e25dc3e82e5c SHA512 c23ba832ada87d02c3b9b7f0ff978ed351b9fa71158e6f32942365702c32c44bd4ef1d278026eadccb1c94ad48f28e4076ec1cc8e20acadcfaded7586cca73d3 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_st.tar.gz 280004 BLAKE2B fe5bca7faa7fa393010be653e0f3a57575e2bc23c4851c848fc66a44e035c6c36b996e58bbc25596d09ddd1e1b26065e115016ee1decbb255df7e35859acef88 SHA512 4aef6e421e41ceb19c5ff1521c6fef8169ac4b05666b358200fcf5b7e0d57feffbd3bfc7594044b59ef5c411e316fbd13288333923c453bfe02a634c53244640 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sv.tar.gz 2608515 BLAKE2B 5b4b21c7d945699633d5ee54c6c3652b17b7602c5d019faccfd2e60338772c180487a1df8b29a3a43f779252a55f252abc3e80691b8922e60fd83aba48ef1ea9 SHA512 f0d2cfa006ac9280c65eae76225f7dbcf883927ee4cbe162f827d3b3fdd6d315e7a228160de14c05c4fb6aec76807bcf0487ed14487e9f2632bc83171bccda48 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sw-TZ.tar.gz 319280 BLAKE2B bff344efa10a1f773b752d25c9870ed3e56faca4abff67e00edfabd7dff32a08af3ad9abdc00c95ed811eacebdeed9f121459236e9b4803695e5903c289f328d SHA512 c526395a7d80c08d50ea60ffb100162e392e6d98ad7d22629462866539d29c20fdc2d902c35ea9c18e8ca9633138e870a901e8cd590de96a02640e33e573a71b -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ta.tar.gz 685798 BLAKE2B 10083b319beb733471a0b15befa6f59f8c46d91728925f410ada6050bb536ac53573c1dc00ab01fb81c5ac8c25480c03e6d7fb73c844ba70bc418088c0ee7ee5 SHA512 c4ed52942482145d566e945aacb61a14380a69f901f01b71dd3e88031535c2f98198ae1b8896dd08bd4cc01eefb4fb9b80dfe87b485561bb76bce43ad8c1b0c4 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_te.tar.gz 1089449 BLAKE2B 971530283d80eca6f0cf0a0c2f24eaad956a2be1faf656ae37b14431665d749a078b11db9068288e751046b1584771fada1e5bb83468e23368bb3fc3530b0fad SHA512 7e85a3971b5c7d837bf0af07ab23510e4f1abf41f3902327a95e66cfac385692ea915936d37d631786975f679ec3fb2d8c2166dc5050f7ddb0a777ba42b25ce4 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_tg.tar.gz 358277 BLAKE2B 11a61b2cc9010eb5f17ef74417c5c0d19e8255950abc086362b4c536f06fcdd0e6c5a6f695133e00b9f8bce2953f0cdfe6a244cc057bd70e0acfc1d4a74608e8 SHA512 3ec7e693d72fb1d8947a186deeaeccaa0e9c53a3bdcb1653853ca2104ece7d908deebc0f71f35d8fcc20c85cad09c771d181ffa97120df3ec4532f8d3989e83c -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_th.tar.gz 622551 BLAKE2B 73362a9c082651b3149638a9cc42aa73cb61c437f44b50bfd09618a6813b5cc5e02f1943bfe972a706df553bfdb937472524be98b5801b96414c3adf6a2aa675 SHA512 5077959cbd93c267e61dd90e3ba62e166f4baf2f868b10ef12f0847a2eb4c5d335253cf76b0c52cf9c5fc92a247d3782e1f458b386b7a537eec0f27f179b496c -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_tn.tar.gz 258984 BLAKE2B e28cfe73425c1d15f6416381d04f3ddc47a03b20ca38762298c70eb5c5167cb414bf86fbbfa75160a79382d775ff3b05585f0586aafe9d759886572b2c06eac3 SHA512 40071d8a0c069b0e9f674547fee60fb199ce2c024638d4010f15e1e8ea2b7b52084dbcf57cb013dbe4b2e17a8b731fdc6d8a426fba5a5c5aca2a5e53c81bc7ac -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_tr.tar.gz 774188 BLAKE2B 56ecdeb9b0bb686c26729fd75cf2b4099d99df2cffdd39ef2c51244a13704fd72743fb40d3c8b04f3659d6e0550f4d35018de2de74c2868ab9b5012b010102c6 SHA512 f136a02fbe0248eed1a147165fdfcef6b336ac1cbd86c485dff8685469881aa26d5574cb65d67a662c84e63fc6d61628c1b46457989a14745b41e21860fc9f3b -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ts.tar.gz 277109 BLAKE2B 023741b5b6d119c1c121d44bfb0d70b3f15334a9ebf7c7c9d54ac44df8278fd2a111a12db2d7daaafece3d9e5184fac6140425b7568268439b3b82c076f20e79 SHA512 0f922266b7c926c2e92f44550e99d78c46b0b4cf02667157f85455dd3a27efb59538cc1d449e77a3d711eb992c7951822d267855ac990ecf6d0398519a70daf6 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_tt.tar.gz 182753 BLAKE2B a1b89e4ac71b6afc219b4c8a8fe699c61daf0770fff77fd84ce85874fe7d4a240000999bbdd14e7f6de28b56bd9c47992e63d9e4eb997bb491cb0f8ea6cbda58 SHA512 5284b0327f7eaa2b263f793f0e3f88a13038b59d28819be17d9206d5bfc5164f366fd985545840d4b8ae7ded0bbb9ffef439fdfa1a8bdd5ec2fc61ce9bde1d0d -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ug.tar.gz 549887 BLAKE2B d1142cead3baf694ee3787aa3f6b2f07b4fcec2082303975af5a235655e0e3f7bb7cf7f1733fe9c764faeee0840dad283584a1655a08ead280a38996c65dec33 SHA512 3b69715594007cca285c664e2eb725e9491536753b28b8d8d7db9bd2040d37b780de4acfa75d3f321a74adff0e2532585afb0e59455c37cd14783546634cb8b2 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_uk.tar.gz 1621486 BLAKE2B 620ef4e97d8d7a7119fc924d011b9f7071882f35d044635c336babd82738b5f2b03658190c9b1030d627a221c7ffc408f530d54fa949cc0193adfe0d7b6a704e SHA512 15258012efb963e8238056c489fe3b7fd87db69810d3521cfd6b497c8d90c8ae9f992b81f1131b15bbc3ad000d1208ee4fd0d4715098d785971b92f53bbee615 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_uz.tar.gz 315091 BLAKE2B 4f7ba80bee8832dd7d34701a21b5ce71cb9d293752177fda51b17841300df2f3abb845fcac847dda2bee0aabb1867f6d838ece8a3267945e33cb8431474001ea SHA512 ab4ddb221b80da551f13b3ad020d597eeb55af6d292f9bb2efd1497460a83f8f4a663ae4f20388a5b7799f5583d61994b3bbe86d2a17c8815b4665075b4b4e59 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ve.tar.gz 282243 BLAKE2B 526320cb2684ecd3a5fbdbb0646bc42edb84f9e51200c00b2b5911a1a460feb54092dce01aaff83bcc6c2554911ea1faa429c78e74fbc5617a3735cece210041 SHA512 2f210687be5f4952527ea797cb0bfd574ff8c27ed65b71cf4056d5ca38ba1fa619d8260840f281389d707ba0e837cb271569da945b2d3bfe0caf86853994134d -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_vi.tar.gz 465366 BLAKE2B 69953d3444f53daab152d212db44e17d8b241c50083089232752f8914a159cac55a1608bdad45d6740222a091590fff4aaefc4ac5b2f6b1edbf7d820a0131ce9 SHA512 96238e6d705ad0167497518ff23d9266277315af3d4876f45a70d88da4313e6d5b3cef8a685785ab47275b94f400d968c9ff69a4c0388589411db3c32fe9577a -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_xh.tar.gz 290825 BLAKE2B 42cba327a66ec51b0c435985fef49eea3009a1ef97ab6368caa361f531815d90c102ae667a781895e9a3ebe6a86eb3a23265fcf47cf28bffd81435917c9c47a4 SHA512 fb55baa42c7ff6275e48410f55ee2b75361889cf59a4732cac485ef5e402055fce3e44e4eb6c24ced09cb2b2a782769cafbc0302eb26606cf0b4f72817630722 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_zh-CN.tar.gz 808377 BLAKE2B ebbc1b54a0f72b60478aaa19e1bf8e467c4f103439da3c9264e28fdd1e1ab397bb2e0209735a2cf4b1624e3df67ec79373ddff4dcc654ddb36af15901f4fefdd SHA512 ceabd0a45405732627892dfbd231f0eeb94f5be1550c81515a5098787c1bae1fb8defd8efa483a11e0e95ea883704e279235a6e6b29a4d841323039432ee7546 -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_zh-TW.tar.gz 807627 BLAKE2B 419e8562ae1e966fff4382460bd33efdc0afb327d480ab0e068b39c114357eeb2386117fbbf951f15b4e77d44422d50d6f900dc5bca3689154bbd7c66bd856c3 SHA512 e276fc57ec4643152361067ce5c3d9574f98563b858ff913b9c0859f5188c2906effdbf7ee382a73d4019ac84a49aec0876af75999c3e70ac06bf5ac593cffce -DIST LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_zu.tar.gz 320550 BLAKE2B 5690d9c458a6feb7ae2fac6120852c3143a961746300c1c57945a035da1f7938ec4375f5022fa552a56191783d58c5194c9826cdeb0b3c80576b530385362cef SHA512 570dc0fe5c0f520d83d76128ba0db65b282bd527c01990ca57f3391ed3b9098789d36d5f1388af8681885182ec0fb4d778c446295254120ac3d0465758aa1e8e -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_am.tar.gz 2494021 BLAKE2B bba337bbebb8d76415cd1206609193f23fae2bc386de9aec4fa7a5b6b1cf74721d80201912fb467e2fa0a79a5524b0bf7b086106976b479a603ed1df1246442d SHA512 a682d9af09d0341753abf21706f8fad2b84ba5b9ea1271d984cd7c8c0119af73af8e965897e82e4051bf1632a65e980d022209d94eba726ecf7980823a578e14 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ast.tar.gz 2388798 BLAKE2B 2e27d7ba9329178bf49851b0a4cd471847b1bc3f0ce58085c08ed395318083b761a559d0dcfa6a75acfbb18cbe8ca7304a1df91243dbf567c3366fb8124d6955 SHA512 fe57b7ecad457bb2737b8cfbb88d79bde9269ea85750b4888c525b0e27bcaa1a0be117c3b2d6fd1058d2ddfd2e9e108755f9fdfc0d1620454e750f59650c3d09 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_bg.tar.gz 2567438 BLAKE2B 59da10111239b175642fe96bda2281618a919a44ac95c011f3faac17c0f35f8f4927890533747220511b02798364e6dd1a5a3dd9c14f0c8117e4fd417ff25e4a SHA512 cd95464e868f35ae482f29b754bd38c5b88b9e63964505fd99d2b111588d346f04bfbe9e199475b311cc63047a758c3cb22faf5e8f418826e61ddd6ea70eaef3 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_bn-IN.tar.gz 2578764 BLAKE2B d22e5b497982b845095a4b98216c1a550f93373ae99789186daadb0671a77bc160c08f3eb54b97140b3fa6e614eb4c393df9ce0a72656d7ff7657eedba86cedf SHA512 fb9b81442999ff0dfcbd1c154153391b40a042073aca957a0348f8cca2aeb9e9349b4494a685ddfff6d1af57449e23dc36f9538e846ea45ee3cb5a9ffcf0aa0e -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_bn.tar.gz 2561050 BLAKE2B 900a70bccb935ccb2dce1202f30c46c6b636a1292fca162bbfa04e4a65df220573f90887a078d0c549a68cda12f586d2b46bbbdb8889381b74b62633372cab96 SHA512 bdf1f80a814fead977b9b9ba01055adac74a5f2cbe7fff39b07f4c52ce5908c570db14378ee059cda0c87a5cf98b8cafcfb377a3f8a6a625e68468f426582fe5 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_bo.tar.gz 2576532 BLAKE2B 5f640e5104b745a1a15d0d29dc215d68a6bf0c5797a129fb853acae0682aaa34fcf5604dec613e05ee6a690582817327b3fb708f973aa7c12a9eac08fe5bc02e SHA512 1e335e56c9676ccd34cbb1577bdfc0c7d3c1ad8170a00fcb99c65c68aef9d51cac9fd71f8ed05f7bc3689c4f38d53575c46cd9c6b9dade47410d4628a16c7333 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_bs.tar.gz 2303002 BLAKE2B d6ab0c3f3f8b35fff064dce8218c4f19755bf83bd21a98a2589906dc4b634772d54fc4113a26b2e2c8cf0bfed1646fe21010d9b004a480937306d3bde3364029 SHA512 2e051785901675996f2973eadd6c42a50e085327258d8c262d4f5dd3c5e231c164dde1b7454ed34d707c383b96ce3373220b8ab04febd7fada779f58df273516 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ca-valencia.tar.gz 2380074 BLAKE2B c0f854b080aa637471ba49591594e2692cf51b5b1d932034814f99597c3fc5e94b50449c787176167f9f92035befd7c0cc40fc15b610d566d713f7df6a50f5ee SHA512 d56a7543687b6e685040342f084ca234b91ca6718b2f5393158412a7ad98297a138af1949a531819d7c3c2461c89ffdc7c026bea2ca3580bc49ab90d64488a80 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ca.tar.gz 2366628 BLAKE2B ff6170a9ca2517e2bb81b902f1444a463b4e00fc7d7c075fab14b596221f7547234725696f830cd1a18d84cd774eb52396de054ddf2f609f5c05d093c208442d SHA512 e41c7aa6fe6a7d48c797913e6943a823d18df8f16570e109853afa7a7944304661049c96b649367fdc29a8881bb300d5ab6e807980e9055da33f1bc020d59e4c -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_cs.tar.gz 2362166 BLAKE2B fc64da6dd2973ad5cab05ea8ae4e0ca213e5fd595d1bbbaf2bbb80e4bd41a5930d68073102ac4ed1c1fb424c08cb278dd5b4ab5e3d0d248d347609812211bfc6 SHA512 b643964daf649faaf9a10e227d8e2d0dfe7ef6b8214ea27705be1979e62d30e61cf1733fb96f8cb38f93a7de002200c13fec7494c9ff14154ee008e667f977d1 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_da.tar.gz 2328536 BLAKE2B c9ea43e40d52d4bde80a45ec7862ff5f7ac6549fb18b997f00913b68b3a5b35a7cef4ab963e00816d534a15cdc9c0d9763ba1fe1b42ee3a520294f2415f18f73 SHA512 f6db37c4d9a9cc8eb1648502ac3aa8a479a6f11f3b709197bdcebe33e299c20b2bf487b926695d9e7bb43f8677b648dbaf6f88884243be30176be81dbb1f6cdb -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_de.tar.gz 2422627 BLAKE2B af4695cbc831bb8fb6b23c76bb319d39f3c5b1fdbd5f83b1b5285ff34e0ae1447cba480ba7258dd4e3094ecb3aa33edcc6a9a4d273387120c9237207de67a7ed SHA512 d70c53d8c8b2e7518728aedc46b172bc6ab83e6d9697e1f2c29f94087f192e736a90803ae9b99e22f2deb59caa9ba2fa74f0d6bec370b502771d6cd8e503ebf2 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_dz.tar.gz 2732699 BLAKE2B a351ad268929f22deeb323149a135a87c9736374263722cf29ee922b82a3b3a7ed57871563bdb4d7099bd458e28ae5109f13057cfab727c3c515525ecb4264c4 SHA512 f98ec4fea0de63b70c8e6ae20a11092a7d9fa9fbd0235d7a891fe6ea545587724c5ca0aefd2c7d9cdcaed0acf6575b6e460ef13ccebfbb97b64f3685ed656bd1 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_el.tar.gz 2771028 BLAKE2B a55505462d66010bc86c489ced2b65bc48faabbf58e4e52e2435dc301e386301048761d19d7736cb01480ea9ca497fd842901501413d00be4506938cf9751698 SHA512 8836716ea587085e767b51fb409a7125071c4d97deb00b0201568188110455301ee9fcf7a69a2f53b93a3b3bd349ad5e58b93f81f6c724f5f09a4d7ca769a58f -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_en-GB.tar.gz 2210476 BLAKE2B 6855edcf5160cabf73b8646240883961bac703bb57cbbda1e5583f5a0aa1dee88944838c73cb8a0ac3bb9b6e299e12adaa9645718e3128ae1725a81861a32878 SHA512 6c1f88d5ccc3d0eabffcf1ba61c794d2d6e9a2e81c257300c9f61663a3dc96d2f96253c6f51e1a88b55ab4301094406856e81d5148e420a0ac851aff429d5412 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_en-US.tar.gz 2056222 BLAKE2B 2802867a1ca1151964aa7b7b155e3b28dd54dc5753fad96d82213c2f7d057c62691810b5c593e9ac3190bb3445354c6c98946795fc33ad28943a494af78819d0 SHA512 fb815bbae31d702364a5cef127864616a6f4893edd0df8dd1b29f8e54ec26126f0a214e2921dbcb49870b4c258fe41fc0b62fc616e1bf8551c6421633adf6d6e -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_en-ZA.tar.gz 2208076 BLAKE2B 8f4ad79b508f3b0c8e9db103060d979cef88525c15192863e1d4ce9a83d2fd42ab8b1f5d0f4c7f3a20da1b68d77a73cc6f192798a1bf7bef7f58a49d9b8f358c SHA512 8bac937022c3f2111d63c23220717f022bda9ec707de4b6a6965a921c9cf65962d4c9c2f81772bd29a1a75c531b3394b8647983711f651e45ce1683bb7efb183 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_eo.tar.gz 2289286 BLAKE2B 5e4e972f0e73de0030e9079ae254eff9b1189ced5d93f918d37f8c91bd12ebcae7b82437534ed1f76906c3fba72bed16a73fdccc3856335d41b725d5e3348a63 SHA512 8873067100fdaadb32d9282ac244c6d963bde5bd924664dd03650ea3b601decbc85dc3bb3c9993c5948c26c4d0729d551b060d1563485d7a4a2e38361c30fd63 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_es.tar.gz 2407015 BLAKE2B 8ca9afed678c7c47d6c5de9df5b37edb05299e208672bd1be18333548f4e035eaeace5e97b7ac914d76530dc8a56e426dabb10a5d44952ef00994c2582aaeee3 SHA512 2d522b674143f08f34a4c62e4b044ba28dcc4bdbfd3c9cb76d2f2c7fece8ac4fcfc9a72cc3dcba11a82e9105edf7eff4aa449fb9c2fc6ce17c3433bc3a094a90 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_et.tar.gz 2330452 BLAKE2B ab74d2623889c619b7b16e89f76f63a89c4a7a09c4673686a6b4dce29d19e444427a26d1b26b26fd2513ee52d9e917963c752f07133ec782d34594f3e434c9c7 SHA512 6e49e49078ccde24437d0fceb8a0e75403678369daae4b2d75843d2f6996b0d293df5f1979b6ee099c506824c535616bbe0f0265349867b8616c4ab573b8b85b -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_eu.tar.gz 2283358 BLAKE2B 2ef843961f015bfd15edc437e243b9844580942f7e7b001d517fc67c97c4f41fd2a1f1f07eb706e045319bc9eed661eb6557d493b4323ec0a9ee2239b21bde3e SHA512 01b4965d87b19e1300331ba29efc3b5263a934a12c323dd9c89ad3d1e08fefca13ca35d96352b6bbd1c053a039462dc12eef479dd3fe92b35c24ac4efacd3250 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_fi.tar.gz 2377909 BLAKE2B 630af674a20795cdb17287cce26b123104b12179cab35d68442c132739dc150c7ae2c8d74764b2cf95148dd8a1bc6fbfe15270a4f6e6179d3e87ab89e124f36f SHA512 b855f5b0e8a4b77fad9ccf589b5c85f486bffc6e7e22808af20446dc86ed598b1dbb8341484391bb5ca325120f31f5ca00ecf1a49cf86df7e5198d913197ad91 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_fr.tar.gz 2389556 BLAKE2B e5b1b72dae476212380fb455e808ece638da548b40c7c3dc66a684e25a2a56bcdb2d8fbdcddf7143903254226d0eabcc902abac27c38b6d08e3eb4f00ad5e56e SHA512 cd4f14879994675e45e5ac0aec1edd8f6c84e08f29fc830738c46b405a7060d1a72d2d88c829400c894ec75557812bd6180591402ffffa81ba02eee066c6bcaf -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_gl.tar.gz 2368441 BLAKE2B 400f63ec5dbdf288c2d07af3eb493f0980b460f9fb9f6c9c1d606713c1cde5206f5bad511dfb508e18edc913dc45b85d0c15ac7a13554b65dec3781868481b75 SHA512 fbd2baedb7a85cce74d5ec04e19ec4e66c69adf7f1797aa268efdf4b1918b5cd37ca9e75f2d2a14035d443856bbd87a963722ad09b20ced615502b72202bf91b -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_gu.tar.gz 2254745 BLAKE2B c8a57abc51cc37a96a50f63fb83f860041a67d0f5946a99dba1c867d0aa4cfe2dd40621631d2010836076d5006e1e5bec3f480d06c4d41ebf8fc54af6ceba35f SHA512 4d51f53b51865a343c54fd15abd42e868e0aded9d17871dfaa82e56d522bf31c40ae7fed5c7a9a003cae04eb8f794f94c5d35a3e663de4684ae2ece38a363d4b -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_he.tar.gz 2147951 BLAKE2B 3c3068aee2db3a2eacdc3944a70207b09782f7213718efc4c9d4ccde43c305c54bf81b1feee107b3473c060e85aa4a9092bc187a9e1e7baaeba12457dfdbb53f SHA512 8994d9d2fa083d494a5351a905f4f5e40ff795ee3a645bfe4d044bce7cc69a0eb7282d0d350281fc3eaa7263b2e29479b4486661d3652fc7d91a6483e4816fce -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_hi.tar.gz 2358987 BLAKE2B 39e634d5067e1e0b96161e3285016ab2afcb2f5dd4d405978874c6f14bb61a7d2ac1c5b003fc7d53ef065617c40bbb73445376ec37572eb0a246ff18b2195b7c SHA512 152207c178b82278fc1cb4c1c66feaa733d92c2bb8e0a5b14b73b51ca5ae8e3ac0ea09f83f26bb4e8baaf1a1d5591b317ce05023aa013a57dfb205a71255fdc2 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_hr.tar.gz 2263128 BLAKE2B da8810b0e192bf0901ec33325b1861924d9c65f3dbcbe8e7a6b184b72233587c3f8f23d9b3f46d1ea78ace10000bdb24385ce651ba69d1a08e3c669f15b17e22 SHA512 90e4c1ffbdd06c7db09771cc0c2fde77906e8681da6d1c37e851fcf6a648db75f1ce56ecbe4ac3688e262a0682ec8837f361b58d9f875ce5d84a2517c9777b3e -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_hu.tar.gz 2488771 BLAKE2B d26777e084f5254d2b3236958cc14a587e2efa64481a34483033d9047b3fc182a6835601763072c0e466d851da25e880c9ba1d0006511990a9ff71fcfa1a7cbf SHA512 836ca86a72f08a28ac1b16663bc1cfffd91a60bc91ccaa70e945723be8d18ee4c6c5cabfff0c5312a18e9ab173b4e3c686b13569e08887f893b4caeaf699facb -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_id.tar.gz 2263153 BLAKE2B 71c4c8fae26c1cc7ac55ae0b93ca9bc45dc752ec9959e3dec50198761777f98b1ed4fa356f095c804195be581a9cf98529add7a473f48e34d6237e62be65c928 SHA512 29b94203ae1f815c825967f7d43a229e863f1be160e3f3d311e97812749b003ef1c957311135a9c4b7243c06559959f8843293a3833ea4f742501157262fe4f7 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_is.tar.gz 2285462 BLAKE2B 521fff0921367c07f4de85004eee38d018848b94b3ad1ccf11c6c82916a79b324ea92d3e8b86f4784dbf4aa383c6fb44225d9948ef4cf74a45f7fb1fa770cb43 SHA512 580cd7610f301fbec6a062e495122b1bbf2154945e0eeb5cdb8cc68f41d862f904c2d86849bc0e4d71499ccceea874f3900e0911b29158ad448649c0b5b20edb -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_it.tar.gz 2358646 BLAKE2B de1eb07a366ffe9df922b9286a96de306b6da1b8bcf3f4da2ca472e82073083fc0a9cfbda24f82c89916cb4df1b4677765da8f29be22eb0c46b4fe4f98803975 SHA512 d107f12b131dad655103d3e3cb5f9f8c4ddd9e48ea2aeebb03a9eee8baf1a7fc00291b4921bc70d3a3d9984732dbfefd625051b71b39bf0a2103862dc93345c9 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ja.tar.gz 2526479 BLAKE2B e3f0a60b836cbd9b4f2a50918b388262743b3f6e1b14c7495f63b207d06b5c0919de4971c462602990cee58171c675810a4b2e3ebc2ef98574399427e73842b2 SHA512 7ae9b1fe0cf5a61559c8d300a346e2fe0aac56473856557825cdf7ce8eaa333ca5621e409659d984ae24b0677ff9855c32316606f57bef0115e6319516b4e9d3 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ka.tar.gz 2389108 BLAKE2B a8a65c945aa0af0ee5ee1c906c748b9194da8dff7a2d25e80741e8d540c5c7c20e6a250874dbe755b7ee94e06c37d4c9ef02065dadc51f1212bb264d321d12af SHA512 30ee9a54dcfc9f81f01ba8c9c259ca2ef5bd399ed1ad9da61f800ae305890eb5b73d111c2665387f7fb4c3aed4b4f570b8a319b9343f8284c67cec1a23d08792 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_km.tar.gz 2677295 BLAKE2B 1df620d6cc5a30dcf30f99565f8d1d5f1955ef471b2e5cd9ff3facbd8492beb7cb6699a7986681d80ec4da0af523b5a89a7a08ffaa6a143575bbdbf627a1bfc5 SHA512 a2ddb9302e65b90d0d92c5908d38feeb9a534682e76dc5602f7081e8155ddfef63f96da03a8743330a9ac49be22048d5ce999976006867bdf2e3393133e04b92 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ko.tar.gz 2402046 BLAKE2B 7fe217b97211ac03ac01c985abe1deb0f069b65c92b88b47248d1d71aafe75de5848874a48f971612399df7f3b74a9d804b5af208ed3b4e30eb38eb328ffc439 SHA512 fc9d4e6de2cccff663fc304f9813cc0f12ba711bd1900b0cfeb64ff91602e1fc2eb62539f3e030d563321ee22f87818c45850c87a9a17462330623998ec15f7b -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_mk.tar.gz 2376612 BLAKE2B 557a0bb051eb1746590880b6979e4c19053f9bcfd3aa86d92a132ea0d32d5f55d74a4819c2e469a28ba83f1f9b1c197a595dbb65f8789f5c45c09933e76015d8 SHA512 d31d779cdbb41c9c325ac91651c409079658ed9ce16f36c2838a966f42966456ad3a94ade36cb1f2e032af5219b6c2f5d51375e870fcf547aeff75dc210dcaef -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_nb.tar.gz 2310903 BLAKE2B b05316b2c9f5709db17e8e427b6a4ed25cfa172754538b5809cffa179a6009571a78d09f8526cf91c1058ddd8b1add74b144e26f9faa8e49835ae364e70799a9 SHA512 026aed5e7404fd5f641a35ddc27ae1873f1485b77ed50bd446f4ea51ffd9d3e05038acd2361f53eb5f8a02ddccdc71dab66a6865a33f93dbd7e23de955e1fada -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ne.tar.gz 2600258 BLAKE2B 7bad927f9f6e71043a342f4f7846e9aec5d1522b1d97df2242d15eeab64f507b9ae38fc63e6865024d3447641d4c706942ce100bd11024d41934fe050f52d184 SHA512 c199e8978548096902afac13f9aec0b5c77bfa783949b0a20fa43e2ab2a049d372c75b2b8c6ffb800aaf95d5f5edf19b7d413fcf90d3f31294cfd2aa4ccc7c0a -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_nl.tar.gz 2357323 BLAKE2B 2f91c169b89e9eb022fbb31d019c5b371eaf187d83b4b6288cf80a8952cb404e8c3e6c1fe681470da0477c2f10ab038eaf9af5f7d3541e8d1707d92c5826ecea SHA512 1bbb54d6a190fa3451c03056270197fb61d28b5e4d5f523eb7b688ff9775b7206605e7d47f4eb584ab8e57bfb0ca14d45a0590977c6b34a8aabe1f6ed5d3c1f3 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_nn.tar.gz 2303591 BLAKE2B 27290ad8b4a96f30cecc3b144ef3d63330364e37c48b38b55cc59bc62c5373abf860873bd914c7156e3adbfe5cb83ce05a6df3e8a5335e3c3a1076ead1601934 SHA512 35c282393f31d1480dbc3dc0cc4c0c38e38af844e1f6918402fe6d2dac26ef78045218ae27cb349f6450d52a0666d4028a90e35bcca19291978420e810d25b3d -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_om.tar.gz 2394172 BLAKE2B e1a62e14f52ef63291d576b467307ae7c3f856dd2552cbda086f98795ea563df27cde50af5b97b4cc23cfc0eec2688ed91c9d6906aa5fea5acaffb25f47300f2 SHA512 24646455a302f0e1ae38a681232227050a386b0baf2a4f8347371722430ac5789ffea9658b30fa72d4ec4a11720410979ff337633ac02f4ae3608312c2a5d4b2 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_pl.tar.gz 2458194 BLAKE2B 2d0d06eb597eec56e7be6e2ab5fd38c77f2d36ef31b15d93043639ff4b0db6977abb2b6e22512cac086ba948b5d5b0ef8fa04acd198a45349892724a6cd4b833 SHA512 b4d26156abc479189c82e026c32bc9801402fe583e0278ba7343aa7ae85a2587d57cea760e557b959350be87c66ae7a688b8f492494040de077d62553d4c57ca -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_pt-BR.tar.gz 2376135 BLAKE2B e862f544ebda1091e1985c8ce393287b03bac0d71d66bf245d4ad9312b0948bea42f996965abad58b40f453b2a9cc66e4b326dcebcb03fc4b2cee9bd3e9b5018 SHA512 f1bdd297e39abc13447e0e69e27fe02864fb31b1038e461fa9b89df526b922a780b80291d3c9b5319f5c41893bd3302981c54dab5a1af7e1a36eb6412b5894aa -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_pt.tar.gz 2340692 BLAKE2B f33c414ca2766d4300354c64c7977627299779d139faaea3667376a7d7bfead3c6b0adfc641b62e940d98e260d0fe3c11a76537a360d7db92dc106ef254a8fe2 SHA512 8c13374db8e5516c728440474a7a0124a06ea3543bad17cbd8b432c3ceb61757ed273cf3dbfdc9ceab285b77315a64c92fe5d7f04034499c9dc649fe6320caa8 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ru.tar.gz 2637542 BLAKE2B 232081efef5a9dfb45f042453c8f0c87da8fab126c4ce3f353cfc12927a451b319c24553a5ab64116525f9951c341800351ca4c54496eaa3a4034a1310b7014b SHA512 6fe21c6d6a0dfa5f84698b8f1524cb40cc7ad62de9966ff01cc56951ac0c0b49bbed9eeb25e1b8e1ad684e11a756e7765056aa8ccd918f803abc466cd0eae946 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_si.tar.gz 2345521 BLAKE2B 27fd1cdc42f085bbcbcfe7fd0f6d9f6cc41088acd0a6c6c13352d48b57458c2f98da59e353a4bae126013f29170cc9b0d23a37e312ed1eb840450764392952b9 SHA512 069a396297d34d18f606ca1a7496742ba9310da04b34caad0b8c04956c00ecd26215fd887e67323d3e6f30091d419d38fc772f17c46e99936c0ccd876e254bb5 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_sk.tar.gz 2399351 BLAKE2B 74f626fe93be19ba8e1d76fd123c3f03345a26eb4eaffb9537c54aabd088db731ea0662c8d1db0937eb311bd2fd274a79d9229629704a66cf08d0ec17b073075 SHA512 212e1c90e1da61f17ece92a2f87b872b32f2811a21ad0a21598c5fe115bd652144f07d3c98bd0d373e98f522240ce6fbe94e59efb1878d167295a21cf74c23d9 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_sl.tar.gz 2345237 BLAKE2B 3910cb509eb20477277843884130dcb5efe36fb4fbd5c64c870e921b40ba1b806a7001062971a92f6d0d3f82bfe43aee6e4d99fa5fc3482df667e18a774ddc93 SHA512 c96a8f92b617c3ec2927da0e34bb20c9c0294ade21f0fccff29d71d5be539a227ae4d9884d1a48d2f66e4b4266167483b44d341758a18ec6704698f55501ee73 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_sq.tar.gz 2262790 BLAKE2B 429f3aa8627f9e490071cc5390a1460e460a9c28de10e39d6e87570d5619594025e10e997f7541c133f2fd147e78097fe582d6a0f620bc96d794e6d7addc3b58 SHA512 29ff76272a2de4b1b08cd6c632972cdfae96e7797b97adca9b62baf30ea452279b4bb89327f8c780be4621eb9f48c3671c53d5050c59b990a011e9177c0bdf81 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_sv.tar.gz 2343756 BLAKE2B 2dec4737f8ff9eff0dc47494df9e31eb2995f8450f9e316e40c9314977d95fb20418ee880dab7b8dfaab1000072550f388e557750c691394b822edfcc6a9ad08 SHA512 04b16d51f555a24e1fdac5d276ba10da5d7005e65044b61252c8752bcd7269e6ff6ddb1d9542908dbff0fd91fdb7e3ae4f8cc9409c4c768d565ec67d1961e096 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_tg.tar.gz 2346865 BLAKE2B 8154ecaaddf440e98a31e9b665e38add478d180303e3e7d9e041bce52df3c39f52450eaf63b567288af9722a0abac79df21ecb296a3f6993345856fc90289021 SHA512 d9cdbbd4d7d1b31bc2487598e833a4b8ab4c9ecf25e27a66e4d143e926ea8c7fe1ea4a26af7adbefeb928c6a4101e2f1e6a5a319ab03fccda7aa5e7956953721 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_tr.tar.gz 2411133 BLAKE2B 5804ffcc27eb6e112a106862cfd91e57c7bf7d52d269da344df5512ba7e7c44789fc80870550557582db2112ba3dca6a448be3bb24472642bf26b83ac99f7fb9 SHA512 47571bf2d65ece371cfa15690198ba0211683ddd2d498dfc25ff65da9b98ff7c69381a33a0dabc9c43ea3db69ece52251542b5a6db9e786ad130756219cf838c -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ug.tar.gz 2312965 BLAKE2B c4718627bb08362a23e5de2b5a730b20f97c588691395be38a9960811222a11881ce85579eb50c07df6ef3f9e62e6c6eb3294e444ec4269cab9e4d7d9cb063e9 SHA512 8c9759435b7444e6cc9bb94e65c326fae40fbbf77a7a5e35dd08b8ebbc5b5923da80f19867598b58cffb909a88ea3389981a79c5aebdb42359c198e76f8c4e45 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_uk.tar.gz 2593036 BLAKE2B 0bf8976b8e405bf92467e0e6766f167b97d0e93934238ce771719342849e78bdd988e9e3f39b3db623c89e5038fd149c222e8de0d9d012bffeba4577fb471222 SHA512 cd08b6181630f91dbf9fecd2adfa89818d4bac09cf3545bff401a94f5beaa9d79ce44d3b5dfaec45f2f445905b3d8757a3b8131164ae73306b1da0e2989071e4 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_vi.tar.gz 2399721 BLAKE2B 5780b258e55b9d83fc72ffb4690de4b343b9a937c5ac12c3cc0c95a3caf3364ad1898c4948fd316da655defd60d7b38ee9b6107b9d54f26ae4d6c97d3bdd6596 SHA512 bebe41fed291c2c6a78e387f98f699d3b36c14fe0f1a5824aa25f4b636274d0bccf3894544b704857347c890b207f6e20eea20da5d54c7dc5459b27d2b1dfb48 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_zh-CN.tar.gz 2339135 BLAKE2B f676b159a8ab06d60dd4e2570fb195da1a5e8618294e34a61fd5583cb79ac6ef254297b1dbe92e5c0f0b4f840ddcdf83099218755e1e0fa8b46ea14cb98e76a1 SHA512 a8106064662421a2f518c588061797aa8def7e69ab3d1737d8a68b309b9d121267bf449cd39a0ad390ae36c11a2207926dcc301031cbec776f9f1e543115a32f -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_zh-TW.tar.gz 2436884 BLAKE2B 9ba56ee736fdcc450db30f24a418afab57667743ec8cb075da28331894da81859fcf2ac2fe631a78d37aaccb9ca585e3a1e5329fd1511bf55615f8ca1b2a547e SHA512 380ca3131628fa3747fe953327599801c7e2bb8fcb862103e0510283949776d0a8e220f52c598ba7e927f3fa7ddffd0dd05f0c4002bcb21651e42d138a354160 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_af.tar.gz 1018496 BLAKE2B 758d3e8896f91a38a3e0047d9811ffe129a69afc3e4c32edbef754890e9b63001fec6d355d79855a103be7caaa1f3d0f6ad8755c952053987533ffcc2cede08b SHA512 53d8c59a0a2cc018eed109c9d7a7b2b346a9d293cfaec8318a32bb14f3522d468347ffc3f20993cc7e7909c57fe655ed185acbe0ab4a179575e41bccde70a77e -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_am.tar.gz 764142 BLAKE2B 99a67b5777aa9407286c78ef08814cdec5f7a41a7e83ad8ffdf343a8f5f7c3de8f7bc8d9c559b942713fd06c18ca1e14bd525c8ab4aeb6b8457e60e0b53118ea SHA512 0e72fec337e812826ffca174e14ce182d38c3cd43b2d36d6c43a4d3941b06a8ce2d48b41403ad8da157c7ef3ad56e4e35a92b942ec310ec70f665ecd4e767ff7 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ar.tar.gz 2415299 BLAKE2B fa2ad9149b468696753901bd336e178ffa38c6d9b072e47581b40f6f5b84484e4f2f04f71d85086ca99b48f4229f2d3dcb636119d0591f32345c8502d9cbb4a7 SHA512 4af22c774ae00c110c8d63d3a19a71be9a328d58434c4eed2a5a5301cdbc95c441b132ef2cd0e327587fc9f31a10c7c1ae6e24e6a712494d0582f9cffcbcf3c6 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_as.tar.gz 532064 BLAKE2B 0acbd0e72685cff11488b7e212d751c27bdd4bf262a3c27504b8408440a2b849a53b9b5f7fe0937fe7adb23272294b9d2fe049bd1015eca8c3f436ec92bb3f09 SHA512 323dda64c12d7ddc7b0a841bab81b504910005a10609cf99ff35a4cc35c42e276b4dff89ca59b94a674779376fdeb558c1f1f3e71903a458d3c050aa8ebf119a -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ast.tar.gz 440720 BLAKE2B 5a861fd66e3da4e56c323a46327f98b9d0cb81708083fdfd656ae42ab0de060a68512a7f28011b0312932209e385c49c8340167e6d69717e161dd6636f0b9898 SHA512 3c1dd4edf30064a38b8b51e240c295c7ca4fe9111f151dff00d9594a5234e73badad7f8cd4f9f9e3121c7d53274bd1133a70740b207f077c448da7873a6aaa1d -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_be.tar.gz 1055641 BLAKE2B f671c416d8058b4f19ab3fa5ae4f4bee2b27cc74fe28345a7650a188520fee38acbebbf4323be570abd9acfbb9091c79a33a2a5b71b0da7deb7fb60cbdb55b13 SHA512 dc2535bb1e752ccee5c7e9629442adbddc751d72012e7d999f1928ec4488ce7e991319f2e8cff0a5d6dc90c5a762f5bc2ae2c442e5f4a79a4acc6e898896ef42 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_bg.tar.gz 2448350 BLAKE2B 9d32ac470ed8a1a1592871cb7afa55652f9937eb2542233af9e76f341eb13058e6ca7a0709569b44a6cdc798d8182c1451a45df08c19fc003b82dec964fabba0 SHA512 fa7f1bb857fb293c98cf9e3fecb91a10aa94bdef84319688f83570071c021d2eb630709da269aeef87490e4806c7460079e758ce09b22bc05f7c087ae06658dd -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_bn-IN.tar.gz 648861 BLAKE2B 346a73eeb7dafa664bb1996978f84690373e1972534ba36da393347378efddac1abba80b8d658a06db2f4419931ac15e89ce698b584959f0f3d85e80887736be SHA512 2243452febbcb65b38fa066d547e59572000e95590a7ec8e13913f7d606f3e1a9c0e45ab733ce8c71adec6bab76ba5a37638e27f0b4cf09710d5258021d9d59f -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_bn.tar.gz 789452 BLAKE2B 0ce06db437142980bb5e2386ccaefa175c79127cf7956f7915e0fed7e088ffbd0b4ccb731748902093cfbcd7eff50202773472b5cc201e42374540053e2b3c3a SHA512 9b066abfe2f97b3c884bccce16cae26f72b87e42df8fb16342b7ac9148c5e16fa60bd79400ffbb2b8b4fccd3f76a979b7ba297d06e77615eedc63b4beedcb489 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_bo.tar.gz 380239 BLAKE2B b0f236661aaa09005cb1b8b96148df74cab8d4a56ed68acdd1bb37c9c5be4b56de213a7992d45807aed97fc6a73bba6ded767d8dba85651fe7628934b5a4b7ea SHA512 c4ce3ae440539624d8dc2bf80ebbdada0f411720d50437b6b8827fc6c2fb80ee9a0d827ebb9476e04a739432c7b721a5981bffcc8db159f03cc26c2396f76213 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_br.tar.gz 1537861 BLAKE2B a0771957e54128f2000d95a6c1a1f264c5a1a8436c2971a37a39f4676cf17fed962dba3f23f3fc40c97b71209ed1b1547a2d791b6b37a94a6b303c62e18cdd4d SHA512 43b85d3c65fd08ab6d67a40881543f7d9d97153b4e731c4af1220f30f4355a8ba1d96648dcd7addbc66c283bd92298448dc9b779e38e7fdce0fbc494d1a49400 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_brx.tar.gz 337792 BLAKE2B cc1f44ea9cfc4f75da181582ba7609eed6caab8b079c6d1a5196d635aab36360b1135a4951f55a4ce4c9fd1cb2e58b0ea640d050955aaaf53030c14edba61f03 SHA512 df41ddc69a9b25f090bf40095a91591f551de396cac63298a37e8b46bc69c11244906223bff2362342051ed69e4c58c0438d6a8577f94527d8ab9e956f312563 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_bs.tar.gz 636775 BLAKE2B ee0cdcd7c393d6dace63bd353587c1ffae730caa9b189111091be070ee010d7680f9ac5e800aeb7af5f4a343af43de856b51b0279c44676fd8365725d0d0c742 SHA512 ddef7f8d19a19648ee4a64cf66842d18946745f6532d81e0ff89b9ce1b50828c5a4e66eb52ad29bbdf262938afa0c22eddb92f10a41faad748eca5337cf28bd5 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ca-valencia.tar.gz 1973323 BLAKE2B 4f9d57ebaf3aff21cd8c89b66f1a9d8916ce99a43280ee1cc7f1b378f3c82fd4f377c840b5f232a5a19ba706f902240ce7eb3122186345bcf8dcb53bb059db3c SHA512 4dd5846c0e8433c1038cee7a1c637f1d8ab5b64e7e8f7f3bed8746fdcd4ae0db35ef45b4fbd7c49414e7b912738e70bf62af70a8230200ac91453f5d195bd880 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ca.tar.gz 2019901 BLAKE2B e0caaac30ba5cbc6f4a9611160b2bd11b87621e519ff73cb0de7f78a56fc3c6ac65a354ac61bcdefd4baa684d9fe60fa40d881878926f6d7e3e8b3917d636dcd SHA512 b7ef8968136eebcaabc53d5a3d39c56f18cae6e252e391bfab8ef41f661359ee56af45c3eb57599ae1afac83c296f43f410f75f3e8fd9fa1f6462ae3548e8000 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_cs.tar.gz 3190437 BLAKE2B 9d3592c64b077e201c805e26cde219f99193ea892115738dd377c38b8a578ca5ad90b1814c679180f5d6a36fd5b8a04648c4a645f00e837fd841826bfea9e835 SHA512 b71950d6541360b5f644739f0ba19697680dd677303216fddbc37577d8d9627cd68fbca05570c2ba1f840cd351f855f5db6a324b530350c6d36c20a6dac73556 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_cy.tar.gz 724347 BLAKE2B 2094ee2a9650468405c51a5aaee70a982e3e62c9bd68f4acde76ab75b4ea4c25a3755a8e3e76d6a9c1afae5f7bbe08fffb5a21964166ac534f65c500c5040330 SHA512 0a228364fb39ffa6705f857135621be00cb8e58b92506ec2fb884af8382c175be49205b0499b2749a8bf4126fc3da45075fff9cc9a4cca491c257455bd9856cc -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_da.tar.gz 2629329 BLAKE2B 2ea4de2d390e09d888bc206ff23d972e331088ab88b9702f1d3d3cce98bedec0add9cf5ba4fd76b2ea946a3d68198ca8cdbed90e635f6cfed3dd5643b2ed386f SHA512 b0847411d3a934494dbea56c87e95db292dc4c167fda736bd539d2331a57e1a1a76b2e43fd4e6855ef9fbd8c6bdd51cfad4106d131842f273e3e7703e1dd15fc -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_de.tar.gz 21756707 BLAKE2B 7cdd2ad1ba5c378607ced15f3c5f64b7c601cab0d5ce1ba059a0b925d85933c676d29aab5fe356c49b51d620643ce543b52335bb4f9a72db1a3ddbd1917cb8a0 SHA512 e1f79ac012589973324fa0514be57fa5b25764f2e0b15b908c0c60cd7786d2b2ee1b11304a88a8cd7a79b63f8cc3d96ba336b9c68416626db6f0261905559a0d -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_dgo.tar.gz 441035 BLAKE2B 7e1eb5150566388abac1829d3d3419e3aa7bef29b412ac32701ac4a9e24960b737eac511fa7db9436fae4b82c66923b5b41820f94e1c915bfb1e59690c9f7882 SHA512 a5e3d609338ba5c657cd45a228f29f33f7dd9cfac660e2f73ac29041c3426f3e3cbca88b788c6f937317b68f92e81d383d9fc7edfec7879b108a151499aa1632 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_dz.tar.gz 368448 BLAKE2B 22446258ff8d7146da964e4255bf2bed09e73fe2056c023655468a401806d5afbf1877a4535ef3a264054b9ff35a4ea2471c0313b6eba86688f9349d72f345a5 SHA512 e3ba566afbc5c64124746483690a0f29c983ab68a2fce747e5bcd68f2ce4081216d582301da49ad41647ee0d42197b4a52435a61fe64362e51a0762d00783634 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_el.tar.gz 2828424 BLAKE2B 4a0932a8ed5ab0bac053c88ab50ba726941dd24c04d9c0d80dad587f55dce93ba3f84ceab9d0f083f61219962d525c6c18ac6e97dea148812848f93c29210d2c SHA512 980f15a1cdd1ce7556cb1e115269b6150e66f7077a1ec0d59d14a596aea93ce886ea3cf302044582c6783076630907dff53aa1a5e4b4f52dd4702cf094e095af -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_en-GB.tar.gz 7336833 BLAKE2B 19d5483b4062adf2aadd6f6d6d10d3a602c914edb796fcd01eff4e5090d3adaa694b423901c74be1f6362d86dcfd5334dd38f459c8a074bc2089fa1d06b7d46c SHA512 fa2d271c3a8b6c55f56934c59d0b78fbb45c35a399124b7a4fbc27bf05a4b8fffa4e4ee23fbe045df25bb1a28b9ed32c90afc4dee9d087117a87a881f5de26d4 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_en-ZA.tar.gz 6924827 BLAKE2B 74073087b1c35ac18fd7b1289e009d6878c28e0139179a31ec8546a2664f66258c1ceb98bf03949a452c0f6c8264b21e2ae01f378d904fac4b5ea9c8f9994644 SHA512 5cd4240012454c32fc645e1741d6e8004fdad3b6fbce72ad66814a059398e78fc3e4ef2715731f647af4504bf800c329b8ae8b950d5c4a443b2aa2485cde4a4c -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_eo.tar.gz 721510 BLAKE2B c8224675b5e7bd04e85b4b86a91d7f5ba5f6089c313d8345187d48c1b74fc1c2e6e131a0d11c09144e157590f8cc5de166d996b131c8eed9320544b833bf59dc SHA512 2acfb3d2ac3b9cfec31af7efd1d4f90c77c2688b340152e51cb40ec3ca0e1869ee3b507f401a50b509c1ff50664c418783d239a33a74fc3b233992be02a026bf -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_es.tar.gz 2242033 BLAKE2B 33e56fe8b95a1a027a36c238aa73720c6881353c92038fbcba60e7e11b4db840fc6096430b17cd7d8fedc15bac4653bb86091003f372148a4b9a8a2c50677705 SHA512 0b24586b859e2c15ca8253b92d4eeba2eeae3984e19f78d99f8f9776acaf0f151b73cd891337cf6be4cd70173d7f7f025e5a1676cc534c26e4aac2f2cbdea8b3 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_et.tar.gz 1633988 BLAKE2B 1b85b4c2784a1202df2fb3b8ae3777ad851c27763727d51d7f739f27973f3e4fd54d26dd026aa1b79c34c1bef202330fada4a7e94f23fb636ae6c7511ab1885e SHA512 af3fdf69c34eaf33eb7c05bdf9cde5d387a2ed468fc6c35963c7414075585a5d212f277181b9b983f0f46f3d57d44bbca16a7896c2f721839c07a684ae2c1ea1 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_eu.tar.gz 729308 BLAKE2B 06cda9142afd5c332058f1209e380d5b9710f79ba1d2e31d03383fb4388d3c5452c1fddb3d9e8b46777d00e135262fb90d8030b9f0eed49cdc0a47daa9743225 SHA512 39bb1d7b76d0f9b0c8b14a71b4e37433a3361f718daf06f357056aee0360bdaebb47935a85dc2652f6a17fe471223e3981ce6c3f04e6d75dd50501beb74968af -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_fa.tar.gz 332280 BLAKE2B 10246dcd04f3358d6c14e5fe941a907d4bb723cb780b66f329e84067201e036abc78c1e737f007517662f73ba8097574924e1f70c9631c2db9ef285e130421e4 SHA512 c3182061de4c6965f132d4f6cae14e2189f6933fcaca5f0c28752c4f76845ad85c51a554b97e48eeba7e454c23880034778831f27ad4eb7e34ab8f32367798d1 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_fi.tar.gz 705990 BLAKE2B dcc5ba82c24441da15a2ef085be2e4174cab7685e08c72c95a9c81753cebaa80ec99c1c496c081ff69b54c1134c90790febda7e504f9dae586d8e4313f4fe332 SHA512 9a0495b883132564b66996a7df437d65beef90efe0923735c42c0099d0273add00c4972ce5eb6c97b39c5027c4d09cb89ebf8470f9bcc37a1d45d07d9e08fff4 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_fr.tar.gz 3036078 BLAKE2B 3711294be33405e69d7064a2a10e2cb4fab6d102bc2358fed02d591c880f573995bd5bd01340d79b3a5015214d3698add74e3a50a2a271d0fc12ebf9ee011bbd SHA512 6d9430ec0316cf0c56246bedcf27f5ee097af656245aa32b385a5384a225acc6dd4726c0f385bc4b3d907f21d06c62c0b94423fbc4947593f6c23fd74dcfdee6 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ga.tar.gz 743065 BLAKE2B 133fc91440af0432e4abdb4016b6e99224a0c3f6bd5dc972c82a7b65f885d0c46b94e1d230c2aa6e3d9b2bbc63d68d99b68e92fdcfbd0ba66b9011ae9858bb37 SHA512 05e8d48055672e033ed899dae9245922beb06d81c2202828d140fb723ff50cb1cad5538fc6e0af91ad30ac9c8a63278d54a5fa0c1f3368974acc023963d7ebc0 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_gd.tar.gz 1780742 BLAKE2B 64e6b184a07d56ce5fbfc6484436b9bd6abd48ffc3f20314bfffca038ac2398b2983cda2de279cc60f056e12f272558bb004adc15ede6a9bcae5aa4a5a2ca0d6 SHA512 b7940dc3e4a6ed1469aee6b7da8f311b667d0e177d5640c1f2df70d542cbe77967003dcd06454ad44f5c9f6edada0afb3eb395f0267093ce1143b80bead727eb -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_gl.tar.gz 2621476 BLAKE2B 53c3ff4ad9da7acb3107134d231df728f4ba55b0bc64fddff8b4ac136e3c6002677839300b850e60aa35ee12e74e1af48fc5fb6bf68f922bbfa5d73026f62fbb SHA512 68b00508febe96b10894a3fd0409822b8fa0990e96afb1d4f4cfca1d02d981835804ac6e5e764975f9e86f2fb9c9fb006ba26d8560fe32abbcc581d783e72711 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_gu.tar.gz 1229430 BLAKE2B c11cc9c3042c71224da13e0fa6ccba29cd01d60ed461f8778d261f246ea338a459bcd79fb431ddcbd0f886ed9865961a56640ae14762e7c9f66e777673a2025a SHA512 54cf9d3f92ce3a0f8958074d19445f550e3ea81603732d4216aa33812687ef338e832c88aae0eb8e7eb6e6940ef5db61e9b66daa53fd50bf3aa6b3c5fd6b8d4b -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_gug.tar.gz 509197 BLAKE2B 6286146343f5b3ae38aa1a4685e8a0a8ee3e3cecc3c19f01103e455737ae2ba39f8f6cd948ff972aeec9903be02103d2c0bd6424ac17adf2b3f9f3a18580ef23 SHA512 e874b130bd25e5170ba4328e10afb3926df92e1dec326619879de57fdfac4c19c3da357a5547ab1394b336b86befff04b27f9a510827b721eac8ddd62484f0b6 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_he.tar.gz 1621916 BLAKE2B 50c21f4b5db9bc3182f6851a1d683e9202c3d7bff870fd52299434acc3ff403a5a3a4de9580b7d06d5e04e6228762f7e7783bb2279700a2c8d5c32343dadcdc9 SHA512 6940f63198f40b2cbdf65fc0f3d5c369ede5c855115be6fae00d373bca59250828763926c4d5bfba3b53dabb681f2d16d398a9470756d24a77f6899f8247cb57 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_hi.tar.gz 571368 BLAKE2B 52b996cd87ba2c0906e8e446427af8535d987cb3b908bb8abfef344f4e86f05c723cd1aa98291ff46aade2e8f6398cdf279c507285db26f8211b3a0e628ec748 SHA512 789587b328a1c2148cc087b47e8b0a176de4cd4019ca6dacc6c5adb513306866b2d07bbf86de9b8f4256c4eb9c7669747fc6456fd6e963f597473d9fae3b9704 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_hr.tar.gz 970829 BLAKE2B 856fe546cd562d90d906c8e666868b401eb04dca951db9e340b3b2b8bcd7eb6adb1beeeee78c6f7858db5fc8a150f45036ddc4a416f3f742bbaa628af1371ce9 SHA512 4421e7187a02655930160f2df75f82ec9eba746a82c6b9184fb8938108406075658f82032c386562eadd611e36e124638412df1cde0e4129990355a12111ef60 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_hu.tar.gz 3018144 BLAKE2B c3bd807506ff8cb4b5ed34a880203353e6f9b3c7711ca0b719bf85d8a4d0d693ef97170fd3c909058b54711ac9ca1b1939e989722647d605d8510c98281b2813 SHA512 5825f1b804ea04e1a8314ba532f0320f981b7564d7ac47a94da1f72461c488881c5d48888a0685358a8580c175fac96a8e22c8b6ca1894213e839c9fe1e6b765 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_id.tar.gz 1587100 BLAKE2B 63017acd018f6fdd66ebdec5d1e0d7e95f9eb0d7bd61935f07245bfdf78ce2970f570dbbec1ee001ae2afaed63f374ad977f5fb29ebd7ad385f7dde4df1ac5e1 SHA512 8ea1034317c2ea91d7799738acf4a061edf1b7f3b8512d85bd783830148e4f12cf28626799bc2d1da1036ca55f7abb4265f44b8254f93ec643185925b82d1a28 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_is.tar.gz 1518307 BLAKE2B 87a39325357652d487c42d51a8f84b6afcef23a5c56b3f07073f673939cdd6d2e922ce73096ecbdcf1d9ecf36893621b4da610365fea2bb859526542d5448660 SHA512 b56a98eb7f3240959c214fc96c24472463db3e1bb22170774ffd4680d516c3ad1d8d5ec78e5240d1a2f160d988eced5be30986ae3f3af7d4d64cd32f1cfc017a -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_it.tar.gz 2068945 BLAKE2B a38ce542e388b608d18ee43aee83adde796bd989cff1c73a7672ae8f80f9eceaa0328875740ca9517c588f77acfe93a85cbc98aebc7a60d7d8b3476205809fb6 SHA512 1319023b208be5edd9d1b8cab7118232f8833130e4fbfefeff42fcf69d0efaca645b7ae440468a71e1ed727f462cd28c7c0de77afcea5a27be1252ccc9a8dd5d -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ja.tar.gz 809889 BLAKE2B 343f8793f28c9afc3d8e9b1de92c836b994e6b1589d3440e895023468e6648692e9648bddec9c78dead999675377fad0194bdde0ac06135d4a8fed5cf6945758 SHA512 d0c37797ebf3e9333758bb4ea810324497229919f49df0c572908972c1138321f4ac1b54ea8808e515d8c097fafa21b22ed9ca5381f4c7f541e14bd0e8c20705 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ka.tar.gz 360675 BLAKE2B 5c77ddb7eaadad75d51f305bc84c68d3975eb0a96380f448f6543555547c29399b2491fc32cc07f31c3654f9697576adb00acecc5423cc2ee0cb92c2ee96c288 SHA512 b1351c3bb9115cfb705c5c38ad586de6f4985a5ba3990cfb2f4a903e0565dd4fe608ff37fd3a801f38dbe82875af47ab41eb3169d6e1c59ba22c9a1999d94ca7 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_kk.tar.gz 785077 BLAKE2B 077c890a4bb0b08d85cdd677cf4da00769374b5abc74cc7dac58d2f4af06288b3a3bf556112aba18ad0fd263762826fed89100b452d4f1ce51016663d63d17f3 SHA512 bb53685ca795a9027e609af88471f7a87189d110b69075169986faef89ecc32fe14f6c2f1ea68f237027b898833990e5d305612da8fe0194fed7e432080b3bf1 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_km.tar.gz 683733 BLAKE2B 4c2cc1adee718b2bd2a5f4526afe69515e038a1aecf9e29b6a3708b8bc0e12ecc6e2e75feb1dba0fcab48bfe73938cc50b67fa5017e750d59c51461e9b881a42 SHA512 ca53d6cd82a3810024bf7e3c20838b0276a85bdbecb059ae4a68268183dccdaf0ebf23eca16f4d095326bd10a0b4c29fea8696b614ec100fb1212ec908441f25 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_kmr-Latn.tar.gz 334445 BLAKE2B dca6513df506efb8c550701b5d9b09f48f8132325d84e347ee76039182e73dc6f1e0dbdf7b1497bb589831c5bfa50c56ce485a7d4489ef62180ee21d76531e8d SHA512 7d5cc73a283631c6feb9e358188a65384acef05e6aacd73ff8452f9cadbadfab4d5aadef84f9a9bb8dcc10ab5759a92bce3251bdeebbfc3ebae1750332740aad -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_kn.tar.gz 583017 BLAKE2B 57fe7492cf1c59e5cba6ada29d4dc1f23ffbae31ab56716d9518ce8b06c6af0a5d3174969150fc2c4b7149f05060478d5ebaa05839a1ea8d43c793ca9525f515 SHA512 cb990796c1e308ff455d8e17e1dd45af98b505a4e0c90ef88a4f8f4675f14a3adb8ee124e68539bcc4acf65b927064bb312a74df174290cd2f2bccf32dbe51f2 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ko.tar.gz 808051 BLAKE2B b11736134f80db054c62190e55bc9d177fda306a1ffa2f28589bb42521438dbc0593da1c98c9555aaf85b72e3ab5bafe0fceb09f4c35977571c985007995c03e SHA512 c2ab93dce94c6661b499a740d9b94de4435e7c3a2371ebd838e2af7857b622a42dbd4d82cf5d47ff5f5924ff858e0756f4f476c31c08bb4922edbc0a7616dbab -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_kok.tar.gz 412544 BLAKE2B 2ab6d4ca91cf6a9b9d685d120f7d5e293d72a5f34a47d116112cc7270c63969b1e22cedaabc50e287a1204aa31bd27ecfe648e8b6bbc9ec0bb725d211a7fd10c SHA512 4c34fc14a1120f2de3dc65723c02d25970b24523ff42bef79b7f4a21d4ce8e7358c12e2f5f0d9f70d69764de3513a9937d4c4014f05d99d54cda1e7d5de8269c -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ks.tar.gz 330696 BLAKE2B 575c20de813ad54ce220e4e4e4b0c25d0bc348991ba00c60b2e3d0dcc4144f385b21628c96c7c045a7da6a7f86329ed87f2f2dd16ce3b11fa2e042c671f81bfe SHA512 d7c5d4ab738639872244c1eb25e14511a2cb2c76d3826b494fb7dee11014c51c67769ad1c8206e3580b9c9f0b4b206166ce906ed5b0450a9b3a344dd0a2169f9 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_lb.tar.gz 142660 BLAKE2B 8e5b1d7b2875397415a9532b76c2dce74e21f4fe2fac98984635a733cc182e53abb559585acb363a065fd63c2d74ff089b7737bc4f45ca6ba05e80e9d6fbd832 SHA512 175f04651a854f50ce7a47644a6b0fb9203c4ede401596afe9956030f216680550c254493732a4a34b38c9495760bda55716a70d1cc9dbc2bcd2a0b872d10bdd -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_lo.tar.gz 432779 BLAKE2B df9067d8867220a7c92ad091f7ff2eea4ac4038b3e6c43c25e6a55af1699d5309f33197d1875b5bc8fcecc8cedccbf4d23c55481f763dcf177a0e6bcfbe1c46b SHA512 230c4a46a96f3e83a7a12665377d803afa86972e60665acf5f0fd918b497d03bca9d51e18d2e21379b12ae9911019cc4534be11cea22599e5e8f7cfe02d79821 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_lt.tar.gz 1032164 BLAKE2B 1d31ba3a2a5723def42d59169081d9dd1636b695f0f1be1cdd9fd46f50ab5f8fd36acd4ceb0bddb65911b8806a05e32a610af188a8bfc9afe2783a660ae317af SHA512 b5149497a4f11eb8bee4fc0e4b4df4c1824c1af0576f1bba0e18839d88169a44a0290bc124ba1a5e1c335fd8927ef8519b57d9f1eb1466c64405ef2fcda7e56f -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_lv.tar.gz 1493824 BLAKE2B f53c4096429db55851e1449711ee4c1cf967d7e7bcc290732f0b0061867df313ec94900d746ae67192deef2dcf5c72f30ff19d8c3550216e28fd49acd335a604 SHA512 62f54d218aa853e09e3407d1edee75000fab13c94d807f074416442d0fac4b306a0b4dd4e2ef76d863d61cd572947e79e444661e529693afbbfa8e15145d2cab -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_mai.tar.gz 331851 BLAKE2B 7d5497037c444ce8f14ca1c9d77448b77701a7ed0b47a0782eac82b3372e75e5029cc335cc91466f14031da364aa1638aa388d44409cc56a55d3f87166f2bf78 SHA512 0adbbc94983f76210a615067a28dc260f6c64c759e95815158d22939ef3af62cd70ed4d49dbfa33c6abb994703bdd7b3a7014b7391eaa58cd9ee802a44518cd3 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_mk.tar.gz 384275 BLAKE2B 009562a115a3f7712009873916485d438cb504988f6ed18bd7b8faaec0b852ea9458a0b7b1e074ed4bf0b114170a40b1de60a5c6b9a7b8dc25563ed2ad1a0af6 SHA512 0cc2be8529ffd5eb59492d8c75481af16696c84b5ff0b528ecd9077d95936336ee201af34f112566530aa1c6b06a628086d76d31921f4d35305434fbf5a8df80 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ml.tar.gz 544546 BLAKE2B 6181bec2b4f27596acd68e5a07cd5548402910a45245d676d374fba58fefa3f3f72097644e51d2eada32f75f8e913a70b8f11d97aad86aaedef7b46e6ec897bb SHA512 eee2d13ed93a000e6bb2a1ce7d7a5517bd827b327595ffaf00e898a75ad013e078292e4d047f1c1f1e97cd380c547675de31968d8042bb527040c35432a2cdb3 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_mn.tar.gz 508907 BLAKE2B 2e22175669fffa268abd57f8480648e8341631212aa2a51c62bba3bef011fe0849963f17016b850413a64e93c7802bbdd748fa16655672ab1a3da29291b57cf8 SHA512 f56ae492b01969c4484c76e1aa009fa431bedf639a1c8029aeea3bebc656f3d869819ae011c98c8f7733715820382ac2ce02beb1ef0693f661ccaf6c7114c530 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_mni.tar.gz 403212 BLAKE2B 95f1700c9dae1793a27a9bf3e775331a5dacff92a73567ed80a78ec712f1e0eaf00fc9afd1e1573cb6c0bca4dbb46489ad6f93899cf3ddf888b2b0c6e8dfec15 SHA512 8df0d237cef145a2cc8a151e0e776bddf2cb9305d2475b9a72ff09dda8754274dcb516d47438dea79cf76ae62be36be49ff420ac646de07c9830bf800ffaebcb -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_mr.tar.gz 578888 BLAKE2B 3f7d05dbaa4bc7700ea5ec67e93e1ffe2019bca9c3cdaa084ba004d5c6331ee6d6eb59b7febfea6e9f01282a6fad8f6e629e9d66fe0626b7e0a40c41befd0379 SHA512 cb75ae46c3b9a54c0e20edf7fc22a970a55a5af76e4629f1b4a31f14c448edfccd6ea37999e8e2d2c5a1ccf35d9d9f4756e02186c2d960c836a0a7f238074daa -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_my.tar.gz 464886 BLAKE2B 60b58da34dd3c58f7ead2f2fc276b359e8744a3a1b800aa9b29f34ddb3059e48a6cff728cb33ef009885fb64517c7802bee397694a66831644b77565222ae3ec SHA512 2662415b60b86abf21bcaedb7aef2cfd5bc05de88c6794e539fb81116abaafb72e2e021a66948aefd5e6eddec44713add2c591b97f3c602329fe9dc8ebd7d764 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_nb.tar.gz 4064817 BLAKE2B dcf8ba735523ad1213d12402a24664172188a6aa510361b2ef1b5d8eff47b845101da6eef85a1335a832aadc8d29997528331bcda9727bd721664b5e107b4292 SHA512 129e1092f1c7cfe7df0384499bb9c210a86fa25751d45f936cb6f13fa211d499770ac4a61a54f3767174f556007925e057f2d18157406fba93436e8a82168fab -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ne.tar.gz 859931 BLAKE2B 08fa559dd07a1026b7e85e7d0b0de06ff872fd88e9df9aacc47144b5927310aff9895f7c50ce06e162dfb1399817b96e6a27162547bc6fad0e069c151b8f44bb SHA512 c17622b2496f48bb9f765b4396f50f57962b1a0222398acba5b6bb7f6e0d30106e6d9ddef1518e23e4e6127306d7cab7bcc4faf6cc25f050722e6315152415ca -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_nl.tar.gz 1523467 BLAKE2B cf55a99709088e4e38ab6e9c6c6290ceb1ce920eddbb0a6a495c086cf525261643227ae8cb98a3397ef82463a2ad898544b2fcc15159e6e23314ecb1445889f1 SHA512 099a47fa6c1d38b38a656f0f07a334fa3f2d01ae82c652c9b2a4dc54252e75187027c25bbef385710bccadf0a27937c15a5f492dd380d205b7bf9c026750661a -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_nn.tar.gz 4063984 BLAKE2B 66932cb339de46b79fb2f65bc265a2d6afd5b3c6dbda9d7918531c14ddb6d82078b1da79597a5ee081a82dd8c3628530d0c94190283601f92f955169b4a54c85 SHA512 329397d19d49e2fa1522448a81c22aa6c4a0e83146d5aee9364b865c96c8aad1874094784eb7207a8ff4a31aaa2d7f693b34216f06157edca56056ae1bc15b78 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_nr.tar.gz 277553 BLAKE2B 25e4324bffb9d395204133bb69e1d5e99541fb7815b0a12ad4d97758463a34e63137a69d94fe13b5879fccac9e73b802f0eace387ec434d92252e716cb0982f5 SHA512 aee2e294049f52ae40d5b5353d81da3b6f37049a0ad8ba4ae5d827f3b7111d07332d0c2b44f1f4b853d52f1e428fad6b085c53d64dbc821e12086dc9840bc460 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_nso.tar.gz 322651 BLAKE2B c0c6fef87ab2ef64b6a08c5a42396aae0528cbbddf20b4975268c88a5e23d5f543462d5740a920f1cdbfc3743090c4b409cb1256c53154c96900808f2a1697c5 SHA512 c02cba688d13a0e6a7bea4d8e01f445a8998308977e1900c1b279c0c5f96323bfc57b15ef6d8c6449cc7110fb7789dfe6c44963fb82c14fec2ca3c1151f93201 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_oc.tar.gz 881402 BLAKE2B 4e229db0d4d5c08c57f8ba8b2a84333df4467254c4cba7c492011b0cef84d5e48505dfdb9b2bcd414502828296d7aa0448ececf69b1a3c27c51fc262e13c3bc9 SHA512 f0421aa01f8bb8083865f127f477cbf980b5827b761846d28b38d9348e1ddc99d103073fc9d69e52d1bf039aa48736bad8ceaeea3e9d1f04b871c5fd2214f907 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_om.tar.gz 371022 BLAKE2B 67f43cddbb39aaeaffd178e97da1e66eb88a0d01d2de009492ff5f038f90687d497938a80d8b5bc228fca6fceebd783ea17ab302f5af09e02c18edc1c12141fc SHA512 69062109bd7bb2b9e6b4e0dee786a0f15ac1a30efbebfd2a2b366d500e74ec06766c8ce085d4268b8e93f182a1fa12dd959d7040705e23bb079cf8ca62980aa5 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_or.tar.gz 602717 BLAKE2B 33765d31b7e332ab2172f3c8eed49a243dd1a7b61f3432a0f882b02407d88c94a36acf0057451997a92d01584fff1b7f8361990132c92ba47e80cbeb9a2e2b1b SHA512 ee1bb65417163a012a4bb9b63661b53b8c493399f2c26bab5c8b49c95c5a1f4f79446faa71d32f135543784a2adfa09d666d784295ec1f3ae8230c5b6cfe9984 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_pa-IN.tar.gz 470976 BLAKE2B 349dfbc692d9d5deae3757b19b0b8908b6a8d7e6b61749cef19692d9d7d24bc31b9c96b8510f18b47e95ef4eee7b49fe6b48d8700468d7977ad9c4a41b2a2153 SHA512 51690635529eeb800baeff42a6959c2c41e8b87b7ff58c54eb4b09e68eb0d8b09650ec637a934f2a7afe330daa07250e9d71ab068276542f5803c25e0535e1fe -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_pl.tar.gz 3095179 BLAKE2B d159927d57be7f2608e0902ef1517270e50f6178ec2dc31cb6e14d263f5e8d29cb2f6cfd7969cdccfbeebe7db01cc756a849767e8269229679da469e68fcf84b SHA512 014b18a875738a173bf9f73873a22667dcaf9146f27786cf9f25c21401348b51900b3ebf5fc15eaa8c997be6f49905d1e7d1a9eca1c6d1fcfe72b1b9e9b4ea1a -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_pt-BR.tar.gz 2815453 BLAKE2B 1ff5e3ed0213e9cd6b278ec68761ba2701d7d74fd00591c07f3aa3eb07831ef13544467bc0657f9805520ef8823f99fcd5891b144d19a7cfd69c547a53a8062c SHA512 f159ad1ba9030653de38b9af4bba10a6b5772a5788f30d0985f24fcbadec23015429a5879b8a190b836524f39fe5b4a9cca23c5026a1b0647128208473e81f3c -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_pt.tar.gz 2371479 BLAKE2B ce1ce6bfc14cc98743cfd2f00c277588a1c231b00a968a276c0bdfb999466a8ab511b7fd1c7c7ab7804bdb68fa4c2959ddd43472d573166aab8f8009806919e2 SHA512 6c927742bd8bbc1e7dd9562cc6a8d06c16b9bab0f309bc1e373c828534079a0f2de94ac850b69ef1b4aa86b8bb03855c12a0fd2b5cf4409a8648be1041972524 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ro.tar.gz 2532195 BLAKE2B e578429ed00ecaf6a2b3b0df414abd18e9800e373f712674462e9cd579993b870a3c62dcd8b4df26077c806a48f329e267ced0ed5adba36e29d860f1cb85e39c SHA512 d59f6e67a85f59f36c5b5adac91b3a7db38499d95584af8723b0d3ec5e91fb8814ac246c87ae5de18d2d7ab0704c5e1989ce480c704c079db24a1b4685c78a8d -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ru.tar.gz 1902381 BLAKE2B e678651dd62adae39e89d4e9d8c9b716616694f550607084a503bd30981d6a97de7abdc9ffb54ade15ab64dbd30617dea10ecb26ea72f50ff133479b46ba612b SHA512 1dcd4e5af642a5dcaff686d64df9ff644eda25b4600582f2b7ecb16bf2e5c41f74cf2a4f061ccb45f775d3dbc1850327bad92cda4bef61d6ba2e6d4ffae3ed45 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_rw.tar.gz 346197 BLAKE2B cad4bd347854c9ff76abe3c75499390be46fe0cc95a9d56b07129fbe623d4c645a2ec945bd18cf3e8a0c3f1d21bef8cfca3c4bf9f7a63d0d4853749841112ccc SHA512 0b148183f44fb4b4b1f66475d30d0a5224bcc1911d3f5982e56e16d17e6a7003e17fd378dd8c4efff45fa27e86ea6b88330b7e1d0f62672a3e5893a87162d1fc -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sa-IN.tar.gz 451880 BLAKE2B 54ed8d0a1e27d741b2fde483ce678b3bcb46c017686b518a51e14ff4e1933152dbf641fc6c4b6338ef2a2b2f8d80664b936bd97ddc47b4621b3353ca07a3c1c3 SHA512 71645b0d4fe0e1327af41d329b6a242b02e9b08c5ed70a3213191f48d0e99ce05e54a4847b24f958358757958fb83abfb9ad2c3f8e50112563b3fea92a1f50e0 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sat.tar.gz 522671 BLAKE2B 4ea48e9a5cac78e2fefe52ebc41e94399795cd280d187e7d6566e6195c8157b313a11cb03d59d971ec82f7a37144b56211e8a571704a7bd9370be4c25e125cde SHA512 66802909fd2ba4f1d93e18a1954e0cb5ba49e93f4993ebce1d85481519fd13253711bb94c8975fe0d665edb6253b7c606f6267efe56cfcbc01729b0243e9da05 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sd.tar.gz 437880 BLAKE2B 88dd2dad292070ba9f8e5e22d7ed59894bf898dc4bc6e2c60180da05f80c074fb3487358a03b8bb07dacbe89232f96cc5fde18974bcb45453907becbaf10a61a SHA512 9aacabd92cccaad7117152dad710c9e84a5ff1058db42042edcef0f7a9edc470969fcb052e1a7f5bd24ddb33413a42af20df7507835998f86bc3a97fba654c8f -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_si.tar.gz 738497 BLAKE2B d6d725bfa4e5c5d4a0f6574c58bfb583ff2267772e43d45270bd14d966842dfb4a4f949fbd55f641e6c9e09cb48ad8c99308af7ea16ba5d728af58b5ac52b79c SHA512 90c36cb36d2741ccb7ef86e9c2986edceb577af2aafd232f9fc7277e44798b71307143d28ffccf8aaaf17b7f7e64b096168179d45034571525b106e66aae7e3b -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sid.tar.gz 451631 BLAKE2B a3f473fe2b6a5d655d06eb1db84574384d85a29e869511c402f2684e82b987360a10932fb956847c1668da0734091b41b0c90c9a296edea13359d6fb42cb5128 SHA512 7f958caf880338d3066b2c4b6ad72e54ea736f34107ca3501b5be798ef0e1c85aaec04ac6c133ab23de64373426946d87a199ea160bb2556f826611eaa93fc0f -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sk.tar.gz 2027613 BLAKE2B 7bfbb22737f5c97c641e36602bd0e58573cc3935208e023687fe5d85fd0932669026a264103acaed5bada73d687a3b311e05d1f1f30a53f09123c3258a61d082 SHA512 7d4ab7667bc1cb643c6ac775ff352511080be4a7a0fad5d87c50993d6b002135e1864f8c88ffdab39c93403034fd0268ff8e97a9ca9808963a0c0a136b25b7be -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sl.tar.gz 2432658 BLAKE2B 25b361c646ce7216531d359f34cfb885afe8fc4cf15867d36d4700421e57f4f94d8a5336d71054fdc20dc1014f46817f5c2323a12a0886e4d18bfeea2f207eef SHA512 2e7b2989059dbf24552f808827da362a48559a3bdba7cc817ff1d59aa532da03c11e2e46325eed16189d5697981bacbfd7789b76fe976a4c04cb2dc2419f4fad -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sq.tar.gz 1171053 BLAKE2B 58c34c04ceb89b2d17fa33b859cf32f0ce945de52686dac28bbf43a81d2ef681b33ca877af69802cd6ed830949a1f2fc13a540ace3984b6779358353486ebda3 SHA512 28b36c9297cbf09c42995735c9d5caf234e3286e2f01636e2015d2358aef05e12789cd59a2d7b260fa2c0220d2655db719f5bd8f35619cb20e43fdb1173b9102 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sr-Latn.tar.gz 1460953 BLAKE2B 7a67cf6685dadb09a04e739dc2cf964c4a641adea8519e32eff92199d3362306d91304d91025e5a99a6dbfd0efd4352d95023f2cf6c9e585de30d5a68887c1ff SHA512 d11b1c0ff64ae4515754216255aa297dbae73cfe42e21413814d8d101edd7253ef94ddf56ea7bdeb9900f6485117a498e8e1262b03f9811cd5055e13d2fdbc61 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sr.tar.gz 1480469 BLAKE2B 99661657f977399cea0aa424d2cec063c95c5334c3c66e43325c9ff0a0d14676791ee782cb3de75219455e1a79dcb0bdf798c6ed23c72e6b9267d430b36b27f9 SHA512 0d0569e8d20fb5a474a73f943c5dc232b2ad5ff8700217f39ad41984670c43d008da602b9831345d2e7744df131677d1d434c05346f1748b81df3fd8ccff4b8e -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ss.tar.gz 286961 BLAKE2B 59a280c0d0dbd88af473b1196e47c4994e230a264bbf3533c4221e59d16c2337c3f8be42eeee77f707796439590560ee4f0fd1ed948326fcc8872ecdcc004218 SHA512 3f9d8f6440e8225c0b5fe97e9079b15a9e6f5cde8193b0d16abe23945423c1a1910f3355ff7f306664104d3e1b00e3ffbf1ad22a55a81b8e4c1d580ca8ac7b80 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_st.tar.gz 279995 BLAKE2B fe25f9ef369e8954b16d0c5725611b2ccbcdb2e32140ebb817a95e700429afd99b3bf62859c5728c41ca869a64321e3ef40d555da5a33e1f8f8a5b2bf18c55a0 SHA512 03c167a4bc14751ddaeb9df2801246c776bcb453226d311cecf72fc2055a1f8ae4658b7a9cd96ee67ac5bf5753eac44c3385ebd890fb2294c13f487f6b213287 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sv.tar.gz 2608549 BLAKE2B 058b03a8fd722b678f4a382cfd76edf7fc13cca2301d3e4cfabbd40e6638082d9fbe4c54b65e2d4944d33fb2c3c9b71cda365184497dc02cc7cc79425d5c3563 SHA512 20ca0bd868bbb54c17efd128245d6f9050202bdb24af11038afa2aee440c19f2bccb83f8d24cd97afd7cc5d662958510dba56449a259a290228d4a214015346b -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sw-TZ.tar.gz 318612 BLAKE2B 3a943b8f45acb43d363c2fd8e6742a5c04380c2ef0e27fcfc197e47fd092e6010e8b90b13b867dbb43c696ff7c83e4c5c3367289035a32018184065dca7673a3 SHA512 6fb2358e48073e073be5da4246a980092c2ced538d61428a1c6e1be3948995aea2fd58f8b051dba80c595b08a59ed168e3419ac08a7877b771eca0184a7b0ac0 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ta.tar.gz 686362 BLAKE2B a7385a6c3edf266a1b5516b9a88e110614e69e29e41ffda8ae07fa9a5f033ac2d710ff1420b4f8f26d078f9687414223744b32fc25507db193f2626027322584 SHA512 7c01d6ed5640e3f63e471ceb7652457d7d85c3bf3f28effdc8d681927e8cebf73952df8c95e8541bd562bd9370c924218b46b63bf05d410154a17409ea04ac8c -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_te.tar.gz 1089384 BLAKE2B 055d9460d8c84e61af0a32da42b3c39d0f926feceaf0fd69768421b0f3c172e13e810f3e8b4a30341e17f9db3bf1346a0348affc0b27f8b9ba5bcb4549eb2de5 SHA512 57555c02acdf33b5ea30d93ca51c7ae56927d78dbd5a4771616b03976f68a3760b417d59f691fa693f96c31468c43d68071caa49a57486458594db9c1a3abaef -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_tg.tar.gz 358961 BLAKE2B fec659d2018c03fa86d5da8ade60f128f87dff02e769c7a3e0a570d0374cda7ab14a77ae25b2beaa6b5238927621e9093b26fc73b640682a1ed69c650319d81d SHA512 91ae770a1057b1b04e23af35a9fda04aa4022b6550412c2b51120981c30510107ce376f150ff6d8f79e5faf402becf6a05e350ba1d108749cfc7a3093648ca50 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_th.tar.gz 622577 BLAKE2B 2aef71a381c33163544d279c9a07e0eaf77ec1e06ec7ae96238b0697a683cf757fc597102a4e2bbe041bb5e5b8b76203dd7a5abffe82c51fc32c20dd9a973459 SHA512 693ac6fc945c6084745041425b7f5bdcef738490845c50e7622ea9e070b88d08a7dc0a15308b7831d43826dad8a92fd4fac749d802983d3d4ba4ca43615d6adc -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_tn.tar.gz 259651 BLAKE2B e4bc843a19c3010d9f18c9d8ec7d2d004100125663bc2bf5733cf2203f10979a07eb4d5f52bbeb0b8fdd152b06e159a2a341867896e7918c8e2979485acd93aa SHA512 5eb9d6dedca86a35f6a8a05eb6dfb21bbe63fd892a9e5325abde229f2a290a0d0184970b81f8c127c7ad1083158a4e4b6836fd79814fbd6a590d64a87ccd72ce -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_tr.tar.gz 773553 BLAKE2B cd2926ad953fa2d7185ab16184db8d560ee7c23751bda153990cb5c555f9d173b96f538f171faa0a9b9ce8529e8b5c453cdb56079b882d427f453e4e70f75196 SHA512 2608619a4e682a4d0e619d9da79d72e436a843160392e1b3cc64cf2f24f2d3567a92a0614ecfd0c56255bf56ec8dfc828c02e3d8528193c865ae55e7f69974fb -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ts.tar.gz 277719 BLAKE2B 4bcc2ea033febe77e2f76e633224a49ca452bd6dba46ab2f5868eb852b337e301744187edb0eb45aa2dbabde9a875c3feae716f380c365c0b185a73bc6d32902 SHA512 d0fc5aa5c8841e4ee94310bdbc6b90cbca97a83f981fcdb0619d4ceac50611505dc6489a6b7f2a5d0bfc8cd0354fc68702ab4c96be45f7ee50f2822d6df9a5a0 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_tt.tar.gz 182765 BLAKE2B 54b9a4a6a1b1a25d69c3643b1bf579dd5463ffa65f54a2b479bbb90ecff475b27b30eecd3662ca1ee9f19682f14c612416745c6bf39640c141507bfbf3a3effc SHA512 a26f99d58beac2b7ce4965ae07d7e82394ee6b4329349b984fe21d7cce157a6fe3cd19083651534031d31271651d58879a86f5d2efc1ca3310f5521470c317e1 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ug.tar.gz 549301 BLAKE2B 3ebca6dd25a703735f7a5776efd13b80f984eb40d650d80089b74e2a2c6152f07e49de350f65aef9f92f17a4b756243a79958ff1611ebcff256c38a605d149f6 SHA512 f9c56547967a713783d018e0cb7fee467a717d9b15e6783bd7a2bc0d2528bb2493d2026e949280171d6561b37dedfd51787d98a80602fa29f45bc37ca992b709 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_uk.tar.gz 1621387 BLAKE2B 5db14a5c46046219e91d56740115da73ccef3a76699ec6986e0d32b3cdfa29a51d4d90b4cc26b894ce86731edf4c28ae8ef633807760e89d0098833426bf260f SHA512 bec45f6d4092dc745e06347a52002d898d854b19328d64dd3f8a5bd1933c4ed483f613fd82a9f9cf1ee9acd3fe38db65c79d9e39d6aa2ab3c9d3abc7fee94781 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_uz.tar.gz 315079 BLAKE2B 1645970ddfe92fccaaa463999a651ede89ed58d1a89ddb040f29a061419e5e131f04c5cc7e5d6b18b020637cd7be99bd1da9bb91c55f7ec94430b8f71b74de27 SHA512 6195dfac1667a13abdb33707f406bdcfad229c25ddf05c1e121361b545d3d2a2142635d0f4997fdd598a939db6bbd372c609218d137cb5d8254b53e066e231e0 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ve.tar.gz 281627 BLAKE2B 8fbe6d861003432a369376fc0cc94b3913db1b1f36f7b9a2c1f7cd027a5f4b3878f5448642d5495bc7a6ccea2374bcf76b599c5c45437eee61426c6dae2084f1 SHA512 e4eb46831df4f7ee2f943ba820ae3606f31b346da8675e55a684cca3decd727ccc2bfbd910eea7ff6b0dfe5071acfd97f4d9494a93298f133791a5c29f4876da -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_vi.tar.gz 465383 BLAKE2B 79d08f9ab00f379dcd9b133b1cc4db7de0544730d9e4f7ca0a4a869979f5f961c7e507daf9ab824fb721ed6b0442a29ebaaede46edbb12f4a3be97733d0ca61d SHA512 1ee9c8485ad4d291398f00eb49303caf21e839948db9b056b67c9788642aec433a39870b4b47d5112e27918e8081618dc8d29268cadfb4213d30942e0285051a -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_xh.tar.gz 290813 BLAKE2B b07f191d97ab084d1355a788af24e4c9fdca8bf6a46d84d46f90f77be2665ee8315ed2386d472c10ff96b5d5175d8d10edfda3eb998281c99748ad28c708b6b3 SHA512 ef1a291ccf21d5b2b671f91f0591535512a0e406b637154f0d55481fe9cc6a4f1e9cd8dd45ab19da115a6dccfbe53353285b07110fcfc8ae772c5b019305268b -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_zh-CN.tar.gz 808511 BLAKE2B eecd478fb0ab4e3b8d01286bdfd8487598971d2ab03430a8c44605fa462f4f0971f694fcbc85d2a51915e06aa56570d93dec7bb61aa8e779c640e9f309d5b033 SHA512 ca17006cc9a79cf8c04c313f332576629e458a93074974bc454cf359e9ca34086c8dcace9da29d6e57fd86cddf8ac776ed4c30a032c5c4c0c2b58d494329905c -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_zh-TW.tar.gz 808452 BLAKE2B b99e82d71d5d5923e694017720a8bd1723a95543b473caefbef82fb6922285699b4d27d645ba75d6e2eb13d105601b3af2b577cf39b678ff9b4abe5e53d57617 SHA512 c9d491b49f818c99ff631f6b91e9d0abf1751915a3b1a561da15520442596b6349f47769a1d8eae04ae7830ea374c9678bd7133c6669cd6aa8872e8eb7d88e51 -DIST LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_zu.tar.gz 321232 BLAKE2B e3bfeccd2586e786853089782a8dbae33d53e01ffeb9dc3f1927364e07fd8207dee7fbec322966abbe63b74768f8c6748cecdec4fa8f3314f4e5072a51bb9991 SHA512 02fa3add8b2fc5a82f8cd4e6b420c7c83b601fb6b9cca53edf7a537735262b1a6212c47fc7ba1c5b4d10e695428fa051522669ef88a28252813826ae945355ab +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_am.tar.gz 2494274 BLAKE2B 80aa466ebd897bf243823ab0b829152e496c153a3f1351b8581b7760dbb2bf7091b9ce365aa3b9611052be366ccbe4fc73a9fb635d73d5be042677f960f34e6a SHA512 66c5faa81abce6dace5ae5e7b7c00faa9b22b60159a35014a1024e949bb18b61f458ab5cb8a1f865f7f0c591e7f1d83282e689602d2f9b1442c380f51ef53ca0 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ast.tar.gz 2388826 BLAKE2B 61ccfd6e3333c2507dd530f4f509cdc1958fad741b13bb449f181a4c24fc61a697f49e3ba57af956b020cf69754c3384c964dfdcb5ad2c1152a016dea88e0b2c SHA512 3d1a5d7c2b66751c58dbbc911a20735b4bd5ee0d90497b9da137858eecb9d6f150b381cbb6c000fa95f134c436c84e878b71261f992a6789256f9b247c785cde +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_bg.tar.gz 2567088 BLAKE2B 66376d155ae1d15d427b0be02bf74d677eb2ddf31fb7890aa31420640547b83b4ac85ddc81358d5a8a3476b74041d5cff45026c53c9680cf5f09d88c7e340d21 SHA512 5fee8e5b865b171f374cab99424bbe07c597c2debcfc09026a7781e459e4780659ce877d41a0a87e28035271a0eacdb2bf2628a41009bb9e4a890745eeb46572 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_bn-IN.tar.gz 2578564 BLAKE2B 93cfe1205d6d8d3a894e68f86f4e27c7e12148b02f65e1572f3dab99e6b9aaf6acf2926e510c5e95eadf3461f08cfd2312f8214665d18cfb5dac5a0dfabc0dbd SHA512 f0f951df705b6fe3d6ee03402a2832d6a563198859da989b0afa8b194fbc5f0cdb3fcb7da442e8b81ad4682944892c7c1a2fd99f3e599a653e31dbb461e9c265 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_bn.tar.gz 2561328 BLAKE2B 923158dd1349af4714f831506af60b109209b1329dc246b78adc8e874635e44f1669f06251e4f0236b925608f4262e83584ee64b44239762a1b2f2afdcaf223b SHA512 f94fbb673e1d9b18d917877274d864d67e9c52c92aec1db808c58e435f83b92c21435400da049084f0a744a333af0abf16a96ba54597ca5e1b065676de4c7585 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_bo.tar.gz 2576429 BLAKE2B 461d4b91a8700323de66f8d5522b30f97ebebd9fc6572cde9b2d92cf9e4ee2b805da7a5446b514e023a2f14dd3f61e0da5032618c877c4f839235b25bace49cd SHA512 3b26e6450ee49bfe665545ef27f108f23a29ed7a3ddb9c59184c8907abb1104523662af77ff3d8c7c1ff2228d3f617ed5b7f99c7d39c1a7f46448595ffe9240e +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_bs.tar.gz 2302671 BLAKE2B 346484ec045bf8c3bb8e5fa5c106cc918792b45325dc925edfabd924643aa39def05f7ae2f0b21188acb771ac68eb3b72b654fa95a7ca908819acaaa96157439 SHA512 83d54d855f7035e1b683f33e1df9523201eeda4701a3286ab54d8947824b21b615eabd9da77424377f77897ea6caba803dd148564447287aeab46651b3205fe4 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ca-valencia.tar.gz 2380744 BLAKE2B 6f09ecaeb12de5443ee15945b6cbf4a19b60fa3f3c55764e6477390486618799760aac0c1cae12ff6533cfaf0edea2edc413aa7f3db19f11575954a36dc1e8fe SHA512 fe8f4a8c608677647e45c368d0f229fa6735c27a2199138be9e48f2b45b6a0f2bb1c281be6a2c5ae6bace6465f6fbf797dd1749cafc002144a7f6ae19caada90 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ca.tar.gz 2366789 BLAKE2B 3606763a566a39934323e20838af9cc22d808c8c8d441818d27a6630e891b618f8adfe73631ebccbf8df1d083ef272e3fc5a162ca45ecb0b6d2731c6a6009931 SHA512 5dee85aaac07fd7e9b86dfc8fe4061f1352d58cd255343c4e0fe575b739ebcd5903e523d8a8dd7d3c9ac64faec00cce0cffd8994e10a12a3d77717fe5809ede4 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_cs.tar.gz 2362791 BLAKE2B a68c28b46ea14736d752266adf78077ec3ae72a83f8517000e6542664d9033845eae9a0444e3227a2f29b83d3c76a6681bd7b3a7afd49c946028820dfd321af0 SHA512 55007cc341db7f66bbd7af6cb290b3a4aa53756bf792f7c08aa351fa1b3dfc524a3162b6467f548d9b4f8b38c10365929ebff7c5ad19154e500593aa01a262d3 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_da.tar.gz 2328860 BLAKE2B 58f22c03c52c7e471e4dce1b6c30ffc817db0b9e9e1c058488078842f25fc078b11ba533a15aaa7ba2d770edfae10daa5b77d3f6c2b6127f1160e6467e47161a SHA512 07f795298e0f563e417d74b5a84bc13f75e499aba129407838d01b3277070d76e54be90adbe0f61e635134c51916e2b46305b812d341b209d5dcda2538011ed7 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_de.tar.gz 2423087 BLAKE2B 8a964a3d57c62a8e6907faee316c1fd751ed22f642ea8a9603cba68b977027d42f9077b3610207a7357a6dcd86027299ce45c60b3a4b3bcd4a1881bbd04f9246 SHA512 625805289e9dcf4009a0bb4bbbcfe6db2e85e1aa42e234489cea8bb34c2c54d9202bda76cfecc36442b168773fbb07de60257871875cf87c5c9242d9fc16a689 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_dz.tar.gz 2732360 BLAKE2B a3e2a43bb6a25d63072dcd01ed4d423b874fa6794e794b326cbe62b53bd2e9a2306b2d30aa7126a3386c756ea4865b55efb8ad522ade64f10cb680abea4cca94 SHA512 7eae68b2e9542308a5f60a9e09145b1fdf6eaeb6bff9df4d4c4b44ba61a8538c1a40bb397f7622e727175eba681b903453bbada201bb6c589b61d3c650246c8f +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_el.tar.gz 2770595 BLAKE2B c3387eaab5207d6544f898e094e77f6cc445086000c735bcef5f21d20f7ae97ed4fcf7f7831b3c5d7f11da0855e46bb7acbe37a1ae3303c93f14f5e7e056aec5 SHA512 ae2b28bc7653ed02f22e68cfe3e0aa0413cb457fd13efcfdebd4ac1cf17a2742f87b06c3e802a44d2bf900ead4072ba3ec180c87f16b05c26ae68b8124744fdc +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_en-GB.tar.gz 2209915 BLAKE2B a7f9a8ac92ae1d6fd89262f077043d5d7d768bba28039095131c211f09ccd8c600391ba0310f8c04ec869a4f27ebfe2d0f024d1d4dfd56e77f5e5eaef861a919 SHA512 146a81ce01004d4a14692082757250258b8dfbb2170bb57d5b6e0932ecf9712e80d4ce0a6d5cc6d10139f766a50aa998d11f6fa2e94e6e7dd09a860ae3c5e5a0 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_en-US.tar.gz 2056715 BLAKE2B 1b61f11047d13f72012da7b9c2b826b66d1f74295c229d741fd57d095d9e93dc3a69b9d28847e1c1eb4fb9030a1b69aeeef07b952fe67aa2ceaa2fa078858148 SHA512 d0814979280021262b4735762d1d27f5c1b11be8c39d4cfa1fe847185f68b8bab62c96863f2a980fad3dee5d284e9ce0b019da7ea7f51ac835ff612053ac6254 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_en-ZA.tar.gz 2208349 BLAKE2B f392034d04f0ef0e52d69ce75d92af64abd8883da6764fec8c4ca7bc62d90f3e01956bba728c281e17dc9944d4b5465043cf3cb14eb9b4cf5224f340f5a5058b SHA512 fd82446abc1862d280f69ff7cc6cafe206d290914d8c6fa9c14eed84d3b744960e5fdf3dc4cbbe053bd3928cae8f969a6368022731cd533db31d4953783330ed +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_eo.tar.gz 2288555 BLAKE2B 9cefb0fbf4537704c4273e46624c77d845618612f77142e9e241a504636f9eea010751fae024143d4addec10688615e2ade81919a30b5d3afeb3cc98328e688f SHA512 bd12686eb012e4e0940e013775178456cda3a3e26a345740d446e2658b033b18a1e5f328e18ee6d90087e0440ba1f370d03d8c5007cdb104427c6f3fb1676d34 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_es.tar.gz 2407551 BLAKE2B 6ccbb2f04d7b3cae0612b0ba478ad5c3dda93cbc34aa668f0e5837380b0371c59922ebcbc745932c115b724d769301a852e83e0078683cca9107f0613745ec11 SHA512 4b661a16e10bef1cb8583d7908598bdeee66cce53d760e25a7ed28c2aa6b1cd9651992a6f921c619205c60b492047313338849e7a13c6c8270f4712d377b0ccc +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_et.tar.gz 2330493 BLAKE2B 959eb54f68e9fc7e642e88f82042abfc9faccbfe47a5ced10981c9f1dd55c9a8193c19a75035f4f523eb0b31196b4580c214bb5a65551cc5c9c39afec61f3ee6 SHA512 6d20e628f3a7eb537e25019128a8e1a2bc29cd27c4bc72594baee5dd0a62c78cd7299cdc5355c06f03182976ba4983070ee2c672e1098987bbe6853ac972b9a6 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_eu.tar.gz 2283298 BLAKE2B 7d03dde95b6e18be3f9d323b8ea2b7b6d273286ca41a18b118856176c040fe97b0b2cacecdd2a76e5ebfaa230beac7acaf6e8c14284fa9c1e32446ebda7bea9a SHA512 fb441c3f5e36dfe3d3a8c512cc87b8bf85a08caa7f5dbf683e08330f16f3f087ef50c94eb89d1d207301d016b565864f5856c81f4a8ae273a0d2dd0811a6738d +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_fi.tar.gz 2377868 BLAKE2B 319a2c08cfe3747fd87cf3f37265dae9ccaf8b312a7483d31fe3d92af407312e20b5d8cd4a7f5f28b1038af6df8b37fd6a155ec4abb60d2c39ecdf311b2d1f08 SHA512 b0039f99f5857cc28df9c33e02bb57f75529edeefdcad56c73b6b497446a37bcab337333251a69f76b4f9670a93de94dbce8767e9fd38c1622af39ba2b64e9d6 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_fr.tar.gz 2389889 BLAKE2B 27c6a1f6256dced8d2e8edd7c34597222b434af89863292c851729aa527302ec49d0081f7448071ea49a880547ec9a471a15fc61350c088dcf616f25eedff8b0 SHA512 a26d295f8f7a18e3c1d17113b6f0d85c5a435d00102a4e11102dcabd0dae82a1c6e976f105ce305b43249fe72dd27fc212148066d2ba36c36a621db7683545a2 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_gl.tar.gz 2367311 BLAKE2B b28fa6aa6cbb1d9baa961e3e2c997a70e71ef6c6a45a8dc5d9027175eebc4f34017a9bb04f62bd7abf88c2ac0b63f9e7ffe05ba36c511a3cb8fed916487bf4ac SHA512 688d4d5b02871a5a8e894c07caf0d73caa30368fb8e1d4ea6edb415b6292e2f37b46cb3075a17965be1d15568111f50892eb25d2f06c18d87b31631cf80c519d +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_gu.tar.gz 2254573 BLAKE2B a81e22bd1aa835e06944709fc5f46c3695a9ee82ccee73c6db585adc0c1777cd9f71ee882bb69cfbea7613dcc8e181edf1e896c36326117549a57357faaf9156 SHA512 cdd3ec3a26d3b005effd710a44d45580a13024dddae49e47147ac63e0e190d2a1f6fc4a3deab4689349a58879ba5c2f775562336eaf82695f184b1a751d8d5fc +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_he.tar.gz 2147797 BLAKE2B ac0c503cc5bf803fe23efa9e58b0abc670a2b0612a6f673817e03aaf380edc1c2e94e365d96dec652c69a296b5c8e2e187c9e8b9ba5204e150f2aea669afb09a SHA512 22ce96f7b86bdc8d09000bb09c605194de578409e4b6800554e1f705567be92a65e5270ab58151eac0893fb0d89b520b94754e1c4c6e6caa1f512b9814204995 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_hi.tar.gz 2358902 BLAKE2B b50944d2ed47398694500bfa40208cd546c88098cbd9adb1e296809c1102f5b1be7c6e13a10ad51394fb7620a0cedaf1033d92a8d7ee46cbb5f408a2f03e2105 SHA512 11b0c9951ffe64d13cc7a65f965e848f9d28d97f7e5eedf9668a4c97199e057dc2f8c9432735da4b0a69107645077ccfbb3b11b6f3aea4dcccb84825adef7cd6 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_hr.tar.gz 2263147 BLAKE2B 53c45eeae2d52ed797b8a852a8747f952a85e5cc74575713c1015c6bbe896ddfad478cfa4472f69d98e02181aa6770e529100ac7ad136a5527f2e1419ebf8d1a SHA512 0dc8f8ee6ca2863a08d8a7e76f0c1e3c6338eb9b2ab66af70ed44cd8393bb073b39d1f5c0d645f5a26babe0d9e25e38ef4e5039b464dd3895c41020daaa08dee +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_hu.tar.gz 2488953 BLAKE2B dee633bd16fb4269a98dd8443ee306ec14bdfae3648373a3696a2d23b978a107554ff93c0b47f12e2539ac68225f68a2365b39071d21c184f7d9c7b2a6387a2d SHA512 58e9825c673a1adc95b4979da15d3db76f7e3e040614d9f1481ececcf8a8efff9f5316f748a227b2dffe0a0fc588288102404af6a3b393a4ae47ca20dcb6e974 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_id.tar.gz 2263224 BLAKE2B 3e018c8a042726e4d71cf774f96a442e8e66c7c3ee0b31e8ec354843c77ebe27bf0321a4193236bca5c00e618ed42b811bc5bca224381c79a3ba67999ff5e33d SHA512 d115ac18ba7ae97d2918e83a96acd942bfe6079d3f993214223bb828b01bfd2c612d1c4b6418e958a5cca125e8396ef3a9004386cf38c31c380aeefc0cf44b70 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_is.tar.gz 2285432 BLAKE2B 654664b60d058afc09661099bbfa07ac062a236207a258f32a9fd31e063657a88c7f812772b987eb51a7efd1bb03cea7292ee3ef2a164ed04424c801ade17acd SHA512 1b20b0314a8dc141e1dad2a3b45a69f8303c98723e23e4732f68f8585adb2f38c08469d82bac4bd4ea431c369d4ebb138c0ade36c5068f17bb4195cbe7839c0d +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_it.tar.gz 2358373 BLAKE2B 38b36f79fa044ee523e32ccfdfb536f5ce02e14e6bbdff9e313e824e02126dd6361265de004dcccfb75099a58f444738d103ec78149ff758794995816035d931 SHA512 9682899ba656b555b7170a41ec4cf665411c42cccb553b26399972749efd6ce45798f95f816ecbae47ccefdfa5a52c2f31a74f953e02a3ae1e59f88cbb7e5102 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ja.tar.gz 2526519 BLAKE2B 30cf05eee750fc59b2edb73fcc86f0d368ca30682a374f3d3e0bbb86955fe15fb757f774d16d31a0b982d11df6b261eeaf94260317dabf8bc9e01ca077a521b5 SHA512 2fa745471544b646995793d09d101d45925dc49862d78da217e23022d10691f8994f29e2d97c9e211680a5e0513a4a3604ce84045f4b094c120d99a02c6988c8 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ka.tar.gz 2388591 BLAKE2B 6be62eab46d77e56dc72ac47ba15cc104f587f4f82ad79eaefb4faeab10687b7c15c935625e4998a6d9e5c211d1a63c8bfada891205b9c5be22c0c946da140a6 SHA512 a563f64af149f07d3e0e1269b3fa063ba82b2c10d117f58db9f60b37f87256ebba9600c294369609ac8239eded195c00db40514c80f2861ec105ec1258d61c25 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_km.tar.gz 2676681 BLAKE2B 11f5ec67148483478fa2f40ca82f93340119a944720c3ed27ce2cc6ba2ee5db420b44bff7b1786a87f37d4669c7e45bc6adf653032a56d4ff8e7b13b3c05f43a SHA512 5ab123375f9fb56d95c2901e91980b6b88330253845c9bbb569d36d4f9e6777ca94e90096ae4a837a9bc56176c5b5206e14bc8854455e9028f45a357f1dfc2e3 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ko.tar.gz 2402861 BLAKE2B 7dc2d061fad17bf6e511d186d434912cdcd1c33ac4c1be7c32bf01d3c5eaf87f2fb985745b41faf1238d7e7e3db4aa33d14d1bcbb44e2e522318435be47d4006 SHA512 3997af35b7a38e1955fa23706f3d1e0e9f269706168c35adbe9c8fc0fdbf31757d0581e970673de9f64313ad6d95cb28094890bb9f2fb10d229d80bacb3c421e +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_mk.tar.gz 2376408 BLAKE2B c1e912b60d402197150b08cf88d386518cdae51704fe09d8639177396e3e877ea962074cff141a7fa8f17c782bbf3801ae3494509b36a73bffa1aec96e99d268 SHA512 f03738a30f30ddf63cabf10917b5f3704ea3fb0e2849bbc05684b5c52720de0c7593a40252c2adfacddb9ba2532a12e70f5990304e04036333e030542447fba0 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_nb.tar.gz 2310857 BLAKE2B 2ac2d7372ea8ced407bfbf95c346540937bf210dcf4511ad8b0cea07f401292176b2db2d99b61e0cd012b8218c3f2bf52cd35876f46cfa7d27765481f5f29a7b SHA512 92d172ca897e00a735bdf84f6c5c2af93c346d518c232269c93bf3ff0acbeae30549951ededc7f22083425183662aa6091e5daa3ce2c47dbb3691ee75ca65098 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ne.tar.gz 2600600 BLAKE2B edca50aa4e0a51cff28c770923d04deb5b0ba447628128367ef22758e7c5b2aa0701becc1303fc6687949db9d098f9bd76b060649d73f922ae3d1176206a986f SHA512 6cf646c6f514b6c9c0c888f485ac81c8057e722d6bcbebd91f909c757db57f5bdc89fc6e830bfef34d57948d589deacb378c7783d2af50fee03937bebdd5fef5 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_nl.tar.gz 2357209 BLAKE2B a3c457f7339da0c5cb9695541198d71b4997c046cb9f4535e1a29bcd66a7e9dbbe1f6f9d43a9fb1c2d26c90e33dfe47d804e55583d95ad675688d30c34f3e482 SHA512 b4e4bd661a6c146b1d94e53485b6b626cf1b845de8534b3dcb7672c90bd81f328a05d4ca379e2b21ad66276b8966a0326dd793b212538ba38e0efa706da10da5 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_nn.tar.gz 2303428 BLAKE2B 1807211e7a6f9122623cd5a91440eb2007bc0e49445f4e8755537d5350e82686b051d836fbc860a40046538843577865d0e5a6517752dfd71979071009e74c71 SHA512 363b11312eb54a7c9bf1190f244a9a5cb79211c87fae6daed3d92b0ef244f0a77b414f5d6ce9f559c1b3da65b87eb852f7d8b283e36a56de7f92083dd0fa94ae +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_om.tar.gz 2393884 BLAKE2B 44f11fb450eaee211eb844c35076149b92cd5469345becad5ad4373a3a0616e023e2ea5ed3c988caf60caa2264af6911cebf3772ef0895645a64bd152fe341cd SHA512 0f59c7fa56ef20d4b6e5ff71568eeea9f21e922f957b323459d3d4418de74dde567a53a976898c1dfe211485e9bfefbb55735ad2669c8ef6e063e4aa2add8ae5 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_pl.tar.gz 2458457 BLAKE2B 3cd748330066ca2a2c5802ee0aceddca7bb68a1798d8642d3cfec235fd922ef1205f15b8ea35a0713d18c4dcd06f676124586563f19211870eadd0e6bc547c0c SHA512 32404bf0dcb49626593d85dce3a95c6f5497c867a7ce572af917de7242914c32d2abc181ab17f68a3bcf445a242e0f479605e9bc4f499e8de5b53a055bad03f4 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_pt-BR.tar.gz 2376026 BLAKE2B 25d744ccbde074fd23b4ad5e234ba929a4c1693de87d1a1bd5606a4c2327fd519c84e498d2ea10d6fedf97c303faa1747297711eeed140ffb5fbed811bf2466e SHA512 ba60ef2f1654060b9c3213dacb7de7604668f0b3fa07f83d7b7cef500b2b6c5bee552cfef01ba951b6570172ac9b48b85bb746da60e4becd3ff9a32803418aba +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_pt.tar.gz 2340756 BLAKE2B 63c299a1e5556d5951baba57235a11702166e2fefae78acfbc8c0e6113fa776e1fa5fa4c78d61afd2e029d733c441c75e0d9433c8d3d4294f67610c1bff26bb3 SHA512 bbe0c95ed0227cae65922a6d24b2fb89391aeaca8d9dd51fafc35ae7f12db1a053f9bdcdb248f78465c171220f549de8b26c40657b2403aa628410e860b55329 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ru.tar.gz 2637650 BLAKE2B 405239ab8db17aea60d2d0b58749318e5b09b653a49aad7941bda7316b035af3f0eedce04e0282d92c5e74d778826c2bfc9468fb64409a54062179c32c493995 SHA512 2ca0065920f334537c19fdac947f367b2e0a1d094c283b208ed266cae578ae3174f108180da31109be0f9c4f59503b643739c355b44931d164ecace8dfe0d77c +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_si.tar.gz 2345682 BLAKE2B b6bbb8cec778d97b2c0883b00d3bd2b4af71e8edb08db8e1a937043da7a511930828a0f36bbe03d305a64dc89d36c34c09bc40078f7aa5d2f6b8ee2002c2420b SHA512 def2a4ff59e41f43b747968c722eb0d6dced6e9aed2261d930d8d621d9e1e1f02bbf4778d5563dc87fcaafcdb14fbb64bbcdb18061a5cc8482db42648ffe2250 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_sk.tar.gz 2399880 BLAKE2B 0dc6ea21eab9f394446ce33fe79d66efe2d12094450f63843b4d63fc6f9d4c0641b200742643d64f1fac5848af98e78e61fa73e3401ee61ea446737f304849bf SHA512 000fa62ca1e83e2e946b6300582b6c281df9f0763a46ec981d23da098e7e86e4f273924914eef7e070353f140e7f075354337146808d552003f866f15df7c5c3 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_sl.tar.gz 2344853 BLAKE2B 2aa9bb464d8a3d3fe97ffd6f9aedd5b421aeb7ba1f3e0a3aeef5895fe5e6e42632987ceff6903d4bab8edfe1724d9f0b614b1ff0d964196fb598d494949853f5 SHA512 aee086e109a7f9f988e2e4ab72c8cf7f0bed19c4097dd4c22d64338e525cf355ba8c9a5f387bf41f5ef3226910148bbbcc6e69b4e79af8d0626e1575a12fe380 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_sq.tar.gz 2262769 BLAKE2B 3ccafcbd56955c1c7229b7165ad5fc8672a06be90ab70a864832c4c68797f2bedc9aefd77f074f4dd6efac89412272f94908fe1785ae66478e70352883d13b86 SHA512 c5a9e4836240e107f90697f100a5df6c8245484b0cc67be28fa36c50cc8760ac58ab5181101a3db3fc242c7ad031a25cfdf9d952382e26d939c5dfb5fffafde9 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_sv.tar.gz 2343593 BLAKE2B 5ac5442128e5dcffd92896ab720f25df5f0309b053bbcc7a78d76faff3228155c9aee1ab36e2028451d51ce23795a87785f26c27383fdc5ba18a2cb2a8f080c0 SHA512 9d1b4113c6a16b658c0b05d05ee315e233b9348cd8698fab6436a60b00d86acc182ee068cbcc0dc8f1fd079306a9f0c4e70030ba975fb31eaf46373af6f26499 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_tg.tar.gz 2347122 BLAKE2B fd67cee10b59ae94563cb0d36e528c693560f93c630db44ed3c1c324cb8537a1bc8cc8d324ae60cddbea4f29ddb79c346d8ede2da6c5b6d735c56871837410fc SHA512 4728e45b5da96767b5355255bf1255904cbecd6e42e70c0e5acce95f33b154f0f35459e0b2051d2d7517af844ee6a2c51400044c975c30f787c70ba260c13f45 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_tr.tar.gz 2410988 BLAKE2B 0e274789c274854ba921065fee8bb515dbd73596433eb40a8d208e59f0939032672d63e43d7d50a059ff70d175f61c238f17f974668e1fd8f43c94ffc448d21e SHA512 c2809b90571ce6e96fd0ac67d7d4dd44f8e4711dbc53104dd2b00dc4aae7abd345626c8bf70a02c090e7066d0a6a4d3132ac96d0390750aac368823771147f92 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ug.tar.gz 2313116 BLAKE2B cdc68b002b0b654adcd52e5dbef0d4465136e89290c1fbb39d191d8ed99277d79548a25dc621593ebe965c0ec0f916a1996d62dc70499bd2c7c83231dc96b0a2 SHA512 b4a5070cd377f256a63269b7be59aa74eb4aa330aa3d54910b38fc89ed9c27ee69a21b4d695076a3782f6c14ae687661452cefd0ff19cac749643dc68c95a398 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_uk.tar.gz 2593024 BLAKE2B 825870305b5270adb4d20797000118a29293787983296e97874ece6adf4515df7524bed13133c6cb46eb299080c7c0a1f53902537ffe98bbaa15649e80394e82 SHA512 3717e2d1de8205298a46eca6a8f477f9a4015e494d1a8000b15f2d7ab70a60d1278e46e3195434d6395836517a8df10393c69c54a1b91c4b36e1931ddc71d728 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_vi.tar.gz 2399473 BLAKE2B 86ab17c7e66ad859371215c32522ca3bc0b5290a1dc79f5307e6eecd106da6cf62eeac70df0ffd8e4157bbbcbd134f660329fead028293c03f17fb14f84102df SHA512 c92354d4124e222ef016789b7dabc41954aa2e5197f50783ff6bca75d7079f5081de8a62a9aec4374de027f3e3ddeecd86ceb41581bcd267e2d37592a4c646f5 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_zh-CN.tar.gz 2339439 BLAKE2B ee9c81f071bdf9d2a3c7fe7591d6d5d37a575607b5dd60afea08b7f1c5cf4217b6b1902bbc9565e9e0c373967540d02d8844f1356bba01d8d38b7f45ec9ae93b SHA512 cd881baf7df8e1e53629fb430fcd1542f590a9d51379d0a572e9103f6388f6a56c79f62f0b2b0f086f4139d5b592b8f1f8308db0caaff55bf7dd65f30504ce4e +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_zh-TW.tar.gz 2436855 BLAKE2B 92148c18f0082f95fe56e22ec0d3fb9ad21078f61ce8f25cc2c8b80be09bd307160ad96a5ca98692c93f15afc69a28fd578b9567635ca2e7bd3670cc004d7595 SHA512 1e15b97e5b6e3a71b78c1b612dd66b7ba736bb154a2112be382602bc813eefd278a572cf7db5b03aa2909f96b90df875cd242f9cc209765bdaec03739da8e4ac +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_af.tar.gz 1018506 BLAKE2B bbc57fdd260022e3c1489f7090b0ed882292aa4f58e332cccf895dda897a932d3c0d71c920fdc5f419113945a9d12bb44c07813c1c23920f4b6e3910f71f16a4 SHA512 5a313d9251f6c2411a54de729224a9605dd2eb70771a1653c6c88fc3faf39bca04cdd88b019949b6ea39094d270290e5bc1ad838cc89dbdb83709999823ce42f +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_am.tar.gz 763534 BLAKE2B f3983204ce93a3263803c095e26879892c7234945e23e64f4e95a3270395619f5dca412341bb2f2ff5b4d06bed862f5d3409ae4d8014fc26325df603394482cc SHA512 d0be760b723f47e2fbe7437bc8757ab75d6d6cdfb700f68ccf8555ad315809dbdb77c3e35d1210dfa71c6a869ed6c5168ca838ef35ff00ccec90a04ccb972d25 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ar.tar.gz 2414693 BLAKE2B 0543ac3ebfe9eb8476dd1f9ce8c109ea159449a4c9f89bbc8df8a2d82e07280e0f05da3d664556762661a6bd3213ea8e07dba79f3d7cd4911dde75a7c696db96 SHA512 3cb53978940f42a9c62c02d76b7f44a84e1731f14b74c1d08e2e7dafd8774add400cfa5d2ff9fc4e98dedd71ff2122985a63520bdf07133889463574ab0b5892 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_as.tar.gz 531449 BLAKE2B 8579af71f9ca3cceba5f3a82ba5f53f02b7038e84f4b7709a2653343918db1b13c9fab542432b2d8b0ca22e6d37872b64f8af741309a37334b6bdd665fd1b17b SHA512 473935f3ea03d4fc235fd384fbde7864dfccb64bb02dd122868d785776e556cac1fd0938a2f281df52819826d0eedd6262dbb6ab52790fd0fea9a20e3b4c68d7 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ast.tar.gz 440720 BLAKE2B b234d9e35bb31afb1e1baab423429c83126546204a11efb887ae108ba6d665c032979baef586014587706b097654a8b7322ae3e2817e55ecb55b7a7741a3db60 SHA512 6329da5ffc3fe90a68c624a63fe6e96f50b0d245078c3b976367d32fd9f6b9bb2ec0db03d06d332dd5b11eb4f392203583d71bfc56c9191cf9975f717f3cbdf8 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_be.tar.gz 1055783 BLAKE2B 575b6962fc31e284900e05e62fa8430eaf1a44e8e04e0cee2dc5ac86096bf5d8463b36c151a6d6e92ddccf813a1a5fe7949e4f556c94c460ee4baa31556700f0 SHA512 e198921a5ccd68096c828b0c27d0e75f1aa3a6eb658a9494eb71fbb35bb36c131a24de51d76149b5e4dd5d780f25961726083f740546a0da070af2f70a0b5a54 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_bg.tar.gz 2449064 BLAKE2B 94248408b2308b5ddab790ff324ff177c7ecdd921aa2ce18ec4b606821bf18840db9ddb673bb42d8bc319a03987d7720d34c76c300314cdb69a8d9f237d66a5b SHA512 afaf9b44ba69bed681930d1da2da1e6acd4d0db5bf8b1ca92caf462ac96da28be42e3d9330723e5d8b0190d0aac2362743769efc11fab64a312ffc75555a25a4 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_bn-IN.tar.gz 649597 BLAKE2B 297b6117e988621d6416b46bf7a5125322705213860545019980d6c69c4d1c1b691cbaa4405b742fa26a76b2aaa517e4ffa09c148292fce1a8f028620742f6be SHA512 7ee0c6881446f98629fbb44bd7018165b25e6958cc1c5bd668eaa29a5ae4bd9884ba9e1cb42de71987bcb27493b3473de575ca9515374ca6b3dfcae29661155b +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_bn.tar.gz 789499 BLAKE2B cfd034d8e4da3e3ef71349bac926021e23062874d4442d0a561030d158d2dda3c291d14f604cb5d538e0baef1877fe9e71452904230de127a374743b5d53ad4b SHA512 afad871766ee41dca8d72296035b2d43772e4e7cd92652cb502c45025878187796aa7559600c1a50efa606768e80cf2efc0f9c358eea7d86c984ca04f818352f +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_bo.tar.gz 380816 BLAKE2B 4cf9fe709c6a45e9bdf6a05e423175081823b7124695d9711130350f6f045eaafe10f7211034338f7bb063a8856b73c6f81f6648598b5ab731b66e31f98699ce SHA512 292cd8be983bf22b81a09351b4355515e06bcad3b8bdd416f1abdabfb55948bd00167fcabd9e7fa0591889a55d17af46ab396badaf8791efee3072d3ec130eb9 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_br.tar.gz 1537928 BLAKE2B c9ffa50d59922d29bc151069b172f362536c0ab3d90d094e3ae0d7aaec414af987f88dbf280127a2de16c1964c97ae980fe355089bf06b069bd34b2410044bc2 SHA512 a16157ffdbef8c305fc696cffd17732fcd8d4d5610e5fc1346df46daaeceab55954cfea4b45e9469bdcd8874609003109b9ee255aad86e6ed6fb0e765b0537ef +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_brx.tar.gz 337832 BLAKE2B 555c7fd7c324e157a4b31c2f9bd4c85a17662238299711489f876f7aa06acb1c04a804f241a41e42726bd2965d5ead9fbd2a48f3f7a0d6726a8a4082a6bd5ef8 SHA512 7c7f2715c60e29e0c8faf1c1279e2aa285ca9c0579c0f09e7e009dcd49f8e26278ac246ad66522eb47ff6378bb04a6d67bf058b36ce4f630549ac5adef9ea472 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_bs.tar.gz 637322 BLAKE2B f9714be1cc2e6bf5d2606bfb540a64c1765926f863a09b1c6623f03c4698abfbc0605fdac40878a7e38b2014920034597e49e380ff5c604f5bfe4ab250b206ed SHA512 af5a0897f9c78a56ee58731adf720b8996f41e6f8f5ddda6ee98041799d1a0440a747d285efb48f1883c4fa68adf918e5d35a580173fc5279a00d8e1454a284d +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ca-valencia.tar.gz 1973324 BLAKE2B f7644c0cff98bd4ac58d0bfac86a06bdb1e66f9e7473cf920351673d8f547ff9fb30a2b8195ae31bbd1ad3b2cf1b0e89e4031e0629334af025b0ed329bd45031 SHA512 1fa36a036c0ddfa4391b23de2f95c98ef8fedb5d52d955d32445b62684ecfcd85618df080b0fb44d978bbb639d6a08ab21ca0a8508dfe60e3975f85fc14ac9d5 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ca.tar.gz 2019784 BLAKE2B 9ed120c18b08b9b361b748d8cf37aa02b1396ba7bc2921791581efbf10409263049e1126b6ac1b83e84bfa61dbb82bcf7c04a3183284e265be3be164084336f3 SHA512 db186a3ec6b293fe2a44cb105609dde3ee74cf06396ad1c5758207b8eeef7e0ef459e53efbf6aacafaa2b94db8e184f003984082dce5cf69a11568dd7e2b904d +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_cs.tar.gz 3190512 BLAKE2B 5ee2caa393355f97bc8cb0f05681311182c699c5607419d8e6f61589531ee984a4ce8ae6bf4e540c0840b31923a84b3e331a9230011af285cde3989c1c39315d SHA512 fb537d05ac0d9e581187ffc141ee9aa06b9f946e6827f13c3c731d992a128f166e81904544570974c544d1b7ad92c64ab70ba4d01778f7010a04e12723eba71e +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_cy.tar.gz 724387 BLAKE2B b28e4be4783c32b086edcf47d568da1bc3f95ed6c588e5116e930e66f08f73f20d7fa4c1064ca78a6eb0b2a5dcdce5c593e22dda0c551662be555d2931756012 SHA512 80fc3868542012494acfb1e78f7bf71f11472f6cf6c7fb0f4f5c82a5e04c2591dd9b250141b4b430cd7776bf1d23eab867bc6b5e47e07f7e947331730f244d55 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_da.tar.gz 2629104 BLAKE2B a67b177ceb7cd384d42d81fe3206e9e23857af28bb301ca89eeba5e524983b904eb4e7f7e6285e2bcfe839b6a7e4ffd67dabc86001c2e616a689e6f5d70da118 SHA512 b76b9c0bb0817d1dafd05b170dd79221829c016a465cec6e5f964dfd8bbe088c6e01dc816c36c3b51ae4b6355938fc3df2f5f0f37f8ea465da30bfd1e2a6bdfd +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_de.tar.gz 21757542 BLAKE2B 147912338c31183c74b5769f2e39085b265e063a53133151f3ad45689604a0b2e3ec4a7099535257ef1137641f6047fa58c8516f033c4227342ebb1e6c43ff8d SHA512 a264cb6944c72d5194de712cc7653a7d3ff0cfa8f8dd2ad6cfe3002776b2bde353c03661c2aba331e7f37ae36407fde09a7bbc40c72962e3cab7bda7e47e7ea0 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_dgo.tar.gz 441026 BLAKE2B 985ebae4fe6658565836d47972c4c44804b66975617e1979746acc64ef7725dba9f38bf6ca0af47966831d90e1118eaf819929acc1ccb516019a1db40171e094 SHA512 1d0fb819368c4cb6b26d2ad8f97958930c8175ca7853969ba518c4db70914592eb3befbf2306ec34e97b5c4c4c0c4b95df2db3b4b9fea1b122d5de336365e72b +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_dz.tar.gz 367860 BLAKE2B 55b587b29c44d4ea09d6f2e3c2e03a076dbe740b2af8f08f64f98f9b5ab2cfe3adbd894017572a80875a3875dfc0fe55988c4d838c21d7742113271dad2d0fbd SHA512 baea82086aa7b062adf5a04e261afb2357fbd02c3f011857c705d9c03b0ec1453c54f95c9d65f3849d7fbf31cda55dbdc7eb8bae5f9ff74de7907261722967ef +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_el.tar.gz 2828895 BLAKE2B 35258166dff2baec1a0798302d2321a186e266243ebfc29c27f85b0ff377b84bcafc65c70cfc8075833244df64a9102a516e11ca3ab23b3f9fc7cb32c532e61b SHA512 4fc20d644b007e6683261c22edfe521d034fa764a68aae7d335c3d50d45c7291f55fc68485aa1e98a203e42de675f2989f8d8e7e618c2500e423fedb52ce86f4 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_en-GB.tar.gz 7337360 BLAKE2B 5763158012b1288de54784057d9557594ac702dbdfc2e835c305b16156f7194ae977a632582be2fd253fd1db7dc33154d71c5803c09d2ac7a338775aee6963d4 SHA512 e463122dd02006a8e16412aaa74203c02d2ef4849a6b9fe05b143164595de05bc64031ab7d70e628223d289c6bc39787270aac7fd240278dab32e2eacac95c17 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_en-ZA.tar.gz 6924371 BLAKE2B 1d749202c7bab1738e69e49562317c92def4258523d66ca651e2eb3e570bd39d7e84976755ccf2452e5bf60d9f9378e5728b4e991ca287f4d72676dbb079690b SHA512 3cd6aec6fd0e0bae5329631c3ab51f7bef29a1ca289fcb2c1a289398bfac4a89b5b1973c597df35bd0f06a94bf36fd33abbbe380cfee2aa5f586d09047ab185c +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_eo.tar.gz 720871 BLAKE2B cd5388551176c225b8f78215d9766f4f5bbaf08b6075b08cc859260f2615df675e65ec983046ab749f78e26a3fc95de9242ba03a736f2bd9de2c98f9d2c93409 SHA512 706e860a23f80d9edf51eeb3f0028b082f7e2aeb3cdab43ec2dbb1109149eec308b77cfe6eb0e97c339da154d20c484216efa7846ff5bb955110a1c5b84ee12d +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_es.tar.gz 2241549 BLAKE2B eabe20145f47728606384377bce5961c9bd0991ac5b44834fa6de9f92d7cdd0070e7773332546f7f0b4bd8644d497e2b6888cd4e77ba338bafac35d513a5427c SHA512 7c6993f06ddd7b8b4f65a21da3608c388d251b643b0ed257f33ba70b1aef07a96fbefa4416c431f08cf956b3af8ecc3360ded1b503795f02c7e979e52a05694f +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_et.tar.gz 1633822 BLAKE2B 9c1fc7cccaf484cffe977be7a9a57d84657a90bab3b14e4be44ea11f7c459da58c5849b50bc11e4f4e8c13192a591079147c956578656b660ef79c2850539642 SHA512 7dfec5fe2070b68a8f98e01e664152130b80d2be5dd8d5e45d1d1679ce7b66c8ed79438585d9eb0d1d20ec86c1edc2ccfb171f2be724681d8a09a767351fcda6 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_eu.tar.gz 729316 BLAKE2B 5c3b7aa7b48c1fe3c8e9d7e04042db4bf4c4cc9231ffb9a3935feff58ca8ed9d4c142ae46fd4021f9705fd3a85aa75b3419249a2b903cec0f4a927fe425df68d SHA512 d077e185c07335aeb508ead9d1b883eee358b4e5e3bf6860ffdb1df2260defddc50d762e34dd68a282b40fb742daadd651b25cfd5528b25c6edb5b6cd3d58afb +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_fa.tar.gz 332919 BLAKE2B a05e3857de920a1f8c9368b8f73bef6fc2339d8e91f8836383a406b12f1706bca17701348c5672d38d49185c1603021e138429c4e17d28e100b049dde4825f86 SHA512 a7c7e69286d98d24b1cb36f1c9b3c04564ef7a5bc6d389b0adc6e236c076cdd294436dd5f2a3d1a0aa4f0b0e61621af635f992f60d82de4381c23cca2cbb5f3a +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_fi.tar.gz 706543 BLAKE2B 80bace928d779eb328a99073aa902756197443a2d702eec5f18914ea87e1d203c70287f9b40d2d91e9c25f9f725f7bee01d994ee118554db013d4eb1a817581c SHA512 8c37a311d2c7a8abcd10c5fb8d2ae81a668261dd029e308f08e2194fa9ae34e72139cd5dc65d5f8b213246ae8b027a196975dd5090b2d8c9aa6906b3c7a3046a +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_fr.tar.gz 3036038 BLAKE2B 3995d67710dac9bb9011139e532f4e5e70d91340b162739e4320d7ec2be15d60a6b4ae92a7357fb5ef9641d69e3ada74895138034153d92d8cc1bcb7b5d2c85c SHA512 98f0ccc722f718e44b191b2b8ffc8dc450753dce0e6a924b4f5d4803ae8fb2f8523050d94ea8d6e6c3160525129d8ced22cf359bfdb5fcb277a8125cd430fe55 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ga.tar.gz 742386 BLAKE2B ed2a67f12bf6fb1748e1402190967f0eaa7ed86550d5d68971796538819d8c798b9dfda9387b8078efd9c338996f6f13abba2b498a6268fefb566806f25c57a7 SHA512 08ac3b5cdb68f381d1fd471e1e28d48385da5b0c41598e315eebaf6cdd1567818aa674e5a6585ee2eb96b8a2f95385498ea992b8184b34bfb26958aee7c7906b +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_gd.tar.gz 1781487 BLAKE2B 0dafabb3056bffd946314967e926ef9ab8c72209d4efd92bb531ac279dc79827b1b9e59c55953e22bb3d2def3a03834184a5d90482110ea696e98deb3a14935e SHA512 c968d39a66291ba536fd14aaa1e4b492d8d6f45b15b1874704f660c934cb1b3862833ae1003bd33605f49a136ee2b65c950a014b71aa5ecea81193dfe8463874 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_gl.tar.gz 2620934 BLAKE2B 4d5adf9eab478f778566993b39de81099b2079cbaa51826c2c48df433838c4a29cd351f597f3aa270e419ec5cd0249f0516fd4b2fd4b44fd6761fcea04e37532 SHA512 5623c0cb1f969ad8ab56d4e83ebac5bf67d7e79fb119e496ed54ce7c76aa2016919725fb32772180884922a10e5466382d89eae57d6b50219ebc127524813f87 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_gu.tar.gz 1229414 BLAKE2B c42775489a51a1307bb8fc635eceb3ebcbd5d87d258ca57a821c1d1c754e90ab78e7cec7b56c9213bae255971fbd7b6465cc3089cc443e636ad7cde30d99b871 SHA512 4f40c528eb7df030da15ec4e005d4c63227f587830d2da6d5e1fdbd4d895511d06495a14218fb35a9c894903fc2ef28ec5a3b875bc84db9816dcffaba2c89ee5 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_gug.tar.gz 509201 BLAKE2B f289285ffbbb84ca5c1b3c81d9a21e88d4f60a357ab88d4ff304422034eceb9bb130cb9630569da302c9a76af93d2f6c7d320e3a4b371e647de7f0a1254ccdde SHA512 5a12c31ac157362593603bccbd87cc663b35cda5c8c4aff0bd93bd92378f12730a78352a6b5577ee140e3dc8860a8eb8aa73412d1c9c2c1d725d4c4b7c3b8a0d +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_he.tar.gz 1622140 BLAKE2B 6f06ffe43a2605f3bd359b031c015abb0cf785f744611efbcbd61e43fb704c059ef84cc24eb3f15e0c3adaa321c8b28011c79341da20b39c49896fbd9252c2fb SHA512 d1e55703d8a2403285178586b43dce156e41ab4bd3a9915ae2ce6ea6a76c5edf211e31cc703fe1a39fbf03cc75b7adf908855a7af3725be888a87389e2eb8da4 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_hi.tar.gz 570904 BLAKE2B 32baf9805e5273847c7d16c28d70e46e9cc1dc37e2b86d0449e4f4c41702122c80c10e01712b3e285b5bd70806d039ba86e5d65d41f83df9e66bed86cf473e0c SHA512 df1da8e0b944e074e5aba3b45a87bc00df315432b360bdfda7f9c820e312b12ea3f8458027f82088175d38bec656ee7dd6ee9e020f81126731d1f8ae247fa2dc +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_hr.tar.gz 970894 BLAKE2B 35ec22628fbfd56a7988b706f28e698ef284dd204d0fca278d5e7c18bec52603fd26d21f9329bb41803cc37c8760b252837e840e3acdeec3b6f497d8be268410 SHA512 35f2447ee2abf3fb4ce917e40052642b2a26b99398700dccaab80665b539b046a9fec9ae1a90a8da1de82fad6fbfb4bf634427776d8a8455e0bb33cc331789bc +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_hu.tar.gz 3017975 BLAKE2B bd48f5c16164281310a2f82fd9a831c239bdc4d9ff5710790fe967b04e706dc88bfc4b8fd35edd824d5c2f9595b911a097b6692e363e26279bd3d73ae3ce6590 SHA512 6ab386729b885dacc01bad1ba014e4fade8dfbd677fed6f72acfe103077fd5d3aac17db35a25a5cf773b7ea20433231c5f73533f9c836465f2e914745e53867d +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_id.tar.gz 1587167 BLAKE2B 4af2baa6e344c5f5f9f702831fd5de36fe3015a1a93548371c742913b1285656dde3f4a2a6575f4a055ee0fb90cc96f56331f3c8f4f5b5a41d1a7f76c69d84ea SHA512 d35d02f61a8203e3a4259edd69e220e2cba5593f0ed63279d7ebbc3410cfcccefd5c0dcbeee4d06906b0d3574242dce658f5e6e9e8611d44cb5c8c47a973a053 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_is.tar.gz 1518324 BLAKE2B 1317056d38cf678f15104cacfe63006651e933a7385b49553a2d96d8933df63c3e58dd32f7fae8b7e200a272640334cbec91f7b9dd5e99e1a2864b2832989ff9 SHA512 76c7b10ebbe866dbe0d3b75defb6b2e941b32ee5f98b12b03ff589b4e9c6605e963e132b525180f07d27d100b2d74637cd353d22009935fab37bdb38a6e250bc +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_it.tar.gz 2069465 BLAKE2B 30aa7d8dffe5ce1ef520c9234394b11f3ff7dd3e473949e8ea4461b6a8618b9dec4f8716a4b031e9e5fb3a25b3146ca57f4303a792a143162b23cfc12b2eaf66 SHA512 5487990bd93117a29ab4b6647a84129447bb72609504793a11485f97572a0adc36e4372a3c86f73729cf296852c2dd11831bfa8b8b2de9f631a49a8d2d4b7e17 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ja.tar.gz 809368 BLAKE2B 8bd4363692ed6f0c6b5273b1b2d2d2d047f2b75e0dd0ef2722128e97e413d6b30ab6d3edb5b12d9f81c86f378aac4a212c21a6d2209b319f1d621e93c053e1b0 SHA512 e4ca3adb9faea8a222dd3dda3c14537cd6327dc9dc23e18fe15da574c28ff45ebcc3e39529dd6c7c723466e746c9e5f966c147f281d8cf26d0bc49b9753a8809 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ka.tar.gz 361362 BLAKE2B a2f94aef48f6fbd90ccc524c3f455e62ad70549687eb818bf184cc09deb3915046866c5d290cca896ec13f66583066f9b43828cb89c921cfce6270e43bc78864 SHA512 d14b59bbf5568a0c032b937cfad07577b3c2070d0a9309ff4b97e0621941ef9b6f9dc9fea053d7eafba43b2a7b9807d4955b37b7d20dab87c5d863c70aa01c0a +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_kk.tar.gz 785771 BLAKE2B ac6131d64bee5c54682b6a93fed0e11c43101d600b345d92d30ef6ca3f3b057824fe91d8f20b51b5e4706864153341ea28f2b54dc845c2055926ff0dd8b78052 SHA512 22e382d716fd30d5a5dea5d2fef68570e516ebb1993742ce5a707fda3ce9347bd3f202355b84aa61af86d728062e8f455938c1c3bb7442c0707804b6e2ebb783 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_km.tar.gz 684249 BLAKE2B 02c1ba1bc7e7579634d8b0f1f5acd42f0415a8f490bb9dea894ffc758f7d4f03589357c4470ded97cb83d16e5a33bbbc9e20e08175b12f817e2c13cbba018bdb SHA512 d08d735d0567041d1f19bab10b009628a342ba2e2b8a13e9ca061dff3f5b9e9e5e3b5772311fda576f07d9c756b3032ca1c3fd78fd03459a3e930d70ce0b724d +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_kmr-Latn.tar.gz 334446 BLAKE2B d03e8fb70bfd2a177edf38d45969349c5ff78a97bb827f4391ab361e57965554f50cc658d1da5bce3fa98e3513dfce0d42ba0be3a5ffc90b68433a3839407ff0 SHA512 8fb3f6e8ca9e62233130310add46be2e6d20e1050584a7585e869d1578e97c5555fc47ef27ce0aaee7214bc85012148990f933e35e692e76894b2bc3bac6976a +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_kn.tar.gz 583670 BLAKE2B ea18519fc6caa70caceb07f87dacd94527c63760a8ec3e5db3269c4c86b327f6029495ff687ea6087de95dfbe4d8647ba84d1f76f323961c71c74f1dc2f52bdb SHA512 51afb5b4a1d255403d5af3409d97de1e38171c1fa3ec7db37bddc136659ee8f7e9c4f4aa278e5b2c8686a80b1815bbc8118499874c8a9e57babfaa3e007ecef3 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ko.tar.gz 808077 BLAKE2B e66ed9c8692c5a23aec44a5e3ff982cf9418004af44d01aff658bbfe21360f0db56a02b90df22d1d6a1a148f5ce5c5e9a66715e09ff3f21a8014d26353dc387f SHA512 a7a127d237fe495a3c9b34682c546923a93ff85c8bb79100cec93e64ddf7c12812211ea595db5ead5df450f9d32c87af3a0c1bf26861461430441d4d0cf06138 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_kok.tar.gz 412546 BLAKE2B 1f56b78dda74b27ab892d78b7c80f621f3ab219156f34e8e7ebb459aab98a049e32a0baaaf4f18e7a7f7c1513ce451704df6aa1e784764350e10f57120987ee8 SHA512 980aabba57c0ed2df8aa7206d201ae410012f45ad0ac329149f975167849a856d0ef46fcc07945a088062196dc3a0d73db7da4bfe78411dd39f0ff799e005720 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ks.tar.gz 330684 BLAKE2B 76b6c161893447b28b268b84d1042304286ceb065a404c693aa13fe421cedde0e977aae91dc6cf4f04978eb445408803279941b4f77b6bc776e2239f8674132d SHA512 aa78155b3cdc1f15f7e640a4a2f37068dcdebb420cc77776e19aefacfbe069b8e77575f6752d26ff6a0cda946ef5ecb9f14054dc2b997dfaa6cf4e6dd273a72d +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_lb.tar.gz 142670 BLAKE2B e8f5095a4aa77d5db664593f378820f0a0a5c461285018bf5d422365841340b8e609bc7fecdb540bd2e8265a94ac3ce47da49c653a2517c91d2d02a8f25d655d SHA512 8e9221a9d4cccf9dbf63e98e489329b3edf51d4f11781946186d4d4fd233a1e15108b3d2a0f440c8e907ff3f99626bb48e21b0e257fe5237b7c8282e3544a006 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_lo.tar.gz 432835 BLAKE2B 1608c1c766ab4d020e050d49a37250193b99dc53ad43aa333674135efed0f5a6d290217498e92b677004bc92d6f4fdfa157e56b2766bdb7a7b6027edc9e6728e SHA512 86ed6368eb006a36b5f70791f3a544401f022150689b2a76ac6c0029244e672e233939e09be45747aab6bce148dd67f67c1fd10cfa8045d73969cd101a0a810f +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_lt.tar.gz 1032069 BLAKE2B a8a58360d4bfbd60258e530e5b0ad9b7b5f43e676a0dfe61b6d850ab18294d4fa948f8cab60c6a48b308034fad9f24faed1941e67ecfcebeb17314b29f2c377c SHA512 3675d122de166f55175026e23a1d08dfcf30653412a2ec1bb6b01472b552b2518ec6de050ced9d5419bc7a996ec9a7f0ec42bc2653c91c3e9d5ce2bcf8c0b8ab +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_lv.tar.gz 1493801 BLAKE2B cddd406be791422909ec7b1be56c4032842ef13aea9028d8b072496c059a84bf3e2599c3c1e9d11603b371b67fdff764d643d4b93561bdaf9f79c4963a709ddf SHA512 8ebee6900eac408dca385b650a757cc1dd2aa5d5d73662c4ff130f570e9533ebed7a4fb31f037727a72a3845a569b2148100fb2a3847dca072ad04282d948635 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_mai.tar.gz 331123 BLAKE2B 992719e54020d6f71d98765073f27d54bbed8989fe392d140759cfc43ddc59395211ceae6a06ff4f345ef064b12727cb16b41d3138ba601e0a3957140ed7e314 SHA512 ad4303e3cf700ecdbf39667b739df6c67281fe0964c42cc17595bea2d4b2ae1f328b88ae5052880613b2bc9bb5b8985b02c1df0a7871e6c83b340cde03dda15f +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_mk.tar.gz 383600 BLAKE2B edb20a076a8720cf21634a00152135879f53853f3ba50980ff7f45c4e0b4ad2110cb13d0448e4a6906a0dbf30cf93c910acf4c34f65dd2847dbfe0c4df38e365 SHA512 eb80a9dc979cb06d415f4e5f2ce1c0bf39101bf0bf4ddf8f4f98f6a0934204ca0b9f28e7df156a84cae5676694bdab6a05682988ead037a65b51b4eb397e87d4 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ml.tar.gz 545155 BLAKE2B aa5ab8056ef360ce1a93bf401ae2272d9980cacaf3ff9469a5460357dd5774de09bbdb07302f446fa605ab22855ef4b23496d451dc626309a7c6b9da2da3b828 SHA512 d0c00e2a9e684e281832d8e36509764271b8228d4912d4c0ebdc62e430847c2927de6fb5990f5b983df790d2c5d2130a73026a619e9958a1af3d431da1083b50 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_mn.tar.gz 508940 BLAKE2B a056a1645e873a9440b61d47b2a3246bd23fedbae0637a3178bd3f72719809d34ba9a4edef99dfecd0ef8149c56b2f7da998a69706588fc78298babbee61ccb4 SHA512 f088c25481328ecf0b6fa634240b008526f89e1bedf9c2eaa7f4f3f38db2dbe61e2b2e5c62c2f7b2f2a91e5f7ac50267312fd6c9ec3fecbc790c4b77c08c1f90 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_mni.tar.gz 403775 BLAKE2B 9f93ba7fe297effc3fb93674e607168040460fb78adeb3dbf73e175c2a35045494906ddc702eb00a8ccbfaf3ecf16ca4b33cfd980ec003c4cec665ca8fd4911a SHA512 00ca1e9ba4c34fa36b21471c2cbcd334b89d277e3c2377ce129eaccd5aaaea6f05613840dc6737943dd2431fa24b312929db4bbf77b175cda02f76cfa2108d09 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_mr.tar.gz 578929 BLAKE2B 4487fe3cfd3ac4bfd7b8c2124fe83b9214f31928cfaa009084eab2a966990125c1666641dbc5b2bacda9c918bf527463c57ef43877f9ba99b479ad18617bc33b SHA512 1bf15e89da9cd13bf23d8bb0457215f6cd1340a315c0a2acf3bbcdc568c2f03a978363db93d89e3bc6692b3cbde0c3989c9a7d0dc5459d7be3a761f172f90d4b +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_my.tar.gz 464864 BLAKE2B 5907cc95765e41a730bd1bd013f0e96b1f9f858656b58bd708484e97dbb69812b32ed3eadcfd9cd3904516db2e393d7ac2b5fd39c7e5c4e89aa9efce104b8e94 SHA512 bef2da8230f76895d0bc32443dfa34d396dcb23f8ad48ca274d5c1d98c0de2d744e9f3579c136c1f72773dca590ab8f1c9681da5c6ac9f6415aa86f7cefff380 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_nb.tar.gz 4065339 BLAKE2B 2acf7a7e5c7d61ea9fc679c9a55340db8b193893962928a66fa5d65637271e823f4713c8d9e585ba4f37bf4e5da98243b5e31a76b2bd5caee20be89883622cad SHA512 ff225b326fce57b5266ab2dd899ed32d21b94a6cbdcc2b8fb67a4888f3a804d0a28cbabfbf486b6294aa25c16239b28c8ffb3014ac581a87dd7d96d116d5b665 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ne.tar.gz 859560 BLAKE2B d32be0add2932b300531f98caef61f7d5878e8acf9a14698737a398709121f728f9147603195c03e23ad13f5233db9e46b07237b8a647e472e33fbcfef57449a SHA512 0fe58095abc72ed20643bbaf2366a1ff3fd4453ecf30d242799404cda30995e220636f33308678545aa0e9d7a31bdbf51cbc5fcfd60529b71d50e12b7fb8f580 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_nl.tar.gz 1523368 BLAKE2B 604db40634fb0c1af8345424089bdb7db3cdbc57ab7b69fc947e06ade502ee7565b1ad89e891ff30a348fa9ba90cb8bb2b88ab634f04306d9454dd101510bfe6 SHA512 1deac0dd21cf294db3773efd7f3bc6ffe363f6d019c661fc1fb32bbd0f38799158dae61cc5e90f43e82d3b5a9a84245b7958a766ecf330e05711124986fff15d +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_nn.tar.gz 4063882 BLAKE2B 03fa15c8df8425203b16509dacea8e3d91e46092dadd87b1dfff6d6fc9993c83a1a145330fb17f6ea6df02425aac5bba535471bec94a54c54b14b18423bbb370 SHA512 ec601b9a07be905e8b23fea840082639aac25d575d219c6273999ea7bcf3b90046642e2d39a7836c8ec86f6b0381a4a1db520036892d906724bf1d90ef989c4c +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_nr.tar.gz 277545 BLAKE2B da6df92d1a84484f528b2403eb1a597ba9c774584f7023eb8b19eed6a44e8b95dc34da14f97de32be63a18538d1d58635152d564e7e502eea43325b1f30ff077 SHA512 0887b5fbfdb158071237d6fee97fbc0d474ee589d50e1c88727fb8fe116e22d9b920e175aaa016e65a415b4c85f237ee39262ae3ac3e724a048c37c64ed874de +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_nso.tar.gz 322000 BLAKE2B 655644486c33ec279d5169198c22b441157469189ff8f069d47530da0433c6c9c927f7fabdd283bd13746ada808925f2f5017114085b6cc83f4e0de703be19b5 SHA512 59baabc175f95185816663b3ae9bacb68716535c200179ffc3cb70ff08e732f8877b78b55d9d6ec4d620564395629e9f2e4429c74127a67fcd000f64af37985c +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_oc.tar.gz 882003 BLAKE2B 4092bc1aa6dac0b3f737aefc0d4b732b7eced08688daf4b1a485e748ef81f5853e36fbbc79b4d72e0f63fca4293f681d3f5f779fa5c751cc7deb2bb62f39016c SHA512 840bb4577f874ffe132c943b1f05898e1226c2712bedd990f2fc46fb91cffa3295cfc90207b6840892a3c6f0f38a6490ccaf182f46edbf97dbb03ad3a43842b5 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_om.tar.gz 370384 BLAKE2B 5f7e4793ce38359a36ec64a77beba33415201c49265e4b4052f4817fbd8aaf58f03e100d1290bcf8fa506a1b95e710383d8e10f27e17271e1940abea1e386c56 SHA512 72e028a1e8a37e3a1da60a57bb90fa55a81f3300fad7fa752fed92f616e1ea4066fbf4873e6d4ca29602239b948dc44beca6527228de8fc11f0c9e42e5e51956 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_or.tar.gz 602685 BLAKE2B de55976ce5de0466c2db3abe1b86cc905ecdf2b3c92dfae56570dd2a2bb924e21b640901d1c1eea8c46a3a5f98895ecdc73ae0450c0c67121e88fcc1b875c2cc SHA512 bc66c37c52c78610d1fd1086d2657355360e605f1e15cf47193b5e022b9476619e469a4db1312d20c662a79836888595a0dfb089c6b7c70e2e9f88144ad6f4b1 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_pa-IN.tar.gz 470982 BLAKE2B d9437cbfc4aaa208a4313a9f26907be8584d5da5a364bb3f023f4a8222a26f0df2fbb39c76ada2fc28384af1595ce5b247cd12e63333bb261825fa7bc972cb60 SHA512 2fe11ddf94d31796872d4109bd584bc0f56694acb4e3720c20d9316e48c3d81dfc5666c816238816db68cac214dedd7f83db00834c6eb4dbba26c32cf83c80de +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_pl.tar.gz 3094486 BLAKE2B 838472f23a257d7702ee0b778b14e591e735f8ed960abc693e3f1324c2a65a4c376f47cce0d70f0a722c0c39c39c3473d079bfe9ff767883894aba15058a90cd SHA512 2953d9c1e70dd2310d21ff28a127c10207ee587cbb73f4e089ea0c9015c244db159233839408ea6dd6f9bc4ff2373917e6e66aeb0d77db1b82824cd9b54f6f6b +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_pt-BR.tar.gz 2816827 BLAKE2B 58cb9691babec628719b1d82d1779ec41f36e317aa7f0aa7e66c0dcb5c8cfbbf47fce7664eab3fc3416377951a803b4522fbf366693f4f094bc7cf3d196495d8 SHA512 747823c4edc1cb8a73303d30c7ee5fa357f7aaefc6d42c0f86e54a663d06546ef93f38b8fc9337da730593d16531f3568c0358ba5c59c471d94433f801c32918 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_pt.tar.gz 2372184 BLAKE2B 319e2dabf5a00cb5fadd1592019ca388858ad7fa237cd9f46322b9e6313265fb65b857897c0813068663dfdd780c6deb68de199607e63272e2f9d1233d6d1a09 SHA512 a8f59d465846e560bd8cd8bb51757b087f211d5791d69c76d5c10d77a5399ec16c5695c2449dd66f304a028ca689d4b83eef4c0284b218e5e0ba27a1b9faaa9e +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ro.tar.gz 2532103 BLAKE2B fcbb7e5ac03d5cc20f1b26ce5b2fdf780aa5b5b48ae6e818fdaeb0db83b626c66b04a60cf85d3a7b1213813b5e5eef6e43fb7fef5fef8b1e3b098d80e490da24 SHA512 fa2d40d9dae35c5a686c8cd7d7f28b16bf90802264ca96930f8a9a23e1f46d350c969e890e2667da343681dc92bd84ba86174d84bab626db35bb45df208bf038 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ru.tar.gz 1902459 BLAKE2B 47abd8dde6fbff528ac8f781f7399010fb4b4823bd6b9c8bb6345eadab0998df0f5bbf5793c9aed3c2e3ae9f272f34c510931edbd7581362bed7c8ef0d642f57 SHA512 b26b30d653d19f6c2a4722002af3d249e1c72de4b8a264e63d64cb0fcd853ce08c006038933edfe330437fee645be3cd945ae4fac6de472e8eb5c9e630ab1ff5 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_rw.tar.gz 346206 BLAKE2B a33893de0377de557d34361c505a331ecb1a990ffef9af28a76605716a2fd6d24481df017d30a5f73354882b41c1e905fd0111b45318c64c447f1871d9a3f73c SHA512 6cb165fa5a1d5abd2c5f085ddae833d7c4cbda55a6e9b743ff14d1afbea8b3e79b81aa811b0f2656f206055ad7bb5509bc0f78e0048973ff6338fc4117f74e0e +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sa-IN.tar.gz 451153 BLAKE2B d29718ee48e8933ca99441d49aa2e4e3c7fb6648be85f76d06d08580d84e0e19c297f318f9b32a0d37c32f15de04da419c7b20ff2b1f9854b0a11d6dc8f8ef9e SHA512 9a47f3efcc85e0bf27f1e01ce216a4b43e19cc1cf296915adeefb2ea36e0f6948769b8764cb97aab6d48e280ac0a601567b0459e735b282629cec62a58051f7a +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sat.tar.gz 523281 BLAKE2B d712b6a348e41f2d7d5d82c0fd5c3046df94e9b3a8fefb4133b6c50b7085f695e1096cf58bd845d6d25d4fef8d0967a2039e9aeb5eb497466495bbed820923ed SHA512 f0e117770651c17c3500ccf76131a590b0160a7fc6cb8ec6fb93da2c6642672e6be4dcedf8a19fc5f9121154ca191e5c4b2a0b62d0097abba3ad2f9048205832 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sd.tar.gz 437886 BLAKE2B 67fa00c93fde29de1755129c35d28b5fed98799a23b6be40d47713e5a81996d0f9408fce582a65c49d87b08921a227d0f5dadcfa3450c5eb59f59b84344696a7 SHA512 05c08c30e479b282781868dc1086b82c114d864dfbaf99358e1762a819cd1d62c0f9da681aeeeeaa175cc4008d2cd44c67d80d8fba37763e073d29c5bdde6da7 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_si.tar.gz 739126 BLAKE2B f76a80799b67544ff3338b543fe3a66064917050414fded6bbaec0b96c606c879a5cf43aa867381bf8d60dd1f29ef8d15d91ab3245593685050a25ae5d33693e SHA512 eba357f5bf1a41e2317e0aaee420aea88680ab7f064fe5a9e884ecc7ee78878f4115780fcc0d98425881de923a8cfadde5d20b09e9f5f2ad83d4383b05e452c9 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sid.tar.gz 452286 BLAKE2B f5526c377ba0c6284f6325968bb2d8271784e9304be102c9eb096768de6fb5d69b20674a729bda624bc5def7affb64b8d3cf75e686f507248ec837fac24a2e71 SHA512 a6300283a9b71a45a9333541aff9dcc5e597aab9258578a60f2d89bfc47eaf626bdc8d6befde89eccb14ae839a56dceac28c5c4e3db153154a26348d02383831 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sk.tar.gz 2027712 BLAKE2B e5aac9f6444955abb090e3628451b40dcae62840313ba652cadc4f2b06a4ca4f10fbeca320e14d341c329a98d1f23ec21574e3a1af51409470a689e8bb4ffe85 SHA512 890f2468e6140a61424dace38a41004fcdff01bd90d5db45f72ed541d5ec19e0383422fe8f7af16fe22a4fc8f366bb2ee1e3f16eccb888179c1c6472eee548d0 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sl.tar.gz 2433333 BLAKE2B 4b1a320269b9f02d624b66bfdce5c2698bda5d905a8e867255d8f4a7d82f6139dab2d29dc6f9a99b643a8a89bcaad0887eb00d5789fac5f0dd7fd28d6ef12eed SHA512 cafd119e9a35fe4bc86a6f56ee470c47738476f64aca20727bc0c8555c700c890e9ee9a8d49d5ec8beebf960fd5dea9680e776bcad01eb245a4e803afa3e99d1 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sq.tar.gz 1171727 BLAKE2B 8606c4af2378c6e763ad984a4bcc2bb902c4c6a06e1f85b7dfa1a53ba5ef0a0d1ac2233cb0f408e9c89509da3fcd773ee3b24004e5b0af3c0ba6134bfd9d3f70 SHA512 ca04d85aa911494dee7b7c8a2c4aba1f782514d2b9e230963f9845862a66c1606fa4ae28fcc4f59e942b881a9ff9051fad679afb31bb239115d13272a94d15fc +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sr-Latn.tar.gz 1461625 BLAKE2B 23152c4b9cf48446c31a0941bea747fafddbca2ac6e0b7898ad5c3e59367765542a62dc30fcd5c320ef8dabcf2f4bed0e0a4127d9af101b54965fb6c659d17ac SHA512 4eaa0b6a450168e615ab47beb0ca0c28d14bd75fa6b4066574e287f7641fcb6d395003e8187700b677b902c6fba1799f871d9f125c5d16a52d6336ac64828f10 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sr.tar.gz 1479879 BLAKE2B d7292af13c24140bfcfaf012c863afc22c4cd33a05a5750b6fa460c40c401e683daff729c16502bc57f7c5d77b7543eec5bd839117eae948354d208ec61209d3 SHA512 dc9abf0bc44425002628fa69634d46d23dc3d378985c4e3469fa7204ed9f9985e59eb768dbad434b872bd47433dd92fce565f7db1eeddc440304e74048ba4736 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ss.tar.gz 286940 BLAKE2B 9fe9a6f52e19886006c47b09672c1223d35c576b13297351c0ba2219e90af9984fadde3b1841e425104f12661a9044ef319e21a07137725c7a13b1564e7db044 SHA512 a2992e8ccb80cd90c8efe56407955e4ba16be0d926c5f31a8220b38fc60927c2768190914dcdcab72de4b723913209df1226aebfc3200face2b8426fe0a98c4c +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_st.tar.gz 279992 BLAKE2B bce400bae8b756814eaabb7e289be2bc5e6709c6b5ff6cc9f1df8aadc41f2b8d72d4b4f7e467e594ec1cb66710c52af5e417e9ab7812eb188e7f50ce7844c8ad SHA512 cb9180b157daeaac2d7518c0c09711ad9c83d5d0f23eb6cfe1957ecfe4aa1ce296b3048245664f165807177ae9f74844eeaffe730314843af58b4809f39ffbb0 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sv.tar.gz 2609202 BLAKE2B 607fc50a3abad04db69e688f27d0108cad8210122cdbdbb6efdf26e41b1dcc08d401dfd2857b6dc6a2761399c7357cd2b59bdcb14d35de06bbfa7cd7f35c070d SHA512 4f3d4dc9af74a884cb13010a74275a43705237f5afd1487f546ebb70d3d4826875c4bb06da1104a67568476180e85c05bbd9707b2138285208b42290cba8a4ff +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sw-TZ.tar.gz 319280 BLAKE2B eca7b0c3220b8a2c16e426a9fe350ab5987a7e83dcb36dda8b61afae7d817fb67400bae972c664c57deba1759879a3617878dbfb0208c188cb155d72a1474b79 SHA512 2948b1b2e94a62e94a882cd4afb19e5ed79d407cd62b73071101561889b22fe1d1f33a6c7e4d742873eadbfe455cf468cdbce1b91107852d53992d8e688ba030 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ta.tar.gz 686297 BLAKE2B e4c9ed0a8828b0a7e8d95cd3105616acd46b4d7ac907798ecd9bc5aa4377031ab674f7112567bdb237657be9a873e2438481432f5d080c575a16a66833144f84 SHA512 6a142cd35dda3bd6c4d960f54cda363fad4ce8f5573db089b9bd0bc4d3113e0d323e8de7ef8df06ad48aecec7b28ffbae4dbf239ef6afaf4182b19d27c78f193 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_te.tar.gz 1088783 BLAKE2B 647def8e9271f714e518e81c711fd6367f2026828e4b25ecfc11d5c569710428f87329515f7648248b97f855383767f0243ee9dc8aa890d9289795cdcb95c24a SHA512 c75ad07e120c942d2442a4f66ae35fb9e8b8934732c64c83bafe0f3ffa9e7971e58122c25a1b45bb49097fcdf5e7b5ec511ee90b18043895e4714e10714d9fe5 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_tg.tar.gz 358361 BLAKE2B 70f3c097ef4e872d7893a0d2e718fe4f3c57de44b66821db493aa842352665416f1c2d879b7d3f9935e0ea3a5c2ae688ed6a766e143219a30fa6717bf5f47eb7 SHA512 c9348b77817935ff0b947e4210b8a7ad9bad66893f6e5b69c710bed99b5c4b478b77691d65152e00eca12371dc2e53928d53f0c35ffa263650c1c252483f2f55 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_th.tar.gz 622571 BLAKE2B e2f92b61c966c044965505424e35d30d66fc339ea5723340f3c7a8565d9c8ed59963f98553f51ae654078d662a187b58d7ee83a1f3164a3f33afe5a949e64420 SHA512 a0595bd597da647eb47c930497f9b142d2684f154982827104bf2130b9b9221e1494d5079c176487e665660add948de2ce9341db17d7081e884223f94fd85628 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_tn.tar.gz 258980 BLAKE2B 7fd79c448d07f95ce15855a333cf82c61fad778186941ce00e600a99a53167b30a5ed330c00f32eee2d363a1bf427055ffe1b4e994320e6b03ba3b8e9bf923d9 SHA512 4ab9aedbf0cb596f86c43a7192f1aaeb57aa31248a84224d294cdff4b96b6ed024214a58a15e3f47eb7e5469b844083610798c8f5ea77fac888d0c880daf8e70 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_tr.tar.gz 774230 BLAKE2B dd4445ad3d9d71d6eade6ae1579c19fb183e031256854f77d55b8aa3c582ab170d8e9974432d15aed7d3afa5c9fbc233f7fefe3ce6546b15974dab80a4b9583e SHA512 7a77760fdaa1a4ca7c5b17d0ecfea73c4f1e9a3676ba0519818450790513ed58aef75a2a93ea45c2188826c48aa64f9725f06437d8bfee02bc2180464ae089e9 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ts.tar.gz 277116 BLAKE2B f2de3718b29cacec6eb61b5a7c6c5560505c902e77b77cbaab3764716b528911b43601a08630c50068f4b94acaffd7234e2644b0610cd20071b759a47a3c9e35 SHA512 1480ee80aa5df4ed98a30fb1d64e011f5c10df7ca44f3d42b582b50020a8ab1a5b36504bebb16a93d6f20d46e1d0369f6a9849da1a7cc78042af2ac0b8525dff +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_tt.tar.gz 183373 BLAKE2B aa9180304ba2a8dc759130ee11fcb4acd39725a71383d327132c8a8f29a716745ed8944fddb7a759678c7c2d95a05b2b78ba26dcdcbd8dc6c8d3c2ecda61dee1 SHA512 9127cba0cc62ed4231a58d75fde171244edb2acf8d644f5409ad4e76c1b6d70009b77047efa8444b034b9f35806492771982357511863844f111ed464f719055 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ug.tar.gz 549268 BLAKE2B 958a281647b541428b1c6d4cffedb99902287a78a8d3ba100793234d617b54b51a45dd73ea78044dc28dfb10b257b7191dcc996bb8c0fe7ffa4502a6e8830f68 SHA512 d839bfe3ed4ad8a2a8fd2d95d0199950e33b1245da01622668f353c837f6a03eff278e72acacb75d95385ef9affa20aa231833a3f9051a1df7cd39cb7a2504f0 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_uk.tar.gz 1622105 BLAKE2B 502618a3e5c19099ed6370db877b33971bc6ad9901da1ed8b42d12631231d71a8e4b0575dfbd1219289888ba0ecd4208173fca1422348e2d166142ed71cb7a0e SHA512 574292e8b7c15449e4875da34f0fb97fdeb6f640a4e50194191421f9e220d913a32c97d93fe17aad3192bcccfdcbfbb2e33eb6995021b6267419842e2086b7c1 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_uz.tar.gz 314457 BLAKE2B f5ad5a787f1e7fc26d4d0bb0da7492c89832a7b3ba81d43fc2860245cdc98e1705b829c996b2337a19b80b7704281f225d2cd9d48574a4e24d55f994c1b7c7d6 SHA512 3fcd6c4c749bf39ff35d5088ce97527e6b4af3960dfc5b85b471e346c0caa033cb9d161d1ef27fee5c150cf058b84f37c05f534ad65a0fa31f3ccaf0511211ed +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ve.tar.gz 282262 BLAKE2B ee274dd1904285d7201a28870be8595bb4afdfea12a2d9f0fc5357eebe86bf72beb6c5f6846eec2e95cd23f6ba964ad6fe2acd8a0a62bdab5098d30a9aca5248 SHA512 cf4aca847c24e3e953c41e530fa41abef9b18dd5959bdc7e0e9480be0b4a537ee434ddbb30943211a5d1e732b6804a7da1dbf1e38506f78a905308e1e1d3cae6 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_vi.tar.gz 465539 BLAKE2B 26e7aecb305ea3fbd019665adf637c690977866dd842a4452bcdd27947d916a5def9f0532ae229e5f20cc8812dfc7cf8d9636e7cd8da9501bd314c1c8d047da5 SHA512 c481b6c2773f351a645058889f098040b823198eb398f6c5d79907f8b8bd704fd3b46f99891966000701589ff591a86ef2b26738d51b761dde8afdbd8be2dbad +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_xh.tar.gz 290178 BLAKE2B 7f591f647232a1f5ef9d30e7f3e624119ff8a7710de544c422ae954c86392a3dfdc83a5fa090688ea8ea7357eef914f0f166bc6c16757aff0356e51b824459ac SHA512 45258251e71e0341a7d7726807b97d1e369c1c9f72eee88cc6453078ede8d5a7d94b69a81e9786f87e7742b2d7e475fc8a56303737512533157338c21042f399 +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_zh-CN.tar.gz 809091 BLAKE2B ac8bbb947ca9ff64f28d1817774ff3fec6f83366d15e7a977afed48f8af7d1d6109678884c04841827e48c43dea634962468329f87d03870445bed31675141b4 SHA512 da50a3f95e44e6325a03907de6a34bdb8024ed78c9a1da7a0938906385faef5aa954c82d38f6de5c6a31180f34d2453cc4b3aac7af05bdc0eed1ed848b793a1a +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_zh-TW.tar.gz 808478 BLAKE2B bdc04c988f8dd7c8db30e07a0c191d918a1d98a1e0aca2e8e192418f1f31e68628a0c4d0abc5f0af7f808b65cdd4ad118a835e77d4b2a6e0276830ddef8b4000 SHA512 4e3924e7a5e615bb27781f5a2d997b45db9e497f6cfb6e9621d6151fd62c9d0046796177d747e279c5d3bf76822615690dcdcc04e17b7a4e549a1afde9d96b9a +DIST LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_zu.tar.gz 320570 BLAKE2B 95f90b6ed1a87f3e1fc50419464edfb7a5b613e541f20841367b83b85d3eede92adfdb980050df1ae3862918f6f551ac71031c98b99fc62ff02774b009eacbdb SHA512 b122ed2baecfea4ec2e538b4cb094a0e8d66ac7056fd8f587a54c654b9195f8b7ddc3eb23fbbc0a0283bc96c44b51459338883fac51a636db7729b492e12db37 diff --git a/app-office/libreoffice-l10n/libreoffice-l10n-6.2.3.1.ebuild b/app-office/libreoffice-l10n/libreoffice-l10n-6.2.3.1.ebuild deleted file mode 100644 index 1713955ef9c8..000000000000 --- a/app-office/libreoffice-l10n/libreoffice-l10n-6.2.3.1.ebuild +++ /dev/null @@ -1,91 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit rpm - -BASE_PV=$(ver_cut 1-3) -MY_PV="${PV/_alpha/.alpha}" -MY_PV="${MY_PV/_beta/.beta}" -[[ ${PV} == *alpha* || ${PV} == *beta* ]] && PN_DEV="Dev" - -DESCRIPTION="Translations for the Libreoffice suite" -HOMEPAGE="https://www.libreoffice.org" -BASE_SRC_URI_TESTING="https://download.documentfoundation.org/${PN/-l10n/}/testing/${BASE_PV}/rpm" -BASE_SRC_URI_STABLE="https://download.documentfoundation.org/${PN/-l10n/}/stable/${BASE_PV}/rpm" - -LICENSE="|| ( LGPL-3 MPL-1.1 )" -SLOT="0" -KEYWORDS="" -IUSE="offlinehelp" - -# -# when changing the language lists, please be careful to preserve the spaces (bug 491728) -# -# "en:en-US" for mapping from Gentoo "en" to upstream "en-US" etc. -LANGUAGES_HELP=" am ast bg bn-IN bn bo bs ca-valencia ca cs da de dz el en-GB en:en-US en-ZA eo es et eu fi fr gl gu he hi hr hu id is it ja ka km ko mk nb ne nl nn om pl pt-BR pt ru si sk sl sq sv tg tr ug uk vi zh-CN zh-TW " -LANGUAGES="${LANGUAGES_HELP}af ar as be br brx cy dgo fa ga gd gug kk kmr-Latn kn kok ks lb lo lt lv mai ml mn mni mr my nr nso oc or pa:pa-IN ro rw sa:sa-IN sat sd sid sr-Latn sr ss st sw-TZ ta te th tn ts tt uz ve xh zu " - -for lang in ${LANGUAGES_HELP}; do - helppack="offlinehelp? ( ${BASE_SRC_URI_STABLE}/x86/LibreOffice${PN_DEV}_${BASE_PV}_Linux_x86_rpm_helppack_${lang#*:}.tar.gz -> LibreOffice_${MY_PV}_Linux_x86_rpm_helppack_${lang#*:}.tar.gz ${BASE_SRC_URI_TESTING}/x86/LibreOffice${PN_DEV}_${MY_PV}_Linux_x86_rpm_helppack_${lang#*:}.tar.gz -> LibreOffice_${MY_PV}_Linux_x86_rpm_helppack_${lang#*:}.tar.gz )" - SRC_URI+=" l10n_${lang%:*}? ( ${helppack} )" -done -for lang in ${LANGUAGES}; do - if [[ ${lang%:*} != en ]]; then - langpack="${BASE_SRC_URI_STABLE}/x86/LibreOffice${PN_DEV}_${BASE_PV}_Linux_x86_rpm_langpack_${lang#*:}.tar.gz -> LibreOffice_${MY_PV}_Linux_x86_rpm_langpack_${lang#*:}.tar.gz ${BASE_SRC_URI_TESTING}/x86/LibreOffice${PN_DEV}_${MY_PV}_Linux_x86_rpm_langpack_${lang#*:}.tar.gz -> LibreOffice_${MY_PV}_Linux_x86_rpm_langpack_${lang#*:}.tar.gz" - SRC_URI+=" l10n_${lang%:*}? ( ${langpack} )" - fi - IUSE+=" l10n_${lang%:*}" -done -unset lang helppack langpack - -RDEPEND+="app-text/hunspell" - -RESTRICT="strip" - -S="${WORKDIR}" - -src_prepare() { - default - - local lang dir rpmdir - - # First remove dictionaries, we want to use system ones. - find "${S}" -name *dict*.rpm -delete || die "Failed to remove dictionaries" - - for lang in ${LANGUAGES}; do - # break away if not enabled - use l10n_${lang%:*} || continue - - dir=${lang#*:} - - # for english we provide just helppack, as translation is always there - if [[ ${lang%:*} != en ]]; then - rpmdir="LibreOffice_${MY_PV}_Linux_x86_rpm_langpack_${dir}/RPMS/" - [[ -d ${rpmdir} ]] || die "Missing directory: ${rpmdir}" - rpm_unpack ./${rpmdir}/*.rpm - fi - if [[ "${LANGUAGES_HELP}" =~ " ${lang} " ]] && use offlinehelp; then - rpmdir="LibreOffice_${MY_PV}_Linux_x86_rpm_helppack_${dir}/RPMS/" - [[ -d ${rpmdir} ]] || die "Missing directory: ${rpmdir}" - rpm_unpack ./${rpmdir}/*.rpm - fi - done -} - -src_configure() { :; } -src_compile() { :; } - -src_install() { - local dir="${S}"/opt/${PN/-l10n/}$(ver_cut 1-2)/ - # Condition required for people who do not install anything e.g. no l10n - # or just english with no offlinehelp. - if [[ -d "${dir}" ]] ; then - insinto /usr/$(get_libdir)/${PN/-l10n/}/ - doins -r "${dir}"/* - fi - # remove extensions that are in l10n for some weird reason - rm -rf "${ED}"/usr/$(get_libdir)/${PN/-l10n/}/share/extensions/ || \ - die "Failed to remove extensions" -} diff --git a/app-office/libreoffice-l10n/libreoffice-l10n-6.2.2.2.ebuild b/app-office/libreoffice-l10n/libreoffice-l10n-6.2.3.2.ebuild similarity index 100% rename from app-office/libreoffice-l10n/libreoffice-l10n-6.2.2.2.ebuild rename to app-office/libreoffice-l10n/libreoffice-l10n-6.2.3.2.ebuild diff --git a/app-office/libreoffice/Manifest b/app-office/libreoffice/Manifest index 2bedfe043eae..f0cddcf56c21 100644 --- a/app-office/libreoffice/Manifest +++ b/app-office/libreoffice/Manifest @@ -4,10 +4,8 @@ DIST 35c94d2df8893241173de1d16b6034c0-swingExSrc.zip 9796 BLAKE2B a30b0225313b23 DIST 798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip 1521926 BLAKE2B d2769842c180997055648a8b1a33cc89988b74628bad8aa012242e0c1afa5b5b8568323c107187072207ee69bd841ba4ca3bbfe27ef65223ddc729d1a1aa6590 SHA512 ec5ae23c8fe2f5efc377f7a9665039afadf28b4d8f2791379296766a5fbc9a3bf7548f9b0e3b3b07762229ec733a92ccbb69791ee0318c9c6f78f8e847253d3f DIST a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip 23150 BLAKE2B 51db6bd90585b13857ecb494c805c9fb6874e1e65d7aee73d23e1716670836a14b376bcca810f96fd55b0ed653b2660a268030f246c822cbb04f867ef763a3b3 SHA512 2d3835f7ac356805025cafedcad97faa48d0f5da386e6ac7b7451030059df8e2fdb0861ade07a576ebf9fb5b88a973585ab0437944b06aac9289d6898ba8586a DIST libreoffice-6.1.5.2.tar.xz 207918636 BLAKE2B bb4e57a5363e7dc6757c537ef46231ff748649ca4b79993f371e787adba8cd1f3dd988f11e8813c24eb952d00355b02b15f0b126ea2c1f9d9ce7d6c26bf71c38 SHA512 36027ad8a3940e803908561e04feebce297db2fd570b7e43bb43d8c0b7885729eeaf0a64fc5f9e642c1008ffea0b3b1b6d0008e349cd1897425dc818ac8bf140 -DIST libreoffice-6.2.2.2-patchset-01.tar.xz 6952 BLAKE2B 6b6b5280c9c65b7995d49bd0a5c0667226366f498f04d747e883d21490c88fcdd5abe4348ffe37d3060d0b685d4c3c3cd5e826351b22f24b68779bc5ca9d92b3 SHA512 63cce0839f65962df425f212306ed65e3899c6da857f74d7ea335bd48712fab2faa1de7dbc28a5022021a408f02cb972c3bb7b511f6e1209f103b8d214e163ac -DIST libreoffice-6.2.2.2.tar.xz 214029032 BLAKE2B fc95d9dcb594bd18317285ecf593fb69825ecf061f7a339b48c01c858ee0340390d635a75f9be2d522f0b8883365d013b72b52f81cded509a2748ad354b9006c SHA512 f58f73fc76c57cbcbc24f63680ebc06f72cbbff9c1339c8186e70bf5f0f9ad0203ed2898ee7dd82cfb2bd0239d96a1534cec635847fe8fb50a0abe70848d2125 +DIST libreoffice-6.2.3.2-patchset-01.tar.xz 6424 BLAKE2B 38d0be171c79345b5916e988312cac53901cadaa4d1981905822dee8ac8377954abbc36f8a82cd6bc9c9abc1bdb3863b10f425291ce1c8273e523478f42a8746 SHA512 0f54044ed14c69b37954c77607925ae7dc902429edaadb21d4a508e4628558ae3a172a51dbeddb3f4e87a5e82a9cd6be3badca17bed9ce2ff90fe433982f7903 DIST libreoffice-6.2.3.2.tar.xz 214234080 BLAKE2B d565a7bc80cb550179ba38a1f2233bda68acf312e8966db84a72b242a10673ac81198370ffa46a7a222ad6c0654f5691404f1a17d7b0c9a60fd378d04dc6d550 SHA512 06c7e67c521eb9d94aa1a63464a4531b61b0fa0a8f77a0ecd1584535826232557a971471bea87dbc0b794979e1cddb201dbfdf0c4a2b4261ea63730e15cd8000 DIST libreoffice-branding-gentoo-0.8.tar.xz 151568 BLAKE2B f03c7ddeb53c5ca3fd23401679601fcf2c4037ba17be4eb7b784c7ce7ebb71a24b8ab4aac8b7da8c6b1f14dd23bc1294ba85ff4f70ad271fb4ee3c5372e10883 SHA512 785031a699b1d1895ce4b50ffc3ddf645f3a0ef9acdf37facfd18cf75db9484cb8f53a50abb63d6006ead76a80b6ff5aa99661063245ebb84bd64013d713de7f DIST libreoffice-help-6.1.5.2.tar.xz 15758000 BLAKE2B e8db833db00116e210cd6da578ab05089fd12128bfb8015600027c9afca09a1afe7a62e30a0271dffead5d176c0195eae9095d0e00450a926999efadf3f7572f SHA512 0575244ae595af7383b244fd3f1855b7d63820f9c3ebf87bc9d0758463b4b289988bbed99f0985508d34793967734fd83ae2d1a5db514479bb2fe32e0498fc9f -DIST libreoffice-help-6.2.2.2.tar.xz 15267780 BLAKE2B 6e5300f8cbd202ccf411d7f5d5268075e53d004b986917a382b0bcae6e3eb2a6b69ff36bbb38b23e9661f2f0df0388032dfc2156c7e2665414137e125cc83247 SHA512 c9aebd77aa44ea54e08c9e305aa073e29a02b11fbe118f346f2bb17a6aa8c3ff13fa3ba212a29eaa4c2b3861365bf4a8683979c5e77c57fa538ef18f4aea7ae4 DIST libreoffice-help-6.2.3.2.tar.xz 13024476 BLAKE2B 1d4a993b4725dfeb2993db6ad8afa4f1cc6d68f0e3e51cf712e3983b9eb3d5e092b2fea69628b5f88237c59ec568e1a02a5898bcb0f950288ece6b4408de153a SHA512 3c2c05f22bebf59662ff2948b59055c2b8b962f8c717e8d894a6f0df1878cd13cce0e55d39c2cbbf7e83af61623149d757ec65495c4ed23a1e587832595be037 diff --git a/app-office/libreoffice/files/libreoffice-6.2.2.2-boost-1.69.patch b/app-office/libreoffice/files/libreoffice-6.2.2.2-boost-1.69.patch deleted file mode 100644 index 0c4c38cf58c8..000000000000 --- a/app-office/libreoffice/files/libreoffice-6.2.2.2-boost-1.69.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 358637547c5bb7ae6ca637640c4279455414dbfa Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= -Date: Fri, 15 Mar 2019 16:16:31 +0100 -Subject: Fix build with boost 1.69 -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -This is also fixed with master with boost bump which we do not need -here. - -Change-Id: I61caec10c0c6d442cef3d51c31eaff01f18b89e3 -Reviewed-on: https://gerrit.libreoffice.org/69310 -Reviewed-by: Tomáš Chvátal -Tested-by: Tomáš Chvátal -Reviewed-by: Caolán McNamara -Tested-by: Caolán McNamara ---- - sfx2/source/appl/shutdownicon.cxx | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/sfx2/source/appl/shutdownicon.cxx b/sfx2/source/appl/shutdownicon.cxx -index e917c3a..8a51e5c 100644 ---- a/sfx2/source/appl/shutdownicon.cxx -+++ b/sfx2/source/appl/shutdownicon.cxx -@@ -143,7 +143,7 @@ bool LoadModule() - #endif // ENABLE_QUICKSTART_APPLET - } - assert(!boost::logic::indeterminate(loaded)); -- return loaded; -+ return bool(loaded); - } - - } --- -cgit v1.1 diff --git a/app-office/libreoffice/files/libreoffice-6.2.3.1-qt5-kf5-disable-qt-hidpi-scaling.patch b/app-office/libreoffice/files/libreoffice-6.2.3.1-qt5-kf5-disable-qt-hidpi-scaling.patch deleted file mode 100644 index 12f3ddc29587..000000000000 --- a/app-office/libreoffice/files/libreoffice-6.2.3.1-qt5-kf5-disable-qt-hidpi-scaling.patch +++ /dev/null @@ -1,82 +0,0 @@ -From c3eeb421526f284419e90d2c4c4da5b0d7bbcc0e Mon Sep 17 00:00:00 2001 -From: Jan-Marek Glogowski -Date: Fri, 29 Mar 2019 02:58:59 +0100 -Subject: tdf#124292 Qt5 / KDE5 disable Qt's HiDPI scaling - -LO does its own layouting and also all the scaling, so disable -the automatic HiDPI scaling explicitly. Otherwise fonts will be -rendered in LoDPI and just scaled as an image, if UI scaling is -enabled in KDE, resulting in really blocky / ugly fonts. - -Change-Id: I38503ce27c1671e80d0749d21c6c6dcff1a808a6 -Reviewed-on: https://gerrit.libreoffice.org/69941 -Tested-by: Jenkins -Reviewed-by: Jan-Marek Glogowski -(cherry picked from commit b4698a2241ec26d796c66da3a814f7cc693785b6) -Reviewed-on: https://gerrit.libreoffice.org/69984 -Reviewed-by: Thorsten Behrens ---- - vcl/qt5/Qt5Graphics_GDI.cxx | 4 ++-- - vcl/qt5/Qt5Instance.cxx | 2 ++ - vcl/unx/kde5/KDE5SalGraphics.cxx | 4 ++-- - vcl/unx/kde5/KDE5SalInstance.cxx | 2 ++ - 4 files changed, 8 insertions(+), 4 deletions(-) - -diff --git a/vcl/qt5/Qt5Graphics_GDI.cxx b/vcl/qt5/Qt5Graphics_GDI.cxx -index 90baba3..851d222 100644 ---- a/vcl/qt5/Qt5Graphics_GDI.cxx -+++ b/vcl/qt5/Qt5Graphics_GDI.cxx -@@ -643,8 +643,8 @@ void Qt5Graphics::GetResolution(sal_Int32& rDPIX, sal_Int32& rDPIY) - return; - - QScreen* pScreen = m_pFrame->GetQWidget()->window()->windowHandle()->screen(); -- rDPIX = pScreen->logicalDotsPerInchX(); -- rDPIY = pScreen->logicalDotsPerInchY(); -+ rDPIX = pScreen->logicalDotsPerInchX() * pScreen->devicePixelRatio() + 0.5; -+ rDPIY = pScreen->logicalDotsPerInchY() * pScreen->devicePixelRatio() + 0.5; - } - - sal_uInt16 Qt5Graphics::GetBitCount() const { return getFormatBits(m_pQImage->format()); } -diff --git a/vcl/qt5/Qt5Instance.cxx b/vcl/qt5/Qt5Instance.cxx -index adbe70b..8de9fc7 100644 ---- a/vcl/qt5/Qt5Instance.cxx -+++ b/vcl/qt5/Qt5Instance.cxx -@@ -336,6 +336,8 @@ VCLPLUG_QT5_PUBLIC SalInstance* create_SalInstance() - unsetenv("SESSION_MANAGER"); - } - -+ QApplication::setAttribute(Qt::AA_DisableHighDpiScaling); -+ - int* pFakeArgc = new int; - *pFakeArgc = nFakeArgc; - pQApplication = new QApplication(*pFakeArgc, pFakeArgv); -diff --git a/vcl/unx/kde5/KDE5SalGraphics.cxx b/vcl/unx/kde5/KDE5SalGraphics.cxx -index 290127d..0b4b428 100644 ---- a/vcl/unx/kde5/KDE5SalGraphics.cxx -+++ b/vcl/unx/kde5/KDE5SalGraphics.cxx -@@ -78,8 +78,8 @@ void KDE5SalGraphics::GetResolution(sal_Int32& rDPIX, sal_Int32& rDPIY) - return; - - QScreen* pScreen = m_pFrame->GetQWidget()->window()->windowHandle()->screen(); -- rDPIX = pScreen->logicalDotsPerInchX(); -- rDPIY = pScreen->logicalDotsPerInchY(); -+ rDPIX = pScreen->logicalDotsPerInchX() * pScreen->devicePixelRatio() + 0.5; -+ rDPIY = pScreen->logicalDotsPerInchY() * pScreen->devicePixelRatio() + 0.5; - } - - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -diff --git a/vcl/unx/kde5/KDE5SalInstance.cxx b/vcl/unx/kde5/KDE5SalInstance.cxx -index 401afbc..32998cd 100644 ---- a/vcl/unx/kde5/KDE5SalInstance.cxx -+++ b/vcl/unx/kde5/KDE5SalInstance.cxx -@@ -144,6 +144,8 @@ VCLPLUG_KDE5_PUBLIC SalInstance* create_SalInstance() - unsetenv("SESSION_MANAGER"); - } - -+ QApplication::setAttribute(Qt::AA_DisableHighDpiScaling); -+ - int* pFakeArgc = new int; - *pFakeArgc = nFakeArgc; - pQApplication = new QApplication(*pFakeArgc, pFakeArgv); --- -cgit v1.1 diff --git a/app-office/libreoffice/libreoffice-6.2.2.2.ebuild b/app-office/libreoffice/libreoffice-6.2.2.2.ebuild deleted file mode 100644 index abd92a269e11..000000000000 --- a/app-office/libreoffice/libreoffice-6.2.2.2.ebuild +++ /dev/null @@ -1,550 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python2_7 python3_{5,6,7} ) -PYTHON_REQ_USE="threads(+),xml" - -MY_PV="${PV/_alpha/.alpha}" -MY_PV="${MY_PV/_beta/.beta}" -# experimental ; release ; old -# Usually the tarballs are moved a lot so this should make everyone happy. -DEV_URI=" - https://dev-builds.libreoffice.org/pre-releases/src - https://download.documentfoundation.org/libreoffice/src/${MY_PV:0:5}/ - https://downloadarchive.documentfoundation.org/libreoffice/old/${MY_PV}/src -" -ADDONS_URI="https://dev-www.libreoffice.org/src/" - -BRANDING="${PN}-branding-gentoo-0.8.tar.xz" -PATCHSET="${P}-patchset-01.tar.xz" - -[[ ${MY_PV} == *9999* ]] && inherit git-r3 -inherit autotools bash-completion-r1 check-reqs flag-o-matic java-pkg-opt-2 multiprocessing pax-utils python-single-r1 qmake-utils toolchain-funcs xdg - -DESCRIPTION="A full office productivity suite" -HOMEPAGE="https://www.libreoffice.org" -SRC_URI="branding? ( https://dev.gentoo.org/~dilfridge/distfiles/${BRANDING} )" -[[ -n ${PATCHSET} ]] && SRC_URI+=" https://dev.gentoo.org/~asturm/distfiles/${PATCHSET}" - -# Split modules following git/tarballs; Core MUST be first! -# Help is used for the image generator -# Only release has the tarballs -if [[ ${MY_PV} != *9999* ]]; then - for i in ${DEV_URI}; do - SRC_URI+=" ${i}/${PN}-${MY_PV}.tar.xz" - SRC_URI+=" ${i}/${PN}-help-${MY_PV}.tar.xz" - done - unset i -fi -unset DEV_URI - -# Really required addons -# These are bundles that can't be removed for now due to huge patchsets. -# If you want them gone, patches are welcome. -ADDONS_SRC=( - "java? ( ${ADDONS_URI}/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip )" - # no release for 8 years, should we package it? - "libreoffice_extensions_wiki-publisher? ( ${ADDONS_URI}/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip )" - # Does not build with 1.6 rhino at all - "libreoffice_extensions_scripting-javascript? ( ${ADDONS_URI}/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip )" - # requirement of rhino - "libreoffice_extensions_scripting-javascript? ( ${ADDONS_URI}/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip )" - # not packageable - "odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll )" -) -SRC_URI+=" ${ADDONS_SRC[*]}" - -unset ADDONS_URI -unset ADDONS_SRC - -# Extensions that need extra work: -LO_EXTS="nlpsolver scripting-beanshell scripting-javascript wiki-publisher" - -IUSE="accessibility bluetooth +branding coinmp +cups dbus debug eds firebird -googledrive gstreamer +gtk gtk2 kde ldap +mariadb odk pdfimport postgres test vlc -$(printf 'libreoffice_extensions_%s ' ${LO_EXTS})" - -REQUIRED_USE="${PYTHON_REQUIRED_USE} - bluetooth? ( dbus ) - libreoffice_extensions_nlpsolver? ( java ) - libreoffice_extensions_scripting-beanshell? ( java ) - libreoffice_extensions_scripting-javascript? ( java ) - libreoffice_extensions_wiki-publisher? ( java ) -" - -LICENSE="|| ( LGPL-3 MPL-1.1 )" -SLOT="0" -[[ ${MY_PV} == *9999* ]] || \ -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux" - -BDEPEND=" - dev-util/intltool - sys-devel/bison - sys-devel/flex - sys-devel/gettext - virtual/pkgconfig - odk? ( >=app-doc/doxygen-1.8.4 ) -" -COMMON_DEPEND="${PYTHON_DEPS} - app-arch/unzip - app-arch/zip - app-crypt/gpgme[cxx] - app-text/hunspell:= - >=app-text/libabw-0.1.0 - >=app-text/libebook-0.1 - app-text/libepubgen - >=app-text/libetonyek-0.1 - app-text/libexttextcat - app-text/liblangtag - >=app-text/libmspub-0.1.0 - >=app-text/libmwaw-0.3.1 - app-text/libnumbertext - >=app-text/libodfgen-0.1.0 - app-text/libqxp - app-text/libstaroffice - app-text/libwpd:0.10[tools] - app-text/libwpg:0.3 - >=app-text/libwps-0.4 - app-text/mythes - >=dev-cpp/clucene-2.3.3.4-r2 - =dev-cpp/libcmis-0.5* - dev-db/unixODBC - dev-lang/perl - dev-libs/boost:=[nls] - dev-libs/expat - dev-libs/hyphen - dev-libs/icu:= - dev-libs/libassuan - dev-libs/libgpg-error - >=dev-libs/liborcus-0.14.0 - dev-libs/librevenge - dev-libs/libxml2 - dev-libs/libxslt - dev-libs/nspr - dev-libs/nss - >=dev-libs/redland-1.0.16 - >=dev-libs/xmlsec-1.2.24[nss] - media-gfx/fontforge - media-gfx/graphite2 - media-libs/fontconfig - media-libs/freetype:2 - >=media-libs/harfbuzz-0.9.42:=[graphite,icu] - media-libs/lcms:2 - >=media-libs/libcdr-0.1.0 - >=media-libs/libepoxy-1.3.1[X] - >=media-libs/libfreehand-0.1.0 - media-libs/libpagemaker - >=media-libs/libpng-1.4:0= - >=media-libs/libvisio-0.1.0 - media-libs/libzmf - net-libs/neon - net-misc/curl - sci-mathematics/lpsolve - sys-libs/zlib - virtual/glu - virtual/jpeg:0 - virtual/opengl - x11-libs/cairo[X] - x11-libs/libXinerama - x11-libs/libXrandr - x11-libs/libXrender - accessibility? ( dev-python/lxml[${PYTHON_USEDEP}] ) - bluetooth? ( - dev-libs/glib:2 - net-wireless/bluez - ) - coinmp? ( sci-libs/coinor-mp ) - cups? ( net-print/cups ) - dbus? ( sys-apps/dbus ) - eds? ( - dev-libs/glib:2 - gnome-base/dconf - gnome-extra/evolution-data-server - ) - firebird? ( >=dev-db/firebird-3.0.2.32703.0-r1[server] ) - gstreamer? ( - media-libs/gstreamer:1.0 - media-libs/gst-plugins-base:1.0 - ) - gtk? ( - dev-libs/glib:2 - dev-libs/gobject-introspection - gnome-base/dconf - media-libs/mesa[egl] - x11-libs/gtk+:3 - x11-libs/pango - ) - gtk2? ( - x11-libs/gdk-pixbuf - >=x11-libs/gtk+-2.24:2 - x11-libs/pango - ) - kde? ( - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtx11extras:5 - dev-qt/qtwidgets:5 - kde-frameworks/kconfig:5 - kde-frameworks/kcoreaddons:5 - kde-frameworks/ki18n:5 - kde-frameworks/kio:5 - kde-frameworks/kwindowsystem:5 - ) - ldap? ( net-nds/openldap ) - libreoffice_extensions_scripting-beanshell? ( dev-java/bsh ) - libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) - mariadb? ( dev-db/mariadb-connector-c ) - !mariadb? ( dev-db/mysql-connector-c ) - pdfimport? ( app-text/poppler:=[cxx] ) - postgres? ( >=dev-db/postgresql-9.0:*[kerberos] ) -" -# FIXME: cppunit should be moved to test conditional -# after everything upstream is under gbuild -# as dmake execute tests right away -# tests apparently also need google-carlito-fonts (not packaged) -DEPEND="${COMMON_DEPEND} - >=dev-libs/libatomic_ops-7.2d - dev-perl/Archive-Zip - >=dev-util/cppunit-1.14.0 - >=dev-util/gperf-3 - >=dev-util/mdds-1.4.1:1= - media-libs/glm - sys-devel/ucpp - x11-base/xorg-proto - x11-libs/libXt - x11-libs/libXtst - java? ( - dev-java/ant-core - >=virtual/jdk-1.6 - ) - test? ( - app-crypt/gnupg - dev-util/cppunit - media-fonts/dejavu - media-fonts/liberation-fonts - ) -" -RDEPEND="${COMMON_DEPEND} - !app-office/libreoffice-bin - !app-office/libreoffice-bin-debug - !app-office/openoffice - media-fonts/liberation-fonts - || ( x11-misc/xdg-utils kde-plasma/kde-cli-tools ) - java? ( >=virtual/jre-1.6 ) - kde? ( kde-frameworks/breeze-icons:* ) - vlc? ( media-video/vlc ) -" -if [[ ${MY_PV} != *9999* ]] && [[ ${PV} != *_* ]]; then - PDEPEND="=app-office/libreoffice-l10n-$(ver_cut 1-2)*" -else - # Translations are not reliable on live ebuilds - # rather force people to use english only. - PDEPEND="!app-office/libreoffice-l10n" -fi - -PATCHES=( - # master branch - "${FILESDIR}/${PN}-6.2-ldap-optional.patch" - # 6.2 stable branch - "${FILESDIR}/${P}-boost-1.69.patch" - "${WORKDIR}"/${PATCHSET/.tar.xz/} - - # not upstreamable stuff - "${FILESDIR}/${PN}-5.4-system-pyuno.patch" - "${FILESDIR}/${PN}-5.3.4.2-kioclient5.patch" - "${FILESDIR}/${PN}-6.1-nomancompress.patch" -) - -S="${WORKDIR}/${PN}-${MY_PV}" - -_check_reqs() { - CHECKREQS_MEMORY="512M" - if is-flagq "-g*" && ! is-flagq "-g*0" ; then - CHECKREQS_DISK_BUILD="22G" - else - CHECKREQS_DISK_BUILD="6G" - fi - check-reqs_$1 -} - -pkg_pretend() { - use java || \ - ewarn "If you plan to use Base application you should enable java or you will get various crashes." - - if has_version "/dev/null) - --with-jvm-path="${EPREFIX}/usr/lib/" - ) - - use libreoffice_extensions_scripting-beanshell && \ - myeconfargs+=( --with-beanshell-jar=$(java-pkg_getjar bsh bsh.jar) ) - - use libreoffice_extensions_scripting-javascript && \ - myeconfargs+=( --with-rhino-jar=$(java-pkg_getjar rhino-1.6 js.jar) ) - fi - - is-flagq "-flto*" && myeconfargs+=( --enable-lto ) - - MARIADBCONFIG="$(type -p $(usex mariadb mariadb mysql)_config)" \ - econf "${myeconfargs[@]}" -} - -src_compile() { - # more and more LO stuff tries to use OpenGL, including tests during build - # bug 501508, bug 540624, bug 545974 and probably more - addpredict /dev/dri - addpredict /dev/ati - addpredict /dev/nvidiactl - - local target - use test && target="build" || target="build-nocheck" - - # this is not a proper make script - make ${target} || die -} - -src_test() { - make unitcheck || die - make slowcheck || die -} - -src_install() { - # This is not Makefile so no buildserver - make DESTDIR="${D}" distro-pack-install -o build -o check || die - - # bug 593514 - if use gtk; then - dosym libreoffice/program/liblibreofficekitgtk.so \ - /usr/$(get_libdir)/liblibreofficekitgtk.so - fi - - # bash completion aliases - bashcomp_alias \ - libreoffice \ - unopkg loimpress lobase localc lodraw lomath lowriter lofromtemplate loweb loffice - - if use branding; then - insinto /usr/$(get_libdir)/${PN}/program - newins "${WORKDIR}/branding-sofficerc" sofficerc - dodir /etc/env.d - echo "CONFIG_PROTECT=/usr/$(get_libdir)/${PN}/program/sofficerc" > "${ED}"/etc/env.d/99${PN} || die - fi - - pax-mark -m "${ED}"/usr/$(get_libdir)/libreoffice/program/soffice.bin - pax-mark -m "${ED}"/usr/$(get_libdir)/libreoffice/program/unopkg.bin -} - -pkg_preinst() { - java-utils-2_pkg_preinst - xdg_pkg_preinst -} diff --git a/app-office/libreoffice/libreoffice-6.2.3.2.ebuild b/app-office/libreoffice/libreoffice-6.2.3.2.ebuild index 64169aefb4d1..cacdb7a6fb54 100644 --- a/app-office/libreoffice/libreoffice-6.2.3.2.ebuild +++ b/app-office/libreoffice/libreoffice-6.2.3.2.ebuild @@ -18,7 +18,7 @@ DEV_URI=" ADDONS_URI="https://dev-www.libreoffice.org/src/" BRANDING="${PN}-branding-gentoo-0.8.tar.xz" -# PATCHSET="${P}-patchset-01.tar.xz" +PATCHSET="${P}-patchset-01.tar.xz" [[ ${MY_PV} == *9999* ]] && inherit git-r3 inherit autotools bash-completion-r1 check-reqs flag-o-matic java-pkg-opt-2 multiprocessing python-single-r1 qmake-utils toolchain-funcs xdg @@ -77,8 +77,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE} LICENSE="|| ( LGPL-3 MPL-1.1 )" SLOT="0" [[ ${MY_PV} == *9999* ]] || \ -KEYWORDS="" -# KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux" BDEPEND=" dev-util/intltool @@ -249,8 +248,7 @@ PATCHES=( # master branch "${FILESDIR}/${PN}-6.2-ldap-optional.patch" # 6.2 stable branch - "${FILESDIR}/${PN}-6.2.3.1-qt5-kf5-disable-qt-hidpi-scaling.patch" - # "${WORKDIR}"/${PATCHSET/.tar.xz/} + "${WORKDIR}"/${PATCHSET/.tar.xz/} # not upstreamable stuff "${FILESDIR}/${PN}-5.4-system-pyuno.patch" diff --git a/app-office/skrooge/Manifest b/app-office/skrooge/Manifest index 4348ed3ab4eb..49f1fc366102 100644 --- a/app-office/skrooge/Manifest +++ b/app-office/skrooge/Manifest @@ -1 +1,2 @@ DIST skrooge-2.18.0.tar.xz 20951548 BLAKE2B 7679c519cab88a165c878dbba0a077d7f4cddc9bd1252ce5fd1e6f2d90c98b9fc39b8251df83470debdc8a6fb4f093fcff55768aa41b6a4c379c9e4c4f558f25 SHA512 b8a222947f535eee9041e6bc71703a053fa9a201de352c5f39fcbf35be5259f76532ed5291becab4c676ff8eaba7727730f6d957af36bac54aa4ada11db25da3 +DIST skrooge-2.19.0.tar.xz 21105420 BLAKE2B d5c65f46085de5aecdb5d939ce54c3ae1ba6c3557a747be3671210fd9a47fa05996dc64b45c7cfb26865b9884812b7afdb2a7bd81eb4b2b3691d49c179f13da0 SHA512 030b64c1461bcbfa311e7dc12f49f73b3f251002fa9f3a1598b6584f75507fa3c89dabbab6e24cc02cfb7638a548453c9495e9977699dca3d34217a71df6bf00 diff --git a/app-office/skrooge/skrooge-2.19.0.ebuild b/app-office/skrooge/skrooge-2.19.0.ebuild new file mode 100644 index 000000000000..d051d843d447 --- /dev/null +++ b/app-office/skrooge/skrooge-2.19.0.ebuild @@ -0,0 +1,99 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +KDE_HANDBOOK="optional" +KDE_TEST="forceoptional" +VIRTUALX_REQUIRED="test" +inherit kde5 + +DESCRIPTION="Personal finances manager, aiming at being simple and intuitive" +HOMEPAGE="https://skrooge.org/" +[[ ${PV} == 9999 ]] || SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" +IUSE="activities designer kde ofx webkit" + +REQUIRED_USE="test? ( designer )" + +BDEPEND=" + dev-libs/libxslt + virtual/pkgconfig +" +COMMON_DEPEND=" + $(add_frameworks_dep karchive) + $(add_frameworks_dep kcompletion) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kdbusaddons) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kiconthemes) + $(add_frameworks_dep kio) + $(add_frameworks_dep kitemviews) + $(add_frameworks_dep knewstuff) + $(add_frameworks_dep knotifications) + $(add_frameworks_dep knotifyconfig) + $(add_frameworks_dep kparts) + $(add_frameworks_dep kservice) + $(add_frameworks_dep ktextwidgets) + $(add_frameworks_dep kwallet) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kxmlgui) + $(add_qt_dep qtconcurrent) + $(add_qt_dep qtdbus) + $(add_qt_dep qtdeclarative 'widgets') + $(add_qt_dep qtgui) + $(add_qt_dep qtnetwork) + $(add_qt_dep qtprintsupport) + $(add_qt_dep qtscript) + $(add_qt_dep qtsql) + $(add_qt_dep qtsvg) + $(add_qt_dep qtwidgets) + $(add_qt_dep qtxml) + app-crypt/qca:2[qt5(+)] + dev-db/sqlcipher + dev-libs/grantlee:5 + activities? ( $(add_frameworks_dep kactivities) ) + kde? ( $(add_frameworks_dep krunner) ) + ofx? ( dev-libs/libofx ) + webkit? ( >=dev-qt/qtwebkit-5.212.0_pre20180120:5 ) + !webkit? ( $(add_qt_dep qtwebengine 'widgets') ) +" +DEPEND="${COMMON_DEPEND} + $(add_frameworks_dep kguiaddons) + $(add_frameworks_dep kjobwidgets) + $(add_frameworks_dep kwindowsystem) + designer? ( + $(add_frameworks_dep kdesignerplugin) + $(add_qt_dep designer) + ) +" +RDEPEND="${COMMON_DEPEND} + $(add_qt_dep qtquickcontrols) +" + +# hangs + installs files +RESTRICT+=" test" + +src_configure() { + local mycmakeargs=( + -DSKG_BUILD_TEST=$(usex test) + -DSKG_DESIGNER=$(usex designer) + $(cmake-utils_use_find_package activities KF5Activities) + $(cmake-utils_use_find_package kde KF5Runner) + $(cmake-utils_use_find_package ofx LibOfx) + -DSKG_WEBENGINE=$(usex !webkit) + ) + + kde5_src_configure +} + +src_test() { + local mycmakeargs=( + -DSKG_BUILD_TEST=ON + ) + kde5_src_test +} diff --git a/app-office/texstudio/texstudio-2.12.16_beta2.ebuild b/app-office/texstudio/texstudio-2.12.16_beta2-r1.ebuild similarity index 92% rename from app-office/texstudio/texstudio-2.12.16_beta2.ebuild rename to app-office/texstudio/texstudio-2.12.16_beta2-r1.ebuild index 135aae51fe57..13e299fecd82 100644 --- a/app-office/texstudio/texstudio-2.12.16_beta2.ebuild +++ b/app-office/texstudio/texstudio-2.12.16_beta2-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit gnome2-utils prefix qmake-utils xdg-utils +inherit prefix qmake-utils xdg-utils desktop MY_PV="${PV/_/}" @@ -74,16 +74,12 @@ src_install() { emake DESTDIR="${D}" INSTALL_ROOT="${ED}" install } -pkg_preinst() { - gnome2_icon_savelist -} - pkg_postinst() { - gnome2_icon_cache_update + xdg_icon_cache_update xdg_desktop_database_update } pkg_postrm() { - gnome2_icon_cache_update + xdg_icon_cache_update xdg_desktop_database_update } diff --git a/app-portage/Manifest.gz b/app-portage/Manifest.gz index 34f9c73c3c93..27803235be6c 100644 Binary files a/app-portage/Manifest.gz and b/app-portage/Manifest.gz differ diff --git a/app-portage/grs/grs-0.7.ebuild b/app-portage/grs/grs-0.7.ebuild index df844151d97a..896318e916de 100644 --- a/app-portage/grs/grs-0.7.ebuild +++ b/app-portage/grs/grs-0.7.ebuild @@ -15,7 +15,7 @@ if [[ ${PV} == *9999 ]] ; then else SRC_URI="https://dev.gentoo.org/~blueness/${PN}/${P}.tar.gz https://dev.gentoo.org/~blueness/${PN}/${ISO}" - KEYWORDS="amd64 arm ~arm64 x86" + KEYWORDS="amd64 arm arm64 x86" fi DESCRIPTION="Suite to build Gentoo Reference Systems" diff --git a/app-shells/Manifest.gz b/app-shells/Manifest.gz index a3f1c3459b75..04007e7c4d35 100644 Binary files a/app-shells/Manifest.gz and b/app-shells/Manifest.gz differ diff --git a/app-shells/bash/Manifest b/app-shells/bash/Manifest index bee3da75417e..a2777b27c20b 100644 --- a/app-shells/bash/Manifest +++ b/app-shells/bash/Manifest @@ -311,3 +311,7 @@ DIST bash44-023 1557 BLAKE2B 95a21ade7e4be68d66f3862f26b574c5897055822471c8d2801 DIST bash50-001 4133 BLAKE2B 3eedb63f943ba89f1147c907fcacb5e5af891a6728edb4ced972e19d586573db6fface4947490ffb9f42a2ed87c745a352e102fb727637eec8422d7323da9470 SHA512 e3bf036287d3be1f3e91755678c04c9a8e1b4a98e34e181871dfaeb13987dda18c31a44db3f3829d91a185ba4414b9c0229f2a15f6e8a951cbc6c1054252bfdd DIST bash50-002 4380 BLAKE2B 022340f0da0d5b7c571c2015beb87268452faf1484bedb75e2868b16904eed93749d5c0ed62b9da43badb3ee2efe3bdb4f55e212a40c3cfdc073d44623475b85 SHA512 59b1cfa1be1029ada53c63fe651d51451ead5523c50c115e0eada07e34e641c693ed728366986acb431f96fdc61818efd3f8cd168ce416001edc62602e5f28dd DIST bash50-003 6434 BLAKE2B ccf05f2f0da6dd0a1d25d22200326d405019acbce27a7fbcb3f16ff09027d5dec5cb9d5dc557638f72089a3444b25d5106abdb0916cac0797562b4d8b68a0ab2 SHA512 520b5cc0b7aeea6cd8b7471b553d8979996f3627a3e5c8889023562dadc82475be243aca2ec608217b78400a1dceb134b877d3ded926e581445234f1b69409e6 +DIST bash50-004 1664 BLAKE2B 88b44a5268c8ec970f0c18997cfe5211f6a2a8c07f813d48fd931e62e1b3b95fd76e5b66b7ebf1ffcd1d42e5c133675f954de0ca7dfc8c36aa69f11253480374 SHA512 cbf51bb242edf36289bd483b47c9451132c12f341f494212c0e5d969cd06a3c1c4d121295f3bacb1d7d5e56f789258ba9f54c4cfb5760ed3c70ec1f49f25c719 +DIST bash50-005 3732 BLAKE2B 3ded5d200102ad7cc547c6f7e9bf9bba468a10791fc096988c49f46ea8d6708efb0d4c383a9e2e2fccef8a49b217e6a22d9435c807233a1d0a971265bbe31761 SHA512 4d3e6f337a76b9ff1887c4c6e4e4352885779504f3c975b8d6fa587962f01e8adbd843b5341c1fc1d11152cf465f2982eebd9dc6e1384f319157d29740d510da +DIST bash50-006 1275 BLAKE2B ae3738874ada015202a6ff21a50ea9370c6147b4c74a23112e755396fc1db743afa42abdd4df635f0c0b9f3536796064b41d0667ef8ade1543b5c70b688ae9d1 SHA512 71df829a3a3927a363ad961de8af8db898ea8b0ccf604c5f1326fe4646d0d50b3c7038ee473c225fc10d26c2dc1f711d66b74d003bb0445d36a8a70c49e056e0 +DIST bash50-007 1640 BLAKE2B 1c25af8c098322ad16353dfb32cdba2613659f5042792c725dbde7b2bc276ff09a4af44bf223fd6114dcc9beee98ccbd8081d3010fa1cfeb33bc93fc9c81e4f7 SHA512 467d377836c53d188cda39de550ce1e00b58895a6646c4da3535e74e599978558a92d8e7bf7c59c988159468fbce04f3a0dbf62cbded28472272f1b9811786e8 diff --git a/app-shells/bash/bash-5.0_p2-r2.ebuild b/app-shells/bash/bash-5.0_p2-r2.ebuild deleted file mode 100644 index 7383e6344204..000000000000 --- a/app-shells/bash/bash-5.0_p2-r2.ebuild +++ /dev/null @@ -1,267 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit flag-o-matic toolchain-funcs multilib prefix - -# Official patchlevel -# See ftp://ftp.cwru.edu/pub/bash/bash-5.0-patches/ -PLEVEL=${PV##*_p} -MY_PV=${PV/_p*} -MY_PV=${MY_PV/_/-} -MY_P=${PN}-${MY_PV} -is_release() { - case ${PV} in - *_alpha*|*_beta*|*_rc*) return 1 ;; - *) return 0 ;; - esac -} -[[ ${PV} != *_p* ]] && PLEVEL=0 -patches() { - local opt=$1 plevel=${2:-${PLEVEL}} pn=${3:-${PN}} pv=${4:-${MY_PV}} - [[ ${plevel} -eq 0 ]] && return 1 - eval set -- {1..${plevel}} - set -- $(printf "${pn}${pv/\.}-%03d " "$@") - if [[ ${opt} == -s ]] ; then - echo "${@/#/${DISTDIR}/}" - else - local u - for u in ftp://ftp.cwru.edu/pub/bash mirror://gnu/${pn} ; do - printf "${u}/${pn}-${pv}-patches/%s " "$@" - done - fi -} - -# The version of readline this bash normally ships with. -READLINE_VER="8.0" - -DESCRIPTION="The standard GNU Bourne again shell" -HOMEPAGE="http://tiswww.case.edu/php/chet/bash/bashtop.html" -if is_release ; then - SRC_URI="mirror://gnu/bash/${MY_P}.tar.gz $(patches)" -else - SRC_URI="ftp://ftp.cwru.edu/pub/bash/${MY_P}.tar.gz" -fi - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline" - -DEPEND=" - >=sys-libs/ncurses-5.2-r2:0= - readline? ( >=sys-libs/readline-${READLINE_VER}:0= ) - nls? ( virtual/libintl ) -" -RDEPEND=" - ${DEPEND} - ! 0 && glob_pattern_p (directory_name)) - { - char **directories, *d, *p; ---- 1127,1136 ---- - } - -+ hasglob = 0; - /* If directory_name contains globbing characters, then we -! have to expand the previous levels. Just recurse. -! If glob_pattern_p returns != [0,1] we have a pattern that has backslash -! quotes but no unquoted glob pattern characters. We dequote it below. */ -! if (directory_len > 0 && (hasglob = glob_pattern_p (directory_name)) == 1) - { - char **directories, *d, *p; -*************** -*** 1176,1180 **** - d[directory_len - 1] = '\0'; - -! directories = glob_filename (d, dflags); - - if (free_dirname) ---- 1195,1199 ---- - d[directory_len - 1] = '\0'; - -! directories = glob_filename (d, dflags|GX_RECURSE); - - if (free_dirname) -*************** -*** 1333,1336 **** ---- 1352,1369 ---- - return (NULL); - } -+ /* If we have a directory name with quoted characters, and we are -+ being called recursively to glob the directory portion of a pathname, -+ we need to dequote the directory name before returning it so the -+ caller can read the directory */ -+ if (directory_len > 0 && hasglob == 2 && (flags & GX_RECURSE) != 0) -+ { -+ dequote_pathname (directory_name); -+ directory_len = strlen (directory_name); -+ } -+ -+ /* We could check whether or not the dequoted directory_name is a -+ directory and return it here, returning the original directory_name -+ if not, but we don't do that yet. I'm not sure it matters. */ -+ - /* Handle GX_MARKDIRS here. */ - result[0] = (char *) malloc (directory_len + 1); -*** ../bash-5.0-patched/pathexp.c 2018-04-29 17:44:48.000000000 -0400 ---- pathexp.c 2019-01-31 20:19:41.000000000 -0500 -*************** -*** 66,74 **** - register int c; - char *send; -! int open; - - DECLARE_MBSTATE; - -! open = 0; - send = string + strlen (string); - ---- 66,74 ---- - register int c; - char *send; -! int open, bsquote; - - DECLARE_MBSTATE; - -! open = bsquote = 0; - send = string + strlen (string); - -*************** -*** 101,105 **** - globbing. */ - case '\\': -! return (*string != 0); - - case CTLESC: ---- 101,112 ---- - globbing. */ - case '\\': -! if (*string != '\0' && *string != '/') -! { -! bsquote = 1; -! string++; -! continue; -! } -! else if (*string == 0) -! return (0); - - case CTLESC: -*************** -*** 118,122 **** - #endif - } -! return (0); - } - ---- 125,130 ---- - #endif - } -! -! return (bsquote ? 2 : 0); - } - -*** ../bash-5.0-patched/bashline.c 2019-01-16 16:13:21.000000000 -0500 ---- bashline.c 2019-02-22 09:29:08.000000000 -0500 -*************** -*** 3753,3757 **** - - case '\\': -! if (*string == 0) - return (0); - } ---- 3766,3770 ---- - - case '\\': -! if (*string++ == 0) - return (0); - } diff --git a/app-text/Manifest.gz b/app-text/Manifest.gz index 35b08c53e865..2ae9ed78dfe1 100644 Binary files a/app-text/Manifest.gz and b/app-text/Manifest.gz differ diff --git a/app-text/blogc/Manifest b/app-text/blogc/Manifest index defb3bee4a9c..4f3cd131fb8f 100644 --- a/app-text/blogc/Manifest +++ b/app-text/blogc/Manifest @@ -1 +1 @@ -DIST blogc-0.16.0.tar.xz 336748 BLAKE2B 74de0bf35842abb84349a4026f25504df8da244ca9b8e5a5ccbf461dee95b06d0fe628245e8f5fc31a95ea988e8a144e757c910a75961b56f3d56bc0e0ac6b17 SHA512 e3338387dfa31bbffd46ab40097d2eae958e9afd161b60bf5e8476574637d4bedca58ca3c522c6e3498c8a2176187eb0487a88acba8f5188f16805b14453ff8e +DIST blogc-0.16.1.tar.xz 336720 BLAKE2B 1b828ba6ba161ad74b0a880f5e84c43b8c5437e5ac6c745862b695bac0cbbdf6a313b9bacf97acedb5cff5650c71b0344f1a120090836c69441aa7feaa6c9cfa SHA512 bd408a4f9b9b10b7be324e03d70125aafff3bf59750820a8c947dc15323131a199372ffe00421f4ce949b22c65168088c0ed8ba0d55ba8dcab5f871a0dbd243b diff --git a/app-text/blogc/blogc-0.16.0.ebuild b/app-text/blogc/blogc-0.16.1.ebuild similarity index 100% rename from app-text/blogc/blogc-0.16.0.ebuild rename to app-text/blogc/blogc-0.16.1.ebuild diff --git a/app-text/pinfo/pinfo-99999.ebuild b/app-text/pinfo/pinfo-99999.ebuild new file mode 100644 index 000000000000..961b78a24b48 --- /dev/null +++ b/app-text/pinfo/pinfo-99999.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit autotools flag-o-matic git-r3 + +DESCRIPTION="Hypertext info and man viewer based on (n)curses" +HOMEPAGE="https://github.com/baszoetekouw/pinfo" +EGIT_REPO_URI="${HOMEPAGE}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="" +IUSE="nls readline" + +RDEPEND=" + sys-libs/ncurses:0= + sys-libs/readline:0= + nls? ( virtual/libintl ) +" + +DEPEND=" + ${RDEPEND} + sys-apps/texinfo + sys-devel/bison + virtual/pkgconfig + nls? ( sys-devel/gettext ) +" +PATCHES=( + "${FILESDIR}"/${PN}-0.6.9-GROFF_NO_SGR.patch + "${FILESDIR}"/${PN}-0.6.9-lzma-xz.patch +) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + append-cflags -D_BSD_SOURCE -D_DEFAULT_SOURCE # sbrk() + + econf \ + $(use_with readline) \ + $(use_enable nls) +} + +src_install() { + emake DESTDIR="${D}" sysconfdir="${EPREFIX}/etc" install +} diff --git a/app-text/poppler/Manifest b/app-text/poppler/Manifest index 100a810dc6f5..46f7db3c5de8 100644 --- a/app-text/poppler/Manifest +++ b/app-text/poppler/Manifest @@ -1,2 +1,3 @@ DIST poppler-0.74.0.tar.xz 1514044 BLAKE2B af3821d5a5c68a3f2541cd9468fd7318ad0182cda66cea068dc42208fef6c2af78a401e50a6a5906cdc943de7339620937ddc6f69f0d8d1b15082aabc6cc3482 SHA512 4e48e2ffb559863ee693930db3b8594fd7e60e4b4ca3cdeb198faf90a6f4dbb5e102461492a12058221bc1218fe7e17c9085afb9e7956ae4bf26c11674315e66 DIST poppler-0.75.0.tar.xz 1523872 BLAKE2B 245f574e985570a1d0923e732da8694728506fc59382c9e4532159867e1b18ad9f03f6b995891796d72a6e401d2c86ac18403c9219bf533e36c8a07a1dc85d61 SHA512 6a1b76cc5095b7c5809eaa5072aeb4ea615744ff8ffce537f40a3f73a81fc12cc18d596876ceda1c78b5312ad20535f72366e69c861b620d108616f24a98e6b8 +DIST poppler-0.76.0.tar.xz 1530264 BLAKE2B 6496b7e069c98b8ac0bdb9001abd96bf0d71129e436813f4c91832f732e9ae6e125dd1adf49c238cad095185ecdeb47f7efc70b39a03309964dc2bb8552bf4e6 SHA512 bff0dacfabcfb6d4843d3dbc526e45eca85c1e043734d4cd2adb11c025c432559a26d59427169e2172a89e1d7d2bd6cad773688d11410495c6dcda108cf5ca9c diff --git a/app-text/poppler/poppler-0.76.0.ebuild b/app-text/poppler/poppler-0.76.0.ebuild new file mode 100644 index 000000000000..61a50816fcf1 --- /dev/null +++ b/app-text/poppler/poppler-0.76.0.ebuild @@ -0,0 +1,127 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake-utils flag-o-matic toolchain-funcs xdg-utils + +if [[ ${PV} == *9999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://anongit.freedesktop.org/git/poppler/poppler.git" + SLOT="0/9999" +else + SRC_URI="https://poppler.freedesktop.org/${P}.tar.xz" + 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 ~sparc64-solaris ~x64-solaris ~x86-solaris" + SLOT="0/87" # CHECK THIS WHEN BUMPING!!! SUBSLOT IS libpoppler.so SOVERSION +fi + +DESCRIPTION="PDF rendering library based on the xpdf-3.0 code base" +HOMEPAGE="https://poppler.freedesktop.org/" + +LICENSE="GPL-2" +IUSE="cairo cjk curl cxx debug doc +introspection +jpeg +jpeg2k +lcms nss png qt5 tiff +utils" + +# No test data provided +RESTRICT="test" + +BDEPEND=" + dev-util/glib-utils + virtual/pkgconfig +" +DEPEND=" + media-libs/fontconfig + media-libs/freetype + sys-libs/zlib + cairo? ( + dev-libs/glib:2 + x11-libs/cairo + introspection? ( dev-libs/gobject-introspection:= ) + ) + curl? ( net-misc/curl ) + jpeg? ( virtual/jpeg:0 ) + jpeg2k? ( >=media-libs/openjpeg-2.3.0-r1:2= ) + lcms? ( media-libs/lcms:2 ) + nss? ( >=dev-libs/nss-3.19:0 ) + png? ( media-libs/libpng:0= ) + qt5? ( + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtxml:5 + ) + tiff? ( media-libs/tiff:0 ) +" +RDEPEND="${DEPEND} + cjk? ( app-text/poppler-data ) +" + +DOCS=( AUTHORS NEWS README README-XPDF ) + +PATCHES=( + "${FILESDIR}/${PN}-0.60.1-qt5-dependencies.patch" + "${FILESDIR}/${PN}-0.28.1-fix-multilib-configuration.patch" + "${FILESDIR}/${PN}-0.71.0-respect-cflags.patch" + "${FILESDIR}/${PN}-0.61.0-respect-cflags.patch" + "${FILESDIR}/${PN}-0.57.0-disable-internal-jpx.patch" +) + +src_prepare() { + cmake-utils_src_prepare + + # Clang doesn't grok this flag, the configure nicely tests that, but + # cmake just uses it, so remove it if we use clang + if [[ ${CC} == clang ]] ; then + sed -e 's/-fno-check-new//' -i cmake/modules/PopplerMacros.cmake || die + fi + + if ! grep -Fq 'cmake_policy(SET CMP0002 OLD)' CMakeLists.txt ; then + sed -e '/^cmake_minimum_required/acmake_policy(SET CMP0002 OLD)' \ + -i CMakeLists.txt || die + else + einfo "policy(SET CMP0002 OLD) - workaround can be removed" + fi + + # we need to up the C++ version, bug #622526, #643278 + append-cxxflags -std=c++11 +} + +src_configure() { + xdg_environment_reset + local mycmakeargs=( + -DBUILD_GTK_TESTS=OFF + -DBUILD_QT5_TESTS=OFF + -DBUILD_CPP_TESTS=OFF + -DENABLE_SPLASH=ON + -DENABLE_ZLIB=ON + -DENABLE_ZLIB_UNCOMPRESS=OFF + -DENABLE_UNSTABLE_API_ABI_HEADERS=ON + -DSPLASH_CMYK=OFF + -DUSE_FIXEDPOINT=OFF + -DUSE_FLOAT=OFF + -DWITH_Cairo=$(usex cairo) + -DENABLE_LIBCURL=$(usex curl) + -DENABLE_CPP=$(usex cxx) + -DWITH_JPEG=$(usex jpeg) + -DENABLE_DCTDECODER=$(usex jpeg libjpeg none) + -DENABLE_LIBOPENJPEG=$(usex jpeg2k openjpeg2 none) + -DENABLE_CMS=$(usex lcms lcms2 none) + -DWITH_NSS3=$(usex nss) + -DWITH_PNG=$(usex png) + $(cmake-utils_use_find_package qt5 Qt5Core) + -DWITH_TIFF=$(usex tiff) + -DENABLE_UTILS=$(usex utils) + ) + use cairo && mycmakeargs+=( -DWITH_GObjectIntrospection=$(usex introspection) ) + + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install + + # live version doesn't provide html documentation + if use cairo && use doc && [[ ${PV} != *9999* ]]; then + # For now install gtk-doc there + insinto /usr/share/gtk-doc/html/poppler + doins -r "${S}"/glib/reference/html/* + fi +} diff --git a/app-text/poppler/poppler-9999.ebuild b/app-text/poppler/poppler-9999.ebuild index 4c97add33be3..61a50816fcf1 100644 --- a/app-text/poppler/poppler-9999.ebuild +++ b/app-text/poppler/poppler-9999.ebuild @@ -12,7 +12,7 @@ if [[ ${PV} == *9999* ]] ; then else SRC_URI="https://poppler.freedesktop.org/${P}.tar.xz" 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 ~sparc64-solaris ~x64-solaris ~x86-solaris" - SLOT="0/86" # CHECK THIS WHEN BUMPING!!! SUBSLOT IS libpoppler.so SOVERSION + SLOT="0/87" # CHECK THIS WHEN BUMPING!!! SUBSLOT IS libpoppler.so SOVERSION fi DESCRIPTION="PDF rendering library based on the xpdf-3.0 code base" diff --git a/dev-cpp/Manifest.gz b/dev-cpp/Manifest.gz index 926d97cc1b53..6adf923e5e01 100644 Binary files a/dev-cpp/Manifest.gz and b/dev-cpp/Manifest.gz differ diff --git a/dev-cpp/catch/catch-2.5.0.ebuild b/dev-cpp/catch/catch-2.5.0.ebuild index b649c8e17e62..2beda20f59a3 100644 --- a/dev-cpp/catch/catch-2.5.0.ebuild +++ b/dev-cpp/catch/catch-2.5.0.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} == *9999 ]]; then else MY_P=${PN^}2-${PV} SRC_URI="https://github.com/catchorg/Catch2/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz" - KEYWORDS="amd64 ~x86" + KEYWORDS="amd64 x86" S=${WORKDIR}/${MY_P} fi diff --git a/dev-cpp/libcmis/files/libcmis-0.5.2-icu-64.2.patch b/dev-cpp/libcmis/files/libcmis-0.5.2-icu-64.2.patch new file mode 100644 index 000000000000..6ba63ee7fe76 --- /dev/null +++ b/dev-cpp/libcmis/files/libcmis-0.5.2-icu-64.2.patch @@ -0,0 +1,17 @@ +--- a/inc/libcmis-c/repository.h 2018-12-27 14:07:55.000000000 +0100 ++++ b/inc/libcmis-c/repository.h 2019-04-21 01:29:46.504373226 +0200 +@@ -28,12 +28,12 @@ + #ifndef _REPOSITORY_H_ + #define _REPOSITORY_H_ + ++#include ++ + #ifdef __cplusplus + extern "C" { + #endif + +-#include +- + #include "libcmis-c/libcmis-c-api.h" + #include "libcmis-c/types.h" + diff --git a/dev-cpp/libcmis/libcmis-0.5.2-r1.ebuild b/dev-cpp/libcmis/libcmis-0.5.2-r1.ebuild new file mode 100644 index 000000000000..c9f4938bb63f --- /dev/null +++ b/dev-cpp/libcmis/libcmis-0.5.2-r1.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +if [[ ${PV} = 9999 ]]; then + EGIT_REPO_URI="https://github.com/tdf/libcmis.git" + inherit git-r3 +else + SRC_URI="https://github.com/tdf/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux" +fi +inherit autotools flag-o-matic + +DESCRIPTION="C++ client library for the CMIS interface" +HOMEPAGE="https://github.com/tdf/libcmis" + +LICENSE="|| ( GPL-2 LGPL-2 MPL-1.1 )" +SLOT="0.5" + +IUSE="man static-libs test tools" + +BDEPEND=" + virtual/pkgconfig + man? ( + app-text/docbook2X + dev-libs/libxslt + ) + test? ( + dev-util/cppcheck + dev-util/cppunit + ) +" +DEPEND=" + dev-libs/boost:= + dev-libs/libxml2 + net-misc/curl +" +RDEPEND="${DEPEND}" + +RESTRICT="test" + +PATCHES=( "${FILESDIR}/${P}-icu-64.2.patch" ) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + # bug 618778 + append-cxxflags -std=c++14 + + local myeconfargs=( + --program-suffix=-$(ver_cut 1-2) + --disable-werror + $(use_with man) + $(use_enable static-libs static) + $(use_enable test tests) + $(use_enable tools client) + ) + econf "${myeconfargs[@]}" +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} diff --git a/dev-cpp/libcmis/libcmis-9999.ebuild b/dev-cpp/libcmis/libcmis-9999.ebuild index 33f9f92173ea..a060dbb78ee9 100644 --- a/dev-cpp/libcmis/libcmis-9999.ebuild +++ b/dev-cpp/libcmis/libcmis-9999.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=7 @@ -6,11 +6,9 @@ EAPI=7 if [[ ${PV} = 9999 ]]; then EGIT_REPO_URI="https://github.com/tdf/libcmis.git" inherit git-r3 -elif [[ ${PV} = *_pre* ]]; then - COMMIT=738528d790b2b1d52d9b72d673842969a852815d - SRC_URI="https://github.com/tdf/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" else SRC_URI="https://github.com/tdf/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux" fi inherit autotools flag-o-matic @@ -20,18 +18,8 @@ HOMEPAGE="https://github.com/tdf/libcmis" LICENSE="|| ( GPL-2 LGPL-2 MPL-1.1 )" SLOT="0.5" -# Don't move KEYWORDS on the previous line or ekeyword won't work # 399061 -[[ ${PV} == 9999 ]] || \ -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="man static-libs test tools" -IUSE="man static-libs test" - -RDEPEND=" - dev-libs/boost:= - dev-libs/libxml2 - net-misc/curl -" -DEPEND="${RDEPEND}" BDEPEND=" virtual/pkgconfig man? ( @@ -43,11 +31,15 @@ BDEPEND=" dev-util/cppunit ) " +DEPEND=" + dev-libs/boost:= + dev-libs/libxml2 + net-misc/curl +" +RDEPEND="${DEPEND}" RESTRICT="test" -[[ ${PV} = *_pre* ]] && S="${WORKDIR}/${PN}-${COMMIT}" - src_prepare() { default eautoreconf @@ -63,7 +55,7 @@ src_configure() { $(use_with man) $(use_enable static-libs static) $(use_enable test tests) - --enable-client + $(use_enable tools client) ) econf "${myeconfargs[@]}" } diff --git a/dev-cpp/libcmis/metadata.xml b/dev-cpp/libcmis/metadata.xml index afb9c075be7a..02623876d9cc 100644 --- a/dev-cpp/libcmis/metadata.xml +++ b/dev-cpp/libcmis/metadata.xml @@ -6,7 +6,8 @@ Gentoo Office project - Build and install man pages. + Build and install man pages + Build client tool for testing and viewing features tdf/libcmis diff --git a/dev-db/Manifest.gz b/dev-db/Manifest.gz index 2797a1630a72..1364cb040ea5 100644 Binary files a/dev-db/Manifest.gz and b/dev-db/Manifest.gz differ diff --git a/dev-db/mysql-workbench/Manifest b/dev-db/mysql-workbench/Manifest index 75af94eba143..68abbf97f1d9 100644 --- a/dev-db/mysql-workbench/Manifest +++ b/dev-db/mysql-workbench/Manifest @@ -1,5 +1,5 @@ DIST antlr-3.4-complete.jar 2388361 BLAKE2B 561c1dffe464bbc387075df6d95bbdcab27315ba5679cfa10f85d6449baad3d05f4daa45af93d9b127d9fedb8c7e44c45537f1a84b4c4d877c40b9812620f669 SHA512 04be4dfba3a21f3ab9d9e439a64958bd8e844a9f151b798383bd9e0dd6ebc416783ae7cb1d1dbb27fb7288ab9756b13b8338cdb8ceb41a10949c852ad45ab1f2 DIST antlr-4.7.1-complete.jar 2240116 BLAKE2B 3acf99b3701b2092cad2fb6e91f27791cbedd82f26888d7329e481be29fce4ec644eb57f663e515b92dea46c24222d4fb090aae5cae30c57c412a38932ea72ed SHA512 de1c230d7294e05ac7b451cbc639bab9d416a674b281e21092fb4a9329ca8b6d4b92b9ad78a9771cff475a1610f1d0419819c4619bdff36c683019da67ef13b1 DIST mysql-workbench-community-6.3.10-src.tar.gz 14969443 BLAKE2B 57f7b0d661bc8211e123a027ce12e71be5637c189cc6e3b949df4f8e5a7edfc8c78f3c6e85b7292347dce2b720ee79070ac8fb91224396a3afae4104583d4325 SHA512 f892853a5f8b000c424b945c38680e17b041699fe2b03743b71c803de6cedeb12e3f69ad94d1c737e23f26d8608026e18fb29d31be6b3a2ffea1d78229212a4d -DIST mysql-workbench-community-8.0.13-src.tar.gz 16047080 BLAKE2B c31560a978620ae04210b452bcf90b75e7eb2ec20335470054b2640220ed29c3476f5ee1bacd86575f9b42481de5452e94b8d7a5e8f56eb17ea0770be19dc296 SHA512 d6f7aeb85e1bb59474d432f8088fd5603e5b539f3fce9c78db2aeaa8de3bc9356de09a6486138e07a29dd62b971e7601cce12a2e4a9f7309364081ee5db4b55d DIST mysql-workbench-community-8.0.14-src.tar.gz 15631739 BLAKE2B f37dbe83ecc642d08dc4996e343944b4f1c1c00a84d581ce79944d7f431910cd89b0c53fda14e8ff4c912ed8a1eaab517710d24e0bef89f2ed566d0d5f0730e4 SHA512 fc09bb73692956b40b003e23c9b6b6b710082c98393ad4de988dc4f4d5c78d7476a7f56f7fa5d201bf5a267643b13a30db385016fe800b57893355b9225aaf71 +DIST mysql-workbench-community-8.0.15-src.tar.gz 15631418 BLAKE2B 4bfea1e4dbdda2bef856bd1601d85a1196052d7abc253eb1e291a5d2b5a6b807875e0367a6e542975a12529d142695c1b45f9f1b9b8e094cdf6183f1b1b11b43 SHA512 f6b1dedd0fd97aae0da04fb5a7ebaac980753386f10588dcec2c77fdf5832caf4ee10f277d338f74a1551d8071b17ae4724386e7e62e2bf8421377b304c31055 diff --git a/dev-db/mysql-workbench/mysql-workbench-8.0.13.ebuild b/dev-db/mysql-workbench/mysql-workbench-8.0.15.ebuild similarity index 98% rename from dev-db/mysql-workbench/mysql-workbench-8.0.13.ebuild rename to dev-db/mysql-workbench/mysql-workbench-8.0.15.ebuild index ab3a1f466f1f..7e90842c6819 100644 --- a/dev-db/mysql-workbench/mysql-workbench-8.0.13.ebuild +++ b/dev-db/mysql-workbench/mysql-workbench-8.0.15.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 diff --git a/dev-db/percona-xtrabackup/Manifest b/dev-db/percona-xtrabackup/Manifest index 0f003953d5ad..551c586904aa 100644 --- a/dev-db/percona-xtrabackup/Manifest +++ b/dev-db/percona-xtrabackup/Manifest @@ -1,3 +1,2 @@ DIST boost_1_59_0.tar.gz 83709983 BLAKE2B 8c6676fa05fa401a6ecb3b890d95aceb4421ec48dd0eab38ce8d170c618e177c82dc67a165938f6be1a01daab24ce41888f5442dbc19ad3dd41368a01a6f89e4 SHA512 05fdbe5637543defdbc630b921515425885593d16db14534ed7b9aa60925ade8fb598d50cb894aed6dae688e789047216daa1bf03fa1aeb6b531060d9dae52ae -DIST percona-xtrabackup-2.4.12.tar.gz 57232309 BLAKE2B 71b1dc0448b521b252463fb68ff111def3b71aebe187d3196e3c82f56539db02347d94713bea3dda5978f13b86b88a564ad6f12e3907134edc49a41dcde98e51 SHA512 228a48617eec3b824c7cb33882796ac2beb6ca1895fe73f7004e8dfd0b8bd1df471c39ba1c3fca2a819140d934a8a884f61dafae7cb56023dc7bc844d2846c8a DIST percona-xtrabackup-2.4.13.tar.gz 57254236 BLAKE2B 061cbee03374193359ae557909389ec675ed35edf216afc9deeb0b7880705d03024d380d0d6070aabfdb710bbde3664fd73da65ae5980e58290d8c9af29f351c SHA512 19d5fb3d775f1513b931cb2e736b753c1dd82c42fee382fdfa9f183eaee562c32f635db5d569d991cf1c8f7168de55ed863ba2c59db459ab79b80792b21ab298 diff --git a/dev-db/percona-xtrabackup/percona-xtrabackup-2.4.12.ebuild b/dev-db/percona-xtrabackup/percona-xtrabackup-2.4.12.ebuild deleted file mode 100644 index 00fa92ff8fb4..000000000000 --- a/dev-db/percona-xtrabackup/percona-xtrabackup-2.4.12.ebuild +++ /dev/null @@ -1,86 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils flag-o-matic - -DESCRIPTION="Hot backup utility for MySQL based servers" -HOMEPAGE="https://www.percona.com/software/mysql-database/percona-xtrabackup" -SRC_URI="https://www.percona.com/downloads/XtraBackup/Percona-XtraBackup-${PV}/source/tarball/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" - -DEPEND=" - app-arch/lz4:0= - app-editors/vim-core - /dev/null)" ]] ; then + eerror "You need a gcc compiler that provides the Ada Compiler:" + eerror "1) use gcc-config to select the right compiler or" + eerror "2) set the bootstrap use flag" + die "ada compiler not available" + fi + + GCC_A_FAKEIT=" + ${P}-src.tar.gz + ${MYP}.tar.gz + gcc-interface-${REL}-gpl-${PV}-src.tar.gz" + if use bootstrap; then + GCC_A_FAKEIT="${GCC_A_FAKEIT} ${BTSTRP}.tar.gz" + fi + + toolchain_src_unpack + if use bootstrap; then + rm ${BTSTRP}/libexec/gcc/${CHOST}/4.7.4/ld || die + fi +} + +src_prepare() { + CC=${GCC} + CXX="${gnatbase/gcc/g++}" + GNATBIND="${gnatbase/gcc/gnatbind}" + GNATLINK="${gnatbase/gcc/gnatlink}" + GNATLS="${gnatbase/gcc/gnatls}" + if [[ ${gnatpath} != "." ]] ; then + CXX="${gnatpath}/${CXX}" + GNATBIND="${gnatpath}/${GNATBIND}" + GNATLINK="${gnatpath}/${GNATLINK}" + GNATLS="${gnatpath}/${GNATLS}" + fi + mkdir bin || die + ln -s $(which ${GCC}) bin/gcc || die + ln -s $(which ${CXX}) bin/g++ || die + ln -s $(which ${GNATMAKE}) bin/gnatmake || die + ln -s $(which ${GNATBIND}) bin/gnatbind || die + ln -s $(which ${GNATLINK}) bin/gnatlink || die + ln -s $(which ${GNATLS}) bin/gnatls || die + + cd .. + mv ${P}-src/src/ada ${MYP}/gcc/ || die + mv gcc-interface-${REL}-gpl-${PV}-src ${MYP}/gcc/ada/gcc-interface || die + epatch "${FILESDIR}"/${P}-gentoo.patch + rm patch/91_all_bmi-i386-PR-target-81763.patch || die + rm patch/93_all_copy-constructible-fix.patch || die + rm patch/95*.patch || die + rm patch/98*.patch || die + cd - + sed -i \ + -e 's:$(P) ::g' \ + gcc/ada/gcc-interface/Makefile.in \ + || die "sed failed" + toolchain_src_prepare +} + +src_configure() { + export PATH=${PWD}/bin:${PATH} + local trueGCC_BRANCH_VER=${GCC_BRANCH_VER} + GCC_BRANCH_VER=$(gcc-version) + downgrade_arch_flags + GCC_BRANCH_VER=${trueGCC_BRANCH_VER} + toolchain_src_configure \ + --enable-languages=ada \ + --disable-libada +} + +src_compile() { + unset ADAFLAGS + toolchain_src_compile + gcc_do_make "-C gcc gnatlib-shared" + ln -s gcc ../build/prev-gcc || die + ln -s ${CHOST} ../build/prev-${CHOST} || die + gcc_do_make "-C gcc gnattools" +} + +src_install() { + toolchain_src_install + cd "${D}"${BINPATH} + for x in gnat*; do + # For some reason, g77 gets made instead of ${CTARGET}-g77... + # this should take care of that + if [[ -f ${x} ]] ; then + # In case they're hardlinks, clear out the target first + # otherwise the mv below will complain. + rm -f ${CTARGET}-${x} + mv ${x} ${CTARGET}-${x} + fi + + if [[ -f ${CTARGET}-${x} ]] ; then + if ! is_crosscompile ; then + ln -sf ${CTARGET}-${x} ${x} + dosym ${BINPATH#${EPREFIX}}/${CTARGET}-${x} \ + /usr/bin/${x}-${GCC_CONFIG_VER} + fi + # Create versioned symlinks + dosym ${BINPATH#${EPREFIX}}/${CTARGET}-${x} \ + /usr/bin/${CTARGET}-${x}-${GCC_CONFIG_VER} + fi + + if [[ -f ${CTARGET}-${x}-${GCC_CONFIG_VER} ]] ; then + rm -f ${CTARGET}-${x}-${GCC_CONFIG_VER} + ln -sf ${CTARGET}-${x} ${CTARGET}-${x}-${GCC_CONFIG_VER} + fi + done +} + +pkg_postinst () { + toolchain_pkg_postinst + einfo "This provide the GNAT compiler with gcc for ada/c/c++ and more" + einfo "The compiler binary is ${CTARGET}-gcc-${TOOLCHAIN_GCC_PV}" + einfo "Even if the c/c++ compilers are using almost the same patched" + einfo "source as the sys-devel/gcc package its use is not extensively" + einfo "tested, and not supported for updating your system, except for ada" + einfo "related packages" +} diff --git a/dev-lang/perl/perl-5.28.2.ebuild b/dev-lang/perl/perl-5.28.2.ebuild index 3e30d24cd496..c2029dbe6b17 100644 --- a/dev-lang/perl/perl-5.28.2.ebuild +++ b/dev-lang/perl/perl-5.28.2.ebuild @@ -588,9 +588,10 @@ src_install() { rm -f "${ED}"${coredir}/${LIBPERL} ln -sf ${LIBPERL} "${ED}"/usr/$(get_libdir)/libperl$(get_libname ${SHORT_PV}) || die ln -sf ${LIBPERL} "${ED}"/usr/$(get_libdir)/libperl$(get_libname) || die - ln -sf ../../../../../$(get_libdir)/${LIBPERL} "${ED}"${coredir}/${LIBPERL} || die - ln -sf ../../../../../$(get_libdir)/${LIBPERL} "${ED}"${coredir}/libperl$(get_libname ${SHORT_PV}) || die - ln -sf ../../../../../$(get_libdir)/${LIBPERL} "${ED}"${coredir}/libperl$(get_libname) || die + + ln -sf ../../../../${LIBPERL} "${ED}"${coredir}/${LIBPERL} || die + ln -sf ../../../../${LIBPERL} "${ED}"${coredir}/libperl$(get_libname ${SHORT_PV}) || die + ln -sf ../../../../${LIBPERL} "${ED}"${coredir}/libperl$(get_libname) || die fi rm -rf "${ED}"/usr/share/man/man3 || die "Unable to remove module man pages" diff --git a/dev-lang/perl/perl-5.28.9999.ebuild b/dev-lang/perl/perl-5.28.9999.ebuild index 71fc2b82b39b..21d7a3f69eea 100644 --- a/dev-lang/perl/perl-5.28.9999.ebuild +++ b/dev-lang/perl/perl-5.28.9999.ebuild @@ -586,9 +586,10 @@ src_install() { rm -f "${ED}"${coredir}/${LIBPERL} ln -sf ${LIBPERL} "${ED}"/usr/$(get_libdir)/libperl$(get_libname ${SHORT_PV}) || die ln -sf ${LIBPERL} "${ED}"/usr/$(get_libdir)/libperl$(get_libname) || die - ln -sf ../../../../../$(get_libdir)/${LIBPERL} "${ED}"${coredir}/${LIBPERL} || die - ln -sf ../../../../../$(get_libdir)/${LIBPERL} "${ED}"${coredir}/libperl$(get_libname ${SHORT_PV}) || die - ln -sf ../../../../../$(get_libdir)/${LIBPERL} "${ED}"${coredir}/libperl$(get_libname) || die + + ln -sf ../../../../${LIBPERL} "${ED}"${coredir}/${LIBPERL} || die + ln -sf ../../../../${LIBPERL} "${ED}"${coredir}/libperl$(get_libname ${SHORT_PV}) || die + ln -sf ../../../../${LIBPERL} "${ED}"${coredir}/libperl$(get_libname) || die fi rm -rf "${ED}"/usr/share/man/man3 || die "Unable to remove module man pages" diff --git a/dev-lang/spidermonkey/spidermonkey-52.9.1_pre1.ebuild b/dev-lang/spidermonkey/spidermonkey-52.9.1_pre1.ebuild index 9324e9d313f8..575f17d42dd0 100644 --- a/dev-lang/spidermonkey/spidermonkey-52.9.1_pre1.ebuild +++ b/dev-lang/spidermonkey/spidermonkey-52.9.1_pre1.ebuild @@ -16,7 +16,7 @@ SRC_URI="http://ftp.mozilla.org/pub/spidermonkey/prereleases/52/pre1/mozjs-52.9. LICENSE="NPL-1.1" SLOT="52" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 ~sh ~sparc x86 ~x86-fbsd" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 ~sh ~sparc x86 ~x86-fbsd" IUSE="debug minimal +system-icu test" RESTRICT="ia64? ( test )" diff --git a/dev-lang/vala/vala-0.36.18.ebuild b/dev-lang/vala/vala-0.36.18.ebuild index b1535e0e1ee2..9b171ffa1b20 100644 --- a/dev-lang/vala/vala-0.36.18.ebuild +++ b/dev-lang/vala/vala-0.36.18.ebuild @@ -9,7 +9,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala" LICENSE="LGPL-2.1" SLOT="0.36" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux" IUSE="test" RDEPEND=" diff --git a/dev-lang/vala/vala-0.40.14.ebuild b/dev-lang/vala/vala-0.40.14.ebuild index 07ab9c96049d..af1745032a89 100644 --- a/dev-lang/vala/vala-0.40.14.ebuild +++ b/dev-lang/vala/vala-0.40.14.ebuild @@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala" LICENSE="LGPL-2.1" SLOT="0.40" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux" IUSE="test valadoc" RDEPEND=" diff --git a/dev-libs/Manifest.gz b/dev-libs/Manifest.gz index 7dd1d389db23..d47cd6c40786 100644 Binary files a/dev-libs/Manifest.gz and b/dev-libs/Manifest.gz differ diff --git a/dev-libs/apr/Manifest b/dev-libs/apr/Manifest index e664da23c52b..d237c17a11d5 100644 --- a/dev-libs/apr/Manifest +++ b/dev-libs/apr/Manifest @@ -1,4 +1,3 @@ -DIST apr-1.5.2.tar.bz2 826885 BLAKE2B 62953c31cd6cb9a80142cf65f791543febffd1716d9e4babd55c8010c6fc6e60ba3c287b21e146c19446185c03407f3990d862a0b9816039c2d1b7158ac90cd3 SHA512 d1156ad16abf07887797777b56c2147c890f16d8445829b3e3b4917950d24c5fd2f8febd439992467a5ea0511da562c0fb4a7cfd8a235ab55882388bfa2b919d DIST apr-1.6.3.tar.bz2 854100 BLAKE2B ac3d38ef201d92bb2e50a35b6f41de6120e6196f1412377eae56f013dfebbe7fe8461fcd4e5e82be275bde51253a7f1c5f708e780203382b64fe61637d97226c SHA512 f6b8679ae7fafff793c825c78775c84a646267c441710a50664589850e13148719b4eab48ab6e7c95b7aed085cff831115687434a7b160dcc2faa0eae63ac996 DIST apr-1.6.5.tar.bz2 855393 BLAKE2B ee01a841aaf5e98175c77e406baebcd82a2148bb8220f2cfac00d91dff38525606bb0f66ecb549eb6edf1fece53cb4eec4876423a864f09ce42bd0d999dc77e6 SHA512 d3511e320457b5531f565813e626e7941f6b82864852db6aa03dd298a65dbccdcdc4bd580f5314f8be45d268388edab25efe88cf8340b7d2897a4dbe9d0a41fc DIST apr-1.7.0.tar.bz2 872238 BLAKE2B a8750c45ca6495073a7120f3ae9b858905aecb24b6af5966c3900b06ac1f6d6b55346b17a39a9604cf1b595882335adedf8c8cf4db10e322501bfff4ad7adfe7 SHA512 3dc42d5caf17aab16f5c154080f020d5aed761e22db4c5f6506917f6bfd2bf8becfb40af919042bd4ce1077d5de74aa666f5edfba7f275efba78e8893c115148 diff --git a/dev-libs/apr/apr-1.5.2.ebuild b/dev-libs/apr/apr-1.5.2.ebuild deleted file mode 100644 index a3288dfe3f6d..000000000000 --- a/dev-libs/apr/apr-1.5.2.ebuild +++ /dev/null @@ -1,143 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit autotools eutils libtool multilib toolchain-funcs - -DESCRIPTION="Apache Portable Runtime Library" -HOMEPAGE="http://apr.apache.org/" -SRC_URI="mirror://apache/apr/${P}.tar.bz2" - -LICENSE="Apache-2.0" -SLOT="1" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="doc elibc_FreeBSD older-kernels-compatibility selinux static-libs +urandom" - -CDEPEND="elibc_glibc? ( >=sys-apps/util-linux-2.16 ) - elibc_mintlib? ( >=sys-apps/util-linux-2.18 )" -RDEPEND="${CDEPEND} - selinux? ( sec-policy/selinux-apache )" -DEPEND="${CDEPEND} - >=sys-devel/libtool-2.4.2 - doc? ( app-doc/doxygen )" - -DOCS=(CHANGES NOTICE README) - -src_prepare() { - epatch "${FILESDIR}"/${PN}-1.5.0-mint.patch - epatch "${FILESDIR}"/${PN}-1.5.0-libtool.patch - epatch "${FILESDIR}"/${PN}-1.5.0-cross-types.patch - epatch "${FILESDIR}"/${PN}-1.5.0-sysroot.patch #385775 - - epatch_user #449048 - - AT_M4DIR="build" eautoreconf - elibtoolize - - epatch "${FILESDIR}/config.layout.patch" -} - -src_configure() { - local myconf=() - - [[ ${CHOST} == *-mint* ]] && export ac_cv_func_poll=no - - if use older-kernels-compatibility; then - local apr_cv_accept4 apr_cv_dup3 apr_cv_epoll_create1 apr_cv_sock_cloexec - export apr_cv_accept4="no" - export apr_cv_dup3="no" - export apr_cv_epoll_create1="no" - export apr_cv_sock_cloexec="no" - fi - if tc-is-cross-compiler; then - # The apache project relies heavily on AC_TRY_RUN and doesn't - # have any sane cross-compiling fallback logic. - export \ - ac_cv_file__dev_zero="yes" \ - ac_cv_func_sem_open="yes" \ - ac_cv_negative_eai="yes" \ - ac_cv_o_nonblock_inherited="no" \ - ac_cv_struct_rlimit="yes" \ - ap_cv_atomic_builtins="yes" \ - apr_cv_accept4="yes" \ - apr_cv_dup3="yes" \ - apr_cv_epoll="yes" \ - apr_cv_epoll_create1="yes" \ - apr_cv_gai_addrconfig="yes" \ - apr_cv_mutex_recursive="yes" \ - apr_cv_mutex_robust_shared="yes" \ - apr_cv_process_shared_works="yes" \ - apr_cv_pthreads_lib="-pthread" \ - apr_cv_sock_cloexec="yes" \ - apr_cv_tcp_nodelay_with_cork="yes" - fi - - if use urandom; then - myconf+=( --with-devrandom=/dev/urandom ) - elif (( ${CHOST#*-hpux11.} <= 11 )); then - : # no /dev/*random on hpux11.11 and before, $PN detects this. - else - myconf+=( --with-devrandom=/dev/random ) - fi - - tc-is-static-only && myconf+=( --disable-dso ) - - # shl_load does not search runpath, but hpux11 supports dlopen - [[ ${CHOST} == *-hpux11* ]] && myconf+=( --enable-dso=dlfcn ) - - if [[ ${CHOST} == *-solaris2.10 ]]; then - case $(<$([[ ${CHOST} != ${CBUILD} ]] && echo "${EPREFIX}/usr/${CHOST}")/usr/include/atomic.h) in - *atomic_cas_ptr*) ;; - *) - elog "You do not have Solaris Patch ID "$( - [[ ${CHOST} == sparc* ]] && echo 118884 || echo 118885 - )" (Problem 4954703) installed on your host ($(hostname))," - elog "using generic atomic operations instead." - myconf+=( --disable-nonportable-atomics ) - ;; - esac - fi - - econf \ - --enable-layout=gentoo \ - --enable-nonportable-atomics \ - --enable-posix-shm \ - --enable-threads \ - $(use_enable static-libs static) \ - "${myconf[@]}" -} - -src_compile() { - if tc-is-cross-compiler; then - # This header is the same across targets, so use the build compiler. - emake tools/gen_test_char - tc-export_build_env BUILD_CC - ${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_CPPFLAGS} ${BUILD_LDFLAGS} \ - tools/gen_test_char.c -o tools/gen_test_char || die - fi - - emake - - if use doc; then - emake dox - fi -} - -src_install() { - default - - # Prallel install breaks since apr-1.5.1 - #make -j1 DESTDIR="${D}" install || die - - prune_libtool_files --all - - if use doc; then - dohtml -r docs/dox/html/* - fi - - # This file is only used on AIX systems, which Gentoo is not, - # and causes collisions between the SLOTs, so remove it. - # Even in Prefix, we don't need this on AIX. - rm -f "${ED}usr/$(get_libdir)/apr.exp" -} diff --git a/dev-libs/boost/Manifest b/dev-libs/boost/Manifest index a4de8bd61e23..5f5600925747 100644 --- a/dev-libs/boost/Manifest +++ b/dev-libs/boost/Manifest @@ -1,3 +1,2 @@ -DIST boost_1_63_0.tar.bz2 81984414 BLAKE2B 227c4432bd3ca0eb390048ec85047958fcb6ae289996501812cd8b13bf74bbe9b677d0110948265cab59a60deb36c4fc08440af74ac5a5219ea4eaea4fa6918f SHA512 c915c5f5778dee49b8e9d0a40f37f90f56fb1fdb1d8ce92d97bf48bc7bc462212487badfe4bbe30b06196d1149cfb221da12ac54e97499b0d4cb6466813bb4ad DIST boost_1_65_0.tar.bz2 82597718 BLAKE2B 0080956d6ad2f14130ce4a4734b1bd1ce83d3651b226653689e02770baa83cf11811ef4e44948ff68a168d9ce5cbfaea4f758970df2b4e9faa2d410181885f5b SHA512 7142650fb8d61e3ef16ba066fc918e087f19e9bc2ad1d6a11fb10bf0d6b1b5ad05ab032f076a5233a1624b3669e952b2cc38b7dc074bbf53018e2970ee90fcdd DIST boost_1_70_0.tar.bz2 97887058 BLAKE2B dc7a974c6dc2662b767dbd87cb832cd1749c24fb745779d1059b73f19f7e52b33b645adfe72b0296c5e098e5cdb3b9f5eddd382374f33fbcd2ad5739287b2206 SHA512 7f2ea9636baf0210e8ed1d21ee798efb6ce23c0710ff8228b285e2214f82193bcd2d912fd435929c554289a59101c7be2e27ce798f93833f307976f0dd070b49 diff --git a/dev-libs/boost/boost-1.63.0.ebuild b/dev-libs/boost/boost-1.63.0.ebuild deleted file mode 100644 index 15c14b9dabfc..000000000000 --- a/dev-libs/boost/boost-1.63.0.ebuild +++ /dev/null @@ -1,440 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python{2_7,3_{5,6}} ) - -inherit eutils flag-o-matic multiprocessing python-r1 toolchain-funcs versionator multilib-minimal - -MY_P="${PN}_$(replace_all_version_separators _)" -MAJOR_V="$(get_version_component_range 1-2)" - -DESCRIPTION="Boost Libraries for C++" -HOMEPAGE="https://www.boost.org/" -SRC_URI="https://downloads.sourceforge.net/project/boost/${PN}/${PV}/${MY_P}.tar.bz2" - -LICENSE="Boost-1.0" -SLOT="0/${PV}" # ${PV} instead ${MAJOR_V} due to bug 486122 -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris ~x86-winnt" - -IUSE="context debug doc icu +nls mpi python static-libs +threads tools" - -RDEPEND="icu? ( >=dev-libs/icu-3.6:=[${MULTILIB_USEDEP}] ) - !icu? ( virtual/libiconv[${MULTILIB_USEDEP}] ) - mpi? ( >=virtual/mpi-2.0-r4[${MULTILIB_USEDEP},cxx,threads] ) - python? ( ${PYTHON_DEPS} ) - app-arch/bzip2[${MULTILIB_USEDEP}] - sys-libs/zlib[${MULTILIB_USEDEP}] - !app-admin/eselect-boost" -DEPEND="${RDEPEND} - =dev-util/boost-build-${MAJOR_V}*" -REQUIRED_USE=" - mpi? ( threads ) - python? ( ${PYTHON_REQUIRED_USE} )" - -S="${WORKDIR}/${MY_P}" - -# the tests will never fail because these are not intended as sanity -# tests at all. They are more a way for upstream to check their own code -# on new compilers. Since they would either be completely unreliable -# (failing for no good reason) or completely useless (never failing) -# there is no point in having them in the ebuild to begin with. -RESTRICT="test" - -PATCHES=( - "${FILESDIR}/${PN}-1.48.0-disable_icu_rpath.patch" - "${FILESDIR}/${PN}-1.55.0-context-x32.patch" - "${FILESDIR}/${PN}-1.56.0-build-auto_index-tool.patch" - "${FILESDIR}/${PN}-1.63.0-fix-python.patch" -) - -python_bindings_needed() { - multilib_is_native_abi && use python -} - -tools_needed() { - multilib_is_native_abi && use tools -} - -create_user-config.jam() { - local compiler compiler_version compiler_executable - - if [[ ${CHOST} == *-darwin* ]]; then - compiler="darwin" - compiler_version="$(gcc-fullversion)" - compiler_executable="$(tc-getCXX)" - else - compiler="gcc" - compiler_version="$(gcc-version)" - compiler_executable="$(tc-getCXX)" - fi - local mpi_configuration python_configuration - - if use mpi; then - mpi_configuration="using mpi ;" - fi - - if python_bindings_needed; then - # boost expects libpython$(pyver) and doesn't allow overrides - # and the build system is so creepy that it's easier just to - # provide a symlink (linker's going to use SONAME anyway) - # TODO: replace it with proper override one day - ln -f -s "$(python_get_library_path)" "${T}/lib${EPYTHON}$(get_libname)" || die - - if tc-is-cross-compiler; then - python_configuration="using python : ${EPYTHON#python} : : ${SYSROOT:-${EROOT}}/usr/include/${EPYTHON} : ${SYSROOT:-${EROOT}}/usr/$(get_libdir) ;" - else - # note: we need to provide version explicitly because of - # a bug in the build system: - # https://github.com/boostorg/build/pull/104 - python_configuration="using python : ${EPYTHON#python} : ${PYTHON} : $(python_get_includedir) : ${T} ;" - fi - fi - - cat > "${BOOST_ROOT}/user-config.jam" << __EOF__ || die -using ${compiler} : ${compiler_version} : ${compiler_executable} : "${CFLAGS}" "${CXXFLAGS}" "${LDFLAGS}" ; -${mpi_configuration} -${python_configuration} -__EOF__ -} - -pkg_setup() { - # Bail out on unsupported build configuration, bug #456792 - if [[ -f "${EROOT%/}/etc/site-config.jam" ]]; then - grep -q gentoorelease "${EROOT%/}/etc/site-config.jam" && grep -q gentoodebug "${EROOT%/}/etc/site-config.jam" || - ( - eerror "You are using custom ${EROOT%/}/etc/site-config.jam without defined gentoorelease/gentoodebug targets." - eerror "Boost can not be built in such configuration." - eerror "Please, either remove this file or add targets from ${EROOT%/}/usr/share/boost-build/site-config.jam to it." - die - ) - fi -} - -src_prepare() { - default - - # Do not try to build missing 'wave' tool, bug #522682 - # Upstream bugreport - https://svn.boost.org/trac/boost/ticket/10507 - sed -i -e 's:wave/build//wave::' tools/Jamfile.v2 || die - - multilib_copy_sources -} - -ejam() { - local b2_opts=( - "--user-config=${BOOST_ROOT}/user-config.jam" - "$@" - ) - echo b2 "${b2_opts[@]}" - b2 "${b2_opts[@]}" -} - -src_configure() { - # Workaround for too many parallel processes requested, bug #506064 - [[ "$(makeopts_jobs)" -gt 64 ]] && MAKEOPTS="${MAKEOPTS} -j64" - - OPTIONS=( - $(usex debug gentoodebug gentoorelease) - "-j$(makeopts_jobs)" - -q - -d+2 - ) - - if [[ ${CHOST} == *-darwin* ]]; then - # We need to add the prefix, and in two cases this exceeds, so prepare - # for the largest possible space allocation. - append-ldflags -Wl,-headerpad_max_install_names - elif [[ ${CHOST} == *-winnt* ]]; then - compiler=parity - if [[ $($(tc-getCXX) -v) == *trunk* ]]; then - compilerVersion=trunk - else - compilerVersion=$($(tc-getCXX) -v | sed '1q' \ - | sed -e 's,\([a-z]*\) \([0-9]\.[0-9]\.[0-9][^ \t]*\) .*,\2,') - fi - compilerExecutable=$(tc-getCXX) - fi - - # bug 298489 - if use ppc || use ppc64; then - [[ $(gcc-version) > 4.3 ]] && append-flags -mno-altivec - fi - - # Use C++14 globally as of 1.62 - append-cxxflags -std=c++14 - - use icu && OPTIONS+=( - "-sICU_PATH=${EPREFIX}/usr" - ) - use icu || OPTIONS+=( - --disable-icu - boost.locale.icu=off - ) - use mpi || OPTIONS+=( - --without-mpi - ) - use nls || OPTIONS+=( - --without-locale - ) - use context || OPTIONS+=( - --without-context - --without-coroutine - --without-coroutine2 - --without-fiber - ) - use threads || OPTIONS+=( - --without-thread - ) - - OPTIONS+=( - pch=off - --boost-build="${EPREFIX}"/usr/share/boost-build - --prefix="${ED%/}/usr" - --layout=system - # building with threading=single is currently not possible - # https://svn.boost.org/trac/boost/ticket/7105 - threading=multi - link=$(usex static-libs shared,static shared) - ) - - [[ ${CHOST} == *-winnt* ]] && OPTIONS+=( - -sNO_BZIP2=1 - ) -} - -multilib_src_compile() { - local -x BOOST_ROOT="${BUILD_DIR}" - PYTHON_DIRS="" - MPI_PYTHON_MODULE="" - - building() { - create_user-config.jam - - local PYTHON_OPTIONS - if python_bindings_needed; then - PYTHON_OPTIONS=" --python-buildid=${EPYTHON#python}" - else - PYTHON_OPTIONS=" --without-python" - fi - - ejam \ - "${OPTIONS[@]}" \ - ${PYTHON_OPTIONS} \ - || die "Building of Boost libraries failed" - - if python_bindings_needed; then - if [[ -z "${PYTHON_DIRS}" ]]; then - PYTHON_DIRS="$(find bin.v2/libs -name python | sort)" - else - if [[ "${PYTHON_DIRS}" != "$(find bin.v2/libs -name python | sort)" ]]; then - die "Inconsistent structure of build directories" - fi - fi - - local dir - for dir in ${PYTHON_DIRS}; do - mv ${dir} ${dir}-${EPYTHON} \ - || die "Renaming of '${dir}' to '${dir}-${EPYTHON}' failed" - done - - if use mpi; then - if [[ -z "${MPI_PYTHON_MODULE}" ]]; then - MPI_PYTHON_MODULE="$(find bin.v2/libs/mpi/build/*/gentoo* -name mpi.so)" - if [[ "$(echo "${MPI_PYTHON_MODULE}" | wc -l)" -ne 1 ]]; then - die "Multiple mpi.so files found" - fi - else - if [[ "${MPI_PYTHON_MODULE}" != "$(find bin.v2/libs/mpi/build/*/gentoo* -name mpi.so)" ]]; then - die "Inconsistent structure of build directories" - fi - fi - - mv stage/lib/mpi.so stage/lib/mpi.so-${EPYTHON} \ - || die "Renaming of 'stage/lib/mpi.so' to 'stage/lib/mpi.so-${EPYTHON}' failed" - fi - fi - } - if python_bindings_needed; then - python_foreach_impl building - else - building - fi - - if tools_needed; then - pushd tools >/dev/null || die - - ejam \ - "${OPTIONS[@]}" \ - ${PYTHON_OPTIONS} \ - || die "Building of Boost tools failed" - popd >/dev/null || die - fi -} - -multilib_src_install_all() { - if ! use python; then - rm -r "${ED%/}"/usr/include/boost/python* || die - fi - - if ! use nls; then - rm -r "${ED%/}"/usr/include/boost/locale || die - fi - - if ! use context; then - rm -r "${ED%/}"/usr/include/boost/context || die - rm -r "${ED%/}"/usr/include/boost/coroutine{,2} || die - rm "${ED%/}"/usr/include/boost/asio/spawn.hpp || die - fi - - if use doc; then - # find extraneous files that shouldn't be installed - # as part of the documentation and remove them. - find libs/*/* \( -iname 'test' -o -iname 'src' \) -exec rm -rf '{}' + || die - find doc \( -name 'Jamfile.v2' -o -name 'build' -o -name '*.manifest' \) -exec rm -rf '{}' + || die - find tools \( -name 'Jamfile.v2' -o -name 'src' -o -name '*.cpp' -o -name '*.hpp' \) -exec rm -rf '{}' + || die - - docinto html - dodoc *.{htm,html,png,css} - dodoc -r doc libs more tools - - # To avoid broken links - dodoc LICENSE_1_0.txt - - dosym /usr/include/boost /usr/share/doc/${PF}/html/boost - fi -} - -multilib_src_install() { - local -x BOOST_ROOT="${BUILD_DIR}" - installation() { - create_user-config.jam - - local PYTHON_OPTIONS - if python_bindings_needed; then - local dir - for dir in ${PYTHON_DIRS}; do - cp -pr ${dir}-${EPYTHON} ${dir} \ - || die "Copying of '${dir}-${EPYTHON}' to '${dir}' failed" - done - - if use mpi; then - cp -p stage/lib/mpi.so-${EPYTHON} "${MPI_PYTHON_MODULE}" \ - || die "Copying of 'stage/lib/mpi.so-${EPYTHON}' to '${MPI_PYTHON_MODULE}' failed" - cp -p stage/lib/mpi.so-${EPYTHON} stage/lib/mpi.so \ - || die "Copying of 'stage/lib/mpi.so-${EPYTHON}' to 'stage/lib/mpi.so' failed" - fi - PYTHON_OPTIONS=" --python-buildid=${EPYTHON#python}" - else - PYTHON_OPTIONS=" --without-python" - fi - - ejam \ - "${OPTIONS[@]}" \ - ${PYTHON_OPTIONS} \ - --includedir="${ED%/}/usr/include" \ - --libdir="${ED%/}/usr/$(get_libdir)" \ - install || die "Installation of Boost libraries failed" - - if python_bindings_needed; then - rm -r ${PYTHON_DIRS} || die - - # Move mpi.so Python module to Python site-packages directory. - # https://svn.boost.org/trac/boost/ticket/2838 - if use mpi; then - local moddir=$(python_get_sitedir)/boost - # moddir already includes eprefix - mkdir -p "${D}${moddir}" || die - mv "${ED%/}/usr/$(get_libdir)/mpi.so" "${D}${moddir}" || die - cat << EOF > "${D}${moddir}/__init__.py" || die -import sys -if sys.platform.startswith('linux'): - import DLFCN - flags = sys.getdlopenflags() - sys.setdlopenflags(DLFCN.RTLD_NOW | DLFCN.RTLD_GLOBAL) - from . import mpi - sys.setdlopenflags(flags) - del DLFCN, flags -else: - from . import mpi -del sys -EOF - fi - - python_optimize - fi - } - if python_bindings_needed; then - python_foreach_impl installation - else - installation - fi - - pushd "${ED%/}/usr/$(get_libdir)" >/dev/null || die - - local ext=$(get_libname) - if use threads; then - local f - for f in *${ext}; do - dosym ${f} /usr/$(get_libdir)/${f/${ext}/-mt${ext}} - done - fi - - popd >/dev/null || die - - if tools_needed; then - dobin dist/bin/* - - insinto /usr/share - doins -r dist/share/boostbook - fi - - # boost's build system truely sucks for not having a destdir. Because for - # this reason we are forced to build with a prefix that includes the - # DESTROOT, dynamic libraries on Darwin end messed up, referencing the - # DESTROOT instread of the actual EPREFIX. There is no way out of here - # but to do it the dirty way of manually setting the right install_names. - if [[ ${CHOST} == *-darwin* ]]; then - einfo "Working around completely broken build-system(tm)" - local d - for d in "${ED%/}"/usr/lib/*.dylib; do - if [[ -f ${d} ]]; then - # fix the "soname" - ebegin " correcting install_name of ${d#${ED}}" - install_name_tool -id "/${d#${D}}" "${d}" - eend $? - # fix references to other libs - refs=$(otool -XL "${d}" | \ - sed -e '1d' -e 's/^\t//' | \ - grep "^libboost_" | \ - cut -f1 -d' ') - local r - for r in ${refs}; do - ebegin " correcting reference to ${r}" - install_name_tool -change \ - "${r}" \ - "${EPREFIX}/usr/lib/${r}" \ - "${d}" - eend $? - done - fi - done - fi -} - -pkg_preinst() { - # Yai for having symlinks that are nigh-impossible to remove without - # resorting to dirty hacks like these. Removes lingering symlinks - # from the slotted versions. - local symlink - for symlink in "${EROOT%/}/usr/include/boost" "${EROOT%/}/usr/share/boostbook"; do - if [[ -L ${symlink} ]]; then - rm -f "${symlink}" || die - fi - done - - # some ancient installs still have boost cruft lying around - # for unknown reasons, causing havoc for reverse dependencies - # Bug: 607734 - rm -rf "${EROOT%/}"/usr/include/boost-1_[3-5]? || die -} diff --git a/dev-libs/boost/boost-1.70.0.ebuild b/dev-libs/boost/boost-1.70.0.ebuild index d9f1985b08a6..d842d867d591 100644 --- a/dev-libs/boost/boost-1.70.0.ebuild +++ b/dev-libs/boost/boost-1.70.0.ebuild @@ -43,8 +43,8 @@ RDEPEND=" ) zlib? ( sys-libs/zlib:=[${MULTILIB_USEDEP}] ) zstd? ( app-arch/zstd:=[${MULTILIB_USEDEP}] )" -DEPEND="${RDEPEND} - =dev-util/boost-build-${MAJOR_V}*" +DEPEND="${RDEPEND}" +BDEPEND="=dev-util/boost-build-${MAJOR_V}*" S="${WORKDIR}/${MY_P}" @@ -171,6 +171,7 @@ src_configure() { $(usex nls '' '--without-locale') $(usex context '' '--without-context --without-coroutine --without-fiber') $(usex threads '' '--without-thread') + --without-stacktrace --boost-build="${EPREFIX}"/usr/share/boost-build --prefix="${ED}/usr" --layout=system diff --git a/dev-libs/boost/files/boost-1.63.0-fix-python.patch b/dev-libs/boost/files/boost-1.63.0-fix-python.patch deleted file mode 100644 index 18ca2f566711..000000000000 --- a/dev-libs/boost/files/boost-1.63.0-fix-python.patch +++ /dev/null @@ -1,138 +0,0 @@ ---- a/boostcpp.jam -+++ b/boostcpp.jam -@@ -104,7 +104,7 @@ - python-id = [ option.get "python-buildid" ] ; - if $(python-id) - { -- PYTHON_ID = [ regex.replace $(python-id) [*\\/:.\"\'] _ ] ; -+ PYTHON_ID = [ regex.replace $(python-id) [*\\/:\"\'] _ ] ; - } - - ---- a/libs/python/build/Jamfile -+++ b/libs/python/build/Jamfile -@@ -30,22 +30,6 @@ - ; - } - --rule find-py3-version --{ -- local versions = [ feature.values python ] ; -- local py3ver ; -- for local v in $(versions) -- { -- if $(v) >= 3.0 -- { -- py3ver = $(v) ; -- } -- } -- return $(py3ver) ; --} -- --py3-version = [ find-py3-version ] ; -- - project boost/python - : source-location ../src - ; -@@ -53,10 +37,16 @@ - rule cond ( test ? : yes * : no * ) { if $(test) { return $(yes) ; } else { return $(no) ; } } - rule unless ( test ? : yes * : no * ) { if ! $(test) { return $(yes) ; } else { return $(no) ; } } - --rule lib_boost_python ( is-py3 ? ) -+rule lib_boost_python - { -+ local python_major_version = [ MATCH "^([^.]+)" : [ feature.values python ] ] ; -+ local python2 ; -+ if $(python_major_version) = 2 -+ { -+ python2 = true ; -+ } - -- lib [ cond $(is-py3) : boost_python3 : boost_python ] -+ lib boost_python - : # sources - numeric.cpp - list.cpp -@@ -90,20 +80,9 @@ - : # requirements - static:BOOST_PYTHON_STATIC_LIB - BOOST_PYTHON_SOURCE -+ [ cond $(python2) : -fno-strict-aliasing ] - -- # On Windows, all code using Python has to link to the Python -- # import library. -- # -- # On *nix we never link libboost_python to libpython. When -- # extending Python, all Python symbols are provided by the -- # Python interpreter executable. When embedding Python, the -- # client executable is expected to explicitly link to -- # /python//python (the target representing libpython) itself. -- # -- # python_for_extensions is a target defined by Boost.Build to -- # provide the Python include paths, and on Windows, the Python -- # import library, as usage requirements. -- [ cond [ python.configured ] : /python//python_for_extensions ] -+ [ cond [ python.configured ] : /python//python ] - - # we prevent building when there is no python available - # as it's not possible anyway, and to cause dependents to -@@ -112,7 +91,6 @@ - config-warning - - on:BOOST_DEBUG_PYTHON -- [ cond $(is-py3) : $(py3-version) ] - - -@$(BOOST_JAMROOT_MODULE)%$(BOOST_JAMROOT_MODULE).tag - @$(BOOST_JAMROOT_MODULE)%$(BOOST_JAMROOT_MODULE).python-tag -@@ -125,51 +103,8 @@ - ; - } - --rule lib_boost_numpy ( is-py3 ? ) --{ -- numpy-include = [ python.numpy-include ] ; -- lib [ cond $(is-py3) : boost_numpy3 : boost_numpy ] -- : # sources -- numpy/dtype.cpp -- numpy/matrix.cpp -- numpy/ndarray.cpp -- numpy/numpy.cpp -- numpy/scalars.cpp -- numpy/ufunc.cpp -- : # requirements -- [ cond [ python.numpy ] : /python//python_for_extensions ] -- [ unless [ python.numpy ] : no ] -- $(numpy-include) -- boost_python -- on:BOOST_DEBUG_PYTHON -- [ cond $(is-py3) : $(py3-version) ] -- -- -@$(BOOST_JAMROOT_MODULE)%$(BOOST_JAMROOT_MODULE).tag -- @$(BOOST_JAMROOT_MODULE)%$(BOOST_JAMROOT_MODULE).python-tag -- -- : # default build -- shared -- : # usage requirements -- on:BOOST_DEBUG_PYTHON -- ; --} -- - libraries = boost_python ; --libraries3 = boost_python3 ; --if [ python.numpy ] --{ -- libraries += boost_numpy ; -- libraries3 += boost_numpy3 ; --} - - lib_boost_python ; --lib_boost_numpy ; -- --if $(py3-version) --{ -- lib_boost_python yes ; -- lib_boost_numpy yes ; -- libraries += $(libraries3) ; --} - - boost-install $(libraries) ; diff --git a/dev-libs/botan/botan-2.9.0.ebuild b/dev-libs/botan/botan-2.9.0.ebuild index e46dbb8f1ef7..82f2aaf95bb4 100644 --- a/dev-libs/botan/botan-2.9.0.ebuild +++ b/dev-libs/botan/botan-2.9.0.ebuild @@ -12,7 +12,7 @@ DESCRIPTION="A C++ crypto library" HOMEPAGE="https://botan.randombit.net/" SRC_URI="https://botan.randombit.net/releases/${MY_P}.tgz" -KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos" +KEYWORDS="amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos" SLOT="2/$(ver_cut 1-2)" # soname version LICENSE="BSD" IUSE="bindist doc boost python bzip2 libressl lzma sqlite ssl static-libs zlib" diff --git a/dev-libs/elfutils/elfutils-0.173-r1.ebuild b/dev-libs/elfutils/elfutils-0.173-r1.ebuild index b9dc3c32c73d..0db8e1e950b3 100644 --- a/dev-libs/elfutils/elfutils-0.173-r1.ebuild +++ b/dev-libs/elfutils/elfutils-0.173-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://sourceware.org/elfutils/ftp/${PV}/${P}.tar.bz2" LICENSE="|| ( GPL-2+ LGPL-3+ ) utils? ( GPL-3+ )" SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux" IUSE="bzip2 lzma nls static-libs test +threads +utils" RDEPEND=">=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] diff --git a/dev-libs/icu-layoutex/Manifest b/dev-libs/icu-layoutex/Manifest index f77c1e6b6c90..8ebb1161a089 100644 --- a/dev-libs/icu-layoutex/Manifest +++ b/dev-libs/icu-layoutex/Manifest @@ -1,3 +1,4 @@ DIST icu4c-58_2-src.tgz 23369902 BLAKE2B cdd2e02c3aba050f5b7f8b38c5a3731e3e5f1cc1403ef86a50908b95560ea3cf8a2d47119fa60cf34f22a8b65eaa2392fd5bcbd3bc48b3da541fe3d9bd7392c0 SHA512 5c21af748f48b392e6c0412bd0aee92162ea931820dcbfab4ec6e0299868504b303d88f7586cc95de55c777ac0dca3a29d6c8ca0892c646ebc864c8a5b5a162a DIST icu4c-63_1-src.tgz 23746939 BLAKE2B 5a665554506ff705c83c7a03a1b5598b1a48afbe1c6caaccd5a2d7d5aae16b3e18d7bc65ed552fc4df86248a2f13962438f19bca6c2a579843204c7dc52e6278 SHA512 9ab407ed840a00cdda7470dcc4c40299a125ad246ae4d019c4b1ede54781157fd63af015a8228cd95dbc47e4d15a0932b2c657489046a19788e5e8266eac079c DIST icu4c-64_1-src.tgz 24013136 BLAKE2B e577bd4c9b822e5ef3a101b3ef46b7b42ca18077d6e05fca543ff1eb702261f017981fb22dd3970662397530b390f648d4417c84dcf3d6ed0d298dd7a8c38897 SHA512 5eca8342d8bdf902689243506643e04512744b33962687e118f6810af6f7fd073678f67b991d2ae9139d257713b63abb4222b96687234df01ad5ff62df16ede0 +DIST icu4c-64_2-src.tgz 24013250 BLAKE2B 4a286e7a952f5faa74d942f6b6a73147a46aa10fe6d54d024e2d18d1e01056444d56118ded04b4fe084d6a0f9058d7d9e76973960ac8fe5bd9ee105d9e214318 SHA512 5ecb4c230ba45918747a1cf9aef86f555aa07d5b29b1d07ab674e8013f46dfb907a0e9d6945db41155f9dc3012fd94e1152ffc19f61a68b6dfcbabdcb8ae9d78 diff --git a/dev-libs/icu-layoutex/icu-layoutex-64.2.ebuild b/dev-libs/icu-layoutex/icu-layoutex-64.2.ebuild new file mode 100644 index 000000000000..9f738852cf9d --- /dev/null +++ b/dev-libs/icu-layoutex/icu-layoutex-64.2.ebuild @@ -0,0 +1,109 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools flag-o-matic multilib-minimal toolchain-funcs + +DESCRIPTION="External layout part of International Components for Unicode" +HOMEPAGE="http://www.icu-project.org/" +SRC_URI="http://download.icu-project.org/files/icu4c/${PV/_/}/icu4c-${PV//./_}-src.tgz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="debug static-libs" + +BDEPEND=" + virtual/pkgconfig[${MULTILIB_USEDEP}] +" +DEPEND=" + ~dev-libs/icu-${PV}[${MULTILIB_USEDEP}] + dev-libs/icu-le-hb[${MULTILIB_USEDEP}] +" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${PN/-layoutex}/source" + +PATCHES=( + "${FILESDIR}/${PN}-58.1-remove-bashisms.patch" +) + +src_prepare() { + # apply patches + default + + # Disable renaming as it is stupid thing to do + sed -i \ + -e "s/#define U_DISABLE_RENAMING 0/#define U_DISABLE_RENAMING 1/" \ + common/unicode/uconfig.h || die + + # Fix linking of icudata + sed -i \ + -e "s:LDFLAGSICUDT=-nodefaultlibs -nostdlib:LDFLAGSICUDT=:" \ + config/mh-linux || die + + eautoreconf +} + +src_configure() { + # Use C++14 + append-cxxflags -std=c++14 + + if tc-is-cross-compiler; then + mkdir "${WORKDIR}"/host || die + pushd "${WORKDIR}"/host >/dev/null || die + + CFLAGS="" CXXFLAGS="" ASFLAGS="" LDFLAGS="" \ + CC="$(tc-getBUILD_CC)" CXX="$(tc-getBUILD_CXX)" AR="$(tc-getBUILD_AR)" \ + RANLIB="$(tc-getBUILD_RANLIB)" LD="$(tc-getBUILD_LD)" \ + "${S}"/configure --disable-renaming --disable-debug \ + --disable-samples --enable-static || die + emake + + popd >/dev/null || die + fi + + multilib-minimal_src_configure +} + +multilib_src_configure() { + local myeconfargs=( + --disable-renaming + --disable-samples + --enable-layoutex + $(use_enable debug) + $(use_enable static-libs static) + ) + + tc-is-cross-compiler && myeconfargs+=( + --with-cross-build="${WORKDIR}"/host + ) + + # icu tries to use clang by default + tc-export CC CXX + + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" +} + +multilib_src_test() { + # INTLTEST_OPTS: intltest options + # -e: Exhaustive testing + # -l: Reporting of memory leaks + # -v: Increased verbosity + # IOTEST_OPTS: iotest options + # -e: Exhaustive testing + # -v: Increased verbosity + # CINTLTST_OPTS: cintltst options + # -e: Exhaustive testing + # -v: Increased verbosity + pushd layoutex &>/dev/null || die + emake -j1 VERBOSE="1" check + popd &>/dev/null || die +} + +multilib_src_install() { + pushd layoutex &>/dev/null || die + default + popd &>/dev/null || die +} diff --git a/dev-libs/icu/Manifest b/dev-libs/icu/Manifest index f77c1e6b6c90..8ebb1161a089 100644 --- a/dev-libs/icu/Manifest +++ b/dev-libs/icu/Manifest @@ -1,3 +1,4 @@ DIST icu4c-58_2-src.tgz 23369902 BLAKE2B cdd2e02c3aba050f5b7f8b38c5a3731e3e5f1cc1403ef86a50908b95560ea3cf8a2d47119fa60cf34f22a8b65eaa2392fd5bcbd3bc48b3da541fe3d9bd7392c0 SHA512 5c21af748f48b392e6c0412bd0aee92162ea931820dcbfab4ec6e0299868504b303d88f7586cc95de55c777ac0dca3a29d6c8ca0892c646ebc864c8a5b5a162a DIST icu4c-63_1-src.tgz 23746939 BLAKE2B 5a665554506ff705c83c7a03a1b5598b1a48afbe1c6caaccd5a2d7d5aae16b3e18d7bc65ed552fc4df86248a2f13962438f19bca6c2a579843204c7dc52e6278 SHA512 9ab407ed840a00cdda7470dcc4c40299a125ad246ae4d019c4b1ede54781157fd63af015a8228cd95dbc47e4d15a0932b2c657489046a19788e5e8266eac079c DIST icu4c-64_1-src.tgz 24013136 BLAKE2B e577bd4c9b822e5ef3a101b3ef46b7b42ca18077d6e05fca543ff1eb702261f017981fb22dd3970662397530b390f648d4417c84dcf3d6ed0d298dd7a8c38897 SHA512 5eca8342d8bdf902689243506643e04512744b33962687e118f6810af6f7fd073678f67b991d2ae9139d257713b63abb4222b96687234df01ad5ff62df16ede0 +DIST icu4c-64_2-src.tgz 24013250 BLAKE2B 4a286e7a952f5faa74d942f6b6a73147a46aa10fe6d54d024e2d18d1e01056444d56118ded04b4fe084d6a0f9058d7d9e76973960ac8fe5bd9ee105d9e214318 SHA512 5ecb4c230ba45918747a1cf9aef86f555aa07d5b29b1d07ab674e8013f46dfb907a0e9d6945db41155f9dc3012fd94e1152ffc19f61a68b6dfcbabdcb8ae9d78 diff --git a/dev-libs/icu/files/icu-64.1-data_archive_generation.patch b/dev-libs/icu/files/icu-64.1-data_archive_generation.patch new file mode 100644 index 000000000000..3bb7673f254a --- /dev/null +++ b/dev-libs/icu/files/icu-64.1-data_archive_generation.patch @@ -0,0 +1,14 @@ +https://bugs.gentoo.org/682170 + +--- a/data/Makefile.in ++++ b/data/Makefile.in +@@ -148,7 +148,8 @@ + # and convert it to the current type. + ifneq ($(ICUDATA_ARCHIVE),) + ICUDATA_SOURCE_ARCHIVE = $(OUTDIR)/$(ICUDATA_PLATFORM_NAME).dat +-$(ICUDATA_SOURCE_ARCHIVE): $(ICUDATA_ARCHIVE) $(OUTDIR) ++$(ICUDATA_SOURCE_ARCHIVE): $(ICUDATA_ARCHIVE) ++ $(MKINSTALLDIRS) $(OUTDIR) + $(INVOKE) $(TOOLBINDIR)/icupkg -t$(ICUDATA_CHAR) $(ICUDATA_ARCHIVE) $(ICUDATA_SOURCE_ARCHIVE) + endif + else diff --git a/dev-libs/icu/files/icu-64.2-darwin.patch b/dev-libs/icu/files/icu-64.2-darwin.patch new file mode 100644 index 000000000000..e6af282bd0ef --- /dev/null +++ b/dev-libs/icu/files/icu-64.2-darwin.patch @@ -0,0 +1,56 @@ +same as 4.7, but retargetted to apply with eapply + +forward-ported from v58.2 to v64.2 + +--- a/config/mh-darwin ++++ b/config/mh-darwin +@@ -6,6 +6,12 @@ + ## Copyright (c) 1999-2012 International Business Machines Corporation and + ## others. All Rights Reserved. + ++SO_TARGET = $(LIBDIR)/$(LIBICU)$(TARGET_STUBNAME)$(ICULIBSUFFIX).$(SO) ++FINAL_SO_TARGET = $(LIBDIR)/$(LIBICU)$(TARGET_STUBNAME)$(ICULIBSUFFIX).$(SO_TARGET_VERSION).$(SO) ++MIDDLE_SO_TARGET = $(LIBDIR)/$(LIBICU)$(TARGET_STUBNAME)$(ICULIBSUFFIX).$(SO_TARGET_VERSION_MAJOR).$(SO) ++ ++IS_DARWIN = yes ++ + ## Flags for position independent code + SHAREDLIBCFLAGS = -dynamic + SHAREDLIBCXXFLAGS = -dynamic +@@ -33,7 +39,7 @@ + ifeq ($(ENABLE_RPATH),YES) + LD_SONAME = -Wl,-compatibility_version -Wl,$(SO_TARGET_VERSION_MAJOR) -Wl,-current_version -Wl,$(SO_TARGET_VERSION) -install_name $(libdir)/$(notdir $(MIDDLE_SO_TARGET)) + else +-LD_SONAME = -Wl,-compatibility_version -Wl,$(SO_TARGET_VERSION_MAJOR) -Wl,-current_version -Wl,$(SO_TARGET_VERSION) -install_name $(notdir $(MIDDLE_SO_TARGET)) $(PKGDATA_TRAILING_SPACE) ++LD_SONAME = -Wl,-compatibility_version -Wl,$(SO_TARGET_VERSION_MAJOR) -Wl,-current_version -Wl,$(SO_TARGET_VERSION) -install_name $(libdir)/$(notdir $(MIDDLE_SO_TARGET)) $(PKGDATA_TRAILING_SPACE) + endif + + ## Compiler switch to embed a runtime search path +--- a/stubdata/Makefile.in ++++ b/stubdata/Makefile.in +@@ -34,7 +34,11 @@ + + + ifneq ($(ENABLE_SHARED),) ++ifeq ($(IS_DARWIN),) + SO_TARGET = $(STUBDATA_LIBDIR)$(LIBICU)$(TARGET_STUBNAME)$(ICULIBSUFFIX)$(STUB_SUFFIX).$(SO) ++else ++SO_TARGET = $(LIBDIR)/$(STUBDATA_LIBDIR)$(LIBICU)$(TARGET_STUBNAME)$(ICULIBSUFFIX)$(STUB_SUFFIX).$(SO) ++endif + ALL_SO_TARGETS = $(FINAL_SO_TARGET) $(MIDDLE_SO_TARGET) $(SO_TARGET) $(BATCH_STUB_TARGET) $(SHARED_OBJECT) + endif + +--- a/tools/ctestfw/Makefile.in ++++ b/tools/ctestfw/Makefile.in +@@ -33,7 +33,11 @@ + endif + + ifneq ($(ENABLE_SHARED),) ++ifeq ($(IS_DARWIN),) + SO_TARGET = $(LIBICU)$(TARGET_STUBNAME)$(ICULIBSUFFIX).$(SO) ++else ++SO_TARGET = $(LIBDIR)/$(LIBICU)$(TARGET_STUBNAME)$(ICULIBSUFFIX).$(SO) ++endif + ALL_SO_TARGETS = $(SO_TARGET) $(MIDDLE_SO_TARGET) $(FINAL_SO_TARGET) $(SHARED_OBJECT) + endif + diff --git a/dev-libs/icu/files/icu-64.2-extern_c.patch b/dev-libs/icu/files/icu-64.2-extern_c.patch new file mode 100644 index 000000000000..9a757e12037b --- /dev/null +++ b/dev-libs/icu/files/icu-64.2-extern_c.patch @@ -0,0 +1,789 @@ +From 26bdef634585eb24946dba035611266e9431873b Mon Sep 17 00:00:00 2001 +From: Alon Bar-Lev +Date: Sat, 30 Mar 2019 09:59:46 +0300 +Subject: [PATCH] ICU-20530 Fix header issues based on test/hdrtst + +Remove explicit extern "C++" scope. + +Remove C++ macros in C mode. + +Fix issues detected by make -C test/hdrtst. + +Run test/hdrtest during CI to detect future breakage. + +Signed-off-by: Alon Bar-Lev +Closes: https://github.com/unicode-org/icu/pull/613 +Signed-off-by: Lars Wendler +diff --git a/icu4c/source/common/unicode/ucptrie.h b/icu4c/source/common/unicode/ucptrie.h +index 2718c984e4..ce7340b890 100644 +--- a/icu4c/source/common/unicode/ucptrie.h ++++ b/icu4c/source/common/unicode/ucptrie.h +@@ -216,25 +216,6 @@ ucptrie_openFromBinary(UCPTrieType type, UCPTrieValueWidth valueWidth, + U_CAPI void U_EXPORT2 + ucptrie_close(UCPTrie *trie); + +-#if U_SHOW_CPLUSPLUS_API +- +-U_NAMESPACE_BEGIN +- +-/** +- * \class LocalUCPTriePointer +- * "Smart pointer" class, closes a UCPTrie via ucptrie_close(). +- * For most methods see the LocalPointerBase base class. +- * +- * @see LocalPointerBase +- * @see LocalPointer +- * @draft ICU 63 +- */ +-U_DEFINE_LOCAL_OPEN_POINTER(LocalUCPTriePointer, UCPTrie, ucptrie_close); +- +-U_NAMESPACE_END +- +-#endif +- + /** + * Returns the trie type. + * +@@ -642,5 +623,25 @@ ucptrie_internalU8PrevIndex(const UCPTrie *trie, UChar32 c, + U_CDECL_END + + #endif // U_IN_DOXYGEN ++ ++#if U_SHOW_CPLUSPLUS_API ++ ++U_NAMESPACE_BEGIN ++ ++/** ++ * \class LocalUCPTriePointer ++ * "Smart pointer" class, closes a UCPTrie via ucptrie_close(). ++ * For most methods see the LocalPointerBase base class. ++ * ++ * @see LocalPointerBase ++ * @see LocalPointer ++ * @draft ICU 63 ++ */ ++U_DEFINE_LOCAL_OPEN_POINTER(LocalUCPTriePointer, UCPTrie, ucptrie_close); ++ ++U_NAMESPACE_END ++ ++#endif // U_SHOW_CPLUSPLUS_API ++ + #endif // U_HIDE_DRAFT_API + #endif +diff --git a/icu4c/source/common/unicode/udata.h b/icu4c/source/common/unicode/udata.h +index a0286e1e42..325ffcf17d 100644 +--- a/icu4c/source/common/unicode/udata.h ++++ b/icu4c/source/common/unicode/udata.h +@@ -264,25 +264,6 @@ udata_openChoice(const char *path, const char *type, const char *name, + U_STABLE void U_EXPORT2 + udata_close(UDataMemory *pData); + +-#if U_SHOW_CPLUSPLUS_API +- +-U_NAMESPACE_BEGIN +- +-/** +- * \class LocalUDataMemoryPointer +- * "Smart pointer" class, closes a UDataMemory via udata_close(). +- * For most methods see the LocalPointerBase base class. +- * +- * @see LocalPointerBase +- * @see LocalPointer +- * @stable ICU 4.4 +- */ +-U_DEFINE_LOCAL_OPEN_POINTER(LocalUDataMemoryPointer, UDataMemory, udata_close); +- +-U_NAMESPACE_END +- +-#endif +- + /** + * Get the pointer to the actual data inside the data memory. + * The data is read-only. +@@ -434,4 +415,23 @@ udata_setFileAccess(UDataFileAccess access, UErrorCode *status); + + U_CDECL_END + ++#if U_SHOW_CPLUSPLUS_API ++ ++U_NAMESPACE_BEGIN ++ ++/** ++ * \class LocalUDataMemoryPointer ++ * "Smart pointer" class, closes a UDataMemory via udata_close(). ++ * For most methods see the LocalPointerBase base class. ++ * ++ * @see LocalPointerBase ++ * @see LocalPointer ++ * @stable ICU 4.4 ++ */ ++U_DEFINE_LOCAL_OPEN_POINTER(LocalUDataMemoryPointer, UDataMemory, udata_close); ++ ++U_NAMESPACE_END ++ ++#endif // U_SHOW_CPLUSPLUS_API ++ + #endif +diff --git a/icu4c/source/common/unicode/uversion.h b/icu4c/source/common/unicode/uversion.h +index 4aaa8b4d60..5700f62cbf 100644 +--- a/icu4c/source/common/unicode/uversion.h ++++ b/icu4c/source/common/unicode/uversion.h +@@ -62,26 +62,22 @@ typedef uint8_t UVersionInfo[U_MAX_VERSION_LENGTH]; + /* C++ namespace if supported. Versioned unless versioning is disabled. */ + /*===========================================================================*/ + ++/* Define C++ namespace symbols. */ ++#ifdef __cplusplus ++ + /** + * \def U_NAMESPACE_BEGIN +- * This is used to begin a declaration of a public ICU C++ API. +- * When not compiling for C++, it does nothing. +- * When compiling for C++, it begins an extern "C++" linkage block (to protect +- * against cases in which an external client includes ICU header files inside +- * an extern "C" linkage block). ++ * This is used to begin a declaration of a public ICU C++ API within ++ * versioned-ICU-namespace block. + * +- * It also begins a versioned-ICU-namespace block. + * @stable ICU 2.4 + */ + + /** + * \def U_NAMESPACE_END + * This is used to end a declaration of a public ICU C++ API. +- * When not compiling for C++, it does nothing. +- * When compiling for C++, it ends the extern "C++" block begun by +- * U_NAMESPACE_BEGIN. ++ * It ends the versioned-ICU-namespace block begun by U_NAMESPACE_BEGIN. + * +- * It also ends the versioned-ICU-namespace block begun by U_NAMESPACE_BEGIN. + * @stable ICU 2.4 + */ + +@@ -89,9 +85,6 @@ typedef uint8_t UVersionInfo[U_MAX_VERSION_LENGTH]; + * \def U_NAMESPACE_USE + * This is used to specify that the rest of the code uses the + * public ICU C++ API namespace. +- * This is invoked by default; we recommend that you turn it off: +- * See the "Recommended Build Options" section of the ICU4C readme +- * (http://source.icu-project.org/repos/icu/icu/trunk/readme.html#RecBuild) + * @stable ICU 2.4 + */ + +@@ -105,8 +98,6 @@ typedef uint8_t UVersionInfo[U_MAX_VERSION_LENGTH]; + * @stable ICU 2.4 + */ + +-/* Define C++ namespace symbols. */ +-#ifdef __cplusplus + # if U_DISABLE_RENAMING + # define U_ICU_NAMESPACE icu + namespace U_ICU_NAMESPACE { } +@@ -116,8 +107,8 @@ typedef uint8_t UVersionInfo[U_MAX_VERSION_LENGTH]; + namespace icu = U_ICU_NAMESPACE; + # endif + +-# define U_NAMESPACE_BEGIN extern "C++" { namespace U_ICU_NAMESPACE { +-# define U_NAMESPACE_END } } ++# define U_NAMESPACE_BEGIN namespace U_ICU_NAMESPACE { ++# define U_NAMESPACE_END } + # define U_NAMESPACE_USE using namespace U_ICU_NAMESPACE; + # define U_NAMESPACE_QUALIFIER U_ICU_NAMESPACE:: + +@@ -133,12 +124,7 @@ typedef uint8_t UVersionInfo[U_MAX_VERSION_LENGTH]; + # if U_USING_ICU_NAMESPACE + U_NAMESPACE_USE + # endif +-#else +-# define U_NAMESPACE_BEGIN +-# define U_NAMESPACE_END +-# define U_NAMESPACE_USE +-# define U_NAMESPACE_QUALIFIER +-#endif ++#endif /* __cplusplus */ + + /*===========================================================================*/ + /* General version helper functions. Definitions in putil.c */ +diff --git a/icu4c/source/i18n/unicode/reldatefmt.h b/icu4c/source/i18n/unicode/reldatefmt.h +index 16ae91ad03..1e164a581a 100644 +--- a/icu4c/source/i18n/unicode/reldatefmt.h ++++ b/icu4c/source/i18n/unicode/reldatefmt.h +@@ -246,6 +246,7 @@ class SharedPluralRules; + class SharedBreakIterator; + class NumberFormat; + class UnicodeString; ++class FormattedRelativeDateTime; + class FormattedRelativeDateTimeData; + + #ifndef U_HIDE_DRAFT_API +diff --git a/icu4c/source/i18n/unicode/uspoof.h b/icu4c/source/i18n/unicode/uspoof.h +index d15ba4b242..ceb8484b6b 100644 +--- a/icu4c/source/i18n/unicode/uspoof.h ++++ b/icu4c/source/i18n/unicode/uspoof.h +@@ -353,6 +353,8 @@ + * @stable ICU 4.6 + */ + ++U_CDECL_BEGIN ++ + struct USpoofChecker; + /** + * @stable ICU 4.2 +@@ -674,25 +676,6 @@ uspoof_openFromSource(const char *confusables, int32_t confusablesLen, + U_STABLE void U_EXPORT2 + uspoof_close(USpoofChecker *sc); + +-#if U_SHOW_CPLUSPLUS_API +- +-U_NAMESPACE_BEGIN +- +-/** +- * \class LocalUSpoofCheckerPointer +- * "Smart pointer" class, closes a USpoofChecker via uspoof_close(). +- * For most methods see the LocalPointerBase base class. +- * +- * @see LocalPointerBase +- * @see LocalPointer +- * @stable ICU 4.4 +- */ +-U_DEFINE_LOCAL_OPEN_POINTER(LocalUSpoofCheckerPointer, USpoofChecker, uspoof_close); +- +-U_NAMESPACE_END +- +-#endif +- + /** + * Clone a Spoof Checker. The clone will be set to perform the same checks + * as the original source. +@@ -901,54 +884,6 @@ U_STABLE const USet * U_EXPORT2 + uspoof_getAllowedChars(const USpoofChecker *sc, UErrorCode *status); + + +-#if U_SHOW_CPLUSPLUS_API +-/** +- * Limit the acceptable characters to those specified by a Unicode Set. +- * Any previously specified character limit is +- * is replaced by the new settings. This includes limits on +- * characters that were set with the uspoof_setAllowedLocales() function. +- * +- * The USPOOF_CHAR_LIMIT test is automatically enabled for this +- * USoofChecker by this function. +- * +- * @param sc The USpoofChecker +- * @param chars A Unicode Set containing the list of +- * characters that are permitted. Ownership of the set +- * remains with the caller. The incoming set is cloned by +- * this function, so there are no restrictions on modifying +- * or deleting the UnicodeSet after calling this function. +- * @param status The error code, set if this function encounters a problem. +- * @stable ICU 4.2 +- */ +-U_STABLE void U_EXPORT2 +-uspoof_setAllowedUnicodeSet(USpoofChecker *sc, const icu::UnicodeSet *chars, UErrorCode *status); +- +- +-/** +- * Get a UnicodeSet for the characters permitted in an identifier. +- * This corresponds to the limits imposed by the Set Allowed Characters / +- * UnicodeSet functions. Limitations imposed by other checks will not be +- * reflected in the set returned by this function. +- * +- * The returned set will be frozen, meaning that it cannot be modified +- * by the caller. +- * +- * Ownership of the returned set remains with the Spoof Detector. The +- * returned set will become invalid if the spoof detector is closed, +- * or if a new set of allowed characters is specified. +- * +- * +- * @param sc The USpoofChecker +- * @param status The error code, set if this function encounters a problem. +- * @return A UnicodeSet containing the characters that are permitted by +- * the USPOOF_CHAR_LIMIT test. +- * @stable ICU 4.2 +- */ +-U_STABLE const icu::UnicodeSet * U_EXPORT2 +-uspoof_getAllowedUnicodeSet(const USpoofChecker *sc, UErrorCode *status); +-#endif +- +- + /** + * Check the specified string for possible security issues. + * The text to be checked will typically be an identifier of some sort. +@@ -1027,43 +962,6 @@ uspoof_checkUTF8(const USpoofChecker *sc, + UErrorCode *status); + + +-#if U_SHOW_CPLUSPLUS_API +-/** +- * Check the specified string for possible security issues. +- * The text to be checked will typically be an identifier of some sort. +- * The set of checks to be performed is specified with uspoof_setChecks(). +- * +- * \note +- * Consider using the newer API, {@link uspoof_check2UnicodeString}, instead. +- * The newer API exposes additional information from the check procedure +- * and is otherwise identical to this method. +- * +- * @param sc The USpoofChecker +- * @param id A identifier to be checked for possible security issues. +- * @param position Deprecated in ICU 51. Always returns zero. +- * Originally, an out parameter for the index of the first +- * string position that failed a check. +- * This parameter may be NULL. +- * @param status The error code, set if an error occurred while attempting to +- * perform the check. +- * Spoofing or security issues detected with the input string are +- * not reported here, but through the function's return value. +- * @return An integer value with bits set for any potential security +- * or spoofing issues detected. The bits are defined by +- * enum USpoofChecks. (returned_value & USPOOF_ALL_CHECKS) +- * will be zero if the input string passes all of the +- * enabled checks. +- * @see uspoof_check2UnicodeString +- * @stable ICU 4.2 +- */ +-U_STABLE int32_t U_EXPORT2 +-uspoof_checkUnicodeString(const USpoofChecker *sc, +- const icu::UnicodeString &id, +- int32_t *position, +- UErrorCode *status); +-#endif +- +- + /** + * Check the specified string for possible security issues. + * The text to be checked will typically be an identifier of some sort. +@@ -1135,39 +1033,6 @@ uspoof_check2UTF8(const USpoofChecker *sc, + USpoofCheckResult* checkResult, + UErrorCode *status); + +-#if U_SHOW_CPLUSPLUS_API +-/** +- * Check the specified string for possible security issues. +- * The text to be checked will typically be an identifier of some sort. +- * The set of checks to be performed is specified with uspoof_setChecks(). +- * +- * @param sc The USpoofChecker +- * @param id A identifier to be checked for possible security issues. +- * @param checkResult An instance of USpoofCheckResult to be filled with +- * details about the identifier. Can be NULL. +- * @param status The error code, set if an error occurred while attempting to +- * perform the check. +- * Spoofing or security issues detected with the input string are +- * not reported here, but through the function's return value. +- * @return An integer value with bits set for any potential security +- * or spoofing issues detected. The bits are defined by +- * enum USpoofChecks. (returned_value & USPOOF_ALL_CHECKS) +- * will be zero if the input string passes all of the +- * enabled checks. Any information in this bitmask will be +- * consistent with the information saved in the optional +- * checkResult parameter. +- * @see uspoof_openCheckResult +- * @see uspoof_check2 +- * @see uspoof_check2UTF8 +- * @stable ICU 58 +- */ +-U_STABLE int32_t U_EXPORT2 +-uspoof_check2UnicodeString(const USpoofChecker *sc, +- const icu::UnicodeString &id, +- USpoofCheckResult* checkResult, +- UErrorCode *status); +-#endif +- + /** + * Create a USpoofCheckResult, used by the {@link uspoof_check2} class of functions to return + * information about the identifier. Information includes: +@@ -1199,32 +1064,6 @@ uspoof_openCheckResult(UErrorCode *status); + U_STABLE void U_EXPORT2 + uspoof_closeCheckResult(USpoofCheckResult *checkResult); + +-#if U_SHOW_CPLUSPLUS_API +- +-U_NAMESPACE_BEGIN +- +-/** +- * \class LocalUSpoofCheckResultPointer +- * "Smart pointer" class, closes a USpoofCheckResult via `uspoof_closeCheckResult()`. +- * For most methods see the LocalPointerBase base class. +- * +- * @see LocalPointerBase +- * @see LocalPointer +- * @stable ICU 58 +- */ +- +-/** +- * \cond +- * Note: Doxygen is giving a bogus warning on this U_DEFINE_LOCAL_OPEN_POINTER. +- * For now, suppress with a Doxygen cond +- */ +-U_DEFINE_LOCAL_OPEN_POINTER(LocalUSpoofCheckResultPointer, USpoofCheckResult, uspoof_closeCheckResult); +-/** \endcond */ +- +-U_NAMESPACE_END +- +-#endif +- + /** + * Indicates which of the spoof check(s) have failed. The value is a bitwise OR of the constants for the tests + * in question: USPOOF_RESTRICTION_LEVEL, USPOOF_CHAR_LIMIT, and so on. +@@ -1355,36 +1194,6 @@ uspoof_areConfusableUTF8(const USpoofChecker *sc, + + + +-#if U_SHOW_CPLUSPLUS_API +-/** +- * A version of {@link uspoof_areConfusable} accepting UnicodeStrings. +- * +- * @param sc The USpoofChecker +- * @param s1 The first of the two identifiers to be compared for +- * confusability. The strings are in UTF-8 format. +- * @param s2 The second of the two identifiers to be compared for +- * confusability. The strings are in UTF-8 format. +- * @param status The error code, set if an error occurred while attempting to +- * perform the check. +- * Confusability of the identifiers is not reported here, +- * but through this function's return value. +- * @return An integer value with bit(s) set corresponding to +- * the type of confusability found, as defined by +- * enum USpoofChecks. Zero is returned if the identifiers +- * are not confusable. +- * +- * @stable ICU 4.2 +- * +- * @see uspoof_areConfusable +- */ +-U_STABLE int32_t U_EXPORT2 +-uspoof_areConfusableUnicodeString(const USpoofChecker *sc, +- const icu::UnicodeString &s1, +- const icu::UnicodeString &s2, +- UErrorCode *status); +-#endif +- +- + /** + * Get the "skeleton" for an identifier. + * Skeletons are a transformation of the input identifier; +@@ -1463,38 +1272,6 @@ uspoof_getSkeletonUTF8(const USpoofChecker *sc, + char *dest, int32_t destCapacity, + UErrorCode *status); + +-#if U_SHOW_CPLUSPLUS_API +-/** +- * Get the "skeleton" for an identifier. +- * Skeletons are a transformation of the input identifier; +- * Two identifiers are confusable if their skeletons are identical. +- * See Unicode UAX #39 for additional information. +- * +- * Using skeletons directly makes it possible to quickly check +- * whether an identifier is confusable with any of some large +- * set of existing identifiers, by creating an efficiently +- * searchable collection of the skeletons. +- * +- * @param sc The USpoofChecker. +- * @param type Deprecated in ICU 58. You may pass any number. +- * Originally, controlled which of the Unicode confusable data +- * tables to use. +- * @param id The input identifier whose skeleton will be computed. +- * @param dest The output identifier, to receive the skeleton string. +- * @param status The error code, set if an error occurred while attempting to +- * perform the check. +- * @return A reference to the destination (skeleton) string. +- * +- * @stable ICU 4.2 +- */ +-U_I18N_API icu::UnicodeString & U_EXPORT2 +-uspoof_getSkeletonUnicodeString(const USpoofChecker *sc, +- uint32_t type, +- const icu::UnicodeString &id, +- icu::UnicodeString &dest, +- UErrorCode *status); +-#endif /* U_SHOW_CPLUSPLUS_API */ +- + /** + * Get the set of Candidate Characters for Inclusion in Identifiers, as defined + * in http://unicode.org/Public/security/latest/xidmodifications.txt +@@ -1525,8 +1302,243 @@ uspoof_getInclusionSet(UErrorCode *status); + U_STABLE const USet * U_EXPORT2 + uspoof_getRecommendedSet(UErrorCode *status); + ++/** ++ * Serialize the data for a spoof detector into a chunk of memory. ++ * The flattened spoof detection tables can later be used to efficiently ++ * instantiate a new Spoof Detector. ++ * ++ * The serialized spoof checker includes only the data compiled from the ++ * Unicode data tables by uspoof_openFromSource(); it does not include ++ * include any other state or configuration that may have been set. ++ * ++ * @param sc the Spoof Detector whose data is to be serialized. ++ * @param data a pointer to 32-bit-aligned memory to be filled with the data, ++ * can be NULL if capacity==0 ++ * @param capacity the number of bytes available at data, ++ * or 0 for preflighting ++ * @param status an in/out ICU UErrorCode; possible errors include: ++ * - U_BUFFER_OVERFLOW_ERROR if the data storage block is too small for serialization ++ * - U_ILLEGAL_ARGUMENT_ERROR the data or capacity parameters are bad ++ * @return the number of bytes written or needed for the spoof data ++ * ++ * @see utrie2_openFromSerialized() ++ * @stable ICU 4.2 ++ */ ++U_STABLE int32_t U_EXPORT2 ++uspoof_serialize(USpoofChecker *sc, ++ void *data, int32_t capacity, ++ UErrorCode *status); ++ ++U_CDECL_END ++ + #if U_SHOW_CPLUSPLUS_API + ++U_NAMESPACE_BEGIN ++ ++/** ++ * \class LocalUSpoofCheckerPointer ++ * "Smart pointer" class, closes a USpoofChecker via uspoof_close(). ++ * For most methods see the LocalPointerBase base class. ++ * ++ * @see LocalPointerBase ++ * @see LocalPointer ++ * @stable ICU 4.4 ++ */ ++/** ++ * \cond ++ * Note: Doxygen is giving a bogus warning on this U_DEFINE_LOCAL_OPEN_POINTER. ++ * For now, suppress with a Doxygen cond ++ */ ++U_DEFINE_LOCAL_OPEN_POINTER(LocalUSpoofCheckerPointer, USpoofChecker, uspoof_close); ++/** \endcond */ ++ ++/** ++ * \class LocalUSpoofCheckResultPointer ++ * "Smart pointer" class, closes a USpoofCheckResult via `uspoof_closeCheckResult()`. ++ * For most methods see the LocalPointerBase base class. ++ * ++ * @see LocalPointerBase ++ * @see LocalPointer ++ * @stable ICU 58 ++ */ ++ ++/** ++ * \cond ++ * Note: Doxygen is giving a bogus warning on this U_DEFINE_LOCAL_OPEN_POINTER. ++ * For now, suppress with a Doxygen cond ++ */ ++U_DEFINE_LOCAL_OPEN_POINTER(LocalUSpoofCheckResultPointer, USpoofCheckResult, uspoof_closeCheckResult); ++/** \endcond */ ++ ++U_NAMESPACE_END ++ ++/** ++ * Limit the acceptable characters to those specified by a Unicode Set. ++ * Any previously specified character limit is ++ * is replaced by the new settings. This includes limits on ++ * characters that were set with the uspoof_setAllowedLocales() function. ++ * ++ * The USPOOF_CHAR_LIMIT test is automatically enabled for this ++ * USoofChecker by this function. ++ * ++ * @param sc The USpoofChecker ++ * @param chars A Unicode Set containing the list of ++ * characters that are permitted. Ownership of the set ++ * remains with the caller. The incoming set is cloned by ++ * this function, so there are no restrictions on modifying ++ * or deleting the UnicodeSet after calling this function. ++ * @param status The error code, set if this function encounters a problem. ++ * @stable ICU 4.2 ++ */ ++U_STABLE void U_EXPORT2 ++uspoof_setAllowedUnicodeSet(USpoofChecker *sc, const icu::UnicodeSet *chars, UErrorCode *status); ++ ++ ++/** ++ * Get a UnicodeSet for the characters permitted in an identifier. ++ * This corresponds to the limits imposed by the Set Allowed Characters / ++ * UnicodeSet functions. Limitations imposed by other checks will not be ++ * reflected in the set returned by this function. ++ * ++ * The returned set will be frozen, meaning that it cannot be modified ++ * by the caller. ++ * ++ * Ownership of the returned set remains with the Spoof Detector. The ++ * returned set will become invalid if the spoof detector is closed, ++ * or if a new set of allowed characters is specified. ++ * ++ * ++ * @param sc The USpoofChecker ++ * @param status The error code, set if this function encounters a problem. ++ * @return A UnicodeSet containing the characters that are permitted by ++ * the USPOOF_CHAR_LIMIT test. ++ * @stable ICU 4.2 ++ */ ++U_STABLE const icu::UnicodeSet * U_EXPORT2 ++uspoof_getAllowedUnicodeSet(const USpoofChecker *sc, UErrorCode *status); ++ ++/** ++ * Check the specified string for possible security issues. ++ * The text to be checked will typically be an identifier of some sort. ++ * The set of checks to be performed is specified with uspoof_setChecks(). ++ * ++ * \note ++ * Consider using the newer API, {@link uspoof_check2UnicodeString}, instead. ++ * The newer API exposes additional information from the check procedure ++ * and is otherwise identical to this method. ++ * ++ * @param sc The USpoofChecker ++ * @param id A identifier to be checked for possible security issues. ++ * @param position Deprecated in ICU 51. Always returns zero. ++ * Originally, an out parameter for the index of the first ++ * string position that failed a check. ++ * This parameter may be NULL. ++ * @param status The error code, set if an error occurred while attempting to ++ * perform the check. ++ * Spoofing or security issues detected with the input string are ++ * not reported here, but through the function's return value. ++ * @return An integer value with bits set for any potential security ++ * or spoofing issues detected. The bits are defined by ++ * enum USpoofChecks. (returned_value & USPOOF_ALL_CHECKS) ++ * will be zero if the input string passes all of the ++ * enabled checks. ++ * @see uspoof_check2UnicodeString ++ * @stable ICU 4.2 ++ */ ++U_STABLE int32_t U_EXPORT2 ++uspoof_checkUnicodeString(const USpoofChecker *sc, ++ const icu::UnicodeString &id, ++ int32_t *position, ++ UErrorCode *status); ++ ++/** ++ * Check the specified string for possible security issues. ++ * The text to be checked will typically be an identifier of some sort. ++ * The set of checks to be performed is specified with uspoof_setChecks(). ++ * ++ * @param sc The USpoofChecker ++ * @param id A identifier to be checked for possible security issues. ++ * @param checkResult An instance of USpoofCheckResult to be filled with ++ * details about the identifier. Can be NULL. ++ * @param status The error code, set if an error occurred while attempting to ++ * perform the check. ++ * Spoofing or security issues detected with the input string are ++ * not reported here, but through the function's return value. ++ * @return An integer value with bits set for any potential security ++ * or spoofing issues detected. The bits are defined by ++ * enum USpoofChecks. (returned_value & USPOOF_ALL_CHECKS) ++ * will be zero if the input string passes all of the ++ * enabled checks. Any information in this bitmask will be ++ * consistent with the information saved in the optional ++ * checkResult parameter. ++ * @see uspoof_openCheckResult ++ * @see uspoof_check2 ++ * @see uspoof_check2UTF8 ++ * @stable ICU 58 ++ */ ++U_STABLE int32_t U_EXPORT2 ++uspoof_check2UnicodeString(const USpoofChecker *sc, ++ const icu::UnicodeString &id, ++ USpoofCheckResult* checkResult, ++ UErrorCode *status); ++ ++/** ++ * A version of {@link uspoof_areConfusable} accepting UnicodeStrings. ++ * ++ * @param sc The USpoofChecker ++ * @param s1 The first of the two identifiers to be compared for ++ * confusability. The strings are in UTF-8 format. ++ * @param s2 The second of the two identifiers to be compared for ++ * confusability. The strings are in UTF-8 format. ++ * @param status The error code, set if an error occurred while attempting to ++ * perform the check. ++ * Confusability of the identifiers is not reported here, ++ * but through this function's return value. ++ * @return An integer value with bit(s) set corresponding to ++ * the type of confusability found, as defined by ++ * enum USpoofChecks. Zero is returned if the identifiers ++ * are not confusable. ++ * ++ * @stable ICU 4.2 ++ * ++ * @see uspoof_areConfusable ++ */ ++U_STABLE int32_t U_EXPORT2 ++uspoof_areConfusableUnicodeString(const USpoofChecker *sc, ++ const icu::UnicodeString &s1, ++ const icu::UnicodeString &s2, ++ UErrorCode *status); ++ ++/** ++ * Get the "skeleton" for an identifier. ++ * Skeletons are a transformation of the input identifier; ++ * Two identifiers are confusable if their skeletons are identical. ++ * See Unicode UAX #39 for additional information. ++ * ++ * Using skeletons directly makes it possible to quickly check ++ * whether an identifier is confusable with any of some large ++ * set of existing identifiers, by creating an efficiently ++ * searchable collection of the skeletons. ++ * ++ * @param sc The USpoofChecker. ++ * @param type Deprecated in ICU 58. You may pass any number. ++ * Originally, controlled which of the Unicode confusable data ++ * tables to use. ++ * @param id The input identifier whose skeleton will be computed. ++ * @param dest The output identifier, to receive the skeleton string. ++ * @param status The error code, set if an error occurred while attempting to ++ * perform the check. ++ * @return A reference to the destination (skeleton) string. ++ * ++ * @stable ICU 4.2 ++ */ ++U_I18N_API icu::UnicodeString & U_EXPORT2 ++uspoof_getSkeletonUnicodeString(const USpoofChecker *sc, ++ uint32_t type, ++ const icu::UnicodeString &id, ++ icu::UnicodeString &dest, ++ UErrorCode *status); ++ + /** + * Get the set of Candidate Characters for Inclusion in Identifiers, as defined + * in http://unicode.org/Public/security/latest/xidmodifications.txt +@@ -1559,34 +1571,6 @@ uspoof_getRecommendedUnicodeSet(UErrorCode *status); + + #endif /* U_SHOW_CPLUSPLUS_API */ + +-/** +- * Serialize the data for a spoof detector into a chunk of memory. +- * The flattened spoof detection tables can later be used to efficiently +- * instantiate a new Spoof Detector. +- * +- * The serialized spoof checker includes only the data compiled from the +- * Unicode data tables by uspoof_openFromSource(); it does not include +- * include any other state or configuration that may have been set. +- * +- * @param sc the Spoof Detector whose data is to be serialized. +- * @param data a pointer to 32-bit-aligned memory to be filled with the data, +- * can be NULL if capacity==0 +- * @param capacity the number of bytes available at data, +- * or 0 for preflighting +- * @param status an in/out ICU UErrorCode; possible errors include: +- * - U_BUFFER_OVERFLOW_ERROR if the data storage block is too small for serialization +- * - U_ILLEGAL_ARGUMENT_ERROR the data or capacity parameters are bad +- * @return the number of bytes written or needed for the spoof data +- * +- * @see utrie2_openFromSerialized() +- * @stable ICU 4.2 +- */ +-U_STABLE int32_t U_EXPORT2 +-uspoof_serialize(USpoofChecker *sc, +- void *data, int32_t capacity, +- UErrorCode *status); +- +- +-#endif ++#endif /* UCONFIG_NO_NORMALIZATION */ + + #endif /* USPOOF_H */ +-- +2.21.0 + diff --git a/dev-libs/icu/icu-64.2.ebuild b/dev-libs/icu/icu-64.2.ebuild new file mode 100644 index 000000000000..456e444769e1 --- /dev/null +++ b/dev-libs/icu/icu-64.2.ebuild @@ -0,0 +1,144 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit flag-o-matic toolchain-funcs autotools multilib-minimal + +DESCRIPTION="International Components for Unicode" +HOMEPAGE="http://www.icu-project.org/" +SRC_URI="http://download.icu-project.org/files/icu4c/${PV/_/}/icu4c-${PV//./_}-src.tgz" + +LICENSE="BSD" + +SLOT="0/${PV}" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" +IUSE="debug doc examples static-libs" + +DEPEND=" + doc? ( app-doc/doxygen[dot] ) +" +BDEPEND=" + virtual/pkgconfig +" + +S="${WORKDIR}/${PN}/source" + +MULTILIB_CHOST_TOOLS=( + /usr/bin/icu-config +) + +PATCHES=( + "${FILESDIR}/${PN}-58.1-remove-bashisms.patch" + "${FILESDIR}/${PN}-64.2-darwin.patch" + "${FILESDIR}/${PN}-64.1-data_archive_generation.patch" +) + +src_prepare() { + default + eapply -p3 "${FILESDIR}/${PN}-64.2-extern_c.patch" + + local variable + + # Disable renaming as it is stupid thing to do + sed -i \ + -e "s/#define U_DISABLE_RENAMING 0/#define U_DISABLE_RENAMING 1/" \ + common/unicode/uconfig.h || die + + # Fix linking of icudata + sed -i \ + -e "s:LDFLAGSICUDT=-nodefaultlibs -nostdlib:LDFLAGSICUDT=:" \ + config/mh-linux || die + + # Append doxygen configuration to configure + sed -i \ + -e 's:icudefs.mk:icudefs.mk Doxyfile:' \ + configure.ac || die + + eautoreconf +} + +src_configure() { + append-cxxflags -std=c++14 + + if tc-is-cross-compiler; then + mkdir "${WORKDIR}"/host || die + pushd "${WORKDIR}"/host >/dev/null || die + + CFLAGS="" CXXFLAGS="" ASFLAGS="" LDFLAGS="" \ + CC="$(tc-getBUILD_CC)" CXX="$(tc-getBUILD_CXX)" AR="$(tc-getBUILD_AR)" \ + RANLIB="$(tc-getBUILD_RANLIB)" LD="$(tc-getBUILD_LD)" \ + "${S}"/configure --disable-renaming --disable-debug \ + --disable-samples --enable-static || die + emake + + popd >/dev/null || die + fi + + multilib-minimal_src_configure +} + +multilib_src_configure() { + local myeconfargs=( + --disable-renaming + --disable-samples + --disable-layoutex + $(use_enable debug) + $(use_enable static-libs static) + $(multilib_native_use_enable examples samples) + ) + + tc-is-cross-compiler && myeconfargs+=( + --with-cross-build="${WORKDIR}"/host + ) + + # icu tries to use clang by default + tc-export CC CXX + + # make sure we configure with the same shell as we run icu-config + # with, or ECHO_N, ECHO_T and ECHO_C will be wrongly defined + export CONFIG_SHELL="${EPREFIX}/bin/sh" + # probably have no /bin/sh in prefix-chain + [[ -x ${CONFIG_SHELL} ]] || CONFIG_SHELL="${BASH}" + + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" +} + +multilib_src_compile() { + default + + if multilib_is_native_abi && use doc; then + doxygen -u Doxyfile || die + doxygen Doxyfile || die + fi +} + +multilib_src_test() { + # INTLTEST_OPTS: intltest options + # -e: Exhaustive testing + # -l: Reporting of memory leaks + # -v: Increased verbosity + # IOTEST_OPTS: iotest options + # -e: Exhaustive testing + # -v: Increased verbosity + # CINTLTST_OPTS: cintltst options + # -e: Exhaustive testing + # -v: Increased verbosity + emake -j1 VERBOSE="1" check +} + +multilib_src_install() { + default + + if multilib_is_native_abi && use doc; then + docinto html + dodoc -r doc/html/* + fi +} + +multilib_src_install_all() { + einstalldocs + docinto html + dodoc ../readme.html +} diff --git a/dev-libs/libcdio-paranoia/libcdio-paranoia-0.94_p2.ebuild b/dev-libs/libcdio-paranoia/libcdio-paranoia-0.94_p2.ebuild index 3f1da82d0927..8ff3a41accbc 100644 --- a/dev-libs/libcdio-paranoia/libcdio-paranoia-0.94_p2.ebuild +++ b/dev-libs/libcdio-paranoia/libcdio-paranoia-0.94_p2.ebuild @@ -16,7 +16,7 @@ SRC_URI="mirror://gnu/${PN%-*}/${MY_P}.tar.gz" # clause "or later" so we use LGPL-2.1 without + LICENSE="GPL-3+ GPL-2+ LGPL-2.1" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE="+cxx static-libs test" RDEPEND="app-eselect/eselect-cdparanoia diff --git a/dev-libs/libcgroup/libcgroup-0.41-r5.ebuild b/dev-libs/libcgroup/libcgroup-0.41-r5.ebuild index e848ee0fd07e..1acdb65f88b8 100644 --- a/dev-libs/libcgroup/libcgroup-0.41-r5.ebuild +++ b/dev-libs/libcgroup/libcgroup-0.41-r5.ebuild @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/project/libcg/${PN}/v${PV}/${P}.tar.bz2" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 x86" IUSE="+daemon elibc_musl pam static-libs test +tools" RDEPEND="pam? ( virtual/pam )" diff --git a/dev-libs/libgpiod/libgpiod-1.1.1.ebuild b/dev-libs/libgpiod/libgpiod-1.1.1.ebuild index c08b952a7278..3435a33062ce 100644 --- a/dev-libs/libgpiod/libgpiod-1.1.1.ebuild +++ b/dev-libs/libgpiod/libgpiod-1.1.1.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 @@ -12,7 +12,7 @@ SRC_URI="https://mirrors.edge.kernel.org/pub/software/libs/libgpiod/libgpiod-1.1 LICENSE="LGPL-2.1" # Reflects the ABI of libgpiod.so SLOT="0/1" -KEYWORDS="~amd64 ~arm ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" IUSE="static-libs +tools" multilib_src_configure() { diff --git a/dev-libs/libpcre2/libpcre2-10.32.ebuild b/dev-libs/libpcre2/libpcre2-10.32.ebuild index f31c1f29f32e..2353e6a9ce0d 100644 --- a/dev-libs/libpcre2/libpcre2-10.32.ebuild +++ b/dev-libs/libpcre2/libpcre2-10.32.ebuild @@ -18,7 +18,7 @@ fi LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="bzip2 +jit libedit pcre16 pcre32 +readline +recursion-limit static-libs unicode zlib" REQUIRED_USE="?? ( libedit readline )" diff --git a/dev-libs/libtermkey/libtermkey-0.22.ebuild b/dev-libs/libtermkey/libtermkey-0.22.ebuild index a90099b95c4d..4177883c0d2a 100644 --- a/dev-libs/libtermkey/libtermkey-0.22.ebuild +++ b/dev-libs/libtermkey/libtermkey-0.22.ebuild @@ -10,7 +10,7 @@ SRC_URI="http://www.leonerd.org.uk/code/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~x86" IUSE="demos static-libs" RDEPEND="dev-libs/unibilium:=" diff --git a/dev-libs/libutf8proc/files/libutf8proc-2.3.0-tests-nofetch.patch b/dev-libs/libutf8proc/files/libutf8proc-2.3.0-tests-nofetch.patch new file mode 100644 index 000000000000..5750b43ad5fc --- /dev/null +++ b/dev-libs/libutf8proc/files/libutf8proc-2.3.0-tests-nofetch.patch @@ -0,0 +1,33 @@ +diff --git a/data/Makefile b/data/Makefile +index f5d1dd9..60c09e3 100644 +--- a/data/Makefile ++++ b/data/Makefile +@@ -10,6 +10,7 @@ PERL=perl + MAKE=make + JULIA=julia + CURLFLAGS = --retry 5 --location ++UDATA=/usr/share/unicode-data + + .PHONY: clean + +@@ -25,6 +26,7 @@ CharWidths.txt: charwidths.jl EastAsianWidth.txt + UNICODE_VERSION=12.0.0 + + UnicodeData.txt: ++ cp $(UDATA)/$@ $@ + $(CURL) $(CURLFLAGS) -o $@ -O http://www.unicode.org/Public/$(UNICODE_VERSION)/ucd/UnicodeData.txt + + EastAsianWidth.txt: +@@ -43,10 +45,10 @@ CaseFolding.txt: + $(CURL) $(CURLFLAGS) -o $@ -O $(URLCACHE)http://www.unicode.org/Public/$(UNICODE_VERSION)/ucd/CaseFolding.txt + + NormalizationTest.txt: +- $(CURL) $(CURLFLAGS) -o $@ -O $(URLCACHE)http://www.unicode.org/Public/$(UNICODE_VERSION)/ucd/NormalizationTest.txt ++ cp $(UDATA)/$@ $@ + + GraphemeBreakTest.txt: +- $(CURL) $(CURLFLAGS) $(URLCACHE)http://www.unicode.org/Public/$(UNICODE_VERSION)/ucd/auxiliary/GraphemeBreakTest.txt | $(PERL) -pe 's,÷,/,g;s,×,+,g' > $@ ++ cat $(UDATA)/auxiliary/$@ | $(PERL) -pe 's,÷,/,g;s,×,+,g' > $@ + + emoji-data.txt: + $(CURL) $(CURLFLAGS) -o $@ -O $(URLCACHE)http://unicode.org/Public/emoji/`echo $(UNICODE_VERSION) | cut -d. -f1-2`/emoji-data.txt diff --git a/dev-libs/libutf8proc/libutf8proc-2.3.0.ebuild b/dev-libs/libutf8proc/libutf8proc-2.3.0.ebuild index ea48c910201a..3b3b3a532031 100644 --- a/dev-libs/libutf8proc/libutf8proc-2.3.0.ebuild +++ b/dev-libs/libutf8proc/libutf8proc-2.3.0.ebuild @@ -13,13 +13,17 @@ SRC_URI="https://github.com/JuliaStrings/utf8proc/archive/v${PV}.tar.gz -> ${P}. LICENSE="MIT" SLOT="0/${PV}" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="" +IUSE="test" S="${WORKDIR}/${MY_P}" +BDEPEND="test? ( =app-i18n/unicode-data-12.0* )" + PATCHES=( # Don't build or install static libs "${FILESDIR}/${PN}-2.3.0-no-static.patch" + # use app-i18n/unicode-data for test data instead of curl + "${FILESDIR}/${PN}-2.3.0-tests-nofetch.patch" ) src_install() { diff --git a/dev-libs/libvterm/libvterm-0.0_pre20181126.ebuild b/dev-libs/libvterm/libvterm-0.0_pre20181126.ebuild index c636c41d4ba6..387a458e471e 100644 --- a/dev-libs/libvterm/libvterm-0.0_pre20181126.ebuild +++ b/dev-libs/libvterm/libvterm-0.0_pre20181126.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 @@ -10,7 +10,7 @@ SRC_URI="https://dev.gentoo.org/~tranquility/distfiles/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~x86" DEPEND=" sys-devel/libtool diff --git a/dev-libs/msgpack/msgpack-1.1.0.ebuild b/dev-libs/msgpack/msgpack-1.1.0.ebuild index 5b8c66b8a343..027734b5670d 100644 --- a/dev-libs/msgpack/msgpack-1.1.0.ebuild +++ b/dev-libs/msgpack/msgpack-1.1.0.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 @@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]]; then EGIT_REPO_URI="https://github.com/${PN}/${PN}-c.git" else SRC_URI="https://github.com/${PN}/${PN}-c/releases/download/cpp-${PV}/${P}.tar.gz" - KEYWORDS="~amd64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" + KEYWORDS="~amd64 ~arm ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" fi DESCRIPTION="MessagePack is a binary-based efficient data interchange format" diff --git a/dev-libs/nettle/nettle-3.4.1.ebuild b/dev-libs/nettle/nettle-3.4.1.ebuild index 2fff9c6d49a1..0c477712dd3b 100644 --- a/dev-libs/nettle/nettle-3.4.1.ebuild +++ b/dev-libs/nettle/nettle-3.4.1.ebuild @@ -14,7 +14,7 @@ SLOT="0/6.2" # subslot = libnettle soname version, .2 as broke ABI bug#601512 th KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="doc +gmp neon static-libs test cpu_flags_x86_aes" -DEPEND="gmp? ( >=dev-libs/gmp-6.0:0=[${MULTILIB_USEDEP}] )" +DEPEND="gmp? ( >=dev-libs/gmp-6.0:0=[static-libs=,${MULTILIB_USEDEP}] )" RDEPEND="${DEPEND}" MULTILIB_WRAPPED_HEADERS=( diff --git a/dev-libs/opensc/opensc-0.19.0-r2.ebuild b/dev-libs/opensc/opensc-0.19.0-r2.ebuild index 07d46225f4bb..676d10f1c277 100644 --- a/dev-libs/opensc/opensc-0.19.0-r2.ebuild +++ b/dev-libs/opensc/opensc-0.19.0-r2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/OpenSC/OpenSC/releases/download/${PV}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~alpha amd64 arm hppa ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" IUSE="ctapi doc libressl openct notify +pcsc-lite readline secure-messaging ssl test zlib" RDEPEND="zlib? ( sys-libs/zlib ) diff --git a/dev-libs/tre/tre-0.8.0-r1.ebuild b/dev-libs/tre/tre-0.8.0-r1.ebuild index 462846e4dc05..5404f1bb506a 100644 --- a/dev-libs/tre/tre-0.8.0-r1.ebuild +++ b/dev-libs/tre/tre-0.8.0-r1.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 @@ -11,7 +11,7 @@ SRC_URI="https://laurikari.net/tre/${P}.tar.bz2" LICENSE="BSD-2" SLOT="0" -KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris" +KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris" IUSE="nls static-libs" RDEPEND=" diff --git a/dev-libs/unibilium/unibilium-2.0.0.ebuild b/dev-libs/unibilium/unibilium-2.0.0.ebuild index 6f3f4873c3c1..9c76937c3ddd 100644 --- a/dev-libs/unibilium/unibilium-2.0.0.ebuild +++ b/dev-libs/unibilium/unibilium-2.0.0.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 @@ -10,7 +10,7 @@ SRC_URI="https://github.com/mauke/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="LGPL-3+ MIT" SLOT="0/4" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~x86" IUSE="static-libs" DEPEND=" diff --git a/dev-libs/vala-common/vala-common-0.40.14.ebuild b/dev-libs/vala-common/vala-common-0.40.14.ebuild index 0a8d986da471..8b0eff8060dc 100644 --- a/dev-libs/vala-common/vala-common-0.40.14.ebuild +++ b/dev-libs/vala-common/vala-common-0.40.14.ebuild @@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris" IUSE="" # Previously ${PN} was part of dev-lang/vala diff --git a/dev-lua/Manifest.gz b/dev-lua/Manifest.gz index 0faa10f1ce88..5e5a6fe1d34e 100644 Binary files a/dev-lua/Manifest.gz and b/dev-lua/Manifest.gz differ diff --git a/dev-lua/mpack/mpack-1.0.4.ebuild b/dev-lua/mpack/mpack-1.0.4.ebuild index 354d35b57794..2c65a7b361e6 100644 --- a/dev-lua/mpack/mpack-1.0.4.ebuild +++ b/dev-lua/mpack/mpack-1.0.4.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 @@ -12,7 +12,7 @@ S="${WORKDIR}/libmpack-${PV}/binding/lua" LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 x86" +KEYWORDS="amd64 ~arm x86" IUSE="luajit test" RDEPEND=" diff --git a/dev-perl/Date-Calc/Date-Calc-6.400.0.ebuild b/dev-perl/Date-Calc/Date-Calc-6.400.0.ebuild index 083c8ca08cc3..e10eab9439aa 100644 --- a/dev-perl/Date-Calc/Date-Calc-6.400.0.ebuild +++ b/dev-perl/Date-Calc/Date-Calc-6.400.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -11,7 +11,7 @@ DESCRIPTION="Gregorian calendar date calculations" LICENSE="${LICENSE} LGPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 ~s390 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="" RDEPEND=" diff --git a/dev-perl/Manifest.gz b/dev-perl/Manifest.gz index bcac6c23e0f1..12a5a8ad275f 100644 Binary files a/dev-perl/Manifest.gz and b/dev-perl/Manifest.gz differ diff --git a/dev-perl/Sys-CPU/Sys-CPU-0.610.0-r1.ebuild b/dev-perl/Sys-CPU/Sys-CPU-0.610.0-r1.ebuild index 3e8eddeafd3a..08770dbb1f24 100644 --- a/dev-perl/Sys-CPU/Sys-CPU-0.610.0-r1.ebuild +++ b/dev-perl/Sys-CPU/Sys-CPU-0.610.0-r1.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 @@ -10,5 +10,5 @@ inherit perl-module DESCRIPTION="Access CPU info. number, etc on Win and UNIX" SLOT="0" -KEYWORDS="~alpha amd64 arm hppa ppc ppc64 ~sparc x86 ~ppc-macos" +KEYWORDS="~alpha amd64 arm ~arm64 hppa ppc ppc64 ~sparc x86 ~ppc-macos" IUSE="" diff --git a/dev-perl/Sys-CPU/Sys-CPU-0.610.0.ebuild b/dev-perl/Sys-CPU/Sys-CPU-0.610.0.ebuild index c9fb588fab6e..7fc3e0a9b468 100644 --- a/dev-perl/Sys-CPU/Sys-CPU-0.610.0.ebuild +++ b/dev-perl/Sys-CPU/Sys-CPU-0.610.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -10,5 +10,5 @@ inherit perl-module DESCRIPTION="Access CPU info. number, etc on Win and UNIX" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ppc ppc64 sparc x86 ~ppc-macos" +KEYWORDS="alpha amd64 arm ~arm64 hppa ppc ppc64 sparc x86 ~ppc-macos" IUSE="" diff --git a/dev-perl/Sys-MemInfo/Sys-MemInfo-0.980.0.ebuild b/dev-perl/Sys-MemInfo/Sys-MemInfo-0.980.0.ebuild index e579aa375948..8aa3c0ba9d6e 100644 --- a/dev-perl/Sys-MemInfo/Sys-MemInfo-0.980.0.ebuild +++ b/dev-perl/Sys-MemInfo/Sys-MemInfo-0.980.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -11,7 +11,7 @@ DESCRIPTION="Memory informations" LICENSE="LGPL-2.1 ${LICENSE}" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ppc ppc64 sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm ~arm64 hppa ppc ppc64 sparc x86 ~x86-fbsd" IUSE="" SRC_TEST=do diff --git a/dev-perl/Sys-MemInfo/Sys-MemInfo-0.990.0.ebuild b/dev-perl/Sys-MemInfo/Sys-MemInfo-0.990.0.ebuild index f70bd54d5690..27bc39fa65bc 100644 --- a/dev-perl/Sys-MemInfo/Sys-MemInfo-0.990.0.ebuild +++ b/dev-perl/Sys-MemInfo/Sys-MemInfo-0.990.0.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 @@ -11,5 +11,5 @@ DESCRIPTION="Memory informations" LICENSE="LGPL-2.1 ${LICENSE}" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ppc ppc64 sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm ~arm64 hppa ppc ppc64 sparc x86 ~x86-fbsd" IUSE="" diff --git a/dev-python/Manifest.gz b/dev-python/Manifest.gz index 13b57f53756e..d703df42c065 100644 Binary files a/dev-python/Manifest.gz and b/dev-python/Manifest.gz differ diff --git a/dev-python/bluelet/bluelet-0.2.0.ebuild b/dev-python/bluelet/bluelet-0.2.0.ebuild index 946e4fbb69b1..f3760dd89a34 100644 --- a/dev-python/bluelet/bluelet-0.2.0.ebuild +++ b/dev-python/bluelet/bluelet-0.2.0.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -PYTHON_COMPAT=( python{2_7,3_5,3_6} ) +PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} ) inherit distutils-r1 @@ -16,12 +16,11 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="examples" -DEPEND="" -RDEPEND="${DEPEND}" - python_install_all() { + distutils-r1_python_install_all + if use examples; then - docompress -x usr/share/doc/${P}/demo - dodoc -r demo/ + dodoc -r demo + docompress -x /usr/share/doc/${PF}/demo fi } diff --git a/dev-python/bsddb3/bsddb3-6.2.4.ebuild b/dev-python/bsddb3/bsddb3-6.2.4.ebuild index decd0a314174..484748d7ecdc 100644 --- a/dev-python/bsddb3/bsddb3-6.2.4.ebuild +++ b/dev-python/bsddb3/bsddb3-6.2.4.ebuild @@ -3,7 +3,7 @@ EAPI=6 -PYTHON_COMPAT=( python2_7 python3_{5,6} ) +PYTHON_COMPAT=( python2_7 python3_{5,6,7} ) PYTHON_REQ_USE="threads(+)" inherit db-use distutils-r1 @@ -25,8 +25,7 @@ RDEPEND=" sys-libs/db:5.1 sys-libs/db:4.8 sys-libs/db:4.7 - ) -" + )" DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}]" @@ -52,7 +51,7 @@ python_prepare_all() { distutils-r1_python_prepare_all } -src_configure() { +python_configure_all() { # These are needed for both build and install. export BERKELEYDB_DIR="${EPREFIX}/usr" export BERKELEYDB_INCDIR="$(db_includedir ${DB_VER})" @@ -69,8 +68,8 @@ python_compile() { python_test() { if python_is_python3; then - PYTHONPATH=Lib3 "${PYTHON}" test3.py -v || die "Testing failed with ${EPYTHON}" + PYTHONPATH=Lib3 "${EPYTHON}" test3.py -v || die "Testing failed with ${EPYTHON}" else - PYTHONPATH=Lib "${PYTHON}" test.py -v || die "Testing failed with ${EPYTHON}" + PYTHONPATH=Lib "${EPYTHON}" test.py -v || die "Testing failed with ${EPYTHON}" fi } diff --git a/dev-python/cython/cython-0.29.4.ebuild b/dev-python/cython/cython-0.29.4.ebuild index c7d91b00d9c7..78ef43726a75 100644 --- a/dev-python/cython/cython-0.29.4.ebuild +++ b/dev-python/cython/cython-0.29.4.ebuild @@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="doc emacs test" diff --git a/dev-python/llvmlite/files/llvmlite-0.28.0-llvm710.patch b/dev-python/llvmlite/files/llvmlite-0.28.0-llvm710.patch new file mode 100644 index 000000000000..db06adb41c1a --- /dev/null +++ b/dev-python/llvmlite/files/llvmlite-0.28.0-llvm710.patch @@ -0,0 +1,59 @@ +From 3845caca60120a8f9a094833e44bc4184b1d6827 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= +Date: Sun, 21 Apr 2019 13:56:00 +0200 +Subject: [PATCH] Permit building against LLVM 7.1.0 + +Restrict building to any 7.* version rather than 7.0.*, as 7.1.0 has +been released that is API-compatible with 7.0.*. +--- + README.rst | 2 +- + ffi/build.py | 4 ++-- + llvmlite/tests/test_binding.py | 3 ++- + 3 files changed, 5 insertions(+), 4 deletions(-) + +diff --git a/README.rst b/README.rst +index 2462e3f..8e551eb 100644 +--- a/README.rst ++++ b/README.rst +@@ -70,7 +70,7 @@ Historical compatibility table: + ================= ======================== + llvmlite versions compatible LLVM versions + ================= ======================== +-0.27.0 - ... 7.0.x ++0.27.0 - ... 7.y.x + 0.23.0 - 0.26.0 6.0.x + 0.21.0 - 0.22.0 5.0.x + 0.17.0 - 0.20.0 4.0.x +diff --git a/ffi/build.py b/ffi/build.py +index 7d5247d..a87e857 100755 +--- a/ffi/build.py ++++ b/ffi/build.py +@@ -109,9 +109,9 @@ def main_posix(kind, library_ext): + + out = out.decode('latin1') + print(out) +- if not out.startswith('7.0.'): ++ if not out.startswith('7.'): + msg = ( +- "Building llvmlite requires LLVM 7.0.x. Be sure to " ++ "Building llvmlite requires LLVM 7.y.x. Be sure to " + "set LLVM_CONFIG to the right executable path.\n" + "Read the documentation at http://llvmlite.pydata.org/ for more " + "information about building llvmlite.\n" +diff --git a/llvmlite/tests/test_binding.py b/llvmlite/tests/test_binding.py +index 335c30d..134f356 100644 +--- a/llvmlite/tests/test_binding.py ++++ b/llvmlite/tests/test_binding.py +@@ -339,7 +339,8 @@ class TestMisc(BaseTest): + + def test_version(self): + major, minor, patch = llvm.llvm_version_info +- self.assertEqual((major, minor), (7, 0)) ++ self.assertEqual(major, 7) ++ self.assertIn(minor, (0, 1)) + self.assertIn(patch, range(10)) + + def test_check_jit_execution(self): +-- +2.21.0 + diff --git a/dev-python/llvmlite/llvmlite-0.28.0.ebuild b/dev-python/llvmlite/llvmlite-0.28.0.ebuild index 0cb1efa94f0a..0d1f8da500ba 100644 --- a/dev-python/llvmlite/llvmlite-0.28.0.ebuild +++ b/dev-python/llvmlite/llvmlite-0.28.0.ebuild @@ -32,6 +32,7 @@ S=${WORKDIR}/${P/_/} PATCHES=( "${FILESDIR}"/llvmlite-0.15.0-use-system-six.patch + "${FILESDIR}"/llvmlite-0.28.0-llvm710.patch ) python_configure_all() { diff --git a/dev-python/m2crypto/m2crypto-0.31.0-r2.ebuild b/dev-python/m2crypto/m2crypto-0.31.0-r2.ebuild index 310da849ab55..7d0bd74f7bec 100644 --- a/dev-python/m2crypto/m2crypto-0.31.0-r2.ebuild +++ b/dev-python/m2crypto/m2crypto-0.31.0-r2.ebuild @@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" +KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" IUSE="libressl" diff --git a/dev-python/neovim-python-client/neovim-python-client-0.3.2-r1.ebuild b/dev-python/neovim-python-client/neovim-python-client-0.3.2-r1.ebuild index 73b1be73f2cd..638c7cb25320 100644 --- a/dev-python/neovim-python-client/neovim-python-client-0.3.2-r1.ebuild +++ b/dev-python/neovim-python-client/neovim-python-client-0.3.2-r1.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/neovim/pynvim/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~x86" DEPEND=" dev-python/msgpack[${PYTHON_USEDEP}] diff --git a/dev-python/neovim-remote/neovim-remote-2.1.0.ebuild b/dev-python/neovim-remote/neovim-remote-2.1.0.ebuild index 34ade15888bc..ec3bfc23c6b7 100644 --- a/dev-python/neovim-remote/neovim-remote-2.1.0.ebuild +++ b/dev-python/neovim-remote/neovim-remote-2.1.0.ebuild @@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/mhinz/${PN}.git" else - KEYWORDS="~amd64" + KEYWORDS="~amd64 ~arm" SRC_URI="https://github.com/mhinz/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" fi diff --git a/dev-python/pypy-bin/Manifest b/dev-python/pypy-bin/Manifest index 1edd67206bf2..c6177223e4dd 100644 --- a/dev-python/pypy-bin/Manifest +++ b/dev-python/pypy-bin/Manifest @@ -43,8 +43,19 @@ DIST pypy-bin-7.1.0-x86+bzip2+libressl+ncurses+sse2.tar.lz 6093992 BLAKE2B e9cc9 DIST pypy-bin-7.1.0-x86+bzip2+libressl+ncurses.tar.lz 6090777 BLAKE2B bcb332825409a50c57d09ac67c21104a88c58b237b84ce4c31484c3b81afeb783dc140123773fe5702df41002eb44b403bf29dbda1c66a40ef9aa037d6ae6217 SHA512 3a65faf263085abb2f1652b58e6da1712dc8632f27944bdabec1d9ddcd21065babc30967942717d7ca179ce449f94175b0d03ca44179afaed55a32d11bb7e9d8 DIST pypy-bin-7.1.0-x86+bzip2+ncurses+sse2.tar.lz 6093175 BLAKE2B 31a7e0b517370bb5f77372361205e5f24d8e129004af3430b3d2e3b2c58f455eb7fb2e88f86419d498724202349777189aea40cdf90eeec73b83a37a185aa653 SHA512 daeef87f64f5efd77e178fbdc6a85c0170db3d351c6951439c74ab3cef1641db8ab9266ac3d1e2b8e0a1efd2d2b1b90a1576ee21c069d8fe62fb1274ed49ed24 DIST pypy-bin-7.1.0-x86+bzip2+ncurses.tar.lz 6089713 BLAKE2B 8e733f4bf527fc5ecff06907d96dc8a8462b3f92cf5e328e8e232f54e7ad26303fc38b127d481ad70dccd406ef0b752619899ba45b18b3e1ad9ed692e6529a18 SHA512 b8b66a23c8b03b2840d721291b7ac39a9a0617acc7e54e3da35a930a37f8f64b95eb784c0a010513575972ad7477751966360dc0de10659f4b481d9ed275dafd +DIST pypy-bin-7.1.1-amd64+bzip2+jit+libressl+ncurses.tar.lz 13220880 BLAKE2B d4b45f757069405f5641ed9b70ce8e94970b1a67c9ee2865fe4250c4c85b8dd44268c5e3aeb7c852fbb8822df4c0326d4d9fc5f77cc8db1dfa4eda749b6c1122 SHA512 b8d4b35ce8b1119fef4dc624cd28c71afdb13669e9c44f380440cd6275156f7f2a1ce240a855038bc82638152f69d1f27191d4937c23052e0a9b0ca4a4efa215 +DIST pypy-bin-7.1.1-amd64+bzip2+jit+ncurses.tar.lz 13081888 BLAKE2B f693f6148eae1583d4fcfcffa48cdf2317d99d4839ecc9e592868285f789e74a88b5aad1c842dd22e8c4b3c43a897fedd2ad95076105e95bf8cab53a27cb8308 SHA512 db4ac8050597da6a727b7cb4ee9549697796a1452b786888c9e9fb5cdd218817edcf4b3b6317a39716b589df140d831539185b6120eb516f80f472e8d7acd0b4 +DIST pypy-bin-7.1.1-amd64+bzip2+libressl+ncurses.tar.lz 7737448 BLAKE2B 02c5aa5227bc6d2fc4087b4767c63737378d90f222a7402b20fee166f36c636fae35855dbf1df9c63984df5624c6ec052e1ec598ca4eb367a6ffccec7c397952 SHA512 ab2b274b3aadf04d55dbc9e4df5ca59ea97ec7df4dd1f8bb24feee4d46d7c02d9c72d55fad784d7412382e0803f172e871f01f82deba2cc5155b97e5139602e9 +DIST pypy-bin-7.1.1-amd64+bzip2+ncurses.tar.lz 7771869 BLAKE2B b63cb64cd7d3c130a58829b786fdd3d35a7eaf192b0491046199e993b20d58ddd9fe83d264d077801f0d18632e5b06f281065150a725a8ae017867b18e036f62 SHA512 1383bfe7c4497f17833e48c3b6096d29f5da675e713e740a5836f5aa9b818fb5460af9ff682e34d9d409bdfa1283dde9cb796b79a6f62d9ba024379cbeff223d +DIST pypy-bin-7.1.1-x86+bzip2+jit+libressl+ncurses+sse2.tar.lz 9944011 BLAKE2B daf397da1f9341ded52b8cafae7c92080cfef1b2dc146b73dade51737a2d765ff52ffe55070229e8faf7e79c420c2ea3de4e5ad7f4ba5ee38d7c3dcd5953c9e2 SHA512 107a2df768985a818d906d176967188975e1beddc067c33fe228e0d2fd53b6d35e75603eb9b4e723eb5278e7b0a5b4a33921b6b820be0fce7dead40f4b9f68d3 +DIST pypy-bin-7.1.1-x86+bzip2+jit+ncurses+sse2.tar.lz 9979104 BLAKE2B 999e620f47e45d0aee9cdb668e99e0ef8b9b8eea7393ef813f1116ec25f9143f77f78f6e26571e23248fb1c06fd1e5ad74186dc8dace7e4035b11078d2eec7d4 SHA512 803118af392da988070464155c3d95fdce70fd1ab8c37e59cb4ce9f719d2c354a6330cf5c759b0a92e8efe44ecc5cf894efd93e1882ae530027d2f6261321834 +DIST pypy-bin-7.1.1-x86+bzip2+libressl+ncurses+sse2.tar.lz 6092434 BLAKE2B 71141a8981fb006412b2a5cae3d93b08a83b68c22a3470eefe8ae15534ecf227c74f0fd878ba790d73b7cb4e0568881aa94b739fafb36e12b3d909fd4ce6f285 SHA512 92f5185a70aad8f2161452f490b001783fc75d275dba800c0ba73704914bdc2363553c33b72ecf8408133fd962ea9f53399b8316bd54a1f794569c6f08f28270 +DIST pypy-bin-7.1.1-x86+bzip2+libressl+ncurses.tar.lz 6060032 BLAKE2B 660d834c3a76ed699170b7c13d36f6dc00df3b4811a09c5dec161af7f9b0416c7fda461ca04481ad656bea39b6ed25f5220b8d38c8ec02c9634a025e3b3d6cfc SHA512 21baa8cd6bd255a335c67a1197ccef856553987740f517e1b33c27758e57b61c22b8274419b445a257ad32511d3c07901d4550151047e04adcd39c9cbf20058e +DIST pypy-bin-7.1.1-x86+bzip2+ncurses+sse2.tar.lz 6091202 BLAKE2B c173cf6890143e27677e6d6ee68b2a1f55ec97897817622559c25f2f49ca5bbb5a0a2c32785a3356a6bb8f4899ff19164e550fd2762003ee018faadf80227c95 SHA512 a630e380177da78daef288e69f15a4cb333c4ef1ab2da8b4b6cf76ec139c1961d692873c7ec119e54f596ef4e1435a6c6b3ef933edca2b0b5cd6fc24963d3b0d +DIST pypy-bin-7.1.1-x86+bzip2+ncurses.tar.lz 6088838 BLAKE2B 555bca61d4693b3e5d3c8344bac3781cfe06acc4a50bcd74add2d122c68f177258ef438a7801ca4633a006e8a001500110287934f232ceb52789f3cc72b9b34b SHA512 0748e14e903b0863bb2a067b558826f47cad2063c31c935b84249eee2a9cf96cfa36a5d5ef92f0facca61356499f4b9cfee6496a6cc3228bae7729e50edf6be0 DIST pypy2-v6.0.0-src.tar.bz2 19741694 BLAKE2B 55f5000e590613b516b12c3682a658fe6a17fbe264be3d61a81698cdf098b39177cf4355eb3f28980209c7a0e005498201cbad8884e3aa02cc86a228d1552046 SHA512 d3bdcd65fc83f2fda3203a604733fe6765049a17cca2715cd6045dc302a6159b4741a821c53fa4c97acf7297cef4c62e941a6a6eb7f8a253a93a28dcf2aa2ca0 DIST pypy2.7-v7.0.0-src.tar.bz2 19811330 BLAKE2B 38089896934d79d2b3f5813cc9dae23b0534d9d312871b22336a277d5a15b82d748f66f896558cfdb45a23004944a648436e89ae36fadc107930e7b99963e12b SHA512 7fb5682ee4226af51008f50a81c922e44c231410fe36b7656efa20f22c855ba30a01bc96ee897b4c7a02941d37a405c922b09855977313878e34aaad6bf023dc DIST pypy2.7-v7.1.0-src.tar.bz2 20032490 BLAKE2B e916d63d7915959c87830509630d8b2ab993d012d314e88c7cc84bed4c595957c3fc575f7b57fac7c24aaf1492797ca43b146e457357b6e73d9772724461de66 SHA512 fa7c1a6669686dbd9c0da627dc2a06ad696f20274218af9602f91d73f3ebe0ede380c6e1a50534f53dee8f075eaef5a403c7c5b5bdbfff25e679ba30522391bb +DIST pypy2.7-v7.1.1-src.tar.bz2 20027876 BLAKE2B a411d7312ed3b9be9297e7ff4cc569530529272156117ca037bbe29ad477e7ce3b8903d13c6a5a35e9867a8ccbfaa418061a7b37317b4b713508c429a41ffe9a SHA512 f998931ecf4f9aeee24f0fed95589716175971816c00e50bc53de6de0cfe2a8537b89c1aee636d15faecf91df8c29943295485686185f5247a3e0913fa514f48 DIST python-gentoo-patches-2.7.14-0.tar.xz 13428 BLAKE2B 0048e48ddaaa4bef08451354fde95a123042880f26dddc9267c7f9a90fd8abb40955e26ee8c9dfc5a1165556bb3e11585b27288e635d42a4000dd3d7654c41ad SHA512 6da5b52065752b54e9215d0f0809c75167dc3690d0e94fa21dd7595626925bc5c1dd065d31b3bd696d7087f3986de145d3a335a29eb7bd77442637a7ec2863c1 DIST python-gentoo-patches-2.7.15.tar.xz 16208 BLAKE2B 5739c2b3a236d48f8e33f0fe6515bfe7a8f99096f6223b402653988feac2513d37d26b6e40e5e049852f42657358170e468ca60097e0e2294e760787c12ad591 SHA512 687fd008d1d41b1e65ce5417f6f6aba84ffd42f7af44ef97c03a7806b28e6888f8df043a0c15187a8b229cc17642853e6feb25494db97f4d10f8a66f8ebcbcca diff --git a/dev-python/pypy-bin/pypy-bin-7.1.1.ebuild b/dev-python/pypy-bin/pypy-bin-7.1.1.ebuild new file mode 100644 index 000000000000..53daf3ce27be --- /dev/null +++ b/dev-python/pypy-bin/pypy-bin-7.1.1.ebuild @@ -0,0 +1,208 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit pax-utils python-utils-r1 unpacker + +BINHOST="https://dev.gentoo.org/~mgorny/dist/pypy-bin/${PV}" +CPY_PATCHSET_VERSION="2.7.15" +MY_P=pypy2.7-v${PV} + +DESCRIPTION="Pre-built version of PyPy" +HOMEPAGE="http://pypy.org/" +SRC_URI="https://bitbucket.org/pypy/pypy/downloads/${MY_P}-src.tar.bz2 + https://dev.gentoo.org/~floppym/python/python-gentoo-patches-${CPY_PATCHSET_VERSION}.tar.xz + amd64? ( + !libressl? ( + jit? ( ${BINHOST}/${P}-amd64+bzip2+jit+ncurses.tar.lz ) + !jit? ( ${BINHOST}/${P}-amd64+bzip2+ncurses.tar.lz ) + ) + libressl? ( + jit? ( ${BINHOST}/${P}-amd64+bzip2+jit+libressl+ncurses.tar.lz ) + !jit? ( ${BINHOST}/${P}-amd64+bzip2+libressl+ncurses.tar.lz ) + ) + ) + x86? ( + !libressl? ( + cpu_flags_x86_sse2? ( + jit? ( ${BINHOST}/${P}-x86+bzip2+jit+ncurses+sse2.tar.lz ) + !jit? ( ${BINHOST}/${P}-x86+bzip2+ncurses+sse2.tar.lz ) + ) + !cpu_flags_x86_sse2? ( + !jit? ( ${BINHOST}/${P}-x86+bzip2+ncurses.tar.lz ) + ) + ) + libressl? ( + cpu_flags_x86_sse2? ( + jit? ( ${BINHOST}/${P}-x86+bzip2+jit+libressl+ncurses+sse2.tar.lz ) + !jit? ( ${BINHOST}/${P}-x86+bzip2+libressl+ncurses+sse2.tar.lz ) + ) + !cpu_flags_x86_sse2? ( + !jit? ( ${BINHOST}/${P}-x86+bzip2+libressl+ncurses.tar.lz ) + ) + ) + )" + +# Supported variants +REQUIRED_USE="x86? ( !cpu_flags_x86_sse2? ( !jit ) )" + +LICENSE="MIT" +# pypy -c 'import sysconfig; print sysconfig.get_config_var("SOABI")' +# pypy 7.0.0: install directory changed to 'pypy2.7' +SLOT="0/41-py27" +KEYWORDS="~amd64 ~x86" +IUSE="gdbm +jit libressl sqlite cpu_flags_x86_sse2 test tk" + +RDEPEND=" + app-arch/bzip2:0/1 + dev-libs/expat:0/0 + dev-libs/libffi:0/7 + sys-devel/gcc:* + >=sys-libs/glibc-2.28 + sys-libs/ncurses:0/6 + sys-libs/zlib:0/1 + gdbm? ( sys-libs/gdbm:0= ) + !libressl? ( dev-libs/openssl:0/1.1[-bindist] ) + libressl? ( dev-libs/libressl:0/44 ) + sqlite? ( dev-db/sqlite:3= ) + tk? ( + dev-lang/tk:0= + dev-tcltk/tix:0= + ) + !dev-python/pypy:0" +DEPEND="${RDEPEND} + app-arch/lzip + app-arch/xz-utils" + +S=${WORKDIR}/${MY_P}-src + +QA_PREBUILT=" + usr/lib/pypy2.7/pypy-c + usr/lib/pypy2.7/libpypy-c.so" + +src_prepare() { + eapply "${FILESDIR}/7.0.0-gentoo-path.patch" + eapply "${FILESDIR}/1.9-distutils.unixccompiler.UnixCCompiler.runtime_library_dir_option.patch" + + sed -e "s^@EPREFIX@^${EPREFIX}^" \ + -i lib-python/2.7/distutils/command/install.py || die + + # apply CPython stdlib patches + pushd lib-python/2.7 > /dev/null || die + # TODO: cpy turkish locale patch now fixes C code + # probably needs better port to pypy, if it is broken there + eapply "${FILESDIR}"/5.8.0_all_distutils_cxx.patch + eapply -p2 "${WORKDIR}"/patches/0011-use_pyxml.patch + popd > /dev/null || die + + eapply_user +} + +src_compile() { + # Tadaam! PyPy compiled! + mv "${WORKDIR}"/${P}*/{libpypy-c.so,pypy-c} . || die + mv "${WORKDIR}"/${P}*/include/*.h include/ || die + # (not installed by pypy) + rm pypy/module/cpyext/include/_numpypy/numpy/README || die + mv pypy/module/cpyext/include/* include/ || die + mv pypy/module/cpyext/parse/*.h include/ || die + + pax-mark m pypy-c libpypy-c.so + + einfo "Generating caches and CFFI modules ..." + + # Generate Grammar and PatternGrammar pickles. + ./pypy-c -c "import lib2to3.pygram, lib2to3.patcomp; lib2to3.patcomp.PatternCompiler()" \ + || die "Generation of Grammar and PatternGrammar pickles failed" + + # Generate cffi modules + # Please keep in sync with pypy/tool/build_cffi_imports.py! +#cffi_build_scripts = { +# "sqlite3": "_sqlite3_build.py", +# "audioop": "_audioop_build.py", +# "tk": "_tkinter/tklib_build.py", +# "curses": "_curses_build.py" if sys.platform != "win32" else None, +# "syslog": "_syslog_build.py" if sys.platform != "win32" else None, +# "gdbm": "_gdbm_build.py" if sys.platform != "win32" else None, +# "pwdgrp": "_pwdgrp_build.py" if sys.platform != "win32" else None, +# "resource": "_resource_build.py" if sys.platform != "win32" else None, + cffi_targets=( audioop curses syslog pwdgrp resource ) + use gdbm && cffi_targets+=( gdbm ) + use sqlite && cffi_targets+=( sqlite3 ) + use tk && cffi_targets+=( tkinter/tklib ) + + local t + # all modules except tkinter output to . + # tkinter outputs to the correct dir ... + cd lib_pypy || die + for t in "${cffi_targets[@]}"; do + # tkinter doesn't work via -m + ../pypy-c "_${t}_build.py" || die "Failed to build CFFI bindings for ${t}" + done + + # Cleanup temporary objects + find -name "_cffi_*.[co]" -delete || die + find -type d -empty -delete || die +} + +src_test() { + # (unset) + local -x PYTHONDONTWRITEBYTECODE= + + local ignored_tests=( + # network + --ignore=lib-python/2.7/test/test_urllibnet.py + --ignore=lib-python/2.7/test/test_urllib2net.py + # lots of free space + --ignore=lib-python/2.7/test/test_zipfile64.py + # no module named 'worker' -- a lot + --ignore=lib-python/2.7/test/test_xpickle.py + ) + + ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -vv \ + "${ignored_tests[@]}" lib-python || die +} + +src_install() { + local dest=/usr/lib/pypy2.7 + einfo "Installing PyPy ..." + exeinto "${dest}" + doexe pypy-c libpypy-c.so + pax-mark m "${ED%/}${dest}/pypy-c" "${ED%/}${dest}/libpypy-c.so" + insinto "${dest}" + # preserve mtimes to avoid obsoleting caches + insopts -p + doins -r include lib_pypy lib-python + dosym ../lib/pypy2.7/pypy-c /usr/bin/pypy + dodoc README.rst + + if ! use gdbm; then + rm -r "${ED%/}${dest}"/lib_pypy/gdbm.py \ + "${ED%/}${dest}"/lib-python/*2.7/test/test_gdbm.py || die + fi + if ! use sqlite; then + rm -r "${ED%/}${dest}"/lib-python/*2.7/sqlite3 \ + "${ED%/}${dest}"/lib_pypy/_sqlite3.py \ + "${ED%/}${dest}"/lib-python/*2.7/test/test_sqlite.py || die + fi + if ! use tk; then + rm -r "${ED%/}${dest}"/lib-python/*2.7/{idlelib,lib-tk} \ + "${ED%/}${dest}"/lib_pypy/_tkinter \ + "${ED%/}${dest}"/lib-python/*2.7/test/test_{tcl,tk,ttk*}.py || die + fi + + local -x PYTHON=${ED%/}${dest}/pypy-c + # we can't use eclass function since PyPy is dumb and always gives + # paths relative to the interpreter + local PYTHON_SITEDIR=${EPREFIX}/usr/lib/pypy2.7/site-packages + python_export pypy EPYTHON + + echo "EPYTHON='${EPYTHON}'" > epython.py || die + python_domodule epython.py + + einfo "Byte-compiling Python standard library..." + + # compile the installed modules + python_optimize "${ED%/}${dest}" +} diff --git a/dev-python/pypy/Manifest b/dev-python/pypy/Manifest index b04e13039f56..11e727f0b2f2 100644 --- a/dev-python/pypy/Manifest +++ b/dev-python/pypy/Manifest @@ -1,5 +1,6 @@ DIST pypy2-v6.0.0-src.tar.bz2 19741694 BLAKE2B 55f5000e590613b516b12c3682a658fe6a17fbe264be3d61a81698cdf098b39177cf4355eb3f28980209c7a0e005498201cbad8884e3aa02cc86a228d1552046 SHA512 d3bdcd65fc83f2fda3203a604733fe6765049a17cca2715cd6045dc302a6159b4741a821c53fa4c97acf7297cef4c62e941a6a6eb7f8a253a93a28dcf2aa2ca0 DIST pypy2.7-v7.0.0-src.tar.bz2 19811330 BLAKE2B 38089896934d79d2b3f5813cc9dae23b0534d9d312871b22336a277d5a15b82d748f66f896558cfdb45a23004944a648436e89ae36fadc107930e7b99963e12b SHA512 7fb5682ee4226af51008f50a81c922e44c231410fe36b7656efa20f22c855ba30a01bc96ee897b4c7a02941d37a405c922b09855977313878e34aaad6bf023dc DIST pypy2.7-v7.1.0-src.tar.bz2 20032490 BLAKE2B e916d63d7915959c87830509630d8b2ab993d012d314e88c7cc84bed4c595957c3fc575f7b57fac7c24aaf1492797ca43b146e457357b6e73d9772724461de66 SHA512 fa7c1a6669686dbd9c0da627dc2a06ad696f20274218af9602f91d73f3ebe0ede380c6e1a50534f53dee8f075eaef5a403c7c5b5bdbfff25e679ba30522391bb +DIST pypy2.7-v7.1.1-src.tar.bz2 20027876 BLAKE2B a411d7312ed3b9be9297e7ff4cc569530529272156117ca037bbe29ad477e7ce3b8903d13c6a5a35e9867a8ccbfaa418061a7b37317b4b713508c429a41ffe9a SHA512 f998931ecf4f9aeee24f0fed95589716175971816c00e50bc53de6de0cfe2a8537b89c1aee636d15faecf91df8c29943295485686185f5247a3e0913fa514f48 DIST python-gentoo-patches-2.7.14-0.tar.xz 13428 BLAKE2B 0048e48ddaaa4bef08451354fde95a123042880f26dddc9267c7f9a90fd8abb40955e26ee8c9dfc5a1165556bb3e11585b27288e635d42a4000dd3d7654c41ad SHA512 6da5b52065752b54e9215d0f0809c75167dc3690d0e94fa21dd7595626925bc5c1dd065d31b3bd696d7087f3986de145d3a335a29eb7bd77442637a7ec2863c1 DIST python-gentoo-patches-2.7.15.tar.xz 16208 BLAKE2B 5739c2b3a236d48f8e33f0fe6515bfe7a8f99096f6223b402653988feac2513d37d26b6e40e5e049852f42657358170e468ca60097e0e2294e760787c12ad591 SHA512 687fd008d1d41b1e65ce5417f6f6aba84ffd42f7af44ef97c03a7806b28e6888f8df043a0c15187a8b229cc17642853e6feb25494db97f4d10f8a66f8ebcbcca diff --git a/dev-python/pypy/pypy-7.1.1.ebuild b/dev-python/pypy/pypy-7.1.1.ebuild new file mode 100644 index 000000000000..7a956b9f4a0d --- /dev/null +++ b/dev-python/pypy/pypy-7.1.1.ebuild @@ -0,0 +1,286 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 pypy ) +inherit check-reqs pax-utils python-any-r1 toolchain-funcs + +# note: remember to update this to newest dev-lang/python:2.7 on bump +CPY_PATCHSET_VERSION="2.7.15" +MY_P=pypy2.7-v${PV} + +DESCRIPTION="A fast, compliant alternative implementation of the Python language" +HOMEPAGE="http://pypy.org/" +SRC_URI="https://bitbucket.org/pypy/pypy/downloads/${MY_P}-src.tar.bz2 + https://dev.gentoo.org/~floppym/python/python-gentoo-patches-${CPY_PATCHSET_VERSION}.tar.xz" + +LICENSE="MIT" +# pypy -c 'import sysconfig; print sysconfig.get_config_var("SOABI")' +# pypy 7.0.0: install directory changed to 'pypy2.7' +SLOT="0/41-py27" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="bzip2 gdbm +jit libressl low-memory ncurses sandbox sqlite cpu_flags_x86_sse2 test tk" + +RDEPEND=">=sys-libs/zlib-1.1.3:0= + virtual/libffi:0= + virtual/libintl:0= + dev-libs/expat:0= + !libressl? ( dev-libs/openssl:0=[-bindist] ) + libressl? ( dev-libs/libressl:0= ) + bzip2? ( app-arch/bzip2:0= ) + gdbm? ( sys-libs/gdbm:0= ) + ncurses? ( sys-libs/ncurses:0= ) + sqlite? ( dev-db/sqlite:3= ) + tk? ( + dev-lang/tk:0= + dev-tcltk/tix:0= + ) + !dev-python/pypy-bin:0" +# don't enforce the dep on pypy with USE=low-memory since it's going +# to cause either collisions or circular dep on itself +DEPEND="${RDEPEND} + !low-memory? ( + || ( + dev-python/pypy + dev-python/pypy-bin + ( + dev-lang/python:2.7 + dev-python/pycparser[python_targets_python2_7(-),python_single_target_python2_7(+)] + ) + ) + )" + +S="${WORKDIR}/${MY_P}-src" + +check_env() { + if use low-memory; then + if ! python_is_installed pypy; then + eerror "USE=low-memory requires a (possibly old) version of dev-python/pypy" + eerror "or dev-python/pypy-bin being installed. Please install it using e.g.:" + eerror + eerror " $ emerge -1v dev-python/pypy-bin" + eerror + eerror "before attempting to build dev-python/pypy[low-memory]." + die "dev-python/pypy-bin (or dev-python/pypy) needs to be installed for USE=low-memory" + fi + + CHECKREQS_MEMORY="1750M" + use amd64 && CHECKREQS_MEMORY="3500M" + else + CHECKREQS_MEMORY="3G" + use amd64 && CHECKREQS_MEMORY="6G" + fi + + check-reqs_pkg_pretend +} + +pkg_pretend() { + [[ ${MERGE_TYPE} != binary ]] && check_env +} + +pkg_setup() { + if [[ ${MERGE_TYPE} != binary ]]; then + check_env + + if python_is_installed pypy; then + if [[ ! ${EPYTHON} || ${EPYTHON} == pypy ]] || use low-memory; then + einfo "Using already-installed PyPy to perform the translation." + local EPYTHON=pypy + else + einfo "Using ${EPYTHON} to perform the translation. Please note that upstream" + einfo "recommends using PyPy for that. If you wish to do so, please unset" + einfo "the EPYTHON variable." + fi + fi + + python-any-r1_pkg_setup + fi +} + +src_prepare() { + eapply "${FILESDIR}/7.0.0-gentoo-path.patch" + eapply "${FILESDIR}/1.9-distutils.unixccompiler.UnixCCompiler.runtime_library_dir_option.patch" + eapply "${FILESDIR}"/5.9.0-shared-lib.patch # 517002 + + sed -e "s^@EPREFIX@^${EPREFIX}^" \ + -i lib-python/2.7/distutils/command/install.py || die + + # apply CPython stdlib patches + pushd lib-python/2.7 > /dev/null || die + # TODO: cpy turkish locale patch now fixes C code + # probably needs better port to pypy, if it is broken there + eapply "${FILESDIR}"/5.8.0_all_distutils_cxx.patch + eapply -p2 "${WORKDIR}"/patches/0011-use_pyxml.patch + popd > /dev/null || die + + eapply_user +} + +src_configure() { + tc-export CC + + local jit_backend + if use jit; then + jit_backend='--jit-backend=' + + # We only need the explicit sse2 switch for x86. + # On other arches we can rely on autodetection which uses + # compiler macros. Plus, --jit-backend= doesn't accept all + # the modern values... + + if use x86; then + if use cpu_flags_x86_sse2; then + jit_backend+=x86 + else + jit_backend+=x86-without-sse2 + fi + else + jit_backend+=auto + fi + fi + + local args=( + --shared + $(usex jit -Ojit -O2) + $(usex sandbox --sandbox '') + + ${jit_backend} + + pypy/goal/targetpypystandalone + ) + + # Avoid linking against libraries disabled by use flags + local opts=( + bzip2:bz2 + ncurses:_minimal_curses + ) + + local opt + for opt in "${opts[@]}"; do + local flag=${opt%:*} + local mod=${opt#*:} + + args+=( + $(usex ${flag} --withmod --withoutmod)-${mod} + ) + done + + local interp=( "${PYTHON}" ) + if use low-memory; then + interp=( env PYPY_GC_MAX_DELTA=200MB + "${PYTHON}" --jit loop_longevity=300 ) + fi + + # translate into the C sources + # we're going to make them ourselves since otherwise pypy does not + # free up the unneeded memory before spawning the compiler + set -- "${interp[@]}" rpython/bin/rpython --batch --source "${args[@]}" + echo -e "\033[1m${@}\033[0m" + "${@}" || die "translation failed" +} + +src_compile() { + emake -C "${T}"/usession*-0/testing_1 + + # copy back to make sys.prefix happy + cp -p "${T}"/usession*-0/testing_1/{pypy-c,libpypy-c.so} . || die + pax-mark m pypy-c libpypy-c.so + + einfo "Generating caches and CFFI modules ..." + + # Generate Grammar and PatternGrammar pickles. + ./pypy-c -c "import lib2to3.pygram, lib2to3.patcomp; lib2to3.patcomp.PatternCompiler()" \ + || die "Generation of Grammar and PatternGrammar pickles failed" + + # Generate cffi modules + # Please keep in sync with pypy/tool/build_cffi_imports.py! +#cffi_build_scripts = { +# "sqlite3": "_sqlite3_build.py", +# "audioop": "_audioop_build.py", +# "tk": "_tkinter/tklib_build.py", +# "curses": "_curses_build.py" if sys.platform != "win32" else None, +# "syslog": "_syslog_build.py" if sys.platform != "win32" else None, +# "gdbm": "_gdbm_build.py" if sys.platform != "win32" else None, +# "pwdgrp": "_pwdgrp_build.py" if sys.platform != "win32" else None, +# "resource": "_resource_build.py" if sys.platform != "win32" else None, + cffi_targets=( audioop syslog pwdgrp resource ) + use gdbm && cffi_targets+=( gdbm ) + use ncurses && cffi_targets+=( curses ) + use sqlite && cffi_targets+=( sqlite3 ) + use tk && cffi_targets+=( tkinter/tklib ) + + local t + # all modules except tkinter output to . + # tkinter outputs to the correct dir ... + cd lib_pypy || die + for t in "${cffi_targets[@]}"; do + # tkinter doesn't work via -m + ../pypy-c "_${t}_build.py" || die "Failed to build CFFI bindings for ${t}" + done + + # Cleanup temporary objects + find -name "_cffi_*.[co]" -delete || die + find -type d -empty -delete || die +} + +src_test() { + # (unset) + local -x PYTHONDONTWRITEBYTECODE= + + local ignored_tests=( + # network + --ignore=lib-python/2.7/test/test_urllibnet.py + --ignore=lib-python/2.7/test/test_urllib2net.py + # lots of free space + --ignore=lib-python/2.7/test/test_zipfile64.py + # no module named 'worker' -- a lot + --ignore=lib-python/2.7/test/test_xpickle.py + ) + + ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -vv \ + "${ignored_tests[@]}" lib-python || die +} + +src_install() { + local dest=/usr/lib/pypy2.7 + einfo "Installing PyPy ..." + exeinto "${dest}" + doexe pypy-c libpypy-c.so + pax-mark m "${ED%/}${dest}/pypy-c" "${ED%/}${dest}/libpypy-c.so" + insinto "${dest}" + # preserve mtimes to avoid obsoleting caches + insopts -p + doins -r include lib_pypy lib-python + dosym ../lib/pypy2.7/pypy-c /usr/bin/pypy + dodoc README.rst + + if ! use gdbm; then + rm -r "${ED%/}${dest}"/lib_pypy/gdbm.py \ + "${ED%/}${dest}"/lib-python/*2.7/test/test_gdbm.py || die + fi + if ! use sqlite; then + rm -r "${ED%/}${dest}"/lib-python/*2.7/sqlite3 \ + "${ED%/}${dest}"/lib_pypy/_sqlite3.py \ + "${ED%/}${dest}"/lib-python/*2.7/test/test_sqlite.py || die + fi + if ! use tk; then + rm -r "${ED%/}${dest}"/lib-python/*2.7/{idlelib,lib-tk} \ + "${ED%/}${dest}"/lib_pypy/_tkinter \ + "${ED%/}${dest}"/lib-python/*2.7/test/test_{tcl,tk,ttk*}.py || die + fi + + local -x PYTHON=${ED%/}${dest}/pypy-c + # we can't use eclass function since PyPy is dumb and always gives + # paths relative to the interpreter + local PYTHON_SITEDIR=${EPREFIX}/usr/lib/pypy2.7/site-packages + python_export pypy EPYTHON + + echo "EPYTHON='${EPYTHON}'" > epython.py || die + python_domodule epython.py + + einfo "Byte-compiling Python standard library..." + + # compile the installed modules + python_optimize "${ED%/}${dest}" +} diff --git a/dev-python/pypy3-bin/Manifest b/dev-python/pypy3-bin/Manifest index 4a643b51bf74..eea989c40c9b 100644 --- a/dev-python/pypy3-bin/Manifest +++ b/dev-python/pypy3-bin/Manifest @@ -18,6 +18,12 @@ DIST pypy3-bin-7.1.0-amd64+bzip2+ncurses.tar.lz 6917379 BLAKE2B 1be91d0001a09574 DIST pypy3-bin-7.1.0-x86+bzip2+jit+ncurses+sse2.tar.lz 8510623 BLAKE2B 91bbe4286d82d90d05c3a4280c285bfccee3ae8661cf974554ef8c96f3806f95187cae1767340cc1e17f65c37f380dc9a4636cf3388a3c4bd2664ea4d61b63b8 SHA512 f5aa0efc4cbff57c0eb49504a46aac8b03bf298e5b996dd2264d923fe514543736df2f856d841b15a4386cd84809051ce6b29840c47fc32cdf7482d53d52b755 DIST pypy3-bin-7.1.0-x86+bzip2+ncurses+sse2.tar.lz 5546135 BLAKE2B 7ce2fe3c8b662d808ec63c96fe7ba42b78210d5cd1828050b139616d577feb41cca65c79c291d376b3f53d54feb157894700fda705d067fd536af3bb0a4e9d72 SHA512 87fd9091e30a60f034d96cefa3a192801ab5c8ebf76d8e13741cf5f18317b4751e619b1b1e9ddf9098767526c119761208885744c08a4ce131915f3758e198d0 DIST pypy3-bin-7.1.0-x86+bzip2+ncurses.tar.lz 5540259 BLAKE2B dcd4e666c66d5bb711e5b95431fafe19a81a8b8458af2fdfe1f2272ff05214f9687b9f88d8b58ef6b05272252db4b308b32cfe4778e0f224825bcca9609313ed SHA512 8a9f681b998189b6871d85fbef00289b5c258ec67805fc2bf3179fa4650655051c33b7715845dde8e93c5ce9884a36cb1501f653804328e4104099ddcdd1763d +DIST pypy3-bin-7.1.1-amd64+bzip2+jit+ncurses.tar.lz 11031375 BLAKE2B e01ac298d3c8ed06742429b36739223fd0dbf87a9df4d302349401aeda06dbaf5cd8b972ebe997a1e4130a378d63ab69ed25b3ded4b9608db5d59fbaef8d04f6 SHA512 e5ccf27683dc81a683df52f04092167774f3a9c9dd3a38347dc9d5cec181148885ed342165b16689d44533511cb58bfcfa397a5e51869649086fa362a3bebc98 +DIST pypy3-bin-7.1.1-amd64+bzip2+ncurses.tar.lz 6915836 BLAKE2B 0f3f2210e7f6e73872d32b2c01a911b52ad2a8c8987034709d9e4c72cfe11e422eea7b6522b19b3717876307d9fbbfbdfcc008dc2e3771dea083eeb61c202e6e SHA512 7fe6a19f56d7cdc142b368154e17af8936b8b730102c4a1c8a6b756a13b643d1375a51f45a0a3d345f7a8a23b75a81d35a6aa810129d231bf2091e156f69a914 +DIST pypy3-bin-7.1.1-x86+bzip2+jit+ncurses+sse2.tar.lz 8540485 BLAKE2B a7de0db24e4bc56d54cbc03d618f8e08932e23a1fe5a1ab227600c244e222a6dae723c72fbd5cdd059c3e3f52bd355c4c9ee18506f6b39961bd1473358d35bd3 SHA512 f3355109bc073e220a33e8763c2d2ccf152d223d3850bb85aac71c19170ce4b118a84f258a829c486209f3c3014264384b158de17c9a0156c24afcf5b130a8e0 +DIST pypy3-bin-7.1.1-x86+bzip2+ncurses+sse2.tar.lz 5523574 BLAKE2B 44f760842b0f232f7f5fb7a2fe3f60ff1f832dec3b0c16d1fd27ab36d09c12d6be8aa6727a880c3400506ea415317ddfb982439c1a581a03909099eeb6ea8cf6 SHA512 df664a7afa5bdd329d19046c81e362782c4f9358add2b7e54100df10a23434b9a341ec504ac1d49b2b017917937ab23ffd3cf723f86b65d7080789f795f5a4d3 +DIST pypy3-bin-7.1.1-x86+bzip2+ncurses.tar.lz 5545191 BLAKE2B 2afc40968977cd6956cb305a829811640e8437f0a811435a20ec694181286c94c820fd4148e3b6323a014ff391400d5265a7c1ee8b918c3db91ac02b44f3d585 SHA512 a1dad750491c5f524217986817a046c5c7a97b2b250a1d24b6a077d2d8067e249966cd331a5336fa2960a3d317c1aa83196c3e3b2f4a0734d79fe43cd9b55032 DIST pypy3-v6.0.0-src.tar.bz2 22648140 BLAKE2B b8678859b0c24494788ddf6f410a3ec1a56a04663452e1aba25d3f41c5073a95866d1623f00cb1a6c9d0256df728fa60d1edb5b58d26c0d88577769cc8a6205d SHA512 ea406c4dd1837a6ab13026de01330790f3c18f6e2bfb83e8553e52acf78b43dfb559ce75c2d91395055c771db359356c8183ed950da6f01a21bf09128935af5e DIST pypy3.5-v7.0.0-src.tar.bz2 22730690 BLAKE2B 312aea1f88303b225bbfa5e82a28d3c2893d9977b03a3fd12923db15c4a77f04ec3fbce947f0684c4e27073836583ef8a5eaf5be05612e564172170740c2a6e3 SHA512 3facac26e06e254cbf244841824b35ec211859123f6ba9f095dc980292c10d9cf1d11de62cc6372cf77e92ee1cd2358bbd794b3ff25cb7172e1b21c02c8ce6c2 DIST pypy3.6-v7.1.0-src.tar.bz2 23167216 BLAKE2B 12a085c2d4820289643818d8bc1c17304e4cf4f4687054452d878c6f26fd36802bbbe5baee73f0ce2f0322e126dbccbcf7b48ca6569bb7eb8d59f473bd80d4b1 SHA512 1a0a9e9de31c63114c0537747c4a718504a28b780a2ef1f76bff6051a1ec68b496b574989f0b729c07611cd81e199135dd268834dfa6f9664e1e119db8ae20e4 +DIST pypy3.6-v7.1.1-src.tar.bz2 23171982 BLAKE2B be43528bc6f3e02d146016a4969bd8c7a9e880a3bd3b77f441aac6d22ef67700f71e0171ec000066bd2c0bd506db64af69d6b75b59a92222dd0353ee70e6629b SHA512 17e78f9c7080d597a6283d8e8247d1ca78f09a14ff221db8c3d90d255b5befc73102b317ca34a80979e544d5ee72f3e5e649f89d185a085f4cc15012da4d0473 diff --git a/dev-python/pypy3-bin/pypy3-bin-7.1.1.ebuild b/dev-python/pypy3-bin/pypy3-bin-7.1.1.ebuild new file mode 100644 index 000000000000..0f8954a4f842 --- /dev/null +++ b/dev-python/pypy3-bin/pypy3-bin-7.1.1.ebuild @@ -0,0 +1,188 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +# Test runner needs Python 2. +PYTHON_COMPAT=( python2_7 pypy ) +inherit pax-utils python-any-r1 unpacker + +BINHOST="https://dev.gentoo.org/~mgorny/dist/pypy3-bin/${PV}" +MY_P=pypy3.6-v${PV} + +DESCRIPTION="A fast, compliant alternative implementation of Python 3.6 (binary package)" +HOMEPAGE="http://pypy.org/" +SRC_URI="https://bitbucket.org/pypy/pypy/downloads/${MY_P}-src.tar.bz2 + amd64? ( + jit? ( ${BINHOST}/${P}-amd64+bzip2+jit+ncurses.tar.lz ) + !jit? ( ${BINHOST}/${P}-amd64+bzip2+ncurses.tar.lz ) + ) + x86? ( + cpu_flags_x86_sse2? ( + jit? ( ${BINHOST}/${P}-x86+bzip2+jit+ncurses+sse2.tar.lz ) + !jit? ( ${BINHOST}/${P}-x86+bzip2+ncurses+sse2.tar.lz ) + ) + !cpu_flags_x86_sse2? ( + !jit? ( ${BINHOST}/${P}-x86+bzip2+ncurses.tar.lz ) + ) + )" + +# Supported variants +REQUIRED_USE="x86? ( !cpu_flags_x86_sse2? ( !jit ) )" + +LICENSE="MIT" +# pypy3 -c 'import sysconfig; print(sysconfig.get_config_var("SOABI"))' +SLOT="0/71-py36" +KEYWORDS="~amd64 ~x86" +IUSE="gdbm +jit libressl sqlite cpu_flags_x86_sse2 test tk" + +RDEPEND=" + app-arch/bzip2:0/1 + dev-libs/expat:0/0 + dev-libs/libffi:0/7 + sys-devel/gcc:* + >=sys-libs/glibc-2.28 + sys-libs/ncurses:0/6 + sys-libs/zlib:0/1 + gdbm? ( sys-libs/gdbm:0= ) + !libressl? ( dev-libs/openssl:0=[-bindist] ) + libressl? ( dev-libs/libressl:0= ) + sqlite? ( dev-db/sqlite:3= ) + tk? ( + dev-lang/tk:0= + dev-tcltk/tix:0= + ) + !dev-python/pypy3:0" +DEPEND="${RDEPEND} + app-arch/lzip + app-arch/xz-utils + test? ( ${PYTHON_DEPS} )" + +S=${WORKDIR}/${MY_P}-src + +QA_PREBUILT=" + usr/lib/pypy3.6/pypy3-c + usr/lib/pypy3.6/libpypy3-c.so" + +src_prepare() { + eapply "${FILESDIR}/7.0.0-gentoo-path.patch" + eapply "${FILESDIR}/1.9-distutils.unixccompiler.UnixCCompiler.runtime_library_dir_option.patch" + eapply "${FILESDIR}"/7.0.0_all_distutils_cxx.patch + + sed -e "s^@EPREFIX@^${EPREFIX}^" \ + -i lib-python/3/distutils/command/install.py || die + + # apply CPython stdlib patches + pushd lib-python/3 > /dev/null || die + eapply "${FILESDIR}"/python-3.5-distutils-OO-build.patch + popd > /dev/null || die + + eapply_user +} + +src_compile() { + # Tadaam! PyPy compiled! + mv "${WORKDIR}"/${P}*/{libpypy3-c.so,pypy3-c} . || die + mv "${WORKDIR}"/${P}*/include/*.h include/ || die + mv pypy/module/cpyext/include/*.h include/ || die + mv pypy/module/cpyext/parse/*.h include/ || die + + pax-mark m pypy3-c libpypy3-c.so + + einfo "Generating caches and CFFI modules ..." + + # Generate Grammar and PatternGrammar pickles. + ./pypy3-c -c "import lib2to3.pygram, lib2to3.patcomp; lib2to3.patcomp.PatternCompiler()" \ + || die "Generation of Grammar and PatternGrammar pickles failed" + + # Generate cffi modules + # Please keep in sync with pypy/tool/build_cffi_imports.py! +#cffi_build_scripts = { +# "sqlite3": "_sqlite3_build.py", +# "audioop": "_audioop_build.py", +# "tk": "_tkinter/tklib_build.py", +# "curses": "_curses_build.py" if sys.platform != "win32" else None, +# "syslog": "_syslog_build.py" if sys.platform != "win32" else None, +# "_gdbm": "_gdbm_build.py" if sys.platform != "win32" else None, +# "pwdgrp": "_pwdgrp_build.py" if sys.platform != "win32" else None, +# "resource": "_resource_build.py" if sys.platform != "win32" else None, +# "lzma": "_lzma_build.py", +# "_decimal": "_decimal_build.py", +# "ssl": "_ssl_build.py", +# "_blake2": "_blake2/_blake2_build.py", +# "_sha3": "_sha3/_sha3_build.py", + cffi_targets=( blake2/_blake2 sha3/_sha3 ssl + audioop curses syslog pwdgrp resource lzma decimal ) + use gdbm && cffi_targets+=( gdbm ) + use sqlite && cffi_targets+=( sqlite3 ) + use tk && cffi_targets+=( tkinter/tklib ) + + einfo "Please disregard the import errors during CFFI cache generation." + einfo "They come from modules not built yet." + + local t + # all modules except tkinter output to . + # tkinter outputs to the correct dir ... + cd lib_pypy || die + for t in "${cffi_targets[@]}"; do + # tkinter doesn't work via -m + ../pypy3-c "_${t}_build.py" || die "Failed to build CFFI bindings for ${t}" + done + + # Cleanup temporary objects + find -name "_cffi_*.[co]" -delete || die + find -type d -empty -delete || die +} + +src_test() { + # (unset) + local -x PYTHONDONTWRITEBYTECODE= + + # Test runner requires Python 2 too. However, it spawns PyPy3 + # internally so that we end up testing the correct interpreter. + "${PYTHON}" ./pypy/test_all.py --pypy=./pypy3-c -vv lib-python || die +} + +src_install() { + local dest=/usr/lib/pypy3.6 + einfo "Installing PyPy ..." + exeinto "${dest}" + doexe pypy3-c libpypy3-c.so + pax-mark m "${ED%/}${dest}/pypy3-c" "${ED%/}${dest}/libpypy3-c.so" + insinto "${dest}" + # preserve mtimes to avoid obsoleting caches + insopts -p + doins -r include lib_pypy lib-python + dosym ../lib/pypy3.6/pypy3-c /usr/bin/pypy3 + dodoc README.rst + + if ! use gdbm; then + rm -r "${ED%/}${dest}"/lib_pypy/_gdbm* || die + fi + if ! use sqlite; then + rm -r "${ED%/}${dest}"/lib-python/*3/sqlite3 \ + "${ED%/}${dest}"/lib_pypy/_sqlite3* \ + "${ED%/}${dest}"/lib-python/*3/test/test_sqlite.py || die + fi + if ! use tk; then + rm -r "${ED%/}${dest}"/lib-python/*3/{idlelib,tkinter} \ + "${ED%/}${dest}"/lib_pypy/_tkinter \ + "${ED%/}${dest}"/lib-python/*3/test/test_{tcl,tk,ttk*}.py || die + fi + + einfo "Generating caches and byte-compiling ..." + + local -x PYTHON=${ED%/}${dest}/pypy3-c + # we can't use eclass function since PyPy is dumb and always gives + # paths relative to the interpreter + local PYTHON_SITEDIR=${EPREFIX}/usr/lib/pypy3.6/site-packages + python_export pypy3 EPYTHON + + echo "EPYTHON='${EPYTHON}'" > epython.py || die + python_domodule epython.py + + einfo "Byte-compiling Python standard library..." + + # compile the installed modules + python_optimize "${ED%/}${dest}" +} diff --git a/dev-python/pypy3/Manifest b/dev-python/pypy3/Manifest index d504fd7a9eb6..40244f11480c 100644 --- a/dev-python/pypy3/Manifest +++ b/dev-python/pypy3/Manifest @@ -1,3 +1,4 @@ DIST pypy3-v6.0.0-src.tar.bz2 22648140 BLAKE2B b8678859b0c24494788ddf6f410a3ec1a56a04663452e1aba25d3f41c5073a95866d1623f00cb1a6c9d0256df728fa60d1edb5b58d26c0d88577769cc8a6205d SHA512 ea406c4dd1837a6ab13026de01330790f3c18f6e2bfb83e8553e52acf78b43dfb559ce75c2d91395055c771db359356c8183ed950da6f01a21bf09128935af5e DIST pypy3.5-v7.0.0-src.tar.bz2 22730690 BLAKE2B 312aea1f88303b225bbfa5e82a28d3c2893d9977b03a3fd12923db15c4a77f04ec3fbce947f0684c4e27073836583ef8a5eaf5be05612e564172170740c2a6e3 SHA512 3facac26e06e254cbf244841824b35ec211859123f6ba9f095dc980292c10d9cf1d11de62cc6372cf77e92ee1cd2358bbd794b3ff25cb7172e1b21c02c8ce6c2 DIST pypy3.6-v7.1.0-src.tar.bz2 23167216 BLAKE2B 12a085c2d4820289643818d8bc1c17304e4cf4f4687054452d878c6f26fd36802bbbe5baee73f0ce2f0322e126dbccbcf7b48ca6569bb7eb8d59f473bd80d4b1 SHA512 1a0a9e9de31c63114c0537747c4a718504a28b780a2ef1f76bff6051a1ec68b496b574989f0b729c07611cd81e199135dd268834dfa6f9664e1e119db8ae20e4 +DIST pypy3.6-v7.1.1-src.tar.bz2 23171982 BLAKE2B be43528bc6f3e02d146016a4969bd8c7a9e880a3bd3b77f441aac6d22ef67700f71e0171ec000066bd2c0bd506db64af69d6b75b59a92222dd0353ee70e6629b SHA512 17e78f9c7080d597a6283d8e8247d1ca78f09a14ff221db8c3d90d255b5befc73102b317ca34a80979e544d5ee72f3e5e649f89d185a085f4cc15012da4d0473 diff --git a/dev-python/pypy3/pypy3-7.1.1.ebuild b/dev-python/pypy3/pypy3-7.1.1.ebuild new file mode 100644 index 000000000000..f0f7cdf74a2a --- /dev/null +++ b/dev-python/pypy3/pypy3-7.1.1.ebuild @@ -0,0 +1,250 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +# pypy3 needs to be built using python 2 +PYTHON_COMPAT=( python2_7 pypy ) +inherit check-reqs pax-utils python-any-r1 toolchain-funcs + +MY_P=pypy3.6-v${PV} + +DESCRIPTION="A fast, compliant alternative implementation of the Python (3.6) language" +HOMEPAGE="http://pypy.org/" +SRC_URI="https://bitbucket.org/pypy/pypy/downloads/${MY_P}-src.tar.bz2" + +LICENSE="MIT" +# pypy3 -c 'import sysconfig; print(sysconfig.get_config_var("SOABI"))' +SLOT="0/71-py36" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="bzip2 gdbm +jit libressl low-memory ncurses sandbox sqlite tk" + +RDEPEND=">=sys-libs/zlib-1.1.3:0= + virtual/libffi:0= + virtual/libintl:0= + dev-libs/expat:0= + !libressl? ( dev-libs/openssl:0=[-bindist] ) + libressl? ( dev-libs/libressl:0= ) + bzip2? ( app-arch/bzip2:0= ) + gdbm? ( sys-libs/gdbm:0= ) + ncurses? ( sys-libs/ncurses:0= ) + sqlite? ( dev-db/sqlite:3= ) + tk? ( + dev-lang/tk:0= + dev-tcltk/tix:0= + ) + !dev-python/pypy3-bin:0" +DEPEND="${RDEPEND} + low-memory? ( virtual/pypy ) + !low-memory? ( + || ( + virtual/pypy + ( + dev-lang/python:2.7 + dev-python/pycparser[python_targets_python2_7(-),python_single_target_python2_7(+)] + ) + ) + )" + +S="${WORKDIR}/${MY_P}-src" + +check_env() { + if use low-memory; then + CHECKREQS_MEMORY="1750M" + use amd64 && CHECKREQS_MEMORY="3500M" + else + CHECKREQS_MEMORY="3G" + use amd64 && CHECKREQS_MEMORY="6G" + fi + + check-reqs_pkg_pretend +} + +pkg_pretend() { + [[ ${MERGE_TYPE} != binary ]] && check_env +} + +pkg_setup() { + if [[ ${MERGE_TYPE} != binary ]]; then + check_env + + # unset to allow forcing pypy below :) + use low-memory && local EPYTHON= + if python_is_installed pypy && [[ ! ${EPYTHON} || ${EPYTHON} == pypy ]]; then + einfo "Using PyPy to perform the translation." + local EPYTHON=pypy + else + einfo "Using ${EPYTHON:-python2} to perform the translation. Please note that upstream" + einfo "recommends using PyPy for that. If you wish to do so, please install" + einfo "virtual/pypy and ensure that EPYTHON variable is unset." + fi + + python-any-r1_pkg_setup + fi +} + +src_prepare() { + eapply "${FILESDIR}/7.0.0-gentoo-path.patch" + eapply "${FILESDIR}/1.9-distutils.unixccompiler.UnixCCompiler.runtime_library_dir_option.patch" + eapply "${FILESDIR}"/5.9.0-shared-lib.patch # 517002 + eapply "${FILESDIR}"/7.0.0_all_distutils_cxx.patch + + sed -e "s^@EPREFIX@^${EPREFIX}^" \ + -i lib-python/3/distutils/command/install.py || die + + # apply CPython stdlib patches + pushd lib-python/3 > /dev/null || die + eapply "${FILESDIR}"/python-3.5-distutils-OO-build.patch + popd > /dev/null || die + + eapply_user +} + +src_configure() { + tc-export CC + + local args=( + --shared + $(usex jit -Ojit -O2) + $(usex sandbox --sandbox '') + + --jit-backend=auto + + pypy/goal/targetpypystandalone + ) + + # Avoid linking against libraries disabled by use flags + local opts=( + bzip2:bz2 + ncurses:_minimal_curses + ) + + local opt + for opt in "${opts[@]}"; do + local flag=${opt%:*} + local mod=${opt#*:} + + args+=( + $(usex ${flag} --withmod --withoutmod)-${mod} + ) + done + + local interp=( "${PYTHON}" ) + if use low-memory; then + interp=( env PYPY_GC_MAX_DELTA=200MB + "${PYTHON}" --jit loop_longevity=300 ) + fi + + # translate into the C sources + # we're going to make them ourselves since otherwise pypy does not + # free up the unneeded memory before spawning the compiler + set -- "${interp[@]}" rpython/bin/rpython --batch --source "${args[@]}" + echo -e "\033[1m${@}\033[0m" + "${@}" || die "translation failed" +} + +src_compile() { + emake -C "${T}"/usession*-0/testing_1 + + # copy back to make sys.prefix happy + cp -p "${T}"/usession*-0/testing_1/{pypy3-c,libpypy3-c.so} . || die + pax-mark m pypy3-c libpypy3-c.so + + einfo "Generating caches and CFFI modules ..." + + # Generate Grammar and PatternGrammar pickles. + ./pypy3-c -c "import lib2to3.pygram, lib2to3.patcomp; lib2to3.patcomp.PatternCompiler()" \ + || die "Generation of Grammar and PatternGrammar pickles failed" + + # Generate cffi modules + # Please keep in sync with pypy/tool/build_cffi_imports.py! +#cffi_build_scripts = { +# "sqlite3": "_sqlite3_build.py", +# "audioop": "_audioop_build.py", +# "tk": "_tkinter/tklib_build.py", +# "curses": "_curses_build.py" if sys.platform != "win32" else None, +# "syslog": "_syslog_build.py" if sys.platform != "win32" else None, +# "_gdbm": "_gdbm_build.py" if sys.platform != "win32" else None, +# "pwdgrp": "_pwdgrp_build.py" if sys.platform != "win32" else None, +# "resource": "_resource_build.py" if sys.platform != "win32" else None, +# "lzma": "_lzma_build.py", +# "_decimal": "_decimal_build.py", +# "_ssl": "_ssl_build.py", +# "_blake2": "_blake2/_blake2_build.py", +# "_sha3": "_sha3/_sha3_build.py", + cffi_targets=( blake2/_blake2 sha3/_sha3 ssl + audioop syslog pwdgrp resource lzma decimal ) + use gdbm && cffi_targets+=( gdbm ) + use ncurses && cffi_targets+=( curses ) + use sqlite && cffi_targets+=( sqlite3 ) + use tk && cffi_targets+=( tkinter/tklib ) + + einfo "Please disregard the import errors during CFFI cache generation." + einfo "They come from modules not built yet." + + local t + # all modules except tkinter output to . + # tkinter outputs to the correct dir ... + cd lib_pypy || die + for t in "${cffi_targets[@]}"; do + # tkinter doesn't work via -m + ../pypy3-c "_${t}_build.py" || die "Failed to build CFFI bindings for ${t}" + done + + # Cleanup temporary objects + find -name "_cffi_*.[co]" -delete || die + find -type d -empty -delete || die +} + +src_test() { + # (unset) + local -x PYTHONDONTWRITEBYTECODE= + + # Test runner requires Python 2 too. However, it spawns PyPy3 + # internally so that we end up testing the correct interpreter. + "${PYTHON}" ./pypy/test_all.py --pypy=./pypy3-c -vv lib-python || die +} + +src_install() { + local dest=/usr/lib/pypy3.6 + einfo "Installing PyPy ..." + exeinto "${dest}" + doexe pypy3-c libpypy3-c.so + pax-mark m "${ED%/}${dest}/pypy3-c" "${ED%/}${dest}/libpypy3-c.so" + insinto "${dest}" + # preserve mtimes to avoid obsoleting caches + insopts -p + doins -r include lib_pypy lib-python + dosym ../lib/pypy3.6/pypy3-c /usr/bin/pypy3 + dodoc README.rst + + if ! use gdbm; then + rm -r "${ED%/}${dest}"/lib_pypy/_gdbm* || die + fi + if ! use sqlite; then + rm -r "${ED%/}${dest}"/lib-python/*3/sqlite3 \ + "${ED%/}${dest}"/lib_pypy/_sqlite3* \ + "${ED%/}${dest}"/lib-python/*3/test/test_sqlite.py || die + fi + if ! use tk; then + rm -r "${ED%/}${dest}"/lib-python/*3/{idlelib,tkinter} \ + "${ED%/}${dest}"/lib_pypy/_tkinter \ + "${ED%/}${dest}"/lib-python/*3/test/test_{tcl,tk,ttk*}.py || die + fi + + einfo "Generating caches and byte-compiling ..." + + local -x PYTHON=${ED%/}${dest}/pypy3-c + # we can't use eclass function since PyPy is dumb and always gives + # paths relative to the interpreter + local PYTHON_SITEDIR=${EPREFIX}/usr/lib/pypy3.6/site-packages + python_export pypy3 EPYTHON + + echo "EPYTHON='${EPYTHON}'" > epython.py || die + python_domodule epython.py + + einfo "Byte-compiling Python standard library..." + + # compile the installed modules + python_optimize "${ED%/}${dest}" +} diff --git a/dev-python/rdflib/files/rdflib-4.2.2-python3.7-StopIteration.patch b/dev-python/rdflib/files/rdflib-4.2.2-python3.7-StopIteration.patch new file mode 100644 index 000000000000..389d220dc1b7 --- /dev/null +++ b/dev-python/rdflib/files/rdflib-4.2.2-python3.7-StopIteration.patch @@ -0,0 +1,72 @@ +Traceback (most recent call last): + File "/var/tmp/portage/dev-python/rdflib-4.2.2/work/rdflib-4.2.2-python3_7/build/src/rdflib/plugins/sparql/evaluate.py", line 330, in evalSlice + next(res) +StopIteration + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/usr/lib/python3.7/site-packages/nose/case.py", line 197, in runTest + self.test(*self.arg) + File "/var/tmp/portage/dev-python/rdflib-4.2.2/work/rdflib-4.2.2-python3_7/build/src/test/test_dawg.py", line 434, in query_test + set(res2) + File "/var/tmp/portage/dev-python/rdflib-4.2.2/work/rdflib-4.2.2-python3_7/build/src/rdflib/query.py", line 258, in __iter__ + for b in self._genbindings: +RuntimeError: generator raised StopIteration + +Patch backported from +https://github.com/RDFLib/rdflib/commit/58c45d6f30af88a22f60edcb9a459648a885e226 + +--- a/rdflib/plugins/sparql/evaluate.py ++++ b/rdflib/plugins/sparql/evaluate.py +@@ -15,6 +15,7 @@ + """ + + import collections ++import itertools + + from rdflib import Variable, Graph, BNode, URIRef, Literal + +@@ -323,22 +324,9 @@ + + + def evalSlice(ctx, slice): +- # import pdb; pdb.set_trace() + res = evalPart(ctx, slice.p) +- i = 0 +- while i < slice.start: +- res.next() +- i += 1 +- i = 0 +- for x in res: +- i += 1 +- if slice.length is None: +- yield x +- else: +- if i <= slice.length: +- yield x +- else: +- break ++ ++ return itertools.islice(res, slice.start, slice.start+slice.length if slice.length is not None else None) + + + def evalReduced(ctx, part): +--- a/rdflib/query.py ++++ b/rdflib/query.py +@@ -1,5 +1,6 @@ + + import os ++import itertools + import shutil + import tempfile + import warnings +@@ -181,7 +182,7 @@ + return self._bindings + + def _set_bindings(self, b): +- if isinstance(b, types.GeneratorType): ++ if isinstance(b, (types.GeneratorType, itertools.islice)): + self._genbindings = b + self._bindings = [] + else: diff --git a/dev-python/rdflib/rdflib-4.2.2-r1.ebuild b/dev-python/rdflib/rdflib-4.2.2-r1.ebuild new file mode 100644 index 000000000000..2181a2dec6c6 --- /dev/null +++ b/dev-python/rdflib/rdflib-4.2.2-r1.ebuild @@ -0,0 +1,99 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python{2_7,3_{5,6,7}} ) +PYTHON_REQ_USE="sqlite?,threads(+)" + +# The usual required for tests +DISTUTILS_IN_SOURCE_BUILD=1 + +inherit distutils-r1 + +DESCRIPTION="RDF library containing a triple store and parser/serializer" +HOMEPAGE="https://github.com/RDFLib/rdflib https://pypi.org/project/rdflib/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="doc berkdb examples mysql redland sqlite test" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-python/isodate[${PYTHON_USEDEP}] + dev-python/html5lib[${PYTHON_USEDEP}] + dev-python/pyparsing[${PYTHON_USEDEP}] + berkdb? ( dev-python/bsddb3[${PYTHON_USEDEP}] ) + mysql? ( dev-python/mysql-python[$(python_gen_usedep 'python2*')] ) + redland? ( dev-libs/redland-bindings[python,$(python_gen_usedep 'python2*')] )" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) + test? ( + dev-python/sparql-wrapper[${PYTHON_USEDEP}] + >=dev-python/nose-1.3.1-r1[${PYTHON_USEDEP}] + )" + +PATCHES=( + # Python 3.7 StopIteration bug + "${FILESDIR}"/${PN}-4.2.2-python3.7-StopIteration.patch +) + +python_prepare_all() { + # Upstream manufactured .pyc files which promptly break distutils' src_test + find -name "*.py[oc~]" -delete || die + + # Bug 358189; take out tests that attempt to connect to the network + sed -e "/'--with-doctest',/d" -e "/'--doctest-extension=.doctest',/d" \ + -e "/'--doctest-tests',/d" -i run_tests.py || die + + sed -e "s: 'sphinx.ext.intersphinx',::" -i docs/conf.py || die + + # doc build requires examples folder at the upper level of docs + if use doc; then + cd docs || die + ln -sf ../examples . || die + cd ../ || die + fi + + distutils-r1_python_prepare_all +} + +python_compile_all() { + # https://github.com/RDFLib/rdflib/issues/510 + if use doc; then + einfo "" + einfo "Several warnings and Errors present in the build" + einfo "For a complete build, it is required to install" + einfo "github.com/gjhiggins/n3_pygments_lexer and" + einfo "github.com/gjhiggins/sparql_pygments_lexer" + einfo "outside portage via pip or by cloning. These have not been" + einfo "given a tagged release by the author and are not in portage" + einfo "" + + emake -C docs html + HTML_DOCS=( docs/_build/html/. ) + fi +} + +python_test() { + # the default; nose with: --where=./ does not work for python3 + if python_is_python3; then + pushd "${BUILD_DIR}/src/" >/dev/null || die + "${EPYTHON}" ./run_tests.py || die "Tests failed under ${EPYTHON}" + popd >/dev/null || die + else + "${EPYTHON}" ./run_tests.py || die "Tests failed under ${EPYTHON}" + fi +} + +python_install_all() { + distutils-r1_python_install_all + + if use examples; then + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples + fi +} diff --git a/dev-python/reportlab/files/reportlab-3.5.13-pillow-VERSION.patch b/dev-python/reportlab/files/reportlab-3.5.13-pillow-VERSION.patch new file mode 100644 index 000000000000..3b2093d9a8c5 --- /dev/null +++ b/dev-python/reportlab/files/reportlab-3.5.13-pillow-VERSION.patch @@ -0,0 +1,17 @@ +--- a/src/reportlab/lib/utils.py ++++ b/src/reportlab/lib/utils.py +@@ -883,7 +883,13 @@ + im = self._image + mode = self.mode = im.mode + if mode in ('LA','RGBA'): +- if Image.VERSION.startswith('1.1.7'): im.load() ++ # Pillow 6.0.0 and above have removed the 'VERSION' attribute ++ # https://bitbucket.org/rptlab/reportlab/issues/176/incompatibility-with-pillow-600 ++ try: ++ im_ver = Image.__version__ ++ except AttributeError: ++ im_ver = Image.VERSION ++ if im_ver.startswith('1.1.7'): im.load() + self._dataA = ImageReader(im.split()[3 if mode=='RGBA' else 1]) + nm = mode[:-1] + im = im.convert(nm) diff --git a/dev-python/reportlab/reportlab-3.5.13.ebuild b/dev-python/reportlab/reportlab-3.5.13-r1.ebuild similarity index 96% rename from dev-python/reportlab/reportlab-3.5.13.ebuild rename to dev-python/reportlab/reportlab-3.5.13-r1.ebuild index 26d754790dd7..77800e21ecca 100644 --- a/dev-python/reportlab/reportlab-3.5.13.ebuild +++ b/dev-python/reportlab/reportlab-3.5.13-r1.ebuild @@ -29,6 +29,7 @@ DEPEND="${RDEPEND} PATCHES=( "${FILESDIR}/${PN}-3.5.13-disable-network-tests.patch" + "${FILESDIR}/${PN}-3.5.13-pillow-VERSION.patch" ) src_unpack() { diff --git a/dev-python/sparql-wrapper/Manifest b/dev-python/sparql-wrapper/Manifest index 22e4fc7012e3..3d85db7978a5 100644 --- a/dev-python/sparql-wrapper/Manifest +++ b/dev-python/sparql-wrapper/Manifest @@ -1,2 +1,3 @@ DIST SPARQLWrapper-1.7.6.tar.gz 26597 BLAKE2B ef98640257d06e1814d57812864b2fd23ccbf2bb2121e77b84e87b26f4daf9cac576dc005659a023ac318d7da4dfdf4b6f96ea30f159e12f444cbf7f93a7e97b SHA512 cbaafe8986f7da88efc383ee7e694559c9314244a03f616e5f2afd186205ad625fe0601a2316013add4c11621fc697aa6d4672f8bbabdc485c11e873ca6342cb DIST SPARQLWrapper-1.8.0.tar.gz 28775 BLAKE2B b8ef5d3e2d52f4e17c47a7a398d01037dac3f6b62722faf92b6b76f37f2ac7e242ebf3cdfa93788744f632e58caf95207d1c37c462639151e20db74a94f4d69f SHA512 bdfa3d5efc2deb8202a27e8a4770cb69ce57c1a71133788fe7acf8aa4cbc2d74024fd5f7fe5188a0fbebd399d31f62ca23d85f7ebae5562046b5b782311d8907 +DIST SPARQLWrapper-1.8.4.tar.gz 56757 BLAKE2B 1d181a4269d4d2eadfd860e014f31f9134b500d4df437ab548804166821c574cfaedbe011c6b24328a40296da88378205b45839d225ada2b4afc6ffe28360f2a SHA512 301fce7f58b369009a13988a11d782fce6362d73472811a07dc4d962062097b48470c573f5bd1dc337532db467e75936f9e89fcc64dde91930077ce4a1657179 diff --git a/dev-python/sparql-wrapper/sparql-wrapper-1.8.4.ebuild b/dev-python/sparql-wrapper/sparql-wrapper-1.8.4.ebuild new file mode 100644 index 000000000000..b228c3783258 --- /dev/null +++ b/dev-python/sparql-wrapper/sparql-wrapper-1.8.4.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python{2_7,3_{5,6,7}} ) + +inherit distutils-r1 + +MY_PN=SPARQLWrapper + +DESCRIPTION="Wrapper around a SPARQL service" +HOMEPAGE="https://pypi.org/project/SPARQLWrapper/" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz" + +LICENSE="W3C" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND=">=dev-python/rdflib-4[${PYTHON_USEDEP}]" + +S="${WORKDIR}/${MY_PN}-${PV}" diff --git a/dev-qt/Manifest.gz b/dev-qt/Manifest.gz index 21a03c0ddeb0..bf8bd65350bd 100644 Binary files a/dev-qt/Manifest.gz and b/dev-qt/Manifest.gz differ diff --git a/dev-qt/assistant/Manifest b/dev-qt/assistant/Manifest index 9ea6ff0a12ab..1e2498001d4f 100644 --- a/dev-qt/assistant/Manifest +++ b/dev-qt/assistant/Manifest @@ -1,2 +1,2 @@ DIST qttools-everywhere-src-5.11.3.tar.xz 9705920 BLAKE2B 1c44d914463cd2bb2e61652debbd4661822442e0fc02569d98c17e3898d6acdd7546fb978af4a3dfe4fd00d66cbd4424b794ee7e7a26460465503b03b5f9957a SHA512 f9604ef4c33892a429c4f7252892271888b64e087ce8e943308680628b8c3a033aa2ea6659e6210ac90e3404120f458c77f650f20fed13f4723ed3c03a598eaf -DIST qttools-everywhere-src-5.12.2.tar.xz 9808600 BLAKE2B 3c9a2b546d438c9de84f64f04531ea668759bcd85798342c23b936b531bae5dff3b232bfdb4eb938489bd5f113602780e3f4ac0f344982a4984db0f95b5a24c3 SHA512 bfc415d2764ecee50b5eb1b5641ac709ebeaf3cfbbc73bc431acab307b9fd3f056f093e6b4010e2f7802f5714b56564c39ebe9fc280ce514c175fb44e0a35b8c +DIST qttools-everywhere-src-5.12.3.tar.xz 9809196 BLAKE2B 8d0317dc70c1dc6fc7c125453d22bbaa7decd57f9ba0f7572cc1e27f9494ff3423b5be412bcbd2e841a1f9b7494dae9101b3ac9254c563c24f22492b3b6ec3c9 SHA512 d37c0e11a26a21aa60f29f3b17ddc9895385d848692956e4481e49003cbe9c227daf8fda1c40a2ab70ac8e7e56d3771c1b2964524589eb77ac1f2362c269162e diff --git a/dev-qt/assistant/assistant-5.12.2.ebuild b/dev-qt/assistant/assistant-5.12.3.ebuild similarity index 100% rename from dev-qt/assistant/assistant-5.12.2.ebuild rename to dev-qt/assistant/assistant-5.12.3.ebuild diff --git a/dev-qt/designer/Manifest b/dev-qt/designer/Manifest index 9ea6ff0a12ab..1e2498001d4f 100644 --- a/dev-qt/designer/Manifest +++ b/dev-qt/designer/Manifest @@ -1,2 +1,2 @@ DIST qttools-everywhere-src-5.11.3.tar.xz 9705920 BLAKE2B 1c44d914463cd2bb2e61652debbd4661822442e0fc02569d98c17e3898d6acdd7546fb978af4a3dfe4fd00d66cbd4424b794ee7e7a26460465503b03b5f9957a SHA512 f9604ef4c33892a429c4f7252892271888b64e087ce8e943308680628b8c3a033aa2ea6659e6210ac90e3404120f458c77f650f20fed13f4723ed3c03a598eaf -DIST qttools-everywhere-src-5.12.2.tar.xz 9808600 BLAKE2B 3c9a2b546d438c9de84f64f04531ea668759bcd85798342c23b936b531bae5dff3b232bfdb4eb938489bd5f113602780e3f4ac0f344982a4984db0f95b5a24c3 SHA512 bfc415d2764ecee50b5eb1b5641ac709ebeaf3cfbbc73bc431acab307b9fd3f056f093e6b4010e2f7802f5714b56564c39ebe9fc280ce514c175fb44e0a35b8c +DIST qttools-everywhere-src-5.12.3.tar.xz 9809196 BLAKE2B 8d0317dc70c1dc6fc7c125453d22bbaa7decd57f9ba0f7572cc1e27f9494ff3423b5be412bcbd2e841a1f9b7494dae9101b3ac9254c563c24f22492b3b6ec3c9 SHA512 d37c0e11a26a21aa60f29f3b17ddc9895385d848692956e4481e49003cbe9c227daf8fda1c40a2ab70ac8e7e56d3771c1b2964524589eb77ac1f2362c269162e diff --git a/dev-qt/designer/designer-5.12.2.ebuild b/dev-qt/designer/designer-5.12.3.ebuild similarity index 100% rename from dev-qt/designer/designer-5.12.2.ebuild rename to dev-qt/designer/designer-5.12.3.ebuild diff --git a/dev-qt/linguist-tools/Manifest b/dev-qt/linguist-tools/Manifest index 9ea6ff0a12ab..1e2498001d4f 100644 --- a/dev-qt/linguist-tools/Manifest +++ b/dev-qt/linguist-tools/Manifest @@ -1,2 +1,2 @@ DIST qttools-everywhere-src-5.11.3.tar.xz 9705920 BLAKE2B 1c44d914463cd2bb2e61652debbd4661822442e0fc02569d98c17e3898d6acdd7546fb978af4a3dfe4fd00d66cbd4424b794ee7e7a26460465503b03b5f9957a SHA512 f9604ef4c33892a429c4f7252892271888b64e087ce8e943308680628b8c3a033aa2ea6659e6210ac90e3404120f458c77f650f20fed13f4723ed3c03a598eaf -DIST qttools-everywhere-src-5.12.2.tar.xz 9808600 BLAKE2B 3c9a2b546d438c9de84f64f04531ea668759bcd85798342c23b936b531bae5dff3b232bfdb4eb938489bd5f113602780e3f4ac0f344982a4984db0f95b5a24c3 SHA512 bfc415d2764ecee50b5eb1b5641ac709ebeaf3cfbbc73bc431acab307b9fd3f056f093e6b4010e2f7802f5714b56564c39ebe9fc280ce514c175fb44e0a35b8c +DIST qttools-everywhere-src-5.12.3.tar.xz 9809196 BLAKE2B 8d0317dc70c1dc6fc7c125453d22bbaa7decd57f9ba0f7572cc1e27f9494ff3423b5be412bcbd2e841a1f9b7494dae9101b3ac9254c563c24f22492b3b6ec3c9 SHA512 d37c0e11a26a21aa60f29f3b17ddc9895385d848692956e4481e49003cbe9c227daf8fda1c40a2ab70ac8e7e56d3771c1b2964524589eb77ac1f2362c269162e diff --git a/dev-qt/linguist-tools/linguist-tools-5.12.2.ebuild b/dev-qt/linguist-tools/linguist-tools-5.12.3.ebuild similarity index 100% rename from dev-qt/linguist-tools/linguist-tools-5.12.2.ebuild rename to dev-qt/linguist-tools/linguist-tools-5.12.3.ebuild diff --git a/dev-qt/linguist/Manifest b/dev-qt/linguist/Manifest index 9ea6ff0a12ab..1e2498001d4f 100644 --- a/dev-qt/linguist/Manifest +++ b/dev-qt/linguist/Manifest @@ -1,2 +1,2 @@ DIST qttools-everywhere-src-5.11.3.tar.xz 9705920 BLAKE2B 1c44d914463cd2bb2e61652debbd4661822442e0fc02569d98c17e3898d6acdd7546fb978af4a3dfe4fd00d66cbd4424b794ee7e7a26460465503b03b5f9957a SHA512 f9604ef4c33892a429c4f7252892271888b64e087ce8e943308680628b8c3a033aa2ea6659e6210ac90e3404120f458c77f650f20fed13f4723ed3c03a598eaf -DIST qttools-everywhere-src-5.12.2.tar.xz 9808600 BLAKE2B 3c9a2b546d438c9de84f64f04531ea668759bcd85798342c23b936b531bae5dff3b232bfdb4eb938489bd5f113602780e3f4ac0f344982a4984db0f95b5a24c3 SHA512 bfc415d2764ecee50b5eb1b5641ac709ebeaf3cfbbc73bc431acab307b9fd3f056f093e6b4010e2f7802f5714b56564c39ebe9fc280ce514c175fb44e0a35b8c +DIST qttools-everywhere-src-5.12.3.tar.xz 9809196 BLAKE2B 8d0317dc70c1dc6fc7c125453d22bbaa7decd57f9ba0f7572cc1e27f9494ff3423b5be412bcbd2e841a1f9b7494dae9101b3ac9254c563c24f22492b3b6ec3c9 SHA512 d37c0e11a26a21aa60f29f3b17ddc9895385d848692956e4481e49003cbe9c227daf8fda1c40a2ab70ac8e7e56d3771c1b2964524589eb77ac1f2362c269162e diff --git a/dev-qt/linguist/linguist-5.12.2.ebuild b/dev-qt/linguist/linguist-5.12.3.ebuild similarity index 100% rename from dev-qt/linguist/linguist-5.12.2.ebuild rename to dev-qt/linguist/linguist-5.12.3.ebuild diff --git a/dev-qt/pixeltool/Manifest b/dev-qt/pixeltool/Manifest index 9ea6ff0a12ab..1e2498001d4f 100644 --- a/dev-qt/pixeltool/Manifest +++ b/dev-qt/pixeltool/Manifest @@ -1,2 +1,2 @@ DIST qttools-everywhere-src-5.11.3.tar.xz 9705920 BLAKE2B 1c44d914463cd2bb2e61652debbd4661822442e0fc02569d98c17e3898d6acdd7546fb978af4a3dfe4fd00d66cbd4424b794ee7e7a26460465503b03b5f9957a SHA512 f9604ef4c33892a429c4f7252892271888b64e087ce8e943308680628b8c3a033aa2ea6659e6210ac90e3404120f458c77f650f20fed13f4723ed3c03a598eaf -DIST qttools-everywhere-src-5.12.2.tar.xz 9808600 BLAKE2B 3c9a2b546d438c9de84f64f04531ea668759bcd85798342c23b936b531bae5dff3b232bfdb4eb938489bd5f113602780e3f4ac0f344982a4984db0f95b5a24c3 SHA512 bfc415d2764ecee50b5eb1b5641ac709ebeaf3cfbbc73bc431acab307b9fd3f056f093e6b4010e2f7802f5714b56564c39ebe9fc280ce514c175fb44e0a35b8c +DIST qttools-everywhere-src-5.12.3.tar.xz 9809196 BLAKE2B 8d0317dc70c1dc6fc7c125453d22bbaa7decd57f9ba0f7572cc1e27f9494ff3423b5be412bcbd2e841a1f9b7494dae9101b3ac9254c563c24f22492b3b6ec3c9 SHA512 d37c0e11a26a21aa60f29f3b17ddc9895385d848692956e4481e49003cbe9c227daf8fda1c40a2ab70ac8e7e56d3771c1b2964524589eb77ac1f2362c269162e diff --git a/dev-qt/pixeltool/pixeltool-5.12.2.ebuild b/dev-qt/pixeltool/pixeltool-5.12.3.ebuild similarity index 100% rename from dev-qt/pixeltool/pixeltool-5.12.2.ebuild rename to dev-qt/pixeltool/pixeltool-5.12.3.ebuild diff --git a/dev-qt/qdbus/Manifest b/dev-qt/qdbus/Manifest index 9ea6ff0a12ab..1e2498001d4f 100644 --- a/dev-qt/qdbus/Manifest +++ b/dev-qt/qdbus/Manifest @@ -1,2 +1,2 @@ DIST qttools-everywhere-src-5.11.3.tar.xz 9705920 BLAKE2B 1c44d914463cd2bb2e61652debbd4661822442e0fc02569d98c17e3898d6acdd7546fb978af4a3dfe4fd00d66cbd4424b794ee7e7a26460465503b03b5f9957a SHA512 f9604ef4c33892a429c4f7252892271888b64e087ce8e943308680628b8c3a033aa2ea6659e6210ac90e3404120f458c77f650f20fed13f4723ed3c03a598eaf -DIST qttools-everywhere-src-5.12.2.tar.xz 9808600 BLAKE2B 3c9a2b546d438c9de84f64f04531ea668759bcd85798342c23b936b531bae5dff3b232bfdb4eb938489bd5f113602780e3f4ac0f344982a4984db0f95b5a24c3 SHA512 bfc415d2764ecee50b5eb1b5641ac709ebeaf3cfbbc73bc431acab307b9fd3f056f093e6b4010e2f7802f5714b56564c39ebe9fc280ce514c175fb44e0a35b8c +DIST qttools-everywhere-src-5.12.3.tar.xz 9809196 BLAKE2B 8d0317dc70c1dc6fc7c125453d22bbaa7decd57f9ba0f7572cc1e27f9494ff3423b5be412bcbd2e841a1f9b7494dae9101b3ac9254c563c24f22492b3b6ec3c9 SHA512 d37c0e11a26a21aa60f29f3b17ddc9895385d848692956e4481e49003cbe9c227daf8fda1c40a2ab70ac8e7e56d3771c1b2964524589eb77ac1f2362c269162e diff --git a/dev-qt/qdbus/qdbus-5.12.2.ebuild b/dev-qt/qdbus/qdbus-5.12.3.ebuild similarity index 100% rename from dev-qt/qdbus/qdbus-5.12.2.ebuild rename to dev-qt/qdbus/qdbus-5.12.3.ebuild diff --git a/dev-qt/qdbusviewer/Manifest b/dev-qt/qdbusviewer/Manifest index 9ea6ff0a12ab..1e2498001d4f 100644 --- a/dev-qt/qdbusviewer/Manifest +++ b/dev-qt/qdbusviewer/Manifest @@ -1,2 +1,2 @@ DIST qttools-everywhere-src-5.11.3.tar.xz 9705920 BLAKE2B 1c44d914463cd2bb2e61652debbd4661822442e0fc02569d98c17e3898d6acdd7546fb978af4a3dfe4fd00d66cbd4424b794ee7e7a26460465503b03b5f9957a SHA512 f9604ef4c33892a429c4f7252892271888b64e087ce8e943308680628b8c3a033aa2ea6659e6210ac90e3404120f458c77f650f20fed13f4723ed3c03a598eaf -DIST qttools-everywhere-src-5.12.2.tar.xz 9808600 BLAKE2B 3c9a2b546d438c9de84f64f04531ea668759bcd85798342c23b936b531bae5dff3b232bfdb4eb938489bd5f113602780e3f4ac0f344982a4984db0f95b5a24c3 SHA512 bfc415d2764ecee50b5eb1b5641ac709ebeaf3cfbbc73bc431acab307b9fd3f056f093e6b4010e2f7802f5714b56564c39ebe9fc280ce514c175fb44e0a35b8c +DIST qttools-everywhere-src-5.12.3.tar.xz 9809196 BLAKE2B 8d0317dc70c1dc6fc7c125453d22bbaa7decd57f9ba0f7572cc1e27f9494ff3423b5be412bcbd2e841a1f9b7494dae9101b3ac9254c563c24f22492b3b6ec3c9 SHA512 d37c0e11a26a21aa60f29f3b17ddc9895385d848692956e4481e49003cbe9c227daf8fda1c40a2ab70ac8e7e56d3771c1b2964524589eb77ac1f2362c269162e diff --git a/dev-qt/qdbusviewer/qdbusviewer-5.12.2.ebuild b/dev-qt/qdbusviewer/qdbusviewer-5.12.3.ebuild similarity index 100% rename from dev-qt/qdbusviewer/qdbusviewer-5.12.2.ebuild rename to dev-qt/qdbusviewer/qdbusviewer-5.12.3.ebuild diff --git a/dev-qt/qdoc/Manifest b/dev-qt/qdoc/Manifest index 9ea6ff0a12ab..1e2498001d4f 100644 --- a/dev-qt/qdoc/Manifest +++ b/dev-qt/qdoc/Manifest @@ -1,2 +1,2 @@ DIST qttools-everywhere-src-5.11.3.tar.xz 9705920 BLAKE2B 1c44d914463cd2bb2e61652debbd4661822442e0fc02569d98c17e3898d6acdd7546fb978af4a3dfe4fd00d66cbd4424b794ee7e7a26460465503b03b5f9957a SHA512 f9604ef4c33892a429c4f7252892271888b64e087ce8e943308680628b8c3a033aa2ea6659e6210ac90e3404120f458c77f650f20fed13f4723ed3c03a598eaf -DIST qttools-everywhere-src-5.12.2.tar.xz 9808600 BLAKE2B 3c9a2b546d438c9de84f64f04531ea668759bcd85798342c23b936b531bae5dff3b232bfdb4eb938489bd5f113602780e3f4ac0f344982a4984db0f95b5a24c3 SHA512 bfc415d2764ecee50b5eb1b5641ac709ebeaf3cfbbc73bc431acab307b9fd3f056f093e6b4010e2f7802f5714b56564c39ebe9fc280ce514c175fb44e0a35b8c +DIST qttools-everywhere-src-5.12.3.tar.xz 9809196 BLAKE2B 8d0317dc70c1dc6fc7c125453d22bbaa7decd57f9ba0f7572cc1e27f9494ff3423b5be412bcbd2e841a1f9b7494dae9101b3ac9254c563c24f22492b3b6ec3c9 SHA512 d37c0e11a26a21aa60f29f3b17ddc9895385d848692956e4481e49003cbe9c227daf8fda1c40a2ab70ac8e7e56d3771c1b2964524589eb77ac1f2362c269162e diff --git a/dev-qt/qdoc/qdoc-5.12.2.ebuild b/dev-qt/qdoc/qdoc-5.12.3.ebuild similarity index 100% rename from dev-qt/qdoc/qdoc-5.12.2.ebuild rename to dev-qt/qdoc/qdoc-5.12.3.ebuild diff --git a/dev-qt/qt-docs/Manifest b/dev-qt/qt-docs/Manifest index f45666a04646..0aea29c2f7dc 100644 --- a/dev-qt/qt-docs/Manifest +++ b/dev-qt/qt-docs/Manifest @@ -6,11 +6,11 @@ DIST 5.11.3-0-201811291914qtscript-documentation.7z 722145 BLAKE2B 97abb8f938b07 DIST 5.11.3-0-201811291914qtscripttools-documentation.7z 88994 BLAKE2B 10d3593bd8261deefcb080b7602a24e2044e43d463a2cc2cef0a795d9fba3d307c3421d7cf07e238a8f7c129dbaccb713c2594bc8411a852fbf052ce4b796bd1 SHA512 29196525e15b3602ed38f03e02036c99fe1c2a2edb45a0c6f061e68c965d049e923ad4e8534c1580895e6b74d72f7f099e3c5771de61c229ec5812680b3b2a50 DIST 5.11.3-0-201811291914qtvirtualkeyboard-documentation.7z 1637961 BLAKE2B a4c46e635563a6f37c6184a93f8eb1aaa345052873a43bfaf805e3790847324298161229c07420e8665347b45797455cb6ef56cbfdf8240840ccf9e1e8e2982a SHA512 fc48123592a7502abc05f5c8ecfb33d12e041f3f278a1dbc27d3bc8653bb3e2464da89a8f14ef4bf07f786b80c26104dfcc89034a44f62a5810d4a01bf578c88 DIST 5.11.3-0-201811291914qtwebengine-documentation.7z 3654309 BLAKE2B abd0799f31f0f00af0faaa335ae821e68cbf7f90d0e2027c866bcf2a397fc57efa8a12556eb685d09cc4e65653af1e15946d7f9530b82de10bbe1c2d6ee5c606 SHA512 e61e3d410e39e78b02c7afd86877e7b3d3f18102d7cf07adecf420f84a991ee28edb98b5413b03f3f5248edd68eba33d4273630abd8f8c915c9761f7e8c9da3f -DIST 5.12.2-0-201903121945qt-everywhere-documentation.7z 253951223 BLAKE2B 52287043ea2f6d5a3b6f84e62404b63cdf3e012bfa1f72dc6c29035b73943fe2a0122418e376353d1c7852308cc73012bff65b001fd3ad6e12aa15aa41f1930c SHA512 e73b08c7abf5263948c86a159669e27924033b3814e6b334f3caa4ce991c0d36f47b562292051b81e9f8599342cf74f2682cf776316b8490a14c9babfa5f1914 -DIST 5.12.2-0-201903121945qtcharts-documentation.7z 9251529 BLAKE2B 492fc0dea63e1a40201a50f94a15b3d368b29d2dfb88bb15faf407c4ba20d2b5d01a8ed78dd662167619ae3669edd92629af96f4bcd4fbab58b9320153cc8e74 SHA512 15ea3cf5cf6e0dbcad8bc9088f0535d33a4c2fa888bad008bd2880f17bc6cf06e731bac3e24f1763c4cda36d2762cd0cf107083b454442d5b7285ae7e504c774 -DIST 5.12.2-0-201903121945qtdatavisualization-documentation.7z 8389636 BLAKE2B a552ac5c39603e3fa66795fed68b8c506ce655c6a16a08e82f358d3dac5df52803e38cdc84efe59fc64cef3a753662f996a3fd6f520c024f66cfeebac509ccd0 SHA512 b2a63743f9ff1f179673b0e7adfd38f891a8d9f7dafc0be7e992b02a71a1b687d81a19a98731d4f0c7b0301a334e05963a3797fd0f9442e4e1302e2403a2e1ce -DIST 5.12.2-0-201903121945qtnetworkauth-documentation.7z 300150 BLAKE2B 7af67f854ccdc25264b2056342f64a4205afba264fbb12bf74d38f2644fff96b2d078cc7760441da55d4ca69a20421eca419038b0a4955253b153154e963bc5b SHA512 a22b37368574309c32e75c10cfdfa1e9f733c23d98a906f759c3c41b56b0cabd639d97502c41ce45be0fc4aac31ed304cdcc5cfc0d95bcf6338ee26300251430 -DIST 5.12.2-0-201903121945qtscript-documentation.7z 723586 BLAKE2B 9dbfcb106a67682e6b6c88c4aa4f5cb8b09b3bd14c22354c63f9cc0891a4281d7cc5b7e2ae3074846b0053176f937ccec0b00e3558acc6e706003b76d2242d57 SHA512 b144b2ef90454ae3ceaef2061a5e327899febe99a8839fdb4fc9d34761956b018ded571b4b6ff694cee4f9e78af35d5df2127f8bb17af8b33a1298613d65cdee -DIST 5.12.2-0-201903121945qtscripttools-documentation.7z 90510 BLAKE2B f3ad3df305f3dc7e27c03b3c9b53245ee6053bab35295c646d6c40bf653bdeac4c6031453af5907793433a76d0f5a8b4f4a4384fbd1b0af136173029400ba348 SHA512 40331cda2546177889cc905320281030b9ad4424fd24d580b8b8295ebe5170f1b878b9bcca0cf2f5a7136956657e44ad26d9a8154c6a8d34a3eba08666a5ee2d -DIST 5.12.2-0-201903121945qtvirtualkeyboard-documentation.7z 2090229 BLAKE2B 8a16b7773975277e9b082dce7d53960eb2fb7a62d253f7c1722597a57c6e8c68809a49ca57a38551d0dcb947f382ef6422cb10389a996455694b579b97a09996 SHA512 52886b0242067cbb3d6aff34ddffa42c951d6d655dc27f4fbbc14c3f8494a4585688b18d4fe27fa1ed914c73d35bf1dbcfbe36abc42c4c528c05666795885ed5 -DIST 5.12.2-0-201903121945qtwebengine-documentation.7z 3830145 BLAKE2B 5ecd1b374e094cef993a3347736179721ad6220471affbe4ba182f1d158ba4825ef9823e3f182e1624f40b5208d3ae7f4141736394b372de29a07cc320f2b25d SHA512 149ffcf69fe5b3dbd71db49d6d68f05c880bb36ff7a66b1fe5845cbbcade17a548bb8c3c0a8efc1e550a25b77e50fd9c3d76748bf92bbb536d9634447b3ee14f +DIST 5.12.3-0-201904161302qt-everywhere-documentation.7z 253277235 BLAKE2B 22d39126b6eb56fea7959c903eae3b5779da7363761670d672240807240ebfdddbd8491afd9306a9925f5238971110d2358806fba35f31a2c75296a7fab25c61 SHA512 f0157a0fb84e592e8279a35e17ab1d7b5d238079dd85010aa99fc5bbe23058cf3bf94174dcad74a399aa6530b27da0afecf8fc5c1cbaea11b235d1a1795b3d4c +DIST 5.12.3-0-201904161302qtcharts-documentation.7z 9253655 BLAKE2B 3ff9ca18e71ca8f7ae1ac8bbdf60c88b993ddbb2710e38550d31ffd8dc0bd7e1c0888e1477a3e64379558abdc6274e62ca00cf98f2ac7488eaf5537dda34e77f SHA512 07e847e2dbe17ccf35798dcf743aa5e8555c94d7d33926bddb3fb7c4992210cba1689fd64daf1acb6dcfe4113055f2a8b8e8297f849d34b08fb0fdbdb0118d6b +DIST 5.12.3-0-201904161302qtdatavisualization-documentation.7z 8391743 BLAKE2B d3cf153425b907395f2ac47ee357dec7077d06a9976affd458465ffa0489a194daa1d50b89e9a533911e182f7ad4187624b6bd239dd949ff82943310f308e34c SHA512 7da7b4dc3dd22264c6eff430bd164b55525e1aea32fb58bbccb573c1c990d3f165ceaf2a7b0e1134c29babc5718af1cbea96b7d5cf2c03d3323eb69bb5114672 +DIST 5.12.3-0-201904161302qtnetworkauth-documentation.7z 300070 BLAKE2B ab76f313a77b41e01358248adbcebe456109a0b6f157e2ebd5d6c64754b09396755f057c52e4b399118adc8937d7ce777a1b97275a834d5a1366827a8f1cb3c1 SHA512 4e1e61c2d2e1cc60f4d49d97543f84bdc57c8d1fa9b3d46210d38063e5854f63f337b9f78c2ae58547899128e0e231cde8e69f47084590bd846613c2aad65a11 +DIST 5.12.3-0-201904161302qtscript-documentation.7z 723395 BLAKE2B 19fa5dae06f9596293f67240e0a3cf906e41bb0fb2925d236e912a292601660da320bec66eaa64de8291cc40a388847dde3769e8468483394ca6f0bbd04cd3ad SHA512 9aef28989ce9185d14c15db150060a39ef089a9872ddfadd801b4d2d425a35d09b8a5b5337164f6cb90fac19e3935f58bd28c4317427d063e8c298e48af92fa6 +DIST 5.12.3-0-201904161302qtscripttools-documentation.7z 90350 BLAKE2B 1c66f210f85449e5c69638d989905057c7fd0893746921891b262ea7c8439b25fd77c76413c7e5dbf4283a3779c12cc5bc08c03268aef0b0b228f908b9fe261b SHA512 e3a00e9046225599d1a46247815355f55bbc5b5124a90d6040ac94b13e7ecfed2808948182e48a0c3854bbaf05951fa6c6e1a50f397bd58f3e779d1090ca42d3 +DIST 5.12.3-0-201904161302qtvirtualkeyboard-documentation.7z 2090456 BLAKE2B 441efc066138c3a74ea51d23f277b7190a38111494d05446d32150b6e36868c110893e14c16d65394709e3dc24574ebecfbe877bce64c6cd44564799b783e30a SHA512 6707760c1139ee66bc294f8407ec43057aac02593aef939c9e03138cd3874f02d5523f31470ac0ca90e320187feb55a8f23dad8396a4d62026af651e23e7379b +DIST 5.12.3-0-201904161302qtwebengine-documentation.7z 3831360 BLAKE2B bf7277a93a56f6282c078665c7254266452d09f6495fd9dd8f22946d9fe55f774bdf012df15d43e258cdd0a38a49ba2dd3b350b150b2b480f5dda2ccf3f54eb0 SHA512 9102aa1392a6f87bf8be8e4ac212fca002c9a20cfdddfff0e7df7653781696cfd8d44edf52147b2e389796e05e7576c97bcb9f961c60979f8cd57fff974a965a diff --git a/dev-qt/qt-docs/qt-docs-5.12.2_p201903121945.ebuild b/dev-qt/qt-docs/qt-docs-5.12.3_p201904161302.ebuild similarity index 100% rename from dev-qt/qt-docs/qt-docs-5.12.2_p201903121945.ebuild rename to dev-qt/qt-docs/qt-docs-5.12.3_p201904161302.ebuild diff --git a/dev-qt/qt3d/Manifest b/dev-qt/qt3d/Manifest index 8e02e30a3ca8..eb6936299f8d 100644 --- a/dev-qt/qt3d/Manifest +++ b/dev-qt/qt3d/Manifest @@ -1,2 +1,2 @@ DIST qt3d-everywhere-src-5.11.3.tar.xz 84944236 BLAKE2B f1db5cdb569777603868081bd97b0c1b4e68bdb4ec51e133d1078e23796eadd25ecef73caa23872f264aab51ec4b7cfd1d2af087445a8f826c2659fdec5e1a5d SHA512 d75d9b9ddb456d8a0163b35e9417c313c56ca1332fd742cb9a682d3e9d6c68e8cc6603bd900f8c634baf79522a00c0ba9aa82ce3db3b65c4656fef2c71c908af -DIST qt3d-everywhere-src-5.12.2.tar.xz 84950848 BLAKE2B 26952e2e470a71d382c5cf932286d903367bc6735acb7d6240103debb50b196d94392b10ebc7288301f4076936d9fb74297b99a70ed6bbc8c785c494fbe3d0db SHA512 888752b7a7c45e5416382fa75d6f3e3f50b75a786ec7cf2806548dfcd9e7b6d116553f4ea666e98cdab85af9de6127b323c407cac299b507132944daa9b53729 +DIST qt3d-everywhere-src-5.12.3.tar.xz 84941692 BLAKE2B 245e62dad28fb6c5e75cbefb5153fb139c8b4114fdfebd6987f82b5b2b627614d1b444bcefa002d09dcdbbb6801cace6a9ae56eac99e26d15794ff04e75ea675 SHA512 679c2dbc60fc53c1c5469369f25244bd844c2e6e723a1b451f7cbb50bfa018e6fb715214e5a5df6fb32d7c7936bb6c99d85e299fe2b76344bcf774c93ed0acd0 diff --git a/dev-qt/qt3d/qt3d-5.12.2.ebuild b/dev-qt/qt3d/qt3d-5.12.3.ebuild similarity index 100% rename from dev-qt/qt3d/qt3d-5.12.2.ebuild rename to dev-qt/qt3d/qt3d-5.12.3.ebuild diff --git a/dev-qt/qtbluetooth/Manifest b/dev-qt/qtbluetooth/Manifest index 152a594d87f1..5806c7b3dd01 100644 --- a/dev-qt/qtbluetooth/Manifest +++ b/dev-qt/qtbluetooth/Manifest @@ -1,2 +1,2 @@ DIST qtconnectivity-everywhere-src-5.11.3.tar.xz 2729800 BLAKE2B 30c86277eb6f997b52bd6ee42d1c420bba88b78bd65e4bab6fb6c38b8d9d61e14da3ca0148f364b981636920452915dd4889a528276c711eeedea507ebfeb7e7 SHA512 e44f2438792733f633c2788e7bc1910e7fdd72af660137cba8aff37deb92c01253b3f4b5663e1bc381e63bcf7a4b469f2682f8c85e6885af423df3d4a5fb055a -DIST qtconnectivity-everywhere-src-5.12.2.tar.xz 2750052 BLAKE2B 2f09f0b3ca45a01a90bfc1a0beb624fc735ac26a9deb5782895279f43441ff318d189241eed5496c9c8a5fa819c5152723c40ab20bb283d4dcbddbe27376c675 SHA512 fc001570d2296df9c0535ed9b481e209ab7b8093b3ade04b4bed5bc61083cc8ccc0764dcadcfc8a7a3bba3538c8d44029d0d9ef0c6fc9aa647e2e4ff8b2d9050 +DIST qtconnectivity-everywhere-src-5.12.3.tar.xz 2750144 BLAKE2B 1c287d15713fc2155cb5b07517fdedf566a686601681efde84b096f8e052dc36a872a8c9d263d54ac38dee0c69b8966f877fd698144b5ef897ff290a50ee0aa5 SHA512 4da406d88c3cf216d53c524d3896f50b19dae124baec904233dbb67163a30a955dee29148b5f5b71c35cb28638912423bb1cf4d38c62aeefa7353bd29e97a269 diff --git a/dev-qt/qtbluetooth/qtbluetooth-5.12.2.ebuild b/dev-qt/qtbluetooth/qtbluetooth-5.12.3.ebuild similarity index 100% rename from dev-qt/qtbluetooth/qtbluetooth-5.12.2.ebuild rename to dev-qt/qtbluetooth/qtbluetooth-5.12.3.ebuild diff --git a/dev-qt/qtcharts/Manifest b/dev-qt/qtcharts/Manifest index ce93884426ca..afe0f6294929 100644 --- a/dev-qt/qtcharts/Manifest +++ b/dev-qt/qtcharts/Manifest @@ -1,2 +1,2 @@ DIST qtcharts-everywhere-src-5.11.3.tar.xz 4239348 BLAKE2B 4b601e466f6e9bf3c9f90ace35b4c698a51dda7a3be964fdb68928cce1d5bac95c83f6586656a61bc5c014ccd35bae8223c86503eab200036e466a0cd4bd7b21 SHA512 9fc639e210fee95356deaf564967435a6f29a0d2c4a5599ce271c1bd5e5e2300eb1ec4637f20034630a5cfacea9117ebfcd9ae7c2f3c55adf7f4dce34984bd39 -DIST qtcharts-everywhere-src-5.12.2.tar.xz 4242568 BLAKE2B 10f4974918bed9f6f3db62553f6206c40c3d1bf3427a02aa59858e54ca4bd1059f9135739ad2037d794e6507c1d71fcbfc79be571c16ef1997fd7146453c556f SHA512 dae38c553071ad5006948f0f355c1eadc32e4d860c565a61258fee9dc43f0fd940b265c80319a3b8869ea192030441fd1581907d1ec96f9b949ffd92ed2313d3 +DIST qtcharts-everywhere-src-5.12.3.tar.xz 4242512 BLAKE2B 5e2d2c5cb263aebefee409087176db55b31405dabf7e83d075c78482a7fe956394f8f2e3e6ff2f6a321dba2f7b867d35e95b0b2f1ec8ec832905f52952696ff0 SHA512 f5940589c7a2dc5fcd3484397613f13ab41311c8ffb70a3484e64dc5bad24e18c94c9ebbe6716c1ec7c81b7863113ebfdb593f2d194608b2e3fb0b0b5c9c9102 diff --git a/dev-qt/qtcharts/qtcharts-5.12.2.ebuild b/dev-qt/qtcharts/qtcharts-5.12.3.ebuild similarity index 100% rename from dev-qt/qtcharts/qtcharts-5.12.2.ebuild rename to dev-qt/qtcharts/qtcharts-5.12.3.ebuild diff --git a/dev-qt/qtconcurrent/Manifest b/dev-qt/qtconcurrent/Manifest index 31183700c849..2fb521e0e88f 100644 --- a/dev-qt/qtconcurrent/Manifest +++ b/dev-qt/qtconcurrent/Manifest @@ -1,2 +1,2 @@ DIST qtbase-everywhere-src-5.11.3.tar.xz 46997676 BLAKE2B a70089be5530dec0eedcd5ba990140b375261dea5c85ea7d1dbb5b0bd09ee23edbb4917851127686b5f3cac6969a284eb91ab075ebe53326e69e99e81b257da0 SHA512 93865e41c994211456a575b085c2e7491b7975a1c3b4deb48e9616b51104eb990c1fcfd53d5fb2146ba22457cb134e6254e9077ba73c8b4c4b4d1d525e66fb65 -DIST qtbase-everywhere-src-5.12.2.tar.xz 48364464 BLAKE2B 1743fc3e233ab5c204c4c88db61ede946fbb967ed69c47709ee071bf1b911ef79a6581ff9db6e6bdabb15202196614fbdce32521750e41898906100ae5259960 SHA512 6752ecc096f8baf8e14e56f0d1f139e8a0d75967ab61bf1734ad5f4f4609a7cc707ab080f5f85f2230bbbb1454a0669be60a14d57d9a93aef553ce6f85f71613 +DIST qtbase-everywhere-src-5.12.3.tar.xz 48382148 BLAKE2B 779c43a75403e0f21357a90228bbcc3f216495613f4f17a2f442c7aa93f277a79cc7addf5ae44e22964069580f4932cfd14ba4773aa0ab30405d5587577a545c SHA512 1dab927573eb22b1ae772de3a418f7d3999ea78d6e667a7f2494390dd1f0981ea93f4f892cb6e124ac18812c780ee71da3021b485c61eaf1ef2234a5c12b7fe2 diff --git a/dev-qt/qtconcurrent/qtconcurrent-5.12.2.ebuild b/dev-qt/qtconcurrent/qtconcurrent-5.12.3.ebuild similarity index 100% rename from dev-qt/qtconcurrent/qtconcurrent-5.12.2.ebuild rename to dev-qt/qtconcurrent/qtconcurrent-5.12.3.ebuild diff --git a/dev-qt/qtcore/Manifest b/dev-qt/qtcore/Manifest index 31183700c849..2fb521e0e88f 100644 --- a/dev-qt/qtcore/Manifest +++ b/dev-qt/qtcore/Manifest @@ -1,2 +1,2 @@ DIST qtbase-everywhere-src-5.11.3.tar.xz 46997676 BLAKE2B a70089be5530dec0eedcd5ba990140b375261dea5c85ea7d1dbb5b0bd09ee23edbb4917851127686b5f3cac6969a284eb91ab075ebe53326e69e99e81b257da0 SHA512 93865e41c994211456a575b085c2e7491b7975a1c3b4deb48e9616b51104eb990c1fcfd53d5fb2146ba22457cb134e6254e9077ba73c8b4c4b4d1d525e66fb65 -DIST qtbase-everywhere-src-5.12.2.tar.xz 48364464 BLAKE2B 1743fc3e233ab5c204c4c88db61ede946fbb967ed69c47709ee071bf1b911ef79a6581ff9db6e6bdabb15202196614fbdce32521750e41898906100ae5259960 SHA512 6752ecc096f8baf8e14e56f0d1f139e8a0d75967ab61bf1734ad5f4f4609a7cc707ab080f5f85f2230bbbb1454a0669be60a14d57d9a93aef553ce6f85f71613 +DIST qtbase-everywhere-src-5.12.3.tar.xz 48382148 BLAKE2B 779c43a75403e0f21357a90228bbcc3f216495613f4f17a2f442c7aa93f277a79cc7addf5ae44e22964069580f4932cfd14ba4773aa0ab30405d5587577a545c SHA512 1dab927573eb22b1ae772de3a418f7d3999ea78d6e667a7f2494390dd1f0981ea93f4f892cb6e124ac18812c780ee71da3021b485c61eaf1ef2234a5c12b7fe2 diff --git a/dev-qt/qtcore/qtcore-5.12.2.ebuild b/dev-qt/qtcore/qtcore-5.12.3.ebuild similarity index 100% rename from dev-qt/qtcore/qtcore-5.12.2.ebuild rename to dev-qt/qtcore/qtcore-5.12.3.ebuild diff --git a/dev-qt/qtdatavis3d/Manifest b/dev-qt/qtdatavis3d/Manifest index 747b6ebd1a1f..cfccc59a5a14 100644 --- a/dev-qt/qtdatavis3d/Manifest +++ b/dev-qt/qtdatavis3d/Manifest @@ -1,2 +1,2 @@ DIST qtdatavis3d-everywhere-src-5.11.3.tar.xz 5201492 BLAKE2B 6ccc679892b6e234075cad890823ce5b20c887479f306284c49b40672da54dddc1d65970e3771e05b48ea7acf3e031593c77f64ef32e52106506cf10281c6aa1 SHA512 6e672a7d07f197b86d7914d249078137ae247463c1da77ed01cedc71326e6e4009ecfc7cd59f2277c290ba1e3c84b741466f9feeae8391a11bb7fc458bd06aae -DIST qtdatavis3d-everywhere-src-5.12.2.tar.xz 5201424 BLAKE2B 34d67801d013775dcdfe177f95497368356b5114e4e41823f642d5127b542f27f93424dd758e04a22abd07723013dec512b958d7279a0292f9877b6fad60be6e SHA512 4d4f29d3e8f5db2ed49b0aa963b93f2a1f07a42204284c2abc1a698e2ccf16ea36dc8ff77aa452ce77d5242159334ae7b3df605b838a5271003f76bd3b78286f +DIST qtdatavis3d-everywhere-src-5.12.3.tar.xz 5200668 BLAKE2B bbcc3b21c9f604c16c862c7e7fe1b3a3d7f0d1f4b8a0da4b67e56d6912e377d1496f7a399a94cb697f117ae23123b3d6370b47c4cb7223ff8af1b584838c588a SHA512 cb295deb9aa33132294d7d7f4daaa53dd9ab4815e2d3a2c916d88e1882e018a49d8d66db9088f69375d8da759a3f3566f251802aaba82d74cad2eb45d9bbbcff diff --git a/dev-qt/qtdatavis3d/qtdatavis3d-5.12.2.ebuild b/dev-qt/qtdatavis3d/qtdatavis3d-5.12.3.ebuild similarity index 100% rename from dev-qt/qtdatavis3d/qtdatavis3d-5.12.2.ebuild rename to dev-qt/qtdatavis3d/qtdatavis3d-5.12.3.ebuild diff --git a/dev-qt/qtdbus/Manifest b/dev-qt/qtdbus/Manifest index 31183700c849..2fb521e0e88f 100644 --- a/dev-qt/qtdbus/Manifest +++ b/dev-qt/qtdbus/Manifest @@ -1,2 +1,2 @@ DIST qtbase-everywhere-src-5.11.3.tar.xz 46997676 BLAKE2B a70089be5530dec0eedcd5ba990140b375261dea5c85ea7d1dbb5b0bd09ee23edbb4917851127686b5f3cac6969a284eb91ab075ebe53326e69e99e81b257da0 SHA512 93865e41c994211456a575b085c2e7491b7975a1c3b4deb48e9616b51104eb990c1fcfd53d5fb2146ba22457cb134e6254e9077ba73c8b4c4b4d1d525e66fb65 -DIST qtbase-everywhere-src-5.12.2.tar.xz 48364464 BLAKE2B 1743fc3e233ab5c204c4c88db61ede946fbb967ed69c47709ee071bf1b911ef79a6581ff9db6e6bdabb15202196614fbdce32521750e41898906100ae5259960 SHA512 6752ecc096f8baf8e14e56f0d1f139e8a0d75967ab61bf1734ad5f4f4609a7cc707ab080f5f85f2230bbbb1454a0669be60a14d57d9a93aef553ce6f85f71613 +DIST qtbase-everywhere-src-5.12.3.tar.xz 48382148 BLAKE2B 779c43a75403e0f21357a90228bbcc3f216495613f4f17a2f442c7aa93f277a79cc7addf5ae44e22964069580f4932cfd14ba4773aa0ab30405d5587577a545c SHA512 1dab927573eb22b1ae772de3a418f7d3999ea78d6e667a7f2494390dd1f0981ea93f4f892cb6e124ac18812c780ee71da3021b485c61eaf1ef2234a5c12b7fe2 diff --git a/dev-qt/qtdbus/qtdbus-5.12.2.ebuild b/dev-qt/qtdbus/qtdbus-5.12.3.ebuild similarity index 100% rename from dev-qt/qtdbus/qtdbus-5.12.2.ebuild rename to dev-qt/qtdbus/qtdbus-5.12.3.ebuild diff --git a/dev-qt/qtdeclarative/Manifest b/dev-qt/qtdeclarative/Manifest index 2df599ac2924..a3b3783676f8 100644 --- a/dev-qt/qtdeclarative/Manifest +++ b/dev-qt/qtdeclarative/Manifest @@ -1,2 +1,2 @@ DIST qtdeclarative-everywhere-src-5.11.3.tar.xz 22233024 BLAKE2B e443e578091f6f2154f4dda4384b07ff510f92757e113f07e1a6cc9a95caf6dc7994b72b8816e8fb03893ed8180058ae887031af880218e43758b49c397f58e4 SHA512 07d440b10ba2fbd700a191791cb6991fb9ce72c78787340e7f564bdb2bef24b035e15fe2aecd36d58f8794e56bd0aa35d28b350a73707e27748e54d46609e1a0 -DIST qtdeclarative-everywhere-src-5.12.2.tar.xz 20496648 BLAKE2B fd09fce5cf21a48018ab20942f23283b58461a1e01e5192f8266bdad35adf539359059c92a0f5f7180e68ed92c6e941b88820094c3428820dccc382de04859f1 SHA512 0c0dd27acf452e72d70d214cf1960309a9282dc7f324214c734bb2e66e8f8279db0c3e0f61a431f6c70dc683467c2a17ad37b9c5d0aa75d7f82ae9d838918dd0 +DIST qtdeclarative-everywhere-src-5.12.3.tar.xz 20513544 BLAKE2B b6c622cb4728d54d0cf382a5a50af4652755ebd1f8e7ebc8bf07a5f3e3355931703ffa443be11dcf36a132b2f3eacb5fce150088209d173f2ca84bc387096026 SHA512 0caddcfee36cbf52bacd3a400d304511255715e2b5a58c1621ca8120610427c57511785457a9e7fa55975b86e7924a3cffddeb7e2e8e6622af85b7ebac35dd20 diff --git a/dev-qt/qtdeclarative/qtdeclarative-5.12.2.ebuild b/dev-qt/qtdeclarative/qtdeclarative-5.12.3.ebuild similarity index 96% rename from dev-qt/qtdeclarative/qtdeclarative-5.12.2.ebuild rename to dev-qt/qtdeclarative/qtdeclarative-5.12.3.ebuild index 81a80c72d4ff..b3c3411fbb0a 100644 --- a/dev-qt/qtdeclarative/qtdeclarative-5.12.2.ebuild +++ b/dev-qt/qtdeclarative/qtdeclarative-5.12.3.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -PYTHON_COMPAT=( python2_7 python3_{5,6,7} ) +PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} ) inherit python-any-r1 qt5-build DESCRIPTION="The QML and Quick modules for the Qt5 framework" diff --git a/dev-qt/qtdiag/Manifest b/dev-qt/qtdiag/Manifest index 9ea6ff0a12ab..1e2498001d4f 100644 --- a/dev-qt/qtdiag/Manifest +++ b/dev-qt/qtdiag/Manifest @@ -1,2 +1,2 @@ DIST qttools-everywhere-src-5.11.3.tar.xz 9705920 BLAKE2B 1c44d914463cd2bb2e61652debbd4661822442e0fc02569d98c17e3898d6acdd7546fb978af4a3dfe4fd00d66cbd4424b794ee7e7a26460465503b03b5f9957a SHA512 f9604ef4c33892a429c4f7252892271888b64e087ce8e943308680628b8c3a033aa2ea6659e6210ac90e3404120f458c77f650f20fed13f4723ed3c03a598eaf -DIST qttools-everywhere-src-5.12.2.tar.xz 9808600 BLAKE2B 3c9a2b546d438c9de84f64f04531ea668759bcd85798342c23b936b531bae5dff3b232bfdb4eb938489bd5f113602780e3f4ac0f344982a4984db0f95b5a24c3 SHA512 bfc415d2764ecee50b5eb1b5641ac709ebeaf3cfbbc73bc431acab307b9fd3f056f093e6b4010e2f7802f5714b56564c39ebe9fc280ce514c175fb44e0a35b8c +DIST qttools-everywhere-src-5.12.3.tar.xz 9809196 BLAKE2B 8d0317dc70c1dc6fc7c125453d22bbaa7decd57f9ba0f7572cc1e27f9494ff3423b5be412bcbd2e841a1f9b7494dae9101b3ac9254c563c24f22492b3b6ec3c9 SHA512 d37c0e11a26a21aa60f29f3b17ddc9895385d848692956e4481e49003cbe9c227daf8fda1c40a2ab70ac8e7e56d3771c1b2964524589eb77ac1f2362c269162e diff --git a/dev-qt/qtdiag/qtdiag-5.12.2.ebuild b/dev-qt/qtdiag/qtdiag-5.12.3.ebuild similarity index 100% rename from dev-qt/qtdiag/qtdiag-5.12.2.ebuild rename to dev-qt/qtdiag/qtdiag-5.12.3.ebuild diff --git a/dev-qt/qtgraphicaleffects/Manifest b/dev-qt/qtgraphicaleffects/Manifest index 865de52c7d51..dca3fd5ac409 100644 --- a/dev-qt/qtgraphicaleffects/Manifest +++ b/dev-qt/qtgraphicaleffects/Manifest @@ -1,2 +1,2 @@ DIST qtgraphicaleffects-everywhere-src-5.11.3.tar.xz 14267588 BLAKE2B 7f64c33505681de524af4dd97707ace7cbb371b15a500516afbabb4e61a13008b2e1c418f2500539ded2dcb4cea8e625c1fc029d92568e3c85aaad5562fe046d SHA512 c07072f7b32fd4e25f80318c48ae5a7dde82a0524ab37b174a5abeb36362e9e493570e2477c11bc4184ecf668a3879df8355fa0693a709f0a06224b41c144502 -DIST qtgraphicaleffects-everywhere-src-5.12.2.tar.xz 14271176 BLAKE2B 15b6985b4ab82adf2eddb72d46f3a3030bff9b1322af6e035f533d62f805b8f1c566a63f44d3084288748581b6c72d9e5c311301fb852e8037a2a3b149ce2c78 SHA512 13ed4d5fd6004cef408e2ab0fc815ff8187813efe3836c9bca0eedd550ab06df85e30978b0adab74b0075ef8262ae49f182263add00f33820456c44349ea75af +DIST qtgraphicaleffects-everywhere-src-5.12.3.tar.xz 14270884 BLAKE2B 2eae4d2ff7125e57685cbd7aa723e763462a9f5d466ea3b8890d4657ce960233868aa0ecddac37d2dba31a1845c5cab1a33f26ad31d8057067b079454cc7ae49 SHA512 3c5e6d7dc51a92d48cce8424ab1fe60ee75b71ebe2e6bb22e719a35bdaf2210b03f90ac066569f5c086ed67ed1463510625307328299310fad7c587e9fd8b385 diff --git a/dev-qt/qtgraphicaleffects/qtgraphicaleffects-5.12.2.ebuild b/dev-qt/qtgraphicaleffects/qtgraphicaleffects-5.12.3.ebuild similarity index 100% rename from dev-qt/qtgraphicaleffects/qtgraphicaleffects-5.12.2.ebuild rename to dev-qt/qtgraphicaleffects/qtgraphicaleffects-5.12.3.ebuild diff --git a/dev-qt/qtgui/Manifest b/dev-qt/qtgui/Manifest index 31183700c849..2fb521e0e88f 100644 --- a/dev-qt/qtgui/Manifest +++ b/dev-qt/qtgui/Manifest @@ -1,2 +1,2 @@ DIST qtbase-everywhere-src-5.11.3.tar.xz 46997676 BLAKE2B a70089be5530dec0eedcd5ba990140b375261dea5c85ea7d1dbb5b0bd09ee23edbb4917851127686b5f3cac6969a284eb91ab075ebe53326e69e99e81b257da0 SHA512 93865e41c994211456a575b085c2e7491b7975a1c3b4deb48e9616b51104eb990c1fcfd53d5fb2146ba22457cb134e6254e9077ba73c8b4c4b4d1d525e66fb65 -DIST qtbase-everywhere-src-5.12.2.tar.xz 48364464 BLAKE2B 1743fc3e233ab5c204c4c88db61ede946fbb967ed69c47709ee071bf1b911ef79a6581ff9db6e6bdabb15202196614fbdce32521750e41898906100ae5259960 SHA512 6752ecc096f8baf8e14e56f0d1f139e8a0d75967ab61bf1734ad5f4f4609a7cc707ab080f5f85f2230bbbb1454a0669be60a14d57d9a93aef553ce6f85f71613 +DIST qtbase-everywhere-src-5.12.3.tar.xz 48382148 BLAKE2B 779c43a75403e0f21357a90228bbcc3f216495613f4f17a2f442c7aa93f277a79cc7addf5ae44e22964069580f4932cfd14ba4773aa0ab30405d5587577a545c SHA512 1dab927573eb22b1ae772de3a418f7d3999ea78d6e667a7f2494390dd1f0981ea93f4f892cb6e124ac18812c780ee71da3021b485c61eaf1ef2234a5c12b7fe2 diff --git a/dev-qt/qtgui/qtgui-5.12.2.ebuild b/dev-qt/qtgui/qtgui-5.12.3-r1.ebuild similarity index 100% rename from dev-qt/qtgui/qtgui-5.12.2.ebuild rename to dev-qt/qtgui/qtgui-5.12.3-r1.ebuild diff --git a/dev-qt/qthelp/Manifest b/dev-qt/qthelp/Manifest index 9ea6ff0a12ab..1e2498001d4f 100644 --- a/dev-qt/qthelp/Manifest +++ b/dev-qt/qthelp/Manifest @@ -1,2 +1,2 @@ DIST qttools-everywhere-src-5.11.3.tar.xz 9705920 BLAKE2B 1c44d914463cd2bb2e61652debbd4661822442e0fc02569d98c17e3898d6acdd7546fb978af4a3dfe4fd00d66cbd4424b794ee7e7a26460465503b03b5f9957a SHA512 f9604ef4c33892a429c4f7252892271888b64e087ce8e943308680628b8c3a033aa2ea6659e6210ac90e3404120f458c77f650f20fed13f4723ed3c03a598eaf -DIST qttools-everywhere-src-5.12.2.tar.xz 9808600 BLAKE2B 3c9a2b546d438c9de84f64f04531ea668759bcd85798342c23b936b531bae5dff3b232bfdb4eb938489bd5f113602780e3f4ac0f344982a4984db0f95b5a24c3 SHA512 bfc415d2764ecee50b5eb1b5641ac709ebeaf3cfbbc73bc431acab307b9fd3f056f093e6b4010e2f7802f5714b56564c39ebe9fc280ce514c175fb44e0a35b8c +DIST qttools-everywhere-src-5.12.3.tar.xz 9809196 BLAKE2B 8d0317dc70c1dc6fc7c125453d22bbaa7decd57f9ba0f7572cc1e27f9494ff3423b5be412bcbd2e841a1f9b7494dae9101b3ac9254c563c24f22492b3b6ec3c9 SHA512 d37c0e11a26a21aa60f29f3b17ddc9895385d848692956e4481e49003cbe9c227daf8fda1c40a2ab70ac8e7e56d3771c1b2964524589eb77ac1f2362c269162e diff --git a/dev-qt/qthelp/qthelp-5.12.2.ebuild b/dev-qt/qthelp/qthelp-5.12.3.ebuild similarity index 100% rename from dev-qt/qthelp/qthelp-5.12.2.ebuild rename to dev-qt/qthelp/qthelp-5.12.3.ebuild diff --git a/dev-qt/qtimageformats/Manifest b/dev-qt/qtimageformats/Manifest index 50e91ca2bd5c..290c0f529726 100644 --- a/dev-qt/qtimageformats/Manifest +++ b/dev-qt/qtimageformats/Manifest @@ -1,2 +1,2 @@ DIST qtimageformats-everywhere-src-5.11.3.tar.xz 2197304 BLAKE2B 9041260c26b2ec5085a10c05a76dcab59941ae3d18475b93286028b9a4bbafc923795f6f0ec7a0e6b45cf95c21a37fbc76d0868cdbb6ed8891360310cce868b4 SHA512 5e2b83c2a7cc337ca0cc80e348ee41cfead3429245ec0aa18bdef945c85aa878ba684f5d410bca04d0183e0f6032a78b976ba89346043c0a49816c306d0235f7 -DIST qtimageformats-everywhere-src-5.12.2.tar.xz 1788388 BLAKE2B f3f614ccddb0e19b51051b2e1bef1c5bba00e10319f61afa5bbbbe0a3e35d4a70871cdeb1e5dd322f8fed1249801617a7a599682e8eab6dfb5f33e6f46063909 SHA512 fdfd1aeaa73a98e8736bfeb48d0670a206abb2080d83dbb3d54de228aa44c79c271f54cb68baa025644bfeb874ce4db3df04ddf8ea8a5e5f7b5e5562cc69e903 +DIST qtimageformats-everywhere-src-5.12.3.tar.xz 1793076 BLAKE2B 59dced7576a50441c704c8debf4a86bb4db7cfb752922020d2932ee2295805b27ece866f3f86e3f89b308e28cfb720fb9c6fa782f29f45e1c3b14fd733096c87 SHA512 59cc9df597e6ac31b10ff7440b0793af13ee84a1b363db631a7aeea7413e650a99a42e8c3f4633926ec93d4ac4c2532674ea27df325ba98132bea83c81d6e6cc diff --git a/dev-qt/qtimageformats/qtimageformats-5.12.2.ebuild b/dev-qt/qtimageformats/qtimageformats-5.12.3.ebuild similarity index 100% rename from dev-qt/qtimageformats/qtimageformats-5.12.2.ebuild rename to dev-qt/qtimageformats/qtimageformats-5.12.3.ebuild diff --git a/dev-qt/qtlocation/Manifest b/dev-qt/qtlocation/Manifest index 98c5c3d527a5..67bb96eecceb 100644 --- a/dev-qt/qtlocation/Manifest +++ b/dev-qt/qtlocation/Manifest @@ -1,2 +1,2 @@ DIST qtlocation-everywhere-src-5.11.3.tar.xz 5589440 BLAKE2B 544d90151fcbaf8a75d374e4acec9bbd78b63c2dee0258f1e08e18ffb94a86c91f63dd8c9215af96e3648d50a40fe6b66c105abec0ab6dd4473903a06f2d0253 SHA512 880cd6983bc0b4c5ac5a1edb2b3ffbe89f133bd819e4bea4fb8e91ba8d847ab80572743e3994145ee6697cb2fc24c393ac3c4ead847a022d848799eaa4982716 -DIST qtlocation-everywhere-src-5.12.2.tar.xz 5907108 BLAKE2B 3016921c6817414950ac3901252606cac844a385a604c46ee383817ef36d95c20641020dbc0c85d9dc2f647c18666aed3b51b5d55d003fe043377268734ab0c8 SHA512 1809c81cf6a916a8312ea449c178ec91f939d1bfc3bb21f3a1bd977a2be37fade1cf35bbe9253a8e6b8f4354cbdefcb67c071ff620254d5e95b9e35f7830eb79 +DIST qtlocation-everywhere-src-5.12.3.tar.xz 5905856 BLAKE2B b52b9eaea77b4b429db90768d97c7f4d1319c7a860e864acb5afc5c35c0b2c7425afe64909751b2063bad747fe3aa6d899b39532a72065d4cd87935219a196f1 SHA512 91b21e5bc78b960f15c60ae02827cd35292ab1a5dd5a47488d25ce6758177f0ce15545aef3ff9bd1456c6fd84f65cb74d385b726239e2f0be66de0f6fb9a7082 diff --git a/dev-qt/qtlocation/qtlocation-5.12.2.ebuild b/dev-qt/qtlocation/qtlocation-5.12.3.ebuild similarity index 100% rename from dev-qt/qtlocation/qtlocation-5.12.2.ebuild rename to dev-qt/qtlocation/qtlocation-5.12.3.ebuild diff --git a/dev-qt/qtmultimedia/Manifest b/dev-qt/qtmultimedia/Manifest index 1957bd914e53..fde0c94f864c 100644 --- a/dev-qt/qtmultimedia/Manifest +++ b/dev-qt/qtmultimedia/Manifest @@ -1,2 +1,2 @@ DIST qtmultimedia-everywhere-src-5.11.3.tar.xz 3710012 BLAKE2B b1757e80914a41913846dcb890fd56706b402aa0498cfa3e58277e8ab50e95c597df1b32dae11f146283d42c874ec03d8d33374447fc71f529c30d0e465c14cc SHA512 1c9b8f3392ac0c7e63a05d57fb74473a89edc9f2e482d8df97761ca20efd13bca2c1c68907ab4b4af71a109a783a641c2faaf72e7df90fcbed6bcd6e13350567 -DIST qtmultimedia-everywhere-src-5.12.2.tar.xz 3745076 BLAKE2B 76b68bbfb8b158803369ecf58bf85d54a50ad24a7988c2ef3e468f5e697b89601cb88efff60c97389f63f0004ef826ee8f357e70e44456df34096fd5c85c9a57 SHA512 3ee8e2f93f2a7a094e821f5b08fead32ee67bc0af7bd7eaadf2a40bbc12c774c62e4b9dc4f8526245e43530665156fd79f891243434d7c06da8c92401f3a9088 +DIST qtmultimedia-everywhere-src-5.12.3.tar.xz 3742244 BLAKE2B 65cc184c2625c998ec0f12d5d2f72401693521c9b5e1f27db342279724789e88e0bd6c6cb741ccf28939e8edbb657dde391ceb24ab0cb97c786c114e7e95743d SHA512 4f10e40aaf73dda2d70502e6a1441149c2b4389e9c7de72245c850d926c3ecb57ca6b09c63d208eff4b9ec63b7f9845eb2740cd0df4e4b7eee8f51746a6d3963 diff --git a/dev-qt/qtmultimedia/qtmultimedia-5.12.2.ebuild b/dev-qt/qtmultimedia/qtmultimedia-5.12.3.ebuild similarity index 100% rename from dev-qt/qtmultimedia/qtmultimedia-5.12.2.ebuild rename to dev-qt/qtmultimedia/qtmultimedia-5.12.3.ebuild diff --git a/dev-qt/qtnetwork/Manifest b/dev-qt/qtnetwork/Manifest index 31183700c849..2fb521e0e88f 100644 --- a/dev-qt/qtnetwork/Manifest +++ b/dev-qt/qtnetwork/Manifest @@ -1,2 +1,2 @@ DIST qtbase-everywhere-src-5.11.3.tar.xz 46997676 BLAKE2B a70089be5530dec0eedcd5ba990140b375261dea5c85ea7d1dbb5b0bd09ee23edbb4917851127686b5f3cac6969a284eb91ab075ebe53326e69e99e81b257da0 SHA512 93865e41c994211456a575b085c2e7491b7975a1c3b4deb48e9616b51104eb990c1fcfd53d5fb2146ba22457cb134e6254e9077ba73c8b4c4b4d1d525e66fb65 -DIST qtbase-everywhere-src-5.12.2.tar.xz 48364464 BLAKE2B 1743fc3e233ab5c204c4c88db61ede946fbb967ed69c47709ee071bf1b911ef79a6581ff9db6e6bdabb15202196614fbdce32521750e41898906100ae5259960 SHA512 6752ecc096f8baf8e14e56f0d1f139e8a0d75967ab61bf1734ad5f4f4609a7cc707ab080f5f85f2230bbbb1454a0669be60a14d57d9a93aef553ce6f85f71613 +DIST qtbase-everywhere-src-5.12.3.tar.xz 48382148 BLAKE2B 779c43a75403e0f21357a90228bbcc3f216495613f4f17a2f442c7aa93f277a79cc7addf5ae44e22964069580f4932cfd14ba4773aa0ab30405d5587577a545c SHA512 1dab927573eb22b1ae772de3a418f7d3999ea78d6e667a7f2494390dd1f0981ea93f4f892cb6e124ac18812c780ee71da3021b485c61eaf1ef2234a5c12b7fe2 diff --git a/dev-qt/qtnetwork/qtnetwork-5.12.2.ebuild b/dev-qt/qtnetwork/qtnetwork-5.12.3.ebuild similarity index 100% rename from dev-qt/qtnetwork/qtnetwork-5.12.2.ebuild rename to dev-qt/qtnetwork/qtnetwork-5.12.3.ebuild diff --git a/dev-qt/qtnetworkauth/Manifest b/dev-qt/qtnetworkauth/Manifest index ea2a62b2b737..ededc460b70d 100644 --- a/dev-qt/qtnetworkauth/Manifest +++ b/dev-qt/qtnetworkauth/Manifest @@ -1,2 +1,2 @@ DIST qtnetworkauth-everywhere-src-5.11.3.tar.xz 138740 BLAKE2B d8f5dee083314bf37984063a41944b537ddcef010f31d769429136e17c09e7be43cf8fe68e41ea0cf678018f744b7d896bc07798fd545e03594c1ffe0117788a SHA512 4d7dd27b869c9c3ee6fdc745c0532b2efb2b57f7d5447798bb2eeeb62002f856cc21b1169759baf33b060b2f1253feb9c9568dd28ed4bb41cd37aadf4a784a1c -DIST qtnetworkauth-everywhere-src-5.12.2.tar.xz 139104 BLAKE2B 9590bad832ec08a637f26ac8e39f407c19f1a1a66add1698bfefc06c6d2d4a4b7a8540dde3b5a0613eda172dcd4b75fd4b0b7312e7fc498b4753bc2bceff3aac SHA512 3574a41688763bb0bac55b608775bfcb66078820f876f5c63a0ab05fba04a6ad595f38fbd14815ae65bd9e1091133086cda21fcbe2f4ce59e03b870918a2020d +DIST qtnetworkauth-everywhere-src-5.12.3.tar.xz 139092 BLAKE2B ee8c09ce890010b0ff6424ea74210749fdd0b4ba42fafd0e372ed2719830ce073085f1d5a8d5fbfbb98901f84cd81b105483f310ff6ff056f16430eef6ea1a5c SHA512 07bf159360fe126c23387c6ed5b955218771ac37848ddb83542733c786b415f9aa5c22fd4a965fff591869d2d819bba420b69718e487df3cce382f411f493142 diff --git a/dev-qt/qtnetworkauth/qtnetworkauth-5.12.2.ebuild b/dev-qt/qtnetworkauth/qtnetworkauth-5.12.3.ebuild similarity index 100% rename from dev-qt/qtnetworkauth/qtnetworkauth-5.12.2.ebuild rename to dev-qt/qtnetworkauth/qtnetworkauth-5.12.3.ebuild diff --git a/dev-qt/qtopengl/Manifest b/dev-qt/qtopengl/Manifest index 31183700c849..2fb521e0e88f 100644 --- a/dev-qt/qtopengl/Manifest +++ b/dev-qt/qtopengl/Manifest @@ -1,2 +1,2 @@ DIST qtbase-everywhere-src-5.11.3.tar.xz 46997676 BLAKE2B a70089be5530dec0eedcd5ba990140b375261dea5c85ea7d1dbb5b0bd09ee23edbb4917851127686b5f3cac6969a284eb91ab075ebe53326e69e99e81b257da0 SHA512 93865e41c994211456a575b085c2e7491b7975a1c3b4deb48e9616b51104eb990c1fcfd53d5fb2146ba22457cb134e6254e9077ba73c8b4c4b4d1d525e66fb65 -DIST qtbase-everywhere-src-5.12.2.tar.xz 48364464 BLAKE2B 1743fc3e233ab5c204c4c88db61ede946fbb967ed69c47709ee071bf1b911ef79a6581ff9db6e6bdabb15202196614fbdce32521750e41898906100ae5259960 SHA512 6752ecc096f8baf8e14e56f0d1f139e8a0d75967ab61bf1734ad5f4f4609a7cc707ab080f5f85f2230bbbb1454a0669be60a14d57d9a93aef553ce6f85f71613 +DIST qtbase-everywhere-src-5.12.3.tar.xz 48382148 BLAKE2B 779c43a75403e0f21357a90228bbcc3f216495613f4f17a2f442c7aa93f277a79cc7addf5ae44e22964069580f4932cfd14ba4773aa0ab30405d5587577a545c SHA512 1dab927573eb22b1ae772de3a418f7d3999ea78d6e667a7f2494390dd1f0981ea93f4f892cb6e124ac18812c780ee71da3021b485c61eaf1ef2234a5c12b7fe2 diff --git a/dev-qt/qtopengl/qtopengl-5.12.2.ebuild b/dev-qt/qtopengl/qtopengl-5.12.3.ebuild similarity index 100% rename from dev-qt/qtopengl/qtopengl-5.12.2.ebuild rename to dev-qt/qtopengl/qtopengl-5.12.3.ebuild diff --git a/dev-qt/qtpaths/Manifest b/dev-qt/qtpaths/Manifest index 9ea6ff0a12ab..1e2498001d4f 100644 --- a/dev-qt/qtpaths/Manifest +++ b/dev-qt/qtpaths/Manifest @@ -1,2 +1,2 @@ DIST qttools-everywhere-src-5.11.3.tar.xz 9705920 BLAKE2B 1c44d914463cd2bb2e61652debbd4661822442e0fc02569d98c17e3898d6acdd7546fb978af4a3dfe4fd00d66cbd4424b794ee7e7a26460465503b03b5f9957a SHA512 f9604ef4c33892a429c4f7252892271888b64e087ce8e943308680628b8c3a033aa2ea6659e6210ac90e3404120f458c77f650f20fed13f4723ed3c03a598eaf -DIST qttools-everywhere-src-5.12.2.tar.xz 9808600 BLAKE2B 3c9a2b546d438c9de84f64f04531ea668759bcd85798342c23b936b531bae5dff3b232bfdb4eb938489bd5f113602780e3f4ac0f344982a4984db0f95b5a24c3 SHA512 bfc415d2764ecee50b5eb1b5641ac709ebeaf3cfbbc73bc431acab307b9fd3f056f093e6b4010e2f7802f5714b56564c39ebe9fc280ce514c175fb44e0a35b8c +DIST qttools-everywhere-src-5.12.3.tar.xz 9809196 BLAKE2B 8d0317dc70c1dc6fc7c125453d22bbaa7decd57f9ba0f7572cc1e27f9494ff3423b5be412bcbd2e841a1f9b7494dae9101b3ac9254c563c24f22492b3b6ec3c9 SHA512 d37c0e11a26a21aa60f29f3b17ddc9895385d848692956e4481e49003cbe9c227daf8fda1c40a2ab70ac8e7e56d3771c1b2964524589eb77ac1f2362c269162e diff --git a/dev-qt/qtpaths/qtpaths-5.12.2.ebuild b/dev-qt/qtpaths/qtpaths-5.12.3.ebuild similarity index 100% rename from dev-qt/qtpaths/qtpaths-5.12.2.ebuild rename to dev-qt/qtpaths/qtpaths-5.12.3.ebuild diff --git a/dev-qt/qtplugininfo/Manifest b/dev-qt/qtplugininfo/Manifest index 9ea6ff0a12ab..1e2498001d4f 100644 --- a/dev-qt/qtplugininfo/Manifest +++ b/dev-qt/qtplugininfo/Manifest @@ -1,2 +1,2 @@ DIST qttools-everywhere-src-5.11.3.tar.xz 9705920 BLAKE2B 1c44d914463cd2bb2e61652debbd4661822442e0fc02569d98c17e3898d6acdd7546fb978af4a3dfe4fd00d66cbd4424b794ee7e7a26460465503b03b5f9957a SHA512 f9604ef4c33892a429c4f7252892271888b64e087ce8e943308680628b8c3a033aa2ea6659e6210ac90e3404120f458c77f650f20fed13f4723ed3c03a598eaf -DIST qttools-everywhere-src-5.12.2.tar.xz 9808600 BLAKE2B 3c9a2b546d438c9de84f64f04531ea668759bcd85798342c23b936b531bae5dff3b232bfdb4eb938489bd5f113602780e3f4ac0f344982a4984db0f95b5a24c3 SHA512 bfc415d2764ecee50b5eb1b5641ac709ebeaf3cfbbc73bc431acab307b9fd3f056f093e6b4010e2f7802f5714b56564c39ebe9fc280ce514c175fb44e0a35b8c +DIST qttools-everywhere-src-5.12.3.tar.xz 9809196 BLAKE2B 8d0317dc70c1dc6fc7c125453d22bbaa7decd57f9ba0f7572cc1e27f9494ff3423b5be412bcbd2e841a1f9b7494dae9101b3ac9254c563c24f22492b3b6ec3c9 SHA512 d37c0e11a26a21aa60f29f3b17ddc9895385d848692956e4481e49003cbe9c227daf8fda1c40a2ab70ac8e7e56d3771c1b2964524589eb77ac1f2362c269162e diff --git a/dev-qt/qtplugininfo/qtplugininfo-5.12.2.ebuild b/dev-qt/qtplugininfo/qtplugininfo-5.12.3.ebuild similarity index 100% rename from dev-qt/qtplugininfo/qtplugininfo-5.12.2.ebuild rename to dev-qt/qtplugininfo/qtplugininfo-5.12.3.ebuild diff --git a/dev-qt/qtpositioning/Manifest b/dev-qt/qtpositioning/Manifest index d4644b8c5b8f..bbcbe9ffaaac 100644 --- a/dev-qt/qtpositioning/Manifest +++ b/dev-qt/qtpositioning/Manifest @@ -1,3 +1,3 @@ DIST qtlocation-5.11.3-geoclue2.tar.xz 7556 BLAKE2B 2648b2e8aa8dadad467c7a3ea352014ca832021b12af0e11c563e328d4b6321df8d2784744437e9348feda1ed443c0e56882491b1811e734d43b036e6b5e7c16 SHA512 226ae607b4a0d55ed3207a19932ed685a44e688c6b27407d576fac73e29be478ac3d3b06d93a3bd594ee6443648a9c86b9746366e6765451080af4c1b2ee4264 DIST qtlocation-everywhere-src-5.11.3.tar.xz 5589440 BLAKE2B 544d90151fcbaf8a75d374e4acec9bbd78b63c2dee0258f1e08e18ffb94a86c91f63dd8c9215af96e3648d50a40fe6b66c105abec0ab6dd4473903a06f2d0253 SHA512 880cd6983bc0b4c5ac5a1edb2b3ffbe89f133bd819e4bea4fb8e91ba8d847ab80572743e3994145ee6697cb2fc24c393ac3c4ead847a022d848799eaa4982716 -DIST qtlocation-everywhere-src-5.12.2.tar.xz 5907108 BLAKE2B 3016921c6817414950ac3901252606cac844a385a604c46ee383817ef36d95c20641020dbc0c85d9dc2f647c18666aed3b51b5d55d003fe043377268734ab0c8 SHA512 1809c81cf6a916a8312ea449c178ec91f939d1bfc3bb21f3a1bd977a2be37fade1cf35bbe9253a8e6b8f4354cbdefcb67c071ff620254d5e95b9e35f7830eb79 +DIST qtlocation-everywhere-src-5.12.3.tar.xz 5905856 BLAKE2B b52b9eaea77b4b429db90768d97c7f4d1319c7a860e864acb5afc5c35c0b2c7425afe64909751b2063bad747fe3aa6d899b39532a72065d4cd87935219a196f1 SHA512 91b21e5bc78b960f15c60ae02827cd35292ab1a5dd5a47488d25ce6758177f0ce15545aef3ff9bd1456c6fd84f65cb74d385b726239e2f0be66de0f6fb9a7082 diff --git a/dev-qt/qtpositioning/qtpositioning-5.12.2.ebuild b/dev-qt/qtpositioning/qtpositioning-5.12.3.ebuild similarity index 100% rename from dev-qt/qtpositioning/qtpositioning-5.12.2.ebuild rename to dev-qt/qtpositioning/qtpositioning-5.12.3.ebuild diff --git a/dev-qt/qtprintsupport/Manifest b/dev-qt/qtprintsupport/Manifest index 31183700c849..2fb521e0e88f 100644 --- a/dev-qt/qtprintsupport/Manifest +++ b/dev-qt/qtprintsupport/Manifest @@ -1,2 +1,2 @@ DIST qtbase-everywhere-src-5.11.3.tar.xz 46997676 BLAKE2B a70089be5530dec0eedcd5ba990140b375261dea5c85ea7d1dbb5b0bd09ee23edbb4917851127686b5f3cac6969a284eb91ab075ebe53326e69e99e81b257da0 SHA512 93865e41c994211456a575b085c2e7491b7975a1c3b4deb48e9616b51104eb990c1fcfd53d5fb2146ba22457cb134e6254e9077ba73c8b4c4b4d1d525e66fb65 -DIST qtbase-everywhere-src-5.12.2.tar.xz 48364464 BLAKE2B 1743fc3e233ab5c204c4c88db61ede946fbb967ed69c47709ee071bf1b911ef79a6581ff9db6e6bdabb15202196614fbdce32521750e41898906100ae5259960 SHA512 6752ecc096f8baf8e14e56f0d1f139e8a0d75967ab61bf1734ad5f4f4609a7cc707ab080f5f85f2230bbbb1454a0669be60a14d57d9a93aef553ce6f85f71613 +DIST qtbase-everywhere-src-5.12.3.tar.xz 48382148 BLAKE2B 779c43a75403e0f21357a90228bbcc3f216495613f4f17a2f442c7aa93f277a79cc7addf5ae44e22964069580f4932cfd14ba4773aa0ab30405d5587577a545c SHA512 1dab927573eb22b1ae772de3a418f7d3999ea78d6e667a7f2494390dd1f0981ea93f4f892cb6e124ac18812c780ee71da3021b485c61eaf1ef2234a5c12b7fe2 diff --git a/dev-qt/qtprintsupport/qtprintsupport-5.12.2.ebuild b/dev-qt/qtprintsupport/qtprintsupport-5.12.3.ebuild similarity index 100% rename from dev-qt/qtprintsupport/qtprintsupport-5.12.2.ebuild rename to dev-qt/qtprintsupport/qtprintsupport-5.12.3.ebuild diff --git a/dev-qt/qtquickcontrols/Manifest b/dev-qt/qtquickcontrols/Manifest index 60804da93df1..51524d85365a 100644 --- a/dev-qt/qtquickcontrols/Manifest +++ b/dev-qt/qtquickcontrols/Manifest @@ -1,2 +1,2 @@ DIST qtquickcontrols-everywhere-src-5.11.3.tar.xz 6053336 BLAKE2B 304fbc5e0028f49662dd077349a28ef974470aa4e4389d633a409b6a756c24a730a675b774429246e1923fa1ff3f6b33b8cea75e588c58c55232519c4af45500 SHA512 359a2509e35240b50dea06e7197ce974a92a7f4fe902b7f6c40b087945eaa8faa0395d3d35a6c79c3a5bc75fadc75688d36338086ac67bf2ab8be795a60905b7 -DIST qtquickcontrols-everywhere-src-5.12.2.tar.xz 6054972 BLAKE2B 923583d954296c0ecf5c29d0b8aafe183542a40c03b4ff1f2b3c02da38ef020da7666c17e57f1c246a8d17331ed181fbed7c658d64abb04cdebd25e8c1eee48d SHA512 4ff3da74039de6106106f50752943765dd89f7ed0ecc15b95af1ca66bdce104f0a34aac6a870ee38bbaed0447449b73fbfd360d019f9e41d14af96d691ec8149 +DIST qtquickcontrols-everywhere-src-5.12.3.tar.xz 6057512 BLAKE2B ebe1f4a431cd58891c8550ac1e50992d290c18df54b6710912397f6856ada50f8807cb52d0fbe43f376d187ba6c3f53a0b826babe10fded480d4088bf842f566 SHA512 23410fb82088591a8bed7e8e4127d13929a03adc0dfd18f7e2f906acdac21f7dcbb15cb2257272b893d937bbb54860992667c11aa0c6157d4a3b871616c4641c diff --git a/dev-qt/qtquickcontrols/qtquickcontrols-5.12.2.ebuild b/dev-qt/qtquickcontrols/qtquickcontrols-5.12.3.ebuild similarity index 100% rename from dev-qt/qtquickcontrols/qtquickcontrols-5.12.2.ebuild rename to dev-qt/qtquickcontrols/qtquickcontrols-5.12.3.ebuild diff --git a/dev-qt/qtquickcontrols2/Manifest b/dev-qt/qtquickcontrols2/Manifest index 49a249c10144..cec432d3cd3d 100644 --- a/dev-qt/qtquickcontrols2/Manifest +++ b/dev-qt/qtquickcontrols2/Manifest @@ -1,2 +1,2 @@ DIST qtquickcontrols2-everywhere-src-5.11.3.tar.xz 9042632 BLAKE2B fa057831927bc429f2f3b906165d8fb4299d8fc260f35578c7ab5e68a99056a50848d110f337cd2440d443f123c7aff779a57990bb8232319eb1e9c8b1e91dba SHA512 b0591ac1f6948dfea2b43691f8dc5187a4d68142c61279fcc4387e7e9ea9ac1f4062d93d4adc4f8de28a39ab86a5d035f72f0c7eacb93050f2c002d7a0fc2caa -DIST qtquickcontrols2-everywhere-src-5.12.2.tar.xz 9291844 BLAKE2B e60c6b957705bbb772b2b4eafd6fe671bd44472e75de6b1fd5fdd0fc24be4c8518745230c6c69aa2ec804ed4eedc9443e57d1804bca69f8c6a2006753d744ea3 SHA512 ec8648a75f72425ebbf67ebf974c0c6aa2e94fe409c0a030fc36a8cbdaab68157aa12454ae9f0e723474a21d0b661a32cf971ac494e718859d36679bb9b43735 +DIST qtquickcontrols2-everywhere-src-5.12.3.tar.xz 9297300 BLAKE2B 53ec7eb16cdbc77d60316dfebd47f0372ce90bc9781dcdb1f0b9360774379138cf3483b52ebae9598bebf7460b300b388663fe35292264007d1f240ccf2bbff6 SHA512 afc1ae9a5a046845b085d5cf0019b79d99914a2d285676bd4d8966f1302513078c8279b71134281c03b2c1209295bca438b9e255774574520498b0b5385bad27 diff --git a/dev-qt/qtquickcontrols2/qtquickcontrols2-5.12.2.ebuild b/dev-qt/qtquickcontrols2/qtquickcontrols2-5.12.3.ebuild similarity index 100% rename from dev-qt/qtquickcontrols2/qtquickcontrols2-5.12.2.ebuild rename to dev-qt/qtquickcontrols2/qtquickcontrols2-5.12.3.ebuild diff --git a/dev-qt/qtscript/Manifest b/dev-qt/qtscript/Manifest index 5863cbc83700..e4c045b2ace4 100644 --- a/dev-qt/qtscript/Manifest +++ b/dev-qt/qtscript/Manifest @@ -1,2 +1,2 @@ DIST qtscript-everywhere-src-5.11.3.tar.xz 2674692 BLAKE2B d209df1f632b9a00973eb043660c8a4a5e5c178fabd3bc715f91b37b781ea3567ea6fd7a2a12d462a63fb858c98a2e3ae703e8d7297a37c5d0dcc81d2f972d9e SHA512 987f9a13a698e3f498ea7408f4a9b2379969e901aa6b672ab2733af9d65fe79dd27af5f67aff5d7ab1903b5889c82359970ac81cf27f1eb2bad1e36eaa376b30 -DIST qtscript-everywhere-src-5.12.2.tar.xz 2673104 BLAKE2B d96aa1d4e1d5150e3ac07919b6eabc7bac55d879141d20df865f7bbb03b2e1a18eef442de0a5b6f52216e69ca0d66f5648ae427f6b934e0de4ce107b8534d811 SHA512 fe0bfb05142c53164ef05a8a8407c3647f541d9c1fba5f20f230ac811e954a3576e60997291d4c60aa52c896d2bb0b0b031644cc53ed755440649a4148b9fc0b +DIST qtscript-everywhere-src-5.12.3.tar.xz 2674896 BLAKE2B 9f655989505c288d22c9d961e79227cee84ce4d91f6a61b7038e3b993da6f610c3703ad24b2146931c7d46b1765b60f73af8adea6d55823d0b973a99b61adac8 SHA512 4c4498acb39536bdc03643fb1717c7a47c82b1734cf67d17d40bc216084f01e837648d261f7f69e317387f9c6efa9aaa6b0df8f5532f55615252c95b1089ca1a diff --git a/dev-qt/qtscript/qtscript-5.12.2.ebuild b/dev-qt/qtscript/qtscript-5.12.3.ebuild similarity index 100% rename from dev-qt/qtscript/qtscript-5.12.2.ebuild rename to dev-qt/qtscript/qtscript-5.12.3.ebuild diff --git a/dev-qt/qtscxml/Manifest b/dev-qt/qtscxml/Manifest index dabec49b1eaf..116209fa4a41 100644 --- a/dev-qt/qtscxml/Manifest +++ b/dev-qt/qtscxml/Manifest @@ -1,2 +1,2 @@ DIST qtscxml-everywhere-src-5.11.3.tar.xz 433500 BLAKE2B 7d7d961d2ec8e91dfb6e359ee3cde840094ac22f71745998b262e5a1d489f38f561ad163e36173c7758618213970bcc80a2f327cccb7e80d9b89dbf7ee0d8ecf SHA512 d162da8c11a24b764b793e446a9c1ce91068296e8f79525a874420fc97f0a9748ebef84f0fc0d615b6603025a3d8897f0ef14bcdcd95209f518d691dd457a93e -DIST qtscxml-everywhere-src-5.12.2.tar.xz 434184 BLAKE2B ca0e5911ab12ca07059bc7fd0c0b909f6d3ac29951ee1f4dc933732f17ecf9f86e65475efce7083f18039ea43ac959cd2d3a4ab981021c7295b7986326abb4b9 SHA512 229044c4bacefa8ef40e2c98d341097978b78647e8c8eb67471aba18e5b4151ca066afd24f5af3ee6721c14f4515639ffb61456282ad6287f6dac7047c236d11 +DIST qtscxml-everywhere-src-5.12.3.tar.xz 434176 BLAKE2B 8059a28cbd642089408077064bdb0df3d7018872c711283e11a1ca194b7c89d370bf54cbded67feba635c0190f52aaa96f75e6f63362b6af0c62f06246b439c4 SHA512 d515506d90ace5eedfe8bf3439dad0853dbbdbd36dfb509dfa13e3358838353de66d5f6245afe4eeebd19dd3f0ab0ce5e4c3e6fe5d40e5ab46763c453a562a49 diff --git a/dev-qt/qtscxml/qtscxml-5.12.2.ebuild b/dev-qt/qtscxml/qtscxml-5.12.3.ebuild similarity index 100% rename from dev-qt/qtscxml/qtscxml-5.12.2.ebuild rename to dev-qt/qtscxml/qtscxml-5.12.3.ebuild diff --git a/dev-qt/qtsensors/Manifest b/dev-qt/qtsensors/Manifest index 520a3409fb00..35c136aa9201 100644 --- a/dev-qt/qtsensors/Manifest +++ b/dev-qt/qtsensors/Manifest @@ -1,2 +1,2 @@ DIST qtsensors-everywhere-src-5.11.3.tar.xz 2031168 BLAKE2B 089c77403a615dc1448646c5ef73807ad78242840569dc20367afc379aeff6aa8d925896c549568a3af913c5458a0b9e05245fa45523cccf1c89d6e3675edf90 SHA512 b0eae65b31be1c96870d29066c79b170f1f825615a78de902173f64a6d0f132678c5bf26d0033e110dce3ed3f2b99750a3b4cf23e1c13f799a9e51a6cacab10b -DIST qtsensors-everywhere-src-5.12.2.tar.xz 2036148 BLAKE2B c7d4deb5ad0d2bae0f83d9827ba54a17e1a51e74482dc6fa0df0643b6ca679290a54be9e502c35814669e37ab2cfab8041d27a547130dbbb55c9c97e00be7342 SHA512 1a64342c310fa52f04485d8f81997517f03f0f5622480b7d997ce9678feb70c67d6f7c9eb206af1ee3c51d29a44cc82bd3b8e667cccb79c953030bb0bc11bbd0 +DIST qtsensors-everywhere-src-5.12.3.tar.xz 2037212 BLAKE2B 1f75ceea8fdf8e020e73f2cd8377ca13128bf9aafc71146ad96e7cb1f69df83af2889b5a5684fdfd0abb18553332cdda2f9d8753233ed743d0a136a625941909 SHA512 cf0c8c58bbb84debd6b464bd9b91af7e79a301031613b8a2d0715fa276573dafea0a1c8e472fa2a2d4debd9b26f86a5e6efa9a8d57f7ab9102b1314d609579e5 diff --git a/dev-qt/qtsensors/qtsensors-5.12.2.ebuild b/dev-qt/qtsensors/qtsensors-5.12.3.ebuild similarity index 100% rename from dev-qt/qtsensors/qtsensors-5.12.2.ebuild rename to dev-qt/qtsensors/qtsensors-5.12.3.ebuild diff --git a/dev-qt/qtserialbus/Manifest b/dev-qt/qtserialbus/Manifest index e41b6d50ba65..017e0325d6e1 100644 --- a/dev-qt/qtserialbus/Manifest +++ b/dev-qt/qtserialbus/Manifest @@ -1,2 +1,2 @@ DIST qtserialbus-everywhere-src-5.11.3.tar.xz 318484 BLAKE2B 5197dff9b827e58f1e7558517d38617969f8acdca04557ffe92fd2178370fa3c48a59a69b119aa56bfdb0bfde9d4dec17174425751ef32e7610c07499fd2f9ac SHA512 cef0f34bbe6f56705180eea75f4bba622931d7a596b245d8d49dc61d570cf2f163fadbd6f9bc6e84745f4d76dab9ddc6ebdfcc1ec6078f2e4a154d55f0cccc91 -DIST qtserialbus-everywhere-src-5.12.2.tar.xz 328700 BLAKE2B 192510308b06ce31668cc468312f372ccee371d30154dd7a0de352c09bbff83c6c3db621037bc1c7e696e86a81c1eb5203c066ea76357fc8c05d821add644244 SHA512 598b3bd797b84b91fe1db30e3d53646e74ee82bd477a84e194edf132e5bfd5650e11defe5a9baac92df323d874773ac5a86e2cf99f65b8fe949fb6d340782e05 +DIST qtserialbus-everywhere-src-5.12.3.tar.xz 328664 BLAKE2B cea2ebacf8a2ffc6e2f1c1ab54327a50199407ded0338d6bbfd0a3d8672106253bcfc307fd38d2e81acecd87ae69f093f516a52e0e4a864130c8491f596cdba2 SHA512 5f9d477780bfcba1edb4a11592ea6f3a2a1b2e42fbbce898e167b1975b14e93b3840789230e320869cbdb16e33eb76b45310cd27089f2f854a20ac3b7e18d763 diff --git a/dev-qt/qtserialbus/qtserialbus-5.12.2.ebuild b/dev-qt/qtserialbus/qtserialbus-5.12.3.ebuild similarity index 100% rename from dev-qt/qtserialbus/qtserialbus-5.12.2.ebuild rename to dev-qt/qtserialbus/qtserialbus-5.12.3.ebuild diff --git a/dev-qt/qtserialport/Manifest b/dev-qt/qtserialport/Manifest index 8f351bdce4fd..e800584af0b6 100644 --- a/dev-qt/qtserialport/Manifest +++ b/dev-qt/qtserialport/Manifest @@ -1,2 +1,2 @@ DIST qtserialport-everywhere-src-5.11.3.tar.xz 299140 BLAKE2B a10c24eedc425262145b705b7a264732db6a47d1bc080f2544bdb6873b1e7f6d1c25e9b27a3dbb5fd3eb697f06c4b057c072112090ce5f769f765d858f41860c SHA512 2c09a0e47bfebb494cdc767c5268bde77ef7dcbc665cfdaa0b17468a0cebea0208ea8019d0387622d2db63387557699fa30e043f3478dbddfd6b8fe909a7add6 -DIST qtserialport-everywhere-src-5.12.2.tar.xz 302792 BLAKE2B 0969728c78e8c196ffbba911a7e589e72a342eeb8f7785d2ccaa5056cfc27fac1163bc2e7fb8ad526411d73426ecb2a895aa64a90f35f29a0dbf95b9e861f421 SHA512 23750cca0f43067a7115c5bc8436c0dcd31908ef5c50a78ab818a2bd0ddd12a25cedc4300b45c4bffb15baf3e6fd54fed373d7cb8c79811e8e274c97900b8aa5 +DIST qtserialport-everywhere-src-5.12.3.tar.xz 302740 BLAKE2B 105999b369422c4e819c85bdcb2899eff2af9c8486ea485bf89f6b1fbe0d78c8760b52e06942145f7a0ad54c0a25ee504d9b3833536af3cfd88a2efeebda5b31 SHA512 42551b74abe1fcaa1972fb1134215987d7c1d0fe73874a4c6ad5b9aadad71a2066a1846c297569bb1562f94e54a406e8074d444deca510a566e27cd386b47ecf diff --git a/dev-qt/qtserialport/qtserialport-5.12.2.ebuild b/dev-qt/qtserialport/qtserialport-5.12.3.ebuild similarity index 100% rename from dev-qt/qtserialport/qtserialport-5.12.2.ebuild rename to dev-qt/qtserialport/qtserialport-5.12.3.ebuild diff --git a/dev-qt/qtspeech/Manifest b/dev-qt/qtspeech/Manifest index 68925e10e5b5..221146c70ce3 100644 --- a/dev-qt/qtspeech/Manifest +++ b/dev-qt/qtspeech/Manifest @@ -1,2 +1,2 @@ DIST qtspeech-everywhere-src-5.11.3.tar.xz 99516 BLAKE2B cceff35946e7e8012d628b5d1093256bf68d512c750b4f5613456e225090a3108264046963ca97aeac160293d5d814db9f5286126797f22437f6fdc0e233ebdd SHA512 f4465b0eac4690fe576c098704d992fee884ede3219a6b032608b877748dc670cec6dc592aaccedaa62a0b2c9d552b9e1284bbac44af6e4cf074bd00918284be -DIST qtspeech-everywhere-src-5.12.2.tar.xz 99828 BLAKE2B d7515c9c35d16137d7259a82ce03560592597fc0e7e41c0fa8be401c59d68eb4f9ccbcc9b612413a8db990713ad7e9f201cf418907cb1915896d9ee9c17aa9d6 SHA512 bbf8f5acb855beab9b359c8e9657a24d263b42e0b89fef3847c06eaa8089d354c352ab2ef24488929aef7274327e9232eeb6d58318c665c2545beddfd453feba +DIST qtspeech-everywhere-src-5.12.3.tar.xz 99828 BLAKE2B a48006c84240091c09af185a6cb6b8df732f94452b92d734d4fb7383966d1be04dc0582c366014f7b75deb2d07c54b275adea3bfbb8d307d2dd1056e4d08c94e SHA512 9623a83cdfbed07dffcd8f0808c2a514c97fda72b68827d917f1a8ee3072286ef8bce06b114db94d7a0c3fc79425c2540fa5cadc6551367fd4431e5396395932 diff --git a/dev-qt/qtspeech/files/qtspeech-5.12.1-nogui.patch b/dev-qt/qtspeech/files/qtspeech-5.12.1-nogui.patch deleted file mode 100644 index 7d0faa13e699..000000000000 --- a/dev-qt/qtspeech/files/qtspeech-5.12.1-nogui.patch +++ /dev/null @@ -1,23 +0,0 @@ -Bug: https://bugs.gentoo.org/651012 -Bug: https://bugs.gentoo.org/679210 - ---- a/src/plugins/tts/speechdispatcher/speechdispatcher.pro -+++ b/src/plugins/tts/speechdispatcher/speechdispatcher.pro -@@ -5,6 +5,7 @@ - load(qt_plugin) - - QT += core texttospeech -+QT -= gui - - CONFIG += link_pkgconfig - packagesExist(speech-dispatcher): PKGCONFIG = speech-dispatcher ---- a/src/doc/doc.pro -+++ b/src/doc/doc.pro -@@ -2,6 +2,7 @@ - - CONFIG += force_qt - QT += core-private -+QT -= doc - - QMAKE_DOCS = $$PWD/qtspeech.qdocconf - diff --git a/dev-qt/qtspeech/qtspeech-5.12.2.ebuild b/dev-qt/qtspeech/qtspeech-5.12.3.ebuild similarity index 89% rename from dev-qt/qtspeech/qtspeech-5.12.2.ebuild rename to dev-qt/qtspeech/qtspeech-5.12.3.ebuild index bcec3c2f7c2d..ee3692ccfce5 100644 --- a/dev-qt/qtspeech/qtspeech-5.12.2.ebuild +++ b/dev-qt/qtspeech/qtspeech-5.12.3.ebuild @@ -18,5 +18,3 @@ RDEPEND=" ~dev-qt/qtcore-${PV} " DEPEND="${RDEPEND}" - -PATCHES=( "${FILESDIR}/${PN}-5.12.1-nogui.patch" ) diff --git a/dev-qt/qtsql/Manifest b/dev-qt/qtsql/Manifest index 31183700c849..2fb521e0e88f 100644 --- a/dev-qt/qtsql/Manifest +++ b/dev-qt/qtsql/Manifest @@ -1,2 +1,2 @@ DIST qtbase-everywhere-src-5.11.3.tar.xz 46997676 BLAKE2B a70089be5530dec0eedcd5ba990140b375261dea5c85ea7d1dbb5b0bd09ee23edbb4917851127686b5f3cac6969a284eb91ab075ebe53326e69e99e81b257da0 SHA512 93865e41c994211456a575b085c2e7491b7975a1c3b4deb48e9616b51104eb990c1fcfd53d5fb2146ba22457cb134e6254e9077ba73c8b4c4b4d1d525e66fb65 -DIST qtbase-everywhere-src-5.12.2.tar.xz 48364464 BLAKE2B 1743fc3e233ab5c204c4c88db61ede946fbb967ed69c47709ee071bf1b911ef79a6581ff9db6e6bdabb15202196614fbdce32521750e41898906100ae5259960 SHA512 6752ecc096f8baf8e14e56f0d1f139e8a0d75967ab61bf1734ad5f4f4609a7cc707ab080f5f85f2230bbbb1454a0669be60a14d57d9a93aef553ce6f85f71613 +DIST qtbase-everywhere-src-5.12.3.tar.xz 48382148 BLAKE2B 779c43a75403e0f21357a90228bbcc3f216495613f4f17a2f442c7aa93f277a79cc7addf5ae44e22964069580f4932cfd14ba4773aa0ab30405d5587577a545c SHA512 1dab927573eb22b1ae772de3a418f7d3999ea78d6e667a7f2494390dd1f0981ea93f4f892cb6e124ac18812c780ee71da3021b485c61eaf1ef2234a5c12b7fe2 diff --git a/dev-qt/qtsql/qtsql-5.12.2.ebuild b/dev-qt/qtsql/qtsql-5.12.3.ebuild similarity index 100% rename from dev-qt/qtsql/qtsql-5.12.2.ebuild rename to dev-qt/qtsql/qtsql-5.12.3.ebuild diff --git a/dev-qt/qtsvg/Manifest b/dev-qt/qtsvg/Manifest index d04bd87429f2..acb3afc6e55f 100644 --- a/dev-qt/qtsvg/Manifest +++ b/dev-qt/qtsvg/Manifest @@ -1,2 +1,2 @@ DIST qtsvg-everywhere-src-5.11.3.tar.xz 1845004 BLAKE2B 2e091a4803fca45923df3ce61890e9dffe4b90c4118c7bf95263698f8c5f9d6260c350c3ec40d53de0fbd4e7dc7b742fda6f6693b338d446326bd740c43573ad SHA512 1ad20b3b59e6802f960fc95421b7f4d67460fae91219316bbced0ae225ab5d0066322a49cceaa7a86a981e9e56741724bbe323ac76d3478fc1f5d0d04fdb9722 -DIST qtsvg-everywhere-src-5.12.2.tar.xz 1859108 BLAKE2B 13f8ed7c5177ba7bfccb65e33c4fe508beab34d493c29fcb2785c8aab629204b41aeba609537cdda2ffc3e742ea79a47f0025200b3485b34a63298366906988d SHA512 6dd7bce8d24aaeb9ec4ff4006381b03c86cbb818b38264be0a947e862b122f0ba82cd14888efedf26f2c67219058842af071851f19d4767371e14bc009439249 +DIST qtsvg-everywhere-src-5.12.3.tar.xz 1859680 BLAKE2B 9ee0a2dbde09ef19fc72285f5ec9b865fd65c23bbecc4fcc8969a5f84bbe31818a086e066f32873e0cfd82aaab4a077660eabd2cbcc7494e84949c64b4a99740 SHA512 23517dbdc30d7128fcbeb12a301eeeb300424bb17bc0d156d5e9298c092d3d3afd2cba45768f2512e58977ee2408450f50c385e03a47ccaf3ff6bc7e4fddf61a diff --git a/dev-qt/qtsvg/qtsvg-5.12.2.ebuild b/dev-qt/qtsvg/qtsvg-5.12.3.ebuild similarity index 100% rename from dev-qt/qtsvg/qtsvg-5.12.2.ebuild rename to dev-qt/qtsvg/qtsvg-5.12.3.ebuild diff --git a/dev-qt/qttest/Manifest b/dev-qt/qttest/Manifest index 31183700c849..2fb521e0e88f 100644 --- a/dev-qt/qttest/Manifest +++ b/dev-qt/qttest/Manifest @@ -1,2 +1,2 @@ DIST qtbase-everywhere-src-5.11.3.tar.xz 46997676 BLAKE2B a70089be5530dec0eedcd5ba990140b375261dea5c85ea7d1dbb5b0bd09ee23edbb4917851127686b5f3cac6969a284eb91ab075ebe53326e69e99e81b257da0 SHA512 93865e41c994211456a575b085c2e7491b7975a1c3b4deb48e9616b51104eb990c1fcfd53d5fb2146ba22457cb134e6254e9077ba73c8b4c4b4d1d525e66fb65 -DIST qtbase-everywhere-src-5.12.2.tar.xz 48364464 BLAKE2B 1743fc3e233ab5c204c4c88db61ede946fbb967ed69c47709ee071bf1b911ef79a6581ff9db6e6bdabb15202196614fbdce32521750e41898906100ae5259960 SHA512 6752ecc096f8baf8e14e56f0d1f139e8a0d75967ab61bf1734ad5f4f4609a7cc707ab080f5f85f2230bbbb1454a0669be60a14d57d9a93aef553ce6f85f71613 +DIST qtbase-everywhere-src-5.12.3.tar.xz 48382148 BLAKE2B 779c43a75403e0f21357a90228bbcc3f216495613f4f17a2f442c7aa93f277a79cc7addf5ae44e22964069580f4932cfd14ba4773aa0ab30405d5587577a545c SHA512 1dab927573eb22b1ae772de3a418f7d3999ea78d6e667a7f2494390dd1f0981ea93f4f892cb6e124ac18812c780ee71da3021b485c61eaf1ef2234a5c12b7fe2 diff --git a/dev-qt/qttest/qttest-5.12.2.ebuild b/dev-qt/qttest/qttest-5.12.3.ebuild similarity index 100% rename from dev-qt/qttest/qttest-5.12.2.ebuild rename to dev-qt/qttest/qttest-5.12.3.ebuild diff --git a/dev-qt/qttranslations/Manifest b/dev-qt/qttranslations/Manifest index d115f6c8aae8..54b603798cc2 100644 --- a/dev-qt/qttranslations/Manifest +++ b/dev-qt/qttranslations/Manifest @@ -1,2 +1,2 @@ DIST qttranslations-everywhere-src-5.11.3.tar.xz 1424160 BLAKE2B a6ee17064d4fe8d3611e04883cbcc9d69bcf872ca4144605da20d6787c051606afdaac771716bb55f1a970dd8468b8e2aa0602d926d8757b2f9faa58db3f6f61 SHA512 eced9516f3e0ecfd11ddd99b7b0f80c47014110af1c43008c764971929405ee7f5194c3390fe07bc4be9a9ead04e7c06c62584475dbe93c96118eaa16cd542a0 -DIST qttranslations-everywhere-src-5.12.2.tar.xz 1372756 BLAKE2B 5b593ff3e390e6c56fb4aec7cfa55417ce7d2142c27bd95ef933780ea1d0e0ec38d1f4fc694bfb005ea4fdd954a3232267f8973e5b450a3d7ed6ccb69a128847 SHA512 a4541fb236ca83ccbb3088318463bd3e1a056e7031fa484f77a6daaf1d6ed5e67f963402ac8e61691b164a31cc12b7dcad48fd7cba8f77e62eef775a2f993fe0 +DIST qttranslations-everywhere-src-5.12.3.tar.xz 1375832 BLAKE2B 5fbddd0a1aa58f367b4089dd6560e6251451e623c5e81078ae428a9420386bb6ad60402b6538d4a4004ec28f84df78896e73df81abfae64cd4ddec1c18fa1cf8 SHA512 76e31a3c6a6824666b2f49d7fa0ad6e604f4a8fcb408261cfeb7baa213fc2f54c1382f677c824f47e7a629776637c699fbe215eecfbce85c3ce621c3de9b01ad diff --git a/dev-qt/qttranslations/qttranslations-5.12.2.ebuild b/dev-qt/qttranslations/qttranslations-5.12.3.ebuild similarity index 100% rename from dev-qt/qttranslations/qttranslations-5.12.2.ebuild rename to dev-qt/qttranslations/qttranslations-5.12.3.ebuild diff --git a/dev-qt/qtvirtualkeyboard/Manifest b/dev-qt/qtvirtualkeyboard/Manifest index 30277239aa5a..e7706f1290a1 100644 --- a/dev-qt/qtvirtualkeyboard/Manifest +++ b/dev-qt/qtvirtualkeyboard/Manifest @@ -1,2 +1,2 @@ DIST qtvirtualkeyboard-everywhere-src-5.11.3.tar.xz 10698520 BLAKE2B bf4800c07e1f0f1649f81d21192bde613b20b54fd80b4d49136e7cc052f7f60d410f3014c3066e3f5c83b6a6d838f50f73a78bcd1a8df5e3d5e24fdb5875280e SHA512 cd3ce039382efca26842b8a413995d8b6bc26184e6161e8c3cad9ed326381a3f6d29798a9a42a52875886a23aa6a74bf831d70a62a7d12f852b640dd6854d2e3 -DIST qtvirtualkeyboard-everywhere-src-5.12.2.tar.xz 10919524 BLAKE2B 2631d0cd431c0541b39c999d9440ea31a1898f4a28c7d7704afe5eb89c2877d813e361aee024cea793f600db387d025e964b19df5f3fa0a9e1b057df3af2cc49 SHA512 1ac6bbf4d96e0ea6a086f40d84e12b3ab200445cf31429e37e15e9bc0efae75a6ba35742a0647d6b20ddf3261a40bd58799ba695ce895f58ad6f765a3fba7d3b +DIST qtvirtualkeyboard-everywhere-src-5.12.3.tar.xz 10916144 BLAKE2B 871db74b3540980d4392fa49d77d60c33f5cbd7840cd41797c168c324f9ba46214cf31154cafec9714c17b784c0ed543f5498146cd3c71228c320fd67792735e SHA512 1aa00fec7e333e4fd52891b82c239b532cf41657d9c3f44c6cc1c211a1412dbf5584823511e54f3feb33b3fed9c6e0171b55afde2df9f0a358e2e4885e1b2686 diff --git a/dev-qt/qtvirtualkeyboard/qtvirtualkeyboard-5.12.2.ebuild b/dev-qt/qtvirtualkeyboard/qtvirtualkeyboard-5.12.3.ebuild similarity index 100% rename from dev-qt/qtvirtualkeyboard/qtvirtualkeyboard-5.12.2.ebuild rename to dev-qt/qtvirtualkeyboard/qtvirtualkeyboard-5.12.3.ebuild diff --git a/dev-qt/qtwayland/Manifest b/dev-qt/qtwayland/Manifest index b124bd9df06a..5bea2964f8a4 100644 --- a/dev-qt/qtwayland/Manifest +++ b/dev-qt/qtwayland/Manifest @@ -1,2 +1,2 @@ DIST qtwayland-everywhere-src-5.11.3.tar.xz 391124 BLAKE2B 2bc90c7a6f6769bcae7e52072d71f38ad984cc931767613e7972373131c9d58c145e9882c29163190257f07a205bdda63f78833859d2be6d6478126c301b70a1 SHA512 e442a13c61a508d6021fb15a0917b7861faf139fb7dca41ac1a3967f4b8dc82da5095029e4c6120464bd36ecf559547fe2f42935d9980f19298f5875cfb5e62e -DIST qtwayland-everywhere-src-5.12.2.tar.xz 431976 BLAKE2B a0f57e6dabb86817c77fc0a61dfa48dda9512961766504943b9dee816730e8f54c78fab91a6712459bb0a90b8ab168adfddfb1b363cf8dfa70339bd24dae10a7 SHA512 08fc86948b727908e668aef79c0ba558745a9dfdf394072674773d1f7a3efcfebd42a2e787d2b4214e1962101474bb637eba54d6fe526f68a747690760cbc653 +DIST qtwayland-everywhere-src-5.12.3.tar.xz 432304 BLAKE2B eb2ba520c651467c8ed5f0d870a69c9b07047cb4c05a0c889b36abeab30149861b83ca693efb0bb93dce4f5da5913afc3c8b61933ef0e8307d22b64fce530d87 SHA512 e66f9f41c15cf84165e559a1ff09e20ec21bb3f909b57fab08b0e3f8f9eeacf75d49541b499b1a6514a34d1ba5dd426ec1ce77719910588afa12cb3a7980dc90 diff --git a/dev-qt/qtwayland/qtwayland-5.12.2.ebuild b/dev-qt/qtwayland/qtwayland-5.12.3.ebuild similarity index 100% rename from dev-qt/qtwayland/qtwayland-5.12.2.ebuild rename to dev-qt/qtwayland/qtwayland-5.12.3.ebuild diff --git a/dev-qt/qtwebchannel/Manifest b/dev-qt/qtwebchannel/Manifest index e6d2d9fd6650..8e4d49d028fc 100644 --- a/dev-qt/qtwebchannel/Manifest +++ b/dev-qt/qtwebchannel/Manifest @@ -1,2 +1,2 @@ DIST qtwebchannel-everywhere-src-5.11.3.tar.xz 177328 BLAKE2B a3ea3c535e466629e5bf2f864967b5878e4e092d614ce05984af81ce979c5866e225d30399a0eb81f9b4b0d44c88646b1b6de2f1be524b5af5b61e995ba780ad SHA512 560d79ba00bebfd5afc238ff486ad1691eea8a1702f565cd838b07419f6fcd1f028ab5b204b32fff6a3c40c3dd13d89e3cce205076a074eebe7b1c111c669d2c -DIST qtwebchannel-everywhere-src-5.12.2.tar.xz 182736 BLAKE2B 05a09249a58f2eff3919e980f22784d66249cf4aed657dedb8f338af0ad90fb68ebfdedb6c3928ae498a869da6d82a36daf045bbfc6d84c622bf95b27a6edb15 SHA512 73f16385788730339bb5e059f89b6e339b84e6ac1826c4fa1fe8843028e4cb629d3c6e50365673325f736766d039c660e6ede3d3890638167225de6bbde1e659 +DIST qtwebchannel-everywhere-src-5.12.3.tar.xz 182808 BLAKE2B 03b1e906e4697844e27a9f4fa7c74bb9df228d31c85071299645ff5441577f749b7019097ac9021f3dda02ca290aba74d3494adfb9b04d8614c82586abbf399f SHA512 2dda4351f5f3a5895a955d0ee77e55f758233672005a068d3e840a01d379727f99287fc6c8fb96516f23a5a8c4ebcb61098690fd3351e79be608e28657534006 diff --git a/dev-qt/qtwebchannel/qtwebchannel-5.12.2.ebuild b/dev-qt/qtwebchannel/qtwebchannel-5.12.3.ebuild similarity index 100% rename from dev-qt/qtwebchannel/qtwebchannel-5.12.2.ebuild rename to dev-qt/qtwebchannel/qtwebchannel-5.12.3.ebuild diff --git a/dev-qt/qtwebengine/Manifest b/dev-qt/qtwebengine/Manifest index c68ed93b44a2..fef52231d175 100644 --- a/dev-qt/qtwebengine/Manifest +++ b/dev-qt/qtwebengine/Manifest @@ -1,2 +1,2 @@ DIST qtwebengine-everywhere-src-5.11.3.tar.xz 233678844 BLAKE2B 451a2f8361b158835f7f565aea9e7e372ea5670f56a5eef918d0340857e1b336d7147c5f87417a21ea225c248cfda8248869c2023b2e359aa9216ec472dea4b9 SHA512 323179244187b075836101eec15fc96569e31dee7ca0b28d51833cf02a55439ca0ab8e3e14acf970eb0258e1f5187b6b33fc1a35bf9056e4941a2b20be9b0431 -DIST qtwebengine-everywhere-src-5.12.2.tar.xz 249240772 BLAKE2B ea1e55bdd849994a25c46b2cf74d429bc9625b94a11b254b51489b7bb2b912b8ef47fc43112662df29d12b4bab1f974f6820c8429ea66ac64c0889d31cb02810 SHA512 c1198432a1b9768426527316a1657feaf4cda5720264e818aebd2614345c5962f4b87c4475a19d1ad5e24c3c3b0b60d9c190e4868cffb66fa0c7ace41c11a23e +DIST qtwebengine-everywhere-src-5.12.3.tar.xz 249275648 BLAKE2B 7d2404084a510c62b638dd09736130eeb40e494f9594339afc7df6628878aafed778a2785f6848702d51b3a4ef1dc8b333d5e5eeeeb8f930b4da839eb70bc175 SHA512 5b500ec6653aa6ed70e7826fe394f95c7932eaea5b1b48f6342a6f18294f75e4f954959fa2f42de0685097679389245d2bc80454e8eea202fa18a326d6d5a9a5 diff --git a/dev-qt/qtwebengine/qtwebengine-5.12.2.ebuild b/dev-qt/qtwebengine/qtwebengine-5.12.3.ebuild similarity index 99% rename from dev-qt/qtwebengine/qtwebengine-5.12.2.ebuild rename to dev-qt/qtwebengine/qtwebengine-5.12.3.ebuild index 48fcb535fce5..8541b566a52e 100644 --- a/dev-qt/qtwebengine/qtwebengine-5.12.2.ebuild +++ b/dev-qt/qtwebengine/qtwebengine-5.12.3.ebuild @@ -77,6 +77,7 @@ DEPEND="${RDEPEND} dev-util/re2c sys-devel/bison pax_kernel? ( sys-apps/elfix ) + !!=sys-devel/binutils-2.32-r0 " PATCHES+=( diff --git a/dev-qt/qtwebsockets/Manifest b/dev-qt/qtwebsockets/Manifest index 68b9188e6ce1..a20c6e01f53d 100644 --- a/dev-qt/qtwebsockets/Manifest +++ b/dev-qt/qtwebsockets/Manifest @@ -1,2 +1,2 @@ DIST qtwebsockets-everywhere-src-5.11.3.tar.xz 229368 BLAKE2B 4308395634f0cb2fed711e5c55cdf0b035f59704178297cdefbabbfc1c59fc4561e5603d44e637b445dabd83555ddd473f705d47fb25be7ad0e8f0aa21feab72 SHA512 8a1ddb2c9ee09018e8dacb5105e24863eb52a84d69ee9792e77c1c6a498634314b24bf3e946f682c23dfe045150898a1c1124bc08416f3560223459b8d1abbfb -DIST qtwebsockets-everywhere-src-5.12.2.tar.xz 235208 BLAKE2B 84cc0bbec3224605ba083cd3d85212ffa0dbe81062a120cc286b5f71fa43e0aace8b4be27da5297ceea97a1408693b5d7af5886760e036d1423e1346bb217bbe SHA512 ad155ad93a7b38b16c93f16c6f6d5f0b3593d4b1cae57293797ef0f17c60843e672487172b3ad5c66a40c284764de94a71be6dab390ae77b71ff0af7cd77856b +DIST qtwebsockets-everywhere-src-5.12.3.tar.xz 235312 BLAKE2B aabe93119aedf18987b4c2211e1cd312a785592ddd0ac371b23e6d5649849bfe231aa24c2de91c20655df7f3a92a614371846060f5b70e09a14f4f7607242fd8 SHA512 212a98d987b4fd16216ac9a1c98e061be6a5bd2e2c4ec8be80424d6f23afeace790fe666abe8a11e2116dc20f17a41ad0c817fceacdfa5f766b93068ac614817 diff --git a/dev-qt/qtwebsockets/qtwebsockets-5.12.2.ebuild b/dev-qt/qtwebsockets/qtwebsockets-5.12.3.ebuild similarity index 100% rename from dev-qt/qtwebsockets/qtwebsockets-5.12.2.ebuild rename to dev-qt/qtwebsockets/qtwebsockets-5.12.3.ebuild diff --git a/dev-qt/qtwebview/Manifest b/dev-qt/qtwebview/Manifest index ef795ba81ca8..c2a4cb9fc1ce 100644 --- a/dev-qt/qtwebview/Manifest +++ b/dev-qt/qtwebview/Manifest @@ -1,2 +1,2 @@ DIST qtwebview-everywhere-src-5.11.3.tar.xz 130676 BLAKE2B bd20b19763151ab11114958812b8e711170755041d9ca63f8c34b58dad2497c43b685377d38d48a1a8ad3e3f3305896f7f4b8b3e88e83317c81357dcf785d9ff SHA512 cf926c1e066d756f92f9a3ca6b17fd3aba07aa9277bbec8ca2bce20058fc860990a7b21be6008fa9a9e87cd04208348f5804f71b82b2b7c14ab0782727817108 -DIST qtwebview-everywhere-src-5.12.2.tar.xz 130972 BLAKE2B 1215d63434fcdae22f4f3029411a9d80f229b9da21af697d2e9a5b975cca203c7c2743bcce2216852f3d264e7a2924cf59333797cc4c5ae8097f76f6bfbac7ae SHA512 b407b761830c7606743ad8e64d9347d5d2241e736ab94978921c184f520a91e8a5e17ca0b80110d1741f52af6691b5b84221408e1604dcb76e1a36dddc6387a4 +DIST qtwebview-everywhere-src-5.12.3.tar.xz 131136 BLAKE2B 09ff2437cd66bd0c5896fd2e0d7910d9e3ad14bb710bc6c8d4f9bd9e37b12401e0d82a0fbd74a9b48425419d9120b53cbe93f3eaf2b942e261d91cca0638c8cf SHA512 426227b9b4cb61c0e88958dbaab21e842a25989098a0e94a06fe3efc8a2b9d4a5d3216296c8228da977ef52cd5844b66048bcb84019da4f06de1b1009dfdffa5 diff --git a/dev-qt/qtwebview/qtwebview-5.12.2.ebuild b/dev-qt/qtwebview/qtwebview-5.12.3.ebuild similarity index 100% rename from dev-qt/qtwebview/qtwebview-5.12.2.ebuild rename to dev-qt/qtwebview/qtwebview-5.12.3.ebuild diff --git a/dev-qt/qtwidgets/Manifest b/dev-qt/qtwidgets/Manifest index 31183700c849..2fb521e0e88f 100644 --- a/dev-qt/qtwidgets/Manifest +++ b/dev-qt/qtwidgets/Manifest @@ -1,2 +1,2 @@ DIST qtbase-everywhere-src-5.11.3.tar.xz 46997676 BLAKE2B a70089be5530dec0eedcd5ba990140b375261dea5c85ea7d1dbb5b0bd09ee23edbb4917851127686b5f3cac6969a284eb91ab075ebe53326e69e99e81b257da0 SHA512 93865e41c994211456a575b085c2e7491b7975a1c3b4deb48e9616b51104eb990c1fcfd53d5fb2146ba22457cb134e6254e9077ba73c8b4c4b4d1d525e66fb65 -DIST qtbase-everywhere-src-5.12.2.tar.xz 48364464 BLAKE2B 1743fc3e233ab5c204c4c88db61ede946fbb967ed69c47709ee071bf1b911ef79a6581ff9db6e6bdabb15202196614fbdce32521750e41898906100ae5259960 SHA512 6752ecc096f8baf8e14e56f0d1f139e8a0d75967ab61bf1734ad5f4f4609a7cc707ab080f5f85f2230bbbb1454a0669be60a14d57d9a93aef553ce6f85f71613 +DIST qtbase-everywhere-src-5.12.3.tar.xz 48382148 BLAKE2B 779c43a75403e0f21357a90228bbcc3f216495613f4f17a2f442c7aa93f277a79cc7addf5ae44e22964069580f4932cfd14ba4773aa0ab30405d5587577a545c SHA512 1dab927573eb22b1ae772de3a418f7d3999ea78d6e667a7f2494390dd1f0981ea93f4f892cb6e124ac18812c780ee71da3021b485c61eaf1ef2234a5c12b7fe2 diff --git a/dev-qt/qtwidgets/qtwidgets-5.12.2.ebuild b/dev-qt/qtwidgets/qtwidgets-5.12.3.ebuild similarity index 100% rename from dev-qt/qtwidgets/qtwidgets-5.12.2.ebuild rename to dev-qt/qtwidgets/qtwidgets-5.12.3.ebuild diff --git a/dev-qt/qtx11extras/Manifest b/dev-qt/qtx11extras/Manifest index 47edd1587dd8..5bbac205c59d 100644 --- a/dev-qt/qtx11extras/Manifest +++ b/dev-qt/qtx11extras/Manifest @@ -1,2 +1,2 @@ DIST qtx11extras-everywhere-src-5.11.3.tar.xz 109496 BLAKE2B b95f2d14207a0a87d6ef95de45908351ba2171bee696cb55a9fce334e5d1525c9af968591f03d9b2a40ca1088ee626f81e15b54ef2972da68ee4e22030e16bfa SHA512 8aeae9a567d6a50071c239796e7916b22235b6e51dc56ade7914be85db610bb51fb3cc8a7d863b72ae8c9385498afb8533d3933e780fc8c764ec91dcb3de04f8 -DIST qtx11extras-everywhere-src-5.12.2.tar.xz 115860 BLAKE2B 67d70032fdac4b8c40603af36e0cf29f5e4c34944b90322999a4a311de232802601cd6138d4822ab6b64081d727f7bfa2da696e391b7e7cb0bef9b41dfd43ca2 SHA512 98d7dee4c6e5b3914ad2707842ec96c70e38c6a659fcf193d264122f90b9e22cf12d6df05414e6fdf27f5b791649a12d5af9ec3d00c61087d7a3185e5a75c769 +DIST qtx11extras-everywhere-src-5.12.3.tar.xz 115908 BLAKE2B 9ec7d370630f6c43869f648222ff46368cb57984ae732320974258da5b3905faa372e8fb97c25df8c88ce155c75be601bda28c988cf5b639bf6404213a1dbc54 SHA512 21dda778aaccab44d8c4950fc6cc9fc6748f1f38721d8f775c61754ace81d17a03847cc6fbe98a9d23ea592fd5f6942eedff102d4841daa5847125986c474854 diff --git a/dev-qt/qtx11extras/qtx11extras-5.12.2.ebuild b/dev-qt/qtx11extras/qtx11extras-5.12.3.ebuild similarity index 100% rename from dev-qt/qtx11extras/qtx11extras-5.12.2.ebuild rename to dev-qt/qtx11extras/qtx11extras-5.12.3.ebuild diff --git a/dev-qt/qtxml/Manifest b/dev-qt/qtxml/Manifest index 31183700c849..2fb521e0e88f 100644 --- a/dev-qt/qtxml/Manifest +++ b/dev-qt/qtxml/Manifest @@ -1,2 +1,2 @@ DIST qtbase-everywhere-src-5.11.3.tar.xz 46997676 BLAKE2B a70089be5530dec0eedcd5ba990140b375261dea5c85ea7d1dbb5b0bd09ee23edbb4917851127686b5f3cac6969a284eb91ab075ebe53326e69e99e81b257da0 SHA512 93865e41c994211456a575b085c2e7491b7975a1c3b4deb48e9616b51104eb990c1fcfd53d5fb2146ba22457cb134e6254e9077ba73c8b4c4b4d1d525e66fb65 -DIST qtbase-everywhere-src-5.12.2.tar.xz 48364464 BLAKE2B 1743fc3e233ab5c204c4c88db61ede946fbb967ed69c47709ee071bf1b911ef79a6581ff9db6e6bdabb15202196614fbdce32521750e41898906100ae5259960 SHA512 6752ecc096f8baf8e14e56f0d1f139e8a0d75967ab61bf1734ad5f4f4609a7cc707ab080f5f85f2230bbbb1454a0669be60a14d57d9a93aef553ce6f85f71613 +DIST qtbase-everywhere-src-5.12.3.tar.xz 48382148 BLAKE2B 779c43a75403e0f21357a90228bbcc3f216495613f4f17a2f442c7aa93f277a79cc7addf5ae44e22964069580f4932cfd14ba4773aa0ab30405d5587577a545c SHA512 1dab927573eb22b1ae772de3a418f7d3999ea78d6e667a7f2494390dd1f0981ea93f4f892cb6e124ac18812c780ee71da3021b485c61eaf1ef2234a5c12b7fe2 diff --git a/dev-qt/qtxml/qtxml-5.12.2.ebuild b/dev-qt/qtxml/qtxml-5.12.3.ebuild similarity index 100% rename from dev-qt/qtxml/qtxml-5.12.2.ebuild rename to dev-qt/qtxml/qtxml-5.12.3.ebuild diff --git a/dev-qt/qtxmlpatterns/Manifest b/dev-qt/qtxmlpatterns/Manifest index ef532c63fd76..cb90c4f922c5 100644 --- a/dev-qt/qtxmlpatterns/Manifest +++ b/dev-qt/qtxmlpatterns/Manifest @@ -1,2 +1,2 @@ DIST qtxmlpatterns-everywhere-src-5.11.3.tar.xz 1373016 BLAKE2B 6ab881ca138aa5f65aab09ff499181758c1702cd1f3dc1232f12efb756f5efd9a68dec5bce5fc812dde9d4818d0129694a26e364b2d84d9ac6fa5bbc4d089bc7 SHA512 a7a8dcd1ef0bae811f3efbbbf6bb5705b3e75c468106cf7532dde86740240cb3f1f55142706abc1ba309dfdab5edf3dcb12923f75e26c8dd43ffee22bfb73cb2 -DIST qtxmlpatterns-everywhere-src-5.12.2.tar.xz 1389320 BLAKE2B 5057d7607f0c11d1a5cb62583fe43dbbe1801fa29977598558671467f15c2dea2276386d8b0054050e4d5e4d35bcc88d7dafa65b5f69113596318c4b8951274a SHA512 2d9b7f0e8496f67f1c1142ea406c710329bbe40cea7a19006ebae06ea746f83e40d3992068ad43370462378c08f094bb0bcb975104859503acc30ead35d30329 +DIST qtxmlpatterns-everywhere-src-5.12.3.tar.xz 1389612 BLAKE2B ec5be0189d6e235dbeeff0660756365c6e900f7b56a1e18506e4c4190bcb4dd4f5242144ae53a5f4dc6334369234d0c8f4a05ce1b324a4002adf4da32cf3474f SHA512 4e421f0c78ca74f726f758bd95b33915297922f3b5a4fff84dde2600969f54f3914828fdb7903c7171e192f81966680b6c6bb4750de0be72728124470e7c798d diff --git a/dev-qt/qtxmlpatterns/qtxmlpatterns-5.12.2.ebuild b/dev-qt/qtxmlpatterns/qtxmlpatterns-5.12.3.ebuild similarity index 100% rename from dev-qt/qtxmlpatterns/qtxmlpatterns-5.12.2.ebuild rename to dev-qt/qtxmlpatterns/qtxmlpatterns-5.12.3.ebuild diff --git a/dev-ruby/Manifest.gz b/dev-ruby/Manifest.gz index 273a30713073..1559104e56f5 100644 Binary files a/dev-ruby/Manifest.gz and b/dev-ruby/Manifest.gz differ diff --git a/dev-ruby/archive-tar-minitar/archive-tar-minitar-0.8.ebuild b/dev-ruby/archive-tar-minitar/archive-tar-minitar-0.8.ebuild index 8387b42817f2..144bbc7c728c 100644 --- a/dev-ruby/archive-tar-minitar/archive-tar-minitar-0.8.ebuild +++ b/dev-ruby/archive-tar-minitar/archive-tar-minitar-0.8.ebuild @@ -20,7 +20,7 @@ RUBY_S="minitar-${PV}" LICENSE="|| ( BSD-2 Ruby )" SLOT="0" -KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="" ruby_add_bdepend "test? ( >=dev-ruby/minitest-5.3:5 )" diff --git a/dev-ruby/asciidoctor-diagram/Manifest b/dev-ruby/asciidoctor-diagram/Manifest index 64e93b21791f..9edab6a3e91b 100644 --- a/dev-ruby/asciidoctor-diagram/Manifest +++ b/dev-ruby/asciidoctor-diagram/Manifest @@ -1,5 +1,2 @@ -DIST asciidoctor-diagram-1.5.12.tar.gz 11262551 BLAKE2B 08ecd3c1b7814b253e6be11d423e0e95e12d8e1097f54b09ae3a5935d94349f9ff2c40d58666895429be5ec058bd797aad38516a0c5bb292866dbbf23f857d9a SHA512 89c4aa836e554ea69ae204406fa36f25ebae12cf98acf7b96bcf96f548bdcb4d2503e671aeb419f8b5d96441564e572b714e2f9a3017c4942d139977a148bf5b -DIST asciidoctor-diagram-1.5.13.tar.gz 11264430 BLAKE2B b5ce1946635bf24e45d8bdd264a3e924b9c876e28d42efce388e60c85e143c9267971eb2dbffe9ceb9af4770162dc1c29538291ff24b59db5fad382811810972 SHA512 9a51b69af6b60bcf7e6daa1be3965ca4497fef7e8ec04461380c51494b5c4aaba35a6e62bfe88281b8d54c8340b34b6cc739da021cfa6f7d9f528802347a02e4 DIST asciidoctor-diagram-1.5.14.tar.gz 11264778 BLAKE2B 298d3c8dc569877d4500bbbc41167de66748d67e9813c6d505aa9296fe49d973e3455a9f53a127ebc9127db64b5228c24e1ddb2ccacfe5bafdfbd5a8511ffb49 SHA512 66f8b7f48dcab4feb14eadadeb571c7cedb0b18c7a0acb004ebc6144affddc1d4a3d05a27996c666ac7966b62d05a5953b7a84895268e071445209b928fe9e89 -DIST asciidoctor-diagram-1.5.15.tar.gz 11264772 BLAKE2B 7333750ac7fc5a8abdb397ed4f7a891d46a07d1032d396968e6f56abf0b50def6dfbb108f6a0a775bb9519f7b8ef91f22d70b1722496e142e8cef58315eced2c SHA512 bc3a5a53bbd53decd479a14c9ad5f561e88b5761da77f246326bd2b5b9388d3d34f18b8964fbbc0e6b47c9d212758a1983b7ed10559b5bda42d5382ded756a72 DIST asciidoctor-diagram-1.5.16.tar.gz 11264819 BLAKE2B 31320b609aaa8458bf24d05f5ea5a561801cdf5e0243e333bbf209060fb75ebed47f94302e381420f8d294a5c0349783d8b3e2bdc81721d50d990eb978a220a5 SHA512 94822a604c43894e2be11370aa4595948e35f4f670338d84abe798beb312a8212c944e78478b785d68384177787539ed4a20a360b55325bd94ced502ca957843 diff --git a/dev-ruby/asciidoctor-diagram/asciidoctor-diagram-1.5.12.ebuild b/dev-ruby/asciidoctor-diagram/asciidoctor-diagram-1.5.12.ebuild deleted file mode 100644 index 7b321aab14a7..000000000000 --- a/dev-ruby/asciidoctor-diagram/asciidoctor-diagram-1.5.12.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -USE_RUBY="ruby23 ruby24 ruby25" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.adoc LICENSE.txt README.adoc" - -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -inherit multilib ruby-fakegem - -DESCRIPTION="A set of Asciidoctor extensions that enable you to add diagrams" -HOMEPAGE="https://github.com/asciidoctor/asciidoctor-diagram" -SRC_URI="https://github.com/asciidoctor/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -ruby_add_rdepend "=dev-ruby/asciidoctor-1.5*" - -all_ruby_prepare() { - rm Gemfile || die - sed -i -e '/c.formatter/ s:^:#:' spec/test_helper.rb || die - - # Avoid specs for unpackaged tools - rm -f spec/{a2s,blockdiag,erd,mermaid,msc,shaape,svgbob,syntrax,umlet,vega,wavedrom}_spec.rb || die -} - -all_ruby_install() { - all_fakegem_install -} diff --git a/dev-ruby/asciidoctor-diagram/asciidoctor-diagram-1.5.13.ebuild b/dev-ruby/asciidoctor-diagram/asciidoctor-diagram-1.5.13.ebuild deleted file mode 100644 index 7b321aab14a7..000000000000 --- a/dev-ruby/asciidoctor-diagram/asciidoctor-diagram-1.5.13.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -USE_RUBY="ruby23 ruby24 ruby25" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.adoc LICENSE.txt README.adoc" - -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -inherit multilib ruby-fakegem - -DESCRIPTION="A set of Asciidoctor extensions that enable you to add diagrams" -HOMEPAGE="https://github.com/asciidoctor/asciidoctor-diagram" -SRC_URI="https://github.com/asciidoctor/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -ruby_add_rdepend "=dev-ruby/asciidoctor-1.5*" - -all_ruby_prepare() { - rm Gemfile || die - sed -i -e '/c.formatter/ s:^:#:' spec/test_helper.rb || die - - # Avoid specs for unpackaged tools - rm -f spec/{a2s,blockdiag,erd,mermaid,msc,shaape,svgbob,syntrax,umlet,vega,wavedrom}_spec.rb || die -} - -all_ruby_install() { - all_fakegem_install -} diff --git a/dev-ruby/asciidoctor-diagram/asciidoctor-diagram-1.5.15.ebuild b/dev-ruby/asciidoctor-diagram/asciidoctor-diagram-1.5.15.ebuild deleted file mode 100644 index c7e2499f4e01..000000000000 --- a/dev-ruby/asciidoctor-diagram/asciidoctor-diagram-1.5.15.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -USE_RUBY="ruby23 ruby24 ruby25" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.adoc LICENSE.txt README.adoc" - -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -inherit multilib ruby-fakegem - -DESCRIPTION="A set of Asciidoctor extensions that enable you to add diagrams" -HOMEPAGE="https://github.com/asciidoctor/asciidoctor-diagram" -SRC_URI="https://github.com/asciidoctor/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -ruby_add_rdepend "=dev-ruby/asciidoctor-1.5*" - -all_ruby_prepare() { - rm Gemfile || die - sed -i -e '/c.formatter/ s:^:#:' spec/test_helper.rb || die - - # Avoid specs for unpackaged tools - rm -f spec/{a2s,blockdiag,erd,mermaid,msc,nomnoml,shaape,svgbob,syntrax,umlet,vega,wavedrom}_spec.rb || die -} - -all_ruby_install() { - all_fakegem_install -} diff --git a/dev-ruby/asciidoctor-diagram/asciidoctor-diagram-1.5.16.ebuild b/dev-ruby/asciidoctor-diagram/asciidoctor-diagram-1.5.16.ebuild index 146e83d9a8d7..69a7c33753f6 100644 --- a/dev-ruby/asciidoctor-diagram/asciidoctor-diagram-1.5.16.ebuild +++ b/dev-ruby/asciidoctor-diagram/asciidoctor-diagram-1.5.16.ebuild @@ -23,7 +23,7 @@ SLOT="0" KEYWORDS="~amd64" IUSE="" -ruby_add_rdepend "=dev-ruby/asciidoctor-1.5* =dev-ruby/asciidoctor-1.5.0 + + + + naota@gentoo.org + + + ruby@gentoo.org + Gentoo Ruby Project + + + diva + + diff --git a/dev-ruby/fast_gettext/Manifest b/dev-ruby/fast_gettext/Manifest index 289594090371..18af18b1db70 100644 --- a/dev-ruby/fast_gettext/Manifest +++ b/dev-ruby/fast_gettext/Manifest @@ -2,3 +2,4 @@ DIST fast_gettext-1.6.0.tar.gz 88780 BLAKE2B 237a37bf505fe7520a25c6014f052420190 DIST fast_gettext-1.7.0.tar.gz 89176 BLAKE2B a42f50570c65ecf229dab0e29ad40ed3fd0f431f59fcc7daff4ad564131751e8a9884d52dfb8f2edd87b6fd5d1267973225fb51f9256844b37c28b251d15d757 SHA512 83c66c4f7bce6ccc08c1fe9e2b3cb71ea751d68bbff36587039a0b7af7e6276cb481debd3668673822455b9805114531547b28a777cafa8bda0f204ba36bf5a9 DIST fast_gettext-1.8.0.tar.gz 89309 BLAKE2B 8ead2922662667c24d07dbc1145002583b1a65edd3cb581ac5bc058560aca38ed083e0470d4834cfdc5abae36f1e8264171b75649343675ab415b28ea2f0e8ab SHA512 0657b5955268166787a32bb74481cd07309018429c21707e061e022d67d5d2448d2d173149f164d16ff5f6c9ffa0feef38369b79daa299e1283fdcdc019ad72e DIST fast_gettext-2.0.0.tar.gz 91904 BLAKE2B fc0f752cad55512f502332a8721aa64fe1b3103ecedceac08b82f293575e974e0565b2936ae740e61ef3413919406959c6a78709ddc737b3e7decd710eafbd46 SHA512 f997a63ecccc3a8836e191b8cdcb5ba0e260bedef4cc55efeecb12c1fb3a469cc98e9e565ac773392a2bdf266618a76c8d34b0522d5447967fb85f4dfeea3c10 +DIST fast_gettext-2.0.1.tar.gz 92037 BLAKE2B 109470cb8ede188a7603dca9b79d17066b6fbbcfa13e2cb6b9a5a6f329d1285a042e152b5afaba206ac447fdbdbdb59f79b74ee2ac70ea39a99691a00fc82155 SHA512 edf98e22a39266c55e7d77547fb1b8cb3a07dcb7bd742e2eb93b636072902f065dede0d980bd3a67373f5afeacc39689cbcee33dd62ad10e1e94f6d84bcbc70c diff --git a/dev-ruby/fast_gettext/fast_gettext-2.0.1.ebuild b/dev-ruby/fast_gettext/fast_gettext-2.0.1.ebuild new file mode 100644 index 000000000000..42fd6949fc7d --- /dev/null +++ b/dev-ruby/fast_gettext/fast_gettext-2.0.1.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +USE_RUBY="ruby24 ruby25 ruby26" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="CHANGELOG Readme.md" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +inherit ruby-fakegem + +DESCRIPTION="GetText but 3.5x faster, 560x less memory, clean namespace and threadsave!" +HOMEPAGE="https://github.com/grosser/fast_gettext" +SRC_URI="https://github.com/grosser/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="public-domain" +SLOT="2" +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" +IUSE="" + +ruby_add_bdepend "test? ( dev-ruby/bundler )" + +all_ruby_prepare() { + rm Gemfile.lock || die + + # Remove jeweler and bump from Gemfile since they are not needed for tests. + sed -i -e '/jeweler/d' -e '/bump/d' -e '/appraisal/d' Gemfile || die + sed -i -e '/single/I s:^:#:' spec/spec_helper.rb || die + sed -i -e '/SingleCov/ s:^:#:' spec/{*,*/*}/*spec.rb || die + + # Avoid unneeded dependency on git and development dependencies. + sed -e '/git ls-files/ s:^:#:' \ + -e '/\(wwtd\|bump\|sqlite3\|activerecord\|i18n\|single_cov\|forking_test_runner\|rubocop\)/ s:^:#:' \ + -i fast_gettext.gemspec || die + + # Avoid a test dependency on activerecord since this is now in the + # dependency tree for app-admin/puppet and many arches don't have + # rails keyworded. + sed -i -e '/active_record/ s:^:#:' spec/spec_helper.rb || die + rm -f spec/fast_gettext/translation_repository/db_spec.rb || die + rm -f spec/fast_gettext/storage_spec.rb || die + sed -i -e '/with i18n loaded/,/^ end/ s:^:#:' spec/fast_gettext/vendor/string_spec.rb || die + + # Don't run a test that requires safe mode which we can't provide + # due to insecure directory settings for the portage dir. This spec + # also calls out to ruby which won't work with different ruby + # implementations. + sed -i -e '/can work in SAFE mode/,/^ end/ s:^:#:' spec/fast_gettext/translation_repository/mo_spec.rb || die +} + +each_ruby_prepare() { + # Make sure the right ruby interpreter is used + sed -i -e "s:bundle exec ruby:bundle exec ${RUBY}:" spec/fast_gettext/vendor/*spec.rb || die +} diff --git a/dev-ruby/ffi/ffi-1.9.25.ebuild b/dev-ruby/ffi/ffi-1.9.25.ebuild index 68bbbb7954dc..93c24bdd4788 100644 --- a/dev-ruby/ffi/ffi-1.9.25.ebuild +++ b/dev-ruby/ffi/ffi-1.9.25.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 @@ -21,7 +21,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${PN}-git-${PV}. IUSE="" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~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 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" RDEPEND+=" virtual/libffi" DEPEND+=" virtual/libffi" diff --git a/dev-ruby/highline/Manifest b/dev-ruby/highline/Manifest index 9834f8dfb347..6614f97b5335 100644 --- a/dev-ruby/highline/Manifest +++ b/dev-ruby/highline/Manifest @@ -1,4 +1,3 @@ DIST highline-1.7.8.gem 224768 BLAKE2B 683fa70e3ea4bf697ab5a1cd40da2528e2586f8fe12fb0ffb799938f2bfa2efe64fe1424c0ee1f90ae3df69f86a92f44eebcbb2ab34f18b3c4cdbb143e596067 SHA512 85f57ab732009cc961b824e252f0b65bbe7c0a8c97849d453773a331016b2ea8fa0efe393bc1a0073eae6d3cf523d97b9434cd73bdceed55bc069be0b6f4b41d -DIST highline-2.0.0.tar.gz 233750 BLAKE2B ac696d63aaf15309a8235d9a0c25e4722b257cda154bd00a420675e1bccedb5f06122f3532ac200685f22753783152255194751f2e3bdc908f80b278f325328c SHA512 d1a96233ffb97b2985e7afebd3755d1b28d89ac2d84a3ec8c04450680c1149f1fcc46f0221242768a2aafa8bfbde4f5a6f3951013c0b5d25a3aa88f1e571b4d8 DIST highline-2.0.1.tar.gz 233862 BLAKE2B ca65792d99f31a03f3ae86c774498692197b6e7db5bef6c3c47a88edeb476c0b41abb3afd7640eab16d2946235a72e247318de14ad600e542a999c124b96b03c SHA512 1d6176465f0f1dd21084b5632e47b52a734ec97c1de849c40d4e904abc1fa1ff33ad8f70aba10047debfad16d60364b3acab224a6e57f6278c27c9c25ab37fa9 DIST highline-2.0.2.tar.gz 234108 BLAKE2B 5d4b234d03e4569348a68991dd2319afd329c9840858d9e6686afc57c24cfda8836d5c912072ccd14b61a25ceaed64e46a44c7c5f4e930658b8827ccb74ac08b SHA512 07098366a7c59f2b0bfb194f92daff4f7bc16c2e78e0a6d85da50f9a72e58cafe0281c0e8ee86f84f31e70228f09b75e9e5bcb73dd05256118279e0c02a3ccee diff --git a/dev-ruby/highline/highline-1.7.8.ebuild b/dev-ruby/highline/highline-1.7.8.ebuild index b96e814ec0af..99fb2b506b76 100644 --- a/dev-ruby/highline/highline-1.7.8.ebuild +++ b/dev-ruby/highline/highline-1.7.8.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 -USE_RUBY="ruby22 ruby23 ruby24 ruby25" +USE_RUBY="ruby23 ruby24 ruby25" RUBY_FAKEGEM_EXTRADOC="Changelog.md README.rdoc TODO" RUBY_FAKEGEM_DOCDIR="doc/html" @@ -18,6 +18,8 @@ LICENSE="|| ( GPL-2 Ruby )" SLOT="0" KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +ruby_add_bdepend "test? ( dev-ruby/rdoc )" + all_ruby_prepare() { # fix up gemspec file not to call git sed -i -e '/git ls-files/d' highline.gemspec || die diff --git a/dev-ruby/highline/highline-2.0.0.ebuild b/dev-ruby/highline/highline-2.0.0.ebuild deleted file mode 100644 index 8fd18cb45c63..000000000000 --- a/dev-ruby/highline/highline-2.0.0.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -USE_RUBY="ruby23 ruby24 ruby25 ruby26" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" - -RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md TODO" - -inherit ruby-fakegem eapi7-ver - -DESCRIPTION="Highline is a high-level command-line IO library for ruby" -HOMEPAGE="https://github.com/JEG2/highline" -SRC_URI="https://github.com/JEG2/highline/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -IUSE="" -LICENSE="|| ( GPL-2 Ruby )" -SLOT="$(ver_cut 1)" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" - -all_ruby_prepare() { - # fix up gemspec file not to call git - sed -i -e '/git ls-files/d' highline.gemspec || die - - # Avoid unneeded dependencies - sed -i -e '/\(bundler\|code_statistics\)/ s:^:#:' \ - -e '/PackageTask/,/end/ s:^:#:' Rakefile || die - sed -i -e '/simplecov/ s:^:#:' test/test_helper.rb || die - - # Remove almost empty doc directory to allow rdoc recipe to work - rm -rf doc || die -} diff --git a/dev-ruby/httparty/Manifest b/dev-ruby/httparty/Manifest index 61e78aa35d08..d9cb7cb7cb83 100644 --- a/dev-ruby/httparty/Manifest +++ b/dev-ruby/httparty/Manifest @@ -1,3 +1,3 @@ DIST httparty-0.16.2.gem 89600 BLAKE2B 581b5fcadf59bb50864b2fa6d1aae220ff9881bba53363601c6e70c3291dc2cee351a8f42b1946ad516cdcab5a85b832e4260f04394e54255e0cd76bc6860d5e SHA512 13efbacb9ee0325fbb185279ca9f7ffcc0131189ccf98d9889c6a1b6bcfa04fd7cbc6d1393bffe69a5a813a2f54f70b5926e176305fa70480dd0902968c894d0 -DIST httparty-0.16.3.gem 92672 BLAKE2B d32f0da8eb2c5e9f2e094c1c8971c53a8e6eab4b0a7b98014d04b27a644d1c2142cf6c97f4db5cd1274f35c8e80ce332f86cae8ee4adba2d0636aabb7f40bea5 SHA512 26916c635fe4cc01a38132ab5970487aef4529239e922d196f5922187eb466d24ead0e2e15889d721a37f6358b65570ca022b78e166bd49ed08c7150acec816a DIST httparty-0.16.4.gem 91136 BLAKE2B 07988ebd768d826753780d1ac0e1cbf26dd592f131af690b8873787dcb00a48553fb5abb8962eb948ed7a877e38faab3103d9be90ee9c9867cc304b7b1a709e0 SHA512 a3465234cdc6118396b385c482a44a0c6aabf37cb81d00186c4f004e63d7c692bf8783c72dad5702d347d2dbf5bd0b54e78fb4852c149851b27d65f886c3525a +DIST httparty-0.17.0.gem 100352 BLAKE2B 49cdb05a5f0f0e6c6e31eae6541333892042227e29b53761636ebf608bca32665ecd0cc538cbc1baca3b0745b89b43a81fff8620e2d96017a60518f46fd9f303 SHA512 9aefaadf364dfe68e8d41cadc4652d0b40ef395d6b0506243a35e771106ca2cc0e9947e1676db39e6f034fd31bde16cc4fb759b78287830681d049ab39178cfb diff --git a/dev-ruby/httparty/httparty-0.16.4.ebuild b/dev-ruby/httparty/httparty-0.16.4.ebuild index 164c944481e5..dfd2e3b99d9a 100644 --- a/dev-ruby/httparty/httparty-0.16.4.ebuild +++ b/dev-ruby/httparty/httparty-0.16.4.ebuild @@ -17,7 +17,7 @@ HOMEPAGE="https://jnunemaker.github.com/httparty" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="" ruby_add_rdepend 'dev-ruby/mime-types:3 >=dev-ruby/multi_xml-0.5.2' diff --git a/dev-ruby/httparty/httparty-0.16.3.ebuild b/dev-ruby/httparty/httparty-0.17.0.ebuild similarity index 95% rename from dev-ruby/httparty/httparty-0.16.3.ebuild rename to dev-ruby/httparty/httparty-0.17.0.ebuild index 4b5fde1500a6..2e236d4eb462 100644 --- a/dev-ruby/httparty/httparty-0.16.3.ebuild +++ b/dev-ruby/httparty/httparty-0.17.0.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 -USE_RUBY="ruby23 ruby24 ruby25" +USE_RUBY="ruby24 ruby25" RUBY_FAKEGEM_RECIPE_TEST="rspec3" diff --git a/dev-ruby/json/json-2.2.0.ebuild b/dev-ruby/json/json-2.2.0.ebuild index a1a7b347ee36..23dd9b0de55c 100644 --- a/dev-ruby/json/json-2.2.0.ebuild +++ b/dev-ruby/json/json-2.2.0.ebuild @@ -25,7 +25,8 @@ DEPEND="${DEPEND} dev-util/ragel" ruby_add_bdepend "dev-ruby/rake - doc? ( dev-ruby/rdoc )" + doc? ( dev-ruby/rdoc ) + test? ( dev-ruby/test-unit:2 )" all_ruby_prepare() { # Avoid building the extension twice! diff --git a/dev-ruby/mime-types-data/mime-types-data-3.2019.0331.ebuild b/dev-ruby/mime-types-data/mime-types-data-3.2019.0331.ebuild index 0aad44fdff45..f9a7bb2eccab 100644 --- a/dev-ruby/mime-types-data/mime-types-data-3.2019.0331.ebuild +++ b/dev-ruby/mime-types-data/mime-types-data-3.2019.0331.ebuild @@ -19,5 +19,5 @@ HOMEPAGE="https://github.com/mime-types/mime-types-data" LICENSE="MIT" SLOT="3" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~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 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" diff --git a/dev-ruby/mime-types/mime-types-3.2.2.ebuild b/dev-ruby/mime-types/mime-types-3.2.2.ebuild index d077525073dd..951620a12204 100644 --- a/dev-ruby/mime-types/mime-types-3.2.2.ebuild +++ b/dev-ruby/mime-types/mime-types-3.2.2.ebuild @@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/mime-types/ruby-mime-types" LICENSE="MIT" SLOT="3" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86" IUSE="" ruby_add_bdepend "test? ( dev-ruby/minitest:5 dev-ruby/minitest-bonus-assertions:2 dev-ruby/minitest-hooks:1 )" diff --git a/dev-ruby/minitest-bonus-assertions/minitest-bonus-assertions-3.0.ebuild b/dev-ruby/minitest-bonus-assertions/minitest-bonus-assertions-3.0.ebuild index 36c0fda53e28..c0077ea0b499 100644 --- a/dev-ruby/minitest-bonus-assertions/minitest-bonus-assertions-3.0.ebuild +++ b/dev-ruby/minitest-bonus-assertions/minitest-bonus-assertions-3.0.ebuild @@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/halostatue/minitest-bonus-assertions" LICENSE="MIT" SLOT="2" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~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 ~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/minitest dev-ruby/minitest-pretty_diff )" diff --git a/dev-ruby/minitest-hooks/Manifest b/dev-ruby/minitest-hooks/Manifest index 40451d4de9cd..0c9d9d2869a7 100644 --- a/dev-ruby/minitest-hooks/Manifest +++ b/dev-ruby/minitest-hooks/Manifest @@ -1,2 +1 @@ -DIST minitest-hooks-1.4.2.gem 10752 BLAKE2B fa02dd6885acb285bfa45bb3a1a7cdafa136c916ef794935d0439e4e1f13748a0f17d1081c1d3c963a0b1c9936b055079bfb1b53c466a0f5daf5c04563b6969b SHA512 f6f5a96bc2cbb581b5b6a8cab507da8c560b853ff722fcafba45d08fde1e75a41da5bffe0287bbb5a861eef84145a38a6b25d3e671fdccfb15c0fce3bce85804 DIST minitest-hooks-1.5.0.gem 11264 BLAKE2B 740df3b75ade3372fbf75ed7bd861c70af6f11d8cd1f37819272b98bc8cd1fad6ea09375856cd48a75499e0a692411c6da4f5aec212ebae91b47531c4bedda54 SHA512 4e7c969485c6e8d3414710b787c8880ad26b71de9f0b4a93ca1bf343deba426feee1cc06fcc51eee05c4880d851664fff045026d44728e217607e4cb32aa8f4b diff --git a/dev-ruby/minitest-hooks/minitest-hooks-1.4.2.ebuild b/dev-ruby/minitest-hooks/minitest-hooks-1.4.2.ebuild deleted file mode 100644 index d90c72bae7ed..000000000000 --- a/dev-ruby/minitest-hooks/minitest-hooks-1.4.2.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -USE_RUBY="ruby22 ruby23 ruby24 ruby25" - -# Skip tests since they require unpackaged sequel -RUBY_FAKEGEM_RECIPE_TEST="none" -RUBY_FAKEGEM_RECIPE_DOC="rdoc" - -inherit ruby-fakegem - -DESCRIPTION="Adds around and before_all/after_all/around_all hooks for Minitest" -HOMEPAGE="https://github.com/jeremyevans/minitest-hooks" - -LICENSE="MIT" -SLOT="1" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86" -IUSE="" diff --git a/dev-ruby/minitest-hooks/minitest-hooks-1.5.0.ebuild b/dev-ruby/minitest-hooks/minitest-hooks-1.5.0.ebuild index 31a276775c63..8a94848081ef 100644 --- a/dev-ruby/minitest-hooks/minitest-hooks-1.5.0.ebuild +++ b/dev-ruby/minitest-hooks/minitest-hooks-1.5.0.ebuild @@ -15,5 +15,5 @@ HOMEPAGE="https://github.com/jeremyevans/minitest-hooks" LICENSE="MIT" SLOT="1" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86" IUSE="" diff --git a/dev-ruby/minitest-pretty_diff/minitest-pretty_diff-0.1.ebuild b/dev-ruby/minitest-pretty_diff/minitest-pretty_diff-0.1.ebuild index 7889250ca547..c5582036d09b 100644 --- a/dev-ruby/minitest-pretty_diff/minitest-pretty_diff-0.1.ebuild +++ b/dev-ruby/minitest-pretty_diff/minitest-pretty_diff-0.1.ebuild @@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/adammck/minitest-pretty_diff" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~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 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" each_ruby_test() { diff --git a/dev-ruby/neovim-ruby-client/neovim-ruby-client-0.7.1.ebuild b/dev-ruby/neovim-ruby-client/neovim-ruby-client-0.7.1.ebuild index 0aad7aca7be2..890ccc5b5580 100644 --- a/dev-ruby/neovim-ruby-client/neovim-ruby-client-0.7.1.ebuild +++ b/dev-ruby/neovim-ruby-client/neovim-ruby-client-0.7.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 @@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/alexgenco/neovim-ruby" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~x86" ruby_add_rdepend ">=dev-ruby/msgpack-1.0.0" ruby_add_rdepend ">=dev-ruby/multi_json-1.0.0" diff --git a/dev-ruby/rake-compiler/rake-compiler-1.0.7.ebuild b/dev-ruby/rake-compiler/rake-compiler-1.0.7.ebuild index a18b63f3a0f8..456c48542fd1 100644 --- a/dev-ruby/rake-compiler/rake-compiler-1.0.7.ebuild +++ b/dev-ruby/rake-compiler/rake-compiler-1.0.7.ebuild @@ -17,7 +17,7 @@ LICENSE="MIT" SRC_URI="https://github.com/luislavena/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~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 sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" SLOT="0" IUSE="" diff --git a/dev-ruby/rdoc/rdoc-6.1.1.ebuild b/dev-ruby/rdoc/rdoc-6.1.1.ebuild index e779126f7a9f..2e9fe98f2bec 100644 --- a/dev-ruby/rdoc/rdoc-6.1.1.ebuild +++ b/dev-ruby/rdoc/rdoc-6.1.1.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 @@ -27,6 +27,7 @@ RDEPEND+=">=app-eselect/eselect-ruby-20181225" ruby_add_bdepend " >=dev-ruby/kpeg-1.1.0-r1 >dev-ruby/racc-1.4.10 + dev-ruby/rake test? ( dev-ruby/bundler >=dev-ruby/minitest-5.8:5 diff --git a/dev-ruby/redcloth/redcloth-4.3.2-r1.ebuild b/dev-ruby/redcloth/redcloth-4.3.2-r1.ebuild index 274d5f41f1fb..c799a969fa43 100644 --- a/dev-ruby/redcloth/redcloth-4.3.2-r1.ebuild +++ b/dev-ruby/redcloth/redcloth-4.3.2-r1.ebuild @@ -26,7 +26,7 @@ SRC_URI="https://github.com/${GITHUB_USER}/redcloth/archive/v${PV}.tar.gz -> ${R LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~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 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" DEPEND+=" =dev-util/ragel-6*" diff --git a/dev-ruby/rrdtool-bindings/rrdtool-bindings-1.7.1-r1.ebuild b/dev-ruby/rrdtool-bindings/rrdtool-bindings-1.7.1-r1.ebuild new file mode 100644 index 000000000000..f94871670af8 --- /dev/null +++ b/dev-ruby/rrdtool-bindings/rrdtool-bindings-1.7.1-r1.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +USE_RUBY="ruby24 ruby25 ruby26" +RUBY_FAKEGEM_TASK_DOC="" +inherit ruby-ng + +MY_P=${P/-bindings} +MY_P=${MY_P/_/-} + +DESCRIPTION="Ruby bindings for rrdtool" +HOMEPAGE="https://oss.oetiker.ch/rrdtool/" +SRC_URI="${HOMEPAGE}pub/${MY_P}.tar.gz" +RUBY_S="$MY_P"/bindings/ruby + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris" +IUSE="graph test" +REQUIRED_USE="test? ( graph )" + +# Block on older versions of rrdtool that install the bindings themselves. +# requires rrd_xport which requires rrd_graph +RDEPEND=" + ~net-analyzer/rrdtool-${PV}[graph=] +" +DEPEND=" + test? ( ~net-analyzer/rrdtool-${PV}[graph] ) +" + +all_ruby_prepare() { + epatch "${FILESDIR}"/${PN}-1.4.8-graph-ruby.patch +} + +each_ruby_configure() { + rm ../../src/rrd_config.h || die + touch ../../src/rrd_config.h || die + + ${RUBY} extconf.rb \ + --with-cflags="${CFLAGS} $(usex graph -DHAVE_RRD_GRAPH -UHAVE_RRD_GRAPH)" || die +} + +each_ruby_compile() { + emake V=1 ABS_TOP_SRCDIR="${PWD}/../.." +} + +each_ruby_test() { + if use graph; then + ${RUBY} -I. test.rb || die + fi +} + +all_ruby_install() { + dodoc CHANGES README +} + +each_ruby_install() { + DESTDIR=${D} emake install +} diff --git a/dev-ruby/ruby2ruby/ruby2ruby-2.4.2.ebuild b/dev-ruby/ruby2ruby/ruby2ruby-2.4.2.ebuild index 41fd8f20fcb2..1e01880cc9f5 100644 --- a/dev-ruby/ruby2ruby/ruby2ruby-2.4.2.ebuild +++ b/dev-ruby/ruby2ruby/ruby2ruby-2.4.2.ebuild @@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/seattlerb/ruby2ruby" LICENSE="GPL-2" SLOT="2" -KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="test" ruby_add_rdepend " diff --git a/dev-ruby/ruby_parser/ruby_parser-3.13.1.ebuild b/dev-ruby/ruby_parser/ruby_parser-3.13.1.ebuild index ad5bd39f7584..f43c6d39391a 100644 --- a/dev-ruby/ruby_parser/ruby_parser-3.13.1.ebuild +++ b/dev-ruby/ruby_parser/ruby_parser-3.13.1.ebuild @@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/seattlerb/ruby_parser" LICENSE="MIT" SLOT="3" -KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" ruby_add_rdepend ">=dev-ruby/sexp_processor-4.9.0:4 diff --git a/dev-ruby/rubygems/Manifest b/dev-ruby/rubygems/Manifest index 6f0187629156..a8090c2574ae 100644 --- a/dev-ruby/rubygems/Manifest +++ b/dev-ruby/rubygems/Manifest @@ -1,4 +1,2 @@ -DIST rubygems-2.7.6.tgz 852486 BLAKE2B b2c7cf7f2ce5a27beff846d85a3ca2867a4bbadd5bc76af0df76e774c239979bc4b3fac406a65c45444c9f401f92cd1058b45c8b3750c1ee5477cd2b4b513709 SHA512 bc168afc40c974dbc7c37eb5678432ba2ed7469c3f007a159699467ff2cff5205c508237193ee8becaa6eb555b043969cc5f92b2aaa6bf7c958dd7c187e258a7 DIST rubygems-2.7.9.tgz 862854 BLAKE2B 7bccb1fe1ce11b33501f881d01b8b0159e6b3c0a434fa100b98490cd1813b5309610e8ef5d1a2c5ab23c22bf0cd55ace7b055ee57f9057398662276128b3e949 SHA512 5f699f47bc24d8ffd4f8f44a509a9df71fcd945ca2574dc9d5050bfe06a44830a368f45d204112d7a4f1877e1600a6fe4d1b6b68f9a55288664667b4220a7d72 -DIST rubygems-3.0.1.tgz 937709 BLAKE2B 23efa0c2a4af48c81877027cc38929320b4c16f5fdc2f7003616e50fa24eaf1895cc9a1786ba91ea42eddee6c85a433edbbcfd06e9f0f04912d045d9bc437c12 SHA512 dc29ad51ec67b1dca82a23973ea92153482788964d0755bdcd3c650116915c461c6e5fb1c826be3ee04a497fec4ac2826904bd406f24611e77cd8c9eaf4d8729 DIST rubygems-3.0.3.tgz 904175 BLAKE2B d99de4bdd51779ab214bc4a81f55483341a2c193d4304b8eeb6105cb95877e0a33fe03d93c47433ad3c6bdc8d3e453e33ffb799fd36164feac31616f95eeced4 SHA512 1dd585243341901c7b4cc60a4902000c10ce57fe2cc9c28e27e274a2e6029f936cde1c99d7097c93c2c5b2c8bcee5d692c8fe5cc00c996a040e4954b674e330e diff --git a/dev-ruby/rubygems/rubygems-2.7.6-r1.ebuild b/dev-ruby/rubygems/rubygems-2.7.6-r1.ebuild deleted file mode 100644 index d7c25b60a97d..000000000000 --- a/dev-ruby/rubygems/rubygems-2.7.6-r1.ebuild +++ /dev/null @@ -1,116 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -USE_RUBY="ruby22 ruby23 ruby24 ruby25" - -inherit ruby-ng prefix - -DESCRIPTION="Centralized Ruby extension management system" -HOMEPAGE="https://rubygems.org/" -LICENSE="GPL-2 || ( Ruby MIT )" - -SRC_URI="https://rubygems.org/rubygems/${P}.tgz" - -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 ~sparc64-solaris ~x64-solaris ~x86-solaris" -SLOT="0" -IUSE="server test" - -PDEPEND="server? ( >=dev-ruby/builder-2.1 )" - -ruby_add_bdepend " - test? ( - dev-ruby/json - >=dev-ruby/minitest-4:0 - dev-ruby/rdoc - )" - -all_ruby_prepare() { - - mkdir -p lib/rubygems/defaults || die - cp "${FILESDIR}/gentoo-defaults.rb" lib/rubygems/defaults/operating_system.rb || die - - eprefixify lib/rubygems/defaults/operating_system.rb - - # Disable broken tests when changing default values: - sed -i -e '/test_default_path/,/^ end/ s:^:#:' test/rubygems/test_gem.rb || die - - # Skip tests for default gems that all fail - sed -i -e '/test_default_gems_use_full_paths/,/^ end/ s:^:#:' test/rubygems/test_gem.rb || die - sed -i -e '/test_execute_ignore_default_gem_verbose/,/^ end/ s:^:#:' test/rubygems/test_gem_commands_cleanup_command.rb || die - sed -i -e '/test_execute_default_gem/,/^ end/ s:^:#:' test/rubygems/test_gem_commands_contents_command.rb test/rubygems/test_gem_commands_pristine_command.rb || die - sed -i -e '/test_execute_\(default_details\|show_default_gems\)/,/^ end/ s:^:#:' test/rubygems/test_gem_commands_query_command.rb || die - sed -i -e '/test_execute_all/,/^ end/ s:^:#:' test/rubygems/test_gem_commands_uninstall_command.rb || die - sed -i -e '/\(test_default_gem\|test_check_executable_overwrite\|test_require_works_after_cleanup\)/,/^ end/ s:^:#:' \ - test/rubygems/test_{gem_installer,require}.rb || die - sed -i -e '/test_\(load_default_gem\|default_spec_stub\)/,/^ end/ s:^:#:' test/rubygems/test_gem_specification.rb || die - sed -i -e '/test_uninstall_default_gem/,/^ end/ s:^:#:' test/rubygems/test_gem_uninstaller.rb || die - rm -f test/rubygems/test_gem_indexer.rb || die - sed -i -e '/test_\(require_when_gem_defined\|realworld_default_gem\)/,/^ end/ s:^:#:' test/rubygems/test_require.rb || die - rm -f test/rubygems/test_gem_commands_setup_command.rb || die - - # Avoid tests playing tricks with ruby engine that don't seem to - # work for us. - rm test/rubygems/test_gem_request_set_gem_dependency_api.rb || die - - # Avoid test requiring network access - sed -i -e '/test_download_to_cache/askip "requires network access"' test/rubygems/test_gem_remote_fetcher.rb || die - - # Avoid test requiring file system permission changes - sed -i -e '/test_traverse_parents_does_not_crash_on_permissions_error/,/^ end/ s:^:#:' test/rubygems/test_gem_util.rb || die -} - -each_ruby_compile() { - # Not really a build but... - sed -i -e 's:#!.*:#!'"${RUBY}"':' bin/gem -} - -each_ruby_test() { - # Unset RUBYOPT to avoid interferences, bug #158455 et. al. - #unset RUBYOPT - - if [[ "${EUID}" -ne "0" ]]; then - RUBYLIB="$(pwd)/lib${RUBYLIB+:${RUBYLIB}}" ${RUBY} --disable-gems -I.:lib:test:bundler/lib \ - -e 'require "rubygems"; gem "minitest", "~>4.0"; Dir["test/**/test_*.rb"].each { |tu| require tu }' || die "tests failed" - else - ewarn "The userpriv feature must be enabled to run tests, bug 408951." - eerror "Testsuite will not be run." - fi -} - -each_ruby_install() { - # Unset RUBYOPT to avoid interferences, bug #158455 et. al. - unset RUBYOPT - export RUBYLIB="$(pwd)/lib${RUBYLIB+:${RUBYLIB}}" - - pushd lib &>/dev/null - doruby -r * - popd &>/dev/null - - local sld=$(ruby_rbconfig_value 'sitelibdir') - insinto "${sld#${EPREFIX}}" # bug #320813 - newins "${FILESDIR}/auto_gem.rb.ruby19" auto_gem.rb || die - - newbin bin/gem $(basename ${RUBY} | sed -e 's:ruby:gem:') || die -} - -all_ruby_install() { - dodoc History.txt README.md - - if use server; then - newinitd "${FILESDIR}/init.d-gem_server2" gem_server || die "newinitd failed" - newconfd "${FILESDIR}/conf.d-gem_server" gem_server || die "newconfd failed" - fi -} - -pkg_postinst() { - if [[ ! -n $(readlink "${ROOT}"usr/bin/gem) ]] ; then - eselect ruby set $(eselect --brief --colour=no ruby show | head -n1) - fi - - ewarn - ewarn "To switch between available Ruby profiles, execute as root:" - ewarn "\teselect ruby set ruby(23|24|...)" - ewarn -} diff --git a/dev-ruby/rubygems/rubygems-2.7.9.ebuild b/dev-ruby/rubygems/rubygems-2.7.9.ebuild index 23921338927a..632eb8f13263 100644 --- a/dev-ruby/rubygems/rubygems-2.7.9.ebuild +++ b/dev-ruby/rubygems/rubygems-2.7.9.ebuild @@ -13,7 +13,7 @@ LICENSE="GPL-2 || ( Ruby MIT )" SRC_URI="https://rubygems.org/rubygems/${P}.tgz" -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 ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" SLOT="0" IUSE="server test" diff --git a/dev-ruby/rubygems/rubygems-3.0.1.ebuild b/dev-ruby/rubygems/rubygems-3.0.1.ebuild deleted file mode 100644 index 570b2ce36574..000000000000 --- a/dev-ruby/rubygems/rubygems-3.0.1.ebuild +++ /dev/null @@ -1,117 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -USE_RUBY="ruby23 ruby24 ruby25 ruby26" - -inherit ruby-ng prefix - -DESCRIPTION="Centralized Ruby extension management system" -HOMEPAGE="https://rubygems.org/" -LICENSE="GPL-2 || ( Ruby MIT )" - -SRC_URI="https://rubygems.org/rubygems/${P}.tgz" - -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 ~sparc64-solaris ~x64-solaris ~x86-solaris" -SLOT="0" -IUSE="server test" - -PDEPEND="server? ( =dev-ruby/builder-3* )" - -ruby_add_bdepend " - test? ( - dev-ruby/json - dev-ruby/minitest:5 - dev-ruby/rdoc - )" - -all_ruby_prepare() { - - mkdir -p lib/rubygems/defaults || die - cp "${FILESDIR}/gentoo-defaults.rb" lib/rubygems/defaults/operating_system.rb || die - - eprefixify lib/rubygems/defaults/operating_system.rb - - # Disable broken tests when changing default values: - sed -i -e '/test_default_path/,/^ end/ s:^:#:' test/rubygems/test_gem.rb || die - sed -i -e '/assert_self_install_permissions/,/^ end/ s/^.*RUBY_INSTALL_NAME.*//' test/rubygems/test_gem.rb || die - - # Skip tests for default gems that all fail - sed -i -e '/test_default_gems_use_full_paths/,/^ end/ s:^:#:' test/rubygems/test_gem.rb || die - sed -i -e '/test_execute_ignore_default_gem_verbose/,/^ end/ s:^:#:' test/rubygems/test_gem_commands_cleanup_command.rb || die - sed -i -e '/test_execute_default_gem/,/^ end/ s:^:#:' test/rubygems/test_gem_commands_contents_command.rb test/rubygems/test_gem_commands_pristine_command.rb || die - sed -i -e '/test_execute_\(default_details\|show_default_gems\)/,/^ end/ s:^:#:' test/rubygems/test_gem_commands_query_command.rb || die - sed -i -e '/test_execute_all/,/^ end/ s:^:#:' test/rubygems/test_gem_commands_uninstall_command.rb || die - sed -i -e '/\(test_default_gem\|test_check_executable_overwrite\|test_require_works_after_cleanup\)/,/^ end/ s:^:#:' \ - test/rubygems/test_{gem_installer,require}.rb || die - sed -i -e '/test_\(load_default_gem\|default_spec_stub\|self_stubs\)/,/^ end/ s:^:#:' test/rubygems/test_gem_specification.rb || die - sed -i -e '/test_uninstall_default_gem/,/^ end/ s:^:#:' test/rubygems/test_gem_uninstaller.rb || die - rm -f test/rubygems/test_gem_indexer.rb || die - sed -i -e '/test_\(require_when_gem_defined\|realworld_default_gem\)/,/^ end/ s:^:#:' test/rubygems/test_require.rb || die - rm -f test/rubygems/test_gem_commands_setup_command.rb || die - - # Avoid tests playing tricks with ruby engine that don't seem to - # work for us. - rm test/rubygems/test_gem_request_set_gem_dependency_api.rb || die - - # Avoid test requiring network access - sed -i -e '/test_download_to_cache/askip "requires network access"' test/rubygems/test_gem_remote_fetcher.rb || die - - # Avoid test requiring file system permission changes - sed -i -e '/test_traverse_parents_does_not_crash_on_permissions_error/,/^ end/ s:^:#:' test/rubygems/test_gem_util.rb || die -} - -each_ruby_compile() { - # Not really a build but... - sed -i -e 's:#!.*:#!'"${RUBY}"':' bin/gem -} - -each_ruby_test() { - # Unset RUBYOPT to avoid interferences, bug #158455 et. al. - #unset RUBYOPT - - if [[ "${EUID}" -ne "0" ]]; then - RUBYLIB="$(pwd)/lib${RUBYLIB+:${RUBYLIB}}" ${RUBY} --disable-gems -I.:lib:test:bundler/lib \ - -e 'require "rubygems"; gem "minitest", "~>5.0"; Dir["test/**/test_*.rb"].each { |tu| require tu }' || die "tests failed" - else - ewarn "The userpriv feature must be enabled to run tests, bug 408951." - eerror "Testsuite will not be run." - fi -} - -each_ruby_install() { - # Unset RUBYOPT to avoid interferences, bug #158455 et. al. - unset RUBYOPT - export RUBYLIB="$(pwd)/lib${RUBYLIB+:${RUBYLIB}}" - - pushd lib &>/dev/null - doruby -r * - popd &>/dev/null - - local sld=$(ruby_rbconfig_value 'sitelibdir') - insinto "${sld#${EPREFIX}}" # bug #320813 - newins "${FILESDIR}/auto_gem.rb.ruby19" auto_gem.rb || die - - newbin bin/gem $(basename ${RUBY} | sed -e 's:ruby:gem:') || die -} - -all_ruby_install() { - dodoc History.txt README.md - - if use server; then - newinitd "${FILESDIR}/init.d-gem_server2" gem_server || die "newinitd failed" - newconfd "${FILESDIR}/conf.d-gem_server" gem_server || die "newconfd failed" - fi -} - -pkg_postinst() { - if [[ ! -n $(readlink "${ROOT}"usr/bin/gem) ]] ; then - eselect ruby set $(eselect --brief --colour=no ruby show | head -n1) - fi - - ewarn - ewarn "To switch between available Ruby profiles, execute as root:" - ewarn "\teselect ruby set ruby(23|24|...)" - ewarn -} diff --git a/dev-ruby/sexp_processor/sexp_processor-4.12.0.ebuild b/dev-ruby/sexp_processor/sexp_processor-4.12.0.ebuild index ca7db0ca9691..bb2afd42c639 100644 --- a/dev-ruby/sexp_processor/sexp_processor-4.12.0.ebuild +++ b/dev-ruby/sexp_processor/sexp_processor-4.12.0.ebuild @@ -16,7 +16,7 @@ HOMEPAGE="https://www.zenspider.com/projects/sexp_processor.html" LICENSE="GPL-2" SLOT="4" -KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" ruby_add_bdepend " diff --git a/dev-ruby/term-ansicolor/term-ansicolor-1.7.1.ebuild b/dev-ruby/term-ansicolor/term-ansicolor-1.7.1.ebuild index 0b79085ae38d..c90ca56d60a7 100644 --- a/dev-ruby/term-ansicolor/term-ansicolor-1.7.1.ebuild +++ b/dev-ruby/term-ansicolor/term-ansicolor-1.7.1.ebuild @@ -16,7 +16,7 @@ DESCRIPTION="Small Ruby library that colors strings using ANSI escape sequences" HOMEPAGE="https://flori.github.io/term-ansicolor/" LICENSE="GPL-2" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" SLOT="0" IUSE="" diff --git a/dev-ruby/tins/tins-1.20.2.ebuild b/dev-ruby/tins/tins-1.20.2.ebuild index a7b8b5723bce..2dccf4ef6f9c 100644 --- a/dev-ruby/tins/tins-1.20.2.ebuild +++ b/dev-ruby/tins/tins-1.20.2.ebuild @@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/flori/tins" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="" ruby_add_bdepend "test? ( >=dev-ruby/test-unit-2.5.1-r1 )" diff --git a/dev-tex/Manifest.gz b/dev-tex/Manifest.gz index cf22109294fe..33accaa17ff5 100644 Binary files a/dev-tex/Manifest.gz and b/dev-tex/Manifest.gz differ diff --git a/dev-tex/dvipost/dvipost-1.1-r3.ebuild b/dev-tex/dvipost/dvipost-1.1-r3.ebuild index fcd7ad6e61c3..dbf7f2be3940 100644 --- a/dev-tex/dvipost/dvipost-1.1-r3.ebuild +++ b/dev-tex/dvipost/dvipost-1.1-r3.ebuild @@ -11,7 +11,7 @@ SRC_URI="http://efeu.cybertec.at/dist/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 sparc ~x86 ~x64-macos ~x86-macos" +KEYWORDS="alpha amd64 ~hppa ~ia64 ppc ppc64 sparc ~x86 ~x64-macos ~x86-macos" IUSE="" src_prepare() { diff --git a/dev-util/Manifest.gz b/dev-util/Manifest.gz index b1751a01c6f9..23269356608d 100644 Binary files a/dev-util/Manifest.gz and b/dev-util/Manifest.gz differ diff --git a/dev-util/boost-build/Manifest b/dev-util/boost-build/Manifest index a4de8bd61e23..5f5600925747 100644 --- a/dev-util/boost-build/Manifest +++ b/dev-util/boost-build/Manifest @@ -1,3 +1,2 @@ -DIST boost_1_63_0.tar.bz2 81984414 BLAKE2B 227c4432bd3ca0eb390048ec85047958fcb6ae289996501812cd8b13bf74bbe9b677d0110948265cab59a60deb36c4fc08440af74ac5a5219ea4eaea4fa6918f SHA512 c915c5f5778dee49b8e9d0a40f37f90f56fb1fdb1d8ce92d97bf48bc7bc462212487badfe4bbe30b06196d1149cfb221da12ac54e97499b0d4cb6466813bb4ad DIST boost_1_65_0.tar.bz2 82597718 BLAKE2B 0080956d6ad2f14130ce4a4734b1bd1ce83d3651b226653689e02770baa83cf11811ef4e44948ff68a168d9ce5cbfaea4f758970df2b4e9faa2d410181885f5b SHA512 7142650fb8d61e3ef16ba066fc918e087f19e9bc2ad1d6a11fb10bf0d6b1b5ad05ab032f076a5233a1624b3669e952b2cc38b7dc074bbf53018e2970ee90fcdd DIST boost_1_70_0.tar.bz2 97887058 BLAKE2B dc7a974c6dc2662b767dbd87cb832cd1749c24fb745779d1059b73f19f7e52b33b645adfe72b0296c5e098e5cdb3b9f5eddd382374f33fbcd2ad5739287b2206 SHA512 7f2ea9636baf0210e8ed1d21ee798efb6ce23c0710ff8228b285e2214f82193bcd2d912fd435929c554289a59101c7be2e27ce798f93833f307976f0dd070b49 diff --git a/dev-util/boost-build/boost-build-1.63.0.ebuild b/dev-util/boost-build/boost-build-1.63.0.ebuild deleted file mode 100644 index 4dbc423b5357..000000000000 --- a/dev-util/boost-build/boost-build-1.63.0.ebuild +++ /dev/null @@ -1,140 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -RESTRICT="test" - -PYTHON_COMPAT=( python2_7 ) -inherit eutils flag-o-matic python-single-r1 toolchain-funcs versionator - -MY_PV="$(replace_all_version_separators _)" - -DESCRIPTION="A system for large project software construction, simple to use and powerful" -HOMEPAGE="https://boostorg.github.io/build/" -SRC_URI="https://downloads.sourceforge.net/project/boost/boost/${PV}/boost_${MY_PV}.tar.bz2" - -LICENSE="Boost-1.0" -SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="examples python test" - -RDEPEND="python? ( ${PYTHON_DEPS} ) - !/dev/null || die - eapply "${FILESDIR}/${PN}-1.54.0-fix-test.patch" - popd >/dev/null || die - - # Remove stripping option - # Fix python components build on multilib systems, bug #496446 - cd "${S}/engine" || die - sed -i \ - -e 's|-s\b||' \ - -e "/libpython/s/lib ]/$(get_libdir) ]/" \ - build.jam || die "sed failed" - - # Force regeneration - rm jambase.c || die - - # This patch allows us to fully control optimization - # and stripping flags when bjam is used as build-system - # We simply extend the optimization and debug-symbols feature - # with empty dummies called 'none' - cd "${S}" || die - sed -i \ - -e 's/\(off speed space\)/\1 none/' \ - -e 's/\(debug-symbols : on off\)/\1 none/' \ - tools/builtin.jam || die "sed failed" -} - -src_configure() { - if use python; then - # replace versions by user-selected one (TODO: fix this when slot-op - # deps are available to always match the best version available) - sed -i \ - -e "s|27 26 25 24 23 22|${EPYTHON#python}|" \ - engine/build.jam || die "sed failed" - fi -} - -src_compile() { - cd engine || die - - local toolset - - if [[ ${CHOST} == *-darwin* ]]; then - toolset=darwin - else - # Using boost's generic toolset here, which respects CC and CFLAGS - toolset=cc - fi - - CC=$(tc-getCC) ./build.sh ${toolset} -d+2 $(use_with python python "${EROOT%/}"/usr) || die "building bjam failed" -} - -src_install() { - dobin engine/bin.*/{bjam,b2} - - insinto /usr/share/boost-build - doins -r "${FILESDIR}/site-config.jam" \ - ../boost-build.jam bootstrap.jam build-system.jam ../example/user-config.jam *.py \ - build kernel options tools util - - if ! use python; then - find "${ED%/}/usr/share/boost-build" -iname "*.py" -delete || die "removing experimental python files failed" - fi - - dodoc ../notes/{changes,release_procedure,build_dir_option,relative_source_paths}.txt - - if use examples; then - docinto examples - dodoc -r ../example/. - docompress -x /usr/share/doc/${PF}/examples - fi -} - -src_test() { - cd ../test || die - - export TMP="${T}" - - DO_DIFF="${PREFIX}/usr/bin/diff" ${PYTHON} test_all.py - - if [[ -s test_results.txt ]]; then - eerror "At least one test failed: $( +Date: Sun, 21 Apr 2019 14:20:34 +0200 +Subject: [PATCH] Revert "Do not list `LLVM_LIBS` in the + `target_link_libraries`." + +This breaks linking against shared LLVM. +--- + clang_delta/CMakeLists.txt | 6 +----- + 1 file changed, 1 insertion(+), 5 deletions(-) + +diff --git a/clang_delta/CMakeLists.txt b/clang_delta/CMakeLists.txt +index 6493abf..ab1dc42 100644 +--- a/clang_delta/CMakeLists.txt ++++ b/clang_delta/CMakeLists.txt +@@ -242,11 +242,7 @@ add_executable(clang_delta + git_version.h + ) + +-# ENE, LLVM 6.0: LLVM_LIBS end up in the link command line anyway. I'm not +-# quite sure why! But if you list LLVM_LIBS here, the `clang_delta' binary +-# can end up with dynamic link errors when it runs (multiply defined symbols). +-# +-target_link_libraries(clang_delta ${CLANG_LIBS}) ++target_link_libraries(clang_delta ${CLANG_LIBS} ${LLVM_LIBS}) + + # Custom target for running clang_delta tests + # +-- +2.21.0 + diff --git a/dev-util/ctags/ctags-20190331.ebuild b/dev-util/ctags/ctags-20190331.ebuild index df0896e3ae70..fb5d955b9efa 100644 --- a/dev-util/ctags/ctags-20190331.ebuild +++ b/dev-util/ctags/ctags-20190331.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/universal-ctags/ctags/archive/${COMMITHASH}.tar.gz - LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="json xml yaml" CDEPEND=" diff --git a/dev-util/geany-plugins/Manifest b/dev-util/geany-plugins/Manifest index 0f68038906bb..aebfcf1c1ddf 100644 --- a/dev-util/geany-plugins/Manifest +++ b/dev-util/geany-plugins/Manifest @@ -1,3 +1,2 @@ DIST geany-plugins-1.30.tar.gz 4469990 BLAKE2B 3cb8434765667814dc95227a82bdf204b2f918c951de8d5d9b56549c3fc343e1fe1c3e225d9f907da6b3227440dbdad09d0318d2738c213640a4629e9f7b42fe SHA512 11dc44215aaa369831c249ef84b5dd0ee7eecdfbbf4707fc6165d78201e9e755447463c171ac6c8b2bc70df28a97b23762073ab9b31f7c33285d4728089da807 -DIST geany-plugins-1.33.tar.gz 4671123 BLAKE2B 33471215480597b34e2733b7dc292e94ff12985b645fda76b2e25492573bb866766a3ea5a4598c4f643e9528f8062ffb9bf6ccabbb9be04aecbf23650d9c776d SHA512 d046eb0b7bd3c704b62c84b05564b973203ddabf6c09b94bf3008955735d672077bff1a7cda27d4eba97824231483f3e64b3b0f0234a97a1a2727d535fb28718 DIST geany-plugins-1.34.tar.gz 4640059 BLAKE2B f6a2e001db42e348c129b503fd969f142fecbaa06a10bd220d348f70e6af087a0a856a403bdf866f65fdff02889fa03a2f3a662be3efad0a17401266ab883bcf SHA512 31d25e9b0946b7feeae40b81c4e0c177568cc161c24bfa1c8271dda1c15a44e86f5de9b5992a4acde6cfafe2924a1cc22e95c7b6fb253e8a358931fa5f8ecca3 diff --git a/dev-util/geany-plugins/geany-plugins-1.33.ebuild b/dev-util/geany-plugins/geany-plugins-1.33.ebuild deleted file mode 100644 index 4115b2f8d7be..000000000000 --- a/dev-util/geany-plugins/geany-plugins-1.33.ebuild +++ /dev/null @@ -1,136 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python2_7 ) - -inherit python-single-r1 vala - -DESCRIPTION="A collection of different plugins for Geany" -HOMEPAGE="https://plugins.geany.org" -SRC_URI="https://plugins.geany.org/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" - -IUSE="gtk3 ctags debugger enchant git gpg gtkspell lua multiterm nls pretty-printer python scope soup" -REQUIRED_USE=" - gtk3? ( !debugger !multiterm !python !scope ) - python? ( ${PYTHON_REQUIRED_USE} ) -" - -COMMON_DEPEND=" - >=dev-util/geany-1.32[gtk3=] - dev-libs/glib:2 - gtk3? ( x11-libs/gtk+:3 ) - !gtk3? ( x11-libs/gtk+:2 ) - ctags? ( dev-util/ctags ) - debugger? ( x11-libs/vte:0 ) - enchant? ( app-text/enchant ) - git? ( dev-libs/libgit2:= ) - gpg? ( app-crypt/gpgme:1= ) - gtkspell? ( - gtk3? ( app-text/gtkspell:3= ) - !gtk3? ( app-text/gtkspell:2 ) - ) - lua? ( dev-lang/lua:0= ) - multiterm? ( - $(vala_depend) - >=x11-libs/vte-0.28:0 - ) - pretty-printer? ( dev-libs/libxml2:2 ) - python? ( - dev-python/pygtk[${PYTHON_USEDEP}] - ${PYTHON_DEPS} - ) - scope? ( x11-libs/vte:0 ) - soup? ( net-libs/libsoup:2.4 ) -" -RDEPEND="${COMMON_DEPEND} - scope? ( sys-devel/gdb ) -" -DEPEND="${COMMON_DEPEND} - nls? ( sys-devel/gettext ) - virtual/pkgconfig -" - -pkg_setup() { - use python && python-single-r1_pkg_setup -} - -src_prepare() { - default - - use multiterm && vala_src_prepare -} - -src_configure() { - local myeconfargs=( - --disable-cppcheck - --disable-extra-c-warnings - $(use_enable nls) - --enable-utilslib - # Plugins - --enable-addons - --enable-autoclose - --enable-automark - --enable-codenav - --enable-commander - --enable-defineformat - --enable-geanyextrasel - --enable-geanyinsertnum - --enable-geanymacro - --enable-geanyminiscript - --enable-geanynumberedbookmarks - --enable-geanyprj - --enable-geanyvc $(use_enable gtkspell) - --enable-keyrecord - --enable-latex - --enable-lineoperations - --enable-lipsum - --enable-overview - --enable-pairtaghighlighter - --enable-pohelper - --enable-projectorganizer - --enable-sendmail - --enable-shiftcolumn - --enable-tableconvert - --enable-treebrowser - --enable-workbench - --enable-xmlsnippets - $(use_enable debugger) - $(use_enable ctags geanyctags) - $(use_enable !gtk3 geanydoc) - $(use_enable lua geanylua) - $(use_enable gpg geanypg) - $(use_enable python geanypy) - $(use_enable soup geniuspaste) - $(use_enable git gitchangebar) - $(use_enable multiterm) - $(use_enable pretty-printer) - $(use_enable scope) - $(use_enable enchant spellcheck) - # Having updatechecker… when you’re using a package manager? - $(use_enable soup updatechecker) - # GeanyGenDoc requires ctpl which isn’t yet in portage - --disable-geanygendoc - # Require obsolete and vulnerable webkit-gtk versions - --disable-devhelp - --disable-markdown --disable-peg-markdown - --disable-webhelper - ) - - econf "${myeconfargs[@]}" -} - -src_install() { - default - - find "${D}" -name '*.la' -delete || die - - # make installs all translations if LINGUAS is empty - if [[ -z "${LINGUAS-x}" ]]; then - rm -r "${ED%/}/usr/share/locale/" || die - fi -} diff --git a/dev-util/geany/Manifest b/dev-util/geany/Manifest index c6b7b6971a2f..0b2d3f2e631a 100644 --- a/dev-util/geany/Manifest +++ b/dev-util/geany/Manifest @@ -1,4 +1,2 @@ DIST geany-1.30.1.tar.bz2 4352154 BLAKE2B 6efceb21e07aba3b0698196543746e926d6a73ef5d5f560467eee18a7b9ade4ce0ce37808176922b3399ea8a72b2f281af313a9f57aa325e1a9cb964f0f1c34e SHA512 55fb446b0c517ccee4d2f3023334b96a336788422a4dc41207a4f290c5d4b88df1eefa4b7f6fddf0567224f890ae7bea396306a935512f17e01682034f7200e3 -DIST geany-1.33.tar.bz2 4106409 BLAKE2B f0f16053eb1894ea98c8e79cd1cc5cb12adde4755358db42afe7c50a940168eeb6d7c5b7778765f28c6f6b029b5e17ac8433580e30c456b1b56fbea07ac16c6a SHA512 7fd53bd61cfe2dc05af69b5739ba2841cada822ea6dd76c6b2eb2707e69210f47cf19308842e3a989772c18a7e4386bf7a2b053085063605d196e8e630ab2b33 DIST geany-1.34.1.tar.bz2 4474211 BLAKE2B 25c9b3f752b0b19582120ea342d8029f811040ef433adb065aec028f0bcc0909ea1b0005445bae70a53cbb2b1d3bfe0c2dd9d9c25c5e3f89bcdedebc0a392301 SHA512 3e075b23b22682324e4a56046d238d9d0087d095a6157b98c342fbe40a2bfa7118f72cfe1f414d110fff1411e4cc9c33fff800e0a2e32f9f0e5fd7b6fb560c9a -DIST geany-1.34.tar.bz2 4474601 BLAKE2B 92a2b8343512317ad90cd10bd58b2aca77d7f58dff3548cfdbdab121343b67dcaa7a9d5b57cafd196d599d8bb6a121fa5e49d65a69fa7fd87fe7703be6b8d5fc SHA512 ef506880fbba9acbd2003b207c9897e115d398e716631bc1e164e3455aa9172f34b9955c627fb2f2dd3a3cba0926cce0a774d641517bc94b700d866be00db1a7 diff --git a/dev-util/geany/geany-1.33.ebuild b/dev-util/geany/geany-1.33.ebuild deleted file mode 100644 index d99d1cea34dd..000000000000 --- a/dev-util/geany/geany-1.33.ebuild +++ /dev/null @@ -1,81 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit gnome2-utils xdg-utils - -LANGS="ar ast be bg ca cs de el en_GB es et eu fa fi fr gl he hi hu id it ja kk ko lb lt mn nl nn pl pt pt_BR ro ru sk sl sr sv tr uk vi zh_CN ZH_TW" -NOSHORTLANGS="en_GB zh_CN zh_TW" - -DESCRIPTION="GTK+ based fast and lightweight IDE" -HOMEPAGE="https://www.geany.org" -if [[ "${PV}" = 9999* ]] ; then - inherit autotools git-r3 - EGIT_REPO_URI="https://github.com/geany/geany.git" -else - SRC_URI="https://download.geany.org/${P}.tar.bz2" - KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" -fi -LICENSE="GPL-2+ HPND" -SLOT="0" - -IUSE="gtk3 +vte" - -RDEPEND=">=dev-libs/glib-2.32:2 - !gtk3? ( - >=x11-libs/gtk+-2.24:2 - vte? ( x11-libs/vte:0 ) - ) - gtk3? ( - >=x11-libs/gtk+-3.0:3 - vte? ( x11-libs/vte:2.91 ) - )" -DEPEND="${RDEPEND} - virtual/pkgconfig - dev-util/intltool - sys-devel/gettext" - -pkg_setup() { - strip-linguas ${LANGS} -} - -src_prepare() { - default - - # Syntax highlighting for Portage - sed -i -e "s:*.sh;:*.sh;*.ebuild;*.eclass;:" \ - data/filetype_extensions.conf || die - - if [[ ${PV} = *_pre* ]] || [[ ${PV} = 9999* ]] ; then - eautoreconf - fi -} - -src_configure() { - local myeconfargs=( - --disable-html-docs - --disable-dependency-tracking - --docdir="${EPREFIX}/usr/share/doc/${PF}" - $(use_enable gtk3) - $(use_enable vte) - ) - econf "${myeconfargs[@]}" -} - -src_install() { - emake DESTDIR="${D}" install - prune_libtool_files --all -} - -pkg_preinst() { gnome2_icon_savelist; } - -pkg_postinst() { - gnome2_icon_cache_update - xdg_desktop_database_update -} - -pkg_postrm() { - gnome2_icon_cache_update - xdg_desktop_database_update -} diff --git a/dev-util/geany/geany-1.34.ebuild b/dev-util/geany/geany-1.34.ebuild deleted file mode 100644 index f07d539b7273..000000000000 --- a/dev-util/geany/geany-1.34.ebuild +++ /dev/null @@ -1,81 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit gnome2-utils xdg-utils - -LANGS="ar ast be bg ca cs de el en_GB es et eu fa fi fr gl he hi hu id it ja kk ko lb lt mn nl nn pl pt pt_BR ro ru sk sl sr sv tr uk vi zh_CN ZH_TW" -NOSHORTLANGS="en_GB zh_CN zh_TW" - -DESCRIPTION="GTK+ based fast and lightweight IDE" -HOMEPAGE="https://www.geany.org" -if [[ "${PV}" = 9999* ]] ; then - inherit autotools git-r3 - EGIT_REPO_URI="https://github.com/geany/geany.git" -else - SRC_URI="https://download.geany.org/${P}.tar.bz2" - KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" -fi -LICENSE="GPL-2+ HPND" -SLOT="0" - -IUSE="+gtk3 +vte" - -RDEPEND=">=dev-libs/glib-2.32:2 - !gtk3? ( - >=x11-libs/gtk+-2.24:2 - vte? ( x11-libs/vte:0 ) - ) - gtk3? ( - >=x11-libs/gtk+-3.0:3 - vte? ( x11-libs/vte:2.91 ) - )" -DEPEND="${RDEPEND} - virtual/pkgconfig - dev-util/intltool - sys-devel/gettext" - -pkg_setup() { - strip-linguas ${LANGS} -} - -src_prepare() { - default - - # Syntax highlighting for Portage - sed -i -e "s:*.sh;:*.sh;*.ebuild;*.eclass;:" \ - data/filetype_extensions.conf || die - - if [[ ${PV} = *_pre* ]] || [[ ${PV} = 9999* ]] ; then - eautoreconf - fi -} - -src_configure() { - local myeconfargs=( - --disable-html-docs - --disable-dependency-tracking - --docdir="${EPREFIX}/usr/share/doc/${PF}" - $(use_enable gtk3) - $(use_enable vte) - ) - econf "${myeconfargs[@]}" -} - -src_install() { - emake DESTDIR="${D}" install - find "${ED}" \( -name '*.a' -o -name '*.la' \) -delete || die -} - -pkg_preinst() { gnome2_icon_savelist; } - -pkg_postinst() { - gnome2_icon_cache_update - xdg_desktop_database_update -} - -pkg_postrm() { - gnome2_icon_cache_update - xdg_desktop_database_update -} diff --git a/dev-util/geany/geany-9999.ebuild b/dev-util/geany/geany-9999.ebuild index f07d539b7273..79034d53feb2 100644 --- a/dev-util/geany/geany-9999.ebuild +++ b/dev-util/geany/geany-9999.ebuild @@ -1,9 +1,10 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit gnome2-utils xdg-utils +# eutils required for strip-linguas +inherit eutils xdg LANGS="ar ast be bg ca cs de el en_GB es et eu fa fi fr gl he hi hu id it ja kk ko lb lt mn nl nn pl pt pt_BR ro ru sk sl sr sv tr uk vi zh_CN ZH_TW" NOSHORTLANGS="en_GB zh_CN zh_TW" @@ -14,6 +15,7 @@ if [[ "${PV}" = 9999* ]] ; then inherit autotools git-r3 EGIT_REPO_URI="https://github.com/geany/geany.git" else + [[ "${PV}" == *_pre* ]] && inherit autotools SRC_URI="https://download.geany.org/${P}.tar.bz2" KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" fi @@ -41,7 +43,7 @@ pkg_setup() { } src_prepare() { - default + xdg_src_prepare #588570 # Syntax highlighting for Portage sed -i -e "s:*.sh;:*.sh;*.ebuild;*.eclass;:" \ @@ -56,7 +58,6 @@ src_configure() { local myeconfargs=( --disable-html-docs --disable-dependency-tracking - --docdir="${EPREFIX}/usr/share/doc/${PF}" $(use_enable gtk3) $(use_enable vte) ) @@ -68,14 +69,14 @@ src_install() { find "${ED}" \( -name '*.a' -o -name '*.la' \) -delete || die } -pkg_preinst() { gnome2_icon_savelist; } +pkg_preinst() { + xdg_pkg_preinst +} pkg_postinst() { - gnome2_icon_cache_update - xdg_desktop_database_update + xdg_pkg_postinst } pkg_postrm() { - gnome2_icon_cache_update - xdg_desktop_database_update + xdg_pkg_postrm } diff --git a/dev-util/gertty/gertty-9999.ebuild b/dev-util/gertty/gertty-9999.ebuild new file mode 100644 index 000000000000..c59d3edabcd2 --- /dev/null +++ b/dev-util/gertty/gertty-9999.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="Gertty is a console-based interface to the Gerrit Code Review system." +HOMEPAGE="https://pypi.org/project/gertty/" +if [[ ${PV} == *9999 ]];then + inherit git-r3 + EGIT_REPO_URI="https://opendev.org/ttygroup/gertty" + EGIT_BRANCH="master" +else + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +fi + +LICENSE="Apache-2.0" +SLOT="0" +SLOT="0" +IUSE="" + +CDEPEND=">=dev-python/pbr-0.11[${PYTHON_USEDEP}]" +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + ${CDEPEND}" +RDEPEND=" + ${CDEPEND} + >=dev-python/urwid-1.2.1[${PYTHON_USEDEP}] + !~dev-python/urwid-1.3.0[${PYTHON_USEDEP}] + >=dev-python/sqlalchemy-1.0.4[${PYTHON_USEDEP}] + >=dev-python/git-python-0.3.7[${PYTHON_USEDEP}] + dev-python/python-dateutil[${PYTHON_USEDEP}] + >=dev-python/requests-2.5.3[${PYTHON_USEDEP}] + =dev-python/alembic-0.6.4[${PYTHON_USEDEP}] + >=dev-python/pyyaml-3.1.0[${PYTHON_USEDEP}] + >=dev-python/voluptuous-0.7[${PYTHON_USEDEP}] + >=dev-python/ply-3.4[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}]" diff --git a/dev-util/gtk-update-icon-cache/Manifest b/dev-util/gtk-update-icon-cache/Manifest index e49eb428c478..daae6d4a31f1 100644 --- a/dev-util/gtk-update-icon-cache/Manifest +++ b/dev-util/gtk-update-icon-cache/Manifest @@ -1,3 +1,4 @@ DIST gtk-update-icon-cache-3.24.0.tar.xz 372708 BLAKE2B 2a6bffd4453c2201bbb78e4ba581f6bd6453f650ca32de7e8002cb88f5872c868ef25973587c96b58b28d2b74fbbac192dd608e72cd5bbbc0823486a9c55c46c SHA512 9dada697ace2ea5f3b5ab64c6063c1a9a792f9b9aa23d4c3888e3a487fda9b1c99a5d0793bb0f9e182dc66a1a5c7ff944f8b9f2ca2f4de7ecc24c048d7a55339 DIST gtk-update-icon-cache-3.24.3.tar.xz 372612 BLAKE2B 6087334fdca3aa7f93b1b6c5a7195ede2376ec80d2618809f924f9b612de46a8d3e95f0a90030deb939f27949458f9ec72b11600c2bf8b1ae6089284324f2c9d SHA512 0e47977567314abc64419440cc0f276525286fb65acbfe7fff21d6cf548fbc072865f8a2ed18e3114508a7e8fa696453c26e1ad53e638ee11dab57b4a6cf75a5 DIST gtk-update-icon-cache-3.24.7.tar.bz2 91098 BLAKE2B a97bf3e168238afd8c20c9adea281c9bb71764b5227e5e3c5f78b175568e5a8ea14ab7d2de6aa9e6d38b766cf5f7f1c5c0f646b6d2dd55c0747e43bad4c0a319 SHA512 2396034539628f74bee6539666d0c5eed85814044aa58b21272beb27f7fe47cbd6b5326e358cd1cbef0e1498fcef20b2aabed1bb831cfa1e528a011ce8312e7b +DIST gtk-update-icon-cache-3.24.8.tar.bz2 91113 BLAKE2B 4a930d001a9718b14089962a6c368c9073afa7163217ec2a5f35ab6bcab593490d20944321a2980baef42e13eee43b26a3dee35c8327c8aaa984e5c36611600f SHA512 20ffc1a3570cc4de045a698e51e5b5bc214a78f9b1f730a1930e07df78d965d883262c6776bdcd68b6b39f309d75678531daa6975c0cfc9ecd9070b26b89b4b1 diff --git a/dev-util/gtk-update-icon-cache/gtk-update-icon-cache-3.24.8.ebuild b/dev-util/gtk-update-icon-cache/gtk-update-icon-cache-3.24.8.ebuild new file mode 100644 index 000000000000..8187209413d5 --- /dev/null +++ b/dev-util/gtk-update-icon-cache/gtk-update-icon-cache-3.24.8.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit meson + +DESCRIPTION="GTK update icon cache" +HOMEPAGE="https://www.gtk.org/ https://gitlab.gnome.org/Community/gentoo/gtk-update-icon-cache" +SRC_URI="https://gitlab.gnome.org/Community/gentoo/${PN}/-/archive/${PV}/${P}.tar.bz2" + +LICENSE="LGPL-2.1+" +SLOT="0" +IUSE="" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + +# man page was previously installed by gtk+:3 ebuild +RDEPEND=" + >=dev-libs/glib-2.53.4:2 + >=x11-libs/gdk-pixbuf-2.30:2 + ! +Date: Sun, 21 Apr 2019 20:34:41 +0200 +Subject: [PATCH] Don't try to fetch version via git from a release + +Signed-off-by: Lars Wendler +--- + setup.py | 10 +--------- + 1 file changed, 1 insertion(+), 9 deletions(-) + +diff --git a/setup.py b/setup.py +index 26afd17..6c84c99 100644 +--- a/setup.py ++++ b/setup.py +@@ -5,15 +5,7 @@ import subprocess + import sys + import os + +-# derive version from git repo +-cmd = ["git", "describe", "--tags"] +-commit = os.environ.get('REV', None) +-if commit: +- cmd.append(commit) +-process = subprocess.Popen(cmd, stdout=subprocess.PIPE) +-version = process.communicate()[0].strip() +-# strip leading v +-version = version[1:] ++version = os.environ['PV'] + + # check for released version + assert (len(version) > 0) +-- +2.21.0 + diff --git a/dev-vcs/git-remote-hg/git-remote-hg-0.2.ebuild b/dev-vcs/git-remote-hg/git-remote-hg-0.2.ebuild deleted file mode 100644 index 297bee0751bb..000000000000 --- a/dev-vcs/git-remote-hg/git-remote-hg-0.2.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -PYTHON_COMPAT=(python2_7) - -DESCRIPTION="Semi-official Mercurial bridge from Git project" -HOMEPAGE="https://github.com/felipec/git-remote-hg" -SRC_URI="https://github.com/felipec/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -DEPEND="dev-vcs/git - dev-vcs/mercurial" -RDEPEND="${DEPEND}" - -# Most (21/25) tests fail: -RESTRICT="test" - -src_install() { - dobin git-remote-hg -} diff --git a/dev-vcs/git-remote-hg/git-remote-hg-0.3.ebuild b/dev-vcs/git-remote-hg/git-remote-hg-0.3.ebuild deleted file mode 100644 index 3d5b16b08b94..000000000000 --- a/dev-vcs/git-remote-hg/git-remote-hg-0.3.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -PYTHON_COMPAT=(python2_7) - -DESCRIPTION="Semi-official Mercurial bridge from Git project" -HOMEPAGE="https://github.com/felipec/git-remote-hg" -SRC_URI="https://github.com/felipec/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -CDEPEND="dev-vcs/git - dev-vcs/mercurial" - -DEPEND="${CDEPEND} - app-text/asciidoc" -RDEPEND="${CDEPEND}" - -# Most (21/25) tests fail: -RESTRICT="test" - -src_install() { - dobin git-remote-hg -} diff --git a/dev-vcs/git-remote-hg/git-remote-hg-1.0.0.ebuild b/dev-vcs/git-remote-hg/git-remote-hg-1.0.0.ebuild new file mode 100644 index 000000000000..be29b35c4e6f --- /dev/null +++ b/dev-vcs/git-remote-hg/git-remote-hg-1.0.0.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="Semi-official Mercurial bridge from Git project" +HOMEPAGE="https://github.com/mnauw/git-remote-hg" +SRC_URI="https://github.com/mnauw/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +CDEPEND=" + ${PYTHON_DEPEND} +" +RDEPEND=" + ${CDEPEND} + dev-vcs/git + dev-vcs/mercurial +" +DEPEND="${CDEPEND}" +BDEPEND=" + app-text/asciidoc +" + +PATCHES=( + "${FILESDIR}/${PN}-1.0.0-get_version_from_release.patch" +) + +# Some tests fail: +RESTRICT="test" + +src_compile() { + distutils-r1_src_compile + emake doc +} + +src_install() { + distutils-r1_src_install + emake DESTDIR="${D}" prefix="${EPREFIX}/usr" install-doc +} + +src_test() { + pushd test &>/dev/null || die + default +} diff --git a/dev-vcs/git/git-2.19.2.ebuild b/dev-vcs/git/git-2.19.2.ebuild index 7a8f583cf00b..2485c41c5511 100644 --- a/dev-vcs/git/git-2.19.2.ebuild +++ b/dev-vcs/git/git-2.19.2.ebuild @@ -164,7 +164,7 @@ exportmakeopts() { $(usex perl 'INSTALLDIRS=vendor NO_PERL_CPAN_FALLBACKS=YesPlease' NO_PERL=YesPlease) $(usex python '' NO_PYTHON=YesPlease) $(usex subversion '' NO_SVN_TESTS=YesPlease) - $(usex threads THREADED_DELTA_SEARCH=YesPlease NO_PTHREAD=YesPlease) + $(usex threads '' NO_PTHREAD=YesPlease) $(usex tk '' NO_TCLTK=YesPlease) ) diff --git a/dev-vcs/git/git-2.20.1.ebuild b/dev-vcs/git/git-2.20.1.ebuild index 3e3447b0de93..27d3e60dbff6 100644 --- a/dev-vcs/git/git-2.20.1.ebuild +++ b/dev-vcs/git/git-2.20.1.ebuild @@ -164,7 +164,7 @@ exportmakeopts() { $(usex perl 'INSTALLDIRS=vendor NO_PERL_CPAN_FALLBACKS=YesPlease' NO_PERL=YesPlease) $(usex python '' NO_PYTHON=YesPlease) $(usex subversion '' NO_SVN_TESTS=YesPlease) - $(usex threads THREADED_DELTA_SEARCH=YesPlease NO_PTHREAD=YesPlease) + $(usex threads '' NO_PTHREAD=YesPlease) $(usex tk '' NO_TCLTK=YesPlease) ) diff --git a/dev-vcs/git/git-2.21.0-r1.ebuild b/dev-vcs/git/git-2.21.0-r1.ebuild index da10d81239ce..a46eb7533fd4 100644 --- a/dev-vcs/git/git-2.21.0-r1.ebuild +++ b/dev-vcs/git/git-2.21.0-r1.ebuild @@ -164,7 +164,7 @@ exportmakeopts() { $(usex perl 'INSTALLDIRS=vendor NO_PERL_CPAN_FALLBACKS=YesPlease' NO_PERL=YesPlease) $(usex python '' NO_PYTHON=YesPlease) $(usex subversion '' NO_SVN_TESTS=YesPlease) - $(usex threads THREADED_DELTA_SEARCH=YesPlease NO_PTHREAD=YesPlease) + $(usex threads '' NO_PTHREAD=YesPlease) $(usex tk '' NO_TCLTK=YesPlease) ) diff --git a/dev-vcs/git/git-2.21.0-r2.ebuild b/dev-vcs/git/git-2.21.0-r2.ebuild index 048a32cdf778..0560e22b3ff2 100644 --- a/dev-vcs/git/git-2.21.0-r2.ebuild +++ b/dev-vcs/git/git-2.21.0-r2.ebuild @@ -167,7 +167,7 @@ exportmakeopts() { $(usex perl 'INSTALLDIRS=vendor NO_PERL_CPAN_FALLBACKS=YesPlease' NO_PERL=YesPlease) $(usex python '' NO_PYTHON=YesPlease) $(usex subversion '' NO_SVN_TESTS=YesPlease) - $(usex threads THREADED_DELTA_SEARCH=YesPlease NO_PTHREAD=YesPlease) + $(usex threads '' NO_PTHREAD=YesPlease) $(usex tk '' NO_TCLTK=YesPlease) ) diff --git a/dev-vcs/git/git-2.21.0.ebuild b/dev-vcs/git/git-2.21.0.ebuild index 997fc19b2f6e..93e54911277f 100644 --- a/dev-vcs/git/git-2.21.0.ebuild +++ b/dev-vcs/git/git-2.21.0.ebuild @@ -164,7 +164,7 @@ exportmakeopts() { $(usex perl 'INSTALLDIRS=vendor NO_PERL_CPAN_FALLBACKS=YesPlease' NO_PERL=YesPlease) $(usex python '' NO_PYTHON=YesPlease) $(usex subversion '' NO_SVN_TESTS=YesPlease) - $(usex threads THREADED_DELTA_SEARCH=YesPlease NO_PTHREAD=YesPlease) + $(usex threads '' NO_PTHREAD=YesPlease) $(usex tk '' NO_TCLTK=YesPlease) ) diff --git a/dev-vcs/git/git-9999-r1.ebuild b/dev-vcs/git/git-9999-r1.ebuild index f9275181c5c0..5d6ae9ba9b66 100644 --- a/dev-vcs/git/git-9999-r1.ebuild +++ b/dev-vcs/git/git-9999-r1.ebuild @@ -164,7 +164,7 @@ exportmakeopts() { $(usex perl 'INSTALLDIRS=vendor NO_PERL_CPAN_FALLBACKS=YesPlease' NO_PERL=YesPlease) $(usex python '' NO_PYTHON=YesPlease) $(usex subversion '' NO_SVN_TESTS=YesPlease) - $(usex threads THREADED_DELTA_SEARCH=YesPlease NO_PTHREAD=YesPlease) + $(usex threads '' NO_PTHREAD=YesPlease) $(usex tk '' NO_TCLTK=YesPlease) ) diff --git a/dev-vcs/git/git-9999-r2.ebuild b/dev-vcs/git/git-9999-r2.ebuild index f9275181c5c0..5d6ae9ba9b66 100644 --- a/dev-vcs/git/git-9999-r2.ebuild +++ b/dev-vcs/git/git-9999-r2.ebuild @@ -164,7 +164,7 @@ exportmakeopts() { $(usex perl 'INSTALLDIRS=vendor NO_PERL_CPAN_FALLBACKS=YesPlease' NO_PERL=YesPlease) $(usex python '' NO_PYTHON=YesPlease) $(usex subversion '' NO_SVN_TESTS=YesPlease) - $(usex threads THREADED_DELTA_SEARCH=YesPlease NO_PTHREAD=YesPlease) + $(usex threads '' NO_PTHREAD=YesPlease) $(usex tk '' NO_TCLTK=YesPlease) ) diff --git a/dev-vcs/git/git-9999-r3.ebuild b/dev-vcs/git/git-9999-r3.ebuild index f9275181c5c0..5d6ae9ba9b66 100644 --- a/dev-vcs/git/git-9999-r3.ebuild +++ b/dev-vcs/git/git-9999-r3.ebuild @@ -164,7 +164,7 @@ exportmakeopts() { $(usex perl 'INSTALLDIRS=vendor NO_PERL_CPAN_FALLBACKS=YesPlease' NO_PERL=YesPlease) $(usex python '' NO_PYTHON=YesPlease) $(usex subversion '' NO_SVN_TESTS=YesPlease) - $(usex threads THREADED_DELTA_SEARCH=YesPlease NO_PTHREAD=YesPlease) + $(usex threads '' NO_PTHREAD=YesPlease) $(usex tk '' NO_TCLTK=YesPlease) ) diff --git a/dev-vcs/git/git-9999.ebuild b/dev-vcs/git/git-9999.ebuild index f9275181c5c0..5d6ae9ba9b66 100644 --- a/dev-vcs/git/git-9999.ebuild +++ b/dev-vcs/git/git-9999.ebuild @@ -164,7 +164,7 @@ exportmakeopts() { $(usex perl 'INSTALLDIRS=vendor NO_PERL_CPAN_FALLBACKS=YesPlease' NO_PERL=YesPlease) $(usex python '' NO_PYTHON=YesPlease) $(usex subversion '' NO_SVN_TESTS=YesPlease) - $(usex threads THREADED_DELTA_SEARCH=YesPlease NO_PTHREAD=YesPlease) + $(usex threads '' NO_PTHREAD=YesPlease) $(usex tk '' NO_TCLTK=YesPlease) ) diff --git a/eclass/Manifest.gz b/eclass/Manifest.gz index 6f143806ebab..fa7d931e8185 100644 Binary files a/eclass/Manifest.gz and b/eclass/Manifest.gz differ diff --git a/eclass/kde5-meta-pkg.eclass b/eclass/kde5-meta-pkg.eclass deleted file mode 100644 index bea85315eec0..000000000000 --- a/eclass/kde5-meta-pkg.eclass +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -# @DEAD -# @ECLASS: kde5-meta-pkg.eclass -# @MAINTAINER: -# kde@gentoo.org -# @BLURB: This eclass contains boilerplate for KDE meta packages. -# @DESCRIPTION: -# This eclass should only be used for defining meta packages bundling -# software produced by the KDE community. - -if [[ -z ${_KDE5_META_PKG_ECLASS} ]]; then -_KDE5_META_PKG_ECLASS=1 - -inherit kde5-functions - -HOMEPAGE="https://www.kde.org/" -LICENSE="metapackage" -SLOT="5" - -if [[ ${CATEGORY} = kde-apps ]]; then - RDEPEND+=" !kde-apps/${PN}:4" -fi - -fi diff --git a/games-emulation/Manifest.gz b/games-emulation/Manifest.gz index 99e8cf52fd54..6a3af01f4d46 100644 Binary files a/games-emulation/Manifest.gz and b/games-emulation/Manifest.gz differ diff --git a/games-emulation/mgba/mgba-9999.ebuild b/games-emulation/mgba/mgba-9999.ebuild new file mode 100644 index 000000000000..013c485228bf --- /dev/null +++ b/games-emulation/mgba/mgba-9999.ebuild @@ -0,0 +1,122 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake-utils desktop xdg + +DESCRIPTION="Game Boy Advance emulator written in C" +HOMEPAGE="https://mgba.io" +if [[ "${PV}" == 9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/mgba-emu/mgba.git" +else + SRC_URI="https://github.com/${PN}-emu/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi +LICENSE="MPL-2.0" +SLOT="0" +IUSE="debug elf ffmpeg imagemagick libav opengl qt5 +sdl sqlite" +REQUIRED_USE="|| ( qt5 sdl ) + qt5? ( opengl )" + +RDEPEND=" + media-libs/libpng:0= + sys-libs/zlib[minizip] + elf? ( dev-libs/elfutils ) + ffmpeg? ( + libav? ( media-video/libav:= ) + !libav? ( media-video/ffmpeg:= ) + ) + imagemagick? ( media-gfx/imagemagick:= ) + opengl? ( virtual/opengl ) + qt5? ( + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtmultimedia:5 + dev-qt/qtwidgets:5 + opengl? ( dev-qt/qtopengl:5 ) + ) + sdl? ( media-libs/libsdl2[X,sound,joystick,video,opengl?] ) + sqlite? ( dev-db/sqlite:3 ) +" +DEPEND="${RDEPEND}" + +src_prepare() { + xdg_environment_reset + cmake-utils_src_prepare + + # Get rid of any bundled stuff we don't want + for pkg in libpng lzma sqlite3 zlib ; do + rm -r src/third-party/${pkg} || die + done +} + +src_configure() { + local mycmakeargs=( + -DCMAKE_SKIP_RPATH=ON + -DBUILD_GL="$(usex opengl)" + -DBUILD_PYTHON=OFF + -DBUILD_QT="$(usex qt5)" + -DBUILD_SDL="$(usex sdl)" + -DBUILD_SHARED=ON + # test suite fails to build (>=0.6.0) + -DBUILD_SUITE=OFF + -DBUILD_TEST=OFF + -DM_CORE_GB=ON + -DM_CORE_GBA=ON + -DUSE_DEBUGGERS="$(usex debug)" + -DUSE_EDITLINE="$(usex debug)" + -DUSE_ELF="$(usex elf)" + -DUSE_EPOXY=OFF + -DUSE_FFMPEG="$(usex ffmpeg)" + -DUSE_GDB_STUB="$(usex debug)" + -DUSE_LIBZIP=OFF + -DUSE_LZMA=OFF + -DUSE_MAGICK="$(usex imagemagick)" + -DUSE_MINIZIP=ON + -DUSE_PNG=ON + -DUSE_SQLITE3="$(usex sqlite)" + -DUSE_ZLIB=ON + ) + cmake-utils_src_configure +} + +src_compile() { + cmake-utils_src_compile +} + +src_install() { + if use qt5 ; then + dobin ../${P}_build/qt/${PN}-qt + doman doc/${PN}-qt.6 + domenu res/${PN}-qt.desktop + for size in 16 24 32 48 64 96 128 256 ; do + newicon -s ${size} res/${PN}-${size}.png ${PN}.png + done + fi + if use sdl ; then + doman doc/${PN}.6 + newbin ../${P}_build/sdl/${PN} ${PN}-sdl + fi + + dolib.so ../${P}_build/lib${PN}.so* +} + +pkg_preinst() { + if use qt5 ; then + xdg_pkg_preinst + fi +} + +pkg_postinst() { + if use qt5 ; then + xdg_pkg_postinst + fi +} + +pkg_postrm() { + if use qt5 ; then + xdg_pkg_postrm + fi +} diff --git a/gnome-extra/Manifest.gz b/gnome-extra/Manifest.gz index 9218062dd512..2e6ccbe800ed 100644 Binary files a/gnome-extra/Manifest.gz and b/gnome-extra/Manifest.gz differ diff --git a/gnome-extra/gnome-shell-extension-applications-overview-tooltip/Manifest b/gnome-extra/gnome-shell-extension-applications-overview-tooltip/Manifest new file mode 100644 index 000000000000..f9ca3a2e56fe --- /dev/null +++ b/gnome-extra/gnome-shell-extension-applications-overview-tooltip/Manifest @@ -0,0 +1 @@ +DIST gnome-shell-extension-applications-overview-tooltip-4.tar.gz 79384 BLAKE2B 9e428b66351cb26615050a1c2e8e7ee1e325079b46ae7fc40eb836aef652ca33e04af9b39c07098364b6844c057867e9e5ddee291748afe63084caa108289037 SHA512 befb6f11f7836010077aba10d8664ba462c7153b498e25b5ad0fa12e065dc0b84302b7cc97d1f0685108ea92c20b61491c85a25a4511ad7237b1c0122a587868 diff --git a/gnome-extra/gnome-shell-extension-applications-overview-tooltip/files/gnome-shell-extension-applications-overview-tooltip-4-js-warning.patch b/gnome-extra/gnome-shell-extension-applications-overview-tooltip/files/gnome-shell-extension-applications-overview-tooltip-4-js-warning.patch new file mode 100644 index 000000000000..0ed36b288f0e --- /dev/null +++ b/gnome-extra/gnome-shell-extension-applications-overview-tooltip/files/gnome-shell-extension-applications-overview-tooltip-4-js-warning.patch @@ -0,0 +1,24 @@ +From 27af671cca3fc6b9dd5c8687c1b3d0d530ccc516 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Rapha=C3=ABl=20Rochet?= +Date: Sun, 23 Sep 2018 16:39:36 +0200 +Subject: [PATCH] Fix JS warning + +--- + extension.js | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/extension.js b/extension.js +index 346a89a..1eda926 100644 +--- a/extension.js ++++ b/extension.js +@@ -250,8 +250,8 @@ function _showTooltip(actor) { + + if (!detailtext) { _ttdetail.hide() } else { _ttdetail.show() }; + +- [stageX, stageY] = actor.get_transformed_position(); +- [iconWidth, iconHeight] = actor.get_transformed_size(); ++ let [stageX, stageY] = actor.get_transformed_position(); ++ let [iconWidth, iconHeight] = actor.get_transformed_size(); + let y = stageY + iconHeight + 5; + let x = stageX - Math.round((_ttbox.get_width() - iconWidth)/2); + diff --git a/gnome-extra/gnome-shell-extension-applications-overview-tooltip/files/gnome-shell-extension-applications-overview-tooltip-4-old-animation.patch b/gnome-extra/gnome-shell-extension-applications-overview-tooltip/files/gnome-shell-extension-applications-overview-tooltip-4-old-animation.patch new file mode 100644 index 000000000000..333d1c7c22b3 --- /dev/null +++ b/gnome-extra/gnome-shell-extension-applications-overview-tooltip/files/gnome-shell-extension-applications-overview-tooltip-4-old-animation.patch @@ -0,0 +1,45 @@ +From ff442818fb5c4fd9521c532200ff825061fa35e4 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Rapha=C3=ABl=20Rochet?= +Date: Mon, 11 Feb 2019 21:26:24 +0100 +Subject: [PATCH] Fix #6 by removing old swipe animation + +--- + extension.js | 16 ++-------------- + 1 file changed, 2 insertions(+), 14 deletions(-) + +diff --git a/extension.js b/extension.js +index 1eda926..deffc58 100644 +--- a/extension.js ++++ b/extension.js +@@ -175,16 +175,10 @@ function _onLeave() { + _labelTimeoutId = 0; + } + +- // but give a chance to skip hover delay if the cursor hovers another icon + if (_labelShowing) { +- _resetHoverTimeoutId = Mainloop.timeout_add(HIDEDELAY, function() { +- _hideTooltip(); +- _labelShowing = false; +- _resetHoverTimeoutId = 0; +- return false; +- } ); ++ _hideTooltip(); ++ _labelShowing = false; + } +- + } + + +@@ -277,12 +271,6 @@ function _showTooltip(actor) { + + } + +- // do not hide tooltip while cursor is on icon +- if (_resetHoverTimeoutId > 0) { +- Mainloop.source_remove(_resetHoverTimeoutId); +- _resetHoverTimeoutId = 0; +- } +- + } else { + + // No tooltip to show : act like we're leaving an icon diff --git a/gnome-extra/gnome-shell-extension-applications-overview-tooltip/gnome-shell-extension-applications-overview-tooltip-4.ebuild b/gnome-extra/gnome-shell-extension-applications-overview-tooltip/gnome-shell-extension-applications-overview-tooltip-4.ebuild new file mode 100644 index 000000000000..a86a660de2e8 --- /dev/null +++ b/gnome-extra/gnome-shell-extension-applications-overview-tooltip/gnome-shell-extension-applications-overview-tooltip-4.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit vcs-snapshot + +# Workaround until https://bugzilla.gnome.org/show_bug.cgi?id=663725 is fixed +DESCRIPTION="Show tooltip with full name and description" +HOMEPAGE="https://github.com/RaphaelRochet/applications-overview-tooltip" +SRC_URI="https://github.com/RaphaelRochet/applications-overview-tooltip/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +# https://github.com/RaphaelRochet/applications-overview-tooltip/issues/7 +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +# glib for glib-compile-schemas at build time, needed at runtime anyways +COMMON_DEPEND=" + dev-libs/glib:2 +" +RDEPEND="${COMMON_DEPEND} + app-eselect/eselect-gnome-shell-extensions + >=gnome-base/gnome-shell-3.20 +" +DEPEND="${COMMON_DEPEND}" + +PATCHES=( + # From 'master' + "${FILESDIR}"/${P}-old-animation.patch + "${FILESDIR}"/${P}-js-warning.patch +) + +src_install() { + einstalldocs + rm -f README.md || die + insinto /usr/share/gnome-shell/extensions/applications-overview-tooltip@RaphaelRochet + doins -r * + glib-compile-schemas "${ED}"/usr/share/gnome-shell/extensions/applications-overview-tooltip@RaphaelRochet/schemas || die +} + +pkg_postinst() { + ebegin "Updating list of installed extensions" + eselect gnome-shell-extensions update + eend $? +} diff --git a/gnome-extra/gnome-shell-extension-applications-overview-tooltip/metadata.xml b/gnome-extra/gnome-shell-extension-applications-overview-tooltip/metadata.xml new file mode 100644 index 000000000000..020b40648ee8 --- /dev/null +++ b/gnome-extra/gnome-shell-extension-applications-overview-tooltip/metadata.xml @@ -0,0 +1,7 @@ + + + + + pacho@gentoo.org + + diff --git a/gnome-extra/gnome-shell-extension-dash-to-panel/gnome-shell-extension-dash-to-panel-19.ebuild b/gnome-extra/gnome-shell-extension-dash-to-panel/gnome-shell-extension-dash-to-panel-19.ebuild index 0fa5259a3e20..9fcfa4e12844 100644 --- a/gnome-extra/gnome-shell-extension-dash-to-panel/gnome-shell-extension-dash-to-panel-19.ebuild +++ b/gnome-extra/gnome-shell-extension-dash-to-panel/gnome-shell-extension-dash-to-panel-19.ebuild @@ -30,8 +30,12 @@ S="${WORKDIR}/${MY_P}" src_prepare() { default + # Set correct version export VERSION="${PV}" + + # Don't install README and COPYING in unwanted locations + sed -i -e 's/COPYING//g' -e 's/README.md//g' Makefile || die } pkg_preinst() { diff --git a/gnome-extra/pch-session/Manifest b/gnome-extra/pch-session/Manifest index fc8c4dbaf25f..57880ff7af03 100644 --- a/gnome-extra/pch-session/Manifest +++ b/gnome-extra/pch-session/Manifest @@ -1 +1,2 @@ DIST pch-session-3.30.0.1.tar.bz2 8854 BLAKE2B 55e90c00d3637d21b80ec87db96561a43d4f770ffcc6d90c7c83189ab979565cbeada0dfb64cb3d10d72c6f4e40466345db2023b930971bb6b784a0f7c469551 SHA512 dbb6a28cc1cff37992f717285476b73201a5d96de682fa2e91774f644bd8870cbd6444f768c1395b81a8ba0fe36e60404343251a66d339ae6acfc2a7f47127f9 +DIST pch-session-3.30.0.2.tar.bz2 8925 BLAKE2B 0dc3440d42f7507a0f73ad24cbcd94d106a836b2c9abb74e3d85272ed1dd0660ff85c60b7a3e824687916817f513aed321e92b4d2406e1d5f1ace3aad5bc8456 SHA512 3e8ae7db254c0489c57fb1aadffbd3dfff6ba992c5ce51f993ac5f8a2704b59aab39e65bd36768ffd3fc47eec24bfa9c34046fbd01819976bbb9eedcf84d4e89 diff --git a/gnome-extra/pch-session/pch-session-3.30.0.2.ebuild b/gnome-extra/pch-session/pch-session-3.30.0.2.ebuild new file mode 100644 index 000000000000..a789ccf56fc0 --- /dev/null +++ b/gnome-extra/pch-session/pch-session-3.30.0.2.ebuild @@ -0,0 +1,42 @@ +# Copyright 2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit gnome2-utils + +DESCRIPTION="Unofficial gnome based session with different default settings and extensions" +HOMEPAGE="https://gitlab.com/pachoramos/pch-session" +SRC_URI="https://gitlab.com/pachoramos/${PN}/-/archive/${PV}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +# gnome-extra/gnome-tweaks to configure extensions easily +RDEPEND=" + >=gnome-base/gnome-shell-3.30 + gnome-extra/gnome-shell-extensions + gnome-extra/gnome-shell-extension-applications-overview-tooltip + gnome-extra/gnome-shell-extension-dash-to-panel + gnome-extra/gnome-shell-extension-desktop-icons + gnome-extra/gnome-shell-extension-gsconnect + gnome-extra/gnome-shell-extensions-topicons-plus + gnome-extra/gnome-tweaks +" +BDEPEND="" +DEPEND="" + +src_install() { + insinto /usr + doins -r usr/. + einstalldocs +} + +pkg_postinst() { + gnome2_schemas_update +} + +pkg_postrm() { + gnome2_schemas_update +} diff --git a/gnome-extra/polkit-gnome/polkit-gnome-0.105-r1.ebuild b/gnome-extra/polkit-gnome/polkit-gnome-0.105-r1.ebuild index 5013ca8e3219..6d9051ce9e6b 100644 --- a/gnome-extra/polkit-gnome/polkit-gnome-0.105-r1.ebuild +++ b/gnome-extra/polkit-gnome/polkit-gnome-0.105-r1.ebuild @@ -9,7 +9,7 @@ HOMEPAGE="https://www.freedesktop.org/wiki/Software/polkit" LICENSE="LGPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd" IUSE="" RDEPEND=">=dev-libs/glib-2.30 diff --git a/kde-apps/Manifest.gz b/kde-apps/Manifest.gz index 01a4ccc5bcf3..8909ec840650 100644 Binary files a/kde-apps/Manifest.gz and b/kde-apps/Manifest.gz differ diff --git a/kde-apps/audiocd-kio/audiocd-kio-19.04.0.ebuild b/kde-apps/audiocd-kio/audiocd-kio-19.04.0.ebuild index c5c8f55a0b5e..c0052d7657f6 100644 --- a/kde-apps/audiocd-kio/audiocd-kio-19.04.0.ebuild +++ b/kde-apps/audiocd-kio/audiocd-kio-19.04.0.ebuild @@ -31,6 +31,8 @@ DEPEND=" " RDEPEND="${DEPEND}" +PATCHES=( "${FILESDIR}/${P}-handbook.patch" ) + src_configure() { local mycmakeargs=( $(cmake-utils_use_find_package flac FLAC) diff --git a/kde-apps/audiocd-kio/files/audiocd-kio-19.04.0-handbook.patch b/kde-apps/audiocd-kio/files/audiocd-kio-19.04.0-handbook.patch new file mode 100644 index 000000000000..f89e4e6d663e --- /dev/null +++ b/kde-apps/audiocd-kio/files/audiocd-kio-19.04.0-handbook.patch @@ -0,0 +1,24 @@ +From 205f9336485b161bedb0f4fc4292247040166111 Mon Sep 17 00:00:00 2001 +From: Andreas Sturmlechner +Date: Sat, 20 Apr 2019 23:18:17 +0200 +Subject: [PATCH] Add kcmaudiocd doc subdir only if KF5DocTools_FOUND + +--- + kcmaudiocd/CMakeLists.txt | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) + +diff --git a/kcmaudiocd/CMakeLists.txt b/kcmaudiocd/CMakeLists.txt +index 2e0ce60..7b94b46 100644 +--- a/kcmaudiocd/CMakeLists.txt ++++ b/kcmaudiocd/CMakeLists.txt +@@ -26,4 +26,6 @@ install(FILES audiocd.desktop DESTINATION ${SERVICES_INSTALL_DIR}) + + ########### add handbook ################ + +-add_subdirectory(doc) ++if(KF5DocTools_FOUND) ++ add_subdirectory(doc) ++endif() +-- +2.21.0 + diff --git a/kde-apps/libkomparediff2/libkomparediff2-19.04.0.ebuild b/kde-apps/libkomparediff2/libkomparediff2-19.04.0.ebuild index f891ce3400f0..ef6d32a42c0d 100644 --- a/kde-apps/libkomparediff2/libkomparediff2-19.04.0.ebuild +++ b/kde-apps/libkomparediff2/libkomparediff2-19.04.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -KDE_TEST="optional" +KDE_TEST="true" inherit kde5 DESCRIPTION="KDE library to compare files and strings" diff --git a/kde-frameworks/Manifest.gz b/kde-frameworks/Manifest.gz index c859b60c18dd..e9b59774b776 100644 Binary files a/kde-frameworks/Manifest.gz and b/kde-frameworks/Manifest.gz differ diff --git a/kde-frameworks/ki18n/files/ki18n-5.57.0-python.patch b/kde-frameworks/ki18n/files/ki18n-5.57.0-python.patch new file mode 100644 index 000000000000..8b863e4e0fca --- /dev/null +++ b/kde-frameworks/ki18n/files/ki18n-5.57.0-python.patch @@ -0,0 +1,11 @@ +--- a/cmake/KF5I18nMacros.cmake.in 2019-04-07 09:28:26.000000000 +0200 ++++ b/cmake/KF5I18nMacros.cmake.in 2019-04-20 20:56:41.628484762 +0200 +@@ -31,7 +31,7 @@ + # solution if it cannot be found in $PATH when building applications. + set(_KI18N_PYTHON_EXECUTABLE "@PYTHON_EXECUTABLE@") + +-find_program(KI18N_PYTHON_EXECUTABLE NAMES python3 python2 python) ++find_program(KI18N_PYTHON_EXECUTABLE NAMES python) + if(NOT KI18N_PYTHON_EXECUTABLE) + set(KI18N_PYTHON_EXECUTABLE "${_KI18N_PYTHON_EXECUTABLE}") + endif() diff --git a/kde-frameworks/ki18n/ki18n-5.57.0.ebuild b/kde-frameworks/ki18n/ki18n-5.57.0.ebuild index 0793540bf12d..cd5cad14afbe 100644 --- a/kde-frameworks/ki18n/ki18n-5.57.0.ebuild +++ b/kde-frameworks/ki18n/ki18n-5.57.0.ebuild @@ -22,6 +22,8 @@ DEPEND="${RDEPEND} test? ( $(add_qt_dep qtconcurrent) ) " +PATCHES=( "${FILESDIR}/${P}-python.patch" ) + pkg_setup() { kde5_pkg_setup python-single-r1_pkg_setup diff --git a/kde-frameworks/solid/solid-5.57.0.ebuild b/kde-frameworks/solid/solid-5.57.0-r1.ebuild similarity index 97% rename from kde-frameworks/solid/solid-5.57.0.ebuild rename to kde-frameworks/solid/solid-5.57.0-r1.ebuild index 587f5833de5a..481500b18de7 100644 --- a/kde-frameworks/solid/solid-5.57.0.ebuild +++ b/kde-frameworks/solid/solid-5.57.0-r1.ebuild @@ -20,7 +20,7 @@ RDEPEND=" $(add_qt_dep qtwidgets) $(add_qt_dep qtxml) sys-fs/udisks:2 - udev? ( virtual/udev ) + udev? ( virtual/libudev:= ) " DEPEND="${RDEPEND} test? ( $(add_qt_dep qtconcurrent) ) diff --git a/kde-plasma/Manifest.gz b/kde-plasma/Manifest.gz index 457f165b3eb7..42e6772666b0 100644 Binary files a/kde-plasma/Manifest.gz and b/kde-plasma/Manifest.gz differ diff --git a/kde-plasma/systemsettings/systemsettings-5.15.4.ebuild b/kde-plasma/systemsettings/systemsettings-5.15.4.ebuild index 12a9f843d0f0..3822242a75c3 100644 --- a/kde-plasma/systemsettings/systemsettings-5.15.4.ebuild +++ b/kde-plasma/systemsettings/systemsettings-5.15.4.ebuild @@ -43,6 +43,14 @@ RDEPEND="${DEPEND} gtk? ( $(add_plasma_dep kde-gtk-config) ) " +src_prepare() { + kde5_src_prepare + + # FIXME: hangs in chroot; similar to bug #640432 + sed -e "s/^ecm_find_qmlmodule.*org\.kde\.kcm/#&/" \ + -i CMakeLists.txt || die +} + src_configure() { local mycmakeargs=( $(cmake-utils_use_find_package classic KF5KHtml) diff --git a/licenses/Manifest.gz b/licenses/Manifest.gz index fbadb607d0da..59692cafdccf 100644 Binary files a/licenses/Manifest.gz and b/licenses/Manifest.gz differ diff --git a/licenses/keynote b/licenses/keynote deleted file mode 100644 index 640f1eb99192..000000000000 --- a/licenses/keynote +++ /dev/null @@ -1,12 +0,0 @@ -Copyright (C) 1998, 1999 by Angelos D. Keromytis. - -Permission to use, copy, and modify this software without fee -is hereby granted, provided that this entire notice is included in -all copies of any software which is or includes a copy or -modification of this software. - -THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR -IMPLIED WARRANTY. IN PARTICULAR, THE AUTHORS MAKES NO -REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE -MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR -PURPOSE. diff --git a/licenses/qpopper b/licenses/qpopper deleted file mode 100644 index bb4cd9e2a945..000000000000 --- a/licenses/qpopper +++ /dev/null @@ -1,141 +0,0 @@ -Qpopper(tm) is licensed by QUALCOMM Incorporated under the following - terms and conditions. ANY USE OF QPOPPER CONSTITUTES AGREEMENT TO - THESE TERMS. - -1. Warranty Disclaimer. QPOPPER SOFTWARE IS PROVIDED TO THE USER "AS - IS." QUALCOMM MAKES NO WARRANTIES, EITHER EXPRESS OR IMPLIED, WITH - RESPECT TO THE QPOPPER SOFTWARE AND/OR ASSOCIATED MATERIALS - PROVIDED TO THE USER, INCLUDING BUT NOT LIMITED TO ANY WARRANTY OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR AGAINST - INFRINGEMENT. QUALCOMM does not warrant that the functions - contained in the software will meet your requirements, or that the - operation of the software will be uninterrupted or error-free, or - that defects in the software will be corrected. Furthermore, - QUALCOMM does not warrant or make any representations regarding - the use or the results of the use of the software or any - documentation provided therewith in terms of their correctness, - accuracy, reliability, or otherwise. No oral or written - information or advice given by QUALCOMM or a QUALCOMM - representative shall create a warranty or in any way increase the - scope of this warranty. - -2. Limitation of Liability. QUALCOMM AND ITS LICENSORS ARE NOT LIABLE - FOR ANY CLAIMS OR DAMAGES WHATSOEVER ARISING IN CONNECTION WITH - THE QPOPPER SOFTWARE, INCLUDING WITHOUT LIMITATION PROPERTY - DAMAGE, PERSONAL INJURY, INTELLECTUAL PROPERTY INFRINGEMENT, LOSS - OF PROFITS, OR INTERRUPTION OF BUSINESS, OR FOR ANY SPECIAL, - CONSEQUENTIAL OR INCIDENTAL DAMAGES, HOWEVER CAUSED, WHETHER - ARISING OUT OF BREACH OF WARRANTY, CONTRACT, TORT (INCLUDING - NEGLIGENCE), STRICT LIABILITY, OR OTHERWISE. - -3. Using and Distributing Qpopper. If a party agrees to these terms - and conditions, such party may copy and use Qpopper for any - purpose, and distribute unmodified complete copies of Qpopper to - any third party provided that such third party must agree to these - terms and conditions prior to any use of Qpopper. Failure to - include these license terms when distributing Qpopper shall be a - material breach of this agreement, and the party committing such - breach shall defend and indemnify QUALCOMM Incorporated against - all claims, losses, liabilities, damages, costs and expenses, - including attorney's fees, which QUALCOMM may incur in connection - with such breach. - -4. Modifying Qpopper. Qpopper consists of (i) intellectual property - owned by QUALCOMM Incorporated, and (ii) intellectual property - owned by the Regents of the University of California. Any - modifications to the U.C.-owned portions of Qpopper are subject to - the provisions of Section 7 below. A party to this agreement may - create derivative works of the QUALCOMM-owned portions of the - Qpopper software, distribute such derivative works to third - parties, and permit such third parties to copy and use such - derivative works subject to the following restrictions: - - (a) The protocol greeting banner and the CAPA IMPLEMENTATION - response tag must include clear notification that Qpopper has - been modified (for example, - "FooPopper-by-Foo-Networks-hacked-from-Qpopper-4.0"). - - (b) Detailed notification of all modifications must be clearly and - conspicuously included within the modified source files, and - in a separate document. All of the source files and the - document describing the changes must be distributed with the - modified software. - - (c) When distributing the modified software the distributing party - must clearly and conspicuously communicate to all recipients - that the modified software is produced by the party that - modified the software and is not a QUALCOMM product. - - (d) The term "Qpopper" shall not be used in connection with the - modified software except in a purely factual manner when - describing the history or development of the software. - - (e) The modified software must be licensed to end users using a - license agreement which expressly states that portions of the - modified software are based on code owned by QUALCOMM - Incorporated, that such QUALCOMM code is only provided on the - terms stated in this agreement, and that QUALCOMM bears no - responsibility whatsoever for any modifications to the QUALCOMM - code. - - (f) The modifying party shall defend and indemnify QUALCOMM - Incorporated against all claims, losses, liabilities, damages, - costs and expenses, including attorney's fees, which QUALCOMM - may incur in connection with any intellectual property - infringement or similar claim related to the modified - software, if such claim is related to that party's - modifications. - -5. Notices. QUALCOMM is a registered trademark and registered service - mark of QUALCOMM Incorporated. Qpopper is a trademark of QUALCOMM - Incorporated. QUALCOMM does not grant any party the right to use - such marks on any modified version of the Qpopper software. All - other trademarks and service marks are the property of their - respective owners. The Qpopper software, excluding the portions - owned by the Regents of the University of California, is Copyright - 1993-2006 QUALCOMM Incorporated. All rights not expressly granted - herein are reserved by QUALCOMM. - -6. General. This agreement is governed and interpreted in accordance - with the laws of the State of California without giving effect to - its conflict of laws provisions. Any claim arising out of or - related to this agreement must be brought exclusively in the state - or federal courts located in San Diego County, California. The - United Nations Convention on Contracts for the International Sale - of Goods is expressly disclaimed. If any provision of this - agreement shall be invalid, the validity of the remaining - provisions of this agreement shall not be affected. This - agreement is the entire and exclusive agreement between QUALCOMM - and any user of the Qpopper software with respect to the software - and supersedes all prior agreements (whether written or oral) and - other communications related to the software. - -7. IMPORTANT. - - This software program contains code, and/or derivatives or - modifications of code originating from the software program - "Popper." Popper is (c) Copyright 1989-1991 The Regents of the - University of California, All Rights Reserved. Popper was - created by Austin Shelton, Information Systems and Technology, - University of California, Berkeley. Permission from the Regents of - the University of California to use, copy, modify, and distribute - the "Popper" software contained herein for any purpose, without - fee, and without a written agreement is hereby granted, provided - that the above copyright notice and this paragraph and the - following two paragraphs appear in all copies. HOWEVER, ADDITIONAL - PERMISSIONS MAY BE NECESSARY FROM OTHER PERSONS OR ENTITIES, TO - USE DERIVATIVES OR MODIFICATIONS OF POPPER. - - IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY - PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL - DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THE - POPPER SOFTWARE, OR ITS DERIVATIVES OR MODIFICATIONS, AND ITS - DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN - ADVISED OF THE POSSIBLITY OF SUCH DAMAGE. - - THE UNIVERSITY OF CALIFORNIA, SPECIFICALLY DISCLAIMS ANY - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE - POPPER SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE - UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE - MAINTENANCE, SUPPORT, UPDATES, ENCHANCEMENTS, OR MODIFICATIONS. diff --git a/licenses/yahoo-patent-license-1.2 b/licenses/yahoo-patent-license-1.2 deleted file mode 100644 index 144257ac93e1..000000000000 --- a/licenses/yahoo-patent-license-1.2 +++ /dev/null @@ -1,167 +0,0 @@ -Yahoo! DomainKeys Patent License Agreement v1.2 - -Copyright (c) 2006, Yahoo! Inc. -All rights reserved. - -This Yahoo! DomainKeys Patent License Agreement (this "Agreement") is -between Yahoo! Inc. ("Yahoo!") and you ("Licensee"). By attempting to -exercise any rights granted under this Agreement, Licensee agrees to be -bound by all the terms and conditions set forth below, and subject to those -terms and conditions, Licensee may use the intellectual property described -below. - -1. LICENSE GRANT. - -1.1. Subject to the terms and conditions of this Agreement, Licensor hereby -grants You a royalty-free, perpetual, worldwide, sublicensable, -non-exclusive license under its rights to the Yahoo! Patent Claims to make, -use, sell, offer for sale, and/or import Implementations. - -2. DEFINITIONS. - -2.1. "DomainKeys Developer(s)" means Yahoo, Inc. ("Yahoo!"), Licensor, -and/or any other individual or entity who distributes Implementations under -this Agreement. - -2.2. "Implementations" means the specific portions of a hardware or -software implementation expressly required to be compliant with the -Specifications for the sole purpose of a sender verification solution in -connection with e-mail. - -2.3. "Licensor" means Yahoo! or any other individual or entity that elects -to use this Agreement to license Yahoo! Patent Claims to any licensee. - -2.4. "Specifications" means the specification having submission ID -"draft-delany-domainkeys-base-01.txt" dated Aug 2004 published through the -IETF (Internet Engineering Task Force). The Specifications may be found at -the following link: -http://antispam.yahoo.com/domainkeys/draft-delany-domainkeys-base-01.txt - -2.5. "Yahoo! Patent Claims" shall mean those claims of all Yahoo! foreign -and domestic patents and patent applications that base their priority on -U.S. Provisional Patent Application Ser. Nos. 60/497,794, filed Aug. 26, -2003, or 60/553,300, filed Mar. 15, 2004, or U.S. Patent Application Ser. -Nos. 10/671,319, filed Sep. 24, 2003, or 10/805,181, filed Mar. 19, 2004. - -2.6. "You" or "Your" means an individual, company, or other legal entity -exercising any rights under this Agreement. Any individual who accepts the -terms and conditions of this Agreement on behalf of a company or other -legal entity represents and warrants that the individual has the authority -to enter into this Agreement on behalf of the company or other legal -entity. - -3. TERMS. - -3.1. You agree not to assert against Yahoo!, any other DomainKeys Developer -or any of their respective licensees under Section 3.4, a patent -infringement claim based on the manufacture, use, sale, offer for sale -and/or importation of any Implementations ("Implementation IP Claim"). - -3.2. To indicate your assent to the terms and conditions of this Agreement -and in order to obtain a license to make, use, sell, offer for sale, and/or -import Implementations, You must include, attach or preserve the following -prominently displayed statement in the source code and object code of any -such Implementations: "This code incorporates intellectual property owned -by Yahoo! and licensed pursuant to the Yahoo! DomainKeys Patent License -Agreement.". - -3.3. You will not use the name of Yahoo! to endorse or promote any -products, services, or Implementations without specific prior written -permission of Yahoo!. "DomainKeys" is a trademark of Yahoo!. However, You -may state Your Implementations are "DomainKeys compliant", "supports -DomainKeys", or is "DomainKeys-enabled", without citation to Yahoo!. You -must create Your own product or service names or trademarks for Your -Implementations and You agree not to use the term "DomainKeys" in or as -part of a name or trademark for Your Implementations. - -3.4. You may choose to distribute Implementations under this Agreement or a -different agreement, provided that: - - (a) a copy of this Agreement or the different agreement is included with - each Implementation along with the following prominently displayed - statement: "By making, using, selling, offering for sale, importing, - and/or sublicensing Implementations as permitted, you agree to the terms - and conditions of the Yahoo! DomainKeys Patent License Agreement or - other agreement contained herein."; and - - (b) if distributed under a different agreement, such different agreement - contains terms and conditions that (i) provide no fewer rights, - privileges and immunities to DomainKeys Developers than the terms and - conditions of this Agreement, including, without limitation, Sections - 1.1, 3.1, 3.4, 3.7, 4.1, 4.2, and 4.3. - -3.5. You acknowledge that implementations of the Specifications may be -subject to U.S. export restriction and other applicable national and -international laws. You agree to comply with all export, re-export, or -import restrictions, laws, or regulations. - -3.6. Yahoo!, and only Yahoo!, may, from time to time and at its sole -discretion, update or modify the terms of this Agreement. If Yahoo! makes -any such modifications, You may continue under the terms and conditions of -this Agreement or agree to the updated or modified terms and conditions. -For the most recent version of this Agreement please contact Yahoo!. - -3.7. This Agreement and the rights hereunder will terminate: - - (a) automatically without notice from Yahoo!, if You at any time during - the term of this Agreement assert any Implementation IP Claim against - Yahoo!; - - (b) upon written notice from Yahoo!, if You at any time during the term - of this Agreement assert any Implementation IP Claim against any - DomainKeys Developer (other than Yahoo!) or any licensees of any - DomainKeys Developer; or - - (c) where (a) or (b) do not apply, automatically without notice from - Yahoo!, if You fail to comply with any term(s) of this Agreement and - fail to cure such breach within 30 days of You becoming aware of such - breach. - -3.8. This Agreement constitutes the entire agreement between the parties -with respect to the subject matter hereof. This Agreement shall be governed -by and construed under the laws of the United States and the State of -California without giving effect to California conflict of law provisions -or to construction provisions favoring either party. All actions arising -out of or relating to this Agreement that involve Yahoo! as a party will be -adjudicated exclusively by the Superior Court of the State of California -for the County of Santa Clara or the United States District Court for the -Northern District of California. - -3.9. In the event that any provision of this Agreement is deemed to be -invalid, such invalidity shall not affect the remainder of this Agreement. - -4. LEGAL DISCLAIMERS. - -4.1. THE YAHOO! PATENT CLAIMS, THIS AGREEMENT, THE DOMAINKEYS TRADEMARK, -AND THE SPECIFICATIONS ARE PROVIDED ON AN "AS IS" BASIS, WITHOUT -REPRESENTATIONS, WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR -IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY REPRESENTATIONS, WARRANTIES OR -CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A -PARTICULAR PURPOSE. You are solely responsible for determining the -appropriateness of exercising any rights under this Agreement and using the -Specifications and the DomainKeys trademark and assume all risks associated -in connection therewith, including, but not limited to, the risks and costs -of program errors, compliance with applicable laws, damage to or loss of -data, programs or equipment, and unavailability or interruption of -operations. - -4.2. You expressly acknowledge and agree that no assurances are provided by -DomainKeys Developers with respect to the validity of the Yahoo! Patent -Claims or that the Specifications, the DomainKeys trademark or any -implementations related to the Specifications or the DomainKeys trademark -do not infringe or misappropriate the patent, trademark or other -intellectual property rights of any other entity. DomainKeys Developers -disclaim any liability to You for claims brought by any other person or -entity based on infringement or misappropriation of intellectual property -rights or otherwise. As a condition to exercising the rights and licenses -granted hereunder, You hereby assume sole responsibility to secure any -other intellectual property rights needed. - -4.3. DOMAINKEYS DEVELOPERS SHALL NOT HAVE ANY LIABILITY FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE EXERCISE -OF ANY RIGHTS UNDER THIS AGREEMENT, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES, AND EVEN IF THE REMEDIES PROVIDED FOR IN THIS AGREEMENT FAIL -OF THEIR ESSENTIAL PURPOSE. diff --git a/mate-base/Manifest.gz b/mate-base/Manifest.gz index 181f3c4f5ea9..8c7b9a6731a4 100644 Binary files a/mate-base/Manifest.gz and b/mate-base/Manifest.gz differ diff --git a/mate-base/mate-session-manager/mate-session-manager-1.22.0.ebuild b/mate-base/mate-session-manager/mate-session-manager-1.22.0.ebuild index 3a3dc974b6c5..0550bb93150d 100644 --- a/mate-base/mate-session-manager/mate-session-manager-1.22.0.ebuild +++ b/mate-base/mate-session-manager/mate-session-manager-1.22.0.ebuild @@ -10,7 +10,7 @@ if [[ ${PV} != 9999 ]]; then fi DESCRIPTION="MATE session manager" -HOMEPAGE="http://mate-desktop.org/" +HOMEPAGE="https://mate-desktop.org/" LICENSE="GPL-2 LGPL-2 FDL-1.1" SLOT="0" diff --git a/mate-base/mate/mate-1.22.ebuild b/mate-base/mate/mate-1.22.ebuild index 3a2c455d18fe..20802025cab1 100644 --- a/mate-base/mate/mate-1.22.ebuild +++ b/mate-base/mate/mate-1.22.ebuild @@ -15,7 +15,7 @@ fi SRC_URI="" DESCRIPTION="Meta ebuild for MATE, a traditional desktop environment" -HOMEPAGE="http://mate-desktop.org" +HOMEPAGE="https://mate-desktop.org" LICENSE="metapackage" diff --git a/media-gfx/Manifest.gz b/media-gfx/Manifest.gz index 2211f0adf45b..052bc0d44cbf 100644 Binary files a/media-gfx/Manifest.gz and b/media-gfx/Manifest.gz differ diff --git a/media-gfx/gpicview/gpicview-0.2.5-r1.ebuild b/media-gfx/gpicview/gpicview-0.2.5-r1.ebuild index f2987a4ae56c..5f75526d2628 100644 --- a/media-gfx/gpicview/gpicview-0.2.5-r1.ebuild +++ b/media-gfx/gpicview/gpicview-0.2.5-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/lxde/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~ppc ~x86 ~x86-linux" +KEYWORDS="~alpha amd64 arm ~arm64 ~ppc ~x86 ~x86-linux" RDEPEND="virtual/jpeg:0 >=x11-libs/gtk+-2.6:2" diff --git a/media-gfx/scrot/scrot-0.8-r1.ebuild b/media-gfx/scrot/scrot-0.8-r1.ebuild index 4ca575a899da..e5f7314290bf 100644 --- a/media-gfx/scrot/scrot-0.8-r1.ebuild +++ b/media-gfx/scrot/scrot-0.8-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -11,7 +11,7 @@ SRC_URI="http://www.linuxbrit.co.uk/downloads/${P}.tar.gz" LICENSE="feh LGPL-2+" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" IUSE="" RDEPEND=">=media-libs/imlib2-1.0.3 diff --git a/media-gfx/scrot/scrot-0.8_p13-r1.ebuild b/media-gfx/scrot/scrot-0.8_p13-r1.ebuild index e410f8f78102..a713ce6f8987 100644 --- a/media-gfx/scrot/scrot-0.8_p13-r1.ebuild +++ b/media-gfx/scrot/scrot-0.8_p13-r1.ebuild @@ -14,7 +14,7 @@ SRC_URI="http://${PN}.sourcearchive.com/downloads/${MY_PV}/${PN}_0.8.orig.tar.gz LICENSE="feh LGPL-2+" SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ppc ~ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ppc ~ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd" IUSE="" RDEPEND=">=media-libs/imlib2-1.0.3 diff --git a/media-gfx/scrot/scrot-0.8_p13.ebuild b/media-gfx/scrot/scrot-0.8_p13.ebuild index 116fe3d5dd6f..3beccb11abbe 100644 --- a/media-gfx/scrot/scrot-0.8_p13.ebuild +++ b/media-gfx/scrot/scrot-0.8_p13.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -14,7 +14,7 @@ SRC_URI="http://${PN}.sourcearchive.com/downloads/${MY_PV}/${PN}_0.8.orig.tar.gz LICENSE="feh LGPL-2+" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="alpha amd64 arm ~arm64 hppa ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd" IUSE="" RDEPEND=">=media-libs/imlib2-1.0.3 diff --git a/media-gfx/slic3r/slic3r-9999.ebuild b/media-gfx/slic3r/slic3r-9999.ebuild index 7e99f7d16500..e5b72c099430 100644 --- a/media-gfx/slic3r/slic3r-9999.ebuild +++ b/media-gfx/slic3r/slic3r-9999.ebuild @@ -8,7 +8,7 @@ inherit eutils git-r3 perl-module DESCRIPTION="A mesh slicer to generate G-code for fused-filament-fabrication (3D printers)" HOMEPAGE="https://slic3r.org" SRC_URI="" -EGIT_REPO_URI="https://github.com/alexrj/Slic3r.git" +EGIT_REPO_URI="https://github.com/Slic3r/Slic3r.git" LICENSE="AGPL-3 CC-BY-3.0" SLOT="0" diff --git a/media-libs/Manifest.gz b/media-libs/Manifest.gz index b75f85bbaaee..1d0a66850b37 100644 Binary files a/media-libs/Manifest.gz and b/media-libs/Manifest.gz differ diff --git a/media-libs/giblib/giblib-1.2.4-r1.ebuild b/media-libs/giblib/giblib-1.2.4-r1.ebuild index 4217dce14038..8ce183b197b5 100644 --- a/media-libs/giblib/giblib-1.2.4-r1.ebuild +++ b/media-libs/giblib/giblib-1.2.4-r1.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="4" @@ -10,7 +10,7 @@ SRC_URI="http://www.linuxbrit.co.uk/downloads/${P}.tar.gz" LICENSE="feh" SLOT="0" -KEYWORDS="alpha amd64 arm ~hppa ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd" IUSE="static-libs" RDEPEND=">=media-libs/imlib2-1.0.3[X] diff --git a/media-libs/ilmbase/ilmbase-2.3.0.ebuild b/media-libs/ilmbase/ilmbase-2.3.0.ebuild index 399065d793e3..20e3bfc4af4d 100644 --- a/media-libs/ilmbase/ilmbase-2.3.0.ebuild +++ b/media-libs/ilmbase/ilmbase-2.3.0.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://github.com/openexr/openexr/releases/download/v${PV}/${P}.tar.gz LICENSE="BSD" SLOT="0/24" # based on SONAME -KEYWORDS="amd64 -arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris" +KEYWORDS="amd64 -arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris" IUSE="static-libs" DEPEND="virtual/pkgconfig[${MULTILIB_USEDEP}]" diff --git a/media-libs/jbig2dec/jbig2dec-0.14.ebuild b/media-libs/jbig2dec/jbig2dec-0.14.ebuild index 286e15e81ed3..c9a8095c28ea 100644 --- a/media-libs/jbig2dec/jbig2dec-0.14.ebuild +++ b/media-libs/jbig2dec/jbig2dec-0.14.ebuild @@ -10,7 +10,7 @@ SRC_URI="http://downloads.ghostscript.com/public/${PN}/${P}.tar.gz LICENSE="AGPL-3" SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="png static-libs test" RDEPEND="png? ( media-libs/libpng:0= )" diff --git a/media-libs/libpng/libpng-1.6.37.ebuild b/media-libs/libpng/libpng-1.6.37.ebuild index 8974ce1373e4..55bfc634b1d6 100644 --- a/media-libs/libpng/libpng-1.6.37.ebuild +++ b/media-libs/libpng/libpng-1.6.37.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz LICENSE="libpng2" SLOT="0/16" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" +KEYWORDS="alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" IUSE="apng cpu_flags_x86_sse neon static-libs" RDEPEND=">=sys-libs/zlib-1.2.8-r1:=[${MULTILIB_USEDEP}]" diff --git a/media-libs/libwebp/libwebp-1.0.2.ebuild b/media-libs/libwebp/libwebp-1.0.2.ebuild index d561963a322a..27287637664a 100644 --- a/media-libs/libwebp/libwebp-1.0.2.ebuild +++ b/media-libs/libwebp/libwebp-1.0.2.ebuild @@ -13,7 +13,7 @@ SRC_URI="http://downloads.webmproject.org/releases/webp/${MY_P}.tar.gz" LICENSE="BSD" SLOT="0/7" # subslot = libwebp soname version [[ "${PV}" = *_rc* ]] || \ -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="cpu_flags_x86_sse2 cpu_flags_x86_sse4_1 gif +jpeg neon opengl +png static-libs swap-16bit-csp tiff" # TODO: dev-lang/swig bindings in swig/ subdirectory diff --git a/media-libs/ming/Manifest b/media-libs/ming/Manifest index 6ab5f5bcf2df..fd30e2c4b34e 100644 --- a/media-libs/ming/Manifest +++ b/media-libs/ming/Manifest @@ -1,2 +1 @@ DIST ming-0.20181112.tar.gz 14889061 BLAKE2B a276f7aaf386f0233b9e92a95daf22b7fd192654275e99f70106b7abf2ec3963ae8d70a82addd2690e6c7038a0a52e41a27fbd5c9b38cc96d1ab617a3bfc522d SHA512 a4d3ed04c96ffc6d040ace3451f2d99a3fdda0726b45cee30913ca2dc8d9f24ff156a643eeb888d05eb199dd9f2caf4ce4f84fe40e1b95bf2f6c9e038155fdc3 -DIST ming-0_4_8.tar.gz 14908459 BLAKE2B df89beab98a7fbdcbefccad3a2fb013453405a7dba757131a61f06d9e40b7e1fe7beeadab42c113b12cff24b91cb1e76e9fabee0e1b4af58e2127eba13cc27bc SHA512 e395acde9119ad32f4cedd500bcceee70bdd563222a41dda899cc318d5e34eb580abc38ac39c6dec7821913a0a70d2f953fc81f52255b623e34f7c3aaafbc9c0 diff --git a/media-libs/ming/ming-0.20181112.ebuild b/media-libs/ming/ming-0.20181112.ebuild index 8ae7ffd72353..b185a867bd79 100644 --- a/media-libs/ming/ming-0.20181112.ebuild +++ b/media-libs/ming/ming-0.20181112.ebuild @@ -19,7 +19,7 @@ SRC_URI="https://github.com/libming/libming/archive/${EGIT_COMMIT}.tar.gz -> ${P LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd" IUSE="+perl php +python static-libs" RDEPEND="perl? ( dev-lang/perl:= ) diff --git a/media-libs/ming/ming-0.4.8-r1.ebuild b/media-libs/ming/ming-0.4.8-r1.ebuild deleted file mode 100644 index eba066b84485..000000000000 --- a/media-libs/ming/ming-0.4.8-r1.ebuild +++ /dev/null @@ -1,100 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 ) -PHP_EXT_NAME=ming -PHP_EXT_OPTIONAL_USE=php -AUTOTOOLS_AUTORECONF=yes -GENTOO_DEPEND_ON_PERL=no -inherit autotools distutils-r1 flag-o-matic multilib perl-module vcs-snapshot - -DESCRIPTION="An Open Source library for Flash movie generation" -HOMEPAGE="http://ming.sourceforge.net/" -SRC_URI="https://github.com/libming/libming/archive/${P//./_}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd" -IUSE="+perl php +python static-libs" - -RDEPEND="perl? ( dev-lang/perl:= ) - python? ( ${PYTHON_DEPS} ) - media-libs/freetype:= - media-libs/libpng:0= - media-libs/giflib:= - sys-libs/zlib:= - !media-libs/libswf" -DEPEND="${RDEPEND} - sys-devel/flex - virtual/pkgconfig - virtual/yacc" -PDEPEND="php? ( dev-php/ming-php )" - -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" -S=${WORKDIR}/${P//./_} - -PATCHES=( - "${FILESDIR}"/${PN}-0.4.8-CVE-2017-8782.patch - "${FILESDIR}"/${PN}-0.4.8-freetype_pkgconfig.patch -) - -# Tests only work when the package is tested on a system -# which does not presently have any version of ming installed. -RESTRICT="test" - -src_prepare() { - default - - # Let's get rid of the TEXTRELS, link dynamic. Use gif. - sed -i \ - -e 's/libming.a/libming.so/' \ - -e 's/lungif/lgif/' \ - perl_ext/Makefile.PL - - sed -i -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' configure.in || die - - eautoreconf -} - -src_configure() { - # build is sensitive to -O3 (bug #297437) - replace-flags -O3 -O2 - - # build python via distutils calls, disable here - # php is done in dev-php/ming-php - local myconf=( - --disable-python - --disable-php - $(use_enable static-libs static) - $(use_enable perl) - ) - econf "${myconf[@]}" -} - -run_distutils() { - if use python; then - pushd py_ext > /dev/null || die - distutils-r1_"${@}" - popd > /dev/null || die - fi -} - -src_compile() { - # some parallel make issues on flex/bison - emake -C src/actioncompiler -j1 - emake - - run_distutils ${FUNCNAME} -} - -src_install() { - run_distutils ${FUNCNAME} - - emake DESTDIR="${D}" INSTALLDIRS="vendor" install - einstalldocs - - perl_delete_localpod - find "${ED}"usr/lib* -name '*.la' -delete -} diff --git a/media-libs/openexr/openexr-2.3.0.ebuild b/media-libs/openexr/openexr-2.3.0.ebuild index edefe5731168..cc33a552036d 100644 --- a/media-libs/openexr/openexr-2.3.0.ebuild +++ b/media-libs/openexr/openexr-2.3.0.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/openexr/openexr/releases/download/v${PV}/${P}.tar.gz LICENSE="BSD" SLOT="0/24" # based on SONAME -KEYWORDS="amd64 -arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris" +KEYWORDS="amd64 -arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris" IUSE="cpu_flags_x86_avx examples static-libs" RDEPEND=" diff --git a/media-libs/openimageio/files/openimageio-1.7.17-openexr-2.3.0.patch b/media-libs/openimageio/files/openimageio-1.7.17-openexr-2.3.0.patch new file mode 100644 index 000000000000..e4bd3562adc2 --- /dev/null +++ b/media-libs/openimageio/files/openimageio-1.7.17-openexr-2.3.0.patch @@ -0,0 +1,51 @@ +Use PkgConfig to find OpenEXR. Otherwise, the code fails +when OpenEXR/OpenEXRConfig.h is a multilib wrapper. +Changes taken from openimageio-1.8.17. + +--- openimageio-1.7.17/src/cmake/modules/FindOpenEXR.cmake ++++ openimageio-1.7.17/src/cmake/modules/FindOpenEXR.cmake +@@ -27,6 +27,13 @@ + set (ILMBASE_PTHREADS ${CMAKE_THREAD_LIBS_INIT}) + endif () + ++# Attempt to find OpenEXR with pkgconfig ++find_package(PkgConfig) ++if (PKG_CONFIG_FOUND) ++ pkg_check_modules(_ILMBASE QUIET IlmBase) ++ pkg_check_modules(_OPENEXR QUIET OpenEXR>=2.0.0) ++endif (PKG_CONFIG_FOUND) ++ + # List of likely places to find the headers -- note priority override of + # OPENEXR_CUSTOM_INCLUDE_DIR and ${OPENEXR_HOME}/include. + # ILMBASE is needed in case ilmbase an openexr are installed in separate +@@ -35,6 +42,8 @@ + ${OPENEXR_CUSTOM_INCLUDE_DIR} + ${OPENEXR_HOME}/include + ${ILMBASE_HOME}/include ++ ${_ILMBASE_INCLUDEDIR} ++ ${_OPENEXR_INCLUDEDIR} + /usr/local/include + /usr/include + /usr/include/${CMAKE_LIBRARY_ARCHITECTURE} +@@ -53,7 +62,11 @@ + find_path (OPENEXR_INCLUDE_PATH OpenEXR/OpenEXRConfig.h) + + # Try to figure out version number +-if (EXISTS "${OPENEXR_INCLUDE_PATH}/OpenEXR/ImfMultiPartInputFile.h") ++if (DEFINED _OPENEXR_VERSION AND NOT "${_OPENEXR_VERSION}" STREQUAL "") ++ set (OPENEXR_VERSION "${_OPENEXR_VERSION}") ++ string (REGEX REPLACE "([0-9]+)\\.[0-9]+" "\\1" OPENEXR_VERSION_MAJOR "${_OPENEXR_VERSION}") ++ string (REGEX REPLACE "[0-9]+\\.([0-9]+)" "\\1" OPENEXR_VERSION_MINOR "${_OPENEXR_VERSION}") ++elseif (EXISTS "${OPENEXR_INCLUDE_PATH}/OpenEXR/ImfMultiPartInputFile.h") + # Must be at least 2.0 + file(STRINGS "${OPENEXR_INCLUDE_PATH}/OpenEXR/OpenEXRConfig.h" TMP REGEX "^#define OPENEXR_VERSION_STRING .*$") + string (REGEX MATCHALL "[0-9]+[.0-9]+" OPENEXR_VERSION ${TMP}) +@@ -90,6 +103,8 @@ + ${GENERIC_LIBRARY_PATHS} + ${OPENEXR_INCLUDE_PATH}/../lib + ${ILMBASE_INCLUDE_PATH}/../lib ++ ${_ILMBASE_LIBDIR} ++ ${_OPENEXR_LIBDIR} + /usr/local/lib + /usr/local/lib/${CMAKE_LIBRARY_ARCHITECTURE} + /usr/lib diff --git a/media-libs/openimageio/openimageio-1.7.17.ebuild b/media-libs/openimageio/openimageio-1.7.17.ebuild index 0b3a2d7fe5ff..2e5bb080fb59 100644 --- a/media-libs/openimageio/openimageio-1.7.17.ebuild +++ b/media-libs/openimageio/openimageio-1.7.17.ebuild @@ -61,6 +61,7 @@ DEPEND="${RDEPEND} PATCHES=( "${FILESDIR}/${P}-use-gnuinstalldirs.patch" "${FILESDIR}/${P}-make-python-and-boost-detection-more-generic.patch" + "${FILESDIR}/${P}-openexr-2.3.0.patch" # bug 683126 ) DOCS=( CHANGES.md CREDITS.md README.md src/doc/${PN}.pdf ) diff --git a/media-libs/zita-resampler/Manifest b/media-libs/zita-resampler/Manifest new file mode 100644 index 000000000000..60d50f605c7c --- /dev/null +++ b/media-libs/zita-resampler/Manifest @@ -0,0 +1 @@ +DIST zita-resampler-1.6.2.tar.bz2 125539 BLAKE2B d2e04fb5e0efbde3432ce973df59a11d2a184146d124b662712a5de2d9c243f6564899f190f7a7b68a9e01bcaab05c92b91ebcbf942473134a12a85e4e08c603 SHA512 d547419dd222c8a399d8f196efa1ec88a3f781275b696ae2fe1bb6e2fc329285affb8aace85972c304ad256becc4a155534dd5ef4ce3c57cbc9dcca0122b670c diff --git a/media-libs/zita-resampler/files/zita-resampler-1.6.2-makefile.patch b/media-libs/zita-resampler/files/zita-resampler-1.6.2-makefile.patch new file mode 100644 index 000000000000..29735e7729a0 --- /dev/null +++ b/media-libs/zita-resampler/files/zita-resampler-1.6.2-makefile.patch @@ -0,0 +1,90 @@ +diff -urN zita-resampler-1.6.2.orig/apps/Makefile zita-resampler-1.6.2/apps/Makefile +--- zita-resampler-1.6.2.orig/apps/Makefile 2018-08-24 21:41:47.000000000 +0300 ++++ zita-resampler-1.6.2/apps/Makefile 2019-04-13 18:49:50.005800712 +0300 +@@ -23,18 +23,17 @@ + MANDIR ?= /usr/share/man/man1 + + VERSION = 1.6.0 +-CPPFLAGS += -MMD -MP -DVERSION=\"$(VERSION)\" +-CXXFLAGS += -O2 -ffast-math -Wall +-CXXFLAGS += -march=native ++CPPFLAGS += -MMD -MP -DVERSION=\"$(VERSION)\" -I ../source ++CXXFLAGS += -ffast-math -Wall + + +-all: zresample zretune zresample.1.gz zretune.1.gz ++all: zresample zretune zresample.1 zretune.1 + + + ZRESAMPLE_O = zresample.o audiofile.o dither.o + zresample: LDLIBS += -lzita-resampler -lsndfile -lrt + zresample: $(ZRESAMPLE_O) +- $(CXX) $(LDFLAGS) -o $@ $(ZRESAMPLE_O) $(LDLIBS) ++ $(CXX) -L ../source $(LDFLAGS) -o $@ $(ZRESAMPLE_O) $(LDLIBS) + $(ZRESAMPLE_O): + -include $(ZRESAMPLE_O:%.o=%.d) + +@@ -42,25 +41,18 @@ + ZRETUNE_O = zretune.o audiofile.o dither.o + zretune: LDLIBS += -lzita-resampler -lsndfile -lrt + zretune: $(ZRETUNE_O) +- $(CXX) $(LDFLAGS) -o $@ $(ZRETUNE_O) $(LDLIBS) ++ $(CXX) -L ../source $(LDFLAGS) -o $@ $(ZRETUNE_O) $(LDLIBS) + $(ZRETUNE_O): + -include $(ZRETUNE_O:%.o=%.d) + + +-zresample.1.gz: zresample.1 +- gzip -c zresample.1 > zresample.1.gz +- +-zretune.1.gz: zretune.1 +- gzip -c zretune.1 > zretune.1.gz +- +- + install: all +- install -d $(BINDIR) +- install -d $(MANDIR) ++ install -d $(DESTDIR)$(BINDIR) ++ install -d $(DESTDIR)$(MANDIR) + install -m 755 zresample $(DESTDIR)$(BINDIR) + install -m 755 zretune $(DESTDIR)$(BINDIR) +- install -m 644 zresample.1.gz $(DESTDIR)$(MANDIR) +- install -m 644 zretune.1.gz $(DESTDIR)$(MANDIR) ++ install -m 644 zresample.1 $(DESTDIR)$(MANDIR) ++ install -m 644 zretune.1 $(DESTDIR)$(MANDIR) + + uninstall: + /bin/rm -f $(DESTDIR)$(BINDIR)/zresample +diff -urN zita-resampler-1.6.2.orig/source/Makefile zita-resampler-1.6.2/source/Makefile +--- zita-resampler-1.6.2.orig/source/Makefile 2018-08-24 21:41:47.000000000 +0300 ++++ zita-resampler-1.6.2/source/Makefile 2019-04-13 18:49:25.936129640 +0300 +@@ -32,8 +32,7 @@ + + + CPPFLAGS += -I. -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS +-CXXFLAGS += -Wall -fPIC -O2 -ffast-math +-CXXFLAGS += -march=native ++CXXFLAGS += -Wall -fPIC -ffast-math + LDFLAGS += + LDLIBS += + +@@ -47,6 +46,9 @@ + zita-resampler/vresampler.h zita-resampler/cresampler.h + + ++$(ZITA-RESAMPLER_SO): $(ZITA-RESAMPLER_MIN) ++ ln -sf $(ZITA-RESAMPLER_MIN) $(ZITA-RESAMPLER_SO) ++ + $(ZITA-RESAMPLER_MIN): $(ZITA-RESAMPLER_O) + $(CXX) -shared $(LDFLAGS) -Wl,-soname,$(ZITA-RESAMPLER_MAJ) -o $(ZITA-RESAMPLER_MIN) $(ZITA-RESAMPLER_O) $(ZITA-RESAMPLER_DEP) + +@@ -58,8 +60,8 @@ + install -d $(DESTDIR)$(LIBDIR) + install -m 644 $(ZITA-RESAMPLER_H) $(DESTDIR)$(INCDIR)/zita-resampler + install -m 755 $(ZITA-RESAMPLER_MIN) $(DESTDIR)$(LIBDIR) +- ldconfig + ln -sf $(ZITA-RESAMPLER_MIN) $(DESTDIR)$(LIBDIR)/$(ZITA-RESAMPLER_SO) ++ ln -sf $(ZITA-RESAMPLER_MIN) $(DESTDIR)$(LIBDIR)/$(ZITA-RESAMPLER_MAJ) + + uninstall: + /bin/rm -rf $(DESTDIR)$(INCDIR)/zita-resampler diff --git a/media-libs/zita-resampler/metadata.xml b/media-libs/zita-resampler/metadata.xml new file mode 100644 index 000000000000..d939c6084b53 --- /dev/null +++ b/media-libs/zita-resampler/metadata.xml @@ -0,0 +1,20 @@ + + + + + alexander@tsoy.me + Alexander Tsoy + + + proxy-maint@gentoo.org + Proxy Maintainers + + + Libzita-resampler is a C++ library for resampling audio signals. + It is designed to be used within a real-time processing context, + to be fast, and to provide high-quality sample rate conversion. + + + Install zresample and zretune tools + + diff --git a/media-libs/zita-resampler/zita-resampler-1.6.2.ebuild b/media-libs/zita-resampler/zita-resampler-1.6.2.ebuild new file mode 100644 index 000000000000..754fa1dfdde9 --- /dev/null +++ b/media-libs/zita-resampler/zita-resampler-1.6.2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="C++ library for real-time resampling of audio signals" +HOMEPAGE="http://kokkinizita.linuxaudio.org/linuxaudio/" +SRC_URI="http://kokkinizita.linuxaudio.org/linuxaudio/downloads/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0/1" +KEYWORDS="~amd64" +IUSE="tools" + +RDEPEND="tools? ( media-libs/libsndfile )" +DEPEND="${RDEPEND}" +BDEPEND="" + +HTML_DOCS="docs/." + +PATCHES=( "${FILESDIR}"/${PN}-1.6.2-makefile.patch ) + +src_compile() { + tc-export CXX + + emake -C source + if use tools; then + emake -C apps + fi +} + +src_install() { + emake -C source DESTDIR="${D}" PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}"/usr/$(get_libdir) install + if use tools; then + emake -C apps DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install + fi + + einstalldocs +} diff --git a/media-sound/Manifest.gz b/media-sound/Manifest.gz index 815702bff228..a67e20dfd974 100644 Binary files a/media-sound/Manifest.gz and b/media-sound/Manifest.gz differ diff --git a/media-sound/dir2ogg/dir2ogg-0.12.ebuild b/media-sound/dir2ogg/dir2ogg-0.12.ebuild index 369dd6a6a7bc..a09a25bd5d6c 100644 --- a/media-sound/dir2ogg/dir2ogg-0.12.ebuild +++ b/media-sound/dir2ogg/dir2ogg-0.12.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://jak-linux.org/projects/${PN}/${MY_PR}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ~ppc ~sparc ~x86" +KEYWORDS="amd64 ~ppc sparc ~x86" IUSE="aac flac mac mp3 musepack wavpack wma" REQUIRED_USE="${PYTHON_REQUIRED_USE}" diff --git a/media-sound/guitarix/Manifest b/media-sound/guitarix/Manifest new file mode 100644 index 000000000000..52c41818c5c3 --- /dev/null +++ b/media-sound/guitarix/Manifest @@ -0,0 +1 @@ +DIST guitarix2-0.38.1.tar.xz 80768608 BLAKE2B fd745955d8b44da72c669e69c36294d4a2131f2b5868e7e254a0b33768852ba9fcf9302f2a7ebd962c8a6dc02a543f70574466c51341a371c9fb988989123e50 SHA512 54d08b4ed20b9df4c69d0c86e4d668c53fffde8919f5570f376cee903926bd01945169d177d0d45976569ea55b28f8dca7884ac6dfe2f063df6583467559c5b7 diff --git a/media-sound/guitarix/guitarix-0.38.1.ebuild b/media-sound/guitarix/guitarix-0.38.1.ebuild new file mode 100644 index 000000000000..a35bae00fe20 --- /dev/null +++ b/media-sound/guitarix/guitarix-0.38.1.ebuild @@ -0,0 +1,73 @@ +# Copyright 2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python2_7 ) +PYTHON_REQ_USE='threads(+)' + +inherit python-any-r1 waf-utils xdg + +MY_P="${PN}2-${PV}" + +DESCRIPTION="Virtual guitar amplifier for Linux" +HOMEPAGE="http://guitarix.org/" +SRC_URI="mirror://sourceforge/guitarix/guitarix/${MY_P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="bluetooth debug lv2 nls +standalone zeroconf" +REQUIRED_USE="|| ( lv2 standalone )" + +COMMON_DEPEND="dev-cpp/eigen:3 + dev-cpp/glibmm:2 + dev-cpp/gtkmm:2.4 + dev-libs/glib:2 + >=media-libs/libsndfile-1.0.17 + >=media-libs/zita-convolver-3 + media-libs/zita-resampler + >=net-misc/curl-7.26.0 + >=sci-libs/fftw-3.1.2:3.0= + x11-libs/gtk+:2 + lv2? ( media-libs/lv2 ) + standalone? ( + dev-libs/boost:= + media-libs/liblrdf + media-libs/lilv + virtual/jack + bluetooth? ( net-wireless/bluez ) + zeroconf? ( net-dns/avahi ) + ) +" +# clearlooks gtk engine and roboto fonts are required for correct ui rendering +RDEPEND="${COMMON_DEPEND} + x11-themes/gtk-engines + standalone? ( + media-fonts/roboto + ) +" +DEPEND="${COMMON_DEPEND} + virtual/pkgconfig + nls? ( dev-util/intltool ) +" + +DOCS=( changelog README ) + +src_configure() { + waf-utils_src_configure \ + --cxxflags-debug="" \ + --cxxflags-release="-DNDEBUG" \ + --ldflags="${LDFLAGS}" \ + --enable-lfs \ + --lib-dev \ + --no-desktop-update \ + --no-faust \ + --no-ldconfig \ + --shared-lib \ + $(use_enable nls) \ + $(usex bluetooth "" "--no-bluez") \ + $(usex debug "--debug" "") \ + $(usex lv2 "--lv2dir=${EPREFIX}/usr/$(get_libdir)/lv2" "--no-lv2 --no-lv2-gui") \ + $(usex standalone "" "--no-standalone") \ + $(usex zeroconf "" "--no-avahi") +} diff --git a/media-sound/guitarix/metadata.xml b/media-sound/guitarix/metadata.xml new file mode 100644 index 000000000000..567aa7cf7675 --- /dev/null +++ b/media-sound/guitarix/metadata.xml @@ -0,0 +1,19 @@ + + + + + alexander@tsoy.me + Alexander Tsoy + + + proxy-maint@gentoo.org + Proxy Maintainers + + + guitarix is a virtual guitar amplifier for Linux running on Jack Audio Connection Kit + + + Build lv2 plugins + Build standalone application + + diff --git a/media-sound/mixxx/Manifest b/media-sound/mixxx/Manifest index 6fad19a1ca29..63212185b0e7 100644 --- a/media-sound/mixxx/Manifest +++ b/media-sound/mixxx/Manifest @@ -1,4 +1,4 @@ DIST mixxx-2.1.1.tar.gz 34458368 BLAKE2B cf718cfea64fe71e2ccd5f299454fc9d396266052cc2516fa4494216a9d8ae9cea62858bf02e026d5072705df780d6243616d1d1705e3f251bc2392b4dc3d166 SHA512 c0047a238bf39e464f2bc25646ba03138d0b8d27cde667ca7b12bfba5f40d339ce4b426853e048d695b2c59c847e88322e27b91bead467899d7bf1cb43358f20 -DIST mixxx-2.1.5.tar.gz 34474975 BLAKE2B 3daf5598cc7efe162157004116ba7fed2d53a2f97b513abd03d7ce55731a9de1e85ae5c8d82e1cc1369201f3694b1a295223f70509540ca471e6e785070acbd4 SHA512 f46f528fdbd39a14a16ebce3e53c9bae12299cfd405d69e812d87c66e9f3728542f73f1156a352c0637b194f4bb35ecdd599e4bbbfbaa7ebdddcf9a1eb792854 DIST mixxx-2.1.7.tar.gz 34534265 BLAKE2B 63bd7b0002b2b595e8e7b3be6b282e55465221dcdf1a0dbafc454663e87061059dbac66b764c3c3f59446d3794f2d43f9dd0f087ffa6cb7215361d8d0e51dca6 SHA512 976bb76b360ec8a81a6e497d193e7e450afadb66be4c2648a198884a3bafee7efed3b2fa57d0c5cb9bfa216e69e51db588cdc274aaca8dc0f22486949732167a +DIST mixxx-2.1.8.tar.gz 34652727 BLAKE2B d996bb07a5914e5a3b8f276130e1f8fb46a9493e192e45a1b65cdb961b1a7ca0e98fed69d894ace8e61ee72231a1d8ba731921e46d3601ad0d41a79aa04a47ab SHA512 c1423bec9b3a9654ece5ae68c0f72975dcd2a9cee377520e56d4f35366a3bb23157c9c64f0f2b8a61d36e5d818216b64cb6aae53ca2b8e3dfa865b8911a7e1eb DIST mixxx-2.2.0.tar.gz 34639153 BLAKE2B b99d05508f3f59debf026fdc5102f213eaa10a747c234e3f8f1782af9c07fb30c4641ca3c15fc634e2e8081966f8897751fb7bc72928f8b07a3c9c6d9d728530 SHA512 8174b504d236cde36c636985e0e224915f0be69b13691bf0d88c21087c20c1100ff55561b6e395d97fe5b21a0229fe9ecdac2493cb44fa99a42549c368fa2134 diff --git a/media-sound/mixxx/mixxx-2.1.5.ebuild b/media-sound/mixxx/mixxx-2.1.8.ebuild similarity index 98% rename from media-sound/mixxx/mixxx-2.1.5.ebuild rename to media-sound/mixxx/mixxx-2.1.8.ebuild index 1b5e84701fd5..ab11da0490bc 100644 --- a/media-sound/mixxx/mixxx-2.1.5.ebuild +++ b/media-sound/mixxx/mixxx-2.1.8.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 diff --git a/media-sound/ncmpcpp/Manifest b/media-sound/ncmpcpp/Manifest index 9f7bfb8c9fff..45854bd826f7 100644 --- a/media-sound/ncmpcpp/Manifest +++ b/media-sound/ncmpcpp/Manifest @@ -1,3 +1,2 @@ DIST ncmpcpp-0.7.7.tar.bz2 443801 BLAKE2B b0bf1f6264f94fc1d0dce5b7ec8d85607427e5bf8955914fddffd8dec94850e6dd20dd83a966a25353d6ec23a61e92751d83fddec8202d9a843e0ed9e3b32077 SHA512 a0bbe85f154c40513d41e85810de86ed21109b72fb0f2bdb0b78dcbddb3770aff5422b5bb7fbac2b76634c5b9aaf843bed5fc16fc672fcd71bbae911f65c0034 -DIST ncmpcpp-0.8.1.tar.bz2 464123 BLAKE2B 0edb57fc3a0527dea085a10736ff2cdca3ea25fdbb4aac686f4c9db6403fc1ee2f0f724aa3c3411104f355ba11e76193ede2a52bc550ff9bed33261cc426dd87 SHA512 2b1b615672910f6b55d4a3e1842f677b8c72659a86dca74d9c306612038d7b765f622e4b8948f14d8a3f4fa913d413d128ed8726f70d7a09cfe95d3c1fe87d15 DIST ncmpcpp-0.8.2.tar.bz2 465713 BLAKE2B 0d07477b3473e1ac7362175cef4bfb085ebdb4c8b1e77f7bb68d8bf4c645fdcccd067d12e2080a740ade18c57dd055f270d2e50096f0ad3afaa40175e19259cf SHA512 9384edd162f40af23e4f26f437356520f117e4e2ab513ed3de132d2f11e597082d1cb7f0dd3696660d0c9bb85ad03e31fb921c97a11c7b28b32c5907fdbb8e8f diff --git a/media-sound/ncmpcpp/ncmpcpp-0.8.1.ebuild b/media-sound/ncmpcpp/ncmpcpp-0.8.1.ebuild deleted file mode 100644 index bd2f837dbb38..000000000000 --- a/media-sound/ncmpcpp/ncmpcpp-0.8.1.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="featureful ncurses based MPD client inspired by ncmpc" -HOMEPAGE="https://rybczak.net/ncmpcpp/" -SRC_URI="${HOMEPAGE}stable/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86" -IUSE="clock icu outputs taglib visualizer" - -RDEPEND=" - !dev-libs/boost:0/1.57.0 - >=media-libs/libmpdclient-2.1 - dev-libs/boost:=[icu?,nls,threads] - net-misc/curl - sys-libs/ncurses:= - sys-libs/readline:* - icu? ( dev-libs/icu ) - taglib? ( media-libs/taglib ) - visualizer? ( sci-libs/fftw:3.0= ) -" -DEPEND=" - ${RDEPEND} - virtual/pkgconfig -" - -src_prepare() { - default - - sed -i -e '/^docdir/d' {,doc/}Makefile{.am,.in} || die - sed -i -e 's|COPYING||g' Makefile{.am,.in} || die -} - -src_configure() { - econf \ - $(use_enable clock) \ - $(use_enable outputs) \ - $(use_enable visualizer) \ - $(use_with taglib) \ - $(use_with visualizer fftw) \ - --docdir=/usr/share/doc/${PF} -} - -src_install() { - default - - dodoc doc/{bindings,config} -} - -pkg_postinst() { - echo - elog "Example configuration files have been installed at" - elog "${ROOT}usr/share/doc/${PF}" - elog "${P} uses ~/.ncmpcpp/config and ~/.ncmpcpp/bindings" - elog "as user configuration files." - echo - if use visualizer; then - elog "If you want to use the visualizer, you need mpd with fifo enabled." - echo - fi -} diff --git a/media-sound/ncmpcpp/ncmpcpp-0.8.2-r1.ebuild b/media-sound/ncmpcpp/ncmpcpp-0.8.2-r1.ebuild index 50bc9b2e8d63..6db57f594392 100644 --- a/media-sound/ncmpcpp/ncmpcpp-0.8.2-r1.ebuild +++ b/media-sound/ncmpcpp/ncmpcpp-0.8.2-r1.ebuild @@ -9,7 +9,7 @@ SRC_URI="${HOMEPAGE}stable/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="amd64 ~arm hppa ~ppc ~ppc64 ~sparc x86" IUSE="clock icu outputs taglib visualizer" RDEPEND=" diff --git a/media-sound/ncmpcpp/ncmpcpp-0.8.2.ebuild b/media-sound/ncmpcpp/ncmpcpp-0.8.2.ebuild deleted file mode 100644 index 58f8e679616a..000000000000 --- a/media-sound/ncmpcpp/ncmpcpp-0.8.2.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="featureful ncurses based MPD client inspired by ncmpc" -HOMEPAGE="https://rybczak.net/ncmpcpp/" -SRC_URI="${HOMEPAGE}stable/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm hppa ~ppc ~ppc64 ~sparc x86" -IUSE="clock icu outputs taglib visualizer" - -RDEPEND=" - !dev-libs/boost:0/1.57.0 - >=media-libs/libmpdclient-2.1 - dev-libs/boost:=[icu?,nls,threads] - net-misc/curl - sys-libs/ncurses:= - sys-libs/readline:* - icu? ( dev-libs/icu ) - taglib? ( media-libs/taglib ) - visualizer? ( sci-libs/fftw:3.0= ) -" -DEPEND=" - ${RDEPEND} - virtual/pkgconfig -" - -src_prepare() { - default - - sed -i -e '/^docdir/d' {,doc/}Makefile{.am,.in} || die - sed -i -e 's|COPYING||g' Makefile{.am,.in} || die -} - -src_configure() { - econf \ - $(use_enable clock) \ - $(use_enable outputs) \ - $(use_enable visualizer) \ - $(use_with taglib) \ - $(use_with visualizer fftw) \ - --docdir=/usr/share/doc/${PF} -} - -src_install() { - default - - dodoc doc/{bindings,config} -} - -pkg_postinst() { - echo - elog "Example configuration files have been installed at" - elog "${ROOT}usr/share/doc/${PF}" - elog "${P} uses ~/.ncmpcpp/config and ~/.ncmpcpp/bindings" - elog "as user configuration files." - echo - if use visualizer; then - elog "If you want to use the visualizer, you need mpd with fifo enabled." - echo - fi -} diff --git a/media-sound/pulseaudio/pulseaudio-12.2-r1.ebuild b/media-sound/pulseaudio/pulseaudio-12.2-r1.ebuild index 2e5d1c72e912..7ef205735e65 100644 --- a/media-sound/pulseaudio/pulseaudio-12.2-r1.ebuild +++ b/media-sound/pulseaudio/pulseaudio-12.2-r1.ebuild @@ -15,7 +15,7 @@ SRC_URI="https://freedesktop.org/software/pulseaudio/releases/${P}.tar.xz" LICENSE="!gdbm? ( LGPL-2.1 ) gdbm? ( GPL-2 )" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux" # +alsa-plugin as discussed in bug #519530 IUSE="+alsa +alsa-plugin +asyncns bluetooth +caps dbus doc equalizer elogind gconf diff --git a/media-sound/soundconverter/soundconverter-3.0.2.ebuild b/media-sound/soundconverter/soundconverter-3.0.2.ebuild index 502d7be8e386..e0324bbe7b4c 100644 --- a/media-sound/soundconverter/soundconverter-3.0.2.ebuild +++ b/media-sound/soundconverter/soundconverter-3.0.2.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/${PN}-${MY_PV}" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="aac flac libnotify mp3 ogg opus vorbis" REQUIRED_USE="${PYTHON_REQUIRED_USE}" diff --git a/media-sound/upmpdcli/Manifest b/media-sound/upmpdcli/Manifest index c879d05a9cf7..4f82bbfb7dab 100644 --- a/media-sound/upmpdcli/Manifest +++ b/media-sound/upmpdcli/Manifest @@ -1,2 +1,2 @@ -DIST upmpdcli-1.3.6.tar.gz 515712 BLAKE2B 6de6a3af2e474a3f8d12865e3cdd420f31955e88a0eb1c8ffd019809666c4c613631d642b34bb5fa473fceb7207613d90584fdf856b6a49899f9c2aa31b2b471 SHA512 280b02116786c86fd5f1e472fa9070b3a6d846acd670e36d476b150d4a3e91e5a6d1546b7053b1f35a2e0de553c8517640934af010d371d3cbed248592be502d DIST upmpdcli-1.4.0.tar.gz 469357 BLAKE2B edd46e86f367ff2f88346cfb4cb249dae4463095553bb220fbd9a4078315044ec7591f58c30a0f20840a9f217230e46bc3b3569989a0ae2c05a44aa140c234c4 SHA512 1ed1f0a89a02610d70fb9e380dcbdbd8d636bc4a0964a16d27bd7c04126674f7f14e50e5fe521a430a06ea04ecef1275c7ad5f1c276daae1c285b73cceba9dec +DIST upmpdcli-1.4.2.tar.gz 477650 BLAKE2B 8bc2f86e8821aaee29f969e6031553f29e3224fdaf4b9c7d443f55bda5f321f36607dbb7dc0af15f0d1e7b006e93595cd1d668f9d1975e8673a80b218ea7f570 SHA512 be855214b55686422689ce786103ff50748a9f9e7e556c8dbeaa7e39e0229a3e0b56502bdbeb7071771706416cd2ff36592cb5245b505d8438f0ba75c200e9c2 diff --git a/media-sound/upmpdcli/files/upmpdcli-1.3.6.initd b/media-sound/upmpdcli/files/upmpdcli-1.3.6.initd deleted file mode 100644 index f37623e8f2c1..000000000000 --- a/media-sound/upmpdcli/files/upmpdcli-1.3.6.initd +++ /dev/null @@ -1,14 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -description="UPnP Media Renderer front-end for MPD, the Music Player Daemon" -pidfile=/var/run/upmpdcli.pid -command=/usr/bin/upmpdcli -config="${config:-/etc/upmpdcli.conf}" -command_args="-c ${config}" -command_args_background="-D" - -depend() { - need localmount mpd -} diff --git a/media-sound/upmpdcli/upmpdcli-1.4.0.ebuild b/media-sound/upmpdcli/upmpdcli-1.4.0.ebuild index f1851fb80b75..a5f87fad529c 100644 --- a/media-sound/upmpdcli/upmpdcli-1.4.0.ebuild +++ b/media-sound/upmpdcli/upmpdcli-1.4.0.ebuild @@ -11,7 +11,7 @@ LICENSE="GPL-2" SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz" SLOT="0" -KEYWORDS="~amd64" +KEYWORDS="amd64" IUSE="thirdparty" DEPEND=" diff --git a/media-sound/upmpdcli/upmpdcli-1.3.6.ebuild b/media-sound/upmpdcli/upmpdcli-1.4.2.ebuild similarity index 73% rename from media-sound/upmpdcli/upmpdcli-1.3.6.ebuild rename to media-sound/upmpdcli/upmpdcli-1.4.2.ebuild index dc2832f79f0f..9d24547be31e 100644 --- a/media-sound/upmpdcli/upmpdcli-1.3.6.ebuild +++ b/media-sound/upmpdcli/upmpdcli-1.4.2.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 inherit systemd user @@ -11,19 +11,18 @@ LICENSE="GPL-2" SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz" SLOT="0" -KEYWORDS="amd64" +KEYWORDS="~amd64" IUSE="thirdparty" DEPEND=" dev-libs/jsoncpp media-libs/libmpdclient net-libs/libmicrohttpd - =net-libs/libupnpp-0.17.0 " RDEPEND=" ${DEPEND} thirdparty? ( dev-python/requests ) - media-sound/mpd[curl] " pkg_setup() { @@ -33,12 +32,17 @@ pkg_setup() { src_install() { default - newinitd "${FILESDIR}/${P}.initd" "${PN}" + newinitd "${FILESDIR}/${PN}.initd" "${PN}" newconfd "${FILESDIR}/${PN}.confd" "${PN}" systemd_dounit systemd/upmpdcli.service } pkg_postinst() { + einfo + einfo "This package no longer assumes that upmpdcli is driving an" + einfo "mpd instance on the same host (https://bugs.gentoo.org/670130)." + einfo "Probably it is though, so be sure your mpd is built with" + einfo "USE=curl." einfo einfo "Consider installing media-sound/sc2mpd. If upmpdcli" einfo "detects sc2mpd at run-time, capabilities are added" diff --git a/media-video/Manifest.gz b/media-video/Manifest.gz index c35a7a9923c7..311846fdc24d 100644 Binary files a/media-video/Manifest.gz and b/media-video/Manifest.gz differ diff --git a/media-video/mkvtoolnix/Manifest b/media-video/mkvtoolnix/Manifest index d1aceef702c3..ba9296564860 100644 --- a/media-video/mkvtoolnix/Manifest +++ b/media-video/mkvtoolnix/Manifest @@ -2,3 +2,4 @@ DIST mkvtoolnix-29.0.0.tar.xz 7051380 BLAKE2B 8f5694abdbeb95c13e3a97740e3e81c02f DIST mkvtoolnix-30.1.0.tar.xz 7274296 BLAKE2B 0b0c7a9954269d0c6f071bd808ddf18eaf2d004dc2d8cf209f7021624458a9a29a7f705ad08446bd769b3a4e73732a3b2a269385868041fd887eff1d92c07558 SHA512 0c29a7a246b7e7ddccbb7ec51d7dd45d06530e01d7f1c8fa901b1a94dc6c7d9db0890009f200c3bebee572e24c826f7c05a53c16e8d11cfac2c68a3d13b96a53 DIST mkvtoolnix-31.0.0.tar.xz 7282492 BLAKE2B 1c0d4a6de81ddb1953e3f7997ef62ffeeb9562cacaf5df33320cd8f2263d6303986c3a1a129e9b6ac986efd4a290046aba41e38ae1ed83e7eec00dab099a19fc SHA512 085bc7d5a2b2e692d584bef5f31aab8dc25883cc93d9f2b2c35ea6356d64536763b6e9f7cef2dbaf1b789e73c05cb5f9e76ce76c54f034aa9d46c30983d1a5b7 DIST mkvtoolnix-32.0.0.tar.xz 7282928 BLAKE2B cf051474c3e4735f5c3fdda44bd9065539ea6333ad4683f61b1a7d8ecc6fab2e45bd0ae37f82acdbc11c01704c319356d2baa9fdfe1e8e48ffcf65b05f484836 SHA512 a209360fcad3164ebf127b7a54542b2b791318cef1ac8acbb24e64458bd9fe693ea6fa2b44b6e85504decab9668296637d9d4ce706effcf6a9f0d7bdea64793a +DIST mkvtoolnix-33.1.0.tar.xz 7286068 BLAKE2B 2ff55bf8fa1e1356144931e1586783ccbc937ce8f7048e85a8ca0a29c69f419a4a1f43eecdc606674d3314c642e58a06c98900e4fc5e7069a30806c61401f646 SHA512 40023a1d2c1c27fd5f490ec017852304442bee2c2ae2d62cf042c3fba56652ed7489a2b0ad9d5dd0fa57eb0af99a49a936666d85836f57cb9417868356874a83 diff --git a/media-video/mkvtoolnix/mkvtoolnix-33.1.0.ebuild b/media-video/mkvtoolnix/mkvtoolnix-33.1.0.ebuild new file mode 100644 index 000000000000..8837542e21d4 --- /dev/null +++ b/media-video/mkvtoolnix/mkvtoolnix-33.1.0.ebuild @@ -0,0 +1,130 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit toolchain-funcs versionator multiprocessing xdg-utils qmake-utils gnome2-utils + +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="https://gitlab.com/mbunkus/mkvtoolnix.git" + inherit git-r3 +else + SRC_URI="https://mkvtoolnix.download/sources/${P}.tar.xz" + KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +fi + +DESCRIPTION="Tools to create, alter, and inspect Matroska files" +HOMEPAGE="https://mkvtoolnix.download/ https://gitlab.com/mbunkus/mkvtoolnix" + +LICENSE="GPL-2" +SLOT="0" +IUSE="debug nls pch test qt5" + +# check NEWS.md for build system changes entries for boost/libebml/libmatroska +# version requirement updates and other packaging info +RDEPEND=" + dev-libs/libfmt:= + >=dev-libs/boost-1.49.0:= + >=dev-libs/libebml-1.3.7:= + dev-libs/pugixml + media-libs/flac + >=media-libs/libmatroska-1.5.0:= + media-libs/libogg + media-libs/libvorbis + sys-apps/file + sys-libs/zlib + qt5? ( + dev-qt/qtcore:5 + dev-qt/qtdbus:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtwidgets:5 + dev-qt/qtconcurrent:5 + dev-qt/qtmultimedia:5 + app-text/cmark:0= + ) +" +DEPEND="${RDEPEND} + dev-cpp/nlohmann_json + dev-libs/utfcpp + dev-ruby/rake + virtual/pkgconfig + dev-libs/libxslt + app-text/docbook-xsl-stylesheets + nls? ( + sys-devel/gettext + app-text/po4a + ) + test? ( dev-cpp/gtest ) +" + +DOCS="AUTHORS NEWS.md README.md" + +pkg_pretend() { + # https://bugs.gentoo.org/419257 + local ver=4.6 + local msg="You need at least GCC ${ver}.x for C++11 range-based 'for' and nullptr support." + if ! version_is_at_least ${ver} $(gcc-version); then + eerror ${msg} + die ${msg} + fi +} + +src_prepare() { + default + [[ ${PV} == "9999" ]] && { ./autogen.sh || die; } +} + +src_configure() { + local myeconfargs=( + $(use_enable debug) + $(usex pch "" --disable-precompiled-headers) + $(use_enable qt5 qt) + $(use_with nls gettext) + $(usex nls "" --with-po4a-translate=false) + --disable-update-check + --disable-optimization + --docdir="${EPREFIX}"/usr/share/doc/${PF} + --with-boost="${EPREFIX}"/usr + --with-boost-libdir="${EPREFIX}"/usr/$(get_libdir) + ) + + if use qt5 ; then + # ac/qt5.m4 finds default Qt version set by qtchooser, bug #532600 + myeconfargs+=( + --with-moc=$(qt5_get_bindir)/moc + --with-uic=$(qt5_get_bindir)/uic + --with-rcc=$(qt5_get_bindir)/rcc + --with-qmake=$(qt5_get_bindir)/qmake + ) + fi + + econf "${myeconfargs[@]}" +} + +src_compile() { + rake V=1 -j$(makeopts_jobs) || die +} + +src_test() { + rake V=1 -j$(makeopts_jobs) tests:unit || die + rake V=1 -j$(makeopts_jobs) tests:run_unit || die +} + +src_install() { + DESTDIR="${D}" rake -j$(makeopts_jobs) install || die + + einstalldocs + doman doc/man/*.1 +} + +pkg_postrm() { + xdg_mimeinfo_database_update + xdg_desktop_database_update + gnome2_icon_cache_update +} + +pkg_postinst() { + xdg_mimeinfo_database_update + xdg_desktop_database_update + gnome2_icon_cache_update +} diff --git a/metadata/Manifest.gz b/metadata/Manifest.gz index 0033b954b2a6..7fa58d24c444 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 c6080967c0d7..aea8570b6f4e 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Sat, 20 Apr 2019 16:08:48 +0000 +Mon, 22 Apr 2019 05:08:47 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index c6080967c0d7..aea8570b6f4e 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Sat, 20 Apr 2019 16:08:48 +0000 +Mon, 22 Apr 2019 05:08:47 +0000 diff --git a/metadata/md5-cache/Manifest.gz b/metadata/md5-cache/Manifest.gz index 493a1c32b739..ed24da193ded 100644 Binary files a/metadata/md5-cache/Manifest.gz and b/metadata/md5-cache/Manifest.gz differ diff --git a/metadata/md5-cache/app-admin/Manifest.gz b/metadata/md5-cache/app-admin/Manifest.gz index 8c32198fcffc..e1f4044faba6 100644 Binary files a/metadata/md5-cache/app-admin/Manifest.gz and b/metadata/md5-cache/app-admin/Manifest.gz differ diff --git a/metadata/md5-cache/app-admin/apache-tools-2.4.34 b/metadata/md5-cache/app-admin/apache-tools-2.4.34 deleted file mode 100644 index 91da477a76d7..000000000000 --- a/metadata/md5-cache/app-admin/apache-tools-2.4.34 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare -DEPEND=>=dev-libs/apr-1.5.0:1= dev-libs/apr-util:1= dev-libs/expat dev-libs/libpcre kernel_linux? ( sys-apps/util-linux ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) sys-devel/libtool -DESCRIPTION=Useful Apache tools - htdigest, htpasswd, ab, htdbm -EAPI=7 -HOMEPAGE=https://httpd.apache.org/ -IUSE=libressl ssl -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 ~m68k-mint ~sparc64-solaris ~x64-solaris -LICENSE=Apache-2.0 -RDEPEND=>=dev-libs/apr-1.5.0:1= dev-libs/apr-util:1= dev-libs/expat dev-libs/libpcre kernel_linux? ( sys-apps/util-linux ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) -RESTRICT=test -SLOT=0 -SRC_URI=mirror://apache/httpd/httpd-2.4.34.tar.bz2 -_eclasses_=eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=aaabbbb2b73b864c6d68355c11e1f305 diff --git a/metadata/md5-cache/app-admin/apache-tools-2.4.38 b/metadata/md5-cache/app-admin/apache-tools-2.4.38 deleted file mode 100644 index dcb795583880..000000000000 --- a/metadata/md5-cache/app-admin/apache-tools-2.4.38 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare -DEPEND=>=dev-libs/apr-1.5.0:1= dev-libs/apr-util:1= dev-libs/expat dev-libs/libpcre kernel_linux? ( sys-apps/util-linux ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) sys-devel/libtool -DESCRIPTION=Useful Apache tools - htdigest, htpasswd, ab, htdbm -EAPI=7 -HOMEPAGE=https://httpd.apache.org/ -IUSE=libressl ssl -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 ~m68k-mint ~sparc64-solaris ~x64-solaris -LICENSE=Apache-2.0 -RDEPEND=>=dev-libs/apr-1.5.0:1= dev-libs/apr-util:1= dev-libs/expat dev-libs/libpcre kernel_linux? ( sys-apps/util-linux ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) -RESTRICT=test -SLOT=0 -SRC_URI=mirror://apache/httpd/httpd-2.4.38.tar.bz2 -_eclasses_=eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=4538dd52daef91560f206d799f3a82e8 diff --git a/metadata/md5-cache/app-admin/apache-tools-2.4.39 b/metadata/md5-cache/app-admin/apache-tools-2.4.39 index 0609a1fd325f..f05d54186a1c 100644 --- a/metadata/md5-cache/app-admin/apache-tools-2.4.39 +++ b/metadata/md5-cache/app-admin/apache-tools-2.4.39 @@ -4,11 +4,11 @@ DESCRIPTION=Useful Apache tools - htdigest, htpasswd, ab, htdbm EAPI=7 HOMEPAGE=https://httpd.apache.org/ IUSE=libressl ssl -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 ~m68k-mint ~sparc64-solaris ~x64-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 ~m68k-mint ~sparc64-solaris ~x64-solaris LICENSE=Apache-2.0 RDEPEND=>=dev-libs/apr-1.5.0:1= dev-libs/apr-util:1= dev-libs/expat dev-libs/libpcre kernel_linux? ( sys-apps/util-linux ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) RESTRICT=test SLOT=0 SRC_URI=mirror://apache/httpd/httpd-2.4.39.tar.bz2 _eclasses_=eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=1a6de548d4115d6b15ecedb573519e2a +_md5_=4538dd52daef91560f206d799f3a82e8 diff --git a/metadata/md5-cache/app-admin/cgmanager-0.41 b/metadata/md5-cache/app-admin/cgmanager-0.41 index 135e90831925..52d3d68209aa 100644 --- a/metadata/md5-cache/app-admin/cgmanager-0.41 +++ b/metadata/md5-cache/app-admin/cgmanager-0.41 @@ -4,10 +4,10 @@ DESCRIPTION=Control Group manager daemon EAPI=6 HOMEPAGE=https://linuxcontainers.org/cgmanager/introduction/ IUSE=pam selinux -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=LGPL-2.1 RDEPEND=sys-libs/libnih[dbus] sys-apps/dbus selinux? ( sec-policy/selinux-cgmanager ) SLOT=0 SRC_URI=https://linuxcontainers.org/downloads/cgmanager/cgmanager-0.41.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 pam 69b1cf8e80a877ad42a03042aaa66a5e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=15b82c845d5e7c07f33412cafa62b1ed +_md5_=1b3d9614c349f895797d4d6ce9af25ca diff --git a/metadata/md5-cache/app-admin/metalog-20181125 b/metadata/md5-cache/app-admin/metalog-20181125 index ccc91652ce23..119214303d03 100644 --- a/metadata/md5-cache/app-admin/metalog-20181125 +++ b/metadata/md5-cache/app-admin/metalog-20181125 @@ -4,10 +4,10 @@ DESCRIPTION=A highly configurable replacement for syslogd/klogd EAPI=6 HOMEPAGE=https://github.com/hvisage/metalog IUSE=unicode -KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~x64-cygwin ~x86-fbsd +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~x64-cygwin ~x86-fbsd LICENSE=GPL-2 RDEPEND=>=dev-libs/libpcre-3.4 SLOT=0 SRC_URI=https://github.com/hvisage/metalog/archive/metalog-20181125.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=887596a3fbd1288ebec243adc389b0c4 +_md5_=94016326870848740da454d44bff46ce diff --git a/metadata/md5-cache/app-admin/packagekit-base-1.1.12 b/metadata/md5-cache/app-admin/packagekit-base-1.1.12 index eda9e7b98047..cffb72b99182 100644 --- a/metadata/md5-cache/app-admin/packagekit-base-1.1.12 +++ b/metadata/md5-cache/app-admin/packagekit-base-1.1.12 @@ -3,12 +3,12 @@ DEPEND=>=app-shells/bash-completion-2 dev-db/sqlite:3 >=dev-libs/dbus-glib-0.74 DESCRIPTION=Manage packages in a secure way using a cross-distro and cross-architecture API EAPI=6 HOMEPAGE=https://www.freedesktop.org/software/PackageKit/ -IUSE=cron command-not-found elogind +introspection entropy systemd test vala python_targets_python2_7 +IUSE=command-not-found consolekit cron elogind entropy +introspection systemd test vala python_targets_python2_7 KEYWORDS=~alpha amd64 ~arm ~mips ~ppc ~ppc64 x86 LICENSE=GPL-2 -RDEPEND=>=app-shells/bash-completion-2 dev-db/sqlite:3 >=dev-libs/dbus-glib-0.74 >=dev-libs/glib-2.54.0:2 >=sys-auth/polkit-0.114 >=sys-apps/dbus-1.3.0 python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)] elogind? ( >=sys-auth/elogind-229.4 ) introspection? ( >=dev-libs/gobject-introspection-0.9.9:= ) systemd? ( >=sys-apps/systemd-213 ) >=app-portage/layman-2[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)] || ( >=sys-apps/portage-2.2[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)] sys-apps/portage-mgorny[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)] ) entropy? ( >=sys-apps/entropy-234[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)] ) !systemd? ( !elogind? ( sys-auth/consolekit ) ) -REQUIRED_USE=python_targets_python2_7 ?? ( elogind systemd ) vala? ( introspection ) entropy? ( python_targets_python2_7 ) +RDEPEND=>=app-shells/bash-completion-2 dev-db/sqlite:3 >=dev-libs/dbus-glib-0.74 >=dev-libs/glib-2.54.0:2 >=sys-auth/polkit-0.114 >=sys-apps/dbus-1.3.0 python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)] elogind? ( >=sys-auth/elogind-229.4 ) introspection? ( >=dev-libs/gobject-introspection-0.9.9:= ) systemd? ( >=sys-apps/systemd-213 ) >=app-portage/layman-2[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)] || ( >=sys-apps/portage-2.2[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)] sys-apps/portage-mgorny[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)] ) consolekit? ( sys-auth/consolekit ) entropy? ( >=sys-apps/entropy-234[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)] ) +REQUIRED_USE=python_targets_python2_7 ^^ ( consolekit elogind systemd ) vala? ( introspection ) entropy? ( python_targets_python2_7 ) SLOT=0/18 SRC_URI=https://www.freedesktop.org/software/PackageKit/releases/PackageKit-1.1.12.tar.xz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 bash-completion-r1 47a7402d95930413ce25ba8d857339bb desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 vala a94a0fb4c35fe91774bb72ec8f3c861f vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=c3ca003db4baa005f8835ac7482fae62 +_md5_=bee16170e7c2e425445dfd1079f1dc48 diff --git a/metadata/md5-cache/app-arch/Manifest.gz b/metadata/md5-cache/app-arch/Manifest.gz index dac8543f7064..3acf479169be 100644 Binary files a/metadata/md5-cache/app-arch/Manifest.gz and b/metadata/md5-cache/app-arch/Manifest.gz differ diff --git a/metadata/md5-cache/app-arch/unrar-5.7.4 b/metadata/md5-cache/app-arch/unrar-5.7.4 index ac258cf3ffbf..a5a693c2888a 100644 --- a/metadata/md5-cache/app-arch/unrar-5.7.4 +++ b/metadata/md5-cache/app-arch/unrar-5.7.4 @@ -2,10 +2,10 @@ DEFINED_PHASES=compile configure install prepare DESCRIPTION=Uncompress rar files EAPI=6 HOMEPAGE=https://www.rarlab.com/rar_add.htm -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris LICENSE=unRAR RDEPEND=!<=app-arch/unrar-gpl-0.0.1_p20080417 SLOT=0/5 SRC_URI=https://www.rarlab.com/rar/unrarsrc-5.7.4.tar.gz -> unrar-5.7.4.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=9cf2ba0d8b4b33a1c4d7e5b02b5b15b1 +_md5_=ec5ceb15d02db744af69e43929e1de92 diff --git a/metadata/md5-cache/app-arch/xarchiver-0.5.4.14 b/metadata/md5-cache/app-arch/xarchiver-0.5.4.14 index 1204f143e2ca..5eca890ad768 100644 --- a/metadata/md5-cache/app-arch/xarchiver-0.5.4.14 +++ b/metadata/md5-cache/app-arch/xarchiver-0.5.4.14 @@ -4,10 +4,10 @@ DESCRIPTION=A GTK+ archive manager that can be used with Thunar EAPI=6 HOMEPAGE=https://github.com/ib/xarchiver IUSE=doc -KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux +KEYWORDS=alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2:= x11-libs/gtk+:3= !! xarchiver-0.5.4.14.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=e528a077cee9f7d25eed8d254949fcf7 +_md5_=21d8918a71a5b53a824e492386fa9d8a diff --git a/metadata/md5-cache/app-crypt/Manifest.gz b/metadata/md5-cache/app-crypt/Manifest.gz index d1b86f02fcee..7fac1f37cf51 100644 Binary files a/metadata/md5-cache/app-crypt/Manifest.gz and b/metadata/md5-cache/app-crypt/Manifest.gz differ diff --git a/metadata/md5-cache/app-crypt/bcwipe-1.9.13 b/metadata/md5-cache/app-crypt/bcwipe-1.9.13 index 49fb412c83b6..8e77b1344c87 100644 --- a/metadata/md5-cache/app-crypt/bcwipe-1.9.13 +++ b/metadata/md5-cache/app-crypt/bcwipe-1.9.13 @@ -5,6 +5,7 @@ HOMEPAGE=https://www.jetico.com/ IUSE=doc KEYWORDS=amd64 ~arm ppc x86 LICENSE=bestcrypt +RESTRICT=mirror bindist SLOT=0 SRC_URI=https://www.jetico.com/linux/BCWipe-1.9-13.tar.gz doc? ( https://www.jetico.com/linux/BCWipe.doc.tgz ) -_md5_=17347a20caa26b4d3acdcd6a0b74ac0a +_md5_=3e8f7041362b06d69aa3c4e4acb346d9 diff --git a/metadata/md5-cache/app-crypt/bestcrypt-2.0.14 b/metadata/md5-cache/app-crypt/bestcrypt-2.0.14 index 807551383c64..04c6ada10ba7 100644 --- a/metadata/md5-cache/app-crypt/bestcrypt-2.0.14 +++ b/metadata/md5-cache/app-crypt/bestcrypt-2.0.14 @@ -7,7 +7,8 @@ IUSE=kernel_linux kernel_linux KEYWORDS=~amd64 ~x86 LICENSE=bestcrypt RDEPEND=kernel_linux? ( virtual/modutils ) +RESTRICT=mirror bindist SLOT=0 SRC_URI=https://www.jetico.com/linux/BestCrypt-2.0.14.tar.gz _eclasses_=eutils 6e6c2737b59a4b982de6fb3ecefd87f8 linux-info 953c3b1c472dcadbf62098a9301327f2 linux-mod dc67f5064036fbaf4bb77b68a9caeda0 multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=6cef6f12df8d6f95bf253f589420783e +_md5_=c58694ff9c24082e4edc431f148e5830 diff --git a/metadata/md5-cache/app-crypt/ccrypt-1.11 b/metadata/md5-cache/app-crypt/ccrypt-1.11 index d9bc30921da8..b01b2b6d769b 100644 --- a/metadata/md5-cache/app-crypt/ccrypt-1.11 +++ b/metadata/md5-cache/app-crypt/ccrypt-1.11 @@ -2,8 +2,8 @@ DEFINED_PHASES=- DESCRIPTION=Encryption and decryption EAPI=7 HOMEPAGE=https://sourceforge.net/projects/ccrypt/ -KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos +KEYWORDS=amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos LICENSE=GPL-2 SLOT=0 SRC_URI=mirror://sourceforge/ccrypt/1.11/ccrypt-1.11.tar.gz -_md5_=a5e262d651839a74b40bf27d02c07870 +_md5_=800dfa7261264440fd8a13e1396ddba0 diff --git a/metadata/md5-cache/app-crypt/gpgme-1.13.0 b/metadata/md5-cache/app-crypt/gpgme-1.13.0 index fe1d4cbf5f2a..97bba5db0f5f 100644 --- a/metadata/md5-cache/app-crypt/gpgme-1.13.0 +++ b/metadata/md5-cache/app-crypt/gpgme-1.13.0 @@ -5,11 +5,11 @@ DESCRIPTION=GnuPG Made Easy is a library for making GnuPG easier to use EAPI=7 HOMEPAGE=http://www.gnupg.org/related_software/gpgme IUSE=common-lisp static-libs cxx python qt5 python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 -KEYWORDS=~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~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 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 LGPL-2.1 RDEPEND=>=app-crypt/gnupg-2 >=dev-libs/libassuan-2.0.2:= >=dev-libs/libgpg-error-1.29:= python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) qt5? ( dev-qt/qtcore:5 ) cxx? ( !=app-portage/elt-patches-20170815 ! DESCRIPTION=Expanded md5sum program with recursive and comparison options EAPI=6 HOMEPAGE=http://md5deep.sourceforge.net/ -KEYWORDS=amd64 arm ~arm64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos +KEYWORDS=amd64 arm arm64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos LICENSE=public-domain GPL-2 SLOT=0 SRC_URI=https://github.com/jessek/hashdeep/archive/release-4.4.tar.gz -> md5deep-4.4.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=0935047e08a144a65736afbecadbe9fe +_md5_=98e11094ab60bcda525562eee0fdbe8b diff --git a/metadata/md5-cache/app-editors/Manifest.gz b/metadata/md5-cache/app-editors/Manifest.gz index 15e936db2e4d..bf2f74efc3ee 100644 Binary files a/metadata/md5-cache/app-editors/Manifest.gz and b/metadata/md5-cache/app-editors/Manifest.gz differ diff --git a/metadata/md5-cache/app-editors/gvim-9999 b/metadata/md5-cache/app-editors/gvim-9999 index c85bd358cd0d..566749d44c35 100644 --- a/metadata/md5-cache/app-editors/gvim-9999 +++ b/metadata/md5-cache/app-editors/gvim-9999 @@ -6,8 +6,8 @@ HOMEPAGE=https://vim.sourceforge.io/ https://github.com/vim/vim IUSE=acl aqua cscope debug gtk gtk2 lua luajit motif neXt netbeans nls perl python racket ruby selinux session tcl python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 python_single_target_python2_7 python_single_target_python3_5 python_single_target_python3_6 python_single_target_python3_7 LICENSE=vim RDEPEND=~app-editors/vim-core-9999 >=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt acl? ( kernel_linux? ( sys-apps/acl ) ) !aqua? ( gtk? ( x11-libs/gtk+:3 x11-libs/libXft ) !gtk? ( gtk2? ( >=x11-libs/gtk+-2.6:2 x11-libs/libXft ) !gtk2? ( motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( x11-libs/libXaw ) ) ) ) ) cscope? ( dev-util/cscope ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) nls? ( virtual/libintl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads(+)] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads(+)] ) python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),python_single_target_python2_7(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.4 dev-lang/ruby:2.5 dev-lang/ruby:2.6 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) session? ( x11-libs/libSM ) tcl? ( dev-lang/tcl:0= ) -REQUIRED_USE=luajit? ( lua ) python? ( ^^ ( python_single_target_python2_7 python_single_target_python3_5 python_single_target_python3_6 python_single_target_python3_7 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_5? ( python_targets_python3_5 ) python_single_target_python3_6? ( python_targets_python3_6 ) python_single_target_python3_7? ( python_targets_python3_7 ) ) +REQUIRED_USE=python? ( ^^ ( python_single_target_python2_7 python_single_target_python3_5 python_single_target_python3_6 python_single_target_python3_7 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_5? ( python_targets_python3_5 ) python_single_target_python3_6? ( python_targets_python3_6 ) python_single_target_python3_7? ( python_targets_python3_7 ) ) RESTRICT=test SLOT=0 _eclasses_=bash-completion-r1 47a7402d95930413ce25ba8d857339bb desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf git-r3 0d4635eeb5a96cd5315597a47eba25c9 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 prefix e51c7882b7b721e54e684f7eb143cbfe preserve-libs ef207dc62baddfddfd39a164d9797648 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf vim-doc af2c81a1feeb0a99e91bee3e20769edb xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=406a689f4613fee4b3cd3db5c74b9b26 +_md5_=3bd623fff2566a8468f11e0f816894e8 diff --git a/metadata/md5-cache/app-editors/neovim-0.3.4-r1 b/metadata/md5-cache/app-editors/neovim-0.3.4-r1 index 6513733bfe6b..afb131f46886 100644 --- a/metadata/md5-cache/app-editors/neovim-0.3.4-r1 +++ b/metadata/md5-cache/app-editors/neovim-0.3.4-r1 @@ -5,10 +5,10 @@ DESCRIPTION=Vim-fork focused on extensibility and agility. EAPI=7 HOMEPAGE=https://neovim.io IUSE=+clipboard +luajit +nvimpager python remote ruby +tui +jemalloc -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~arm ~x86 LICENSE=Apache-2.0 vim RDEPEND=dev-libs/libuv:0= dev-libs/msgpack:0= luajit? ( dev-lang/luajit:2 ) !luajit? ( dev-lang/lua:= dev-lua/LuaBitOp ) tui? ( dev-libs/libtermkey >=dev-libs/unibilium-2.0.0:0= ) dev-libs/libvterm dev-lua/lpeg[luajit=] dev-lua/mpack[luajit=] jemalloc? ( dev-libs/jemalloc ) net-libs/libnsl python? ( dev-python/neovim-python-client ) ruby? ( dev-ruby/neovim-ruby-client ) remote? ( dev-python/neovim-remote ) clipboard? ( || ( x11-misc/xsel x11-misc/xclip ) ) SLOT=0 SRC_URI=https://github.com/neovim/neovim/archive/v0.3.4.tar.gz -> neovim-0.3.4.tar.gz _eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs b45201c4e6c096b98e250336954e64b9 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=11ccc7040a44b6430c5c9b1894795796 +_md5_=2cab05eee5e53520da780123560bb2cd diff --git a/metadata/md5-cache/app-editors/okteta-0.26.1 b/metadata/md5-cache/app-editors/okteta-0.26.1 index 5d912b576870..23717c967bd9 100644 --- a/metadata/md5-cache/app-editors/okteta-0.26.1 +++ b/metadata/md5-cache/app-editors/okteta-0.26.1 @@ -5,10 +5,10 @@ DESCRIPTION=Hex editor by KDE EAPI=7 HOMEPAGE=https://www.kde.org/applications/utilities/okteta https://utils.kde.org/projects/okteta/ IUSE=crypt designer test debug +handbook test -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=GPL-2 RDEPEND=>=kde-frameworks/kbookmarks-5.54.0:5 >=kde-frameworks/kcmutils-5.54.0:5 >=kde-frameworks/kcodecs-5.54.0:5 >=kde-frameworks/kcompletion-5.54.0:5 >=kde-frameworks/kconfig-5.54.0:5 >=kde-frameworks/kconfigwidgets-5.54.0:5 >=kde-frameworks/kcoreaddons-5.54.0:5 >=kde-frameworks/kcrash-5.54.0:5 >=kde-frameworks/kdbusaddons-5.54.0:5 >=kde-frameworks/ki18n-5.54.0:5 >=kde-frameworks/kiconthemes-5.54.0:5 >=kde-frameworks/kio-5.54.0:5 >=kde-frameworks/kjobwidgets-5.54.0:5 >=kde-frameworks/knewstuff-5.54.0:5 >=kde-frameworks/kparts-5.54.0:5 >=kde-frameworks/kservice-5.54.0:5 >=kde-frameworks/kwidgetsaddons-5.54.0:5 >=kde-frameworks/kxmlgui-5.54.0:5 >=dev-qt/qtdeclarative-5.11.1:5 >=dev-qt/qtgui-5.11.1:5 >=dev-qt/qtnetwork-5.11.1:5 >=dev-qt/qtprintsupport-5.11.1:5 >=dev-qt/qtscript-5.11.1:5[scripttools] >=dev-qt/qtwidgets-5.11.1:5 >=dev-qt/qtxml-5.11.1:5 crypt? ( app-crypt/qca:2[qt5(+)] ) designer? ( >=dev-qt/designer-5.11.1:5 ) >=kde-frameworks/kf-env-4 || ( >=kde-frameworks/breeze-icons-5.54.0:5 kde-frameworks/oxygen-icons:* ) >=dev-qt/qtcore-5.11.1:5 SLOT=5 SRC_URI=mirror://kde/stable/okteta/0.26.1/src/okteta-0.26.1.tar.xz _eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf kde5 79b9341795c77777bb58dd1513bcbbb6 kde5-functions d2eb74228ec6cacb426e9e65eff37784 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs b45201c4e6c096b98e250336954e64b9 virtualx 401b718cc14d43a5a7fbe062c4851ba5 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=c029a9ca5e5b842f4bfcaf07c307f643 +_md5_=0cf859b396933d8b5afa94faf44f5760 diff --git a/metadata/md5-cache/app-editors/vim-9999 b/metadata/md5-cache/app-editors/vim-9999 index bbc47bee0652..e02369eb97a5 100644 --- a/metadata/md5-cache/app-editors/vim-9999 +++ b/metadata/md5-cache/app-editors/vim-9999 @@ -6,7 +6,7 @@ HOMEPAGE=https://vim.sourceforge.io/ https://github.com/vim/vim IUSE=X acl cscope debug gpm lua luajit minimal nls perl python racket ruby selinux tcl terminal vim-pager python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 python_single_target_python2_7 python_single_target_python3_5 python_single_target_python3_6 python_single_target_python3_7 LICENSE=vim RDEPEND=>=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) acl? ( kernel_linux? ( sys-apps/acl ) ) cscope? ( dev-util/cscope ) gpm? ( >=sys-libs/gpm-1.19.3 ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) !minimal? ( ~app-editors/vim-core-9999 ) vim-pager? ( app-editors/vim-core[-minimal] ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads(+)] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads(+)] ) python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),python_single_target_python2_7(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.4 dev-lang/ruby:2.5 dev-lang/ruby:2.6 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) tcl? ( dev-lang/tcl:0= ) X? ( x11-libs/libXt ) -REQUIRED_USE=luajit? ( lua ) python? ( ^^ ( python_single_target_python2_7 python_single_target_python3_5 python_single_target_python3_6 python_single_target_python3_7 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_5? ( python_targets_python3_5 ) python_single_target_python3_6? ( python_targets_python3_6 ) python_single_target_python3_7? ( python_targets_python3_7 ) ) vim-pager? ( !minimal ) +REQUIRED_USE=python? ( ^^ ( python_single_target_python2_7 python_single_target_python3_5 python_single_target_python3_6 python_single_target_python3_7 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_5? ( python_targets_python3_5 ) python_single_target_python3_6? ( python_targets_python3_6 ) python_single_target_python3_7? ( python_targets_python3_7 ) ) vim-pager? ( !minimal ) SLOT=0 _eclasses_=bash-completion-r1 47a7402d95930413ce25ba8d857339bb desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf git-r3 0d4635eeb5a96cd5315597a47eba25c9 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf vim-doc af2c81a1feeb0a99e91bee3e20769edb xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=2e65618b2251f680a4087e5cdc562588 +_md5_=00edec7c05d4a2ee121ff54150a09a71 diff --git a/metadata/md5-cache/app-eselect/Manifest.gz b/metadata/md5-cache/app-eselect/Manifest.gz index d1d74e32991d..902f7b701bd8 100644 Binary files a/metadata/md5-cache/app-eselect/Manifest.gz and b/metadata/md5-cache/app-eselect/Manifest.gz differ diff --git a/metadata/md5-cache/app-eselect/eselect-opencascade-0 b/metadata/md5-cache/app-eselect/eselect-opencascade-1 similarity index 77% rename from metadata/md5-cache/app-eselect/eselect-opencascade-0 rename to metadata/md5-cache/app-eselect/eselect-opencascade-1 index 441c37dc604e..fcb1ef84af84 100644 --- a/metadata/md5-cache/app-eselect/eselect-opencascade-0 +++ b/metadata/md5-cache/app-eselect/eselect-opencascade-1 @@ -1,8 +1,8 @@ DEFINED_PHASES=install postrm DESCRIPTION=Manages opencascade env file -EAPI=4 +EAPI=7 HOMEPAGE=https://www.gentoo.org/proj/en/eselect/ KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 SLOT=0 -_md5_=16b0340094a2c3adb669d2cf4ca25af8 +_md5_=b4bf36ccffec4f7e3138c497e6d39e29 diff --git a/metadata/md5-cache/app-eselect/eselect-timezone-0.2 b/metadata/md5-cache/app-eselect/eselect-timezone-0.2 index 25761fbb85b2..7e8f301a7556 100644 --- a/metadata/md5-cache/app-eselect/eselect-timezone-0.2 +++ b/metadata/md5-cache/app-eselect/eselect-timezone-0.2 @@ -2,8 +2,8 @@ DEFINED_PHASES=install DESCRIPTION=Manages timezone selection EAPI=6 HOMEPAGE=https://www.gentoo.org -KEYWORDS=amd64 arm x86 +KEYWORDS=amd64 arm ~arm64 x86 LICENSE=GPL-2 SLOT=0 SRC_URI=https://dev.gentoo.org/~junghans/distfiles/eselect-timezone-0.2.tar.xz -_md5_=86dd26217df95b358c4a1ee86b43b6ce +_md5_=001b96314fba4d83a2c93628a4c51f53 diff --git a/metadata/md5-cache/app-i18n/Manifest.gz b/metadata/md5-cache/app-i18n/Manifest.gz index 3080d77b7b76..d61ac020e006 100644 Binary files a/metadata/md5-cache/app-i18n/Manifest.gz and b/metadata/md5-cache/app-i18n/Manifest.gz differ diff --git a/metadata/md5-cache/app-i18n/unicode-data-12.0.0 b/metadata/md5-cache/app-i18n/unicode-data-12.0.0 new file mode 100644 index 000000000000..b02003ec2a7f --- /dev/null +++ b/metadata/md5-cache/app-i18n/unicode-data-12.0.0 @@ -0,0 +1,10 @@ +DEFINED_PHASES=install unpack +DEPEND=app-arch/unzip +DESCRIPTION=Unicode data from unicode.org +EAPI=7 +HOMEPAGE=http://www.unicode.org/ucd/ +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd +LICENSE=unicode +SLOT=0 +SRC_URI=http://www.unicode.org/Public/zipped/12.0.0/UCD.zip -> unicode-data-12.0.0-UCD.zip http://www.unicode.org/Public/zipped/12.0.0/Unihan.zip -> unicode-data-12.0.0-Unihan.zip +_md5_=a8319a4433a9b34c8703c0869b63000b diff --git a/metadata/md5-cache/app-metrics/Manifest.gz b/metadata/md5-cache/app-metrics/Manifest.gz index 58cdf6f79e7d..1971cfc3d695 100644 Binary files a/metadata/md5-cache/app-metrics/Manifest.gz and b/metadata/md5-cache/app-metrics/Manifest.gz differ diff --git a/metadata/md5-cache/app-metrics/redis_exporter-0.15.0 b/metadata/md5-cache/app-metrics/redis_exporter-0.15.0 deleted file mode 100644 index 8042b2b722e3..000000000000 --- a/metadata/md5-cache/app-metrics/redis_exporter-0.15.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile install prepare setup test unpack -DEPEND=>=dev-lang/go-1.10 virtual/pkgconfig -DESCRIPTION=Prometheus Exporter for Redis Metrics. Supports Redis 2.x, 3.x and 4.x -EAPI=6 -HOMEPAGE=https://github.com/oliver006/redis_exporter -KEYWORDS=~amd64 -LICENSE=MIT -RESTRICT=strip -SLOT=0 -SRC_URI=https://github.com/oliver006/redis_exporter/archive/v0.15.0.tar.gz -> redis_exporter-0.15.0.tar.gz -_eclasses_=golang-base c57d2c3f9e1a02d0feb8b87c7b689892 golang-build dc25bafa8fc1305a4de66a0a448472e7 golang-vcs-snapshot 12177e83bede6f7fb87eae383864b40b multilib b2f01ad412baf81650c23fcf0975fa33 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 user 8bd74731cafdcdad8f7a63637302e073 -_md5_=9146c0cd0d395ed0dd6bfda84ea6d218 diff --git a/metadata/md5-cache/app-metrics/redis_exporter-0.20.2 b/metadata/md5-cache/app-metrics/redis_exporter-0.20.2 index de74ef56c114..95d5c8f7ad66 100644 --- a/metadata/md5-cache/app-metrics/redis_exporter-0.20.2 +++ b/metadata/md5-cache/app-metrics/redis_exporter-0.20.2 @@ -9,4 +9,4 @@ RESTRICT=strip SLOT=0 SRC_URI=https://github.com/oliver006/redis_exporter/archive/v0.20.2.tar.gz -> redis_exporter-0.20.2.tar.gz _eclasses_=golang-base c57d2c3f9e1a02d0feb8b87c7b689892 golang-build dc25bafa8fc1305a4de66a0a448472e7 golang-vcs-snapshot 12177e83bede6f7fb87eae383864b40b multilib b2f01ad412baf81650c23fcf0975fa33 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 user 8bd74731cafdcdad8f7a63637302e073 -_md5_=944c56d2bc6d59509fc7dda9c3929cb1 +_md5_=ab880a69b6b7fb0d078483149cd631e3 diff --git a/metadata/md5-cache/app-misc/Manifest.gz b/metadata/md5-cache/app-misc/Manifest.gz index 8b3e771478fa..cc955c0ed852 100644 Binary files a/metadata/md5-cache/app-misc/Manifest.gz and b/metadata/md5-cache/app-misc/Manifest.gz differ diff --git a/metadata/md5-cache/app-misc/uptimed-0.4.0-r1 b/metadata/md5-cache/app-misc/uptimed-0.4.0-r1 index e35d6489f919..78d4bd16c650 100644 --- a/metadata/md5-cache/app-misc/uptimed-0.4.0-r1 +++ b/metadata/md5-cache/app-misc/uptimed-0.4.0-r1 @@ -8,5 +8,5 @@ KEYWORDS=alpha amd64 ~arm hppa ~mips ppc ppc64 sparc x86 ~x86-fbsd LICENSE=GPL-2 SLOT=0 SRC_URI=https://github.com/rpodgorny/uptimed/archive/v0.4.0.tar.gz -> uptimed-0.4.0.tar.gz -_eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 user 8bd74731cafdcdad8f7a63637302e073 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=c63d0a80460956f78db08e214ae61f28 +_eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 user 8bd74731cafdcdad8f7a63637302e073 +_md5_=fa542e2c31e666337b4f7e472cf18c8a diff --git a/metadata/md5-cache/app-misc/uptimed-0.4.1 b/metadata/md5-cache/app-misc/uptimed-0.4.1 index 334d7943d415..b9cd5f869673 100644 --- a/metadata/md5-cache/app-misc/uptimed-0.4.1 +++ b/metadata/md5-cache/app-misc/uptimed-0.4.1 @@ -4,9 +4,9 @@ DESCRIPTION=System uptime record daemon that keeps track of your highest uptimes EAPI=6 HOMEPAGE=https://github.com/rpodgorny/uptimed/ IUSE=static-libs -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd +KEYWORDS=~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd LICENSE=GPL-2 SLOT=0 SRC_URI=https://github.com/rpodgorny/uptimed/archive/v0.4.1.tar.gz -> uptimed-0.4.1.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 user 8bd74731cafdcdad8f7a63637302e073 -_md5_=e374062b41985df8ea666b2f0507e809 +_md5_=ab317b41ce46827539bc23a26fbea18b diff --git a/metadata/md5-cache/app-mobilephone/Manifest.gz b/metadata/md5-cache/app-mobilephone/Manifest.gz index c5e27a1b92c0..4461fbc807a0 100644 Binary files a/metadata/md5-cache/app-mobilephone/Manifest.gz and b/metadata/md5-cache/app-mobilephone/Manifest.gz differ diff --git a/metadata/md5-cache/app-mobilephone/heimdall-1.4.2 b/metadata/md5-cache/app-mobilephone/heimdall-1.4.2 index 3473795f3518..acdd49ea58af 100644 --- a/metadata/md5-cache/app-mobilephone/heimdall-1.4.2 +++ b/metadata/md5-cache/app-mobilephone/heimdall-1.4.2 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND=>=dev-libs/libusb-1.0.18:1= qt5? ( dev-qt/qtcore:5= dev-qt/qtgui:5= dev-qt/qtwidgets:5= ) sys-libs/zlib virtual/pkgconfig sys-devel/make >=dev-util/cmake-3.9.6 virtual/pkgconfig +DEPEND=>=dev-libs/libusb-1.0.18:1= qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) sys-libs/zlib virtual/pkgconfig sys-devel/make >=dev-util/cmake-3.9.6 virtual/pkgconfig DESCRIPTION=Tool suite used to flash firmware onto Samsung Galaxy S devices EAPI=6 HOMEPAGE=https://glassechidna.com.au/heimdall/ IUSE=qt5 KEYWORDS=~amd64 LICENSE=MIT -RDEPEND=>=dev-libs/libusb-1.0.18:1= qt5? ( dev-qt/qtcore:5= dev-qt/qtgui:5= dev-qt/qtwidgets:5= ) sys-libs/zlib +RDEPEND=>=dev-libs/libusb-1.0.18:1= qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) sys-libs/zlib SLOT=0 -SRC_URI=https://gitlab.com/BenjaminDobell/Heimdall/-/archive/v1.4.2/Heimdall-v1.4.2.tar.gz -> heimdall-1.4.2.tar.gz +SRC_URI=https://gitlab.com/BenjaminDobell/Heimdall/-/archive/v1.4.2/Heimdall-v1.4.2.tar.bz2 -> heimdall-1.4.2.tar.bz2 _eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 udev 7752f306eec7b286d00bdb47b763e7ac vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=91cf1956f60d9c0ac7d5a52f9772e1a4 +_md5_=ef96dcc981556a1d6fb6497bbd5a2904 diff --git a/metadata/md5-cache/app-mobilephone/heimdall-9999 b/metadata/md5-cache/app-mobilephone/heimdall-9999 index f5a8aeeedd27..9616e1866483 100644 --- a/metadata/md5-cache/app-mobilephone/heimdall-9999 +++ b/metadata/md5-cache/app-mobilephone/heimdall-9999 @@ -1,11 +1,11 @@ DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=>=dev-libs/libusb-1.0.18:1= qt5? ( dev-qt/qtcore:5= dev-qt/qtgui:5= dev-qt/qtwidgets:5= ) sys-libs/zlib virtual/pkgconfig sys-devel/make >=dev-util/cmake-3.9.6 virtual/pkgconfig >=dev-vcs/git-1.8.2.1[curl] +DEPEND=>=dev-libs/libusb-1.0.18:1= qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) sys-libs/zlib virtual/pkgconfig sys-devel/make >=dev-util/cmake-3.9.6 virtual/pkgconfig >=dev-vcs/git-1.8.2.1[curl] DESCRIPTION=Tool suite used to flash firmware onto Samsung Galaxy S devices EAPI=6 HOMEPAGE=https://glassechidna.com.au/heimdall/ IUSE=qt5 LICENSE=MIT -RDEPEND=>=dev-libs/libusb-1.0.18:1= qt5? ( dev-qt/qtcore:5= dev-qt/qtgui:5= dev-qt/qtwidgets:5= ) sys-libs/zlib +RDEPEND=>=dev-libs/libusb-1.0.18:1= qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) sys-libs/zlib SLOT=0 _eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf git-r3 0d4635eeb5a96cd5315597a47eba25c9 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 udev 7752f306eec7b286d00bdb47b763e7ac vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=91cf1956f60d9c0ac7d5a52f9772e1a4 +_md5_=ef96dcc981556a1d6fb6497bbd5a2904 diff --git a/metadata/md5-cache/app-office/Manifest.gz b/metadata/md5-cache/app-office/Manifest.gz index a763aa573780..95880bcfc8f9 100644 Binary files a/metadata/md5-cache/app-office/Manifest.gz and b/metadata/md5-cache/app-office/Manifest.gz differ diff --git a/metadata/md5-cache/app-office/libreoffice-6.2.2.2 b/metadata/md5-cache/app-office/libreoffice-6.2.2.2 deleted file mode 100644 index 546344810837..000000000000 --- a/metadata/md5-cache/app-office/libreoffice-6.2.2.2 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=dev-util/intltool sys-devel/bison sys-devel/flex sys-devel/gettext virtual/pkgconfig odk? ( >=app-doc/doxygen-1.8.4 ) >=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=compile configure install postinst postrm preinst prepare pretend setup test unpack -DEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads(+),xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads(+),xml] ) python_single_target_python3_6? ( dev-lang/python:3.6[threads(+),xml] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),python_single_target_python2_7(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] app-arch/unzip app-arch/zip app-crypt/gpgme[cxx] app-text/hunspell:= >=app-text/libabw-0.1.0 >=app-text/libebook-0.1 app-text/libepubgen >=app-text/libetonyek-0.1 app-text/libexttextcat app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.1 app-text/libnumbertext >=app-text/libodfgen-0.1.0 app-text/libqxp app-text/libstaroffice app-text/libwpd:0.10[tools] app-text/libwpg:0.3 >=app-text/libwps-0.4 app-text/mythes >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC dev-lang/perl dev-libs/boost:=[nls] dev-libs/expat dev-libs/hyphen dev-libs/icu:= dev-libs/libassuan dev-libs/libgpg-error >=dev-libs/liborcus-0.14.0 dev-libs/librevenge dev-libs/libxml2 dev-libs/libxslt dev-libs/nspr dev-libs/nss >=dev-libs/redland-1.0.16 >=dev-libs/xmlsec-1.2.24[nss] media-gfx/fontforge media-gfx/graphite2 media-libs/fontconfig media-libs/freetype:2 >=media-libs/harfbuzz-0.9.42:=[graphite,icu] media-libs/lcms:2 >=media-libs/libcdr-0.1.0 >=media-libs/libepoxy-1.3.1[X] >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libpng-1.4:0= >=media-libs/libvisio-0.1.0 media-libs/libzmf net-libs/neon net-misc/curl sci-mathematics/lpsolve sys-libs/zlib virtual/glu virtual/jpeg:0 virtual/opengl x11-libs/cairo[X] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender accessibility? ( dev-python/lxml[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),python_single_target_python2_7(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] ) bluetooth? ( dev-libs/glib:2 net-wireless/bluez ) coinmp? ( sci-libs/coinor-mp ) cups? ( net-print/cups ) dbus? ( sys-apps/dbus ) eds? ( dev-libs/glib:2 gnome-base/dconf gnome-extra/evolution-data-server ) firebird? ( >=dev-db/firebird-3.0.2.32703.0-r1[server] ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gtk? ( dev-libs/glib:2 dev-libs/gobject-introspection gnome-base/dconf media-libs/mesa[egl] x11-libs/gtk+:3 x11-libs/pango ) gtk2? ( x11-libs/gdk-pixbuf >=x11-libs/gtk+-2.24:2 x11-libs/pango ) kde? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtx11extras:5 dev-qt/qtwidgets:5 kde-frameworks/kconfig:5 kde-frameworks/kcoreaddons:5 kde-frameworks/ki18n:5 kde-frameworks/kio:5 kde-frameworks/kwindowsystem:5 ) ldap? ( net-nds/openldap ) libreoffice_extensions_scripting-beanshell? ( dev-java/bsh ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) mariadb? ( dev-db/mariadb-connector-c ) !mariadb? ( dev-db/mysql-connector-c ) pdfimport? ( app-text/poppler:=[cxx] ) postgres? ( >=dev-db/postgresql-9.0:*[kerberos] ) >=dev-libs/libatomic_ops-7.2d dev-perl/Archive-Zip >=dev-util/cppunit-1.14.0 >=dev-util/gperf-3 >=dev-util/mdds-1.4.1:1= media-libs/glm sys-devel/ucpp x11-base/xorg-proto x11-libs/libXt x11-libs/libXtst java? ( dev-java/ant-core >=virtual/jdk-1.6 ) test? ( app-crypt/gnupg dev-util/cppunit media-fonts/dejavu media-fonts/liberation-fonts ) java? ( >=dev-java/java-config-2.2.0-r3 ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=A full office productivity suite -EAPI=7 -HOMEPAGE=https://www.libreoffice.org -IUSE=accessibility bluetooth +branding coinmp +cups dbus debug eds firebird googledrive gstreamer +gtk gtk2 kde ldap +mariadb odk pdfimport postgres test vlc libreoffice_extensions_nlpsolver libreoffice_extensions_scripting-beanshell libreoffice_extensions_scripting-javascript libreoffice_extensions_wiki-publisher elibc_FreeBSD java python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 python_single_target_python2_7 python_single_target_python3_5 python_single_target_python3_6 python_single_target_python3_7 -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux -LICENSE=|| ( LGPL-3 MPL-1.1 ) -PDEPEND==app-office/libreoffice-l10n-6.2* -RDEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads(+),xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads(+),xml] ) python_single_target_python3_6? ( dev-lang/python:3.6[threads(+),xml] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),python_single_target_python2_7(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] app-arch/unzip app-arch/zip app-crypt/gpgme[cxx] app-text/hunspell:= >=app-text/libabw-0.1.0 >=app-text/libebook-0.1 app-text/libepubgen >=app-text/libetonyek-0.1 app-text/libexttextcat app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.1 app-text/libnumbertext >=app-text/libodfgen-0.1.0 app-text/libqxp app-text/libstaroffice app-text/libwpd:0.10[tools] app-text/libwpg:0.3 >=app-text/libwps-0.4 app-text/mythes >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC dev-lang/perl dev-libs/boost:=[nls] dev-libs/expat dev-libs/hyphen dev-libs/icu:= dev-libs/libassuan dev-libs/libgpg-error >=dev-libs/liborcus-0.14.0 dev-libs/librevenge dev-libs/libxml2 dev-libs/libxslt dev-libs/nspr dev-libs/nss >=dev-libs/redland-1.0.16 >=dev-libs/xmlsec-1.2.24[nss] media-gfx/fontforge media-gfx/graphite2 media-libs/fontconfig media-libs/freetype:2 >=media-libs/harfbuzz-0.9.42:=[graphite,icu] media-libs/lcms:2 >=media-libs/libcdr-0.1.0 >=media-libs/libepoxy-1.3.1[X] >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libpng-1.4:0= >=media-libs/libvisio-0.1.0 media-libs/libzmf net-libs/neon net-misc/curl sci-mathematics/lpsolve sys-libs/zlib virtual/glu virtual/jpeg:0 virtual/opengl x11-libs/cairo[X] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender accessibility? ( dev-python/lxml[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),python_single_target_python2_7(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] ) bluetooth? ( dev-libs/glib:2 net-wireless/bluez ) coinmp? ( sci-libs/coinor-mp ) cups? ( net-print/cups ) dbus? ( sys-apps/dbus ) eds? ( dev-libs/glib:2 gnome-base/dconf gnome-extra/evolution-data-server ) firebird? ( >=dev-db/firebird-3.0.2.32703.0-r1[server] ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gtk? ( dev-libs/glib:2 dev-libs/gobject-introspection gnome-base/dconf media-libs/mesa[egl] x11-libs/gtk+:3 x11-libs/pango ) gtk2? ( x11-libs/gdk-pixbuf >=x11-libs/gtk+-2.24:2 x11-libs/pango ) kde? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtx11extras:5 dev-qt/qtwidgets:5 kde-frameworks/kconfig:5 kde-frameworks/kcoreaddons:5 kde-frameworks/ki18n:5 kde-frameworks/kio:5 kde-frameworks/kwindowsystem:5 ) ldap? ( net-nds/openldap ) libreoffice_extensions_scripting-beanshell? ( dev-java/bsh ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) mariadb? ( dev-db/mariadb-connector-c ) !mariadb? ( dev-db/mysql-connector-c ) pdfimport? ( app-text/poppler:=[cxx] ) postgres? ( >=dev-db/postgresql-9.0:*[kerberos] ) !app-office/libreoffice-bin !app-office/libreoffice-bin-debug !app-office/openoffice media-fonts/liberation-fonts || ( x11-misc/xdg-utils kde-plasma/kde-cli-tools ) java? ( >=virtual/jre-1.6 ) kde? ( kde-frameworks/breeze-icons:* ) vlc? ( media-video/vlc ) java? ( >=dev-java/java-config-2.2.0-r3 ) -REQUIRED_USE=^^ ( python_single_target_python2_7 python_single_target_python3_5 python_single_target_python3_6 python_single_target_python3_7 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_5? ( python_targets_python3_5 ) python_single_target_python3_6? ( python_targets_python3_6 ) python_single_target_python3_7? ( python_targets_python3_7 ) bluetooth? ( dbus ) libreoffice_extensions_nlpsolver? ( java ) libreoffice_extensions_scripting-beanshell? ( java ) libreoffice_extensions_scripting-javascript? ( java ) libreoffice_extensions_wiki-publisher? ( java ) -SLOT=0 -SRC_URI=branding? ( https://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.8.tar.xz ) https://dev.gentoo.org/~asturm/distfiles/libreoffice-6.2.2.2-patchset-01.tar.xz https://dev-builds.libreoffice.org/pre-releases/src/libreoffice-6.2.2.2.tar.xz https://dev-builds.libreoffice.org/pre-releases/src/libreoffice-help-6.2.2.2.tar.xz https://download.documentfoundation.org/libreoffice/src/6.2.2//libreoffice-6.2.2.2.tar.xz https://download.documentfoundation.org/libreoffice/src/6.2.2//libreoffice-help-6.2.2.2.tar.xz https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.2.2/src/libreoffice-6.2.2.2.tar.xz https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.2.2/src/libreoffice-help-6.2.2.2.tar.xz java? ( https://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) libreoffice_extensions_wiki-publisher? ( https://dev-www.libreoffice.org/src//a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) libreoffice_extensions_scripting-javascript? ( https://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) libreoffice_extensions_scripting-javascript? ( https://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll ) -_eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 bash-completion-r1 47a7402d95930413ce25ba8d857339bb check-reqs 2c6f909675083dce8430b648bf737cb0 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 dd352559d0e143500ec878acc74da909 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils e85f015e815dd463b0c206d781ef45a5 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f qmake-utils bdf97e69a34b864d6d545f4ec3143ff7 toolchain-funcs b45201c4e6c096b98e250336954e64b9 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=0e66b637e7cc9892f7757431c38208f9 diff --git a/metadata/md5-cache/app-office/libreoffice-6.2.3.2 b/metadata/md5-cache/app-office/libreoffice-6.2.3.2 index bb296254fcd6..259fecd71f54 100644 --- a/metadata/md5-cache/app-office/libreoffice-6.2.3.2 +++ b/metadata/md5-cache/app-office/libreoffice-6.2.3.2 @@ -5,11 +5,12 @@ DESCRIPTION=A full office productivity suite EAPI=7 HOMEPAGE=https://www.libreoffice.org IUSE=accessibility bluetooth +branding coinmp +cups dbus debug eds firebird googledrive gstreamer +gtk gtk2 kde ldap +mariadb odk pdfimport postgres test vlc libreoffice_extensions_nlpsolver libreoffice_extensions_scripting-beanshell libreoffice_extensions_scripting-javascript libreoffice_extensions_wiki-publisher elibc_FreeBSD java python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 python_single_target_python2_7 python_single_target_python3_5 python_single_target_python3_6 python_single_target_python3_7 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux LICENSE=|| ( LGPL-3 MPL-1.1 ) PDEPEND==app-office/libreoffice-l10n-6.2* RDEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads(+),xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads(+),xml] ) python_single_target_python3_6? ( dev-lang/python:3.6[threads(+),xml] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),python_single_target_python2_7(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] app-arch/unzip app-arch/zip app-crypt/gpgme[cxx] app-text/hunspell:= >=app-text/libabw-0.1.0 >=app-text/libebook-0.1 app-text/libepubgen >=app-text/libetonyek-0.1 app-text/libexttextcat app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.1 app-text/libnumbertext >=app-text/libodfgen-0.1.0 app-text/libqxp app-text/libstaroffice app-text/libwpd:0.10[tools] app-text/libwpg:0.3 >=app-text/libwps-0.4 app-text/mythes >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC dev-lang/perl dev-libs/boost:=[nls] dev-libs/expat dev-libs/hyphen dev-libs/icu:= dev-libs/libassuan dev-libs/libgpg-error >=dev-libs/liborcus-0.14.0 dev-libs/librevenge dev-libs/libxml2 dev-libs/libxslt dev-libs/nspr dev-libs/nss >=dev-libs/redland-1.0.16 >=dev-libs/xmlsec-1.2.24[nss] media-gfx/fontforge media-gfx/graphite2 media-libs/fontconfig media-libs/freetype:2 >=media-libs/harfbuzz-0.9.42:=[graphite,icu] media-libs/lcms:2 >=media-libs/libcdr-0.1.0 >=media-libs/libepoxy-1.3.1[X] >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libpng-1.4:0= >=media-libs/libvisio-0.1.0 media-libs/libzmf net-libs/neon net-misc/curl sci-mathematics/lpsolve sys-libs/zlib virtual/glu virtual/jpeg:0 virtual/opengl x11-libs/cairo[X] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender accessibility? ( dev-python/lxml[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),python_single_target_python2_7(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] ) bluetooth? ( dev-libs/glib:2 net-wireless/bluez ) coinmp? ( sci-libs/coinor-mp ) cups? ( net-print/cups ) dbus? ( sys-apps/dbus ) eds? ( dev-libs/glib:2 gnome-base/dconf gnome-extra/evolution-data-server ) firebird? ( >=dev-db/firebird-3.0.2.32703.0-r1[server] ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gtk? ( dev-libs/glib:2 dev-libs/gobject-introspection gnome-base/dconf media-libs/mesa[egl] x11-libs/gtk+:3 x11-libs/pango ) gtk2? ( x11-libs/gdk-pixbuf >=x11-libs/gtk+-2.24:2 x11-libs/pango ) kde? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtx11extras:5 dev-qt/qtwidgets:5 kde-frameworks/kconfig:5 kde-frameworks/kcoreaddons:5 kde-frameworks/ki18n:5 kde-frameworks/kio:5 kde-frameworks/kwindowsystem:5 ) ldap? ( net-nds/openldap ) libreoffice_extensions_scripting-beanshell? ( dev-java/bsh ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) mariadb? ( dev-db/mariadb-connector-c ) !mariadb? ( dev-db/mysql-connector-c ) pdfimport? ( app-text/poppler:=[cxx] ) postgres? ( >=dev-db/postgresql-9.0:*[kerberos] ) !app-office/libreoffice-bin !app-office/libreoffice-bin-debug !app-office/openoffice media-fonts/liberation-fonts || ( x11-misc/xdg-utils kde-plasma/kde-cli-tools ) java? ( >=virtual/jre-1.6 ) kde? ( kde-frameworks/breeze-icons:* ) vlc? ( media-video/vlc ) java? ( >=dev-java/java-config-2.2.0-r3 ) REQUIRED_USE=^^ ( python_single_target_python2_7 python_single_target_python3_5 python_single_target_python3_6 python_single_target_python3_7 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_5? ( python_targets_python3_5 ) python_single_target_python3_6? ( python_targets_python3_6 ) python_single_target_python3_7? ( python_targets_python3_7 ) bluetooth? ( dbus ) libreoffice_extensions_nlpsolver? ( java ) libreoffice_extensions_scripting-beanshell? ( java ) libreoffice_extensions_scripting-javascript? ( java ) libreoffice_extensions_wiki-publisher? ( java ) SLOT=0 -SRC_URI=branding? ( https://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.8.tar.xz ) https://dev-builds.libreoffice.org/pre-releases/src/libreoffice-6.2.3.2.tar.xz https://dev-builds.libreoffice.org/pre-releases/src/libreoffice-help-6.2.3.2.tar.xz https://download.documentfoundation.org/libreoffice/src/6.2.3//libreoffice-6.2.3.2.tar.xz https://download.documentfoundation.org/libreoffice/src/6.2.3//libreoffice-help-6.2.3.2.tar.xz https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.3.2/src/libreoffice-6.2.3.2.tar.xz https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.3.2/src/libreoffice-help-6.2.3.2.tar.xz java? ( https://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) libreoffice_extensions_wiki-publisher? ( https://dev-www.libreoffice.org/src//a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) libreoffice_extensions_scripting-javascript? ( https://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) libreoffice_extensions_scripting-javascript? ( https://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll ) +SRC_URI=branding? ( https://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.8.tar.xz ) https://dev.gentoo.org/~asturm/distfiles/libreoffice-6.2.3.2-patchset-01.tar.xz https://dev-builds.libreoffice.org/pre-releases/src/libreoffice-6.2.3.2.tar.xz https://dev-builds.libreoffice.org/pre-releases/src/libreoffice-help-6.2.3.2.tar.xz https://download.documentfoundation.org/libreoffice/src/6.2.3//libreoffice-6.2.3.2.tar.xz https://download.documentfoundation.org/libreoffice/src/6.2.3//libreoffice-help-6.2.3.2.tar.xz https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.3.2/src/libreoffice-6.2.3.2.tar.xz https://downloadarchive.documentfoundation.org/libreoffice/old/6.2.3.2/src/libreoffice-help-6.2.3.2.tar.xz java? ( https://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) libreoffice_extensions_wiki-publisher? ( https://dev-www.libreoffice.org/src//a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) libreoffice_extensions_scripting-javascript? ( https://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) libreoffice_extensions_scripting-javascript? ( https://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll ) _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 bash-completion-r1 47a7402d95930413ce25ba8d857339bb check-reqs 2c6f909675083dce8430b648bf737cb0 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 dd352559d0e143500ec878acc74da909 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f qmake-utils bdf97e69a34b864d6d545f4ec3143ff7 toolchain-funcs b45201c4e6c096b98e250336954e64b9 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=a9b61f15963aeb044208a321c63b948e +_md5_=7aeba68ee6b266a1f157ee880fb1705f diff --git a/metadata/md5-cache/app-office/libreoffice-l10n-6.2.2.2 b/metadata/md5-cache/app-office/libreoffice-l10n-6.2.2.2 deleted file mode 100644 index badf9713952a..000000000000 --- a/metadata/md5-cache/app-office/libreoffice-l10n-6.2.2.2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare unpack -DEPEND=>=app-arch/rpm2targz-9.0.0.3g -DESCRIPTION=Translations for the Libreoffice suite -EAPI=7 -HOMEPAGE=https://www.libreoffice.org -IUSE=offlinehelp l10n_am l10n_ast l10n_bg l10n_bn-IN l10n_bn l10n_bo l10n_bs l10n_ca-valencia l10n_ca l10n_cs l10n_da l10n_de l10n_dz l10n_el l10n_en-GB l10n_en l10n_en-ZA l10n_eo l10n_es l10n_et l10n_eu l10n_fi l10n_fr l10n_gl l10n_gu l10n_he l10n_hi l10n_hr l10n_hu l10n_id l10n_is l10n_it l10n_ja l10n_ka l10n_km l10n_ko l10n_mk l10n_nb l10n_ne l10n_nl l10n_nn l10n_om l10n_pl l10n_pt-BR l10n_pt l10n_ru l10n_si l10n_sk l10n_sl l10n_sq l10n_sv l10n_tg l10n_tr l10n_ug l10n_uk l10n_vi l10n_zh-CN l10n_zh-TW l10n_af l10n_ar l10n_as l10n_be l10n_br l10n_brx l10n_cy l10n_dgo l10n_fa l10n_ga l10n_gd l10n_gug l10n_kk l10n_kmr-Latn l10n_kn l10n_kok l10n_ks l10n_lb l10n_lo l10n_lt l10n_lv l10n_mai l10n_ml l10n_mn l10n_mni l10n_mr l10n_my l10n_nr l10n_nso l10n_oc l10n_or l10n_pa l10n_ro l10n_rw l10n_sa l10n_sat l10n_sd l10n_sid l10n_sr-Latn l10n_sr l10n_ss l10n_st l10n_sw-TZ l10n_ta l10n_te l10n_th l10n_tn l10n_ts l10n_tt l10n_uz l10n_ve l10n_xh l10n_zu -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux -LICENSE=|| ( LGPL-3 MPL-1.1 ) -RDEPEND=app-text/hunspell -RESTRICT=strip -SLOT=0 -SRC_URI=l10n_am? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_am.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_am.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_am.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_am.tar.gz ) ) l10n_ast? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_ast.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ast.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ast.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ast.tar.gz ) ) l10n_bg? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_bg.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_bg.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_bg.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_bg.tar.gz ) ) l10n_bn-IN? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_bn-IN.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_bn-IN.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_bn-IN.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_bn-IN.tar.gz ) ) l10n_bn? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_bn.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_bn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_bn.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_bn.tar.gz ) ) l10n_bo? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_bo.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_bo.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_bo.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_bo.tar.gz ) ) l10n_bs? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_bs.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_bs.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_bs.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_bs.tar.gz ) ) l10n_ca-valencia? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_ca-valencia.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ca-valencia.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ca-valencia.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ca-valencia.tar.gz ) ) l10n_ca? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_ca.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ca.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ca.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ca.tar.gz ) ) l10n_cs? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_cs.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_cs.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_cs.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_cs.tar.gz ) ) l10n_da? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_da.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_da.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_da.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_da.tar.gz ) ) l10n_de? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_de.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_de.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_de.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_de.tar.gz ) ) l10n_dz? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_dz.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_dz.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_dz.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_dz.tar.gz ) ) l10n_el? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_el.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_el.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_el.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_el.tar.gz ) ) l10n_en-GB? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_en-GB.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_en-GB.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_en-GB.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_en-GB.tar.gz ) ) l10n_en? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_en-US.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_en-US.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_en-US.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_en-US.tar.gz ) ) l10n_en-ZA? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_en-ZA.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_en-ZA.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_en-ZA.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_en-ZA.tar.gz ) ) l10n_eo? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_eo.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_eo.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_eo.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_eo.tar.gz ) ) l10n_es? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_es.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_es.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_es.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_es.tar.gz ) ) l10n_et? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_et.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_et.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_et.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_et.tar.gz ) ) l10n_eu? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_eu.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_eu.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_eu.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_eu.tar.gz ) ) l10n_fi? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_fi.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_fi.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_fi.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_fi.tar.gz ) ) l10n_fr? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_fr.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_fr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_fr.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_fr.tar.gz ) ) l10n_gl? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_gl.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_gl.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_gl.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_gl.tar.gz ) ) l10n_gu? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_gu.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_gu.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_gu.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_gu.tar.gz ) ) l10n_he? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_he.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_he.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_he.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_he.tar.gz ) ) l10n_hi? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_hi.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_hi.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_hi.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_hi.tar.gz ) ) l10n_hr? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_hr.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_hr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_hr.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_hr.tar.gz ) ) l10n_hu? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_hu.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_hu.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_hu.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_hu.tar.gz ) ) l10n_id? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_id.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_id.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_id.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_id.tar.gz ) ) l10n_is? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_is.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_is.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_is.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_is.tar.gz ) ) l10n_it? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_it.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_it.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_it.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_it.tar.gz ) ) l10n_ja? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_ja.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ja.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ja.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ja.tar.gz ) ) l10n_ka? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_ka.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ka.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ka.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ka.tar.gz ) ) l10n_km? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_km.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_km.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_km.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_km.tar.gz ) ) l10n_ko? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_ko.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ko.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ko.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ko.tar.gz ) ) l10n_mk? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_mk.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_mk.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_mk.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_mk.tar.gz ) ) l10n_nb? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_nb.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_nb.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_nb.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_nb.tar.gz ) ) l10n_ne? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_ne.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ne.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ne.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ne.tar.gz ) ) l10n_nl? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_nl.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_nl.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_nl.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_nl.tar.gz ) ) l10n_nn? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_nn.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_nn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_nn.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_nn.tar.gz ) ) l10n_om? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_om.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_om.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_om.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_om.tar.gz ) ) l10n_pl? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_pl.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_pl.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_pl.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_pl.tar.gz ) ) l10n_pt-BR? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_pt-BR.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_pt-BR.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_pt-BR.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_pt-BR.tar.gz ) ) l10n_pt? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_pt.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_pt.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_pt.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_pt.tar.gz ) ) l10n_ru? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_ru.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ru.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ru.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ru.tar.gz ) ) l10n_si? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_si.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_si.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_si.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_si.tar.gz ) ) l10n_sk? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_sk.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_sk.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_sk.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_sk.tar.gz ) ) l10n_sl? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_sl.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_sl.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_sl.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_sl.tar.gz ) ) l10n_sq? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_sq.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_sq.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_sq.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_sq.tar.gz ) ) l10n_sv? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_sv.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_sv.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_sv.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_sv.tar.gz ) ) l10n_tg? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_tg.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_tg.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_tg.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_tg.tar.gz ) ) l10n_tr? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_tr.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_tr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_tr.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_tr.tar.gz ) ) l10n_ug? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_ug.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ug.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ug.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_ug.tar.gz ) ) l10n_uk? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_uk.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_uk.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_uk.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_uk.tar.gz ) ) l10n_vi? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_vi.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_vi.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_vi.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_vi.tar.gz ) ) l10n_zh-CN? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_zh-CN.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_zh-CN.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_zh-CN.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_zh-CN.tar.gz ) ) l10n_zh-TW? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_helppack_zh-TW.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_zh-TW.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_zh-TW.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_helppack_zh-TW.tar.gz ) ) l10n_am? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_am.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_am.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_am.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_am.tar.gz ) l10n_ast? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_ast.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ast.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ast.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ast.tar.gz ) l10n_bg? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_bg.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_bg.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_bg.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_bg.tar.gz ) l10n_bn-IN? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_bn-IN.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_bn-IN.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_bn-IN.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_bn-IN.tar.gz ) l10n_bn? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_bn.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_bn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_bn.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_bn.tar.gz ) l10n_bo? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_bo.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_bo.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_bo.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_bo.tar.gz ) l10n_bs? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_bs.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_bs.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_bs.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_bs.tar.gz ) l10n_ca-valencia? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_ca-valencia.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ca-valencia.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ca-valencia.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ca-valencia.tar.gz ) l10n_ca? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_ca.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ca.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ca.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ca.tar.gz ) l10n_cs? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_cs.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_cs.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_cs.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_cs.tar.gz ) l10n_da? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_da.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_da.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_da.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_da.tar.gz ) l10n_de? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_de.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_de.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_de.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_de.tar.gz ) l10n_dz? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_dz.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_dz.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_dz.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_dz.tar.gz ) l10n_el? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_el.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_el.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_el.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_el.tar.gz ) l10n_en-GB? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_en-GB.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_en-GB.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_en-GB.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_en-GB.tar.gz ) l10n_en-ZA? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_en-ZA.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_en-ZA.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_en-ZA.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_en-ZA.tar.gz ) l10n_eo? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_eo.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_eo.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_eo.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_eo.tar.gz ) l10n_es? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_es.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_es.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_es.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_es.tar.gz ) l10n_et? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_et.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_et.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_et.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_et.tar.gz ) l10n_eu? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_eu.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_eu.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_eu.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_eu.tar.gz ) l10n_fi? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_fi.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_fi.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_fi.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_fi.tar.gz ) l10n_fr? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_fr.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_fr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_fr.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_fr.tar.gz ) l10n_gl? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_gl.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_gl.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_gl.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_gl.tar.gz ) l10n_gu? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_gu.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_gu.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_gu.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_gu.tar.gz ) l10n_he? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_he.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_he.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_he.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_he.tar.gz ) l10n_hi? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_hi.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_hi.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_hi.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_hi.tar.gz ) l10n_hr? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_hr.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_hr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_hr.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_hr.tar.gz ) l10n_hu? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_hu.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_hu.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_hu.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_hu.tar.gz ) l10n_id? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_id.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_id.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_id.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_id.tar.gz ) l10n_is? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_is.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_is.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_is.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_is.tar.gz ) l10n_it? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_it.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_it.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_it.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_it.tar.gz ) l10n_ja? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_ja.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ja.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ja.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ja.tar.gz ) l10n_ka? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_ka.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ka.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ka.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ka.tar.gz ) l10n_km? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_km.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_km.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_km.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_km.tar.gz ) l10n_ko? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_ko.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ko.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ko.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ko.tar.gz ) l10n_mk? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_mk.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_mk.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_mk.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_mk.tar.gz ) l10n_nb? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_nb.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_nb.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_nb.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_nb.tar.gz ) l10n_ne? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_ne.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ne.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ne.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ne.tar.gz ) l10n_nl? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_nl.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_nl.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_nl.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_nl.tar.gz ) l10n_nn? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_nn.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_nn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_nn.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_nn.tar.gz ) l10n_om? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_om.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_om.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_om.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_om.tar.gz ) l10n_pl? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_pl.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_pl.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_pl.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_pl.tar.gz ) l10n_pt-BR? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_pt-BR.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_pt-BR.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_pt-BR.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_pt-BR.tar.gz ) l10n_pt? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_pt.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_pt.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_pt.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_pt.tar.gz ) l10n_ru? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_ru.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ru.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ru.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ru.tar.gz ) l10n_si? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_si.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_si.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_si.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_si.tar.gz ) l10n_sk? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_sk.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sk.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sk.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sk.tar.gz ) l10n_sl? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_sl.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sl.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sl.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sl.tar.gz ) l10n_sq? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_sq.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sq.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sq.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sq.tar.gz ) l10n_sv? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_sv.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sv.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sv.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sv.tar.gz ) l10n_tg? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_tg.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_tg.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_tg.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_tg.tar.gz ) l10n_tr? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_tr.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_tr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_tr.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_tr.tar.gz ) l10n_ug? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_ug.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ug.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ug.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ug.tar.gz ) l10n_uk? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_uk.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_uk.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_uk.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_uk.tar.gz ) l10n_vi? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_vi.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_vi.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_vi.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_vi.tar.gz ) l10n_zh-CN? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_zh-CN.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_zh-CN.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_zh-CN.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_zh-CN.tar.gz ) l10n_zh-TW? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_zh-TW.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_zh-TW.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_zh-TW.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_zh-TW.tar.gz ) l10n_af? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_af.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_af.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_af.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_af.tar.gz ) l10n_ar? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_ar.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ar.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ar.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ar.tar.gz ) l10n_as? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_as.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_as.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_as.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_as.tar.gz ) l10n_be? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_be.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_be.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_be.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_be.tar.gz ) l10n_br? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_br.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_br.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_br.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_br.tar.gz ) l10n_brx? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_brx.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_brx.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_brx.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_brx.tar.gz ) l10n_cy? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_cy.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_cy.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_cy.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_cy.tar.gz ) l10n_dgo? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_dgo.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_dgo.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_dgo.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_dgo.tar.gz ) l10n_fa? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_fa.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_fa.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_fa.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_fa.tar.gz ) l10n_ga? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_ga.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ga.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ga.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ga.tar.gz ) l10n_gd? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_gd.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_gd.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_gd.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_gd.tar.gz ) l10n_gug? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_gug.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_gug.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_gug.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_gug.tar.gz ) l10n_kk? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_kk.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_kk.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_kk.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_kk.tar.gz ) l10n_kmr-Latn? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_kmr-Latn.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_kmr-Latn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_kmr-Latn.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_kmr-Latn.tar.gz ) l10n_kn? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_kn.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_kn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_kn.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_kn.tar.gz ) l10n_kok? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_kok.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_kok.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_kok.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_kok.tar.gz ) l10n_ks? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_ks.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ks.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ks.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ks.tar.gz ) l10n_lb? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_lb.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_lb.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_lb.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_lb.tar.gz ) l10n_lo? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_lo.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_lo.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_lo.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_lo.tar.gz ) l10n_lt? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_lt.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_lt.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_lt.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_lt.tar.gz ) l10n_lv? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_lv.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_lv.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_lv.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_lv.tar.gz ) l10n_mai? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_mai.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_mai.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_mai.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_mai.tar.gz ) l10n_ml? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_ml.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ml.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ml.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ml.tar.gz ) l10n_mn? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_mn.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_mn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_mn.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_mn.tar.gz ) l10n_mni? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_mni.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_mni.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_mni.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_mni.tar.gz ) l10n_mr? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_mr.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_mr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_mr.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_mr.tar.gz ) l10n_my? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_my.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_my.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_my.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_my.tar.gz ) l10n_nr? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_nr.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_nr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_nr.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_nr.tar.gz ) l10n_nso? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_nso.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_nso.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_nso.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_nso.tar.gz ) l10n_oc? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_oc.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_oc.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_oc.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_oc.tar.gz ) l10n_or? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_or.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_or.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_or.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_or.tar.gz ) l10n_pa? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_pa-IN.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_pa-IN.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_pa-IN.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_pa-IN.tar.gz ) l10n_ro? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_ro.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ro.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ro.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ro.tar.gz ) l10n_rw? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_rw.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_rw.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_rw.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_rw.tar.gz ) l10n_sa? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_sa-IN.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sa-IN.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sa-IN.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sa-IN.tar.gz ) l10n_sat? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_sat.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sat.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sat.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sat.tar.gz ) l10n_sd? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_sd.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sd.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sd.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sd.tar.gz ) l10n_sid? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_sid.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sid.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sid.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sid.tar.gz ) l10n_sr-Latn? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_sr-Latn.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sr-Latn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sr-Latn.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sr-Latn.tar.gz ) l10n_sr? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_sr.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sr.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sr.tar.gz ) l10n_ss? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_ss.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ss.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ss.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ss.tar.gz ) l10n_st? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_st.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_st.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_st.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_st.tar.gz ) l10n_sw-TZ? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_sw-TZ.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sw-TZ.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sw-TZ.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_sw-TZ.tar.gz ) l10n_ta? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_ta.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ta.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ta.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ta.tar.gz ) l10n_te? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_te.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_te.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_te.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_te.tar.gz ) l10n_th? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_th.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_th.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_th.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_th.tar.gz ) l10n_tn? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_tn.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_tn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_tn.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_tn.tar.gz ) l10n_ts? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_ts.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ts.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ts.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ts.tar.gz ) l10n_tt? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_tt.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_tt.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_tt.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_tt.tar.gz ) l10n_uz? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_uz.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_uz.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_uz.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_uz.tar.gz ) l10n_ve? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_ve.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ve.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ve.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_ve.tar.gz ) l10n_xh? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_xh.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_xh.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_xh.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_xh.tar.gz ) l10n_zu? ( https://download.documentfoundation.org/libreoffice/stable/6.2.2/rpm/x86/LibreOffice_6.2.2_Linux_x86_rpm_langpack_zu.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_zu.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.2/rpm/x86/LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_zu.tar.gz -> LibreOffice_6.2.2.2_Linux_x86_rpm_langpack_zu.tar.gz ) -_eclasses_=eutils 6e6c2737b59a4b982de6fb3ecefd87f8 rpm f52cfa3a435468d86d3b49c357b9cb35 -_md5_=4231539c6910beb5b0b7eaff7ce49253 diff --git a/metadata/md5-cache/app-office/libreoffice-l10n-6.2.3.1 b/metadata/md5-cache/app-office/libreoffice-l10n-6.2.3.2 similarity index 53% rename from metadata/md5-cache/app-office/libreoffice-l10n-6.2.3.1 rename to metadata/md5-cache/app-office/libreoffice-l10n-6.2.3.2 index 45da8c438b8f..822bb67b9a3a 100644 --- a/metadata/md5-cache/app-office/libreoffice-l10n-6.2.3.1 +++ b/metadata/md5-cache/app-office/libreoffice-l10n-6.2.3.2 @@ -4,10 +4,11 @@ DESCRIPTION=Translations for the Libreoffice suite EAPI=7 HOMEPAGE=https://www.libreoffice.org IUSE=offlinehelp l10n_am l10n_ast l10n_bg l10n_bn-IN l10n_bn l10n_bo l10n_bs l10n_ca-valencia l10n_ca l10n_cs l10n_da l10n_de l10n_dz l10n_el l10n_en-GB l10n_en l10n_en-ZA l10n_eo l10n_es l10n_et l10n_eu l10n_fi l10n_fr l10n_gl l10n_gu l10n_he l10n_hi l10n_hr l10n_hu l10n_id l10n_is l10n_it l10n_ja l10n_ka l10n_km l10n_ko l10n_mk l10n_nb l10n_ne l10n_nl l10n_nn l10n_om l10n_pl l10n_pt-BR l10n_pt l10n_ru l10n_si l10n_sk l10n_sl l10n_sq l10n_sv l10n_tg l10n_tr l10n_ug l10n_uk l10n_vi l10n_zh-CN l10n_zh-TW l10n_af l10n_ar l10n_as l10n_be l10n_br l10n_brx l10n_cy l10n_dgo l10n_fa l10n_ga l10n_gd l10n_gug l10n_kk l10n_kmr-Latn l10n_kn l10n_kok l10n_ks l10n_lb l10n_lo l10n_lt l10n_lv l10n_mai l10n_ml l10n_mn l10n_mni l10n_mr l10n_my l10n_nr l10n_nso l10n_oc l10n_or l10n_pa l10n_ro l10n_rw l10n_sa l10n_sat l10n_sd l10n_sid l10n_sr-Latn l10n_sr l10n_ss l10n_st l10n_sw-TZ l10n_ta l10n_te l10n_th l10n_tn l10n_ts l10n_tt l10n_uz l10n_ve l10n_xh l10n_zu +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux LICENSE=|| ( LGPL-3 MPL-1.1 ) RDEPEND=app-text/hunspell RESTRICT=strip SLOT=0 -SRC_URI=l10n_am? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_am.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_am.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_am.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_am.tar.gz ) ) l10n_ast? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_ast.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ast.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ast.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ast.tar.gz ) ) l10n_bg? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_bg.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_bg.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_bg.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_bg.tar.gz ) ) l10n_bn-IN? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_bn-IN.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_bn-IN.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_bn-IN.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_bn-IN.tar.gz ) ) l10n_bn? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_bn.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_bn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_bn.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_bn.tar.gz ) ) l10n_bo? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_bo.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_bo.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_bo.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_bo.tar.gz ) ) l10n_bs? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_bs.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_bs.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_bs.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_bs.tar.gz ) ) l10n_ca-valencia? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_ca-valencia.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ca-valencia.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ca-valencia.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ca-valencia.tar.gz ) ) l10n_ca? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_ca.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ca.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ca.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ca.tar.gz ) ) l10n_cs? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_cs.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_cs.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_cs.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_cs.tar.gz ) ) l10n_da? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_da.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_da.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_da.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_da.tar.gz ) ) l10n_de? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_de.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_de.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_de.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_de.tar.gz ) ) l10n_dz? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_dz.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_dz.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_dz.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_dz.tar.gz ) ) l10n_el? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_el.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_el.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_el.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_el.tar.gz ) ) l10n_en-GB? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_en-GB.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_en-GB.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_en-GB.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_en-GB.tar.gz ) ) l10n_en? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_en-US.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_en-US.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_en-US.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_en-US.tar.gz ) ) l10n_en-ZA? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_en-ZA.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_en-ZA.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_en-ZA.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_en-ZA.tar.gz ) ) l10n_eo? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_eo.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_eo.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_eo.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_eo.tar.gz ) ) l10n_es? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_es.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_es.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_es.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_es.tar.gz ) ) l10n_et? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_et.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_et.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_et.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_et.tar.gz ) ) l10n_eu? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_eu.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_eu.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_eu.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_eu.tar.gz ) ) l10n_fi? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_fi.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_fi.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_fi.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_fi.tar.gz ) ) l10n_fr? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_fr.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_fr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_fr.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_fr.tar.gz ) ) l10n_gl? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_gl.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_gl.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_gl.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_gl.tar.gz ) ) l10n_gu? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_gu.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_gu.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_gu.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_gu.tar.gz ) ) l10n_he? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_he.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_he.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_he.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_he.tar.gz ) ) l10n_hi? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_hi.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_hi.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_hi.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_hi.tar.gz ) ) l10n_hr? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_hr.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_hr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_hr.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_hr.tar.gz ) ) l10n_hu? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_hu.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_hu.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_hu.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_hu.tar.gz ) ) l10n_id? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_id.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_id.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_id.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_id.tar.gz ) ) l10n_is? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_is.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_is.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_is.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_is.tar.gz ) ) l10n_it? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_it.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_it.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_it.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_it.tar.gz ) ) l10n_ja? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_ja.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ja.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ja.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ja.tar.gz ) ) l10n_ka? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_ka.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ka.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ka.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ka.tar.gz ) ) l10n_km? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_km.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_km.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_km.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_km.tar.gz ) ) l10n_ko? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_ko.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ko.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ko.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ko.tar.gz ) ) l10n_mk? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_mk.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_mk.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_mk.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_mk.tar.gz ) ) l10n_nb? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_nb.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_nb.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_nb.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_nb.tar.gz ) ) l10n_ne? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_ne.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ne.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ne.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ne.tar.gz ) ) l10n_nl? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_nl.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_nl.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_nl.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_nl.tar.gz ) ) l10n_nn? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_nn.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_nn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_nn.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_nn.tar.gz ) ) l10n_om? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_om.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_om.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_om.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_om.tar.gz ) ) l10n_pl? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_pl.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_pl.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_pl.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_pl.tar.gz ) ) l10n_pt-BR? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_pt-BR.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_pt-BR.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_pt-BR.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_pt-BR.tar.gz ) ) l10n_pt? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_pt.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_pt.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_pt.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_pt.tar.gz ) ) l10n_ru? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_ru.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ru.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ru.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ru.tar.gz ) ) l10n_si? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_si.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_si.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_si.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_si.tar.gz ) ) l10n_sk? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_sk.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_sk.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_sk.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_sk.tar.gz ) ) l10n_sl? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_sl.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_sl.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_sl.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_sl.tar.gz ) ) l10n_sq? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_sq.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_sq.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_sq.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_sq.tar.gz ) ) l10n_sv? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_sv.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_sv.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_sv.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_sv.tar.gz ) ) l10n_tg? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_tg.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_tg.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_tg.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_tg.tar.gz ) ) l10n_tr? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_tr.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_tr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_tr.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_tr.tar.gz ) ) l10n_ug? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_ug.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ug.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ug.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_ug.tar.gz ) ) l10n_uk? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_uk.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_uk.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_uk.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_uk.tar.gz ) ) l10n_vi? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_vi.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_vi.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_vi.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_vi.tar.gz ) ) l10n_zh-CN? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_zh-CN.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_zh-CN.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_zh-CN.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_zh-CN.tar.gz ) ) l10n_zh-TW? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_zh-TW.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_zh-TW.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_zh-TW.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_helppack_zh-TW.tar.gz ) ) l10n_am? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_am.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_am.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_am.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_am.tar.gz ) l10n_ast? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ast.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ast.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ast.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ast.tar.gz ) l10n_bg? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_bg.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_bg.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_bg.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_bg.tar.gz ) l10n_bn-IN? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_bn-IN.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_bn-IN.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_bn-IN.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_bn-IN.tar.gz ) l10n_bn? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_bn.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_bn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_bn.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_bn.tar.gz ) l10n_bo? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_bo.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_bo.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_bo.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_bo.tar.gz ) l10n_bs? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_bs.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_bs.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_bs.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_bs.tar.gz ) l10n_ca-valencia? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ca-valencia.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ca-valencia.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ca-valencia.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ca-valencia.tar.gz ) l10n_ca? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ca.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ca.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ca.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ca.tar.gz ) l10n_cs? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_cs.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_cs.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_cs.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_cs.tar.gz ) l10n_da? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_da.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_da.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_da.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_da.tar.gz ) l10n_de? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_de.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_de.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_de.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_de.tar.gz ) l10n_dz? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_dz.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_dz.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_dz.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_dz.tar.gz ) l10n_el? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_el.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_el.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_el.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_el.tar.gz ) l10n_en-GB? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_en-GB.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_en-GB.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_en-GB.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_en-GB.tar.gz ) l10n_en-ZA? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_en-ZA.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_en-ZA.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_en-ZA.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_en-ZA.tar.gz ) l10n_eo? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_eo.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_eo.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_eo.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_eo.tar.gz ) l10n_es? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_es.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_es.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_es.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_es.tar.gz ) l10n_et? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_et.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_et.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_et.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_et.tar.gz ) l10n_eu? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_eu.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_eu.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_eu.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_eu.tar.gz ) l10n_fi? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_fi.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_fi.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_fi.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_fi.tar.gz ) l10n_fr? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_fr.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_fr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_fr.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_fr.tar.gz ) l10n_gl? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_gl.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_gl.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_gl.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_gl.tar.gz ) l10n_gu? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_gu.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_gu.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_gu.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_gu.tar.gz ) l10n_he? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_he.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_he.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_he.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_he.tar.gz ) l10n_hi? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_hi.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_hi.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_hi.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_hi.tar.gz ) l10n_hr? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_hr.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_hr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_hr.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_hr.tar.gz ) l10n_hu? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_hu.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_hu.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_hu.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_hu.tar.gz ) l10n_id? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_id.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_id.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_id.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_id.tar.gz ) l10n_is? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_is.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_is.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_is.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_is.tar.gz ) l10n_it? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_it.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_it.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_it.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_it.tar.gz ) l10n_ja? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ja.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ja.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ja.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ja.tar.gz ) l10n_ka? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ka.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ka.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ka.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ka.tar.gz ) l10n_km? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_km.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_km.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_km.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_km.tar.gz ) l10n_ko? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ko.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ko.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ko.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ko.tar.gz ) l10n_mk? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_mk.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_mk.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_mk.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_mk.tar.gz ) l10n_nb? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_nb.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_nb.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_nb.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_nb.tar.gz ) l10n_ne? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ne.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ne.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ne.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ne.tar.gz ) l10n_nl? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_nl.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_nl.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_nl.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_nl.tar.gz ) l10n_nn? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_nn.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_nn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_nn.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_nn.tar.gz ) l10n_om? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_om.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_om.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_om.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_om.tar.gz ) l10n_pl? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_pl.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_pl.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_pl.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_pl.tar.gz ) l10n_pt-BR? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_pt-BR.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_pt-BR.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_pt-BR.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_pt-BR.tar.gz ) l10n_pt? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_pt.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_pt.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_pt.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_pt.tar.gz ) l10n_ru? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ru.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ru.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ru.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ru.tar.gz ) l10n_si? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_si.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_si.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_si.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_si.tar.gz ) l10n_sk? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_sk.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sk.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sk.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sk.tar.gz ) l10n_sl? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_sl.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sl.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sl.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sl.tar.gz ) l10n_sq? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_sq.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sq.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sq.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sq.tar.gz ) l10n_sv? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_sv.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sv.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sv.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sv.tar.gz ) l10n_tg? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_tg.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_tg.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_tg.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_tg.tar.gz ) l10n_tr? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_tr.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_tr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_tr.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_tr.tar.gz ) l10n_ug? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ug.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ug.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ug.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ug.tar.gz ) l10n_uk? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_uk.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_uk.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_uk.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_uk.tar.gz ) l10n_vi? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_vi.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_vi.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_vi.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_vi.tar.gz ) l10n_zh-CN? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_zh-CN.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_zh-CN.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_zh-CN.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_zh-CN.tar.gz ) l10n_zh-TW? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_zh-TW.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_zh-TW.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_zh-TW.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_zh-TW.tar.gz ) l10n_af? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_af.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_af.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_af.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_af.tar.gz ) l10n_ar? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ar.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ar.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ar.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ar.tar.gz ) l10n_as? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_as.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_as.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_as.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_as.tar.gz ) l10n_be? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_be.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_be.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_be.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_be.tar.gz ) l10n_br? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_br.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_br.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_br.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_br.tar.gz ) l10n_brx? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_brx.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_brx.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_brx.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_brx.tar.gz ) l10n_cy? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_cy.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_cy.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_cy.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_cy.tar.gz ) l10n_dgo? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_dgo.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_dgo.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_dgo.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_dgo.tar.gz ) l10n_fa? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_fa.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_fa.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_fa.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_fa.tar.gz ) l10n_ga? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ga.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ga.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ga.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ga.tar.gz ) l10n_gd? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_gd.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_gd.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_gd.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_gd.tar.gz ) l10n_gug? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_gug.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_gug.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_gug.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_gug.tar.gz ) l10n_kk? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_kk.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_kk.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_kk.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_kk.tar.gz ) l10n_kmr-Latn? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_kmr-Latn.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_kmr-Latn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_kmr-Latn.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_kmr-Latn.tar.gz ) l10n_kn? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_kn.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_kn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_kn.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_kn.tar.gz ) l10n_kok? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_kok.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_kok.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_kok.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_kok.tar.gz ) l10n_ks? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ks.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ks.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ks.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ks.tar.gz ) l10n_lb? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_lb.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_lb.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_lb.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_lb.tar.gz ) l10n_lo? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_lo.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_lo.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_lo.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_lo.tar.gz ) l10n_lt? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_lt.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_lt.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_lt.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_lt.tar.gz ) l10n_lv? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_lv.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_lv.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_lv.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_lv.tar.gz ) l10n_mai? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_mai.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_mai.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_mai.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_mai.tar.gz ) l10n_ml? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ml.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ml.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ml.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ml.tar.gz ) l10n_mn? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_mn.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_mn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_mn.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_mn.tar.gz ) l10n_mni? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_mni.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_mni.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_mni.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_mni.tar.gz ) l10n_mr? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_mr.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_mr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_mr.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_mr.tar.gz ) l10n_my? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_my.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_my.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_my.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_my.tar.gz ) l10n_nr? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_nr.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_nr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_nr.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_nr.tar.gz ) l10n_nso? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_nso.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_nso.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_nso.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_nso.tar.gz ) l10n_oc? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_oc.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_oc.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_oc.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_oc.tar.gz ) l10n_or? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_or.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_or.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_or.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_or.tar.gz ) l10n_pa? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_pa-IN.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_pa-IN.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_pa-IN.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_pa-IN.tar.gz ) l10n_ro? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ro.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ro.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ro.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ro.tar.gz ) l10n_rw? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_rw.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_rw.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_rw.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_rw.tar.gz ) l10n_sa? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_sa-IN.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sa-IN.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sa-IN.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sa-IN.tar.gz ) l10n_sat? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_sat.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sat.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sat.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sat.tar.gz ) l10n_sd? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_sd.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sd.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sd.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sd.tar.gz ) l10n_sid? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_sid.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sid.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sid.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sid.tar.gz ) l10n_sr-Latn? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_sr-Latn.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sr-Latn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sr-Latn.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sr-Latn.tar.gz ) l10n_sr? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_sr.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sr.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sr.tar.gz ) l10n_ss? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ss.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ss.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ss.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ss.tar.gz ) l10n_st? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_st.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_st.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_st.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_st.tar.gz ) l10n_sw-TZ? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_sw-TZ.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sw-TZ.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sw-TZ.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_sw-TZ.tar.gz ) l10n_ta? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ta.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ta.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ta.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ta.tar.gz ) l10n_te? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_te.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_te.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_te.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_te.tar.gz ) l10n_th? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_th.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_th.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_th.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_th.tar.gz ) l10n_tn? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_tn.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_tn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_tn.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_tn.tar.gz ) l10n_ts? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ts.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ts.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ts.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ts.tar.gz ) l10n_tt? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_tt.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_tt.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_tt.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_tt.tar.gz ) l10n_uz? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_uz.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_uz.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_uz.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_uz.tar.gz ) l10n_ve? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ve.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ve.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ve.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_ve.tar.gz ) l10n_xh? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_xh.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_xh.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_xh.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_xh.tar.gz ) l10n_zu? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_zu.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_zu.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_zu.tar.gz -> LibreOffice_6.2.3.1_Linux_x86_rpm_langpack_zu.tar.gz ) +SRC_URI=l10n_am? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_am.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_am.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_am.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_am.tar.gz ) ) l10n_ast? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_ast.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ast.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ast.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ast.tar.gz ) ) l10n_bg? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_bg.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_bg.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_bg.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_bg.tar.gz ) ) l10n_bn-IN? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_bn-IN.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_bn-IN.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_bn-IN.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_bn-IN.tar.gz ) ) l10n_bn? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_bn.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_bn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_bn.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_bn.tar.gz ) ) l10n_bo? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_bo.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_bo.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_bo.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_bo.tar.gz ) ) l10n_bs? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_bs.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_bs.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_bs.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_bs.tar.gz ) ) l10n_ca-valencia? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_ca-valencia.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ca-valencia.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ca-valencia.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ca-valencia.tar.gz ) ) l10n_ca? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_ca.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ca.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ca.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ca.tar.gz ) ) l10n_cs? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_cs.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_cs.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_cs.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_cs.tar.gz ) ) l10n_da? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_da.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_da.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_da.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_da.tar.gz ) ) l10n_de? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_de.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_de.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_de.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_de.tar.gz ) ) l10n_dz? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_dz.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_dz.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_dz.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_dz.tar.gz ) ) l10n_el? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_el.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_el.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_el.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_el.tar.gz ) ) l10n_en-GB? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_en-GB.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_en-GB.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_en-GB.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_en-GB.tar.gz ) ) l10n_en? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_en-US.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_en-US.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_en-US.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_en-US.tar.gz ) ) l10n_en-ZA? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_en-ZA.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_en-ZA.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_en-ZA.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_en-ZA.tar.gz ) ) l10n_eo? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_eo.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_eo.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_eo.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_eo.tar.gz ) ) l10n_es? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_es.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_es.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_es.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_es.tar.gz ) ) l10n_et? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_et.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_et.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_et.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_et.tar.gz ) ) l10n_eu? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_eu.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_eu.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_eu.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_eu.tar.gz ) ) l10n_fi? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_fi.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_fi.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_fi.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_fi.tar.gz ) ) l10n_fr? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_fr.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_fr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_fr.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_fr.tar.gz ) ) l10n_gl? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_gl.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_gl.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_gl.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_gl.tar.gz ) ) l10n_gu? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_gu.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_gu.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_gu.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_gu.tar.gz ) ) l10n_he? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_he.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_he.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_he.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_he.tar.gz ) ) l10n_hi? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_hi.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_hi.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_hi.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_hi.tar.gz ) ) l10n_hr? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_hr.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_hr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_hr.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_hr.tar.gz ) ) l10n_hu? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_hu.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_hu.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_hu.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_hu.tar.gz ) ) l10n_id? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_id.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_id.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_id.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_id.tar.gz ) ) l10n_is? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_is.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_is.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_is.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_is.tar.gz ) ) l10n_it? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_it.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_it.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_it.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_it.tar.gz ) ) l10n_ja? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_ja.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ja.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ja.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ja.tar.gz ) ) l10n_ka? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_ka.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ka.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ka.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ka.tar.gz ) ) l10n_km? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_km.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_km.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_km.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_km.tar.gz ) ) l10n_ko? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_ko.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ko.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ko.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ko.tar.gz ) ) l10n_mk? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_mk.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_mk.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_mk.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_mk.tar.gz ) ) l10n_nb? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_nb.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_nb.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_nb.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_nb.tar.gz ) ) l10n_ne? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_ne.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ne.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ne.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ne.tar.gz ) ) l10n_nl? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_nl.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_nl.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_nl.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_nl.tar.gz ) ) l10n_nn? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_nn.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_nn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_nn.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_nn.tar.gz ) ) l10n_om? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_om.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_om.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_om.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_om.tar.gz ) ) l10n_pl? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_pl.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_pl.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_pl.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_pl.tar.gz ) ) l10n_pt-BR? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_pt-BR.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_pt-BR.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_pt-BR.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_pt-BR.tar.gz ) ) l10n_pt? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_pt.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_pt.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_pt.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_pt.tar.gz ) ) l10n_ru? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_ru.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ru.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ru.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ru.tar.gz ) ) l10n_si? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_si.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_si.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_si.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_si.tar.gz ) ) l10n_sk? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_sk.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_sk.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_sk.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_sk.tar.gz ) ) l10n_sl? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_sl.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_sl.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_sl.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_sl.tar.gz ) ) l10n_sq? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_sq.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_sq.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_sq.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_sq.tar.gz ) ) l10n_sv? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_sv.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_sv.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_sv.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_sv.tar.gz ) ) l10n_tg? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_tg.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_tg.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_tg.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_tg.tar.gz ) ) l10n_tr? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_tr.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_tr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_tr.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_tr.tar.gz ) ) l10n_ug? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_ug.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ug.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ug.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_ug.tar.gz ) ) l10n_uk? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_uk.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_uk.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_uk.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_uk.tar.gz ) ) l10n_vi? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_vi.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_vi.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_vi.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_vi.tar.gz ) ) l10n_zh-CN? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_zh-CN.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_zh-CN.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_zh-CN.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_zh-CN.tar.gz ) ) l10n_zh-TW? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_helppack_zh-TW.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_zh-TW.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_zh-TW.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_helppack_zh-TW.tar.gz ) ) l10n_am? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_am.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_am.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_am.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_am.tar.gz ) l10n_ast? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ast.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ast.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ast.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ast.tar.gz ) l10n_bg? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_bg.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_bg.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_bg.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_bg.tar.gz ) l10n_bn-IN? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_bn-IN.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_bn-IN.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_bn-IN.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_bn-IN.tar.gz ) l10n_bn? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_bn.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_bn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_bn.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_bn.tar.gz ) l10n_bo? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_bo.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_bo.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_bo.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_bo.tar.gz ) l10n_bs? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_bs.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_bs.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_bs.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_bs.tar.gz ) l10n_ca-valencia? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ca-valencia.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ca-valencia.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ca-valencia.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ca-valencia.tar.gz ) l10n_ca? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ca.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ca.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ca.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ca.tar.gz ) l10n_cs? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_cs.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_cs.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_cs.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_cs.tar.gz ) l10n_da? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_da.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_da.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_da.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_da.tar.gz ) l10n_de? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_de.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_de.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_de.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_de.tar.gz ) l10n_dz? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_dz.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_dz.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_dz.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_dz.tar.gz ) l10n_el? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_el.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_el.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_el.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_el.tar.gz ) l10n_en-GB? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_en-GB.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_en-GB.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_en-GB.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_en-GB.tar.gz ) l10n_en-ZA? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_en-ZA.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_en-ZA.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_en-ZA.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_en-ZA.tar.gz ) l10n_eo? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_eo.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_eo.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_eo.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_eo.tar.gz ) l10n_es? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_es.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_es.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_es.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_es.tar.gz ) l10n_et? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_et.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_et.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_et.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_et.tar.gz ) l10n_eu? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_eu.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_eu.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_eu.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_eu.tar.gz ) l10n_fi? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_fi.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_fi.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_fi.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_fi.tar.gz ) l10n_fr? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_fr.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_fr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_fr.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_fr.tar.gz ) l10n_gl? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_gl.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_gl.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_gl.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_gl.tar.gz ) l10n_gu? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_gu.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_gu.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_gu.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_gu.tar.gz ) l10n_he? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_he.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_he.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_he.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_he.tar.gz ) l10n_hi? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_hi.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_hi.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_hi.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_hi.tar.gz ) l10n_hr? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_hr.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_hr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_hr.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_hr.tar.gz ) l10n_hu? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_hu.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_hu.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_hu.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_hu.tar.gz ) l10n_id? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_id.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_id.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_id.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_id.tar.gz ) l10n_is? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_is.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_is.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_is.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_is.tar.gz ) l10n_it? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_it.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_it.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_it.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_it.tar.gz ) l10n_ja? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ja.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ja.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ja.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ja.tar.gz ) l10n_ka? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ka.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ka.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ka.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ka.tar.gz ) l10n_km? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_km.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_km.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_km.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_km.tar.gz ) l10n_ko? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ko.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ko.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ko.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ko.tar.gz ) l10n_mk? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_mk.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_mk.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_mk.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_mk.tar.gz ) l10n_nb? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_nb.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_nb.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_nb.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_nb.tar.gz ) l10n_ne? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ne.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ne.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ne.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ne.tar.gz ) l10n_nl? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_nl.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_nl.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_nl.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_nl.tar.gz ) l10n_nn? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_nn.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_nn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_nn.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_nn.tar.gz ) l10n_om? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_om.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_om.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_om.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_om.tar.gz ) l10n_pl? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_pl.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_pl.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_pl.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_pl.tar.gz ) l10n_pt-BR? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_pt-BR.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_pt-BR.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_pt-BR.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_pt-BR.tar.gz ) l10n_pt? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_pt.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_pt.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_pt.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_pt.tar.gz ) l10n_ru? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ru.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ru.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ru.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ru.tar.gz ) l10n_si? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_si.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_si.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_si.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_si.tar.gz ) l10n_sk? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_sk.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sk.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sk.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sk.tar.gz ) l10n_sl? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_sl.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sl.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sl.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sl.tar.gz ) l10n_sq? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_sq.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sq.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sq.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sq.tar.gz ) l10n_sv? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_sv.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sv.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sv.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sv.tar.gz ) l10n_tg? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_tg.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_tg.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_tg.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_tg.tar.gz ) l10n_tr? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_tr.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_tr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_tr.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_tr.tar.gz ) l10n_ug? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ug.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ug.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ug.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ug.tar.gz ) l10n_uk? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_uk.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_uk.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_uk.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_uk.tar.gz ) l10n_vi? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_vi.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_vi.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_vi.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_vi.tar.gz ) l10n_zh-CN? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_zh-CN.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_zh-CN.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_zh-CN.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_zh-CN.tar.gz ) l10n_zh-TW? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_zh-TW.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_zh-TW.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_zh-TW.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_zh-TW.tar.gz ) l10n_af? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_af.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_af.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_af.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_af.tar.gz ) l10n_ar? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ar.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ar.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ar.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ar.tar.gz ) l10n_as? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_as.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_as.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_as.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_as.tar.gz ) l10n_be? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_be.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_be.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_be.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_be.tar.gz ) l10n_br? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_br.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_br.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_br.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_br.tar.gz ) l10n_brx? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_brx.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_brx.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_brx.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_brx.tar.gz ) l10n_cy? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_cy.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_cy.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_cy.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_cy.tar.gz ) l10n_dgo? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_dgo.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_dgo.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_dgo.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_dgo.tar.gz ) l10n_fa? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_fa.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_fa.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_fa.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_fa.tar.gz ) l10n_ga? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ga.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ga.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ga.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ga.tar.gz ) l10n_gd? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_gd.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_gd.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_gd.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_gd.tar.gz ) l10n_gug? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_gug.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_gug.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_gug.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_gug.tar.gz ) l10n_kk? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_kk.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_kk.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_kk.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_kk.tar.gz ) l10n_kmr-Latn? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_kmr-Latn.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_kmr-Latn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_kmr-Latn.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_kmr-Latn.tar.gz ) l10n_kn? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_kn.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_kn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_kn.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_kn.tar.gz ) l10n_kok? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_kok.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_kok.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_kok.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_kok.tar.gz ) l10n_ks? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ks.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ks.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ks.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ks.tar.gz ) l10n_lb? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_lb.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_lb.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_lb.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_lb.tar.gz ) l10n_lo? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_lo.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_lo.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_lo.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_lo.tar.gz ) l10n_lt? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_lt.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_lt.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_lt.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_lt.tar.gz ) l10n_lv? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_lv.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_lv.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_lv.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_lv.tar.gz ) l10n_mai? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_mai.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_mai.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_mai.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_mai.tar.gz ) l10n_ml? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ml.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ml.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ml.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ml.tar.gz ) l10n_mn? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_mn.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_mn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_mn.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_mn.tar.gz ) l10n_mni? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_mni.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_mni.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_mni.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_mni.tar.gz ) l10n_mr? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_mr.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_mr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_mr.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_mr.tar.gz ) l10n_my? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_my.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_my.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_my.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_my.tar.gz ) l10n_nr? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_nr.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_nr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_nr.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_nr.tar.gz ) l10n_nso? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_nso.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_nso.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_nso.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_nso.tar.gz ) l10n_oc? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_oc.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_oc.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_oc.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_oc.tar.gz ) l10n_or? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_or.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_or.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_or.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_or.tar.gz ) l10n_pa? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_pa-IN.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_pa-IN.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_pa-IN.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_pa-IN.tar.gz ) l10n_ro? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ro.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ro.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ro.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ro.tar.gz ) l10n_rw? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_rw.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_rw.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_rw.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_rw.tar.gz ) l10n_sa? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_sa-IN.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sa-IN.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sa-IN.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sa-IN.tar.gz ) l10n_sat? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_sat.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sat.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sat.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sat.tar.gz ) l10n_sd? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_sd.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sd.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sd.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sd.tar.gz ) l10n_sid? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_sid.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sid.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sid.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sid.tar.gz ) l10n_sr-Latn? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_sr-Latn.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sr-Latn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sr-Latn.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sr-Latn.tar.gz ) l10n_sr? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_sr.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sr.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sr.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sr.tar.gz ) l10n_ss? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ss.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ss.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ss.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ss.tar.gz ) l10n_st? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_st.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_st.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_st.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_st.tar.gz ) l10n_sw-TZ? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_sw-TZ.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sw-TZ.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sw-TZ.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_sw-TZ.tar.gz ) l10n_ta? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ta.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ta.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ta.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ta.tar.gz ) l10n_te? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_te.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_te.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_te.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_te.tar.gz ) l10n_th? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_th.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_th.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_th.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_th.tar.gz ) l10n_tn? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_tn.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_tn.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_tn.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_tn.tar.gz ) l10n_ts? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ts.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ts.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ts.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ts.tar.gz ) l10n_tt? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_tt.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_tt.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_tt.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_tt.tar.gz ) l10n_uz? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_uz.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_uz.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_uz.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_uz.tar.gz ) l10n_ve? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_ve.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ve.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ve.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_ve.tar.gz ) l10n_xh? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_xh.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_xh.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_xh.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_xh.tar.gz ) l10n_zu? ( https://download.documentfoundation.org/libreoffice/stable/6.2.3/rpm/x86/LibreOffice_6.2.3_Linux_x86_rpm_langpack_zu.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_zu.tar.gz https://download.documentfoundation.org/libreoffice/testing/6.2.3/rpm/x86/LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_zu.tar.gz -> LibreOffice_6.2.3.2_Linux_x86_rpm_langpack_zu.tar.gz ) _eclasses_=eutils 6e6c2737b59a4b982de6fb3ecefd87f8 rpm f52cfa3a435468d86d3b49c357b9cb35 -_md5_=038dbf7de2bcb9314b7a03ca197c7efd +_md5_=4231539c6910beb5b0b7eaff7ce49253 diff --git a/metadata/md5-cache/app-office/skrooge-2.19.0 b/metadata/md5-cache/app-office/skrooge-2.19.0 new file mode 100644 index 000000000000..482870ccf650 --- /dev/null +++ b/metadata/md5-cache/app-office/skrooge-2.19.0 @@ -0,0 +1,16 @@ +BDEPEND=dev-libs/libxslt virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.9.6 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) >=kde-frameworks/extra-cmake-modules-5.54.0:5 handbook? ( >=kde-frameworks/kdoctools-5.54.0:5 ) +DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack +DEPEND=>=kde-frameworks/karchive-5.54.0:5 >=kde-frameworks/kcompletion-5.54.0:5 >=kde-frameworks/kconfig-5.54.0:5 >=kde-frameworks/kconfigwidgets-5.54.0:5 >=kde-frameworks/kcoreaddons-5.54.0:5 >=kde-frameworks/kdbusaddons-5.54.0:5 >=kde-frameworks/ki18n-5.54.0:5 >=kde-frameworks/kiconthemes-5.54.0:5 >=kde-frameworks/kio-5.54.0:5 >=kde-frameworks/kitemviews-5.54.0:5 >=kde-frameworks/knewstuff-5.54.0:5 >=kde-frameworks/knotifications-5.54.0:5 >=kde-frameworks/knotifyconfig-5.54.0:5 >=kde-frameworks/kparts-5.54.0:5 >=kde-frameworks/kservice-5.54.0:5 >=kde-frameworks/ktextwidgets-5.54.0:5 >=kde-frameworks/kwallet-5.54.0:5 >=kde-frameworks/kwidgetsaddons-5.54.0:5 >=kde-frameworks/kxmlgui-5.54.0:5 >=dev-qt/qtconcurrent-5.11.1:5 >=dev-qt/qtdbus-5.11.1:5 >=dev-qt/qtdeclarative-5.11.1:5[widgets] >=dev-qt/qtgui-5.11.1:5 >=dev-qt/qtnetwork-5.11.1:5 >=dev-qt/qtprintsupport-5.11.1:5 >=dev-qt/qtscript-5.11.1:5 >=dev-qt/qtsql-5.11.1:5 >=dev-qt/qtsvg-5.11.1:5 >=dev-qt/qtwidgets-5.11.1:5 >=dev-qt/qtxml-5.11.1:5 app-crypt/qca:2[qt5(+)] dev-db/sqlcipher dev-libs/grantlee:5 activities? ( >=kde-frameworks/kactivities-5.54.0:5 ) kde? ( >=kde-frameworks/krunner-5.54.0:5 ) ofx? ( dev-libs/libofx ) webkit? ( >=dev-qt/qtwebkit-5.212.0_pre20180120:5 ) !webkit? ( >=dev-qt/qtwebengine-5.11.1:5[widgets] ) >=kde-frameworks/kguiaddons-5.54.0:5 >=kde-frameworks/kjobwidgets-5.54.0:5 >=kde-frameworks/kwindowsystem-5.54.0:5 designer? ( >=kde-frameworks/kdesignerplugin-5.54.0:5 >=dev-qt/designer-5.11.1:5 ) dev-util/desktop-file-utils x11-misc/shared-mime-info test? ( >=dev-qt/qttest-5.11.1:5 ) >=dev-qt/qtcore-5.11.1:5 dev-util/desktop-file-utils app-arch/xz-utils +DESCRIPTION=Personal finances manager, aiming at being simple and intuitive +EAPI=7 +HOMEPAGE=https://skrooge.org/ +IUSE=activities designer kde ofx webkit test debug +handbook test +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=>=kde-frameworks/karchive-5.54.0:5 >=kde-frameworks/kcompletion-5.54.0:5 >=kde-frameworks/kconfig-5.54.0:5 >=kde-frameworks/kconfigwidgets-5.54.0:5 >=kde-frameworks/kcoreaddons-5.54.0:5 >=kde-frameworks/kdbusaddons-5.54.0:5 >=kde-frameworks/ki18n-5.54.0:5 >=kde-frameworks/kiconthemes-5.54.0:5 >=kde-frameworks/kio-5.54.0:5 >=kde-frameworks/kitemviews-5.54.0:5 >=kde-frameworks/knewstuff-5.54.0:5 >=kde-frameworks/knotifications-5.54.0:5 >=kde-frameworks/knotifyconfig-5.54.0:5 >=kde-frameworks/kparts-5.54.0:5 >=kde-frameworks/kservice-5.54.0:5 >=kde-frameworks/ktextwidgets-5.54.0:5 >=kde-frameworks/kwallet-5.54.0:5 >=kde-frameworks/kwidgetsaddons-5.54.0:5 >=kde-frameworks/kxmlgui-5.54.0:5 >=dev-qt/qtconcurrent-5.11.1:5 >=dev-qt/qtdbus-5.11.1:5 >=dev-qt/qtdeclarative-5.11.1:5[widgets] >=dev-qt/qtgui-5.11.1:5 >=dev-qt/qtnetwork-5.11.1:5 >=dev-qt/qtprintsupport-5.11.1:5 >=dev-qt/qtscript-5.11.1:5 >=dev-qt/qtsql-5.11.1:5 >=dev-qt/qtsvg-5.11.1:5 >=dev-qt/qtwidgets-5.11.1:5 >=dev-qt/qtxml-5.11.1:5 app-crypt/qca:2[qt5(+)] dev-db/sqlcipher dev-libs/grantlee:5 activities? ( >=kde-frameworks/kactivities-5.54.0:5 ) kde? ( >=kde-frameworks/krunner-5.54.0:5 ) ofx? ( dev-libs/libofx ) webkit? ( >=dev-qt/qtwebkit-5.212.0_pre20180120:5 ) !webkit? ( >=dev-qt/qtwebengine-5.11.1:5[widgets] ) >=dev-qt/qtquickcontrols-5.11.1:5 >=kde-frameworks/kf-env-4 || ( >=kde-frameworks/breeze-icons-5.54.0:5 kde-frameworks/oxygen-icons:* ) >=dev-qt/qtcore-5.11.1:5 +REQUIRED_USE=test? ( designer ) +RESTRICT=test +SLOT=5 +SRC_URI=mirror://kde/stable/skrooge/skrooge-2.19.0.tar.xz +_eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf kde5 79b9341795c77777bb58dd1513bcbbb6 kde5-functions d2eb74228ec6cacb426e9e65eff37784 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs b45201c4e6c096b98e250336954e64b9 virtualx 401b718cc14d43a5a7fbe062c4851ba5 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 14d00d009167652b1fa363e55effe213 +_md5_=c5fe033b75ad53207c8a485c8ef0b3e3 diff --git a/metadata/md5-cache/app-office/texstudio-2.12.16_beta2 b/metadata/md5-cache/app-office/texstudio-2.12.16_beta2-r1 similarity index 74% rename from metadata/md5-cache/app-office/texstudio-2.12.16_beta2 rename to metadata/md5-cache/app-office/texstudio-2.12.16_beta2-r1 index bbefe13af596..2538542b4dbe 100644 --- a/metadata/md5-cache/app-office/texstudio-2.12.16_beta2 +++ b/metadata/md5-cache/app-office/texstudio-2.12.16_beta2-r1 @@ -1,4 +1,4 @@ -DEFINED_PHASES=configure install postinst postrm preinst prepare +DEFINED_PHASES=configure install postinst postrm prepare DEPEND=app-text/hunspell:= app-text/poppler[qt5] >=dev-libs/quazip-0.7.2[qt5(+)] dev-qt/designer:5 dev-qt/qtcore:5 dev-qt/qtconcurrent:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtscript:5 dev-qt/qtsingleapplication[qt5(+),X] dev-qt/qtsvg:5 dev-qt/qttest:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 sys-libs/zlib x11-libs/libX11 x11-libs/libXext video? ( media-libs/phonon[qt5(+)] ) virtual/pkgconfig DESCRIPTION=Free cross-platform LaTeX editor (fork from texmakerX) EAPI=7 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=app-text/hunspell:= app-text/poppler[qt5] >=dev-libs/quazip-0.7.2[qt5(+)] dev-qt/designer:5 dev-qt/qtcore:5 dev-qt/qtconcurrent:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtscript:5 dev-qt/qtsingleapplication[qt5(+),X] dev-qt/qtsvg:5 dev-qt/qttest:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 sys-libs/zlib x11-libs/libX11 x11-libs/libXext video? ( media-libs/phonon[qt5(+)] ) app-text/ghostscript-gpl app-text/psutils media-libs/netpbm virtual/latex-base SLOT=0 SRC_URI=https://github.com/texstudio-org/texstudio/archive/2.12.16beta2.tar.gz -> texstudio-2.12.16_beta2.tar.gz -_eclasses_=estack 43ddf5aaffa7a8d0482df54d25a66a1f gnome2-utils 532371cfcba45b2ab0d2950547c97d95 multilib b2f01ad412baf81650c23fcf0975fa33 prefix e51c7882b7b721e54e684f7eb143cbfe qmake-utils bdf97e69a34b864d6d545f4ec3143ff7 toolchain-funcs b45201c4e6c096b98e250336954e64b9 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=3b77ff52f079525632e34446543a3724 +_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d estack 43ddf5aaffa7a8d0482df54d25a66a1f multilib b2f01ad412baf81650c23fcf0975fa33 prefix e51c7882b7b721e54e684f7eb143cbfe qmake-utils bdf97e69a34b864d6d545f4ec3143ff7 toolchain-funcs b45201c4e6c096b98e250336954e64b9 xdg-utils 14d00d009167652b1fa363e55effe213 +_md5_=d6b4dbf8753b594d83753b506d7aa09f diff --git a/metadata/md5-cache/app-portage/Manifest.gz b/metadata/md5-cache/app-portage/Manifest.gz index 1a7d1281b303..200377603045 100644 Binary files a/metadata/md5-cache/app-portage/Manifest.gz and b/metadata/md5-cache/app-portage/Manifest.gz differ diff --git a/metadata/md5-cache/app-portage/grs-0.7 b/metadata/md5-cache/app-portage/grs-0.7 index 117aed143759..ab2d7b03b560 100644 --- a/metadata/md5-cache/app-portage/grs-0.7 +++ b/metadata/md5-cache/app-portage/grs-0.7 @@ -4,11 +4,11 @@ DESCRIPTION=Suite to build Gentoo Reference Systems EAPI=7 HOMEPAGE=https://dev.gentoo.org/~blueness/grs IUSE=server python_targets_python3_5 python_targets_python3_6 kernel_linux -KEYWORDS=amd64 arm ~arm64 x86 +KEYWORDS=amd64 arm arm64 x86 LICENSE=GPL-2 RDEPEND=|| ( sys-apps/portage sys-apps/portage-mgorny ) server? ( app-arch/tar[xattr] app-crypt/md5deep dev-libs/libcgroup dev-vcs/git net-misc/rsync sys-fs/squashfs-tools virtual/cdrtools || ( sys-kernel/genkernel sys-kernel/genkernel-next ) ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_5(-),-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_python3_5 python_targets_python3_6 ) SLOT=0 SRC_URI=https://dev.gentoo.org/~blueness/grs/grs-0.7.tar.gz https://dev.gentoo.org/~blueness/grs/ISO-1.tar.gz _eclasses_=distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 linux-info 953c3b1c472dcadbf62098a9301327f2 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=329c1df2f6f7e8d780c53e7a67b9a31b +_md5_=68f0cc13d396a095c95c33843a3af55d diff --git a/metadata/md5-cache/app-shells/Manifest.gz b/metadata/md5-cache/app-shells/Manifest.gz index 2950ba174e5a..d2d802567817 100644 Binary files a/metadata/md5-cache/app-shells/Manifest.gz and b/metadata/md5-cache/app-shells/Manifest.gz differ diff --git a/metadata/md5-cache/app-shells/bash-5.0_p2-r2 b/metadata/md5-cache/app-shells/bash-5.0_p2-r2 deleted file mode 100644 index edcde760b822..000000000000 --- a/metadata/md5-cache/app-shells/bash-5.0_p2-r2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst preinst prepare setup unpack -DEPEND=>=sys-libs/ncurses-5.2-r2:0= readline? ( >=sys-libs/readline-8.0:0= ) nls? ( virtual/libintl ) -DESCRIPTION=The standard GNU Bourne again shell -EAPI=6 -HOMEPAGE=http://tiswww.case.edu/php/chet/bash/bashtop.html -IUSE=afs bashlogger examples mem-scramble +net nls plugins +readline -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=GPL-3 -RDEPEND=>=sys-libs/ncurses-5.2-r2:0= readline? ( >=sys-libs/readline-8.0:0= ) nls? ( virtual/libintl ) !=sys-libs/ncurses-5.2-r2:0= readline? ( >=sys-libs/readline-8.0:0= ) nls? ( virtual/libintl ) !=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 >=dev-vcs/git-1.8.2.1[curl] +DEFINED_PHASES=configure install prepare unpack +DEPEND=sys-libs/ncurses:0= sys-libs/readline:0= nls? ( virtual/libintl ) sys-apps/texinfo sys-devel/bison virtual/pkgconfig nls? ( sys-devel/gettext ) +DESCRIPTION=Hypertext info and man viewer based on (n)curses +EAPI=7 +HOMEPAGE=https://github.com/baszoetekouw/pinfo +IUSE=nls readline +LICENSE=GPL-2 +RDEPEND=sys-libs/ncurses:0= sys-libs/readline:0= nls? ( virtual/libintl ) +SLOT=0 +_eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf git-r3 0d4635eeb5a96cd5315597a47eba25c9 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=b2b260dd4b88149761af3246e3dc593c diff --git a/metadata/md5-cache/app-text/poppler-0.76.0 b/metadata/md5-cache/app-text/poppler-0.76.0 new file mode 100644 index 000000000000..c69795441fdb --- /dev/null +++ b/metadata/md5-cache/app-text/poppler-0.76.0 @@ -0,0 +1,15 @@ +BDEPEND=dev-util/glib-utils virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.9.6 +DEFINED_PHASES=compile configure install prepare test +DEPEND=media-libs/fontconfig media-libs/freetype sys-libs/zlib cairo? ( dev-libs/glib:2 x11-libs/cairo introspection? ( dev-libs/gobject-introspection:= ) ) curl? ( net-misc/curl ) jpeg? ( virtual/jpeg:0 ) jpeg2k? ( >=media-libs/openjpeg-2.3.0-r1:2= ) lcms? ( media-libs/lcms:2 ) nss? ( >=dev-libs/nss-3.19:0 ) png? ( media-libs/libpng:0= ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtxml:5 ) tiff? ( media-libs/tiff:0 ) +DESCRIPTION=PDF rendering library based on the xpdf-3.0 code base +EAPI=7 +HOMEPAGE=https://poppler.freedesktop.org/ +IUSE=cairo cjk curl cxx debug doc +introspection +jpeg +jpeg2k +lcms nss png qt5 tiff +utils +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 ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=GPL-2 +RDEPEND=media-libs/fontconfig media-libs/freetype sys-libs/zlib cairo? ( dev-libs/glib:2 x11-libs/cairo introspection? ( dev-libs/gobject-introspection:= ) ) curl? ( net-misc/curl ) jpeg? ( virtual/jpeg:0 ) jpeg2k? ( >=media-libs/openjpeg-2.3.0-r1:2= ) lcms? ( media-libs/lcms:2 ) nss? ( >=dev-libs/nss-3.19:0 ) png? ( media-libs/libpng:0= ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtxml:5 ) tiff? ( media-libs/tiff:0 ) cjk? ( app-text/poppler-data ) +RESTRICT=test +SLOT=0/87 +SRC_URI=https://poppler.freedesktop.org/poppler-0.76.0.tar.xz +_eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs b45201c4e6c096b98e250336954e64b9 xdg-utils 14d00d009167652b1fa363e55effe213 +_md5_=c4bfb9afbf8c47d175f16306897f4a93 diff --git a/metadata/md5-cache/app-text/poppler-9999 b/metadata/md5-cache/app-text/poppler-9999 index 4143d360368f..828934be536c 100644 --- a/metadata/md5-cache/app-text/poppler-9999 +++ b/metadata/md5-cache/app-text/poppler-9999 @@ -10,4 +10,4 @@ RDEPEND=media-libs/fontconfig media-libs/freetype sys-libs/zlib cairo? ( dev-lib RESTRICT=test SLOT=0/9999 _eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf git-r3 0d4635eeb5a96cd5315597a47eba25c9 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs b45201c4e6c096b98e250336954e64b9 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=32e0d1010acf5de155b3bc2d12b32143 +_md5_=c4bfb9afbf8c47d175f16306897f4a93 diff --git a/metadata/md5-cache/dev-cpp/Manifest.gz b/metadata/md5-cache/dev-cpp/Manifest.gz index c939ef2fda34..45ca6ce7c8d2 100644 Binary files a/metadata/md5-cache/dev-cpp/Manifest.gz and b/metadata/md5-cache/dev-cpp/Manifest.gz differ diff --git a/metadata/md5-cache/dev-cpp/catch-2.5.0 b/metadata/md5-cache/dev-cpp/catch-2.5.0 index 3e45d2c64771..8fe7273bc83c 100644 --- a/metadata/md5-cache/dev-cpp/catch-2.5.0 +++ b/metadata/md5-cache/dev-cpp/catch-2.5.0 @@ -4,10 +4,10 @@ DESCRIPTION=Modern C++ header-only framework for unit-tests EAPI=7 HOMEPAGE=https://github.com/catchorg/Catch2 IUSE=test -KEYWORDS=amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=Boost-1.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/catchorg/Catch2/archive/v2.5.0.tar.gz -> Catch2-2.5.0.tar.gz _eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 4900ae970f827a22d33d41bd8b8f9ace python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=11f318aa91ab0ad3170b960978a4204d +_md5_=b2ec304736994302240d3b3063dad347 diff --git a/metadata/md5-cache/dev-cpp/libcmis-0.5.2-r1 b/metadata/md5-cache/dev-cpp/libcmis-0.5.2-r1 new file mode 100644 index 000000000000..b580b2258eed --- /dev/null +++ b/metadata/md5-cache/dev-cpp/libcmis-0.5.2-r1 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig man? ( app-text/docbook2X dev-libs/libxslt ) test? ( dev-util/cppcheck dev-util/cppunit ) >=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-libs/boost:= dev-libs/libxml2 net-misc/curl +DESCRIPTION=C++ client library for the CMIS interface +EAPI=7 +HOMEPAGE=https://github.com/tdf/libcmis +IUSE=man static-libs test tools +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux +LICENSE=|| ( GPL-2 LGPL-2 MPL-1.1 ) +RDEPEND=dev-libs/boost:= dev-libs/libxml2 net-misc/curl +RESTRICT=test +SLOT=0.5 +SRC_URI=https://github.com/tdf/libcmis/archive/v0.5.2.tar.gz -> libcmis-0.5.2.tar.gz +_eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=4fd4ddac71242e467e89b8809e0fa523 diff --git a/metadata/md5-cache/dev-cpp/libcmis-9999 b/metadata/md5-cache/dev-cpp/libcmis-9999 index db1f70d6a847..fee27c20e40a 100644 --- a/metadata/md5-cache/dev-cpp/libcmis-9999 +++ b/metadata/md5-cache/dev-cpp/libcmis-9999 @@ -4,10 +4,10 @@ DEPEND=dev-libs/boost:= dev-libs/libxml2 net-misc/curl DESCRIPTION=C++ client library for the CMIS interface EAPI=7 HOMEPAGE=https://github.com/tdf/libcmis -IUSE=man static-libs test +IUSE=man static-libs test tools LICENSE=|| ( GPL-2 LGPL-2 MPL-1.1 ) RDEPEND=dev-libs/boost:= dev-libs/libxml2 net-misc/curl RESTRICT=test SLOT=0.5 _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf git-r3 0d4635eeb5a96cd5315597a47eba25c9 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=6116d61b2665e27df08a390182b8bf78 +_md5_=817cfc41996113943e2a87657054a383 diff --git a/metadata/md5-cache/dev-db/Manifest.gz b/metadata/md5-cache/dev-db/Manifest.gz index 1658be621b02..dbd9c72f89f3 100644 Binary files a/metadata/md5-cache/dev-db/Manifest.gz and b/metadata/md5-cache/dev-db/Manifest.gz differ diff --git a/metadata/md5-cache/dev-db/mysql-workbench-8.0.13 b/metadata/md5-cache/dev-db/mysql-workbench-8.0.15 similarity index 97% rename from metadata/md5-cache/dev-db/mysql-workbench-8.0.13 rename to metadata/md5-cache/dev-db/mysql-workbench-8.0.15 index 1a07bead5a73..bd840cd5242b 100644 --- a/metadata/md5-cache/dev-db/mysql-workbench-8.0.13 +++ b/metadata/md5-cache/dev-db/mysql-workbench-8.0.15 @@ -9,6 +9,6 @@ LICENSE=GPL-2 RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)] app-crypt/libsecret dev-libs/glib:2 dev-cpp/antlr-cpp:4 dev-cpp/atkmm dev-cpp/pangomm >=dev-cpp/glibmm-2.14:2 dev-cpp/gtkmm:3.0 dev-libs/atk >=net-libs/libssh-0.7.3[server] x11-libs/pango x11-libs/gtk+:3 gnome-base/libglade:2.0 >=x11-libs/cairo-1.5.12[glib,svg] dev-libs/libsigc++:2 >=dev-libs/boost-1.55.0[nls] >=dev-cpp/ctemplate-0.95 >=dev-libs/libxml2-2.6.2:2 dev-libs/libzip dev-libs/libpcre[cxx] >=sci-libs/gdal-1.11.1-r1[-mdb] virtual/opengl || ( sys-libs/e2fsprogs-libs dev-libs/ossp-uuid ) dev-libs/tinyxml[stl] >=dev-db/mysql-connector-c++-1.1.8 dev-db/vsqlite++ || ( dev-db/libiodbc dev-db/unixODBC ) gnome-keyring? ( gnome-base/libgnome-keyring ) dev-python/pexpect >=dev-python/paramiko-1.7.4 app-admin/sudo >=sys-apps/net-tools-1.60_p20120127084908 REQUIRED_USE=python_targets_python2_7 SLOT=0 -SRC_URI=mirror://mysql/Downloads/MySQLGUITools/mysql-workbench-community-8.0.13-src.tar.gz http://www.antlr.org/download/antlr-4.7.1-complete.jar +SRC_URI=mirror://mysql/Downloads/MySQLGUITools/mysql-workbench-community-8.0.15-src.tar.gz http://www.antlr.org/download/antlr-4.7.1-complete.jar _eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf gnome.org 532d56d07b9eace4831aaa817d2b756a gnome2 1a42e8c41af42cb294817dcc5b7e3df6 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=9892ceb341b80103f6365ce207586b50 +_md5_=c8df4fac63d5e0debfee6de8fbabf1cf diff --git a/metadata/md5-cache/dev-db/percona-xtrabackup-2.4.12 b/metadata/md5-cache/dev-db/percona-xtrabackup-2.4.12 deleted file mode 100644 index 23996d3d5028..000000000000 --- a/metadata/md5-cache/dev-db/percona-xtrabackup-2.4.12 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=app-arch/lz4:0= app-editors/vim-core =dev-util/cmake-3.9.6 -DESCRIPTION=Hot backup utility for MySQL based servers -EAPI=6 -HOMEPAGE=https://www.percona.com/software/mysql-database/percona-xtrabackup -KEYWORDS=amd64 x86 -LICENSE=GPL-2 -RDEPEND=app-arch/lz4:0= app-editors/vim-core =dev-lang/go-1.10 +DEFINED_PHASES=compile install test unpack +DESCRIPTION=A small utility which generates Go code from any file +EAPI=7 +HOMEPAGE=https://github.com/go-bindata/go-bindata +KEYWORDS=~amd64 ~arm +LICENSE=CC-PD +RESTRICT=strip +SLOT=0/1.0.0 +SRC_URI=https://github.com/go-bindata/go-bindata/archive/v1.0.0.tar.gz -> go-bindata-1.0.0.tar.gz +_eclasses_=golang-base c57d2c3f9e1a02d0feb8b87c7b689892 golang-build dc25bafa8fc1305a4de66a0a448472e7 golang-vcs-snapshot 12177e83bede6f7fb87eae383864b40b +_md5_=e0dfb13e87f5b011ed202e91aaf976da diff --git a/metadata/md5-cache/dev-lang/Manifest.gz b/metadata/md5-cache/dev-lang/Manifest.gz index e434525d7901..3b6aafcbcc62 100644 Binary files a/metadata/md5-cache/dev-lang/Manifest.gz and b/metadata/md5-cache/dev-lang/Manifest.gz differ diff --git a/metadata/md5-cache/dev-lang/elixir-1.4.5 b/metadata/md5-cache/dev-lang/elixir-1.4.5 index b726b94f92da..301f84d33512 100644 --- a/metadata/md5-cache/dev-lang/elixir-1.4.5 +++ b/metadata/md5-cache/dev-lang/elixir-1.4.5 @@ -3,10 +3,10 @@ DEPEND=>=dev-lang/erlang-18[ssl] DESCRIPTION=Elixir programming language EAPI=6 HOMEPAGE=https://elixir-lang.org -KEYWORDS=amd64 ~arm ~ia64 ppc ~sparc x86 +KEYWORDS=amd64 ~arm ~arm64 ~ia64 ppc ~sparc x86 LICENSE=Apache-2.0 ErlPL-1.1 RDEPEND=>=dev-lang/erlang-18[ssl] SLOT=0 SRC_URI=https://github.com/elixir-lang/elixir/archive/v1.4.5.tar.gz -> elixir-1.4.5.tar.gz _eclasses_=multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=f25f35cd28199938186aab063b590f26 +_md5_=203e0b92a76ec6721be832b9748bf668 diff --git a/metadata/md5-cache/dev-lang/elixir-1.6.6 b/metadata/md5-cache/dev-lang/elixir-1.6.6 index aedf1897eb0f..ab9918ddb06d 100644 --- a/metadata/md5-cache/dev-lang/elixir-1.6.6 +++ b/metadata/md5-cache/dev-lang/elixir-1.6.6 @@ -3,11 +3,11 @@ DEPEND=>=dev-lang/erlang-18[ssl] DESCRIPTION=Elixir programming language EAPI=6 HOMEPAGE=https://elixir-lang.org -KEYWORDS=~amd64 ~arm ~ia64 ~ppc ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~ppc ~sparc ~x86 LICENSE=Apache-2.0 ErlPL-1.1 RDEPEND=>=dev-lang/erlang-18[ssl] !!sci-biology/phylip RESTRICT=test SLOT=0 SRC_URI=https://github.com/elixir-lang/elixir/archive/v1.6.6.tar.gz -> elixir-1.6.6.tar.gz _eclasses_=multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=5c88b76e3d1795c17db88571ef0e02b2 +_md5_=17e656fe01e5e50808b90eeeb50d4190 diff --git a/metadata/md5-cache/dev-lang/elixir-1.7.4 b/metadata/md5-cache/dev-lang/elixir-1.7.4 index 160bd3f0a4d2..737b2c9d7f2e 100644 --- a/metadata/md5-cache/dev-lang/elixir-1.7.4 +++ b/metadata/md5-cache/dev-lang/elixir-1.7.4 @@ -3,9 +3,9 @@ DEPEND=>=dev-lang/erlang-18[ssl] DESCRIPTION=Elixir programming language EAPI=7 HOMEPAGE=https://elixir-lang.org -KEYWORDS=~amd64 ~arm ~ia64 ~ppc ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~ppc ~sparc ~x86 LICENSE=Apache-2.0 ErlPL-1.1 RDEPEND=>=dev-lang/erlang-18[ssl] !!sci-biology/phylip SLOT=0 SRC_URI=https://github.com/elixir-lang/elixir/archive/v1.7.4.tar.gz -> elixir-1.7.4.tar.gz -_md5_=1e165423b15920be85012f9aa7a64024 +_md5_=f2cfde5228ddcac141af10f7d5126c3e diff --git a/metadata/md5-cache/dev-lang/elixir-1.8.0 b/metadata/md5-cache/dev-lang/elixir-1.8.0 index 458e71049b11..f02eb6e3a1d3 100644 --- a/metadata/md5-cache/dev-lang/elixir-1.8.0 +++ b/metadata/md5-cache/dev-lang/elixir-1.8.0 @@ -3,9 +3,9 @@ DEPEND=>=dev-lang/erlang-18[ssl] DESCRIPTION=Elixir programming language EAPI=7 HOMEPAGE=https://elixir-lang.org -KEYWORDS=~amd64 ~arm ~ia64 ~ppc ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~ppc ~sparc ~x86 LICENSE=Apache-2.0 ErlPL-1.1 RDEPEND=>=dev-lang/erlang-18[ssl] !!sci-biology/phylip SLOT=0 SRC_URI=https://github.com/elixir-lang/elixir/archive/v1.8.0.tar.gz -> elixir-1.8.0.tar.gz -_md5_=5bb087bde682e9f14de7da8dcb6a2b5a +_md5_=f2cfde5228ddcac141af10f7d5126c3e diff --git a/metadata/md5-cache/dev-lang/elixir-1.8.1 b/metadata/md5-cache/dev-lang/elixir-1.8.1 index b52c233cdc65..631f6691bcab 100644 --- a/metadata/md5-cache/dev-lang/elixir-1.8.1 +++ b/metadata/md5-cache/dev-lang/elixir-1.8.1 @@ -3,9 +3,9 @@ DEPEND=>=dev-lang/erlang-18[ssl] DESCRIPTION=Elixir programming language EAPI=7 HOMEPAGE=https://elixir-lang.org -KEYWORDS=amd64 ~arm ~ia64 ppc ~sparc x86 +KEYWORDS=amd64 ~arm ~arm64 ~ia64 ppc ~sparc x86 LICENSE=Apache-2.0 ErlPL-1.1 RDEPEND=>=dev-lang/erlang-18[ssl] !!sci-biology/phylip SLOT=0 SRC_URI=https://github.com/elixir-lang/elixir/archive/v1.8.1.tar.gz -> elixir-1.8.1.tar.gz -_md5_=a205c498a21d32576fefa9e045af413d +_md5_=8a4a0f9ea16eb84ef1f83c6c3dc56207 diff --git a/metadata/md5-cache/dev-lang/gnat-gpl-2018-r2 b/metadata/md5-cache/dev-lang/gnat-gpl-2018-r2 new file mode 100644 index 000000000000..6cabf6f522a4 --- /dev/null +++ b/metadata/md5-cache/dev-lang/gnat-gpl-2018-r2 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare pretend setup test unpack +DEPEND=!sys-devel/gcc:7.3.1 elibc_glibc? ( >=sys-libs/glibc-2.13 ) >=sys-devel/binutils-2.20 >=sys-apps/sed-4 sys-devel/gnuconfig >=app-portage/elt-patches-20170815 sys-libs/zlib nls? ( virtual/libintl ) virtual/libiconv >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) >=sys-devel/bison-1.875 >=sys-devel/flex-2.5.4 nls? ( sys-devel/gettext ) regression-test? ( >=dev-util/dejagnu-1.4.4 >=sys-devel/autogen-5.5.4 ) +DESCRIPTION=GNAT Ada Compiler - GPL version +EAPI=5 +HOMEPAGE=http://libre.adacore.com/ +IUSE=+bootstrap regression-test vanilla +nls +nptl altivec debug +cxx +fortran doc hardened multilib objc pgo objc-gc libssp objc++ +openmp fixed-point go graphite +sanitize cilk +vtv jit mpx +pie +ssp +pch +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+ GPL-2 GPL-3 +PDEPEND=elibc_glibc? ( >=sys-libs/glibc-2.13 ) >=sys-devel/gcc-config-1.7 +RDEPEND=!sys-devel/gcc:7.3.1 sys-libs/zlib nls? ( virtual/libintl ) virtual/libiconv >=dev-libs/gmp-4.3.2:0= >=dev-libs/mpfr-2.4.2:0= >=dev-libs/mpc-0.8.1:0= objc-gc? ( >=dev-libs/boehm-gc-7.4.2 ) graphite? ( >=dev-libs/isl-0.14:0= ) +RESTRICT=strip +SLOT=7.3.1 +SRC_URI=mirror://gnu/gcc/gcc-7.3.0/gcc-7.3.0.tar.xz mirror://gentoo/gcc-7.3.0-patches-1.8.tar.bz2 https://dev.gentoo.org/~vapier/dist/gcc-7.3.0-patches-1.8.tar.bz2 https://dev.gentoo.org/~rhill/dist/gcc-7.3.0-patches-1.8.tar.bz2 https://dev.gentoo.org/~zorry/patches/gcc/gcc-7.3.0-patches-1.8.tar.bz2 https://dev.gentoo.org/~blueness/dist/gcc-7.3.0-patches-1.8.tar.bz2 https://dev.gentoo.org/~tamiko/distfiles/gcc-7.3.0-patches-1.8.tar.bz2 https://dev.gentoo.org/~slyfox/distfiles/gcc-7.3.0-patches-1.8.tar.bz2 http://mirrors.cdn.adacore.com/art/5b0819dfc7a447df26c27aa5 -> gnat-gpl-2018-src.tar.gz http://mirrors.cdn.adacore.com/art/5b0819dfc7a447df26c27aa7 -> gcc-7-gpl-2018-src.tar.gz http://mirrors.cdn.adacore.com/art/5b0819dfc7a447df26c27aa6 -> gcc-interface-7-gpl-2018-src.tar.gz bootstrap? ( amd64? ( http://mirrors.cdn.adacore.com/art/564b3ebec8e196b040fbe66c -> gnat-gpl-2014-x86_64-linux-bin.tar.gz ) x86? ( http://mirrors.cdn.adacore.com/art/564b3e9dc8e196b040fbe248 -> gnat-gpl-2014-x86-linux-bin.tar.gz ) ) +_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 fixheadtails 6b7b3d896b0b285c12a94f3105c2a06c flag-o-matic a09389deba2c0a7108b581e02c7cecbf gnuconfig b8ec1c34be4ff9dac7ad4034d277936b libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 pax-utils e85f015e815dd463b0c206d781ef45a5 prefix e51c7882b7b721e54e684f7eb143cbfe preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain 5bf605a66a64a0506a38b86363187527 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf +_md5_=882aaab60c18f06c8042cf4237edbf9a diff --git a/metadata/md5-cache/dev-lang/perl-5.28.2 b/metadata/md5-cache/dev-lang/perl-5.28.2 index 962733543041..d7fe5206d87f 100644 --- a/metadata/md5-cache/dev-lang/perl-5.28.2 +++ b/metadata/md5-cache/dev-lang/perl-5.28.2 @@ -11,4 +11,4 @@ RDEPEND=berkdb? ( sys-libs/db:= ) gdbm? ( >=sys-libs/gdbm-1.8.3:= ) app-arch/bzi SLOT=0/5.28 SRC_URI=mirror://cpan/src/5.0/perl-5.28.2.tar.xz mirror://cpan/authors/id/S/SH/SHAY/perl-5.28.2.tar.xz https://github.com/gentoo-perl/perl-patchset/releases/download/perl-5.28.2-patches-2/perl-5.28.2-patches-2.tar.xz mirror://gentoo/perl-5.28.2-patches-2.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/perl-5.28.2-patches-2.tar.xz https://github.com/arsv/perl-cross/releases/download/1.2.2/perl-cross-1.2.2.tar.gz _eclasses_=alternatives 6c575717515f030736d1b718d507d2f9 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=25c63dd7516b03297f12b1ed4e4ace75 +_md5_=0b903f0be8ab005b820854ad644bbe29 diff --git a/metadata/md5-cache/dev-lang/perl-5.28.9999 b/metadata/md5-cache/dev-lang/perl-5.28.9999 index 42c659dbca6c..26d715fc8b14 100644 --- a/metadata/md5-cache/dev-lang/perl-5.28.9999 +++ b/metadata/md5-cache/dev-lang/perl-5.28.9999 @@ -10,4 +10,4 @@ RDEPEND=berkdb? ( sys-libs/db:= ) gdbm? ( >=sys-libs/gdbm-1.8.3:= ) app-arch/bzi SLOT=0/5.28 SRC_URI=mirror://cpan/src/5.0/perl-5.28.0.tar.xz mirror://cpan/authors/id/X/XS/XSAWYERX/perl-5.28.0.tar.xz https://github.com/gentoo-perl/perl-patchset/releases/download/perl-5.28.0-patches-1/perl-5.28.0-patches-1.tar.xz mirror://gentoo/perl-5.28.0-patches-1.tar.xz https://dev.gentoo.org/~kentnl/distfiles/perl-5.28.0-patches-1.tar.xz https://github.com/arsv/perl-cross/releases/download/1.2.2/perl-cross-1.2.2.tar.gz _eclasses_=alternatives 6c575717515f030736d1b718d507d2f9 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=15832209088ea1b3c2e9b998f81989da +_md5_=850e08f86f17ebcdcba51ca74c0099ad diff --git a/metadata/md5-cache/dev-lang/spidermonkey-52.9.1_pre1 b/metadata/md5-cache/dev-lang/spidermonkey-52.9.1_pre1 index 3335ec25dde9..dce6c1373eac 100644 --- a/metadata/md5-cache/dev-lang/spidermonkey-52.9.1_pre1 +++ b/metadata/md5-cache/dev-lang/spidermonkey-52.9.1_pre1 @@ -4,11 +4,11 @@ DESCRIPTION=Stand-alone JavaScript C++ library EAPI=6 HOMEPAGE=https://developer.mozilla.org/en-US/docs/Mozilla/Projects/SpiderMonkey IUSE=debug minimal +system-icu test custom-cflags custom-optimization -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 ~sh ~sparc x86 ~x86-fbsd +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 ~sh ~sparc x86 ~x86-fbsd LICENSE=NPL-1.1 RDEPEND=>=dev-libs/nspr-4.13.1 virtual/libffi sys-libs/readline:0= >=sys-libs/zlib-1.2.3 system-icu? ( >=dev-libs/icu-58.1:= ) RESTRICT=ia64? ( test ) SLOT=52 SRC_URI=http://ftp.mozilla.org/pub/spidermonkey/prereleases/52/pre1/mozjs-52.9.1pre1.tar.bz2 -> mozjs-52.9.1pre1.tar.bz2 https://dev.gentoo.org/~axs/distfiles/spidermonkey-52.0-patches-0.tar.xz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 mozcoreconf-v5 602c3c0a642bafeabb149c49a6df941f multilib b2f01ad412baf81650c23fcf0975fa33 pax-utils e85f015e815dd463b0c206d781ef45a5 preserve-libs ef207dc62baddfddfd39a164d9797648 python-any-r1 4900ae970f827a22d33d41bd8b8f9ace python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=42b11b105a70ed90d5c4c3cae93038e7 +_md5_=4b83100b992161e0ebf142ff221f07d1 diff --git a/metadata/md5-cache/dev-lang/vala-0.36.18 b/metadata/md5-cache/dev-lang/vala-0.36.18 index f3bccd11ee41..a806b78f324f 100644 --- a/metadata/md5-cache/dev-lang/vala-0.36.18 +++ b/metadata/md5-cache/dev-lang/vala-0.36.18 @@ -4,10 +4,10 @@ DESCRIPTION=Compiler for the GObject type system EAPI=6 HOMEPAGE=https://wiki.gnome.org/Projects/Vala IUSE=test -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux +KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux LICENSE=LGPL-2.1 RDEPEND=>=dev-libs/glib-2.32:2 >=dev-libs/vala-common-0.36.18 SLOT=0.36 SRC_URI=mirror://gnome/sources/vala/0.36/vala-0.36.18.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome.org 532d56d07b9eace4831aaa817d2b756a gnome2 1a42e8c41af42cb294817dcc5b7e3df6 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=033fdfc84f979b5cb0eba9f33c7bc3bf +_md5_=f7f0133b9edcd6b69ee3df6ca6a6e309 diff --git a/metadata/md5-cache/dev-lang/vala-0.40.14 b/metadata/md5-cache/dev-lang/vala-0.40.14 index 3f0781ac1f50..dbd714fd2eb4 100644 --- a/metadata/md5-cache/dev-lang/vala-0.40.14 +++ b/metadata/md5-cache/dev-lang/vala-0.40.14 @@ -4,10 +4,10 @@ DESCRIPTION=Compiler for the GObject type system EAPI=6 HOMEPAGE=https://wiki.gnome.org/Projects/Vala IUSE=test valadoc -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux +KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux LICENSE=LGPL-2.1 RDEPEND=>=dev-libs/glib-2.40.0:2 >=dev-libs/vala-common-0.40.14 valadoc? ( >=media-gfx/graphviz-2.16 ) SLOT=0.40 SRC_URI=mirror://gnome/sources/vala/0.40/vala-0.40.14.tar.xz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome.org 532d56d07b9eace4831aaa817d2b756a gnome2 1a42e8c41af42cb294817dcc5b7e3df6 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=64af1f6bf5f2066112449c42acb882b5 +_md5_=8e56bcda3e604b45693a1d0acda0a5f6 diff --git a/metadata/md5-cache/dev-libs/Manifest.gz b/metadata/md5-cache/dev-libs/Manifest.gz index edd2b0c3341f..1d184850c7c2 100644 Binary files a/metadata/md5-cache/dev-libs/Manifest.gz and b/metadata/md5-cache/dev-libs/Manifest.gz differ diff --git a/metadata/md5-cache/dev-libs/apr-1.5.2 b/metadata/md5-cache/dev-libs/apr-1.5.2 deleted file mode 100644 index 4e0bafceb4b9..000000000000 --- a/metadata/md5-cache/dev-libs/apr-1.5.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare -DEPEND=elibc_glibc? ( >=sys-apps/util-linux-2.16 ) elibc_mintlib? ( >=sys-apps/util-linux-2.18 ) >=sys-devel/libtool-2.4.2 doc? ( app-doc/doxygen ) >=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=Apache Portable Runtime Library -EAPI=5 -HOMEPAGE=http://apr.apache.org/ -IUSE=doc elibc_FreeBSD older-kernels-compatibility selinux static-libs +urandom -KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=Apache-2.0 -RDEPEND=elibc_glibc? ( >=sys-apps/util-linux-2.16 ) elibc_mintlib? ( >=sys-apps/util-linux-2.18 ) selinux? ( sec-policy/selinux-apache ) -SLOT=1 -SRC_URI=mirror://apache/apr/apr-1.5.2.tar.bz2 -_eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=eb7c6fb68ab0c928739f7e0d4aa9744b diff --git a/metadata/md5-cache/dev-libs/boost-1.63.0 b/metadata/md5-cache/dev-libs/boost-1.63.0 deleted file mode 100644 index c710ad584d07..000000000000 --- a/metadata/md5-cache/dev-libs/boost-1.63.0 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup test -DEPEND=icu? ( >=dev-libs/icu-3.6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !icu? ( virtual/libiconv[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mpi? ( >=virtual/mpi-2.0-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?,cxx,threads] ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) app-arch/bzip2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] !app-admin/eselect-boost =dev-util/boost-build-1.63* -DESCRIPTION=Boost Libraries for C++ -EAPI=6 -HOMEPAGE=https://www.boost.org/ -IUSE=context debug doc icu +nls mpi python static-libs +threads tools python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris ~x86-winnt -LICENSE=Boost-1.0 -RDEPEND=icu? ( >=dev-libs/icu-3.6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !icu? ( virtual/libiconv[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mpi? ( >=virtual/mpi-2.0-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?,cxx,threads] ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) app-arch/bzip2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] !app-admin/eselect-boost -REQUIRED_USE=mpi? ( threads ) python? ( || ( python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 ) ) -RESTRICT=test -SLOT=0/1.63.0 -SRC_URI=https://downloads.sourceforge.net/project/boost/boost/1.63.0/boost_1_63_0.tar.bz2 -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=acaef6168211e29ea66aa8de8620fb88 diff --git a/metadata/md5-cache/dev-libs/boost-1.70.0 b/metadata/md5-cache/dev-libs/boost-1.70.0 index 1d79d7a67117..b357dd1cfbb8 100644 --- a/metadata/md5-cache/dev-libs/boost-1.70.0 +++ b/metadata/md5-cache/dev-libs/boost-1.70.0 @@ -1,5 +1,6 @@ +BDEPEND==dev-util/boost-build-1.70* DEFINED_PHASES=compile configure install preinst prepare setup test -DEPEND=!app-admin/eselect-boost !dev-libs/boost-numpy bzip2? ( app-arch/bzip2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) icu? ( >=dev-libs/icu-3.6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !icu? ( virtual/libiconv[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( app-arch/xz-utils:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mpi? ( >=virtual/mpi-2.0-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?,cxx,threads] ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] numpy? ( >=dev-python/numpy-1.14.5[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) ) zlib? ( sys-libs/zlib:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zstd? ( app-arch/zstd:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) =dev-util/boost-build-1.70* +DEPEND=!app-admin/eselect-boost !dev-libs/boost-numpy bzip2? ( app-arch/bzip2:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) icu? ( >=dev-libs/icu-3.6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !icu? ( virtual/libiconv[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( app-arch/xz-utils:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mpi? ( >=virtual/mpi-2.0-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?,cxx,threads] ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] numpy? ( >=dev-python/numpy-1.14.5[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) ) zlib? ( sys-libs/zlib:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zstd? ( app-arch/zstd:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) DESCRIPTION=Boost Libraries for C++ EAPI=7 HOMEPAGE=https://www.boost.org/ @@ -12,4 +13,4 @@ RESTRICT=test SLOT=0/1.70.0 SRC_URI=https://downloads.sourceforge.net/project/boost/boost/1.70.0/boost_1_70_0.tar.bz2 _eclasses_=eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=da88de5b767525e48e8935ea28fcf5e8 +_md5_=39e2f9ed8f0553de05cb8c8e4a2bbe1b diff --git a/metadata/md5-cache/dev-libs/botan-2.9.0 b/metadata/md5-cache/dev-libs/botan-2.9.0 index 787cb7fb9ec1..8a92f720e915 100644 --- a/metadata/md5-cache/dev-libs/botan-2.9.0 +++ b/metadata/md5-cache/dev-libs/botan-2.9.0 @@ -5,11 +5,11 @@ DESCRIPTION=A C++ crypto library EAPI=7 HOMEPAGE=https://botan.randombit.net/ IUSE=bindist doc boost python bzip2 libressl lzma sqlite ssl static-libs zlib python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos +KEYWORDS=amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos LICENSE=BSD RDEPEND=python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) bzip2? ( >=app-arch/bzip2-1.0.5:= ) zlib? ( >=sys-libs/zlib-1.2.3:= ) boost? ( >=dev-libs/boost-1.48:= ) lzma? ( app-arch/xz-utils:= ) sqlite? ( dev-db/sqlite:3= ) ssl? ( !libressl? ( dev-libs/openssl:0=[bindist=] ) libressl? ( dev-libs/libressl:0= ) ) REQUIRED_USE=python? ( || ( python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 ) ) SLOT=2/2.9 SRC_URI=https://botan.randombit.net/releases/Botan-2.9.0.tgz _eclasses_=multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=caed7a007c74a0785f57399b36bebc5f +_md5_=e365a4145cc252f03449a76e5229e10b diff --git a/metadata/md5-cache/dev-libs/elfutils-0.173-r1 b/metadata/md5-cache/dev-libs/elfutils-0.173-r1 index 9d6b587fa1a4..3360529d2175 100644 --- a/metadata/md5-cache/dev-libs/elfutils-0.173-r1 +++ b/metadata/md5-cache/dev-libs/elfutils-0.173-r1 @@ -4,10 +4,10 @@ DESCRIPTION=Libraries/utilities to handle ELF objects (drop in replacement for l EAPI=6 HOMEPAGE=http://elfutils.org/ IUSE=bzip2 lzma nls static-libs test +threads +utils abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux LICENSE=|| ( GPL-2+ LGPL-3+ ) utils? ( GPL-3+ ) RDEPEND=>=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] bzip2? ( >=app-arch/bzip2-1.0.6-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !dev-libs/libelf SLOT=0 SRC_URI=https://sourceware.org/elfutils/ftp/0.173/elfutils-0.173.tar.bz2 _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=7ca32dbf3e2c2b28857bf15b5f6ad37e +_md5_=1a4935d928f30437fc69bba0662bfd2d diff --git a/metadata/md5-cache/dev-libs/icu-64.2 b/metadata/md5-cache/dev-libs/icu-64.2 new file mode 100644 index 000000000000..ac98366df70c --- /dev/null +++ b/metadata/md5-cache/dev-libs/icu-64.2 @@ -0,0 +1,13 @@ +BDEPEND=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 +DEFINED_PHASES=compile configure install prepare test +DEPEND=doc? ( app-doc/doxygen[dot] ) +DESCRIPTION=International Components for Unicode +EAPI=7 +HOMEPAGE=http://www.icu-project.org/ +IUSE=debug doc examples static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt +LICENSE=BSD +SLOT=0/64.2 +SRC_URI=http://download.icu-project.org/files/icu4c/64.2/icu4c-64_2-src.tgz +_eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=7326c1e2a6339a9f5fe7654dbf5989c5 diff --git a/metadata/md5-cache/dev-libs/icu-layoutex-64.2 b/metadata/md5-cache/dev-libs/icu-layoutex-64.2 new file mode 100644 index 000000000000..7be925b7f7ab --- /dev/null +++ b/metadata/md5-cache/dev-libs/icu-layoutex-64.2 @@ -0,0 +1,14 @@ +BDEPEND=virtual/pkgconfig[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=app-portage/elt-patches-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=compile configure install prepare test +DEPEND=~dev-libs/icu-64.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] dev-libs/icu-le-hb[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] +DESCRIPTION=External layout part of International Components for Unicode +EAPI=7 +HOMEPAGE=http://www.icu-project.org/ +IUSE=debug static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 +KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=BSD +RDEPEND=~dev-libs/icu-64.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] dev-libs/icu-le-hb[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] +SLOT=0/64.2 +SRC_URI=http://download.icu-project.org/files/icu4c/64.2/icu4c-64_2-src.tgz +_eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=c9306b36e63cd4fa21c6a92d855a7f99 diff --git a/metadata/md5-cache/dev-libs/libcdio-paranoia-0.94_p2 b/metadata/md5-cache/dev-libs/libcdio-paranoia-0.94_p2 index ca0f59313834..f2fc4c15f368 100644 --- a/metadata/md5-cache/dev-libs/libcdio-paranoia-0.94_p2 +++ b/metadata/md5-cache/dev-libs/libcdio-paranoia-0.94_p2 @@ -4,10 +4,10 @@ DESCRIPTION=an advanced CDDA reader with error correction EAPI=6 HOMEPAGE=https://www.gnu.org/software/libcdio/ IUSE=+cxx static-libs test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris LICENSE=GPL-3+ GPL-2+ LGPL-2.1 RDEPEND=app-eselect/eselect-cdparanoia >=dev-libs/libcdio-0.94:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=virtual/libiconv-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] SLOT=0 SRC_URI=mirror://gnu/libcdio/libcdio-paranoia-10.2+0.94+2.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=5c5b290043d778010a789d98a6c50b1a +_md5_=626e9afa94a10d5854cb85f340f32f9d diff --git a/metadata/md5-cache/dev-libs/libcgroup-0.41-r5 b/metadata/md5-cache/dev-libs/libcgroup-0.41-r5 index 5c6257f45616..dd584a574111 100644 --- a/metadata/md5-cache/dev-libs/libcgroup-0.41-r5 +++ b/metadata/md5-cache/dev-libs/libcgroup-0.41-r5 @@ -4,11 +4,11 @@ DESCRIPTION=Tools and libraries to configure and manage kernel control groups EAPI=6 HOMEPAGE=http://libcg.sourceforge.net/ IUSE=+daemon elibc_musl pam static-libs test +tools kernel_linux -KEYWORDS=amd64 arm ~arm64 ~ppc ~ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ~ppc64 x86 LICENSE=LGPL-2.1 RDEPEND=pam? ( virtual/pam ) REQUIRED_USE=daemon? ( tools ) SLOT=0 SRC_URI=mirror://sourceforge/project/libcg/libcgroup/v0.41/libcgroup-0.41.tar.bz2 _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 linux-info 953c3b1c472dcadbf62098a9301327f2 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 pam 69b1cf8e80a877ad42a03042aaa66a5e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=4fe30b5b7adaa6552fb80b5397cac612 +_md5_=289dc1ac82d97afd8574094d3f310f89 diff --git a/metadata/md5-cache/dev-libs/libgpiod-1.1.1 b/metadata/md5-cache/dev-libs/libgpiod-1.1.1 index 73360451f771..e9835aeeea54 100644 --- a/metadata/md5-cache/dev-libs/libgpiod-1.1.1 +++ b/metadata/md5-cache/dev-libs/libgpiod-1.1.1 @@ -3,9 +3,9 @@ DESCRIPTION=C library and tools for interacting with the linux GPIO character de EAPI=6 HOMEPAGE=https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/ IUSE=static-libs +tools abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~amd64 ~arm ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 LICENSE=LGPL-2.1 SLOT=0/1 SRC_URI=https://mirrors.edge.kernel.org/pub/software/libs/libgpiod/libgpiod-1.1.1.tar.xz _eclasses_=multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=8cac07482f5d37de415683f51b1133b5 +_md5_=d671290d2afa9c0886c15e02f580d3e2 diff --git a/metadata/md5-cache/dev-libs/libpcre2-10.32 b/metadata/md5-cache/dev-libs/libpcre2-10.32 index 1bedc9d97e71..be1afe154bf0 100644 --- a/metadata/md5-cache/dev-libs/libpcre2-10.32 +++ b/metadata/md5-cache/dev-libs/libpcre2-10.32 @@ -4,11 +4,11 @@ DESCRIPTION=Perl-compatible regular expression library EAPI=6 HOMEPAGE=http://www.pcre.org/ IUSE=bzip2 +jit libedit pcre16 pcre32 +readline +recursion-limit static-libs unicode zlib abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=BSD RDEPEND=bzip2? ( app-arch/bzip2 ) zlib? ( sys-libs/zlib ) libedit? ( dev-libs/libedit ) readline? ( sys-libs/readline:0= ) REQUIRED_USE=?? ( libedit readline ) SLOT=0 SRC_URI=mirror://sourceforge/pcre/pcre2-10.32.tar.bz2 ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre2-10.32.tar.bz2 _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=de99e2784a827544c21befa331abef52 +_md5_=3eea6315eb648523e04192b8713c0e00 diff --git a/metadata/md5-cache/dev-libs/libtermkey-0.22 b/metadata/md5-cache/dev-libs/libtermkey-0.22 index 6f2c77ce6a98..b7dc4bc4c056 100644 --- a/metadata/md5-cache/dev-libs/libtermkey-0.22 +++ b/metadata/md5-cache/dev-libs/libtermkey-0.22 @@ -4,10 +4,10 @@ DESCRIPTION=Library for easy processing of keyboard entry from terminal-based pr EAPI=6 HOMEPAGE=http://www.leonerd.org.uk/code/libtermkey/ IUSE=demos static-libs -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~arm ~x86 LICENSE=MIT RDEPEND=dev-libs/unibilium:= SLOT=0 SRC_URI=http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.22.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=ff30f3ad60652889b93e567cbaf6dd59 +_md5_=97e23ca6283ce5fc91366db17199a98b diff --git a/metadata/md5-cache/dev-libs/libutf8proc-2.3.0 b/metadata/md5-cache/dev-libs/libutf8proc-2.3.0 index 16eb0fbd543c..706fb9f0d376 100644 --- a/metadata/md5-cache/dev-libs/libutf8proc-2.3.0 +++ b/metadata/md5-cache/dev-libs/libutf8proc-2.3.0 @@ -1,10 +1,12 @@ +BDEPEND=test? ( =app-i18n/unicode-data-12.0* ) DEFINED_PHASES=install DESCRIPTION=mapping tool for UTF-8 strings EAPI=7 HOMEPAGE=https://github.com/JuliaStrings/utf8proc +IUSE=test KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=MIT SLOT=0/2.3.0 SRC_URI=https://github.com/JuliaStrings/utf8proc/archive/v2.3.0.tar.gz -> libutf8proc-2.3.0.tar.gz _eclasses_=multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=b8231d4b66c099e6c609c6f964d4d2a4 +_md5_=b825268d64c16e094670062b7546609c diff --git a/metadata/md5-cache/dev-libs/libvterm-0.0_pre20181126 b/metadata/md5-cache/dev-libs/libvterm-0.0_pre20181126 index 8630b7264a23..f144c0e53496 100644 --- a/metadata/md5-cache/dev-libs/libvterm-0.0_pre20181126 +++ b/metadata/md5-cache/dev-libs/libvterm-0.0_pre20181126 @@ -3,10 +3,10 @@ DEPEND=sys-devel/libtool virtual/pkgconfig DESCRIPTION=An abstract library implementation of a VT220/xterm/ECMA-48 terminal emulator EAPI=6 HOMEPAGE=http://www.leonerd.org.uk/code/libvterm/ -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~arm ~x86 LICENSE=MIT RDEPEND=!dev-libs/libvterm-neovim SLOT=0 SRC_URI=https://dev.gentoo.org/~tranquility/distfiles/libvterm-0.0_pre20181126.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=1280fe2c56e3df19c48c21226343ee79 +_md5_=423cefe41d8fcbc528eb507ff95fed00 diff --git a/metadata/md5-cache/dev-libs/msgpack-1.1.0 b/metadata/md5-cache/dev-libs/msgpack-1.1.0 index f8a4c099a91f..6c2142f97a73 100644 --- a/metadata/md5-cache/dev-libs/msgpack-1.1.0 +++ b/metadata/md5-cache/dev-libs/msgpack-1.1.0 @@ -4,9 +4,9 @@ DESCRIPTION=MessagePack is a binary-based efficient data interchange format EAPI=6 HOMEPAGE=https://msgpack.org/ https://github.com/msgpack/msgpack-c/ IUSE=+cxx static-libs test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~amd64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux +KEYWORDS=~amd64 ~arm ~x86 ~x86-fbsd ~amd64-linux ~x86-linux LICENSE=Apache-2.0 SLOT=0 SRC_URI=https://github.com/msgpack/msgpack-c/releases/download/cpp-1.1.0/msgpack-1.1.0.tar.gz _eclasses_=cmake-multilib 9400794da450ca9e38faef6eefbb3957 cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=56457b7f6ad1f8fd7a1154c44424edf8 +_md5_=b5fa5193e4c2ba9dca2f1c1f208f3f8b diff --git a/metadata/md5-cache/dev-libs/nettle-3.4.1 b/metadata/md5-cache/dev-libs/nettle-3.4.1 index 3923b079c72a..1e76a47f7aa0 100644 --- a/metadata/md5-cache/dev-libs/nettle-3.4.1 +++ b/metadata/md5-cache/dev-libs/nettle-3.4.1 @@ -1,14 +1,14 @@ 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=compile configure install prepare setup test -DEPEND=gmp? ( >=dev-libs/gmp-6.0:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) +DEPEND=gmp? ( >=dev-libs/gmp-6.0:0=[static-libs=,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) DESCRIPTION=Low-level cryptographic library EAPI=7 HOMEPAGE=http://www.lysator.liu.se/~nisse/nettle/ IUSE=doc +gmp neon static-libs test cpu_flags_x86_aes abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=|| ( LGPL-3 LGPL-2.1 ) -RDEPEND=gmp? ( >=dev-libs/gmp-6.0:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) +RDEPEND=gmp? ( >=dev-libs/gmp-6.0:0=[static-libs=,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) SLOT=0/6.2 SRC_URI=mirror://gnu/nettle/nettle-3.4.1.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=d067a9d17609deb2be8608e32368f048 +_md5_=ae081e91a466c2db923bd07b10d074fa diff --git a/metadata/md5-cache/dev-libs/opensc-0.19.0-r2 b/metadata/md5-cache/dev-libs/opensc-0.19.0-r2 index dc0dd47be750..0f42a0c247bf 100644 --- a/metadata/md5-cache/dev-libs/opensc-0.19.0-r2 +++ b/metadata/md5-cache/dev-libs/opensc-0.19.0-r2 @@ -5,11 +5,11 @@ DESCRIPTION=Libraries and applications to access smartcards EAPI=7 HOMEPAGE=https://github.com/OpenSC/OpenSC/wiki IUSE=ctapi doc libressl openct notify +pcsc-lite readline secure-messaging ssl test zlib -KEYWORDS=~alpha amd64 arm hppa ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +KEYWORDS=alpha amd64 arm hppa ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 LICENSE=LGPL-2.1 RDEPEND=zlib? ( sys-libs/zlib ) readline? ( sys-libs/readline:0= ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( >=dev-libs/libressl-2.7.0:0= ) ) openct? ( >=dev-libs/openct-0.5.0 ) pcsc-lite? ( >=sys-apps/pcsc-lite-1.3.0 ) notify? ( dev-libs/glib:2= ) REQUIRED_USE=pcsc-lite? ( !openct !ctapi ) openct? ( !pcsc-lite !ctapi ) ctapi? ( !pcsc-lite !openct ) || ( pcsc-lite openct ctapi ) SLOT=0 SRC_URI=https://github.com/OpenSC/OpenSC/releases/download/0.19.0/opensc-0.19.0.tar.gz _eclasses_=bash-completion-r1 47a7402d95930413ce25ba8d857339bb multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=01aee4916d6ab7d19043b4bda5c89c74 +_md5_=7a0961d1b662bfdca51a86c01109c5bb diff --git a/metadata/md5-cache/dev-libs/tre-0.8.0-r1 b/metadata/md5-cache/dev-libs/tre-0.8.0-r1 index eb260860184a..e0d77fc8f042 100644 --- a/metadata/md5-cache/dev-libs/tre-0.8.0-r1 +++ b/metadata/md5-cache/dev-libs/tre-0.8.0-r1 @@ -4,10 +4,10 @@ DESCRIPTION=Lightweight, robust, and efficient POSIX compliant regexp matching l EAPI=6 HOMEPAGE=https://laurikari.net/tre/ https://github.com/laurikari/tre/ IUSE=nls static-libs -KEYWORDS=alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris +KEYWORDS=alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris LICENSE=BSD-2 RDEPEND=!app-text/agrep !dev-ruby/amatch !app-misc/glimpse SLOT=0 SRC_URI=https://laurikari.net/tre/tre-0.8.0.tar.bz2 _eclasses_=multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=4ac78e81406472a7181362afe6945f63 +_md5_=c98b13ccda0f7153739fdfd19d63f6bb diff --git a/metadata/md5-cache/dev-libs/unibilium-2.0.0 b/metadata/md5-cache/dev-libs/unibilium-2.0.0 index bd4dbf0e1053..bf997e4ab61e 100644 --- a/metadata/md5-cache/dev-libs/unibilium-2.0.0 +++ b/metadata/md5-cache/dev-libs/unibilium-2.0.0 @@ -4,9 +4,9 @@ DESCRIPTION=A very basic terminfo library EAPI=6 HOMEPAGE=https://github.com/mauke/unibilium/ IUSE=static-libs -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~arm ~x86 LICENSE=LGPL-3+ MIT SLOT=0/4 SRC_URI=https://github.com/mauke/unibilium/archive/v2.0.0.tar.gz -> unibilium-2.0.0.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=ff8e4d7405e0a3610d6c367c49bfb47b +_md5_=e471e251f202b07bb6daf36e170033fb diff --git a/metadata/md5-cache/dev-libs/vala-common-0.40.14 b/metadata/md5-cache/dev-libs/vala-common-0.40.14 index cc92c1cd8edb..c12f468f5e9c 100644 --- a/metadata/md5-cache/dev-libs/vala-common-0.40.14 +++ b/metadata/md5-cache/dev-libs/vala-common-0.40.14 @@ -3,10 +3,10 @@ DEPEND=app-arch/xz-utils DESCRIPTION=Build infrastructure for packages that use Vala EAPI=6 HOMEPAGE=https://wiki.gnome.org/Projects/Vala -KEYWORDS=~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris LICENSE=LGPL-2.1 RDEPEND=!=dev-lang/lua-5.1:= ) luajit? ( dev-lang/luajit:2= ) SLOT=0 SRC_URI=https://github.com/tarruda/mpack/archive/1.0.4.tar.gz -> mpack-1.0.4.tar.gz _eclasses_=multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=45e6e63c306733201fe73c7b23098300 +_md5_=70b3952e77253a06572414190f12eb80 diff --git a/metadata/md5-cache/dev-perl/Date-Calc-6.400.0 b/metadata/md5-cache/dev-perl/Date-Calc-6.400.0 index ce21f0ce9412..8a6a8b312f7f 100644 --- a/metadata/md5-cache/dev-perl/Date-Calc-6.400.0 +++ b/metadata/md5-cache/dev-perl/Date-Calc-6.400.0 @@ -3,10 +3,10 @@ DEPEND=>=dev-perl/Bit-Vector-7.400.0 >=dev-perl/Carp-Clan-6.40.0 virtual/perl-Ex DESCRIPTION=Gregorian calendar date calculations EAPI=5 HOMEPAGE=https://metacpan.org/release/Date-Calc -KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 ~s390 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 ~s390 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=|| ( Artistic GPL-1+ ) LGPL-2 RDEPEND=>=dev-perl/Bit-Vector-7.400.0 >=dev-perl/Carp-Clan-6.40.0 dev-lang/perl:=[-build(-)] SLOT=0 SRC_URI=mirror://cpan/authors/id/S/ST/STBEY/Date-Calc-6.4.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module 71c828c354a4cddced2641dda2695de5 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 unpacker 3cd8bad0d31e525cd26be1bfa4e61631 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=7b3a4c2a3a71246a61ebbb8d161f9832 +_md5_=ee628358fa529e2d23e2e76705545b28 diff --git a/metadata/md5-cache/dev-perl/Manifest.gz b/metadata/md5-cache/dev-perl/Manifest.gz index 9b32393c6920..27fb7f0e308d 100644 Binary files a/metadata/md5-cache/dev-perl/Manifest.gz and b/metadata/md5-cache/dev-perl/Manifest.gz differ diff --git a/metadata/md5-cache/dev-perl/Sys-CPU-0.610.0 b/metadata/md5-cache/dev-perl/Sys-CPU-0.610.0 index 19e5387d2a22..d44589fc476d 100644 --- a/metadata/md5-cache/dev-perl/Sys-CPU-0.610.0 +++ b/metadata/md5-cache/dev-perl/Sys-CPU-0.610.0 @@ -3,10 +3,10 @@ DEPEND=dev-lang/perl:=[-build(-)] DESCRIPTION=Access CPU info. number, etc on Win and UNIX EAPI=5 HOMEPAGE=https://metacpan.org/release/Sys-CPU -KEYWORDS=alpha amd64 arm hppa ppc ppc64 sparc x86 ~ppc-macos +KEYWORDS=alpha amd64 arm ~arm64 hppa ppc ppc64 sparc x86 ~ppc-macos LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=dev-lang/perl:=[-build(-)] SLOT=0 SRC_URI=mirror://cpan/authors/id/M/MZ/MZSANFORD/Sys-CPU-0.61.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module 71c828c354a4cddced2641dda2695de5 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 unpacker 3cd8bad0d31e525cd26be1bfa4e61631 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=ca3c19d504382f5d6275b3a6f2e1ba9e +_md5_=ac227f6d0e78ed723fb642a04a899548 diff --git a/metadata/md5-cache/dev-perl/Sys-CPU-0.610.0-r1 b/metadata/md5-cache/dev-perl/Sys-CPU-0.610.0-r1 index f623d7261920..3bf46091f62f 100644 --- a/metadata/md5-cache/dev-perl/Sys-CPU-0.610.0-r1 +++ b/metadata/md5-cache/dev-perl/Sys-CPU-0.610.0-r1 @@ -3,10 +3,10 @@ DEPEND=dev-lang/perl:= DESCRIPTION=Access CPU info. number, etc on Win and UNIX EAPI=6 HOMEPAGE=https://metacpan.org/release/Sys-CPU -KEYWORDS=~alpha amd64 arm hppa ppc ppc64 ~sparc x86 ~ppc-macos +KEYWORDS=~alpha amd64 arm ~arm64 hppa ppc ppc64 ~sparc x86 ~ppc-macos LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=dev-lang/perl:= SLOT=0 SRC_URI=mirror://cpan/authors/id/M/MZ/MZSANFORD/Sys-CPU-0.61.tar.gz _eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module 71c828c354a4cddced2641dda2695de5 -_md5_=8765b8f18e07165438d9a8591e9d2cb6 +_md5_=23110663248c0115d6a9cbb636699b1c diff --git a/metadata/md5-cache/dev-perl/Sys-MemInfo-0.980.0 b/metadata/md5-cache/dev-perl/Sys-MemInfo-0.980.0 index 9bc19067dbe7..570aab68974a 100644 --- a/metadata/md5-cache/dev-perl/Sys-MemInfo-0.980.0 +++ b/metadata/md5-cache/dev-perl/Sys-MemInfo-0.980.0 @@ -3,10 +3,10 @@ DEPEND=dev-lang/perl:=[-build(-)] DESCRIPTION=Memory informations EAPI=5 HOMEPAGE=https://metacpan.org/release/Sys-MemInfo -KEYWORDS=alpha amd64 arm hppa ppc ppc64 sparc x86 ~x86-fbsd +KEYWORDS=alpha amd64 arm ~arm64 hppa ppc ppc64 sparc x86 ~x86-fbsd LICENSE=LGPL-2.1 || ( Artistic GPL-1+ ) RDEPEND=dev-lang/perl:=[-build(-)] SLOT=0 SRC_URI=mirror://cpan/authors/id/S/SC/SCRESTO/Sys-MemInfo-0.98.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module 71c828c354a4cddced2641dda2695de5 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 unpacker 3cd8bad0d31e525cd26be1bfa4e61631 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=204a03390f53ed57910267450d56fb7a +_md5_=1189cc57e4389897ac32f9a01a1f90ce diff --git a/metadata/md5-cache/dev-perl/Sys-MemInfo-0.990.0 b/metadata/md5-cache/dev-perl/Sys-MemInfo-0.990.0 index 3c2fe8bc9419..e7a50cf1f9d9 100644 --- a/metadata/md5-cache/dev-perl/Sys-MemInfo-0.990.0 +++ b/metadata/md5-cache/dev-perl/Sys-MemInfo-0.990.0 @@ -3,10 +3,10 @@ DEPEND=dev-lang/perl:= DESCRIPTION=Memory informations EAPI=6 HOMEPAGE=https://metacpan.org/release/Sys-MemInfo -KEYWORDS=alpha amd64 arm hppa ppc ppc64 sparc x86 ~x86-fbsd +KEYWORDS=alpha amd64 arm ~arm64 hppa ppc ppc64 sparc x86 ~x86-fbsd LICENSE=LGPL-2.1 || ( Artistic GPL-1+ ) RDEPEND=dev-lang/perl:= SLOT=0 SRC_URI=mirror://cpan/authors/id/S/SC/SCRESTO/Sys-MemInfo-0.99.tar.gz _eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module 71c828c354a4cddced2641dda2695de5 -_md5_=78e26fdd11969f17e375e9eedd01a12b +_md5_=cd8207357699444c54f47aa6c2e78e7a diff --git a/metadata/md5-cache/dev-python/Manifest.gz b/metadata/md5-cache/dev-python/Manifest.gz index 57ab93db1c7c..3c577ef41c20 100644 Binary files a/metadata/md5-cache/dev-python/Manifest.gz and b/metadata/md5-cache/dev-python/Manifest.gz differ diff --git a/metadata/md5-cache/dev-python/bluelet-0.2.0 b/metadata/md5-cache/dev-python/bluelet-0.2.0 index ba39304277a4..546f85698947 100644 --- a/metadata/md5-cache/dev-python/bluelet-0.2.0 +++ b/metadata/md5-cache/dev-python/bluelet-0.2.0 @@ -1,14 +1,14 @@ +BDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] DEFINED_PHASES=compile configure install prepare test -DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] DESCRIPTION=Module for pure Python asynchronous I/O using coroutines -EAPI=5 +EAPI=7 HOMEPAGE=https://pypi.org/project/bluelet/ -IUSE=examples python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 +IUSE=examples python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 KEYWORDS=~amd64 ~x86 LICENSE=MIT -RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] -REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 ) +RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 ) SLOT=0 SRC_URI=https://github.com/sampsyo/bluelet/archive/v0.2.0.tar.gz -> bluelet-0.2.0.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=69c1369d1805802feb17ae2e4352f725 +_eclasses_=distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=7c041ea7410ca863cde04f57bf97a5a8 diff --git a/metadata/md5-cache/dev-python/bsddb3-6.2.4 b/metadata/md5-cache/dev-python/bsddb3-6.2.4 index 52764c872a64..bab9f19b106e 100644 --- a/metadata/md5-cache/dev-python/bsddb3-6.2.4 +++ b/metadata/md5-cache/dev-python/bsddb3-6.2.4 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-lang/python-2.7.5-r2:2.7[threads(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +DEPEND==dev-lang/python-2.7.5-r2:2.7[threads(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] DESCRIPTION=Python bindings for Berkeley DB EAPI=6 HOMEPAGE=https://www.jcea.es/programacion/pybsddb.htm https://pypi.org/project/bsddb3/ -IUSE=python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 +IUSE=python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux LICENSE=BSD -RDEPEND==dev-lang/python-2.7.5-r2:2.7[threads(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] -REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 ) +RDEPEND==dev-lang/python-2.7.5-r2:2.7[threads(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 ) SLOT=0 SRC_URI=mirror://pypi/b/bsddb3/bsddb3-6.2.4.tar.gz _eclasses_=db-use 501a5d0963e0d17f30260023f292ae8e distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=f1bf052a708aea50b52c7becb383471e +_md5_=7263b2f5ef4d38b3842ccfd2b45b662c diff --git a/metadata/md5-cache/dev-python/cython-0.29.4 b/metadata/md5-cache/dev-python/cython-0.29.4 index 998456bf7737..d62743d24e03 100644 --- a/metadata/md5-cache/dev-python/cython-0.29.4 +++ b/metadata/md5-cache/dev-python/cython-0.29.4 @@ -5,11 +5,11 @@ DESCRIPTION=A Python to C compiler EAPI=7 HOMEPAGE=https://cython.org https://pypi.org/project/Cython/ IUSE=doc emacs test python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 -KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=Apache-2.0 RDEPEND=emacs? ( virtual/emacs ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 ) SLOT=0 SRC_URI=mirror://pypi/C/Cython/Cython-0.29.4.tar.gz _eclasses_=distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 elisp-common 23f47b2e1de7abf387105eddd1318738 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=1a9862bec7f1cc68b77fa95c79f6ca17 +_md5_=46d51f438561105fd8f1111a5cbd97c0 diff --git a/metadata/md5-cache/dev-python/llvmlite-0.28.0 b/metadata/md5-cache/dev-python/llvmlite-0.28.0 index cb31ea719565..1f7d6c9c4df9 100644 --- a/metadata/md5-cache/dev-python/llvmlite-0.28.0 +++ b/metadata/md5-cache/dev-python/llvmlite-0.28.0 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_5 python_targe SLOT=0 SRC_URI=https://github.com/numba/llvmlite/archive/v0.28.0.tar.gz -> llvmlite-0.28.0.gh.tar.gz _eclasses_=distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 llvm f36be95c5bfae7bc8c82a966d3c8324f multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=4d77fc7bf0bc08920fd4a9b1347f73ea +_md5_=e632b420ee032fe2c41dc0d78285bf9f diff --git a/metadata/md5-cache/dev-python/m2crypto-0.31.0-r2 b/metadata/md5-cache/dev-python/m2crypto-0.31.0-r2 index cdad5b350159..c4f8be4ca830 100644 --- a/metadata/md5-cache/dev-python/m2crypto-0.31.0-r2 +++ b/metadata/md5-cache/dev-python/m2crypto-0.31.0-r2 @@ -5,7 +5,7 @@ DESCRIPTION=A Python crypto and SSL toolkit EAPI=7 HOMEPAGE=https://gitlab.com/m2crypto/m2crypto https://pypi.org/project/M2Crypto/ IUSE=libressl python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 -KEYWORDS=amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos +KEYWORDS=amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos LICENSE=MIT RDEPEND=!libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) virtual/python-typing[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 ) @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/M/M2Crypto/M2Crypto-0.31.0.tar.gz _eclasses_=distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=f73888780734ebbb25b3183527a3a784 +_md5_=5de95af9453cd5d35b0224b63355e208 diff --git a/metadata/md5-cache/dev-python/neovim-python-client-0.3.2-r1 b/metadata/md5-cache/dev-python/neovim-python-client-0.3.2-r1 index f100dcc7e45a..3e8f9e517933 100644 --- a/metadata/md5-cache/dev-python/neovim-python-client-0.3.2-r1 +++ b/metadata/md5-cache/dev-python/neovim-python-client-0.3.2-r1 @@ -5,11 +5,11 @@ DESCRIPTION=Python client for Neovim EAPI=7 HOMEPAGE=https://github.com/neovim/pynvim IUSE=python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~arm ~x86 LICENSE=Apache-2.0 RDEPEND=dev-python/msgpack[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] virtual/python-greenlet[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] python_targets_python2_7? ( dev-python/trollius[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) app-editors/neovim python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 ) SLOT=0 SRC_URI=https://github.com/neovim/pynvim/archive/0.3.2.tar.gz -> neovim-python-client-0.3.2.tar.gz _eclasses_=distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=0e0cf85d98d91832c96c486a826f6e35 +_md5_=083eea86388bf67a10df3ac0dffe93ac diff --git a/metadata/md5-cache/dev-python/neovim-remote-2.1.0 b/metadata/md5-cache/dev-python/neovim-remote-2.1.0 index e06036cb77e9..42c4865ec0bc 100644 --- a/metadata/md5-cache/dev-python/neovim-remote-2.1.0 +++ b/metadata/md5-cache/dev-python/neovim-remote-2.1.0 @@ -5,7 +5,7 @@ DESCRIPTION=A tool that helps control neovim processes EAPI=7 HOMEPAGE=https://github.com/mhinz/neovim-remote IUSE=test python_targets_python3_5 python_targets_python3_6 -KEYWORDS=~amd64 +KEYWORDS=~amd64 ~arm LICENSE=MIT RDEPEND=dev-python/neovim-python-client[python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/psutil[python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/setuptools[python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_5(-),-python_single_target_python3_6(-)] python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python3_5(-),-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_python3_5 python_targets_python3_6 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/mhinz/neovim-remote/archive/v2.1.0.tar.gz -> neovim-remote-2.1.0.tar.gz _eclasses_=distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=a8ed6ac2e2e036d004f571215a2378af +_md5_=9e03d4946ea6024189748462a197f6e6 diff --git a/metadata/md5-cache/dev-python/pypy-7.1.1 b/metadata/md5-cache/dev-python/pypy-7.1.1 new file mode 100644 index 000000000000..f807c282b6e9 --- /dev/null +++ b/metadata/md5-cache/dev-python/pypy-7.1.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare pretend setup test +DEPEND=>=sys-libs/zlib-1.1.3:0= virtual/libffi:0= virtual/libintl:0= dev-libs/expat:0= !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) bzip2? ( app-arch/bzip2:0= ) gdbm? ( sys-libs/gdbm:0= ) ncurses? ( sys-libs/ncurses:0= ) sqlite? ( dev-db/sqlite:3= ) tk? ( dev-lang/tk:0= dev-tcltk/tix:0= ) !dev-python/pypy-bin:0 !low-memory? ( || ( dev-python/pypy dev-python/pypy-bin ( dev-lang/python:2.7 dev-python/pycparser[python_targets_python2_7(-),python_single_target_python2_7(+)] ) ) ) +DESCRIPTION=A fast, compliant alternative implementation of the Python language +EAPI=7 +HOMEPAGE=http://pypy.org/ +IUSE=bzip2 gdbm +jit libressl low-memory ncurses sandbox sqlite cpu_flags_x86_sse2 test tk +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +LICENSE=MIT +RDEPEND=>=sys-libs/zlib-1.1.3:0= virtual/libffi:0= virtual/libintl:0= dev-libs/expat:0= !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) bzip2? ( app-arch/bzip2:0= ) gdbm? ( sys-libs/gdbm:0= ) ncurses? ( sys-libs/ncurses:0= ) sqlite? ( dev-db/sqlite:3= ) tk? ( dev-lang/tk:0= dev-tcltk/tix:0= ) !dev-python/pypy-bin:0 +SLOT=0/41-py27 +SRC_URI=https://bitbucket.org/pypy/pypy/downloads/pypy2.7-v7.1.1-src.tar.bz2 https://dev.gentoo.org/~floppym/python/python-gentoo-patches-2.7.15.tar.xz +_eclasses_=check-reqs 2c6f909675083dce8430b648bf737cb0 multilib b2f01ad412baf81650c23fcf0975fa33 pax-utils e85f015e815dd463b0c206d781ef45a5 python-any-r1 4900ae970f827a22d33d41bd8b8f9ace python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=636a9817f52b09788fb8d99650f20815 diff --git a/metadata/md5-cache/dev-python/pypy-bin-7.1.1 b/metadata/md5-cache/dev-python/pypy-bin-7.1.1 new file mode 100644 index 000000000000..67e337c6aca5 --- /dev/null +++ b/metadata/md5-cache/dev-python/pypy-bin-7.1.1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install prepare test unpack +DEPEND=app-arch/bzip2:0/1 dev-libs/expat:0/0 dev-libs/libffi:0/7 sys-devel/gcc:* >=sys-libs/glibc-2.28 sys-libs/ncurses:0/6 sys-libs/zlib:0/1 gdbm? ( sys-libs/gdbm:0= ) !libressl? ( dev-libs/openssl:0/1.1[-bindist] ) libressl? ( dev-libs/libressl:0/44 ) sqlite? ( dev-db/sqlite:3= ) tk? ( dev-lang/tk:0= dev-tcltk/tix:0= ) !dev-python/pypy:0 app-arch/lzip app-arch/xz-utils +DESCRIPTION=Pre-built version of PyPy +EAPI=7 +HOMEPAGE=http://pypy.org/ +IUSE=gdbm +jit libressl sqlite cpu_flags_x86_sse2 test tk +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=app-arch/bzip2:0/1 dev-libs/expat:0/0 dev-libs/libffi:0/7 sys-devel/gcc:* >=sys-libs/glibc-2.28 sys-libs/ncurses:0/6 sys-libs/zlib:0/1 gdbm? ( sys-libs/gdbm:0= ) !libressl? ( dev-libs/openssl:0/1.1[-bindist] ) libressl? ( dev-libs/libressl:0/44 ) sqlite? ( dev-db/sqlite:3= ) tk? ( dev-lang/tk:0= dev-tcltk/tix:0= ) !dev-python/pypy:0 +REQUIRED_USE=x86? ( !cpu_flags_x86_sse2? ( !jit ) ) +SLOT=0/41-py27 +SRC_URI=https://bitbucket.org/pypy/pypy/downloads/pypy2.7-v7.1.1-src.tar.bz2 https://dev.gentoo.org/~floppym/python/python-gentoo-patches-2.7.15.tar.xz amd64? ( !libressl? ( jit? ( https://dev.gentoo.org/~mgorny/dist/pypy-bin/7.1.1/pypy-bin-7.1.1-amd64+bzip2+jit+ncurses.tar.lz ) !jit? ( https://dev.gentoo.org/~mgorny/dist/pypy-bin/7.1.1/pypy-bin-7.1.1-amd64+bzip2+ncurses.tar.lz ) ) libressl? ( jit? ( https://dev.gentoo.org/~mgorny/dist/pypy-bin/7.1.1/pypy-bin-7.1.1-amd64+bzip2+jit+libressl+ncurses.tar.lz ) !jit? ( https://dev.gentoo.org/~mgorny/dist/pypy-bin/7.1.1/pypy-bin-7.1.1-amd64+bzip2+libressl+ncurses.tar.lz ) ) ) x86? ( !libressl? ( cpu_flags_x86_sse2? ( jit? ( https://dev.gentoo.org/~mgorny/dist/pypy-bin/7.1.1/pypy-bin-7.1.1-x86+bzip2+jit+ncurses+sse2.tar.lz ) !jit? ( https://dev.gentoo.org/~mgorny/dist/pypy-bin/7.1.1/pypy-bin-7.1.1-x86+bzip2+ncurses+sse2.tar.lz ) ) !cpu_flags_x86_sse2? ( !jit? ( https://dev.gentoo.org/~mgorny/dist/pypy-bin/7.1.1/pypy-bin-7.1.1-x86+bzip2+ncurses.tar.lz ) ) ) libressl? ( cpu_flags_x86_sse2? ( jit? ( https://dev.gentoo.org/~mgorny/dist/pypy-bin/7.1.1/pypy-bin-7.1.1-x86+bzip2+jit+libressl+ncurses+sse2.tar.lz ) !jit? ( https://dev.gentoo.org/~mgorny/dist/pypy-bin/7.1.1/pypy-bin-7.1.1-x86+bzip2+libressl+ncurses+sse2.tar.lz ) ) !cpu_flags_x86_sse2? ( !jit? ( https://dev.gentoo.org/~mgorny/dist/pypy-bin/7.1.1/pypy-bin-7.1.1-x86+bzip2+libressl+ncurses.tar.lz ) ) ) ) +_eclasses_=multilib b2f01ad412baf81650c23fcf0975fa33 pax-utils e85f015e815dd463b0c206d781ef45a5 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 unpacker 3cd8bad0d31e525cd26be1bfa4e61631 +_md5_=b052ba08d25d52319d73376d7f95d775 diff --git a/metadata/md5-cache/dev-python/pypy3-7.1.1 b/metadata/md5-cache/dev-python/pypy3-7.1.1 new file mode 100644 index 000000000000..41eb83256f26 --- /dev/null +++ b/metadata/md5-cache/dev-python/pypy3-7.1.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare pretend setup test +DEPEND=>=sys-libs/zlib-1.1.3:0= virtual/libffi:0= virtual/libintl:0= dev-libs/expat:0= !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) bzip2? ( app-arch/bzip2:0= ) gdbm? ( sys-libs/gdbm:0= ) ncurses? ( sys-libs/ncurses:0= ) sqlite? ( dev-db/sqlite:3= ) tk? ( dev-lang/tk:0= dev-tcltk/tix:0= ) !dev-python/pypy3-bin:0 low-memory? ( virtual/pypy ) !low-memory? ( || ( virtual/pypy ( dev-lang/python:2.7 dev-python/pycparser[python_targets_python2_7(-),python_single_target_python2_7(+)] ) ) ) +DESCRIPTION=A fast, compliant alternative implementation of the Python (3.6) language +EAPI=7 +HOMEPAGE=http://pypy.org/ +IUSE=bzip2 gdbm +jit libressl low-memory ncurses sandbox sqlite tk +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +LICENSE=MIT +RDEPEND=>=sys-libs/zlib-1.1.3:0= virtual/libffi:0= virtual/libintl:0= dev-libs/expat:0= !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) bzip2? ( app-arch/bzip2:0= ) gdbm? ( sys-libs/gdbm:0= ) ncurses? ( sys-libs/ncurses:0= ) sqlite? ( dev-db/sqlite:3= ) tk? ( dev-lang/tk:0= dev-tcltk/tix:0= ) !dev-python/pypy3-bin:0 +SLOT=0/71-py36 +SRC_URI=https://bitbucket.org/pypy/pypy/downloads/pypy3.6-v7.1.1-src.tar.bz2 +_eclasses_=check-reqs 2c6f909675083dce8430b648bf737cb0 multilib b2f01ad412baf81650c23fcf0975fa33 pax-utils e85f015e815dd463b0c206d781ef45a5 python-any-r1 4900ae970f827a22d33d41bd8b8f9ace python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=244f33bf49320f7b7b87411f273722e7 diff --git a/metadata/md5-cache/dev-python/pypy3-bin-7.1.1 b/metadata/md5-cache/dev-python/pypy3-bin-7.1.1 new file mode 100644 index 000000000000..c9a782c64b6b --- /dev/null +++ b/metadata/md5-cache/dev-python/pypy3-bin-7.1.1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install prepare setup test unpack +DEPEND=app-arch/bzip2:0/1 dev-libs/expat:0/0 dev-libs/libffi:0/7 sys-devel/gcc:* >=sys-libs/glibc-2.28 sys-libs/ncurses:0/6 sys-libs/zlib:0/1 gdbm? ( sys-libs/gdbm:0= ) !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) sqlite? ( dev-db/sqlite:3= ) tk? ( dev-lang/tk:0= dev-tcltk/tix:0= ) !dev-python/pypy3:0 app-arch/lzip app-arch/xz-utils test? ( || ( >=dev-lang/python-2.7.5-r2:2.7 >=virtual/pypy-5:0 ) ) +DESCRIPTION=A fast, compliant alternative implementation of Python 3.6 (binary package) +EAPI=7 +HOMEPAGE=http://pypy.org/ +IUSE=gdbm +jit libressl sqlite cpu_flags_x86_sse2 test tk +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=app-arch/bzip2:0/1 dev-libs/expat:0/0 dev-libs/libffi:0/7 sys-devel/gcc:* >=sys-libs/glibc-2.28 sys-libs/ncurses:0/6 sys-libs/zlib:0/1 gdbm? ( sys-libs/gdbm:0= ) !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) sqlite? ( dev-db/sqlite:3= ) tk? ( dev-lang/tk:0= dev-tcltk/tix:0= ) !dev-python/pypy3:0 +REQUIRED_USE=x86? ( !cpu_flags_x86_sse2? ( !jit ) ) +SLOT=0/71-py36 +SRC_URI=https://bitbucket.org/pypy/pypy/downloads/pypy3.6-v7.1.1-src.tar.bz2 amd64? ( jit? ( https://dev.gentoo.org/~mgorny/dist/pypy3-bin/7.1.1/pypy3-bin-7.1.1-amd64+bzip2+jit+ncurses.tar.lz ) !jit? ( https://dev.gentoo.org/~mgorny/dist/pypy3-bin/7.1.1/pypy3-bin-7.1.1-amd64+bzip2+ncurses.tar.lz ) ) x86? ( cpu_flags_x86_sse2? ( jit? ( https://dev.gentoo.org/~mgorny/dist/pypy3-bin/7.1.1/pypy3-bin-7.1.1-x86+bzip2+jit+ncurses+sse2.tar.lz ) !jit? ( https://dev.gentoo.org/~mgorny/dist/pypy3-bin/7.1.1/pypy3-bin-7.1.1-x86+bzip2+ncurses+sse2.tar.lz ) ) !cpu_flags_x86_sse2? ( !jit? ( https://dev.gentoo.org/~mgorny/dist/pypy3-bin/7.1.1/pypy3-bin-7.1.1-x86+bzip2+ncurses.tar.lz ) ) ) +_eclasses_=multilib b2f01ad412baf81650c23fcf0975fa33 pax-utils e85f015e815dd463b0c206d781ef45a5 python-any-r1 4900ae970f827a22d33d41bd8b8f9ace python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 unpacker 3cd8bad0d31e525cd26be1bfa4e61631 +_md5_=74a8b1ee5a1dcf444214fea258827e49 diff --git a/metadata/md5-cache/dev-python/rdflib-4.2.2-r1 b/metadata/md5-cache/dev-python/rdflib-4.2.2-r1 new file mode 100644 index 000000000000..761ec6c021a8 --- /dev/null +++ b/metadata/md5-cache/dev-python/rdflib-4.2.2-r1 @@ -0,0 +1,16 @@ +BDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite?,threads(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[sqlite?,threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[sqlite?,threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[sqlite?,threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/isodate[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/html5lib[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pyparsing[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] berkdb? ( dev-python/bsddb3[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) redland? ( dev-libs/redland-bindings[python,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] doc? ( dev-python/sphinx[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) test? ( dev-python/sparql-wrapper[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/nose-1.3.1-r1[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) +DESCRIPTION=RDF library containing a triple store and parser/serializer +EAPI=7 +HOMEPAGE=https://github.com/RDFLib/rdflib https://pypi.org/project/rdflib/ +IUSE=doc berkdb examples mysql redland sqlite test python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=BSD +RDEPEND=dev-python/isodate[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/html5lib[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pyparsing[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] berkdb? ( dev-python/bsddb3[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) redland? ( dev-libs/redland-bindings[python,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite?,threads(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[sqlite?,threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[sqlite?,threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[sqlite?,threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/r/rdflib/rdflib-4.2.2.tar.gz +_eclasses_=distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=28ed375403e7978c7ec54db10783434a diff --git a/metadata/md5-cache/dev-python/reportlab-3.5.13 b/metadata/md5-cache/dev-python/reportlab-3.5.13-r1 similarity index 98% rename from metadata/md5-cache/dev-python/reportlab-3.5.13 rename to metadata/md5-cache/dev-python/reportlab-3.5.13-r1 index b3f57f42f180..960f4867280d 100644 --- a/metadata/md5-cache/dev-python/reportlab-3.5.13 +++ b/metadata/md5-cache/dev-python/reportlab-3.5.13-r1 @@ -12,4 +12,4 @@ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_5 python_targe SLOT=0 SRC_URI=mirror://pypi/r/reportlab/reportlab-3.5.13.tar.gz http://www.reportlab.com/ftp/fonts/pfbfer-20070710.zip _eclasses_=distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=3aa6a4ceaa4ca6b5c1bab58b73b17d14 +_md5_=64e041d9c37a63999672a0d24994a311 diff --git a/metadata/md5-cache/dev-python/sparql-wrapper-1.8.4 b/metadata/md5-cache/dev-python/sparql-wrapper-1.8.4 new file mode 100644 index 000000000000..90991405687b --- /dev/null +++ b/metadata/md5-cache/dev-python/sparql-wrapper-1.8.4 @@ -0,0 +1,15 @@ +BDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] +DESCRIPTION=Wrapper around a SPARQL service +EAPI=7 +HOMEPAGE=https://pypi.org/project/SPARQLWrapper/ +IUSE=python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=W3C +RDEPEND=>=dev-python/rdflib-4[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 ) +SLOT=0 +SRC_URI=mirror://pypi/S/SPARQLWrapper/SPARQLWrapper-1.8.4.tar.gz +_eclasses_=distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=f23261a7078f9451483ff7fe0e91c66c diff --git a/metadata/md5-cache/dev-qt/Manifest.gz b/metadata/md5-cache/dev-qt/Manifest.gz index 60f617bc1e75..892e98633b40 100644 Binary files a/metadata/md5-cache/dev-qt/Manifest.gz and b/metadata/md5-cache/dev-qt/Manifest.gz differ diff --git a/metadata/md5-cache/dev-qt/assistant-5.12.2 b/metadata/md5-cache/dev-qt/assistant-5.12.3 similarity index 68% rename from metadata/md5-cache/dev-qt/assistant-5.12.2 rename to metadata/md5-cache/dev-qt/assistant-5.12.3 index 1f1981324a01..95ad671f1d3d 100644 --- a/metadata/md5-cache/dev-qt/assistant-5.12.2 +++ b/metadata/md5-cache/dev-qt/assistant-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qthelp-5.12.2 ~dev-qt/qtnetwork-5.12.2 ~dev-qt/qtprintsupport-5.12.2 ~dev-qt/qtsql-5.12.2[sqlite] ~dev-qt/qtwidgets-5.12.2 webkit? ( >=dev-qt/qtwebkit-5.9.1:5 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qthelp-5.12.3 ~dev-qt/qtnetwork-5.12.3 ~dev-qt/qtprintsupport-5.12.3 ~dev-qt/qtsql-5.12.3[sqlite] ~dev-qt/qtwidgets-5.12.3 webkit? ( >=dev-qt/qtwebkit-5.9.1:5 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Tool for viewing on-line documentation in Qt help file format EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=webkit debug test KEYWORDS=~amd64 ~arm ~hppa ~ppc64 ~sparc ~x86 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qthelp-5.12.2 ~dev-qt/qtnetwork-5.12.2 ~dev-qt/qtprintsupport-5.12.2 ~dev-qt/qtsql-5.12.2[sqlite] ~dev-qt/qtwidgets-5.12.2 webkit? ( >=dev-qt/qtwebkit-5.9.1:5 ) dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qthelp-5.12.3 ~dev-qt/qtnetwork-5.12.3 ~dev-qt/qtprintsupport-5.12.3 ~dev-qt/qtsql-5.12.3[sqlite] ~dev-qt/qtwidgets-5.12.3 webkit? ( >=dev-qt/qtwebkit-5.9.1:5 ) dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qttools-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qttools-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf gnome2-utils 532371cfcba45b2ab0d2950547c97d95 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 xdg-utils 14d00d009167652b1fa363e55effe213 _md5_=79f0270ebe5372049e7772fb768deedf diff --git a/metadata/md5-cache/dev-qt/designer-5.12.2 b/metadata/md5-cache/dev-qt/designer-5.12.3 similarity index 61% rename from metadata/md5-cache/dev-qt/designer-5.12.2 rename to metadata/md5-cache/dev-qt/designer-5.12.3 index 1d516b138d24..17a23d84bce7 100644 --- a/metadata/md5-cache/dev-qt/designer-5.12.2 +++ b/metadata/md5-cache/dev-qt/designer-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qtnetwork-5.12.2 ~dev-qt/qtprintsupport-5.12.2 ~dev-qt/qtwidgets-5.12.2 ~dev-qt/qtxml-5.12.2 declarative? ( ~dev-qt/qtdeclarative-5.12.2[widgets] ) webkit? ( >=dev-qt/qtwebkit-5.9.1:5 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qtnetwork-5.12.3 ~dev-qt/qtprintsupport-5.12.3 ~dev-qt/qtwidgets-5.12.3 ~dev-qt/qtxml-5.12.3 declarative? ( ~dev-qt/qtdeclarative-5.12.3[widgets] ) webkit? ( >=dev-qt/qtwebkit-5.9.1:5 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=WYSIWYG tool for designing and building graphical user interfaces with QtWidgets EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=declarative webkit debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qtnetwork-5.12.2 ~dev-qt/qtprintsupport-5.12.2 ~dev-qt/qtwidgets-5.12.2 ~dev-qt/qtxml-5.12.2 declarative? ( ~dev-qt/qtdeclarative-5.12.2[widgets] ) webkit? ( >=dev-qt/qtwebkit-5.9.1:5 ) dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qtnetwork-5.12.3 ~dev-qt/qtprintsupport-5.12.3 ~dev-qt/qtwidgets-5.12.3 ~dev-qt/qtxml-5.12.3 declarative? ( ~dev-qt/qtdeclarative-5.12.3[widgets] ) webkit? ( >=dev-qt/qtwebkit-5.9.1:5 ) dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qttools-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qttools-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf gnome2-utils 532371cfcba45b2ab0d2950547c97d95 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 xdg-utils 14d00d009167652b1fa363e55effe213 _md5_=b0f21e619838dd409029154cfe3f5efb diff --git a/metadata/md5-cache/dev-qt/linguist-5.12.2 b/metadata/md5-cache/dev-qt/linguist-5.12.3 similarity index 66% rename from metadata/md5-cache/dev-qt/linguist-5.12.2 rename to metadata/md5-cache/dev-qt/linguist-5.12.3 index ec6f142662f5..a5f4c5b1a70c 100644 --- a/metadata/md5-cache/dev-qt/linguist-5.12.2 +++ b/metadata/md5-cache/dev-qt/linguist-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/designer-5.12.2 ~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qtprintsupport-5.12.2 ~dev-qt/qtwidgets-5.12.2 ~dev-qt/qtxml-5.12.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/designer-5.12.3 ~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qtprintsupport-5.12.3 ~dev-qt/qtwidgets-5.12.3 ~dev-qt/qtxml-5.12.3 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Graphical tool for translating Qt applications EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=debug test KEYWORDS=~amd64 ~arm ~hppa ~ppc64 ~x86 ~amd64-fbsd LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/designer-5.12.2 ~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qtprintsupport-5.12.2 ~dev-qt/qtwidgets-5.12.2 ~dev-qt/qtxml-5.12.2 dev-qt/qtchooser +RDEPEND=~dev-qt/designer-5.12.3 ~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qtprintsupport-5.12.3 ~dev-qt/qtwidgets-5.12.3 ~dev-qt/qtxml-5.12.3 dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qttools-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qttools-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf gnome2-utils 532371cfcba45b2ab0d2950547c97d95 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 xdg-utils 14d00d009167652b1fa363e55effe213 _md5_=fb8bbe03cdfbe6987836c71a98c93101 diff --git a/metadata/md5-cache/dev-qt/linguist-tools-5.12.2 b/metadata/md5-cache/dev-qt/linguist-tools-5.12.3 similarity index 71% rename from metadata/md5-cache/dev-qt/linguist-tools-5.12.2 rename to metadata/md5-cache/dev-qt/linguist-tools-5.12.3 index 009d6bca758e..cb6a2935991a 100644 --- a/metadata/md5-cache/dev-qt/linguist-tools-5.12.2 +++ b/metadata/md5-cache/dev-qt/linguist-tools-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtxml-5.12.2 qml? ( ~dev-qt/qtdeclarative-5.12.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtxml-5.12.3 qml? ( ~dev-qt/qtdeclarative-5.12.3 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Tools for working with Qt translation data files EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=qml debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtxml-5.12.2 qml? ( ~dev-qt/qtdeclarative-5.12.2 ) dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtxml-5.12.3 qml? ( ~dev-qt/qtdeclarative-5.12.3 ) dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qttools-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qttools-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=9c093e21893380d4f3aa85236e4c0da6 diff --git a/metadata/md5-cache/dev-qt/pixeltool-5.12.2 b/metadata/md5-cache/dev-qt/pixeltool-5.12.3 similarity index 71% rename from metadata/md5-cache/dev-qt/pixeltool-5.12.2 rename to metadata/md5-cache/dev-qt/pixeltool-5.12.3 index 61bff46f8e20..9c2e58993f51 100644 --- a/metadata/md5-cache/dev-qt/pixeltool-5.12.2 +++ b/metadata/md5-cache/dev-qt/pixeltool-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qtwidgets-5.12.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qtwidgets-5.12.3 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Qt screen magnifier EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=debug test KEYWORDS=~amd64 ~arm ~hppa ~ppc64 ~sparc ~x86 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qtwidgets-5.12.2 dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qtwidgets-5.12.3 dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qttools-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qttools-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=d6be7c6e86fe8a1b12632a95bd2ac228 diff --git a/metadata/md5-cache/dev-qt/qdbus-5.12.2 b/metadata/md5-cache/dev-qt/qdbus-5.12.3 similarity index 73% rename from metadata/md5-cache/dev-qt/qdbus-5.12.2 rename to metadata/md5-cache/dev-qt/qdbus-5.12.3 index c1d9f585d8d1..20715cb38ec1 100644 --- a/metadata/md5-cache/dev-qt/qdbus-5.12.2 +++ b/metadata/md5-cache/dev-qt/qdbus-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtdbus-5.12.2 ~dev-qt/qtxml-5.12.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtdbus-5.12.3 ~dev-qt/qtxml-5.12.3 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Interface to Qt applications communicating over D-Bus EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtdbus-5.12.2 ~dev-qt/qtxml-5.12.2 dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtdbus-5.12.3 ~dev-qt/qtxml-5.12.3 dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qttools-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qttools-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=e5c19a4066a1551f8d75f8ebfb86dad3 diff --git a/metadata/md5-cache/dev-qt/qdbusviewer-5.12.2 b/metadata/md5-cache/dev-qt/qdbusviewer-5.12.3 similarity index 71% rename from metadata/md5-cache/dev-qt/qdbusviewer-5.12.2 rename to metadata/md5-cache/dev-qt/qdbusviewer-5.12.3 index a43773e7b4ea..c07596a2f4a8 100644 --- a/metadata/md5-cache/dev-qt/qdbusviewer-5.12.2 +++ b/metadata/md5-cache/dev-qt/qdbusviewer-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtdbus-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qtwidgets-5.12.2 ~dev-qt/qtxml-5.12.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtdbus-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qtwidgets-5.12.3 ~dev-qt/qtxml-5.12.3 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Graphical tool that lets you introspect D-Bus objects and messages EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=debug test KEYWORDS=~amd64 ~arm ~hppa ~ppc64 ~sparc ~x86 ~amd64-fbsd LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtdbus-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qtwidgets-5.12.2 ~dev-qt/qtxml-5.12.2 dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtdbus-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qtwidgets-5.12.3 ~dev-qt/qtxml-5.12.3 dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qttools-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qttools-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf gnome2-utils 532371cfcba45b2ab0d2950547c97d95 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 xdg-utils 14d00d009167652b1fa363e55effe213 _md5_=1a3aa6592e2f47265c7e24d1edcaeea2 diff --git a/metadata/md5-cache/dev-qt/qdoc-5.12.2 b/metadata/md5-cache/dev-qt/qdoc-5.12.3 similarity index 70% rename from metadata/md5-cache/dev-qt/qdoc-5.12.2 rename to metadata/md5-cache/dev-qt/qdoc-5.12.3 index d6557ad518fa..270f12334890 100644 --- a/metadata/md5-cache/dev-qt/qdoc-5.12.2 +++ b/metadata/md5-cache/dev-qt/qdoc-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 sys-devel/clang:= qml? ( ~dev-qt/qtdeclarative-5.12.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 sys-devel/clang:= qml? ( ~dev-qt/qtdeclarative-5.12.3 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Qt documentation generator EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=qml debug test KEYWORDS=~amd64 ~arm ~ppc64 ~x86 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 sys-devel/clang:= qml? ( ~dev-qt/qtdeclarative-5.12.2 ) dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 sys-devel/clang:= qml? ( ~dev-qt/qtdeclarative-5.12.3 ) dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qttools-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qttools-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=cb070a26c58e051f90dcb1f472b3f961 diff --git a/metadata/md5-cache/dev-qt/qt-docs-5.12.2_p201903121945 b/metadata/md5-cache/dev-qt/qt-docs-5.12.2_p201903121945 deleted file mode 100644 index d2e238415309..000000000000 --- a/metadata/md5-cache/dev-qt/qt-docs-5.12.2_p201903121945 +++ /dev/null @@ -1,12 +0,0 @@ -BDEPEND=app-arch/p7zip -DEFINED_PHASES=install prepare -DESCRIPTION=Qt5 documentation, for use with Qt Creator and other tools -EAPI=7 -HOMEPAGE=https://doc.qt.io/ -IUSE=3d bluetooth charts datavis declarative graphicaleffects +html location multimedia networkauth +qch script sensors virtualkeyboard webengine -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 -LICENSE=FDL-1.3 -REQUIRED_USE=|| ( html qch ) -SLOT=5 -SRC_URI=https://download.qt.io/online/qtsdkrepository/linux_x64/desktop/qt5_5122_src_doc_examples/qt.qt5.5122.doc/5.12.2-0-201903121945qt-everywhere-documentation.7z charts? ( https://download.qt.io/online/qtsdkrepository/linux_x64/desktop/qt5_5122_src_doc_examples/qt.qt5.5122.doc.qtcharts/5.12.2-0-201903121945qtcharts-documentation.7z ) datavis? ( https://download.qt.io/online/qtsdkrepository/linux_x64/desktop/qt5_5122_src_doc_examples/qt.qt5.5122.doc.qtdatavis3d/5.12.2-0-201903121945qtdatavisualization-documentation.7z ) networkauth? ( https://download.qt.io/online/qtsdkrepository/linux_x64/desktop/qt5_5122_src_doc_examples/qt.qt5.5122.doc.qtnetworkauth/5.12.2-0-201903121945qtnetworkauth-documentation.7z ) script? ( https://download.qt.io/online/qtsdkrepository/linux_x64/desktop/qt5_5122_src_doc_examples/qt.qt5.5122.doc.qtscript/5.12.2-0-201903121945qtscript-documentation.7z https://download.qt.io/online/qtsdkrepository/linux_x64/desktop/qt5_5122_src_doc_examples/qt.qt5.5122.doc.qtscript/5.12.2-0-201903121945qtscripttools-documentation.7z ) virtualkeyboard? ( https://download.qt.io/online/qtsdkrepository/linux_x64/desktop/qt5_5122_src_doc_examples/qt.qt5.5122.doc.qtvirtualkeyboard/5.12.2-0-201903121945qtvirtualkeyboard-documentation.7z ) webengine? ( https://download.qt.io/online/qtsdkrepository/linux_x64/desktop/qt5_5122_src_doc_examples/qt.qt5.5122.doc.qtwebengine/5.12.2-0-201903121945qtwebengine-documentation.7z ) -_md5_=0fe0457a5fdbb5e7e9a7cbf3f8a9789d diff --git a/metadata/md5-cache/dev-qt/qt-docs-5.12.3_p201904161302 b/metadata/md5-cache/dev-qt/qt-docs-5.12.3_p201904161302 new file mode 100644 index 000000000000..71c97acf386f --- /dev/null +++ b/metadata/md5-cache/dev-qt/qt-docs-5.12.3_p201904161302 @@ -0,0 +1,12 @@ +BDEPEND=app-arch/p7zip +DEFINED_PHASES=install prepare +DESCRIPTION=Qt5 documentation, for use with Qt Creator and other tools +EAPI=7 +HOMEPAGE=https://doc.qt.io/ +IUSE=3d bluetooth charts datavis declarative graphicaleffects +html location multimedia networkauth +qch script sensors virtualkeyboard webengine +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +LICENSE=FDL-1.3 +REQUIRED_USE=|| ( html qch ) +SLOT=5 +SRC_URI=https://download.qt.io/online/qtsdkrepository/linux_x64/desktop/qt5_5123_src_doc_examples/qt.qt5.5123.doc/5.12.3-0-201904161302qt-everywhere-documentation.7z charts? ( https://download.qt.io/online/qtsdkrepository/linux_x64/desktop/qt5_5123_src_doc_examples/qt.qt5.5123.doc.qtcharts/5.12.3-0-201904161302qtcharts-documentation.7z ) datavis? ( https://download.qt.io/online/qtsdkrepository/linux_x64/desktop/qt5_5123_src_doc_examples/qt.qt5.5123.doc.qtdatavis3d/5.12.3-0-201904161302qtdatavisualization-documentation.7z ) networkauth? ( https://download.qt.io/online/qtsdkrepository/linux_x64/desktop/qt5_5123_src_doc_examples/qt.qt5.5123.doc.qtnetworkauth/5.12.3-0-201904161302qtnetworkauth-documentation.7z ) script? ( https://download.qt.io/online/qtsdkrepository/linux_x64/desktop/qt5_5123_src_doc_examples/qt.qt5.5123.doc.qtscript/5.12.3-0-201904161302qtscript-documentation.7z https://download.qt.io/online/qtsdkrepository/linux_x64/desktop/qt5_5123_src_doc_examples/qt.qt5.5123.doc.qtscript/5.12.3-0-201904161302qtscripttools-documentation.7z ) virtualkeyboard? ( https://download.qt.io/online/qtsdkrepository/linux_x64/desktop/qt5_5123_src_doc_examples/qt.qt5.5123.doc.qtvirtualkeyboard/5.12.3-0-201904161302qtvirtualkeyboard-documentation.7z ) webengine? ( https://download.qt.io/online/qtsdkrepository/linux_x64/desktop/qt5_5123_src_doc_examples/qt.qt5.5123.doc.qtwebengine/5.12.3-0-201904161302qtwebengine-documentation.7z ) +_md5_=0fe0457a5fdbb5e7e9a7cbf3f8a9789d diff --git a/metadata/md5-cache/dev-qt/qt3d-5.12.2 b/metadata/md5-cache/dev-qt/qt3d-5.12.3 similarity index 62% rename from metadata/md5-cache/dev-qt/qt3d-5.12.2 rename to metadata/md5-cache/dev-qt/qt3d-5.12.3 index 7bd08556e6f4..1895f2a4be68 100644 --- a/metadata/md5-cache/dev-qt/qt3d-5.12.2 +++ b/metadata/md5-cache/dev-qt/qt3d-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtconcurrent-5.12.2 ~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qtnetwork-5.12.2 >=media-libs/assimp-4.0.0 qml? ( ~dev-qt/qtdeclarative-5.12.2[gles2=] ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtconcurrent-5.12.3 ~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qtnetwork-5.12.3 >=media-libs/assimp-4.0.0 qml? ( ~dev-qt/qtdeclarative-5.12.3[gles2=] ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=3D rendering module for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=gles2 qml debug test KEYWORDS=~amd64 ~x86 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtconcurrent-5.12.2 ~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qtnetwork-5.12.2 >=media-libs/assimp-4.0.0 qml? ( ~dev-qt/qtdeclarative-5.12.2[gles2=] ) dev-qt/qtchooser +RDEPEND=~dev-qt/qtconcurrent-5.12.3 ~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qtnetwork-5.12.3 >=media-libs/assimp-4.0.0 qml? ( ~dev-qt/qtdeclarative-5.12.3[gles2=] ) dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qt3d-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qt3d-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=53936cc9d8d6242984f352396a556371 diff --git a/metadata/md5-cache/dev-qt/qtbluetooth-5.12.2 b/metadata/md5-cache/dev-qt/qtbluetooth-5.12.3 similarity index 63% rename from metadata/md5-cache/dev-qt/qtbluetooth-5.12.2 rename to metadata/md5-cache/dev-qt/qtbluetooth-5.12.3 index 47655cd96c6d..06de791f7fad 100644 --- a/metadata/md5-cache/dev-qt/qtbluetooth-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtbluetooth-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtconcurrent-5.12.2 ~dev-qt/qtcore-5.12.2 ~dev-qt/qtdbus-5.12.2 >=net-wireless/bluez-5:= qml? ( ~dev-qt/qtdeclarative-5.12.2 ) ~dev-qt/qtnetwork-5.12.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtconcurrent-5.12.3 ~dev-qt/qtcore-5.12.3 ~dev-qt/qtdbus-5.12.3 >=net-wireless/bluez-5:= qml? ( ~dev-qt/qtdeclarative-5.12.3 ) ~dev-qt/qtnetwork-5.12.3 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Bluetooth support library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=qml debug test KEYWORDS=~amd64 ~arm ~arm64 ~x86 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtconcurrent-5.12.2 ~dev-qt/qtcore-5.12.2 ~dev-qt/qtdbus-5.12.2 >=net-wireless/bluez-5:= qml? ( ~dev-qt/qtdeclarative-5.12.2 ) dev-qt/qtchooser +RDEPEND=~dev-qt/qtconcurrent-5.12.3 ~dev-qt/qtcore-5.12.3 ~dev-qt/qtdbus-5.12.3 >=net-wireless/bluez-5:= qml? ( ~dev-qt/qtdeclarative-5.12.3 ) dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtconnectivity-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtconnectivity-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=8ec4abe4e18413045646a633c0965588 diff --git a/metadata/md5-cache/dev-qt/qtcharts-5.12.2 b/metadata/md5-cache/dev-qt/qtcharts-5.12.3 similarity index 67% rename from metadata/md5-cache/dev-qt/qtcharts-5.12.2 rename to metadata/md5-cache/dev-qt/qtcharts-5.12.3 index 8ac6a010273f..b8a0cb3428b8 100644 --- a/metadata/md5-cache/dev-qt/qtcharts-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtcharts-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qtwidgets-5.12.2 qml? ( ~dev-qt/qtdeclarative-5.12.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qtwidgets-5.12.3 qml? ( ~dev-qt/qtdeclarative-5.12.3 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Chart component library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=qml debug test KEYWORDS=~amd64 ~x86 LICENSE=GPL-3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qtwidgets-5.12.2 qml? ( ~dev-qt/qtdeclarative-5.12.2 ) dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qtwidgets-5.12.3 qml? ( ~dev-qt/qtdeclarative-5.12.3 ) dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtcharts-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtcharts-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=8f40eaa54286f84f4d56f43304f5abcc diff --git a/metadata/md5-cache/dev-qt/qtconcurrent-5.12.2 b/metadata/md5-cache/dev-qt/qtconcurrent-5.12.3 similarity index 79% rename from metadata/md5-cache/dev-qt/qtconcurrent-5.12.2 rename to metadata/md5-cache/dev-qt/qtconcurrent-5.12.3 index 009672443799..359b6a573910 100644 --- a/metadata/md5-cache/dev-qt/qtconcurrent-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtconcurrent-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Multi-threading concurrence support library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtbase-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtbase-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=7828ecf3a6a3e7c3b74c2e2c52b7b351 diff --git a/metadata/md5-cache/dev-qt/qtcore-5.12.2 b/metadata/md5-cache/dev-qt/qtcore-5.12.3 similarity index 89% rename from metadata/md5-cache/dev-qt/qtcore-5.12.2 rename to metadata/md5-cache/dev-qt/qtcore-5.12.3 index bf02774a974d..70eb379b7d2b 100644 --- a/metadata/md5-cache/dev-qt/qtcore-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtcore-5.12.3 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=dev-libs/double-conversion:= dev-libs/glib:2 dev-libs/libpcre2[pcre16,unicode] sys-libs/zlib:= icu? ( dev-libs/icu:= ) !icu? ( virtual/libiconv ) systemd? ( sys-apps/systemd:= ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=dev-libs/double-conversion:= dev-libs/glib:2 dev-libs/libpcre2[pcre16,unicode] sys-libs/zlib:= icu? ( dev-libs/icu:= ) !icu? ( virtual/libiconv ) systemd? ( sys-apps/systemd:= ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Cross-platform application development framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -9,6 +9,6 @@ LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 RDEPEND=dev-libs/double-conversion:= dev-libs/glib:2 dev-libs/libpcre2[pcre16,unicode] sys-libs/zlib:= icu? ( dev-libs/icu:= ) !icu? ( virtual/libiconv ) systemd? ( sys-apps/systemd:= ) !=sys-apps/dbus-1.4.20 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 >=sys-apps/dbus-1.4.20 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Qt5 module for inter-process communication over the D-Bus protocol EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 >=sys-apps/dbus-1.4.20 dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 >=sys-apps/dbus-1.4.20 dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtbase-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtbase-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=d79af3418f1f71981d56dbefa6be8807 diff --git a/metadata/md5-cache/dev-qt/qtdeclarative-5.12.2 b/metadata/md5-cache/dev-qt/qtdeclarative-5.12.3 similarity index 67% rename from metadata/md5-cache/dev-qt/qtdeclarative-5.12.2 rename to metadata/md5-cache/dev-qt/qtdeclarative-5.12.3 index 451040ec0365..32260542feb6 100644 --- a/metadata/md5-cache/dev-qt/qtdeclarative-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtdeclarative-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2[gles2=] ~dev-qt/qtnetwork-5.12.2 ~dev-qt/qttest-5.12.2 localstorage? ( ~dev-qt/qtsql-5.12.2 ) widgets? ( ~dev-qt/qtwidgets-5.12.2[gles2=] ) || ( dev-lang/python:3.7 dev-lang/python:3.6 dev-lang/python:3.5 >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3[gles2=] ~dev-qt/qtnetwork-5.12.3 ~dev-qt/qttest-5.12.3 localstorage? ( ~dev-qt/qtsql-5.12.3 ) widgets? ( ~dev-qt/qtwidgets-5.12.3[gles2=] ) || ( dev-lang/python:3.7 dev-lang/python:3.6 dev-lang/python:3.5 >=dev-lang/python-2.7.5-r2:2.7 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=The QML and Quick modules for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=gles2 +jit localstorage +widgets debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2[gles2=] ~dev-qt/qtnetwork-5.12.2 ~dev-qt/qttest-5.12.2 localstorage? ( ~dev-qt/qtsql-5.12.2 ) widgets? ( ~dev-qt/qtwidgets-5.12.2[gles2=] ) !=media-libs/freetype-2.6.1:2 >=media-libs/harfbuzz-1.6.0:= sys-libs/zlib:= virtual/opengl dbus? ( ~dev-qt/qtdbus-5.12.2 ) egl? ( media-libs/mesa[egl] ) eglfs? ( media-libs/mesa[gbm] x11-libs/libdrm ) evdev? ( sys-libs/mtdev ) gles2? ( media-libs/mesa[gles2] ) jpeg? ( virtual/jpeg:0 ) libinput? ( dev-libs/libinput:= >=x11-libs/libxkbcommon-0.5.0 ) png? ( media-libs/libpng:0= ) tslib? ( x11-libs/tslib ) tuio? ( ~dev-qt/qtnetwork-5.12.2 ) udev? ( virtual/libudev:= ) vnc? ( ~dev-qt/qtnetwork-5.12.2 ) xcb? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 >=x11-libs/libxcb-1.12:=[xkb] >=x11-libs/libxkbcommon-0.5.0[X] x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil x11-libs/xcb-util-wm ) evdev? ( sys-kernel/linux-headers ) udev? ( sys-kernel/linux-headers ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=dev-libs/glib:2 ~dev-qt/qtcore-5.12.3 media-libs/fontconfig >=media-libs/freetype-2.6.1:2 >=media-libs/harfbuzz-1.6.0:= sys-libs/zlib:= virtual/opengl dbus? ( ~dev-qt/qtdbus-5.12.3 ) egl? ( media-libs/mesa[egl] ) eglfs? ( media-libs/mesa[gbm] x11-libs/libdrm ) evdev? ( sys-libs/mtdev ) gles2? ( media-libs/mesa[gles2] ) jpeg? ( virtual/jpeg:0 ) libinput? ( dev-libs/libinput:= >=x11-libs/libxkbcommon-0.5.0 ) png? ( media-libs/libpng:0= ) tslib? ( x11-libs/tslib ) tuio? ( ~dev-qt/qtnetwork-5.12.3 ) udev? ( virtual/libudev:= ) vnc? ( ~dev-qt/qtnetwork-5.12.3 ) xcb? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 >=x11-libs/libxcb-1.12:=[xkb] >=x11-libs/libxkbcommon-0.5.0[X] x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil x11-libs/xcb-util-wm ) evdev? ( sys-kernel/linux-headers ) udev? ( sys-kernel/linux-headers ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=The GUI module and platform plugins for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -7,10 +7,10 @@ IUSE=accessibility dbus egl eglfs evdev +gif gles2 ibus jpeg +libinput +png tsli KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 PDEPEND=ibus? ( app-i18n/ibus ) -RDEPEND=dev-libs/glib:2 ~dev-qt/qtcore-5.12.2 media-libs/fontconfig >=media-libs/freetype-2.6.1:2 >=media-libs/harfbuzz-1.6.0:= sys-libs/zlib:= virtual/opengl dbus? ( ~dev-qt/qtdbus-5.12.2 ) egl? ( media-libs/mesa[egl] ) eglfs? ( media-libs/mesa[gbm] x11-libs/libdrm ) evdev? ( sys-libs/mtdev ) gles2? ( media-libs/mesa[gles2] ) jpeg? ( virtual/jpeg:0 ) libinput? ( dev-libs/libinput:= >=x11-libs/libxkbcommon-0.5.0 ) png? ( media-libs/libpng:0= ) tslib? ( x11-libs/tslib ) tuio? ( ~dev-qt/qtnetwork-5.12.2 ) udev? ( virtual/libudev:= ) vnc? ( ~dev-qt/qtnetwork-5.12.2 ) xcb? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 >=x11-libs/libxcb-1.12:=[xkb] >=x11-libs/libxkbcommon-0.5.0[X] x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil x11-libs/xcb-util-wm ) dev-qt/qtchooser +RDEPEND=dev-libs/glib:2 ~dev-qt/qtcore-5.12.3 media-libs/fontconfig >=media-libs/freetype-2.6.1:2 >=media-libs/harfbuzz-1.6.0:= sys-libs/zlib:= virtual/opengl dbus? ( ~dev-qt/qtdbus-5.12.3 ) egl? ( media-libs/mesa[egl] ) eglfs? ( media-libs/mesa[gbm] x11-libs/libdrm ) evdev? ( sys-libs/mtdev ) gles2? ( media-libs/mesa[gles2] ) jpeg? ( virtual/jpeg:0 ) libinput? ( dev-libs/libinput:= >=x11-libs/libxkbcommon-0.5.0 ) png? ( media-libs/libpng:0= ) tslib? ( x11-libs/tslib ) tuio? ( ~dev-qt/qtnetwork-5.12.3 ) udev? ( virtual/libudev:= ) vnc? ( ~dev-qt/qtnetwork-5.12.3 ) xcb? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 >=x11-libs/libxcb-1.12:=[xkb] >=x11-libs/libxkbcommon-0.5.0[X] x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil x11-libs/xcb-util-wm ) dev-qt/qtchooser REQUIRED_USE=|| ( eglfs xcb ) accessibility? ( dbus xcb ) eglfs? ( egl ) ibus? ( dbus ) libinput? ( udev ) xcb? ( gles2? ( egl ) ) RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtbase-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtbase-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=146bf542a4b8e21b0de5a9125d042514 diff --git a/metadata/md5-cache/dev-qt/qthelp-5.12.2 b/metadata/md5-cache/dev-qt/qthelp-5.12.3 similarity index 67% rename from metadata/md5-cache/dev-qt/qthelp-5.12.2 rename to metadata/md5-cache/dev-qt/qthelp-5.12.3 index 920383779cf1..ae513dfba787 100644 --- a/metadata/md5-cache/dev-qt/qthelp-5.12.2 +++ b/metadata/md5-cache/dev-qt/qthelp-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qtnetwork-5.12.2 ~dev-qt/qtsql-5.12.2[sqlite] ~dev-qt/qtwidgets-5.12.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qtnetwork-5.12.3 ~dev-qt/qtsql-5.12.3[sqlite] ~dev-qt/qtwidgets-5.12.3 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Qt5 module for integrating online documentation into applications EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qtnetwork-5.12.2 ~dev-qt/qtsql-5.12.2[sqlite] ~dev-qt/qtwidgets-5.12.2 dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qtnetwork-5.12.3 ~dev-qt/qtsql-5.12.3[sqlite] ~dev-qt/qtwidgets-5.12.3 dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qttools-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qttools-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=fc8112e2eb6691f510c5d768780d5060 diff --git a/metadata/md5-cache/dev-qt/qtimageformats-5.12.2 b/metadata/md5-cache/dev-qt/qtimageformats-5.12.3 similarity index 81% rename from metadata/md5-cache/dev-qt/qtimageformats-5.12.2 rename to metadata/md5-cache/dev-qt/qtimageformats-5.12.3 index 2bdf78b97f04..c92357d63a73 100644 --- a/metadata/md5-cache/dev-qt/qtimageformats-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtimageformats-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2 media-libs/libwebp:= media-libs/tiff:0 jpeg2k? ( media-libs/jasper:= ) mng? ( media-libs/libmng:= ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3 media-libs/libwebp:= media-libs/tiff:0 jpeg2k? ( media-libs/jasper:= ) mng? ( media-libs/libmng:= ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Additional format plugins for the Qt image I/O system EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=jpeg2k mng debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc64 ~sparc ~x86 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2 media-libs/libwebp:= media-libs/tiff:0 jpeg2k? ( media-libs/jasper:= ) mng? ( media-libs/libmng:= ) dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3 media-libs/libwebp:= media-libs/tiff:0 jpeg2k? ( media-libs/jasper:= ) mng? ( media-libs/libmng:= ) dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtimageformats-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtimageformats-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=ba25c26891ee658bf1bc13370c56c540 diff --git a/metadata/md5-cache/dev-qt/qtlocation-5.12.2 b/metadata/md5-cache/dev-qt/qtlocation-5.12.3 similarity index 61% rename from metadata/md5-cache/dev-qt/qtlocation-5.12.2 rename to metadata/md5-cache/dev-qt/qtlocation-5.12.3 index a19a105e9dce..2e45d34c5a9e 100644 --- a/metadata/md5-cache/dev-qt/qtlocation-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtlocation-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtdeclarative-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qtnetwork-5.12.2 ~dev-qt/qtpositioning-5.12.2[qml] ~dev-qt/qtsql-5.12.2 sys-libs/zlib ~dev-qt/qtconcurrent-5.12.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtdeclarative-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qtnetwork-5.12.3 ~dev-qt/qtpositioning-5.12.3[qml] ~dev-qt/qtsql-5.12.3 sys-libs/zlib ~dev-qt/qtconcurrent-5.12.3 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Location (places, maps, navigation) library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=debug test KEYWORDS=~amd64 ~arm ~arm64 ~x86 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtdeclarative-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qtnetwork-5.12.2 ~dev-qt/qtpositioning-5.12.2[qml] ~dev-qt/qtsql-5.12.2 sys-libs/zlib dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtdeclarative-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qtnetwork-5.12.3 ~dev-qt/qtpositioning-5.12.3[qml] ~dev-qt/qtsql-5.12.3 sys-libs/zlib dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtlocation-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtlocation-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=82cf244287ec4993562750dade210561 diff --git a/metadata/md5-cache/dev-qt/qtmultimedia-5.12.2 b/metadata/md5-cache/dev-qt/qtmultimedia-5.12.3 similarity index 62% rename from metadata/md5-cache/dev-qt/qtmultimedia-5.12.2 rename to metadata/md5-cache/dev-qt/qtmultimedia-5.12.3 index 25a89a50ba7b..62b44d11bd45 100644 --- a/metadata/md5-cache/dev-qt/qtmultimedia-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtmultimedia-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2[gles2=] ~dev-qt/qtnetwork-5.12.2 alsa? ( media-libs/alsa-lib ) gstreamer? ( dev-libs/glib:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-bad:1.0 media-libs/gst-plugins-base:1.0 ) pulseaudio? ( media-sound/pulseaudio[glib] ) qml? ( ~dev-qt/qtdeclarative-5.12.2 gles2? ( ~dev-qt/qtgui-5.12.2[egl] ) openal? ( media-libs/openal ) ) widgets? ( ~dev-qt/qtopengl-5.12.2 ~dev-qt/qtwidgets-5.12.2[gles2=] ) gstreamer? ( x11-base/xorg-proto ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3[gles2=] ~dev-qt/qtnetwork-5.12.3 alsa? ( media-libs/alsa-lib ) gstreamer? ( dev-libs/glib:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-bad:1.0 media-libs/gst-plugins-base:1.0 ) pulseaudio? ( media-sound/pulseaudio[glib] ) qml? ( ~dev-qt/qtdeclarative-5.12.3 gles2? ( ~dev-qt/qtgui-5.12.3[egl] ) openal? ( media-libs/openal ) ) widgets? ( ~dev-qt/qtopengl-5.12.3 ~dev-qt/qtwidgets-5.12.3[gles2=] ) gstreamer? ( x11-base/xorg-proto ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Multimedia (audio, video, radio, camera) library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=alsa gles2 gstreamer openal pulseaudio qml widgets debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2[gles2=] ~dev-qt/qtnetwork-5.12.2 alsa? ( media-libs/alsa-lib ) gstreamer? ( dev-libs/glib:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-bad:1.0 media-libs/gst-plugins-base:1.0 ) pulseaudio? ( media-sound/pulseaudio[glib] ) qml? ( ~dev-qt/qtdeclarative-5.12.2 gles2? ( ~dev-qt/qtgui-5.12.2[egl] ) openal? ( media-libs/openal ) ) widgets? ( ~dev-qt/qtopengl-5.12.2 ~dev-qt/qtwidgets-5.12.2[gles2=] ) dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3[gles2=] ~dev-qt/qtnetwork-5.12.3 alsa? ( media-libs/alsa-lib ) gstreamer? ( dev-libs/glib:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-bad:1.0 media-libs/gst-plugins-base:1.0 ) pulseaudio? ( media-sound/pulseaudio[glib] ) qml? ( ~dev-qt/qtdeclarative-5.12.3 gles2? ( ~dev-qt/qtgui-5.12.3[egl] ) openal? ( media-libs/openal ) ) widgets? ( ~dev-qt/qtopengl-5.12.3 ~dev-qt/qtwidgets-5.12.3[gles2=] ) dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtmultimedia-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtmultimedia-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=67f987bc6735b410701f447b0d720ad5 diff --git a/metadata/md5-cache/dev-qt/qtnetwork-5.12.2 b/metadata/md5-cache/dev-qt/qtnetwork-5.12.3 similarity index 68% rename from metadata/md5-cache/dev-qt/qtnetwork-5.12.2 rename to metadata/md5-cache/dev-qt/qtnetwork-5.12.3 index 8a3020d81c05..b2323fa6b165 100644 --- a/metadata/md5-cache/dev-qt/qtnetwork-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtnetwork-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=~dev-qt/qtcore-5.12.2 sys-libs/zlib:= connman? ( ~dev-qt/qtdbus-5.12.2 ) libproxy? ( net-libs/libproxy ) networkmanager? ( ~dev-qt/qtdbus-5.12.2 ) sctp? ( kernel_linux? ( net-misc/lksctp-tools ) ) ssl? ( dev-libs/openssl:0=[bindist=] ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 sys-libs/zlib:= connman? ( ~dev-qt/qtdbus-5.12.3 ) libproxy? ( net-libs/libproxy ) networkmanager? ( ~dev-qt/qtdbus-5.12.3 ) sctp? ( kernel_linux? ( net-misc/lksctp-tools ) ) ssl? ( dev-libs/openssl:0=[bindist=] ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Network abstraction library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=bindist connman libproxy networkmanager sctp +ssl debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 sys-libs/zlib:= connman? ( ~dev-qt/qtdbus-5.12.2 ) libproxy? ( net-libs/libproxy ) networkmanager? ( ~dev-qt/qtdbus-5.12.2 ) sctp? ( kernel_linux? ( net-misc/lksctp-tools ) ) ssl? ( dev-libs/openssl:0=[bindist=] ) connman? ( net-misc/connman ) networkmanager? ( net-misc/networkmanager ) dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 sys-libs/zlib:= connman? ( ~dev-qt/qtdbus-5.12.3 ) libproxy? ( net-libs/libproxy ) networkmanager? ( ~dev-qt/qtdbus-5.12.3 ) sctp? ( kernel_linux? ( net-misc/lksctp-tools ) ) ssl? ( dev-libs/openssl:0=[bindist=] ) connman? ( net-misc/connman ) networkmanager? ( net-misc/networkmanager ) dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtbase-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtbase-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=eafdaca374a141d67ba10039eb699728 diff --git a/metadata/md5-cache/dev-qt/qtnetworkauth-5.12.2 b/metadata/md5-cache/dev-qt/qtnetworkauth-5.12.3 similarity index 74% rename from metadata/md5-cache/dev-qt/qtnetworkauth-5.12.2 rename to metadata/md5-cache/dev-qt/qtnetworkauth-5.12.3 index 2bdd1d08c51c..da110984dd24 100644 --- a/metadata/md5-cache/dev-qt/qtnetworkauth-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtnetworkauth-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtnetwork-5.12.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtnetwork-5.12.3 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Network authorization library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=debug test KEYWORDS=~amd64 ~arm64 ~x86 LICENSE=GPL-3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtnetwork-5.12.2 dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtnetwork-5.12.3 dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtnetworkauth-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtnetworkauth-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=3a111ea98172c225f326dc7ef460728d diff --git a/metadata/md5-cache/dev-qt/qtopengl-5.12.2 b/metadata/md5-cache/dev-qt/qtopengl-5.12.3 similarity index 71% rename from metadata/md5-cache/dev-qt/qtopengl-5.12.2 rename to metadata/md5-cache/dev-qt/qtopengl-5.12.3 index eb12c0196ab1..6b7e6221884c 100644 --- a/metadata/md5-cache/dev-qt/qtopengl-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtopengl-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2[gles2=] ~dev-qt/qtwidgets-5.12.2[gles2=] virtual/opengl test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3[gles2=] ~dev-qt/qtwidgets-5.12.3[gles2=] virtual/opengl test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=OpenGL support library for the Qt5 framework (deprecated) EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=gles2 test debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2[gles2=] ~dev-qt/qtwidgets-5.12.2[gles2=] virtual/opengl dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3[gles2=] ~dev-qt/qtwidgets-5.12.3[gles2=] virtual/opengl dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtbase-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtbase-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=1c57150ca1d8cdb9e79dd8d6c61c2f12 diff --git a/metadata/md5-cache/dev-qt/qtpaths-5.12.2 b/metadata/md5-cache/dev-qt/qtpaths-5.12.3 similarity index 78% rename from metadata/md5-cache/dev-qt/qtpaths-5.12.2 rename to metadata/md5-cache/dev-qt/qtpaths-5.12.3 index a1d70e619d48..e60873c9da61 100644 --- a/metadata/md5-cache/dev-qt/qtpaths-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtpaths-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Command line client to QStandardPaths EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qttools-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qttools-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=cf6765048b91005d32188a6fe2e90a04 diff --git a/metadata/md5-cache/dev-qt/qtplugininfo-5.12.2 b/metadata/md5-cache/dev-qt/qtplugininfo-5.12.3 similarity index 77% rename from metadata/md5-cache/dev-qt/qtplugininfo-5.12.2 rename to metadata/md5-cache/dev-qt/qtplugininfo-5.12.3 index 5930c9ef3606..c9bb4c3c1d21 100644 --- a/metadata/md5-cache/dev-qt/qtplugininfo-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtplugininfo-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Qt5 plugin metadata dumper EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=debug test KEYWORDS=~amd64 ~x86 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qttools-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qttools-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=5b510814918b7a5b43c7ef436aca015c diff --git a/metadata/md5-cache/dev-qt/qtpositioning-5.12.2 b/metadata/md5-cache/dev-qt/qtpositioning-5.12.3 similarity index 71% rename from metadata/md5-cache/dev-qt/qtpositioning-5.12.2 rename to metadata/md5-cache/dev-qt/qtpositioning-5.12.3 index a72b88724759..3966f2d90c67 100644 --- a/metadata/md5-cache/dev-qt/qtpositioning-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtpositioning-5.12.3 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=~dev-qt/qtcore-5.12.2 geoclue? ( ~dev-qt/qtdbus-5.12.2 ) qml? ( ~dev-qt/qtdeclarative-5.12.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 geoclue? ( ~dev-qt/qtdbus-5.12.3 ) qml? ( ~dev-qt/qtdeclarative-5.12.3 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Physical position determination library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -7,9 +7,9 @@ IUSE=geoclue +qml debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 PDEPEND=geoclue? ( app-misc/geoclue:2.0 ) -RDEPEND=~dev-qt/qtcore-5.12.2 geoclue? ( ~dev-qt/qtdbus-5.12.2 ) qml? ( ~dev-qt/qtdeclarative-5.12.2 ) dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 geoclue? ( ~dev-qt/qtdbus-5.12.3 ) qml? ( ~dev-qt/qtdeclarative-5.12.3 ) dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtlocation-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtlocation-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=31b79ad3d0773b2f402af22eb467e7d9 diff --git a/metadata/md5-cache/dev-qt/qtprintsupport-5.12.2 b/metadata/md5-cache/dev-qt/qtprintsupport-5.12.3 similarity index 68% rename from metadata/md5-cache/dev-qt/qtprintsupport-5.12.2 rename to metadata/md5-cache/dev-qt/qtprintsupport-5.12.3 index 1dc3b678ff71..9ab3368d1099 100644 --- a/metadata/md5-cache/dev-qt/qtprintsupport-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtprintsupport-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2[gles2=] ~dev-qt/qtwidgets-5.12.2[gles2=] cups? ( >=net-print/cups-1.4 ) test? ( ~dev-qt/qtnetwork-5.12.2 ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3[gles2=] ~dev-qt/qtwidgets-5.12.3[gles2=] cups? ( >=net-print/cups-1.4 ) test? ( ~dev-qt/qtnetwork-5.12.3 ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Printing support library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=cups gles2 test debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2[gles2=] ~dev-qt/qtwidgets-5.12.2[gles2=] cups? ( >=net-print/cups-1.4 ) dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3[gles2=] ~dev-qt/qtwidgets-5.12.3[gles2=] cups? ( >=net-print/cups-1.4 ) dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtbase-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtbase-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=57f5ad085f264c0d972ecf2abc755924 diff --git a/metadata/md5-cache/dev-qt/qtquickcontrols-5.12.2 b/metadata/md5-cache/dev-qt/qtquickcontrols-5.12.3 similarity index 69% rename from metadata/md5-cache/dev-qt/qtquickcontrols-5.12.2 rename to metadata/md5-cache/dev-qt/qtquickcontrols-5.12.3 index dae568400864..b575ec625d28 100644 --- a/metadata/md5-cache/dev-qt/qtquickcontrols-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtquickcontrols-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtdeclarative-5.12.2 ~dev-qt/qtgui-5.12.2 widgets? ( ~dev-qt/qtwidgets-5.12.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtdeclarative-5.12.3 ~dev-qt/qtgui-5.12.3 widgets? ( ~dev-qt/qtwidgets-5.12.3 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Set of Qt Quick controls to create complete user interfaces (deprecated) EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=+widgets debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtdeclarative-5.12.2 ~dev-qt/qtgui-5.12.2 widgets? ( ~dev-qt/qtwidgets-5.12.2 ) dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtdeclarative-5.12.3 ~dev-qt/qtgui-5.12.3 widgets? ( ~dev-qt/qtwidgets-5.12.3 ) dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtquickcontrols-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtquickcontrols-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=c3fae7a093cd2ebdf16c32bba7864363 diff --git a/metadata/md5-cache/dev-qt/qtquickcontrols2-5.12.2 b/metadata/md5-cache/dev-qt/qtquickcontrols2-5.12.3 similarity index 66% rename from metadata/md5-cache/dev-qt/qtquickcontrols2-5.12.2 rename to metadata/md5-cache/dev-qt/qtquickcontrols2-5.12.3 index 8f5b5ed076ec..510f5d91d6ba 100644 --- a/metadata/md5-cache/dev-qt/qtquickcontrols2-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtquickcontrols2-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtdeclarative-5.12.2 ~dev-qt/qtgui-5.12.2 widgets? ( ~dev-qt/qtwidgets-5.12.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtdeclarative-5.12.3 ~dev-qt/qtgui-5.12.3 widgets? ( ~dev-qt/qtwidgets-5.12.3 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Set of next generation Qt Quick controls for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=widgets debug test KEYWORDS=~amd64 ~arm ~arm64 ~x86 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtdeclarative-5.12.2 ~dev-qt/qtgui-5.12.2 widgets? ( ~dev-qt/qtwidgets-5.12.2 ) ~dev-qt/qtgraphicaleffects-5.12.2 dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtdeclarative-5.12.3 ~dev-qt/qtgui-5.12.3 widgets? ( ~dev-qt/qtwidgets-5.12.3 ) ~dev-qt/qtgraphicaleffects-5.12.3 dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtquickcontrols2-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtquickcontrols2-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=fedfff200a97b841a770291ee8013bff diff --git a/metadata/md5-cache/dev-qt/qtscript-5.12.2 b/metadata/md5-cache/dev-qt/qtscript-5.12.3 similarity index 71% rename from metadata/md5-cache/dev-qt/qtscript-5.12.2 rename to metadata/md5-cache/dev-qt/qtscript-5.12.3 index 0e2e481b3f07..3f85c5639296 100644 --- a/metadata/md5-cache/dev-qt/qtscript-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtscript-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 scripttools? ( ~dev-qt/qtgui-5.12.2 ~dev-qt/qtwidgets-5.12.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 scripttools? ( ~dev-qt/qtgui-5.12.3 ~dev-qt/qtwidgets-5.12.3 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Application scripting library for the Qt5 framework (deprecated) EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=+jit scripttools debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 scripttools? ( ~dev-qt/qtgui-5.12.2 ~dev-qt/qtwidgets-5.12.2 ) dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 scripttools? ( ~dev-qt/qtgui-5.12.3 ~dev-qt/qtwidgets-5.12.3 ) dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtscript-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtscript-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=5b8820182f2c47fc43f100891e9b0f8d diff --git a/metadata/md5-cache/dev-qt/qtscxml-5.12.2 b/metadata/md5-cache/dev-qt/qtscxml-5.12.3 similarity index 75% rename from metadata/md5-cache/dev-qt/qtscxml-5.12.2 rename to metadata/md5-cache/dev-qt/qtscxml-5.12.3 index e665a5de5ffc..8123327b773a 100644 --- a/metadata/md5-cache/dev-qt/qtscxml-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtscxml-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtdeclarative-5.12.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtdeclarative-5.12.3 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=State Chart XML (SCXML) support library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=debug test KEYWORDS=~amd64 ~x86 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtdeclarative-5.12.2 dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtdeclarative-5.12.3 dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtscxml-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtscxml-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=fbdc051df65217caf10948ea179db364 diff --git a/metadata/md5-cache/dev-qt/qtsensors-5.12.2 b/metadata/md5-cache/dev-qt/qtsensors-5.12.3 similarity index 71% rename from metadata/md5-cache/dev-qt/qtsensors-5.12.2 rename to metadata/md5-cache/dev-qt/qtsensors-5.12.3 index 91dc3b596d98..8783b758056a 100644 --- a/metadata/md5-cache/dev-qt/qtsensors-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtsensors-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtdbus-5.12.2 qml? ( ~dev-qt/qtdeclarative-5.12.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtdbus-5.12.3 qml? ( ~dev-qt/qtdeclarative-5.12.3 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Hardware sensor access library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=qml debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtdbus-5.12.2 qml? ( ~dev-qt/qtdeclarative-5.12.2 ) dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtdbus-5.12.3 qml? ( ~dev-qt/qtdeclarative-5.12.3 ) dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtsensors-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtsensors-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=c7db0f4612441fc66451ae3d87783ef8 diff --git a/metadata/md5-cache/dev-qt/qtserialbus-5.12.2 b/metadata/md5-cache/dev-qt/qtserialbus-5.12.3 similarity index 71% rename from metadata/md5-cache/dev-qt/qtserialbus-5.12.2 rename to metadata/md5-cache/dev-qt/qtserialbus-5.12.3 index 1ff04cc9c5a0..b8a0db892f31 100644 --- a/metadata/md5-cache/dev-qt/qtserialbus-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtserialbus-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtnetwork-5.12.2 ~dev-qt/qtserialport-5.12.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtnetwork-5.12.3 ~dev-qt/qtserialport-5.12.3 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Qt module to access CAN, ModBus, and other industrial serial buses and protocols EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=debug test KEYWORDS=~amd64 ~x86 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtnetwork-5.12.2 ~dev-qt/qtserialport-5.12.2 dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtnetwork-5.12.3 ~dev-qt/qtserialport-5.12.3 dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtserialbus-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtserialbus-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=9f8e68f8060fbc9c1893595ab4746b19 diff --git a/metadata/md5-cache/dev-qt/qtserialport-5.12.2 b/metadata/md5-cache/dev-qt/qtserialport-5.12.3 similarity index 76% rename from metadata/md5-cache/dev-qt/qtserialport-5.12.2 rename to metadata/md5-cache/dev-qt/qtserialport-5.12.3 index d02f1cf5af3d..5cb927a0acf7 100644 --- a/metadata/md5-cache/dev-qt/qtserialport-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtserialport-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 virtual/libudev:= dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 virtual/libudev:= dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Serial port abstraction library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 virtual/libudev:= dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 virtual/libudev:= dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtserialport-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtserialport-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=c2a7e7edbd683c419b3222c057e600fa diff --git a/metadata/md5-cache/dev-qt/qtspeech-5.12.2 b/metadata/md5-cache/dev-qt/qtspeech-5.12.3 similarity index 79% rename from metadata/md5-cache/dev-qt/qtspeech-5.12.2 rename to metadata/md5-cache/dev-qt/qtspeech-5.12.3 index e0ab576818a7..b1389da8d0dc 100644 --- a/metadata/md5-cache/dev-qt/qtspeech-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtspeech-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=>=app-accessibility/speech-dispatcher-0.8.7 ~dev-qt/qtcore-5.12.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=>=app-accessibility/speech-dispatcher-0.8.7 ~dev-qt/qtcore-5.12.3 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Text-to-speech library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=debug test KEYWORDS=~amd64 ~arm ~arm64 ~x86 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=>=app-accessibility/speech-dispatcher-0.8.7 ~dev-qt/qtcore-5.12.2 dev-qt/qtchooser +RDEPEND=>=app-accessibility/speech-dispatcher-0.8.7 ~dev-qt/qtcore-5.12.3 dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtspeech-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtspeech-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 -_md5_=b77556747651855466328fa30c4242a3 +_md5_=c74d5aaa4bd551325ca011692ca070d8 diff --git a/metadata/md5-cache/dev-qt/qtsql-5.12.2 b/metadata/md5-cache/dev-qt/qtsql-5.12.3 similarity index 82% rename from metadata/md5-cache/dev-qt/qtsql-5.12.2 rename to metadata/md5-cache/dev-qt/qtsql-5.12.3 index ab22443be8cb..9d22b31e2077 100644 --- a/metadata/md5-cache/dev-qt/qtsql-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtsql-5.12.3 @@ -1,15 +1,15 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 freetds? ( dev-db/freetds ) mysql? ( dev-db/mysql-connector-c:= ) oci8? ( dev-db/oracle-instantclient:=[sdk] ) odbc? ( dev-db/unixODBC ) postgres? ( dev-db/postgresql:* ) sqlite? ( dev-db/sqlite:3 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 freetds? ( dev-db/freetds ) mysql? ( dev-db/mysql-connector-c:= ) oci8? ( dev-db/oracle-instantclient:=[sdk] ) odbc? ( dev-db/unixODBC ) postgres? ( dev-db/postgresql:* ) sqlite? ( dev-db/sqlite:3 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=SQL abstraction library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=freetds mysql oci8 odbc postgres +sqlite debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 freetds? ( dev-db/freetds ) mysql? ( dev-db/mysql-connector-c:= ) oci8? ( dev-db/oracle-instantclient:=[sdk] ) odbc? ( dev-db/unixODBC ) postgres? ( dev-db/postgresql:* ) sqlite? ( dev-db/sqlite:3 ) dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 freetds? ( dev-db/freetds ) mysql? ( dev-db/mysql-connector-c:= ) oci8? ( dev-db/oracle-instantclient:=[sdk] ) odbc? ( dev-db/unixODBC ) postgres? ( dev-db/postgresql:* ) sqlite? ( dev-db/sqlite:3 ) dev-qt/qtchooser REQUIRED_USE=|| ( freetds mysql oci8 odbc postgres sqlite ) RESTRICT=test -SLOT=5/5.12.2 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtbase-everywhere-src-5.12.2.tar.xz +SLOT=5/5.12.3 +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtbase-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=c627714ccc277258397b215697dab099 diff --git a/metadata/md5-cache/dev-qt/qtsvg-5.12.2 b/metadata/md5-cache/dev-qt/qtsvg-5.12.3 similarity index 69% rename from metadata/md5-cache/dev-qt/qtsvg-5.12.2 rename to metadata/md5-cache/dev-qt/qtsvg-5.12.3 index 3ea75e530054..38833891c25f 100644 --- a/metadata/md5-cache/dev-qt/qtsvg-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtsvg-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qtwidgets-5.12.2 sys-libs/zlib:= test? ( ~dev-qt/qtxml-5.12.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qtwidgets-5.12.3 sys-libs/zlib:= test? ( ~dev-qt/qtxml-5.12.3 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=SVG rendering library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qtwidgets-5.12.2 sys-libs/zlib:= dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qtwidgets-5.12.3 sys-libs/zlib:= dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtsvg-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtsvg-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=a06ef2524296fa4bac851ce73670ae92 diff --git a/metadata/md5-cache/dev-qt/qttest-5.12.2 b/metadata/md5-cache/dev-qt/qttest-5.12.3 similarity index 77% rename from metadata/md5-cache/dev-qt/qttest-5.12.2 rename to metadata/md5-cache/dev-qt/qttest-5.12.3 index d914fcee79cd..45e68373f7c6 100644 --- a/metadata/md5-cache/dev-qt/qttest-5.12.2 +++ b/metadata/md5-cache/dev-qt/qttest-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 test? ( ~dev-qt/qtgui-5.12.2 ~dev-qt/qtxml-5.12.2 ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-lang/perl virtual/pkgconfig +DEPEND=~dev-qt/qtcore-5.12.3 test? ( ~dev-qt/qtgui-5.12.3 ~dev-qt/qtxml-5.12.3 ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) dev-lang/perl virtual/pkgconfig DESCRIPTION=Unit testing library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=test debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtbase-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtbase-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=6d9f5f21a598f3cf87e9407e965764c7 diff --git a/metadata/md5-cache/dev-qt/qttranslations-5.12.2 b/metadata/md5-cache/dev-qt/qttranslations-5.12.3 similarity index 79% rename from metadata/md5-cache/dev-qt/qttranslations-5.12.2 rename to metadata/md5-cache/dev-qt/qttranslations-5.12.3 index edf980eb829f..091e8cb5e04b 100644 --- a/metadata/md5-cache/dev-qt/qttranslations-5.12.2 +++ b/metadata/md5-cache/dev-qt/qttranslations-5.12.3 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/linguist-tools-5.12.2 ~dev-qt/qtcore-5.12.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/linguist-tools-5.12.3 ~dev-qt/qtcore-5.12.3 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Translation files for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ @@ -9,6 +9,6 @@ LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 RDEPEND=dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qttranslations-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qttranslations-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=111169ffcf5dca1be539356958273ddd diff --git a/metadata/md5-cache/dev-qt/qtvirtualkeyboard-5.12.2 b/metadata/md5-cache/dev-qt/qtvirtualkeyboard-5.12.3 similarity index 72% rename from metadata/md5-cache/dev-qt/qtvirtualkeyboard-5.12.2 rename to metadata/md5-cache/dev-qt/qtvirtualkeyboard-5.12.3 index 3797a6065205..9c1bef1b3d45 100644 --- a/metadata/md5-cache/dev-qt/qtvirtualkeyboard-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtvirtualkeyboard-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtdeclarative-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qtsvg-5.12.2 spell? ( app-text/hunspell:= ) xcb? ( x11-libs/libxcb:= ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtdeclarative-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qtsvg-5.12.3 spell? ( app-text/hunspell:= ) xcb? ( x11-libs/libxcb:= ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Customizable input framework and virtual keyboard for Qt EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=handwriting +spell +xcb debug test KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-fbsd LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtdeclarative-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qtsvg-5.12.2 spell? ( app-text/hunspell:= ) xcb? ( x11-libs/libxcb:= ) dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtdeclarative-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qtsvg-5.12.3 spell? ( app-text/hunspell:= ) xcb? ( x11-libs/libxcb:= ) dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtvirtualkeyboard-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtvirtualkeyboard-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=d24a6c7f15df24ba368357560e2855df diff --git a/metadata/md5-cache/dev-qt/qtwayland-5.12.2 b/metadata/md5-cache/dev-qt/qtwayland-5.12.3 similarity index 74% rename from metadata/md5-cache/dev-qt/qtwayland-5.12.2 rename to metadata/md5-cache/dev-qt/qtwayland-5.12.3 index 993b48ddb489..527add09e603 100644 --- a/metadata/md5-cache/dev-qt/qtwayland-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtwayland-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=>=dev-libs/wayland-1.6.0 ~dev-qt/qtcore-5.12.2 ~dev-qt/qtdeclarative-5.12.2 ~dev-qt/qtgui-5.12.2[egl,libinput=] media-libs/mesa[egl] >=x11-libs/libxkbcommon-0.2.0 xcomposite? ( x11-libs/libX11 x11-libs/libXcomposite ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=>=dev-libs/wayland-1.6.0 ~dev-qt/qtcore-5.12.3 ~dev-qt/qtdeclarative-5.12.3 ~dev-qt/qtgui-5.12.3[egl,libinput=] media-libs/mesa[egl] >=x11-libs/libxkbcommon-0.2.0 xcomposite? ( x11-libs/libX11 x11-libs/libXcomposite ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Wayland platform plugin for Qt EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=+libinput xcomposite debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=>=dev-libs/wayland-1.6.0 ~dev-qt/qtcore-5.12.2 ~dev-qt/qtdeclarative-5.12.2 ~dev-qt/qtgui-5.12.2[egl,libinput=] media-libs/mesa[egl] >=x11-libs/libxkbcommon-0.2.0 xcomposite? ( x11-libs/libX11 x11-libs/libXcomposite ) dev-qt/qtchooser +RDEPEND=>=dev-libs/wayland-1.6.0 ~dev-qt/qtcore-5.12.3 ~dev-qt/qtdeclarative-5.12.3 ~dev-qt/qtgui-5.12.3[egl,libinput=] media-libs/mesa[egl] >=x11-libs/libxkbcommon-0.2.0 xcomposite? ( x11-libs/libX11 x11-libs/libXcomposite ) dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtwayland-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtwayland-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=f4645ea807e4df85ef43cbb898191fe5 diff --git a/metadata/md5-cache/dev-qt/qtwebchannel-5.12.2 b/metadata/md5-cache/dev-qt/qtwebchannel-5.12.3 similarity index 74% rename from metadata/md5-cache/dev-qt/qtwebchannel-5.12.2 rename to metadata/md5-cache/dev-qt/qtwebchannel-5.12.3 index 54774df9bf60..627a4f4a84d3 100644 --- a/metadata/md5-cache/dev-qt/qtwebchannel-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtwebchannel-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 qml? ( ~dev-qt/qtdeclarative-5.12.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 qml? ( ~dev-qt/qtdeclarative-5.12.3 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Qt5 module for integrating C++ and QML applications with HTML/JavaScript clients EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=qml debug test KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 qml? ( ~dev-qt/qtdeclarative-5.12.2 ) dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 qml? ( ~dev-qt/qtdeclarative-5.12.3 ) dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtwebchannel-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtwebchannel-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=1459a065827bed06db1d43d7c1c735ac diff --git a/metadata/md5-cache/dev-qt/qtwebengine-5.12.2 b/metadata/md5-cache/dev-qt/qtwebengine-5.12.3 similarity index 74% rename from metadata/md5-cache/dev-qt/qtwebengine-5.12.2 rename to metadata/md5-cache/dev-qt/qtwebengine-5.12.3 index 5cf17ff0acb5..3a56b747ae5e 100644 --- a/metadata/md5-cache/dev-qt/qtwebengine-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtwebengine-5.12.3 @@ -1,15 +1,15 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=app-arch/snappy:= dev-libs/glib:2 dev-libs/nspr dev-libs/nss ~dev-qt/qtcore-5.12.2 ~dev-qt/qtdeclarative-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qtnetwork-5.12.2 ~dev-qt/qtprintsupport-5.12.2 ~dev-qt/qtwebchannel-5.12.2[qml] dev-libs/expat dev-libs/libevent:= dev-libs/libxml2[icu] dev-libs/libxslt dev-libs/re2:= media-libs/fontconfig media-libs/freetype media-libs/harfbuzz:= media-libs/lcms:2 media-libs/libjpeg-turbo:= media-libs/libpng:0= >=media-libs/libvpx-1.5:=[svc] media-libs/libwebp:= media-libs/mesa[egl] media-libs/opus sys-apps/dbus sys-apps/pciutils sys-libs/libcap sys-libs/zlib[minizip] virtual/libudev x11-libs/libdrm x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libXtst alsa? ( media-libs/alsa-lib ) designer? ( ~dev-qt/designer-5.12.2 ) geolocation? ( ~dev-qt/qtpositioning-5.12.2 ) pulseaudio? ( media-sound/pulseaudio:= ) system-ffmpeg? ( media-video/ffmpeg:0= ) system-icu? ( >=dev-libs/icu-60.2:= ) widgets? ( ~dev-qt/qtdeclarative-5.12.2[widgets] ~dev-qt/qtwidgets-5.12.2 ) || ( >=dev-lang/python-2.7.5-r2:2.7 ) >=app-arch/gzip-1.7 dev-util/gperf dev-util/ninja dev-util/re2c sys-devel/bison pax_kernel? ( sys-apps/elfix ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=app-arch/snappy:= dev-libs/glib:2 dev-libs/nspr dev-libs/nss ~dev-qt/qtcore-5.12.3 ~dev-qt/qtdeclarative-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qtnetwork-5.12.3 ~dev-qt/qtprintsupport-5.12.3 ~dev-qt/qtwebchannel-5.12.3[qml] dev-libs/expat dev-libs/libevent:= dev-libs/libxml2[icu] dev-libs/libxslt dev-libs/re2:= media-libs/fontconfig media-libs/freetype media-libs/harfbuzz:= media-libs/lcms:2 media-libs/libjpeg-turbo:= media-libs/libpng:0= >=media-libs/libvpx-1.5:=[svc] media-libs/libwebp:= media-libs/mesa[egl] media-libs/opus sys-apps/dbus sys-apps/pciutils sys-libs/libcap sys-libs/zlib[minizip] virtual/libudev x11-libs/libdrm x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libXtst alsa? ( media-libs/alsa-lib ) designer? ( ~dev-qt/designer-5.12.3 ) geolocation? ( ~dev-qt/qtpositioning-5.12.3 ) pulseaudio? ( media-sound/pulseaudio:= ) system-ffmpeg? ( media-video/ffmpeg:0= ) system-icu? ( >=dev-libs/icu-60.2:= ) widgets? ( ~dev-qt/qtdeclarative-5.12.3[widgets] ~dev-qt/qtwidgets-5.12.3 ) || ( >=dev-lang/python-2.7.5-r2:2.7 ) >=app-arch/gzip-1.7 dev-util/gperf dev-util/ninja dev-util/re2c sys-devel/bison pax_kernel? ( sys-apps/elfix ) !!=sys-devel/binutils-2.32-r0 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Library for rendering dynamic web content in Qt5 C++ and QML applications EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=alsa bindist designer geolocation jumbo-build pax_kernel pulseaudio +system-ffmpeg +system-icu widgets debug test KEYWORDS=~amd64 ~arm ~arm64 ~x86 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=app-arch/snappy:= dev-libs/glib:2 dev-libs/nspr dev-libs/nss ~dev-qt/qtcore-5.12.2 ~dev-qt/qtdeclarative-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qtnetwork-5.12.2 ~dev-qt/qtprintsupport-5.12.2 ~dev-qt/qtwebchannel-5.12.2[qml] dev-libs/expat dev-libs/libevent:= dev-libs/libxml2[icu] dev-libs/libxslt dev-libs/re2:= media-libs/fontconfig media-libs/freetype media-libs/harfbuzz:= media-libs/lcms:2 media-libs/libjpeg-turbo:= media-libs/libpng:0= >=media-libs/libvpx-1.5:=[svc] media-libs/libwebp:= media-libs/mesa[egl] media-libs/opus sys-apps/dbus sys-apps/pciutils sys-libs/libcap sys-libs/zlib[minizip] virtual/libudev x11-libs/libdrm x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libXtst alsa? ( media-libs/alsa-lib ) designer? ( ~dev-qt/designer-5.12.2 ) geolocation? ( ~dev-qt/qtpositioning-5.12.2 ) pulseaudio? ( media-sound/pulseaudio:= ) system-ffmpeg? ( media-video/ffmpeg:0= ) system-icu? ( >=dev-libs/icu-60.2:= ) widgets? ( ~dev-qt/qtdeclarative-5.12.2[widgets] ~dev-qt/qtwidgets-5.12.2 ) dev-qt/qtchooser +RDEPEND=app-arch/snappy:= dev-libs/glib:2 dev-libs/nspr dev-libs/nss ~dev-qt/qtcore-5.12.3 ~dev-qt/qtdeclarative-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qtnetwork-5.12.3 ~dev-qt/qtprintsupport-5.12.3 ~dev-qt/qtwebchannel-5.12.3[qml] dev-libs/expat dev-libs/libevent:= dev-libs/libxml2[icu] dev-libs/libxslt dev-libs/re2:= media-libs/fontconfig media-libs/freetype media-libs/harfbuzz:= media-libs/lcms:2 media-libs/libjpeg-turbo:= media-libs/libpng:0= >=media-libs/libvpx-1.5:=[svc] media-libs/libwebp:= media-libs/mesa[egl] media-libs/opus sys-apps/dbus sys-apps/pciutils sys-libs/libcap sys-libs/zlib[minizip] virtual/libudev x11-libs/libdrm x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libXtst alsa? ( media-libs/alsa-lib ) designer? ( ~dev-qt/designer-5.12.3 ) geolocation? ( ~dev-qt/qtpositioning-5.12.3 ) pulseaudio? ( media-sound/pulseaudio:= ) system-ffmpeg? ( media-video/ffmpeg:0= ) system-icu? ( >=dev-libs/icu-60.2:= ) widgets? ( ~dev-qt/qtdeclarative-5.12.3[widgets] ~dev-qt/qtwidgets-5.12.3 ) dev-qt/qtchooser REQUIRED_USE=designer? ( widgets ) RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtwebengine-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtwebengine-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils e85f015e815dd463b0c206d781ef45a5 preserve-libs ef207dc62baddfddfd39a164d9797648 python-any-r1 4900ae970f827a22d33d41bd8b8f9ace python-utils-r1 08e17157a6807add7db1f8d01e7e391f qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 -_md5_=c1d671ce5a10725705ffdc08980263d4 +_md5_=6bb849fb4c444571ba98b43f7f6e5438 diff --git a/metadata/md5-cache/dev-qt/qtwebsockets-5.12.2 b/metadata/md5-cache/dev-qt/qtwebsockets-5.12.3 similarity index 70% rename from metadata/md5-cache/dev-qt/qtwebsockets-5.12.2 rename to metadata/md5-cache/dev-qt/qtwebsockets-5.12.3 index f6ecff1ff0a8..3bbaa495f337 100644 --- a/metadata/md5-cache/dev-qt/qtwebsockets-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtwebsockets-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtnetwork-5.12.2[ssl=] qml? ( ~dev-qt/qtdeclarative-5.12.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtnetwork-5.12.3[ssl=] qml? ( ~dev-qt/qtdeclarative-5.12.3 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Implementation of the WebSocket protocol for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=qml +ssl debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtnetwork-5.12.2[ssl=] qml? ( ~dev-qt/qtdeclarative-5.12.2 ) dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtnetwork-5.12.3[ssl=] qml? ( ~dev-qt/qtdeclarative-5.12.3 ) dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtwebsockets-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtwebsockets-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=051c69b713eb37976ee6bf0468a930df diff --git a/metadata/md5-cache/dev-qt/qtwebview-5.12.2 b/metadata/md5-cache/dev-qt/qtwebview-5.12.3 similarity index 69% rename from metadata/md5-cache/dev-qt/qtwebview-5.12.2 rename to metadata/md5-cache/dev-qt/qtwebview-5.12.3 index f6bd42b12d5b..765678d21a5e 100644 --- a/metadata/md5-cache/dev-qt/qtwebview-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtwebview-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtdeclarative-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qtwebengine-5.12.2 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtdeclarative-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qtwebengine-5.12.3 dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Module for displaying web content in a QML application using the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=debug test KEYWORDS=~amd64 LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtdeclarative-5.12.2 ~dev-qt/qtgui-5.12.2 ~dev-qt/qtwebengine-5.12.2 dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtdeclarative-5.12.3 ~dev-qt/qtgui-5.12.3 ~dev-qt/qtwebengine-5.12.3 dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtwebview-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtwebview-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=833884a8416d2d2652db58811ab2ecf9 diff --git a/metadata/md5-cache/dev-qt/qtwidgets-5.12.2 b/metadata/md5-cache/dev-qt/qtwidgets-5.12.3 similarity index 73% rename from metadata/md5-cache/dev-qt/qtwidgets-5.12.2 rename to metadata/md5-cache/dev-qt/qtwidgets-5.12.3 index 6569b704faec..67c466f1c02e 100644 --- a/metadata/md5-cache/dev-qt/qtwidgets-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtwidgets-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2[gles2=,png=,xcb?] gtk? ( ~dev-qt/qtgui-5.12.2[dbus] x11-libs/gtk+:3 x11-libs/libX11 x11-libs/pango ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3[gles2=,png=,xcb?] gtk? ( ~dev-qt/qtgui-5.12.3[dbus] x11-libs/gtk+:3 x11-libs/libX11 x11-libs/pango ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Set of components for creating classic desktop-style UIs for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=gles2 gtk +png +xcb debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2[gles2=,png=,xcb?] gtk? ( ~dev-qt/qtgui-5.12.2[dbus] x11-libs/gtk+:3 x11-libs/libX11 x11-libs/pango ) dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3[gles2=,png=,xcb?] gtk? ( ~dev-qt/qtgui-5.12.3[dbus] x11-libs/gtk+:3 x11-libs/libX11 x11-libs/pango ) dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtbase-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtbase-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=b3f9b8531940ff0776168abbda939a0e diff --git a/metadata/md5-cache/dev-qt/qtx11extras-5.12.2 b/metadata/md5-cache/dev-qt/qtx11extras-5.12.3 similarity index 74% rename from metadata/md5-cache/dev-qt/qtx11extras-5.12.2 rename to metadata/md5-cache/dev-qt/qtx11extras-5.12.3 index ddd6d8a03d0e..655427b2c7ab 100644 --- a/metadata/md5-cache/dev-qt/qtx11extras-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtx11extras-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2[xcb] test? ( ~dev-qt/qtwidgets-5.12.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3[xcb] test? ( ~dev-qt/qtwidgets-5.12.3 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Linux/X11-specific support library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtgui-5.12.2[xcb] dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtgui-5.12.3[xcb] dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtx11extras-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtx11extras-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=d51783cc795dbe4f1f416558aa6e4029 diff --git a/metadata/md5-cache/dev-qt/qtxml-5.12.2 b/metadata/md5-cache/dev-qt/qtxml-5.12.3 similarity index 76% rename from metadata/md5-cache/dev-qt/qtxml-5.12.2 rename to metadata/md5-cache/dev-qt/qtxml-5.12.3 index 083f83ad892b..bbf0d6ede20a 100644 --- a/metadata/md5-cache/dev-qt/qtxml-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtxml-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 test? ( ~dev-qt/qtnetwork-5.12.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 test? ( ~dev-qt/qtnetwork-5.12.3 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=Implementation of SAX and DOM for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtbase-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtbase-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=bcf4120de1da275c8b9bb4552ee9edeb diff --git a/metadata/md5-cache/dev-qt/qtxmlpatterns-5.12.2 b/metadata/md5-cache/dev-qt/qtxmlpatterns-5.12.3 similarity index 71% rename from metadata/md5-cache/dev-qt/qtxmlpatterns-5.12.2 rename to metadata/md5-cache/dev-qt/qtxmlpatterns-5.12.3 index cef69a541309..9e67f58614d3 100644 --- a/metadata/md5-cache/dev-qt/qtxmlpatterns-5.12.2 +++ b/metadata/md5-cache/dev-qt/qtxmlpatterns-5.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtnetwork-5.12.2 qml? ( ~dev-qt/qtdeclarative-5.12.2 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.2 ) +DEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtnetwork-5.12.3 qml? ( ~dev-qt/qtdeclarative-5.12.3 ) dev-lang/perl virtual/pkgconfig test? ( ~dev-qt/qttest-5.12.3 ) DESCRIPTION=XPath, XQuery, XSLT, and XML Schema validation library for the Qt5 framework EAPI=6 HOMEPAGE=https://www.qt.io/ IUSE=qml debug test KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd LICENSE=|| ( GPL-2 GPL-3 LGPL-3 ) FDL-1.3 -RDEPEND=~dev-qt/qtcore-5.12.2 ~dev-qt/qtnetwork-5.12.2 qml? ( ~dev-qt/qtdeclarative-5.12.2 ) dev-qt/qtchooser +RDEPEND=~dev-qt/qtcore-5.12.3 ~dev-qt/qtnetwork-5.12.3 qml? ( ~dev-qt/qtdeclarative-5.12.3 ) dev-qt/qtchooser RESTRICT=test SLOT=5/5.12 -SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.2/submodules/qtxmlpatterns-everywhere-src-5.12.2.tar.xz +SRC_URI=https://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/qtxmlpatterns-everywhere-src-5.12.3.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 qt5-build f6c228cbf3a3df9be618ab7e839a29fe toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 _md5_=5a6b69f3caf4da276aed363552e04f1f diff --git a/metadata/md5-cache/dev-ruby/Manifest.gz b/metadata/md5-cache/dev-ruby/Manifest.gz index 853ccd4c1ec7..953014c0a20b 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/archive-tar-minitar-0.8 b/metadata/md5-cache/dev-ruby/archive-tar-minitar-0.8 index 23d21e698ddf..e512cd378841 100644 --- a/metadata/md5-cache/dev-ruby/archive-tar-minitar-0.8 +++ b/metadata/md5-cache/dev-ruby/archive-tar-minitar-0.8 @@ -4,11 +4,11 @@ DESCRIPTION=Provides POSIX tarchive management from Ruby programs EAPI=6 HOMEPAGE=https://github.com/halostatue/minitar IUSE=elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 test -KEYWORDS=~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=|| ( BSD-2 Ruby ) RDEPEND=ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) 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_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) 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_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) SLOT=0 SRC_URI=https://github.com/halostatue/minitar/archive/v0.8.tar.gz -> archive-tar-minitar-0.8.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=649983e6af638652be2d56276a95a9ea +_md5_=da572f06bee43e54937541bbe20ae54f diff --git a/metadata/md5-cache/dev-ruby/asciidoctor-diagram-1.5.12 b/metadata/md5-cache/dev-ruby/asciidoctor-diagram-1.5.12 deleted file mode 100644 index b0dfd8b62b71..000000000000 --- a/metadata/md5-cache/dev-ruby/asciidoctor-diagram-1.5.12 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby23? ( =dev-ruby/asciidoctor-1.5*[ruby_targets_ruby23] ) ruby_targets_ruby24? ( =dev-ruby/asciidoctor-1.5*[ruby_targets_ruby24] ) ruby_targets_ruby25? ( =dev-ruby/asciidoctor-1.5*[ruby_targets_ruby25] ) ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby23? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby25] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby25] ) ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) test? ( ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ) -DESCRIPTION=A set of Asciidoctor extensions that enable you to add diagrams -EAPI=6 -HOMEPAGE=https://github.com/asciidoctor/asciidoctor-diagram -IUSE=test elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 doc test test -KEYWORDS=~amd64 -LICENSE=MIT -RDEPEND=ruby_targets_ruby23? ( =dev-ruby/asciidoctor-1.5*[ruby_targets_ruby23] ) ruby_targets_ruby24? ( =dev-ruby/asciidoctor-1.5*[ruby_targets_ruby24] ) ruby_targets_ruby25? ( =dev-ruby/asciidoctor-1.5*[ruby_targets_ruby25] ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) -REQUIRED_USE=|| ( ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ) -SLOT=0 -SRC_URI=https://github.com/asciidoctor/asciidoctor-diagram/archive/v1.5.12.tar.gz -> asciidoctor-diagram-1.5.12.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=981a188e76ac7dc78ce67f15cff10170 diff --git a/metadata/md5-cache/dev-ruby/asciidoctor-diagram-1.5.13 b/metadata/md5-cache/dev-ruby/asciidoctor-diagram-1.5.13 deleted file mode 100644 index ed37f07c2896..000000000000 --- a/metadata/md5-cache/dev-ruby/asciidoctor-diagram-1.5.13 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby23? ( =dev-ruby/asciidoctor-1.5*[ruby_targets_ruby23] ) ruby_targets_ruby24? ( =dev-ruby/asciidoctor-1.5*[ruby_targets_ruby24] ) ruby_targets_ruby25? ( =dev-ruby/asciidoctor-1.5*[ruby_targets_ruby25] ) ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby23? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby25] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby25] ) ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) test? ( ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ) -DESCRIPTION=A set of Asciidoctor extensions that enable you to add diagrams -EAPI=6 -HOMEPAGE=https://github.com/asciidoctor/asciidoctor-diagram -IUSE=test elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 doc test test -KEYWORDS=~amd64 -LICENSE=MIT -RDEPEND=ruby_targets_ruby23? ( =dev-ruby/asciidoctor-1.5*[ruby_targets_ruby23] ) ruby_targets_ruby24? ( =dev-ruby/asciidoctor-1.5*[ruby_targets_ruby24] ) ruby_targets_ruby25? ( =dev-ruby/asciidoctor-1.5*[ruby_targets_ruby25] ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) -REQUIRED_USE=|| ( ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ) -SLOT=0 -SRC_URI=https://github.com/asciidoctor/asciidoctor-diagram/archive/v1.5.13.tar.gz -> asciidoctor-diagram-1.5.13.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=981a188e76ac7dc78ce67f15cff10170 diff --git a/metadata/md5-cache/dev-ruby/asciidoctor-diagram-1.5.15 b/metadata/md5-cache/dev-ruby/asciidoctor-diagram-1.5.15 deleted file mode 100644 index 26e141f8bf72..000000000000 --- a/metadata/md5-cache/dev-ruby/asciidoctor-diagram-1.5.15 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby23? ( =dev-ruby/asciidoctor-1.5*[ruby_targets_ruby23] ) ruby_targets_ruby24? ( =dev-ruby/asciidoctor-1.5*[ruby_targets_ruby24] ) ruby_targets_ruby25? ( =dev-ruby/asciidoctor-1.5*[ruby_targets_ruby25] ) ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby23? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby25] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby25] ) ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) test? ( ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ) -DESCRIPTION=A set of Asciidoctor extensions that enable you to add diagrams -EAPI=6 -HOMEPAGE=https://github.com/asciidoctor/asciidoctor-diagram -IUSE=test elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 doc test test -KEYWORDS=~amd64 -LICENSE=MIT -RDEPEND=ruby_targets_ruby23? ( =dev-ruby/asciidoctor-1.5*[ruby_targets_ruby23] ) ruby_targets_ruby24? ( =dev-ruby/asciidoctor-1.5*[ruby_targets_ruby24] ) ruby_targets_ruby25? ( =dev-ruby/asciidoctor-1.5*[ruby_targets_ruby25] ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) -REQUIRED_USE=|| ( ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ) -SLOT=0 -SRC_URI=https://github.com/asciidoctor/asciidoctor-diagram/archive/v1.5.15.tar.gz -> asciidoctor-diagram-1.5.15.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=320c7b120a2655a1dd49a5253b6bfe1d diff --git a/metadata/md5-cache/dev-ruby/asciidoctor-diagram-1.5.16 b/metadata/md5-cache/dev-ruby/asciidoctor-diagram-1.5.16 index 593b196a8cb6..9dbb5f3ed330 100644 --- a/metadata/md5-cache/dev-ruby/asciidoctor-diagram-1.5.16 +++ b/metadata/md5-cache/dev-ruby/asciidoctor-diagram-1.5.16 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby23? ( =dev-ruby/asciidoctor-1.5*[ruby_targets_ruby23] =dev-ruby/asciidoctor-1.5.0[ruby_targets_ruby23] =dev-ruby/asciidoctor-1.5.0[ruby_targets_ruby24] =dev-ruby/asciidoctor-1.5.0[ruby_targets_ruby25] =dev-ruby/asciidoctor-1.5.0[ruby_targets_ruby23] =dev-ruby/asciidoctor-1.5.0[ruby_targets_ruby24] =dev-ruby/asciidoctor-1.5.0[ruby_targets_ruby25] asciidoctor-diagram-1.5.16.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=0dd009e624c6c99c0c785a2cfee0d43c +_md5_=14a042303a4d4b5ae158532d03301325 diff --git a/metadata/md5-cache/dev-ruby/bacon-1.2.0-r2 b/metadata/md5-cache/dev-ruby/bacon-1.2.0-r2 index 9b57e808b9e4..0f9b9109628a 100644 --- a/metadata/md5-cache/dev-ruby/bacon-1.2.0-r2 +++ b/metadata/md5-cache/dev-ruby/bacon-1.2.0-r2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) 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_ruby23? ( doc? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( doc? ( dev-ruby/rake[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( doc? ( dev-ruby/rake[ruby_targets_ruby25] ) ) ruby_targets_ruby26? ( doc? ( dev-ruby/rake[ruby_targets_ruby26] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rake[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rake[ruby_targets_ruby25] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26] ) ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26] ) test? ( ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26] ) ) +DEPEND=ruby_targets_ruby23? ( test? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rdoc[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rdoc[ruby_targets_ruby25] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rdoc[ruby_targets_ruby26] ) ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) 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_ruby23? ( doc? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( doc? ( dev-ruby/rake[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( doc? ( dev-ruby/rake[ruby_targets_ruby25] ) ) ruby_targets_ruby26? ( doc? ( dev-ruby/rake[ruby_targets_ruby26] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rake[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rake[ruby_targets_ruby25] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26] ) ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26] ) test? ( ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26] ) ) DESCRIPTION=Small RSpec clone weighing less than 350 LoC EAPI=5 HOMEPAGE=http://chneukirchen.org/repos/bacon @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ru SLOT=0 SRC_URI=mirror://rubygems/bacon-1.2.0.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=88100d2eb3eb5984c9cb67e3a9aa54a7 +_md5_=017203a7b9fdf486ed51c3d15b5caa12 diff --git a/metadata/md5-cache/dev-ruby/diva-0.3.2 b/metadata/md5-cache/dev-ruby/diva-0.3.2 new file mode 100644 index 000000000000..147e12507b4d --- /dev/null +++ b/metadata/md5-cache/dev-ruby/diva-0.3.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=test? ( ruby_targets_ruby24? ( fast_gettext-2.0.1.tar.gz +_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 +_md5_=8206483551c20b30722ff018667f1506 diff --git a/metadata/md5-cache/dev-ruby/ffi-1.9.25 b/metadata/md5-cache/dev-ruby/ffi-1.9.25 index d67f79deb572..1bb89e367e41 100644 --- a/metadata/md5-cache/dev-ruby/ffi-1.9.25 +++ b/metadata/md5-cache/dev-ruby/ffi-1.9.25 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby extension for programmatically loading dynamic libraries EAPI=6 HOMEPAGE=https://wiki.github.com/ffi/ffi IUSE=elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~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 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=BSD RDEPEND=virtual/libffi ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) REQUIRED_USE=|| ( ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ) SLOT=0 SRC_URI=https://github.com/ffi/ffi/archive/1.9.25.tar.gz -> ffi-git-1.9.25.tgz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=30dd2dd17ed707a75d2d3f104d50d170 +_md5_=0f53474fe3d7b0820aabf7f57ef82e86 diff --git a/metadata/md5-cache/dev-ruby/highline-1.7.8 b/metadata/md5-cache/dev-ruby/highline-1.7.8 index c94b7cd8d3de..d5187ea4757c 100644 --- a/metadata/md5-cache/dev-ruby/highline-1.7.8 +++ b/metadata/md5-cache/dev-ruby/highline-1.7.8 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby23? ( doc? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( doc? ( dev-ruby/rake[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( doc? ( dev-ruby/rake[ruby_targets_ruby25] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rake[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rake[ruby_targets_ruby25] ) ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) test? ( ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ) +DEPEND=ruby_targets_ruby23? ( test? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rdoc[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rdoc[ruby_targets_ruby25] ) ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby23? ( doc? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( doc? ( dev-ruby/rake[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( doc? ( dev-ruby/rake[ruby_targets_ruby25] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rake[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rake[ruby_targets_ruby25] ) ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) test? ( ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ) DESCRIPTION=Highline is a high-level command-line IO library for ruby EAPI=5 HOMEPAGE=https://github.com/JEG2/highline @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ) SLOT=0 SRC_URI=mirror://rubygems/highline-1.7.8.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=5a0b28b8cd115ef1cb5477c08c299ff6 +_md5_=012c8101b3606c49c459593eafe7daf3 diff --git a/metadata/md5-cache/dev-ruby/highline-2.0.0 b/metadata/md5-cache/dev-ruby/highline-2.0.0 deleted file mode 100644 index 254e65888bbc..000000000000 --- a/metadata/md5-cache/dev-ruby/highline-2.0.0 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) 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_ruby23? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby25] ) ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rake[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rake[ruby_targets_ruby25] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26] ) ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26] ) test? ( ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26] ) ) -DESCRIPTION=Highline is a high-level command-line IO library for ruby -EAPI=6 -HOMEPAGE=https://github.com/JEG2/highline -IUSE=elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris -LICENSE=|| ( GPL-2 Ruby ) -RDEPEND=ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) 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_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) 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_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) -SLOT=2 -SRC_URI=https://github.com/JEG2/highline/archive/v2.0.0.tar.gz -> highline-2.0.0.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=5104a5d6a29cd75549abf144d702a8ce diff --git a/metadata/md5-cache/dev-ruby/httparty-0.16.3 b/metadata/md5-cache/dev-ruby/httparty-0.16.3 deleted file mode 100644 index 08462a6dafe3..000000000000 --- a/metadata/md5-cache/dev-ruby/httparty-0.16.3 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby23? ( dev-ruby/mime-types:3[ruby_targets_ruby23] >=dev-ruby/multi_xml-0.5.2[ruby_targets_ruby23] ) ruby_targets_ruby24? ( dev-ruby/mime-types:3[ruby_targets_ruby24] >=dev-ruby/multi_xml-0.5.2[ruby_targets_ruby24] ) ruby_targets_ruby25? ( dev-ruby/mime-types:3[ruby_targets_ruby25] >=dev-ruby/multi_xml-0.5.2[ruby_targets_ruby25] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/webmock[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/webmock[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/webmock[ruby_targets_ruby25] ) ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby23? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby25] ) ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) test? ( ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ) -DESCRIPTION=Makes http fun! Also, makes consuming restful web services dead easy -EAPI=6 -HOMEPAGE=https://jnunemaker.github.com/httparty -IUSE=test elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 test test -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=ruby_targets_ruby23? ( dev-ruby/mime-types:3[ruby_targets_ruby23] >=dev-ruby/multi_xml-0.5.2[ruby_targets_ruby23] ) ruby_targets_ruby24? ( dev-ruby/mime-types:3[ruby_targets_ruby24] >=dev-ruby/multi_xml-0.5.2[ruby_targets_ruby24] ) ruby_targets_ruby25? ( dev-ruby/mime-types:3[ruby_targets_ruby25] >=dev-ruby/multi_xml-0.5.2[ruby_targets_ruby25] ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) -REQUIRED_USE=|| ( ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ) -SLOT=0 -SRC_URI=mirror://rubygems/httparty-0.16.3.gem -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=c659f45bbd7648ec08e2b7189ff240ec diff --git a/metadata/md5-cache/dev-ruby/httparty-0.16.4 b/metadata/md5-cache/dev-ruby/httparty-0.16.4 index d6f107bf1fad..37f4ed93a2c2 100644 --- a/metadata/md5-cache/dev-ruby/httparty-0.16.4 +++ b/metadata/md5-cache/dev-ruby/httparty-0.16.4 @@ -4,11 +4,11 @@ DESCRIPTION=Makes http fun! Also, makes consuming restful web services dead easy EAPI=6 HOMEPAGE=https://jnunemaker.github.com/httparty IUSE=test elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 test test -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=MIT RDEPEND=ruby_targets_ruby23? ( dev-ruby/mime-types:3[ruby_targets_ruby23] >=dev-ruby/multi_xml-0.5.2[ruby_targets_ruby23] ) ruby_targets_ruby24? ( dev-ruby/mime-types:3[ruby_targets_ruby24] >=dev-ruby/multi_xml-0.5.2[ruby_targets_ruby24] ) ruby_targets_ruby25? ( dev-ruby/mime-types:3[ruby_targets_ruby25] >=dev-ruby/multi_xml-0.5.2[ruby_targets_ruby25] ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) REQUIRED_USE=|| ( ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ) SLOT=0 SRC_URI=mirror://rubygems/httparty-0.16.4.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=d9a572d10b490825bcecc57ff346cc32 +_md5_=cfbaf18eaeb9a572db85242dd95c8c1c diff --git a/metadata/md5-cache/dev-ruby/httparty-0.17.0 b/metadata/md5-cache/dev-ruby/httparty-0.17.0 new file mode 100644 index 000000000000..b69fab09df80 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/httparty-0.17.0 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=test? ( ruby_targets_ruby24? ( dev-ruby/mime-types:3[ruby_targets_ruby24] >=dev-ruby/multi_xml-0.5.2[ruby_targets_ruby24] ) ruby_targets_ruby25? ( dev-ruby/mime-types:3[ruby_targets_ruby25] >=dev-ruby/multi_xml-0.5.2[ruby_targets_ruby25] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/webmock[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/webmock[ruby_targets_ruby25] ) ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby24? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby25] ) ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) test? ( ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ) +DESCRIPTION=Makes http fun! Also, makes consuming restful web services dead easy +EAPI=6 +HOMEPAGE=https://jnunemaker.github.com/httparty +IUSE=test elibc_FreeBSD ruby_targets_ruby24 ruby_targets_ruby25 test test +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=ruby_targets_ruby24? ( dev-ruby/mime-types:3[ruby_targets_ruby24] >=dev-ruby/multi_xml-0.5.2[ruby_targets_ruby24] ) ruby_targets_ruby25? ( dev-ruby/mime-types:3[ruby_targets_ruby25] >=dev-ruby/multi_xml-0.5.2[ruby_targets_ruby25] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) +REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ) +SLOT=0 +SRC_URI=mirror://rubygems/httparty-0.17.0.gem +_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 +_md5_=8cf1519634e50fa6b72bef1a5a5fe304 diff --git a/metadata/md5-cache/dev-ruby/json-2.2.0 b/metadata/md5-cache/dev-ruby/json-2.2.0 index 8aa4fd76fad2..6892a915ac7f 100644 --- a/metadata/md5-cache/dev-ruby/json-2.2.0 +++ b/metadata/md5-cache/dev-ruby/json-2.2.0 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=dev-util/ragel ruby_targets_ruby23? ( dev-ruby/rake[ruby_targets_ruby23] doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( dev-ruby/rake[ruby_targets_ruby24] doc? ( dev-ruby/rdoc[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( dev-ruby/rake[ruby_targets_ruby25] doc? ( dev-ruby/rdoc[ruby_targets_ruby25] ) ) ruby_targets_ruby26? ( dev-ruby/rake[ruby_targets_ruby26] doc? ( dev-ruby/rdoc[ruby_targets_ruby26] ) ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) 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_ruby23? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby25] ) ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rake[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rake[ruby_targets_ruby25] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26] ) ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26] ) test? ( ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26] ) ) +DEPEND=dev-util/ragel ruby_targets_ruby23? ( dev-ruby/rake[ruby_targets_ruby23] doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) test? ( dev-ruby/test-unit:2[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( dev-ruby/rake[ruby_targets_ruby24] doc? ( dev-ruby/rdoc[ruby_targets_ruby24] ) test? ( dev-ruby/test-unit:2[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( dev-ruby/rake[ruby_targets_ruby25] doc? ( dev-ruby/rdoc[ruby_targets_ruby25] ) test? ( dev-ruby/test-unit:2[ruby_targets_ruby25] ) ) ruby_targets_ruby26? ( dev-ruby/rake[ruby_targets_ruby26] doc? ( dev-ruby/rdoc[ruby_targets_ruby26] ) test? ( dev-ruby/test-unit:2[ruby_targets_ruby26] ) ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) 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_ruby23? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby25] ) ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rake[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rake[ruby_targets_ruby25] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26] ) ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26] ) test? ( ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26] ) ) DESCRIPTION=A JSON implementation as a Ruby extension EAPI=6 HOMEPAGE=https://github.com/flori/json @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ru SLOT=2 SRC_URI=mirror://rubygems/json-2.2.0.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=f44fa50ae62c6de7f0ef352e742f4795 +_md5_=de8b89355ce324e0c829ed4100e1670b diff --git a/metadata/md5-cache/dev-ruby/mime-types-3.2.2 b/metadata/md5-cache/dev-ruby/mime-types-3.2.2 index b25d4f152abb..58143fa4e257 100644 --- a/metadata/md5-cache/dev-ruby/mime-types-3.2.2 +++ b/metadata/md5-cache/dev-ruby/mime-types-3.2.2 @@ -4,11 +4,11 @@ DESCRIPTION=Provides a mailcap-like MIME Content-Type lookup for Ruby EAPI=6 HOMEPAGE=https://github.com/mime-types/ruby-mime-types IUSE=test elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 LICENSE=MIT RDEPEND=ruby_targets_ruby23? ( >=dev-ruby/mime-types-data-3.2015:3[ruby_targets_ruby23] ) ruby_targets_ruby24? ( >=dev-ruby/mime-types-data-3.2015:3[ruby_targets_ruby24] ) ruby_targets_ruby25? ( >=dev-ruby/mime-types-data-3.2015:3[ruby_targets_ruby25] ) ruby_targets_ruby26? ( >=dev-ruby/mime-types-data-3.2015:3[ruby_targets_ruby26] ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) 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_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) 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_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) SLOT=3 SRC_URI=mirror://rubygems/mime-types-3.2.2.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=36ef4b34972f6dde752e8206c5ebcee2 +_md5_=06e6a37f01a9b1e2e0c83250d91156b6 diff --git a/metadata/md5-cache/dev-ruby/mime-types-data-3.2019.0331 b/metadata/md5-cache/dev-ruby/mime-types-data-3.2019.0331 index ba598d212a48..642db98df4bf 100644 --- a/metadata/md5-cache/dev-ruby/mime-types-data-3.2019.0331 +++ b/metadata/md5-cache/dev-ruby/mime-types-data-3.2019.0331 @@ -4,11 +4,11 @@ DESCRIPTION=Registry for information about MIME media type definitions EAPI=6 HOMEPAGE=https://github.com/mime-types/mime-types-data IUSE=elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~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 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) 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_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) 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_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) SLOT=3 SRC_URI=mirror://rubygems/mime-types-data-3.2019.0331.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=6c213424bd4b8968ecb2ae1742323a2b +_md5_=3b69bc1e0acb1c74181ab154b94ff738 diff --git a/metadata/md5-cache/dev-ruby/minitest-bonus-assertions-3.0 b/metadata/md5-cache/dev-ruby/minitest-bonus-assertions-3.0 index e1a5ff4334aa..99c92b7a896b 100644 --- a/metadata/md5-cache/dev-ruby/minitest-bonus-assertions-3.0 +++ b/metadata/md5-cache/dev-ruby/minitest-bonus-assertions-3.0 @@ -4,11 +4,11 @@ DESCRIPTION=Bonus assertions for minitest EAPI=6 HOMEPAGE=https://github.com/halostatue/minitest-bonus-assertions IUSE=elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~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 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) 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_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) 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_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) SLOT=2 SRC_URI=mirror://rubygems/minitest-bonus-assertions-3.0.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=d844d6e139bbc6fcf51faa017c5f09d8 +_md5_=c81b4f40764a258c56c9654c6e59395d diff --git a/metadata/md5-cache/dev-ruby/minitest-hooks-1.4.2 b/metadata/md5-cache/dev-ruby/minitest-hooks-1.4.2 deleted file mode 100644 index 56a63abf8aed..000000000000 --- a/metadata/md5-cache/dev-ruby/minitest-hooks-1.4.2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby23? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby25] ) ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) test? ( ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ) -DESCRIPTION=Adds around and before_all/after_all/around_all hooks for Minitest -EAPI=6 -HOMEPAGE=https://github.com/jeremyevans/minitest-hooks -IUSE=elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 doc test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 -LICENSE=MIT -RDEPEND=ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) -REQUIRED_USE=|| ( ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ) -SLOT=1 -SRC_URI=mirror://rubygems/minitest-hooks-1.4.2.gem -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=3d064fa5c3de147e210bedc2748d7e4d diff --git a/metadata/md5-cache/dev-ruby/minitest-hooks-1.5.0 b/metadata/md5-cache/dev-ruby/minitest-hooks-1.5.0 index c8bf7337c9bd..096e8382a461 100644 --- a/metadata/md5-cache/dev-ruby/minitest-hooks-1.5.0 +++ b/metadata/md5-cache/dev-ruby/minitest-hooks-1.5.0 @@ -4,11 +4,11 @@ DESCRIPTION=Adds around and before_all/after_all/around_all hooks for Minitest EAPI=6 HOMEPAGE=https://github.com/jeremyevans/minitest-hooks IUSE=elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 LICENSE=MIT RDEPEND=ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) 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_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) 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_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) SLOT=1 SRC_URI=mirror://rubygems/minitest-hooks-1.5.0.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=ccc0c259c2b8074ba80327290a3c49b4 +_md5_=d94096e66085d2ca32874649455b7cf1 diff --git a/metadata/md5-cache/dev-ruby/minitest-pretty_diff-0.1 b/metadata/md5-cache/dev-ruby/minitest-pretty_diff-0.1 index 53307cd8cd44..00b6a685d236 100644 --- a/metadata/md5-cache/dev-ruby/minitest-pretty_diff-0.1 +++ b/metadata/md5-cache/dev-ruby/minitest-pretty_diff-0.1 @@ -4,11 +4,11 @@ DESCRIPTION=Pretty-print hashes and arrays before diffing them in MiniTest EAPI=5 HOMEPAGE=https://github.com/adammck/minitest-pretty_diff IUSE=elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~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 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) 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_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) 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_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) SLOT=0 SRC_URI=mirror://rubygems/minitest-pretty_diff-0.1.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=bfbd76ec793f74d098473652d0a4c5a6 +_md5_=87ccab500a3309eb06a26f465c45515c diff --git a/metadata/md5-cache/dev-ruby/neovim-ruby-client-0.7.1 b/metadata/md5-cache/dev-ruby/neovim-ruby-client-0.7.1 index 53d145cc087a..4f3443e4a9da 100644 --- a/metadata/md5-cache/dev-ruby/neovim-ruby-client-0.7.1 +++ b/metadata/md5-cache/dev-ruby/neovim-ruby-client-0.7.1 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby bindings for Neovim EAPI=6 HOMEPAGE=https://github.com/alexgenco/neovim-ruby IUSE=test test elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 doc test test -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~arm ~x86 LICENSE=MIT RDEPEND=ruby_targets_ruby23? ( >=dev-ruby/msgpack-1.0.0[ruby_targets_ruby23] ) ruby_targets_ruby24? ( >=dev-ruby/msgpack-1.0.0[ruby_targets_ruby24] ) ruby_targets_ruby25? ( >=dev-ruby/msgpack-1.0.0[ruby_targets_ruby25] ) ruby_targets_ruby23? ( >=dev-ruby/multi_json-1.0.0[ruby_targets_ruby23] ) ruby_targets_ruby24? ( >=dev-ruby/multi_json-1.0.0[ruby_targets_ruby24] ) ruby_targets_ruby25? ( >=dev-ruby/multi_json-1.0.0[ruby_targets_ruby25] ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) REQUIRED_USE=|| ( ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ) SLOT=0 SRC_URI=mirror://rubygems/neovim-0.7.1.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=82b36be143df2c5bea7ee0a3330915ac +_md5_=26b5ac19281df31256703b7b82c6d303 diff --git a/metadata/md5-cache/dev-ruby/rake-compiler-1.0.7 b/metadata/md5-cache/dev-ruby/rake-compiler-1.0.7 index a30cd95cf6b1..a2cffa1d2880 100644 --- a/metadata/md5-cache/dev-ruby/rake-compiler-1.0.7 +++ b/metadata/md5-cache/dev-ruby/rake-compiler-1.0.7 @@ -4,11 +4,11 @@ DESCRIPTION=Provide a standard and simplified way to build and package Ruby exte EAPI=6 HOMEPAGE=https://github.com/luislavena/rake-compiler IUSE=test elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~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 sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby23? ( dev-ruby/rake[ruby_targets_ruby23] ) ruby_targets_ruby24? ( dev-ruby/rake[ruby_targets_ruby24] ) ruby_targets_ruby25? ( dev-ruby/rake[ruby_targets_ruby25] ) ruby_targets_ruby26? ( dev-ruby/rake[ruby_targets_ruby26] ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) 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_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) 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_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) SLOT=0 SRC_URI=https://github.com/luislavena/rake-compiler/archive/v1.0.7.tar.gz -> rake-compiler-1.0.7.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=00e736eb5d818c7bccbb07d25b74bfc3 +_md5_=17becbe695f580166a39632312c8c02f diff --git a/metadata/md5-cache/dev-ruby/rdoc-6.1.1 b/metadata/md5-cache/dev-ruby/rdoc-6.1.1 index 9d273e38d123..a66d768ab1ad 100644 --- a/metadata/md5-cache/dev-ruby/rdoc-6.1.1 +++ b/metadata/md5-cache/dev-ruby/rdoc-6.1.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst prepare setup test unpack -DEPEND=ruby_targets_ruby23? ( >=dev-ruby/kpeg-1.1.0-r1[ruby_targets_ruby23] >dev-ruby/racc-1.4.10[ruby_targets_ruby23] test? ( dev-ruby/bundler[ruby_targets_ruby23] >=dev-ruby/minitest-5.8:5[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( >=dev-ruby/kpeg-1.1.0-r1[ruby_targets_ruby24] >dev-ruby/racc-1.4.10[ruby_targets_ruby24] test? ( dev-ruby/bundler[ruby_targets_ruby24] >=dev-ruby/minitest-5.8:5[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( >=dev-ruby/kpeg-1.1.0-r1[ruby_targets_ruby25] >dev-ruby/racc-1.4.10[ruby_targets_ruby25] test? ( dev-ruby/bundler[ruby_targets_ruby25] >=dev-ruby/minitest-5.8:5[ruby_targets_ruby25] ) ) ruby_targets_ruby26? ( >=dev-ruby/kpeg-1.1.0-r1[ruby_targets_ruby26] >dev-ruby/racc-1.4.10[ruby_targets_ruby26] test? ( dev-ruby/bundler[ruby_targets_ruby26] >=dev-ruby/minitest-5.8:5[ruby_targets_ruby26] ) ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) 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_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rake[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rake[ruby_targets_ruby25] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26] ) ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26] ) test? ( ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26] ) ) +DEPEND=ruby_targets_ruby23? ( >=dev-ruby/kpeg-1.1.0-r1[ruby_targets_ruby23] >dev-ruby/racc-1.4.10[ruby_targets_ruby23] dev-ruby/rake[ruby_targets_ruby23] test? ( dev-ruby/bundler[ruby_targets_ruby23] >=dev-ruby/minitest-5.8:5[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( >=dev-ruby/kpeg-1.1.0-r1[ruby_targets_ruby24] >dev-ruby/racc-1.4.10[ruby_targets_ruby24] dev-ruby/rake[ruby_targets_ruby24] test? ( dev-ruby/bundler[ruby_targets_ruby24] >=dev-ruby/minitest-5.8:5[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( >=dev-ruby/kpeg-1.1.0-r1[ruby_targets_ruby25] >dev-ruby/racc-1.4.10[ruby_targets_ruby25] dev-ruby/rake[ruby_targets_ruby25] test? ( dev-ruby/bundler[ruby_targets_ruby25] >=dev-ruby/minitest-5.8:5[ruby_targets_ruby25] ) ) ruby_targets_ruby26? ( >=dev-ruby/kpeg-1.1.0-r1[ruby_targets_ruby26] >dev-ruby/racc-1.4.10[ruby_targets_ruby26] dev-ruby/rake[ruby_targets_ruby26] test? ( dev-ruby/bundler[ruby_targets_ruby26] >=dev-ruby/minitest-5.8:5[ruby_targets_ruby26] ) ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) 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_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rake[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rake[ruby_targets_ruby25] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26] ) ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26] ) test? ( ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26] ) ) DESCRIPTION=An extended version of the RDoc library from Ruby 1.8 EAPI=6 HOMEPAGE=https://github.com/ruby/rdoc/ @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ru SLOT=0 SRC_URI=https://github.com/ruby/rdoc/archive/v6.1.1.tar.gz -> rdoc-6.1.1.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=2ed8d338f6d293d4d3ea0046a05d6ec6 +_md5_=9ab534c89ff239481f48ab8bc03b781e diff --git a/metadata/md5-cache/dev-ruby/redcloth-4.3.2-r1 b/metadata/md5-cache/dev-ruby/redcloth-4.3.2-r1 index 5348fdd87d5b..a92c467346fb 100644 --- a/metadata/md5-cache/dev-ruby/redcloth-4.3.2-r1 +++ b/metadata/md5-cache/dev-ruby/redcloth-4.3.2-r1 @@ -4,11 +4,11 @@ DESCRIPTION=A module for using Textile in Ruby EAPI=6 HOMEPAGE=http://redcloth.org/ IUSE=elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~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 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_ruby23? ( dev-lang/ruby:2.3 ) 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_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) 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_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) SLOT=0 SRC_URI=https://github.com/jgarber/redcloth/archive/v4.3.2.tar.gz -> RedCloth-4.3.2.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=0a4ceade88014487d38aa78719e3e6fe +_md5_=e1fac6d989717b9a4e61d8e20c0bd90c diff --git a/metadata/md5-cache/dev-ruby/rrdtool-bindings-1.7.1-r1 b/metadata/md5-cache/dev-ruby/rrdtool-bindings-1.7.1-r1 new file mode 100644 index 000000000000..a8d9e42ee6c3 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/rrdtool-bindings-1.7.1-r1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=test? ( ~net-analyzer/rrdtool-1.7.1[graph] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) +DESCRIPTION=Ruby bindings for rrdtool +EAPI=6 +HOMEPAGE=https://oss.oetiker.ch/rrdtool/ +IUSE=graph test elibc_FreeBSD ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris +LICENSE=GPL-2 +RDEPEND=~net-analyzer/rrdtool-1.7.1[graph=] ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) +REQUIRED_USE=test? ( graph ) || ( ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) +SLOT=0 +SRC_URI=https://oss.oetiker.ch/rrdtool/pub/rrdtool-1.7.1.tar.gz +_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 +_md5_=342e1e36dbfcb402d3cfa178c253c7bf diff --git a/metadata/md5-cache/dev-ruby/ruby2ruby-2.4.2 b/metadata/md5-cache/dev-ruby/ruby2ruby-2.4.2 index 39f4f827fb41..2f5bac7b2a70 100644 --- a/metadata/md5-cache/dev-ruby/ruby2ruby-2.4.2 +++ b/metadata/md5-cache/dev-ruby/ruby2ruby-2.4.2 @@ -4,11 +4,11 @@ DESCRIPTION=Generates readable ruby from ParseTree EAPI=6 HOMEPAGE=https://github.com/seattlerb/ruby2ruby IUSE=test elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=ruby_targets_ruby23? ( >=dev-ruby/sexp_processor-4.6.0:4[ruby_targets_ruby23] >=dev-ruby/ruby_parser-3.1:3[ruby_targets_ruby23] !=dev-ruby/sexp_processor-4.6.0:4[ruby_targets_ruby24] >=dev-ruby/ruby_parser-3.1:3[ruby_targets_ruby24] !=dev-ruby/sexp_processor-4.6.0:4[ruby_targets_ruby25] >=dev-ruby/ruby_parser-3.1:3[ruby_targets_ruby25] !=dev-ruby/sexp_processor-4.6.0:4[ruby_targets_ruby26] >=dev-ruby/ruby_parser-3.1:3[ruby_targets_ruby26] !=dev-ruby/sexp_processor-4.9.0:4[ruby_targets_ruby23] !=dev-ruby/sexp_processor-4.9.0:4[ruby_targets_ruby24] !=dev-ruby/sexp_processor-4.9.0:4[ruby_targets_ruby25] !=dev-ruby/sexp_processor-4.9.0:4[ruby_targets_ruby26] !=dev-ruby/minitest-4:0[ruby_targets_ruby23] dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/json[ruby_targets_ruby24] >=dev-ruby/minitest-4:0[ruby_targets_ruby24] dev-ruby/rdoc[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/json[ruby_targets_ruby25] >=dev-ruby/minitest-4:0[ruby_targets_ruby25] dev-ruby/rdoc[ruby_targets_ruby25] ) ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) -DESCRIPTION=Centralized Ruby extension management system -EAPI=6 -HOMEPAGE=https://rubygems.org/ -IUSE=server test elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 -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 ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=GPL-2 || ( Ruby MIT ) -PDEPEND=server? ( >=dev-ruby/builder-2.1 ) -RDEPEND=ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) -REQUIRED_USE=|| ( ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ) -SLOT=0 -SRC_URI=https://rubygems.org/rubygems/rubygems-2.7.6.tgz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 prefix e51c7882b7b721e54e684f7eb143cbfe preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=855b107769bd2bb9cfa6f376eb4ccdd5 diff --git a/metadata/md5-cache/dev-ruby/rubygems-2.7.9 b/metadata/md5-cache/dev-ruby/rubygems-2.7.9 index 22b20f0d62e8..855af0cb0718 100644 --- a/metadata/md5-cache/dev-ruby/rubygems-2.7.9 +++ b/metadata/md5-cache/dev-ruby/rubygems-2.7.9 @@ -4,7 +4,7 @@ DESCRIPTION=Centralized Ruby extension management system EAPI=6 HOMEPAGE=https://rubygems.org/ IUSE=server test elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 -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 ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 || ( Ruby MIT ) PDEPEND=server? ( >=dev-ruby/builder-2.1 ) RDEPEND=ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) @@ -12,4 +12,4 @@ REQUIRED_USE=|| ( ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ) SLOT=0 SRC_URI=https://rubygems.org/rubygems/rubygems-2.7.9.tgz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 prefix e51c7882b7b721e54e684f7eb143cbfe preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=556aebdb618070cb638f4f0ed7bad49c +_md5_=1035e719793eb33f4e18144cf558f304 diff --git a/metadata/md5-cache/dev-ruby/rubygems-3.0.1 b/metadata/md5-cache/dev-ruby/rubygems-3.0.1 deleted file mode 100644 index 06825a855ff2..000000000000 --- a/metadata/md5-cache/dev-ruby/rubygems-3.0.1 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare setup test unpack -DEPEND=ruby_targets_ruby23? ( test? ( dev-ruby/json[ruby_targets_ruby23] dev-ruby/minitest:5[ruby_targets_ruby23] dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/json[ruby_targets_ruby24] dev-ruby/minitest:5[ruby_targets_ruby24] dev-ruby/rdoc[ruby_targets_ruby24] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/json[ruby_targets_ruby25] dev-ruby/minitest:5[ruby_targets_ruby25] dev-ruby/rdoc[ruby_targets_ruby25] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/json[ruby_targets_ruby26] dev-ruby/minitest:5[ruby_targets_ruby26] dev-ruby/rdoc[ruby_targets_ruby26] ) ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) -DESCRIPTION=Centralized Ruby extension management system -EAPI=6 -HOMEPAGE=https://rubygems.org/ -IUSE=server test elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 -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 ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=GPL-2 || ( Ruby MIT ) -PDEPEND=server? ( =dev-ruby/builder-3* ) -RDEPEND=ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) -REQUIRED_USE=|| ( ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) -SLOT=0 -SRC_URI=https://rubygems.org/rubygems/rubygems-3.0.1.tgz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 prefix e51c7882b7b721e54e684f7eb143cbfe preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=dc95fa7bd8060f834d4df7429eb15ccc diff --git a/metadata/md5-cache/dev-ruby/sexp_processor-4.12.0 b/metadata/md5-cache/dev-ruby/sexp_processor-4.12.0 index 4edcb140228f..1c74aa9a3a49 100644 --- a/metadata/md5-cache/dev-ruby/sexp_processor-4.12.0 +++ b/metadata/md5-cache/dev-ruby/sexp_processor-4.12.0 @@ -4,11 +4,11 @@ DESCRIPTION=Processor for s-expressions created as part of the ParseTree project EAPI=6 HOMEPAGE=https://www.zenspider.com/projects/sexp_processor.html IUSE=elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) 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_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) 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_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) SLOT=4 SRC_URI=mirror://rubygems/sexp_processor-4.12.0.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=bd5702365f506777f56ea5945e387a80 +_md5_=cf517eea8d40a69964fbec6fba86a243 diff --git a/metadata/md5-cache/dev-ruby/term-ansicolor-1.7.1 b/metadata/md5-cache/dev-ruby/term-ansicolor-1.7.1 index f6200c13cef1..ba8aad0c6cb6 100644 --- a/metadata/md5-cache/dev-ruby/term-ansicolor-1.7.1 +++ b/metadata/md5-cache/dev-ruby/term-ansicolor-1.7.1 @@ -4,11 +4,11 @@ DESCRIPTION=Small Ruby library that colors strings using ANSI escape sequences EAPI=6 HOMEPAGE=https://flori.github.io/term-ansicolor/ IUSE=test elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 doc test -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=ruby_targets_ruby23? ( >=dev-ruby/tins-1.0[ruby_targets_ruby23] ) ruby_targets_ruby24? ( >=dev-ruby/tins-1.0[ruby_targets_ruby24] ) ruby_targets_ruby25? ( >=dev-ruby/tins-1.0[ruby_targets_ruby25] ) ruby_targets_ruby26? ( >=dev-ruby/tins-1.0[ruby_targets_ruby26] ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) 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_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) 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_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) SLOT=0 SRC_URI=mirror://rubygems/term-ansicolor-1.7.1.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=ace54f000285b40496d78fb1e5c4a184 +_md5_=41b07184a0d04666ca71bf44c14a61bc diff --git a/metadata/md5-cache/dev-ruby/tins-1.20.2 b/metadata/md5-cache/dev-ruby/tins-1.20.2 index d0bcfed5c81a..8a2f769e482d 100644 --- a/metadata/md5-cache/dev-ruby/tins-1.20.2 +++ b/metadata/md5-cache/dev-ruby/tins-1.20.2 @@ -4,11 +4,11 @@ DESCRIPTION=All the stuff that isn't good enough for a real library EAPI=6 HOMEPAGE=https://github.com/flori/tins IUSE=elibc_FreeBSD ruby_targets_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 test -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=MIT RDEPEND=ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) 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_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) 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_ruby23 ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 ) SLOT=0 SRC_URI=mirror://rubygems/tins-1.20.2.gem _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 4044516b167f460104703fee4a3c7f5f ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=8f469783dbcb0fe6c59fb658ecd952d0 +_md5_=e5a7613aa847633254d1ba312722a12f diff --git a/metadata/md5-cache/dev-tex/Manifest.gz b/metadata/md5-cache/dev-tex/Manifest.gz index 6a068612f620..ad6138827b4e 100644 Binary files a/metadata/md5-cache/dev-tex/Manifest.gz and b/metadata/md5-cache/dev-tex/Manifest.gz differ diff --git a/metadata/md5-cache/dev-tex/dvipost-1.1-r3 b/metadata/md5-cache/dev-tex/dvipost-1.1-r3 index 6bb69ea5c7a0..3c1bd1175adf 100644 --- a/metadata/md5-cache/dev-tex/dvipost-1.1-r3 +++ b/metadata/md5-cache/dev-tex/dvipost-1.1-r3 @@ -3,10 +3,10 @@ DEFINED_PHASES=compile install postinst postrm prepare DESCRIPTION=post processor for dvi files EAPI=7 HOMEPAGE=http://efeu.cybertec.at/index_en.html -KEYWORDS=~alpha amd64 ~hppa ~ia64 ppc ppc64 sparc ~x86 ~x64-macos ~x86-macos +KEYWORDS=alpha amd64 ~hppa ~ia64 ppc ppc64 sparc ~x86 ~x64-macos ~x86-macos LICENSE=GPL-2 RDEPEND=virtual/latex-base SLOT=0 SRC_URI=http://efeu.cybertec.at/dist/dvipost-1.1.tar.gz _eclasses_=eutils 6e6c2737b59a4b982de6fb3ecefd87f8 latex-package 17f13abe0de88340745e52e6b627aee7 multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=af7d3edc7772160045b5ce180c123121 +_md5_=df0dbf89da53c320db0c8b236d39d891 diff --git a/metadata/md5-cache/dev-util/Manifest.gz b/metadata/md5-cache/dev-util/Manifest.gz index 8343728f2b5b..4e4888344ada 100644 Binary files a/metadata/md5-cache/dev-util/Manifest.gz and b/metadata/md5-cache/dev-util/Manifest.gz differ diff --git a/metadata/md5-cache/dev-util/boost-build-1.63.0 b/metadata/md5-cache/dev-util/boost-build-1.63.0 deleted file mode 100644 index c9f4dc1588ce..000000000000 --- a/metadata/md5-cache/dev-util/boost-build-1.63.0 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)] ) !=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)] ) -DESCRIPTION=A system for large project software construction, simple to use and powerful -EAPI=6 -HOMEPAGE=https://boostorg.github.io/build/ -IUSE=examples python test python_targets_python2_7 -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=Boost-1.0 -RDEPEND=python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)] ) !=dev-lang/perl-5.10.0 sys-devel/clang:4 dev-util/ninja >=dev-util/cmake-3.9.6 +DEPEND=>=dev-lang/perl-5.10.0 sys-devel/clang:4 sys-devel/flex dev-util/ninja >=dev-util/cmake-3.9.6 DESCRIPTION=C-Reduce - a plugin-based C program reducer EAPI=6 HOMEPAGE=https://embed.cs.utah.edu/creduce/ KEYWORDS=~amd64 ~x86 LICENSE=UoI-NCSA -RDEPEND=>=dev-lang/perl-5.10.0 sys-devel/clang:4 dev-perl/Benchmark-Timer dev-perl/Exporter-Lite dev-perl/File-Which dev-perl/Getopt-Tabular dev-perl/Regexp-Common dev-perl/Sys-CPU dev-util/astyle dev-util/indent +RDEPEND=>=dev-lang/perl-5.10.0 sys-devel/clang:4 dev-perl/Exporter-Lite dev-perl/File-Which dev-perl/Getopt-Tabular dev-perl/Regexp-Common dev-perl/Sys-CPU SLOT=0 SRC_URI=https://embed.cs.utah.edu/creduce/creduce-2.7.0.tar.gz _eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf llvm f36be95c5bfae7bc8c82a966d3c8324f ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=f3f29a0a87a29c74ed7364be33767ce6 +_md5_=2f69fd6f2a46b09a74999df5a544679b diff --git a/metadata/md5-cache/dev-util/creduce-2.7.0-r1 b/metadata/md5-cache/dev-util/creduce-2.7.0-r1 index 5afd72ec3f05..30a906a65b2f 100644 --- a/metadata/md5-cache/dev-util/creduce-2.7.0-r1 +++ b/metadata/md5-cache/dev-util/creduce-2.7.0-r1 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile configure install prepare setup test -DEPEND=>=dev-lang/perl-5.10.0 sys-devel/clang:5 dev-util/ninja >=dev-util/cmake-3.9.6 +DEPEND=>=dev-lang/perl-5.10.0 sys-devel/clang:5 sys-devel/flex dev-util/ninja >=dev-util/cmake-3.9.6 DESCRIPTION=C-Reduce - a plugin-based C program reducer EAPI=6 HOMEPAGE=https://embed.cs.utah.edu/creduce/ KEYWORDS=~amd64 ~x86 LICENSE=UoI-NCSA -RDEPEND=>=dev-lang/perl-5.10.0 sys-devel/clang:5 dev-perl/Benchmark-Timer dev-perl/Exporter-Lite dev-perl/File-Which dev-perl/Getopt-Tabular dev-perl/Regexp-Common dev-perl/Sys-CPU dev-util/astyle dev-util/indent +RDEPEND=>=dev-lang/perl-5.10.0 sys-devel/clang:5 dev-perl/Exporter-Lite dev-perl/File-Which dev-perl/Getopt-Tabular dev-perl/Regexp-Common dev-perl/Sys-CPU SLOT=0 SRC_URI=https://embed.cs.utah.edu/creduce/creduce-2.7.0.tar.gz _eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf llvm f36be95c5bfae7bc8c82a966d3c8324f ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=84b763f76449d540091d192a7f6a195e +_md5_=e0340f4ff0ee0c0efd29272210b10a1a diff --git a/metadata/md5-cache/dev-util/creduce-2.8.0 b/metadata/md5-cache/dev-util/creduce-2.8.0 new file mode 100644 index 000000000000..5a63f3e0c0a4 --- /dev/null +++ b/metadata/md5-cache/dev-util/creduce-2.8.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=>=dev-lang/perl-5.10.0 sys-devel/clang:7 sys-devel/flex dev-util/ninja >=dev-util/cmake-3.9.6 +DESCRIPTION=C-Reduce - a plugin-based C program reducer +EAPI=6 +HOMEPAGE=https://embed.cs.utah.edu/creduce/ +KEYWORDS=~amd64 ~x86 +LICENSE=UoI-NCSA +RDEPEND=>=dev-lang/perl-5.10.0 sys-devel/clang:7 dev-perl/Exporter-Lite dev-perl/File-Which dev-perl/Getopt-Tabular dev-perl/Regexp-Common +SLOT=0 +SRC_URI=https://embed.cs.utah.edu/creduce/creduce-2.8.0.tar.gz +_eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf llvm f36be95c5bfae7bc8c82a966d3c8324f ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 +_md5_=3f914304a6ae8633eda6ad0ec590ca0e diff --git a/metadata/md5-cache/dev-util/creduce-2.8.0_pre20180411 b/metadata/md5-cache/dev-util/creduce-2.8.0_pre20180411 index d1870c2d0e9e..e8efbde18452 100644 --- a/metadata/md5-cache/dev-util/creduce-2.8.0_pre20180411 +++ b/metadata/md5-cache/dev-util/creduce-2.8.0_pre20180411 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile configure install prepare setup test -DEPEND=>=dev-lang/perl-5.10.0 sys-devel/clang:6 dev-util/ninja >=dev-util/cmake-3.9.6 +DEPEND=>=dev-lang/perl-5.10.0 sys-devel/clang:6 sys-devel/flex dev-util/ninja >=dev-util/cmake-3.9.6 DESCRIPTION=C-Reduce - a plugin-based C program reducer EAPI=6 HOMEPAGE=https://embed.cs.utah.edu/creduce/ KEYWORDS=~amd64 ~x86 LICENSE=UoI-NCSA -RDEPEND=>=dev-lang/perl-5.10.0 sys-devel/clang:6 dev-perl/Benchmark-Timer dev-perl/Exporter-Lite dev-perl/File-Which dev-perl/Getopt-Tabular dev-perl/Regexp-Common dev-perl/Sys-CPU dev-util/astyle dev-util/indent +RDEPEND=>=dev-lang/perl-5.10.0 sys-devel/clang:6 dev-perl/Exporter-Lite dev-perl/File-Which dev-perl/Getopt-Tabular dev-perl/Regexp-Common dev-perl/Sys-CPU SLOT=0 SRC_URI=https://github.com/csmith-project/creduce/archive/48e622ba74bc35c5a81299d3a34b9b14038d6a70.tar.gz -> creduce-48e622ba74bc35c5a81299d3a34b9b14038d6a70.tar.gz _eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf llvm f36be95c5bfae7bc8c82a966d3c8324f ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=350d511cf1987881cd608b578ee22742 +_md5_=75b2f57de487cbe35d0633d6926d41a8 diff --git a/metadata/md5-cache/dev-util/creduce-2.8.0_pre20180411-r1 b/metadata/md5-cache/dev-util/creduce-2.8.0_pre20180411-r1 index 475e569229d4..6b37c2bf67a4 100644 --- a/metadata/md5-cache/dev-util/creduce-2.8.0_pre20180411-r1 +++ b/metadata/md5-cache/dev-util/creduce-2.8.0_pre20180411-r1 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile configure install prepare setup test -DEPEND=>=dev-lang/perl-5.10.0 sys-devel/clang:7 dev-util/ninja >=dev-util/cmake-3.9.6 +DEPEND=>=dev-lang/perl-5.10.0 sys-devel/clang:7 sys-devel/flex dev-util/ninja >=dev-util/cmake-3.9.6 DESCRIPTION=C-Reduce - a plugin-based C program reducer EAPI=6 HOMEPAGE=https://embed.cs.utah.edu/creduce/ KEYWORDS=~amd64 ~x86 LICENSE=UoI-NCSA -RDEPEND=>=dev-lang/perl-5.10.0 sys-devel/clang:7 dev-perl/Benchmark-Timer dev-perl/Exporter-Lite dev-perl/File-Which dev-perl/Getopt-Tabular dev-perl/Regexp-Common dev-perl/Sys-CPU dev-util/astyle dev-util/indent +RDEPEND=>=dev-lang/perl-5.10.0 sys-devel/clang:7 dev-perl/Exporter-Lite dev-perl/File-Which dev-perl/Getopt-Tabular dev-perl/Regexp-Common dev-perl/Sys-CPU SLOT=0 SRC_URI=https://github.com/csmith-project/creduce/archive/48e622ba74bc35c5a81299d3a34b9b14038d6a70.tar.gz -> creduce-48e622ba74bc35c5a81299d3a34b9b14038d6a70.tar.gz _eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf llvm f36be95c5bfae7bc8c82a966d3c8324f ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=e663f9a1899c927eb722ec869657e2a5 +_md5_=5f40e5dea2eede4c4c6c787d228108c7 diff --git a/metadata/md5-cache/dev-util/creduce-2.9.0_pre20190414-r1 b/metadata/md5-cache/dev-util/creduce-2.9.0_pre20190414-r1 new file mode 100644 index 000000000000..3cb640c83293 --- /dev/null +++ b/metadata/md5-cache/dev-util/creduce-2.9.0_pre20190414-r1 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=>=dev-lang/perl-5.10.0 sys-devel/clang:7 sys-devel/flex dev-util/ninja >=dev-util/cmake-3.9.6 +DESCRIPTION=C-Reduce - a plugin-based C program reducer +EAPI=6 +HOMEPAGE=https://embed.cs.utah.edu/creduce/ +KEYWORDS=~amd64 ~x86 +LICENSE=UoI-NCSA +RDEPEND=>=dev-lang/perl-5.10.0 sys-devel/clang:7 dev-perl/Exporter-Lite dev-perl/File-Which dev-perl/Getopt-Tabular dev-perl/Regexp-Common +SLOT=0 +SRC_URI=https://github.com/csmith-project/creduce/archive/095c551a5f9ccaf2986edb836e7be9872d36c233.tar.gz -> creduce-095c551a5f9ccaf2986edb836e7be9872d36c233.tar.gz +_eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf llvm f36be95c5bfae7bc8c82a966d3c8324f ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 +_md5_=f3b2e4b43cf24dc13ff953c1885f3e69 diff --git a/metadata/md5-cache/dev-util/creduce-9999 b/metadata/md5-cache/dev-util/creduce-9999 index bcf97fef059a..c86699a0e847 100644 --- a/metadata/md5-cache/dev-util/creduce-9999 +++ b/metadata/md5-cache/dev-util/creduce-9999 @@ -1,10 +1,10 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=>=dev-lang/perl-5.10.0 >=sys-devel/clang-4:= dev-util/ninja >=dev-util/cmake-3.9.6 >=dev-vcs/git-1.8.2.1[curl] +DEPEND=>=dev-lang/perl-5.10.0 sys-devel/clang:7 sys-devel/flex dev-util/ninja >=dev-util/cmake-3.9.6 >=dev-vcs/git-1.8.2.1[curl] DESCRIPTION=C-Reduce - a plugin-based C program reducer EAPI=6 HOMEPAGE=https://embed.cs.utah.edu/creduce/ LICENSE=UoI-NCSA -RDEPEND=>=dev-lang/perl-5.10.0 >=sys-devel/clang-4:= dev-perl/Benchmark-Timer dev-perl/Exporter-Lite dev-perl/File-Which dev-perl/Getopt-Tabular dev-perl/Regexp-Common dev-perl/Sys-CPU dev-util/astyle dev-util/indent +RDEPEND=>=dev-lang/perl-5.10.0 sys-devel/clang:7 dev-perl/Exporter-Lite dev-perl/File-Which dev-perl/Getopt-Tabular dev-perl/Regexp-Common SLOT=0 _eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf git-r3 0d4635eeb5a96cd5315597a47eba25c9 llvm f36be95c5bfae7bc8c82a966d3c8324f ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=5ecac853cd201251e44a7b6a6a8a1d9f +_md5_=f8e85da0afe119a2e6195e49b2a0e50d diff --git a/metadata/md5-cache/dev-util/ctags-20190331 b/metadata/md5-cache/dev-util/ctags-20190331 index b0d1d1781f2b..a70d21746e8f 100644 --- a/metadata/md5-cache/dev-util/ctags-20190331 +++ b/metadata/md5-cache/dev-util/ctags-20190331 @@ -4,10 +4,10 @@ DESCRIPTION=Exuberant Ctags creates tags files for code browsing in editors EAPI=6 HOMEPAGE=https://ctags.io/ https://github.com/universal-ctags/ctags IUSE=json xml yaml -KEYWORDS=~alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=json? ( dev-libs/jansson ) xml? ( dev-libs/libxml2:2 ) yaml? ( dev-libs/libyaml ) app-eselect/eselect-ctags SLOT=0 SRC_URI=https://github.com/universal-ctags/ctags/archive/95975bd157cc1326120977ce530f0477bcbf43b1.tar.gz -> ctags-20190331.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=0eff04b26f6f15085e07b6ec2db76888 +_md5_=453379b9d98946fd9826723c1b016e33 diff --git a/metadata/md5-cache/dev-util/geany-1.33 b/metadata/md5-cache/dev-util/geany-1.33 deleted file mode 100644 index 04dd1cdbd8ec..000000000000 --- a/metadata/md5-cache/dev-util/geany-1.33 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install postinst postrm preinst prepare setup -DEPEND=>=dev-libs/glib-2.32:2 !gtk3? ( >=x11-libs/gtk+-2.24:2 vte? ( x11-libs/vte:0 ) ) gtk3? ( >=x11-libs/gtk+-3.0:3 vte? ( x11-libs/vte:2.91 ) ) virtual/pkgconfig dev-util/intltool sys-devel/gettext -DESCRIPTION=GTK+ based fast and lightweight IDE -EAPI=6 -HOMEPAGE=https://www.geany.org -IUSE=gtk3 +vte -KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux -LICENSE=GPL-2+ HPND -RDEPEND=>=dev-libs/glib-2.32:2 !gtk3? ( >=x11-libs/gtk+-2.24:2 vte? ( x11-libs/vte:0 ) ) gtk3? ( >=x11-libs/gtk+-3.0:3 vte? ( x11-libs/vte:2.91 ) ) -SLOT=0 -SRC_URI=https://download.geany.org/geany-1.33.tar.bz2 -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=f888ad9956d6f7e115657fdc92f4051b diff --git a/metadata/md5-cache/dev-util/geany-1.34 b/metadata/md5-cache/dev-util/geany-1.34 deleted file mode 100644 index 5c49769176df..000000000000 --- a/metadata/md5-cache/dev-util/geany-1.34 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install postinst postrm preinst prepare setup -DEPEND=>=dev-libs/glib-2.32:2 !gtk3? ( >=x11-libs/gtk+-2.24:2 vte? ( x11-libs/vte:0 ) ) gtk3? ( >=x11-libs/gtk+-3.0:3 vte? ( x11-libs/vte:2.91 ) ) virtual/pkgconfig dev-util/intltool sys-devel/gettext -DESCRIPTION=GTK+ based fast and lightweight IDE -EAPI=6 -HOMEPAGE=https://www.geany.org -IUSE=+gtk3 +vte -KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux -LICENSE=GPL-2+ HPND -RDEPEND=>=dev-libs/glib-2.32:2 !gtk3? ( >=x11-libs/gtk+-2.24:2 vte? ( x11-libs/vte:0 ) ) gtk3? ( >=x11-libs/gtk+-3.0:3 vte? ( x11-libs/vte:2.91 ) ) -SLOT=0 -SRC_URI=https://download.geany.org/geany-1.34.tar.bz2 -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=e0b3853d1c46844cc3e3b83484177cf3 diff --git a/metadata/md5-cache/dev-util/geany-9999 b/metadata/md5-cache/dev-util/geany-9999 index ce0912e4d808..554938e566cf 100644 --- a/metadata/md5-cache/dev-util/geany-9999 +++ b/metadata/md5-cache/dev-util/geany-9999 @@ -1,11 +1,12 @@ +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 >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=configure install postinst postrm preinst prepare setup unpack -DEPEND=>=dev-libs/glib-2.32:2 !gtk3? ( >=x11-libs/gtk+-2.24:2 vte? ( x11-libs/vte:0 ) ) gtk3? ( >=x11-libs/gtk+-3.0:3 vte? ( x11-libs/vte:2.91 ) ) virtual/pkgconfig dev-util/intltool sys-devel/gettext >=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 >=dev-vcs/git-1.8.2.1[curl] +DEPEND=>=dev-libs/glib-2.32:2 !gtk3? ( >=x11-libs/gtk+-2.24:2 vte? ( x11-libs/vte:0 ) ) gtk3? ( >=x11-libs/gtk+-3.0:3 vte? ( x11-libs/vte:2.91 ) ) virtual/pkgconfig dev-util/intltool sys-devel/gettext dev-util/desktop-file-utils x11-misc/shared-mime-info DESCRIPTION=GTK+ based fast and lightweight IDE -EAPI=6 +EAPI=7 HOMEPAGE=https://www.geany.org IUSE=+gtk3 +vte LICENSE=GPL-2+ HPND RDEPEND=>=dev-libs/glib-2.32:2 !gtk3? ( >=x11-libs/gtk+-2.24:2 vte? ( x11-libs/vte:0 ) ) gtk3? ( >=x11-libs/gtk+-3.0:3 vte? ( x11-libs/vte:2.91 ) ) SLOT=0 -_eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 git-r3 0d4635eeb5a96cd5315597a47eba25c9 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=e0b3853d1c46844cc3e3b83484177cf3 +_eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 git-r3 0d4635eeb5a96cd5315597a47eba25c9 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 14d00d009167652b1fa363e55effe213 +_md5_=e3842b91f2df1fd887c0b0cc759e2ed9 diff --git a/metadata/md5-cache/dev-util/geany-plugins-1.33 b/metadata/md5-cache/dev-util/geany-plugins-1.33 deleted file mode 100644 index f228186c6bca..000000000000 --- a/metadata/md5-cache/dev-util/geany-plugins-1.33 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=configure install prepare setup -DEPEND=>=dev-util/geany-1.32[gtk3=] dev-libs/glib:2 gtk3? ( x11-libs/gtk+:3 ) !gtk3? ( x11-libs/gtk+:2 ) ctags? ( dev-util/ctags ) debugger? ( x11-libs/vte:0 ) enchant? ( app-text/enchant ) git? ( dev-libs/libgit2:= ) gpg? ( app-crypt/gpgme:1= ) gtkspell? ( gtk3? ( app-text/gtkspell:3= ) !gtk3? ( app-text/gtkspell:2 ) ) lua? ( dev-lang/lua:0= ) multiterm? ( || ( dev-lang/vala:0.44 dev-lang/vala:0.42 dev-lang/vala:0.40 dev-lang/vala:0.36 dev-lang/vala:0.34 dev-lang/vala:0.32 ) >=x11-libs/vte-0.28:0 ) pretty-printer? ( dev-libs/libxml2:2 ) python? ( dev-python/pygtk[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)] ) scope? ( x11-libs/vte:0 ) soup? ( net-libs/libsoup:2.4 ) nls? ( sys-devel/gettext ) virtual/pkgconfig -DESCRIPTION=A collection of different plugins for Geany -EAPI=6 -HOMEPAGE=https://plugins.geany.org -IUSE=gtk3 ctags debugger enchant git gpg gtkspell lua multiterm nls pretty-printer python scope soup python_targets_python2_7 -KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=>=dev-util/geany-1.32[gtk3=] dev-libs/glib:2 gtk3? ( x11-libs/gtk+:3 ) !gtk3? ( x11-libs/gtk+:2 ) ctags? ( dev-util/ctags ) debugger? ( x11-libs/vte:0 ) enchant? ( app-text/enchant ) git? ( dev-libs/libgit2:= ) gpg? ( app-crypt/gpgme:1= ) gtkspell? ( gtk3? ( app-text/gtkspell:3= ) !gtk3? ( app-text/gtkspell:2 ) ) lua? ( dev-lang/lua:0= ) multiterm? ( || ( dev-lang/vala:0.44 dev-lang/vala:0.42 dev-lang/vala:0.40 dev-lang/vala:0.36 dev-lang/vala:0.34 dev-lang/vala:0.32 ) >=x11-libs/vte-0.28:0 ) pretty-printer? ( dev-libs/libxml2:2 ) python? ( dev-python/pygtk[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)] ) scope? ( x11-libs/vte:0 ) soup? ( net-libs/libsoup:2.4 ) scope? ( sys-devel/gdb ) -REQUIRED_USE=gtk3? ( !debugger !multiterm !python !scope ) python? ( python_targets_python2_7 ) -SLOT=0 -SRC_URI=https://plugins.geany.org/geany-plugins/geany-plugins-1.33.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 vala a94a0fb4c35fe91774bb72ec8f3c861f vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=377e06aa9802d8b358b7835b8b822a7a diff --git a/metadata/md5-cache/dev-util/gertty-9999 b/metadata/md5-cache/dev-util/gertty-9999 new file mode 100644 index 000000000000..d4bd1969056c --- /dev/null +++ b/metadata/md5-cache/dev-util/gertty-9999 @@ -0,0 +1,13 @@ +BDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-vcs/git-1.8.2.1[curl] +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pbr-0.11[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DESCRIPTION=Gertty is a console-based interface to the Gerrit Code Review system. +EAPI=7 +HOMEPAGE=https://pypi.org/project/gertty/ +IUSE=python_targets_python2_7 +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/pbr-0.11[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/urwid-1.2.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/urwid-1.3.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sqlalchemy-1.0.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/git-python-0.3.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-dateutil[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/requests-2.5.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/alembic-0.6.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pyyaml-3.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/voluptuous-0.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/ply-3.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/six[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 ) +SLOT=0 +_eclasses_=distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 git-r3 0d4635eeb5a96cd5315597a47eba25c9 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=a3e0586c40265795dab7ed1e8a7f7bc5 diff --git a/metadata/md5-cache/dev-util/gtk-update-icon-cache-3.24.8 b/metadata/md5-cache/dev-util/gtk-update-icon-cache-3.24.8 new file mode 100644 index 000000000000..ce9e52f6000c --- /dev/null +++ b/metadata/md5-cache/dev-util/gtk-update-icon-cache-3.24.8 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install test +DEPEND=>=dev-libs/glib-2.53.4:2 >=x11-libs/gdk-pixbuf-2.30:2 !=sys-devel/gettext-0.19.8 virtual/pkgconfig >=dev-util/meson-0.48.2 >=dev-util/ninja-1.7.2 +DESCRIPTION=GTK update icon cache +EAPI=6 +HOMEPAGE=https://www.gtk.org/ https://gitlab.gnome.org/Community/gentoo/gtk-update-icon-cache +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=LGPL-2.1+ +RDEPEND=>=dev-libs/glib-2.53.4:2 >=x11-libs/gdk-pixbuf-2.30:2 !=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(-)] +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[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(-)] test? ( dev-libs/glib:2 dev-libs/gobject-introspection dev-util/ninja dev-vcs/git virtual/pkgconfig ) +DESCRIPTION=Open source build system +EAPI=7 +HOMEPAGE=http://mesonbuild.com/ +IUSE=test python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris +LICENSE=Apache-2.0 +RDEPEND=dev-python/setuptools[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(-)] 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(-)] +REQUIRED_USE=|| ( python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/m/meson/meson-0.50.1.tar.gz +_eclasses_=distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=f5e02c2d612ecd636fc96ca2f0d69409 diff --git a/metadata/md5-cache/dev-util/meson-9999 b/metadata/md5-cache/dev-util/meson-9999 index cb4fcbcff4df..a11a02cd053a 100644 --- a/metadata/md5-cache/dev-util/meson-9999 +++ b/metadata/md5-cache/dev-util/meson-9999 @@ -1,7 +1,8 @@ +BDEPEND=>=dev-vcs/git-1.8.2.1[curl] 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(-)] DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-python/setuptools[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(-)] test? ( dev-libs/glib:2 dev-libs/gobject-introspection dev-util/ninja dev-vcs/git virtual/pkgconfig ) >=dev-vcs/git-1.8.2.1[curl] 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(-)] +DEPEND=dev-python/setuptools[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(-)] test? ( dev-libs/glib:2 dev-libs/gobject-introspection dev-util/ninja dev-vcs/git virtual/pkgconfig ) DESCRIPTION=Open source build system -EAPI=6 +EAPI=7 HOMEPAGE=http://mesonbuild.com/ IUSE=test python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 LICENSE=Apache-2.0 @@ -9,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python3_5(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 git-r3 0d4635eeb5a96cd5315597a47eba25c9 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=f4a7958a1f21c61f1945287e815c5c48 +_eclasses_=distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 git-r3 0d4635eeb5a96cd5315597a47eba25c9 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=f5e02c2d612ecd636fc96ca2f0d69409 diff --git a/metadata/md5-cache/dev-util/scons-3.0.4 b/metadata/md5-cache/dev-util/scons-3.0.4 index cbb2cc9e0ca1..19171b4ea027 100644 --- a/metadata/md5-cache/dev-util/scons-3.0.4 +++ b/metadata/md5-cache/dev-util/scons-3.0.4 @@ -4,7 +4,7 @@ DESCRIPTION=Extensible Python-based build utility EAPI=6 HOMEPAGE=http://www.scons.org/ IUSE=doc test python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/scons/scons-3.0.4.tar.gz doc? ( http://www.scons.org/doc/3.0.4/PDF/scons-user.pdf -> scons-3.0.4-user.pdf http://www.scons.org/doc/3.0.4/HTML/scons-user.html -> scons-3.0.4-user.html ) test? ( https://github.com/scons/scons/archive/3.0.4.tar.gz -> scons-3.0.4.gh.tar.gz ) _eclasses_=distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=4cef8b6ccf9b97e8a85c6016521bb7f4 +_md5_=ed0dbe217d209ef1cd4d55ae7cd88b9d diff --git a/metadata/md5-cache/dev-util/valgrind-3.14.0 b/metadata/md5-cache/dev-util/valgrind-3.14.0 index 4ef85c7b4412..3a946e888ab7 100644 --- a/metadata/md5-cache/dev-util/valgrind-3.14.0 +++ b/metadata/md5-cache/dev-util/valgrind-3.14.0 @@ -4,10 +4,10 @@ DESCRIPTION=An open-source memory debugger for GNU/Linux EAPI=6 HOMEPAGE=http://www.valgrind.org IUSE=mpi -KEYWORDS=-* amd64 ~arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x64-solaris +KEYWORDS=-* amd64 arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x64-solaris LICENSE=GPL-2 RDEPEND=mpi? ( virtual/mpi ) SLOT=0 SRC_URI=ftp://sourceware.org/pub/valgrind/valgrind-3.14.0.tar.bz2 _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 pax-utils e85f015e815dd463b0c206d781ef45a5 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=04872794585901f0235194f34a5b4b81 +_md5_=efc8c8c0081aa15345e07fe4e17fbde0 diff --git a/metadata/md5-cache/dev-vcs/Manifest.gz b/metadata/md5-cache/dev-vcs/Manifest.gz index 2843b93907b9..832c8e13c20b 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/git-2.19.2 b/metadata/md5-cache/dev-vcs/git-2.19.2 index 72dabdd9b695..538808edfb2f 100644 --- a/metadata/md5-cache/dev-vcs/git-2.19.2 +++ b/metadata/md5-cache/dev-vcs/git-2.19.2 @@ -11,4 +11,4 @@ REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) mediawiki-experimen SLOT=0 SRC_URI=mirror://kernel/software/scm/git/git-2.19.2.tar.xz mirror://kernel/software/scm/git/git-manpages-2.19.2.tar.xz doc? ( mirror://kernel/software/scm/git/git-htmldocs-2.19.2.tar.xz ) _eclasses_=bash-completion-r1 47a7402d95930413ce25ba8d857339bb desktop b1d22ac8bdd4679ab79c71aca235009d elisp-common 23f47b2e1de7abf387105eddd1318738 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 l10n 97f2753e3f1f3753d53d856c7c0bbb0b ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module 71c828c354a4cddced2641dda2695de5 preserve-libs ef207dc62baddfddfd39a164d9797648 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=ba25a8673f1d77f19ec313de1e016af5 +_md5_=c0254e45c68768ab774eb5ea0aee221d diff --git a/metadata/md5-cache/dev-vcs/git-2.20.1 b/metadata/md5-cache/dev-vcs/git-2.20.1 index cf33e35cd8e0..8a14a1b30a31 100644 --- a/metadata/md5-cache/dev-vcs/git-2.20.1 +++ b/metadata/md5-cache/dev-vcs/git-2.20.1 @@ -11,4 +11,4 @@ REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) mediawiki-experimen SLOT=0 SRC_URI=mirror://kernel/software/scm/git/git-2.20.1.tar.xz mirror://kernel/software/scm/git/git-manpages-2.20.1.tar.xz doc? ( mirror://kernel/software/scm/git/git-htmldocs-2.20.1.tar.xz ) _eclasses_=bash-completion-r1 47a7402d95930413ce25ba8d857339bb desktop b1d22ac8bdd4679ab79c71aca235009d elisp-common 23f47b2e1de7abf387105eddd1318738 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 l10n 97f2753e3f1f3753d53d856c7c0bbb0b ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module 71c828c354a4cddced2641dda2695de5 preserve-libs ef207dc62baddfddfd39a164d9797648 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=863b6784d2776ef257a0d23b9c077403 +_md5_=7540406c562aad938ee5a6c9ab15a474 diff --git a/metadata/md5-cache/dev-vcs/git-2.21.0 b/metadata/md5-cache/dev-vcs/git-2.21.0 index eee2ff64180d..a4198bec0f91 100644 --- a/metadata/md5-cache/dev-vcs/git-2.21.0 +++ b/metadata/md5-cache/dev-vcs/git-2.21.0 @@ -11,4 +11,4 @@ REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) mediawiki-experimen SLOT=0 SRC_URI=mirror://kernel/software/scm/git/git-2.21.0.tar.xz mirror://kernel/software/scm/git/git-manpages-2.21.0.tar.xz doc? ( mirror://kernel/software/scm/git/git-htmldocs-2.21.0.tar.xz ) _eclasses_=bash-completion-r1 47a7402d95930413ce25ba8d857339bb elisp-common 23f47b2e1de7abf387105eddd1318738 l10n 97f2753e3f1f3753d53d856c7c0bbb0b multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module 71c828c354a4cddced2641dda2695de5 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=66d2c7ef171a894befcaf93ddc17bd64 +_md5_=cd9efab43fb0ca92503b9f7912192c0b diff --git a/metadata/md5-cache/dev-vcs/git-2.21.0-r1 b/metadata/md5-cache/dev-vcs/git-2.21.0-r1 index 97975d69970c..a4be0fe0df88 100644 --- a/metadata/md5-cache/dev-vcs/git-2.21.0-r1 +++ b/metadata/md5-cache/dev-vcs/git-2.21.0-r1 @@ -11,4 +11,4 @@ REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) mediawiki-experimen SLOT=0 SRC_URI=mirror://kernel/software/scm/git/git-2.21.0.tar.xz mirror://kernel/software/scm/git/git-manpages-2.21.0.tar.xz doc? ( mirror://kernel/software/scm/git/git-htmldocs-2.21.0.tar.xz ) _eclasses_=bash-completion-r1 47a7402d95930413ce25ba8d857339bb elisp-common 23f47b2e1de7abf387105eddd1318738 l10n 97f2753e3f1f3753d53d856c7c0bbb0b multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module 71c828c354a4cddced2641dda2695de5 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=5a193a5c1ffba013c354f5e0e2ce2761 +_md5_=ccf73fee865288df58f0de79a52e419d diff --git a/metadata/md5-cache/dev-vcs/git-2.21.0-r2 b/metadata/md5-cache/dev-vcs/git-2.21.0-r2 index dff34fcdc1fd..909f2fbde7a1 100644 --- a/metadata/md5-cache/dev-vcs/git-2.21.0-r2 +++ b/metadata/md5-cache/dev-vcs/git-2.21.0-r2 @@ -11,4 +11,4 @@ REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) mediawiki-experimen SLOT=0 SRC_URI=mirror://kernel/software/scm/git/git-2.21.0.tar.xz mirror://kernel/software/scm/git/git-manpages-2.21.0.tar.xz doc? ( mirror://kernel/software/scm/git/git-htmldocs-2.21.0.tar.xz ) _eclasses_=bash-completion-r1 47a7402d95930413ce25ba8d857339bb elisp-common 23f47b2e1de7abf387105eddd1318738 l10n 97f2753e3f1f3753d53d856c7c0bbb0b multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module 71c828c354a4cddced2641dda2695de5 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=f2ae35c0c28aef29d0641f7c95b6773f +_md5_=9a459534fe2d97384fa21d8790564c3f diff --git a/metadata/md5-cache/dev-vcs/git-9999 b/metadata/md5-cache/dev-vcs/git-9999 index 55407adb6a92..d1dcae3d27fa 100644 --- a/metadata/md5-cache/dev-vcs/git-9999 +++ b/metadata/md5-cache/dev-vcs/git-9999 @@ -9,4 +9,4 @@ RDEPEND=gnome-keyring? ( app-crypt/libsecret ) !libressl? ( dev-libs/openssl:0= REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) mediawiki-experimental? ( mediawiki ) subversion? ( perl ) webdav? ( curl ) pcre-jit? ( pcre ) python? ( ^^ ( python_single_target_python2_7 python_single_target_python3_5 python_single_target_python3_6 python_single_target_python3_7 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_5? ( python_targets_python3_5 ) python_single_target_python3_6? ( python_targets_python3_6 ) python_single_target_python3_7? ( python_targets_python3_7 ) ) SLOT=0 _eclasses_=bash-completion-r1 47a7402d95930413ce25ba8d857339bb elisp-common 23f47b2e1de7abf387105eddd1318738 git-r3 0d4635eeb5a96cd5315597a47eba25c9 l10n 97f2753e3f1f3753d53d856c7c0bbb0b multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module 71c828c354a4cddced2641dda2695de5 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=a07c9daf7624c5273b4f4bac28272e1c +_md5_=487158a9a12177b443b788344067e482 diff --git a/metadata/md5-cache/dev-vcs/git-9999-r1 b/metadata/md5-cache/dev-vcs/git-9999-r1 index 55407adb6a92..d1dcae3d27fa 100644 --- a/metadata/md5-cache/dev-vcs/git-9999-r1 +++ b/metadata/md5-cache/dev-vcs/git-9999-r1 @@ -9,4 +9,4 @@ RDEPEND=gnome-keyring? ( app-crypt/libsecret ) !libressl? ( dev-libs/openssl:0= REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) mediawiki-experimental? ( mediawiki ) subversion? ( perl ) webdav? ( curl ) pcre-jit? ( pcre ) python? ( ^^ ( python_single_target_python2_7 python_single_target_python3_5 python_single_target_python3_6 python_single_target_python3_7 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_5? ( python_targets_python3_5 ) python_single_target_python3_6? ( python_targets_python3_6 ) python_single_target_python3_7? ( python_targets_python3_7 ) ) SLOT=0 _eclasses_=bash-completion-r1 47a7402d95930413ce25ba8d857339bb elisp-common 23f47b2e1de7abf387105eddd1318738 git-r3 0d4635eeb5a96cd5315597a47eba25c9 l10n 97f2753e3f1f3753d53d856c7c0bbb0b multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module 71c828c354a4cddced2641dda2695de5 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=a07c9daf7624c5273b4f4bac28272e1c +_md5_=487158a9a12177b443b788344067e482 diff --git a/metadata/md5-cache/dev-vcs/git-9999-r2 b/metadata/md5-cache/dev-vcs/git-9999-r2 index 55407adb6a92..d1dcae3d27fa 100644 --- a/metadata/md5-cache/dev-vcs/git-9999-r2 +++ b/metadata/md5-cache/dev-vcs/git-9999-r2 @@ -9,4 +9,4 @@ RDEPEND=gnome-keyring? ( app-crypt/libsecret ) !libressl? ( dev-libs/openssl:0= REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) mediawiki-experimental? ( mediawiki ) subversion? ( perl ) webdav? ( curl ) pcre-jit? ( pcre ) python? ( ^^ ( python_single_target_python2_7 python_single_target_python3_5 python_single_target_python3_6 python_single_target_python3_7 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_5? ( python_targets_python3_5 ) python_single_target_python3_6? ( python_targets_python3_6 ) python_single_target_python3_7? ( python_targets_python3_7 ) ) SLOT=0 _eclasses_=bash-completion-r1 47a7402d95930413ce25ba8d857339bb elisp-common 23f47b2e1de7abf387105eddd1318738 git-r3 0d4635eeb5a96cd5315597a47eba25c9 l10n 97f2753e3f1f3753d53d856c7c0bbb0b multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module 71c828c354a4cddced2641dda2695de5 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=a07c9daf7624c5273b4f4bac28272e1c +_md5_=487158a9a12177b443b788344067e482 diff --git a/metadata/md5-cache/dev-vcs/git-9999-r3 b/metadata/md5-cache/dev-vcs/git-9999-r3 index 55407adb6a92..d1dcae3d27fa 100644 --- a/metadata/md5-cache/dev-vcs/git-9999-r3 +++ b/metadata/md5-cache/dev-vcs/git-9999-r3 @@ -9,4 +9,4 @@ RDEPEND=gnome-keyring? ( app-crypt/libsecret ) !libressl? ( dev-libs/openssl:0= REQUIRED_USE=cgi? ( perl ) cvs? ( perl ) mediawiki? ( perl ) mediawiki-experimental? ( mediawiki ) subversion? ( perl ) webdav? ( curl ) pcre-jit? ( pcre ) python? ( ^^ ( python_single_target_python2_7 python_single_target_python3_5 python_single_target_python3_6 python_single_target_python3_7 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_5? ( python_targets_python3_5 ) python_single_target_python3_6? ( python_targets_python3_6 ) python_single_target_python3_7? ( python_targets_python3_7 ) ) SLOT=0 _eclasses_=bash-completion-r1 47a7402d95930413ce25ba8d857339bb elisp-common 23f47b2e1de7abf387105eddd1318738 git-r3 0d4635eeb5a96cd5315597a47eba25c9 l10n 97f2753e3f1f3753d53d856c7c0bbb0b multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module 71c828c354a4cddced2641dda2695de5 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=a07c9daf7624c5273b4f4bac28272e1c +_md5_=487158a9a12177b443b788344067e482 diff --git a/metadata/md5-cache/dev-vcs/git-remote-hg-0.2 b/metadata/md5-cache/dev-vcs/git-remote-hg-0.2 deleted file mode 100644 index 58d17489ef79..000000000000 --- a/metadata/md5-cache/dev-vcs/git-remote-hg-0.2 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install -DEPEND=dev-vcs/git dev-vcs/mercurial -DESCRIPTION=Semi-official Mercurial bridge from Git project -EAPI=6 -HOMEPAGE=https://github.com/felipec/git-remote-hg -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=dev-vcs/git dev-vcs/mercurial -RESTRICT=test -SLOT=0 -SRC_URI=https://github.com/felipec/git-remote-hg/archive/v0.2.tar.gz -> git-remote-hg-0.2.tar.gz -_md5_=f5034699ff703b8a40500539621541ef diff --git a/metadata/md5-cache/dev-vcs/git-remote-hg-0.3 b/metadata/md5-cache/dev-vcs/git-remote-hg-0.3 deleted file mode 100644 index 97aa26b35e26..000000000000 --- a/metadata/md5-cache/dev-vcs/git-remote-hg-0.3 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install -DEPEND=dev-vcs/git dev-vcs/mercurial app-text/asciidoc -DESCRIPTION=Semi-official Mercurial bridge from Git project -EAPI=6 -HOMEPAGE=https://github.com/felipec/git-remote-hg -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=dev-vcs/git dev-vcs/mercurial -RESTRICT=test -SLOT=0 -SRC_URI=https://github.com/felipec/git-remote-hg/archive/v0.3.tar.gz -> git-remote-hg-0.3.tar.gz -_md5_=5d80bed5d723c811c8fa72421c8f46c2 diff --git a/metadata/md5-cache/dev-vcs/git-remote-hg-1.0.0 b/metadata/md5-cache/dev-vcs/git-remote-hg-1.0.0 new file mode 100644 index 000000000000..aff7ccc92d11 --- /dev/null +++ b/metadata/md5-cache/dev-vcs/git-remote-hg-1.0.0 @@ -0,0 +1,15 @@ +BDEPEND=app-text/asciidoc python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Semi-official Mercurial bridge from Git project +EAPI=7 +HOMEPAGE=https://github.com/mnauw/git-remote-hg +IUSE=python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=dev-vcs/git dev-vcs/mercurial python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 ) +RESTRICT=test +SLOT=0 +SRC_URI=https://github.com/mnauw/git-remote-hg/archive/v1.0.0.tar.gz -> git-remote-hg-1.0.0.tar.gz +_eclasses_=distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=f04febd85e27ca8bcc6529782c7706af diff --git a/metadata/md5-cache/games-emulation/Manifest.gz b/metadata/md5-cache/games-emulation/Manifest.gz index 89d990ea98c2..baa98ff280de 100644 Binary files a/metadata/md5-cache/games-emulation/Manifest.gz and b/metadata/md5-cache/games-emulation/Manifest.gz differ diff --git a/metadata/md5-cache/games-emulation/mgba-9999 b/metadata/md5-cache/games-emulation/mgba-9999 new file mode 100644 index 000000000000..1e1abd0c13ce --- /dev/null +++ b/metadata/md5-cache/games-emulation/mgba-9999 @@ -0,0 +1,13 @@ +BDEPEND=dev-util/ninja >=dev-util/cmake-3.9.6 >=dev-vcs/git-1.8.2.1[curl] +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test unpack +DEPEND=media-libs/libpng:0= sys-libs/zlib[minizip] elf? ( dev-libs/elfutils ) ffmpeg? ( libav? ( media-video/libav:= ) !libav? ( media-video/ffmpeg:= ) ) imagemagick? ( media-gfx/imagemagick:= ) opengl? ( virtual/opengl ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtwidgets:5 opengl? ( dev-qt/qtopengl:5 ) ) sdl? ( media-libs/libsdl2[X,sound,joystick,video,opengl?] ) sqlite? ( dev-db/sqlite:3 ) dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Game Boy Advance emulator written in C +EAPI=7 +HOMEPAGE=https://mgba.io +IUSE=debug elf ffmpeg imagemagick libav opengl qt5 +sdl sqlite +LICENSE=MPL-2.0 +RDEPEND=media-libs/libpng:0= sys-libs/zlib[minizip] elf? ( dev-libs/elfutils ) ffmpeg? ( libav? ( media-video/libav:= ) !libav? ( media-video/ffmpeg:= ) ) imagemagick? ( media-gfx/imagemagick:= ) opengl? ( virtual/opengl ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtwidgets:5 opengl? ( dev-qt/qtopengl:5 ) ) sdl? ( media-libs/libsdl2[X,sound,joystick,video,opengl?] ) sqlite? ( dev-db/sqlite:3 ) +REQUIRED_USE=|| ( qt5 sdl ) qt5? ( opengl ) +SLOT=0 +_eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 desktop b1d22ac8bdd4679ab79c71aca235009d eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf git-r3 0d4635eeb5a96cd5315597a47eba25c9 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs b45201c4e6c096b98e250336954e64b9 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 14d00d009167652b1fa363e55effe213 +_md5_=73d7f1c5b193c0e38ea40081aa69e91d diff --git a/metadata/md5-cache/gnome-extra/Manifest.gz b/metadata/md5-cache/gnome-extra/Manifest.gz index 25ff71621c94..01e040a0121d 100644 Binary files a/metadata/md5-cache/gnome-extra/Manifest.gz and b/metadata/md5-cache/gnome-extra/Manifest.gz differ diff --git a/metadata/md5-cache/gnome-extra/gnome-shell-extension-applications-overview-tooltip-4 b/metadata/md5-cache/gnome-extra/gnome-shell-extension-applications-overview-tooltip-4 new file mode 100644 index 000000000000..c9e5b1892143 --- /dev/null +++ b/metadata/md5-cache/gnome-extra/gnome-shell-extension-applications-overview-tooltip-4 @@ -0,0 +1,12 @@ +DEFINED_PHASES=install postinst unpack +DEPEND=dev-libs/glib:2 +DESCRIPTION=Show tooltip with full name and description +EAPI=6 +HOMEPAGE=https://github.com/RaphaelRochet/applications-overview-tooltip +KEYWORDS=~amd64 ~x86 +LICENSE=public-domain +RDEPEND=dev-libs/glib:2 app-eselect/eselect-gnome-shell-extensions >=gnome-base/gnome-shell-3.20 +SLOT=0 +SRC_URI=https://github.com/RaphaelRochet/applications-overview-tooltip/archive/v4.tar.gz -> gnome-shell-extension-applications-overview-tooltip-4.tar.gz +_eclasses_=vcs-snapshot b77011b62e2053c646ad720defe6d921 +_md5_=8c32ea466ddc6fa91fee7a293f677bd4 diff --git a/metadata/md5-cache/gnome-extra/gnome-shell-extension-dash-to-panel-19 b/metadata/md5-cache/gnome-extra/gnome-shell-extension-dash-to-panel-19 index eeb45e5010df..886da65dc8d9 100644 --- a/metadata/md5-cache/gnome-extra/gnome-shell-extension-dash-to-panel-19 +++ b/metadata/md5-cache/gnome-extra/gnome-shell-extension-dash-to-panel-19 @@ -10,4 +10,4 @@ RDEPEND=dev-libs/glib:2 app-eselect/eselect-gnome-shell-extensions >=gnome-base/ SLOT=0 SRC_URI=https://github.com/home-sweet-gnome/dash-to-panel/archive/v19.tar.gz -> gnome-shell-extension-dash-to-panel-19.tar.gz _eclasses_=gnome2-utils 532371cfcba45b2ab0d2950547c97d95 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=e07548de94e823d88f2599149714b56b +_md5_=170baab5da3318211be59afc6cfbd2fb diff --git a/metadata/md5-cache/gnome-extra/pch-session-3.30.0.2 b/metadata/md5-cache/gnome-extra/pch-session-3.30.0.2 new file mode 100644 index 000000000000..0051be0fdaa0 --- /dev/null +++ b/metadata/md5-cache/gnome-extra/pch-session-3.30.0.2 @@ -0,0 +1,11 @@ +DEFINED_PHASES=install postinst postrm +DESCRIPTION=Unofficial gnome based session with different default settings and extensions +EAPI=7 +HOMEPAGE=https://gitlab.com/pachoramos/pch-session +KEYWORDS=~amd64 +LICENSE=GPL-2 +RDEPEND=>=gnome-base/gnome-shell-3.30 gnome-extra/gnome-shell-extensions gnome-extra/gnome-shell-extension-applications-overview-tooltip gnome-extra/gnome-shell-extension-dash-to-panel gnome-extra/gnome-shell-extension-desktop-icons gnome-extra/gnome-shell-extension-gsconnect gnome-extra/gnome-shell-extensions-topicons-plus gnome-extra/gnome-tweaks +SLOT=0 +SRC_URI=https://gitlab.com/pachoramos/pch-session/-/archive/3.30.0.2/pch-session-3.30.0.2.tar.bz2 +_eclasses_=gnome2-utils 532371cfcba45b2ab0d2950547c97d95 xdg-utils 14d00d009167652b1fa363e55effe213 +_md5_=d08a8eb3b132ad8670f6f398957e6b29 diff --git a/metadata/md5-cache/gnome-extra/polkit-gnome-0.105-r1 b/metadata/md5-cache/gnome-extra/polkit-gnome-0.105-r1 index 0beab80ec2fd..c653fada3fd3 100644 --- a/metadata/md5-cache/gnome-extra/polkit-gnome-0.105-r1 +++ b/metadata/md5-cache/gnome-extra/polkit-gnome-0.105-r1 @@ -3,10 +3,10 @@ DEPEND=>=dev-libs/glib-2.30 >=sys-auth/polkit-0.102 x11-libs/gtk+:3 !lxde-base/l DESCRIPTION=A dbus session bus service that is used to bring up authentication dialogs EAPI=4 HOMEPAGE=https://www.freedesktop.org/wiki/Software/polkit -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd LICENSE=LGPL-2 RDEPEND=>=dev-libs/glib-2.30 >=sys-auth/polkit-0.102 x11-libs/gtk+:3 !lxde-base/lxpolkit SLOT=0 SRC_URI=mirror://gnome/sources/polkit-gnome/0.105/polkit-gnome-0.105.tar.xz _eclasses_=eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 estack 43ddf5aaffa7a8d0482df54d25a66a1f gnome.org 532d56d07b9eace4831aaa817d2b756a versionator 2352c3fc97241f6a02042773c8287748 -_md5_=2b63a1ed5634305b94684bf86779045d +_md5_=34e12bc5dd973f574195d3962f507182 diff --git a/metadata/md5-cache/kde-apps/Manifest.gz b/metadata/md5-cache/kde-apps/Manifest.gz index c793842beb64..a451b407df5b 100644 Binary files a/metadata/md5-cache/kde-apps/Manifest.gz and b/metadata/md5-cache/kde-apps/Manifest.gz differ diff --git a/metadata/md5-cache/kde-apps/audiocd-kio-19.04.0 b/metadata/md5-cache/kde-apps/audiocd-kio-19.04.0 index d513c88ce5d7..9d174b8dbb6b 100644 --- a/metadata/md5-cache/kde-apps/audiocd-kio-19.04.0 +++ b/metadata/md5-cache/kde-apps/audiocd-kio-19.04.0 @@ -11,4 +11,4 @@ RDEPEND=>=kde-frameworks/kcompletion-5.57.0:5 >=kde-frameworks/kconfig-5.57.0:5 SLOT=5 SRC_URI=mirror://kde/stable/applications/19.04.0/src/audiocd-kio-19.04.0.tar.xz _eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf kde5 79b9341795c77777bb58dd1513bcbbb6 kde5-functions d2eb74228ec6cacb426e9e65eff37784 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs b45201c4e6c096b98e250336954e64b9 virtualx 401b718cc14d43a5a7fbe062c4851ba5 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=b9c3e49af2a383b51ecb2ace7f72d5c3 +_md5_=b99dcaa2c30cf06ef3d035aaeeb38751 diff --git a/metadata/md5-cache/kde-apps/libkomparediff2-19.04.0 b/metadata/md5-cache/kde-apps/libkomparediff2-19.04.0 index d8ad1701bd0a..0049303f1caf 100644 --- a/metadata/md5-cache/kde-apps/libkomparediff2-19.04.0 +++ b/metadata/md5-cache/kde-apps/libkomparediff2-19.04.0 @@ -11,4 +11,4 @@ RDEPEND=>=kde-frameworks/kcodecs-5.57.0:5 >=kde-frameworks/kconfig-5.57.0:5 >=kd SLOT=5 SRC_URI=mirror://kde/stable/applications/19.04.0/src/libkomparediff2-19.04.0.tar.xz _eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf kde5 79b9341795c77777bb58dd1513bcbbb6 kde5-functions d2eb74228ec6cacb426e9e65eff37784 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs b45201c4e6c096b98e250336954e64b9 virtualx 401b718cc14d43a5a7fbe062c4851ba5 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=35ff09ff668a0be7914f78fafc8ddbdc +_md5_=92cfb96f70c3555c1533dd083358145e diff --git a/metadata/md5-cache/kde-frameworks/Manifest.gz b/metadata/md5-cache/kde-frameworks/Manifest.gz index 9c6592558255..3fa9e05b6b4d 100644 Binary files a/metadata/md5-cache/kde-frameworks/Manifest.gz and b/metadata/md5-cache/kde-frameworks/Manifest.gz differ diff --git a/metadata/md5-cache/kde-frameworks/ki18n-5.57.0 b/metadata/md5-cache/kde-frameworks/ki18n-5.57.0 index 57cace624f3d..43220648679b 100644 --- a/metadata/md5-cache/kde-frameworks/ki18n-5.57.0 +++ b/metadata/md5-cache/kde-frameworks/ki18n-5.57.0 @@ -12,4 +12,4 @@ REQUIRED_USE=^^ ( python_single_target_python2_7 python_single_target_python3_5 SLOT=5/5.57 SRC_URI=mirror://kde/stable/frameworks/5.57/ki18n-5.57.0.tar.xz _eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf kde5 79b9341795c77777bb58dd1513bcbbb6 kde5-functions d2eb74228ec6cacb426e9e65eff37784 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 virtualx 401b718cc14d43a5a7fbe062c4851ba5 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=4f9e0df4878de070db2ee2aaf09a7b9b +_md5_=18ec24f701eb7394e4e85aef42730292 diff --git a/metadata/md5-cache/kde-frameworks/solid-5.57.0 b/metadata/md5-cache/kde-frameworks/solid-5.57.0-r1 similarity index 74% rename from metadata/md5-cache/kde-frameworks/solid-5.57.0 rename to metadata/md5-cache/kde-frameworks/solid-5.57.0-r1 index 74719b276f85..60de3e53cd04 100644 --- a/metadata/md5-cache/kde-frameworks/solid-5.57.0 +++ b/metadata/md5-cache/kde-frameworks/solid-5.57.0-r1 @@ -1,14 +1,14 @@ BDEPEND=nls? ( >=dev-qt/linguist-tools-5.11.1:5 ) dev-util/ninja >=dev-util/cmake-3.9.6 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) >=kde-frameworks/extra-cmake-modules-5.57:5 doc? ( >=dev-qt/qthelp-5.11.1:5 >=app-doc/doxygen-1.8.13-r1 ) DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack -DEPEND=>=dev-qt/qtdbus-5.11.1:5 >=dev-qt/qtdeclarative-5.11.1:5 >=dev-qt/qtwidgets-5.11.1:5 >=dev-qt/qtxml-5.11.1:5 sys-fs/udisks:2 udev? ( virtual/udev ) test? ( >=dev-qt/qtconcurrent-5.11.1:5 ) dev-util/desktop-file-utils x11-misc/shared-mime-info test? ( >=dev-qt/qttest-5.11.1:5 ) >=dev-qt/qtcore-5.11.1:5 doc? ( >=dev-qt/qt-docs-5.11.1:5 ) dev-util/desktop-file-utils app-arch/xz-utils +DEPEND=>=dev-qt/qtdbus-5.11.1:5 >=dev-qt/qtdeclarative-5.11.1:5 >=dev-qt/qtwidgets-5.11.1:5 >=dev-qt/qtxml-5.11.1:5 sys-fs/udisks:2 udev? ( virtual/libudev:= ) test? ( >=dev-qt/qtconcurrent-5.11.1:5 ) dev-util/desktop-file-utils x11-misc/shared-mime-info test? ( >=dev-qt/qttest-5.11.1:5 ) >=dev-qt/qtcore-5.11.1:5 doc? ( >=dev-qt/qt-docs-5.11.1:5 ) dev-util/desktop-file-utils app-arch/xz-utils DESCRIPTION=Provider for platform independent hardware discovery, abstraction and management EAPI=7 HOMEPAGE=https://kde.org/ IUSE=nls udev test debug doc test KEYWORDS=~amd64 ~arm ~arm64 ~x86 LICENSE=LGPL-2.1+ -RDEPEND=>=dev-qt/qtdbus-5.11.1:5 >=dev-qt/qtdeclarative-5.11.1:5 >=dev-qt/qtwidgets-5.11.1:5 >=dev-qt/qtxml-5.11.1:5 sys-fs/udisks:2 udev? ( virtual/udev ) >=kde-frameworks/kf-env-4 || ( >=kde-frameworks/breeze-icons-5.57:5 kde-frameworks/oxygen-icons:* ) >=dev-qt/qtcore-5.11.1:5 doc? ( >=dev-qt/qt-docs-5.11.1:5 ) +RDEPEND=>=dev-qt/qtdbus-5.11.1:5 >=dev-qt/qtdeclarative-5.11.1:5 >=dev-qt/qtwidgets-5.11.1:5 >=dev-qt/qtxml-5.11.1:5 sys-fs/udisks:2 udev? ( virtual/libudev:= ) >=kde-frameworks/kf-env-4 || ( >=kde-frameworks/breeze-icons-5.57:5 kde-frameworks/oxygen-icons:* ) >=dev-qt/qtcore-5.11.1:5 doc? ( >=dev-qt/qt-docs-5.11.1:5 ) SLOT=5/5.57 SRC_URI=mirror://kde/stable/frameworks/5.57/solid-5.57.0.tar.xz _eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf kde5 79b9341795c77777bb58dd1513bcbbb6 kde5-functions d2eb74228ec6cacb426e9e65eff37784 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs b45201c4e6c096b98e250336954e64b9 virtualx 401b718cc14d43a5a7fbe062c4851ba5 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=3c2ea25337f7bce1600ab6a660873ccf +_md5_=56a66fea9b765f1b21bd8940973ced55 diff --git a/metadata/md5-cache/kde-plasma/Manifest.gz b/metadata/md5-cache/kde-plasma/Manifest.gz index 855d272acc25..6a0bfad60c2b 100644 Binary files a/metadata/md5-cache/kde-plasma/Manifest.gz and b/metadata/md5-cache/kde-plasma/Manifest.gz differ diff --git a/metadata/md5-cache/kde-plasma/systemsettings-5.15.4 b/metadata/md5-cache/kde-plasma/systemsettings-5.15.4 index df7a03b79f18..184a0ace48ca 100644 --- a/metadata/md5-cache/kde-plasma/systemsettings-5.15.4 +++ b/metadata/md5-cache/kde-plasma/systemsettings-5.15.4 @@ -11,4 +11,4 @@ RDEPEND=>=kde-frameworks/kactivities-5.54.0:5 >=kde-frameworks/kactivities-stats SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.15.4/systemsettings-5.15.4.tar.xz _eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf kde5 79b9341795c77777bb58dd1513bcbbb6 kde5-functions d2eb74228ec6cacb426e9e65eff37784 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs b45201c4e6c096b98e250336954e64b9 virtualx 401b718cc14d43a5a7fbe062c4851ba5 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=8985743a04c4b6fc0ba8ebb251564c57 +_md5_=416319dbc832d681c1cb88e9eea10efd diff --git a/metadata/md5-cache/mate-base/Manifest.gz b/metadata/md5-cache/mate-base/Manifest.gz index ffead2e1cc73..9b2720766466 100644 Binary files a/metadata/md5-cache/mate-base/Manifest.gz and b/metadata/md5-cache/mate-base/Manifest.gz differ diff --git a/metadata/md5-cache/mate-base/mate-1.22 b/metadata/md5-cache/mate-base/mate-1.22 index e12b65b038c8..328fbe8e53c0 100644 --- a/metadata/md5-cache/mate-base/mate-1.22 +++ b/metadata/md5-cache/mate-base/mate-1.22 @@ -1,7 +1,7 @@ DEFINED_PHASES=postinst DESCRIPTION=Meta ebuild for MATE, a traditional desktop environment EAPI=6 -HOMEPAGE=http://mate-desktop.org +HOMEPAGE=https://mate-desktop.org IUSE=+base -bluetooth help +notification +themes +extras KEYWORDS=amd64 ~arm ~arm64 x86 LICENSE=metapackage @@ -9,4 +9,4 @@ PDEPEND=notification? ( =x11-misc/mate-notification-daemon-1.22* ) virtual/notif RDEPEND==mate-base/mate-desktop-1.22* =mate-base/mate-menus-1.22* =mate-base/mate-panel-1.22* =mate-base/mate-session-manager-1.22* =mate-base/mate-settings-daemon-1.22* =x11-wm/marco-1.22* base? ( =mate-base/caja-1.22* =mate-base/mate-applets-meta-1.22* =mate-base/mate-control-center-1.22* =mate-extra/mate-media-1.22* =x11-misc/mozo-1.22* =x11-terms/mate-terminal-1.22* ) bluetooth? ( net-wireless/blueman ) themes? ( =x11-themes/mate-backgrounds-1.22* =x11-themes/mate-icon-theme-1.22* >=x11-themes/mate-themes-meta-3 ) extras? ( =app-arch/engrampa-1.22* =app-editors/pluma-1.22* =app-text/atril-1.22* =mate-extra/caja-extensions-1.22* =mate-extra/mate-calc-1.22* =mate-extra/mate-netbook-1.22* =mate-extra/mate-power-manager-1.22* =mate-extra/mate-screensaver-1.22* =mate-extra/mate-system-monitor-1.22* =mate-extra/mate-utils-1.22* =media-gfx/eom-1.22* sys-apps/gnome-disk-utility ) help? ( gnome-extra/yelp =mate-extra/mate-user-guide-1.22* ) SLOT=0 _eclasses_=eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 -_md5_=e11a3cc25b2b06695b661f0c8ac29135 +_md5_=f6e38e602886afb97f23e8f03a49b5ff diff --git a/metadata/md5-cache/mate-base/mate-session-manager-1.22.0 b/metadata/md5-cache/mate-base/mate-session-manager-1.22.0 index 3a1ac820baa3..39ef4b5c8cbc 100644 --- a/metadata/md5-cache/mate-base/mate-session-manager-1.22.0 +++ b/metadata/md5-cache/mate-base/mate-session-manager-1.22.0 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare DEPEND=>=dev-libs/dbus-glib-0.76 >=dev-libs/glib-2.50:2 dev-libs/libxslt sys-apps/dbus x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-3.22:3 x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXau x11-libs/libXext x11-libs/libXrender x11-libs/libXtst x11-libs/pango virtual/libintl elibc_FreeBSD? ( || ( dev-libs/libexecinfo >=sys-freebsd/freebsd-lib-10.0 ) ) systemd? ( sys-apps/systemd ) !systemd? ( elogind? ( sys-auth/elogind ) !elogind? ( >=sys-auth/consolekit-0.9.2 ) ) xtrans? ( x11-libs/xtrans ) >=dev-lang/perl-5 dev-util/glib-utils >=dev-util/intltool-0.40 >=sys-devel/gettext-0.10.40 virtual/pkgconfig >=app-portage/elt-patches-20170815 app-arch/xz-utils dev-util/desktop-file-utils x11-misc/shared-mime-info !=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 >=mate-base/mate-common-1.22 DESCRIPTION=MATE session manager EAPI=6 -HOMEPAGE=http://mate-desktop.org/ +HOMEPAGE=https://mate-desktop.org/ IUSE=debug elibc_FreeBSD elogind gnome-keyring ipv6 systemd +xtrans KEYWORDS=amd64 ~arm ~arm64 x86 LICENSE=GPL-2 LGPL-2 FDL-1.1 @@ -11,4 +11,4 @@ REQUIRED_USE=?? ( elogind systemd ) SLOT=0 SRC_URI=https://pub.mate-desktop.org/releases/1.22/mate-session-manager-1.22.0.tar.xz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome.org 532d56d07b9eace4831aaa817d2b756a gnome2 1a42e8c41af42cb294817dcc5b7e3df6 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 mate 1d1847564eac8e0da804d51adea0a01d mate-desktop.org e10ab79a4595873541dc4897c7b19724 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=aa5cb9acbdc1fa5033748a06c41e1f9e +_md5_=e4f3975695b16a04cfa32ef2f3f7cf05 diff --git a/metadata/md5-cache/media-gfx/Manifest.gz b/metadata/md5-cache/media-gfx/Manifest.gz index 6ea40120f4de..0584cf313250 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/gpicview-0.2.5-r1 b/metadata/md5-cache/media-gfx/gpicview-0.2.5-r1 index 7a93b051c746..f96e780a23df 100644 --- a/metadata/md5-cache/media-gfx/gpicview-0.2.5-r1 +++ b/metadata/md5-cache/media-gfx/gpicview-0.2.5-r1 @@ -3,10 +3,10 @@ DEPEND=virtual/jpeg:0 >=x11-libs/gtk+-2.6:2 >=dev-util/intltool-0.40 sys-devel/g DESCRIPTION=A Simple and Fast Image Viewer for X EAPI=6 HOMEPAGE=http://lxde.sourceforge.net/gpicview -KEYWORDS=~alpha amd64 ~arm ~arm64 ~ppc ~x86 ~x86-linux +KEYWORDS=~alpha amd64 arm ~arm64 ~ppc ~x86 ~x86-linux LICENSE=GPL-2 RDEPEND=virtual/jpeg:0 >=x11-libs/gtk+-2.6:2 SLOT=0 SRC_URI=mirror://sourceforge/lxde/gpicview-0.2.5.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=253e1604f78ac29c20ebc689e1815719 +_md5_=380bcf7d62b0d8033c9a52282df1c7da diff --git a/metadata/md5-cache/media-gfx/scrot-0.8-r1 b/metadata/md5-cache/media-gfx/scrot-0.8-r1 index 5ab2b2917601..833b62e75e5b 100644 --- a/metadata/md5-cache/media-gfx/scrot-0.8-r1 +++ b/metadata/md5-cache/media-gfx/scrot-0.8-r1 @@ -3,10 +3,10 @@ DEPEND=>=media-libs/imlib2-1.0.3 >=media-libs/giblib-1.2.3 DESCRIPTION=Screen capture utility using imlib2 library EAPI=5 HOMEPAGE=http://www.linuxbrit.co.uk/ -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd LICENSE=feh LGPL-2+ RDEPEND=>=media-libs/imlib2-1.0.3 >=media-libs/giblib-1.2.3 SLOT=0 SRC_URI=http://www.linuxbrit.co.uk/downloads/scrot-0.8.tar.gz _eclasses_=bash-completion-r1 47a7402d95930413ce25ba8d857339bb multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=a69a132b84227ffea9ed9593102c6b98 +_md5_=9d8e129f6bb3846ccf0dbe396fec34c5 diff --git a/metadata/md5-cache/media-gfx/scrot-0.8_p13 b/metadata/md5-cache/media-gfx/scrot-0.8_p13 index 4bfe9398b29e..dbc92d28c1bc 100644 --- a/metadata/md5-cache/media-gfx/scrot-0.8_p13 +++ b/metadata/md5-cache/media-gfx/scrot-0.8_p13 @@ -3,10 +3,10 @@ DEPEND=>=media-libs/imlib2-1.0.3 >=media-libs/giblib-1.2.3 DESCRIPTION=Screen capture utility using imlib2 library EAPI=5 HOMEPAGE=http://scrot.sourcearchive.com/ -KEYWORDS=alpha amd64 arm hppa ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd +KEYWORDS=alpha amd64 arm ~arm64 hppa ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd LICENSE=feh LGPL-2+ RDEPEND=>=media-libs/imlib2-1.0.3 >=media-libs/giblib-1.2.3 SLOT=0 SRC_URI=http://scrot.sourcearchive.com/downloads/0.8-13/scrot_0.8.orig.tar.gz http://scrot.sourcearchive.com/downloads/0.8-13/scrot_0.8-13.debian.tar.gz _eclasses_=bash-completion-r1 47a7402d95930413ce25ba8d857339bb desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=92a23bc0c9cd5a3c0ee5d205cd574fd3 +_md5_=3d676376e879e26d79c4c1489475e98a diff --git a/metadata/md5-cache/media-gfx/scrot-0.8_p13-r1 b/metadata/md5-cache/media-gfx/scrot-0.8_p13-r1 index a44a328ec5dd..60facf6dc62a 100644 --- a/metadata/md5-cache/media-gfx/scrot-0.8_p13-r1 +++ b/metadata/md5-cache/media-gfx/scrot-0.8_p13-r1 @@ -3,10 +3,10 @@ DEPEND=>=media-libs/imlib2-1.0.3 >=media-libs/giblib-1.2.3 || ( media-libs/imlib DESCRIPTION=Screen capture utility using imlib2 library EAPI=5 HOMEPAGE=http://scrot.sourcearchive.com/ -KEYWORDS=~alpha amd64 arm ~hppa ~ppc ~ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd +KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ppc ~ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd LICENSE=feh LGPL-2+ RDEPEND=>=media-libs/imlib2-1.0.3 >=media-libs/giblib-1.2.3 || ( media-libs/imlib2[gif] media-libs/imlib2[jpeg] media-libs/imlib2[png] ) SLOT=0 SRC_URI=http://scrot.sourcearchive.com/downloads/0.8-13/scrot_0.8.orig.tar.gz http://scrot.sourcearchive.com/downloads/0.8-13/scrot_0.8-13.debian.tar.gz _eclasses_=bash-completion-r1 47a7402d95930413ce25ba8d857339bb desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=8130771bc2e4578376950d2a94449161 +_md5_=30f5b03f72d6ccf6d14d8e26830a2817 diff --git a/metadata/md5-cache/media-gfx/slic3r-9999 b/metadata/md5-cache/media-gfx/slic3r-9999 index 5e5182f32a60..f606a7157b61 100644 --- a/metadata/md5-cache/media-gfx/slic3r-9999 +++ b/metadata/md5-cache/media-gfx/slic3r-9999 @@ -8,4 +8,4 @@ LICENSE=AGPL-3 CC-BY-3.0 RDEPEND=!=dev-lang/perl-5.16* >=dev-libs/boost-1.55[threads] dev-perl/Class-XSAccessor dev-perl/Devel-CheckLib dev-perl/Devel-Size >=dev-perl/Encode-Locale-1.50.0 dev-perl/IO-stringy >=dev-perl/Math-PlanePath-53.0.0 >=dev-perl/Moo-1.3.1 dev-perl/XML-SAX-ExpatXS virtual/perl-Carp virtual/perl-Encode virtual/perl-File-Spec virtual/perl-Getopt-Long virtual/perl-parent virtual/perl-Scalar-List-Utils virtual/perl-Test-Simple virtual/perl-Thread-Semaphore >=virtual/perl-threads-1.960.0 virtual/perl-Time-HiRes virtual/perl-Unicode-Normalize virtual/perl-XSLoader gui? ( dev-perl/Class-Accessor dev-perl/Growl-GNTP dev-perl/libwww-perl dev-perl/Module-Pluggable dev-perl/Net-Bonjour dev-perl/Net-DBus dev-perl/OpenGL >=dev-perl/Wx-0.991.800 dev-perl/Wx-GLCanvas >=media-libs/freeglut-3 virtual/perl-Math-Complex >=virtual/perl-Socket-2.16.0 x11-libs/libXmu ) dev-lang/perl:= SLOT=0 _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 git-r3 0d4635eeb5a96cd5315597a47eba25c9 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module 71c828c354a4cddced2641dda2695de5 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=55752964eb27b89bbd879455726f2ef9 +_md5_=e7dba6a130a8d1fa9222521a5f1aac21 diff --git a/metadata/md5-cache/media-libs/Manifest.gz b/metadata/md5-cache/media-libs/Manifest.gz index d24d2d35bb2a..f4511784e912 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/giblib-1.2.4-r1 b/metadata/md5-cache/media-libs/giblib-1.2.4-r1 index 4835f548314f..a97ff0ff5c18 100644 --- a/metadata/md5-cache/media-libs/giblib-1.2.4-r1 +++ b/metadata/md5-cache/media-libs/giblib-1.2.4-r1 @@ -4,10 +4,10 @@ DESCRIPTION=a graphics library built on top of imlib2 EAPI=4 HOMEPAGE=http://freecode.com/projects/giblib http://www.linuxbrit.co.uk/giblib/ IUSE=static-libs -KEYWORDS=alpha amd64 arm ~hppa ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd +KEYWORDS=alpha amd64 arm ~arm64 ~hppa ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd LICENSE=feh RDEPEND=>=media-libs/imlib2-1.0.3[X] x11-libs/libX11 x11-libs/libXext >=media-libs/freetype-2.0 SLOT=0 SRC_URI=http://www.linuxbrit.co.uk/downloads/giblib-1.2.4.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 epunt-cxx e99babeaa7d98c1caaa6a61a79902210 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=24a882d6ffcce38b3ccc2b824e764855 +_md5_=ac465f603b7b4cf76ea2a59e94c71b67 diff --git a/metadata/md5-cache/media-libs/ilmbase-2.3.0 b/metadata/md5-cache/media-libs/ilmbase-2.3.0 index 0e7fdd609ebd..117d18571f5d 100644 --- a/metadata/md5-cache/media-libs/ilmbase-2.3.0 +++ b/metadata/md5-cache/media-libs/ilmbase-2.3.0 @@ -4,9 +4,9 @@ DESCRIPTION=OpenEXR ILM Base libraries EAPI=6 HOMEPAGE=http://openexr.com/ IUSE=static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=amd64 -arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris +KEYWORDS=amd64 -arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris LICENSE=BSD SLOT=0/24 SRC_URI=https://github.com/openexr/openexr/releases/download/v2.3.0/ilmbase-2.3.0.tar.gz _eclasses_=multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=adc8165c1cdc25cfb67faaa61beb5153 +_md5_=4b4484890e5c7b380cbd3cda19a2ab1c diff --git a/metadata/md5-cache/media-libs/jbig2dec-0.14 b/metadata/md5-cache/media-libs/jbig2dec-0.14 index ff4472612588..6aeec1dba33c 100644 --- a/metadata/md5-cache/media-libs/jbig2dec-0.14 +++ b/metadata/md5-cache/media-libs/jbig2dec-0.14 @@ -4,10 +4,10 @@ DESCRIPTION=A decoder implementation of the JBIG2 image compression format EAPI=6 HOMEPAGE=http://ghostscript.com/jbig2dec.html IUSE=png static-libs test -KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=AGPL-3 RDEPEND=png? ( media-libs/libpng:0= ) RESTRICT=test SLOT=0 SRC_URI=http://downloads.ghostscript.com/public/jbig2dec/jbig2dec-0.14.tar.gz test? ( http://jbig2dec.sourceforge.net/ubc/jb2streams.zip ) -_md5_=0d16afce392c81bdef93a443800db043 +_md5_=0ada57c55713717421233463e634ae54 diff --git a/metadata/md5-cache/media-libs/libpng-1.6.37 b/metadata/md5-cache/media-libs/libpng-1.6.37 index f145e9d44248..30abb2478d60 100644 --- a/metadata/md5-cache/media-libs/libpng-1.6.37 +++ b/metadata/md5-cache/media-libs/libpng-1.6.37 @@ -4,10 +4,10 @@ DESCRIPTION=Portable Network Graphics library EAPI=6 HOMEPAGE=http://www.libpng.org/ IUSE=apng cpu_flags_x86_sse neon static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt +KEYWORDS=alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt LICENSE=libpng2 RDEPEND=>=sys-libs/zlib-1.2.8-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] SLOT=0/16 SRC_URI=mirror://sourceforge/libpng/libpng-1.6.37.tar.xz apng? ( mirror://sourceforge/apng/libpng-1.6.37-apng.patch.gz ) _eclasses_=libtool f143db5a74ccd9ca28c1234deffede96 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=65628720d5a66b19fdc4cd0c987c9db1 +_md5_=06b926f1f1737a42ff395e6e2d620075 diff --git a/metadata/md5-cache/media-libs/libwebp-1.0.2 b/metadata/md5-cache/media-libs/libwebp-1.0.2 index c444cb011583..61cd3b367b4a 100644 --- a/metadata/md5-cache/media-libs/libwebp-1.0.2 +++ b/metadata/md5-cache/media-libs/libwebp-1.0.2 @@ -5,10 +5,10 @@ DESCRIPTION=A lossy image compression format EAPI=7 HOMEPAGE=https://developers.google.com/speed/webp/download IUSE=cpu_flags_x86_sse2 cpu_flags_x86_sse4_1 gif +jpeg neon opengl +png static-libs swap-16bit-csp tiff abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=BSD RDEPEND=gif? ( media-libs/giflib:= ) jpeg? ( virtual/jpeg:0= ) opengl? ( media-libs/freeglut virtual/opengl ) png? ( media-libs/libpng:0= ) tiff? ( media-libs/tiff:0= ) SLOT=0/7 SRC_URI=http://downloads.webmproject.org/releases/webp/libwebp-1.0.2.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=23b79c52ffc0ea0b681f80bd313928b1 +_md5_=9cb8a4af60a2f04f776586628e1d1919 diff --git a/metadata/md5-cache/media-libs/ming-0.20181112 b/metadata/md5-cache/media-libs/ming-0.20181112 index 41d1ecd23699..8b761aa3a30b 100644 --- a/metadata/md5-cache/media-libs/ming-0.20181112 +++ b/metadata/md5-cache/media-libs/ming-0.20181112 @@ -4,7 +4,7 @@ DESCRIPTION=An Open Source library for Flash movie generation EAPI=6 HOMEPAGE=http://ming.sourceforge.net/ IUSE=+perl php +python static-libs python_targets_python2_7 -KEYWORDS=~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd +KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd LICENSE=LGPL-2.1 PDEPEND=php? ( dev-php/ming-php ) RDEPEND=perl? ( dev-lang/perl:= ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) media-libs/freetype:= media-libs/libpng:0= media-libs/giflib:= sys-libs/zlib:= !media-libs/libswf python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://github.com/libming/libming/archive/50098023446a5412efcfbd40552821a8cba983a6.tar.gz -> ming-0.20181112.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module 71c828c354a4cddced2641dda2695de5 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf vcs-snapshot b77011b62e2053c646ad720defe6d921 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=9032cfa53b6a583bb373a7a30d7faac1 +_md5_=71c5960b7f1d39b698b00361b8799b09 diff --git a/metadata/md5-cache/media-libs/ming-0.4.8-r1 b/metadata/md5-cache/media-libs/ming-0.4.8-r1 deleted file mode 100644 index 1ab379f63f28..000000000000 --- a/metadata/md5-cache/media-libs/ming-0.4.8-r1 +++ /dev/null @@ -1,16 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=perl? ( dev-lang/perl:= ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) media-libs/freetype:= media-libs/libpng:0= media-libs/giflib:= sys-libs/zlib:= !media-libs/libswf sys-devel/flex virtual/pkgconfig virtual/yacc >=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 python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] -DESCRIPTION=An Open Source library for Flash movie generation -EAPI=6 -HOMEPAGE=http://ming.sourceforge.net/ -IUSE=+perl php +python static-libs python_targets_python2_7 -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd -LICENSE=LGPL-2.1 -PDEPEND=php? ( dev-php/ming-php ) -RDEPEND=perl? ( dev-lang/perl:= ) python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) media-libs/freetype:= media-libs/libpng:0= media-libs/giflib:= sys-libs/zlib:= !media-libs/libswf python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] -REQUIRED_USE=python? ( || ( python_targets_python2_7 ) ) || ( python_targets_python2_7 ) -RESTRICT=test -SLOT=0 -SRC_URI=https://github.com/libming/libming/archive/ming-0_4_8.tar.gz -_eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions f2e3420aed32cf1abe33b4129b842636 perl-module 71c828c354a4cddced2641dda2695de5 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf vcs-snapshot b77011b62e2053c646ad720defe6d921 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=6e7c9dbbc6ad3c949b9bf843316ffd4b diff --git a/metadata/md5-cache/media-libs/openexr-2.3.0 b/metadata/md5-cache/media-libs/openexr-2.3.0 index b2980952dfab..45241407a035 100644 --- a/metadata/md5-cache/media-libs/openexr-2.3.0 +++ b/metadata/md5-cache/media-libs/openexr-2.3.0 @@ -4,11 +4,11 @@ DESCRIPTION=ILM's OpenEXR high dynamic-range image file format libraries EAPI=6 HOMEPAGE=http://openexr.com/ IUSE=cpu_flags_x86_avx examples static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=amd64 -arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris +KEYWORDS=amd64 -arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris LICENSE=BSD RDEPEND=>=media-libs/ilmbase-2.3.0:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] RESTRICT=test SLOT=0/24 SRC_URI=https://github.com/openexr/openexr/releases/download/v2.3.0/openexr-2.3.0.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=adbd660569c0b23f07678a8e4506827c +_md5_=51ea7167cbe8572e999936215eddf690 diff --git a/metadata/md5-cache/media-libs/openimageio-1.7.17 b/metadata/md5-cache/media-libs/openimageio-1.7.17 index 2e3105691131..b0095f498330 100644 --- a/metadata/md5-cache/media-libs/openimageio-1.7.17 +++ b/metadata/md5-cache/media-libs/openimageio-1.7.17 @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://github.com/OpenImageIO/oiio/archive/Release-1.7.17.tar.gz -> openimageio-1.7.17.tar.gz _eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf vcs-snapshot b77011b62e2053c646ad720defe6d921 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=7e4002addd040a2261a99c7c2e6ce062 +_md5_=341a4113a9b8962cddda6f3880d916e8 diff --git a/metadata/md5-cache/media-libs/zita-resampler-1.6.2 b/metadata/md5-cache/media-libs/zita-resampler-1.6.2 new file mode 100644 index 000000000000..fd7bab2c84d2 --- /dev/null +++ b/metadata/md5-cache/media-libs/zita-resampler-1.6.2 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install +DEPEND=tools? ( media-libs/libsndfile ) +DESCRIPTION=C++ library for real-time resampling of audio signals +EAPI=7 +HOMEPAGE=http://kokkinizita.linuxaudio.org/linuxaudio/ +IUSE=tools +KEYWORDS=~amd64 +LICENSE=GPL-3 +RDEPEND=tools? ( media-libs/libsndfile ) +SLOT=0/1 +SRC_URI=http://kokkinizita.linuxaudio.org/linuxaudio/downloads/zita-resampler-1.6.2.tar.bz2 +_eclasses_=multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=5c7d61c30c920ff88dbb627b9e577863 diff --git a/metadata/md5-cache/media-sound/Manifest.gz b/metadata/md5-cache/media-sound/Manifest.gz index 758f4b08f9f8..c61d568100a5 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/dir2ogg-0.12 b/metadata/md5-cache/media-sound/dir2ogg-0.12 index 4a1d28ba2e4b..08cf21ff6967 100644 --- a/metadata/md5-cache/media-sound/dir2ogg-0.12 +++ b/metadata/md5-cache/media-sound/dir2ogg-0.12 @@ -4,11 +4,11 @@ DESCRIPTION=Converts mp3, m4a, wma, and wav files to Ogg Vorbis format EAPI=7 HOMEPAGE=https://jak-linux.org/projects/dir2ogg/ IUSE=aac flac mac mp3 musepack wavpack wma python_targets_python2_7 -KEYWORDS=amd64 ~ppc ~sparc ~x86 +KEYWORDS=amd64 ~ppc sparc ~x86 LICENSE=GPL-2 RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)] >=media-libs/mutagen-1.11[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)] media-sound/vorbis-tools[ogg123] aac? ( || ( media-libs/faad2 media-video/mplayer ) ) flac? ( || ( media-libs/flac media-video/mplayer ) ) mac? ( || ( media-sound/mac media-video/mplayer ) ) mp3? ( || ( media-sound/mpg123 media-sound/lame media-video/mplayer media-sound/mpg321 ) ) musepack? ( || ( >=media-sound/musepack-tools-444 media-video/mplayer ) ) wavpack? ( || ( media-sound/wavpack media-video/mplayer ) ) wma? ( media-video/mplayer ) REQUIRED_USE=python_targets_python2_7 SLOT=0 SRC_URI=https://jak-linux.org/projects/dir2ogg/0.12/dir2ogg-0.12.tar.gz _eclasses_=multilib b2f01ad412baf81650c23fcf0975fa33 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=ded865d4474653923ec64511d61dba94 +_md5_=b138d361b85b488a3de2f90554c94068 diff --git a/metadata/md5-cache/media-sound/guitarix-0.38.1 b/metadata/md5-cache/media-sound/guitarix-0.38.1 new file mode 100644 index 000000000000..ea4977f28ac9 --- /dev/null +++ b/metadata/md5-cache/media-sound/guitarix-0.38.1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup +DEPEND=dev-cpp/eigen:3 dev-cpp/glibmm:2 dev-cpp/gtkmm:2.4 dev-libs/glib:2 >=media-libs/libsndfile-1.0.17 >=media-libs/zita-convolver-3 media-libs/zita-resampler >=net-misc/curl-7.26.0 >=sci-libs/fftw-3.1.2:3.0= x11-libs/gtk+:2 lv2? ( media-libs/lv2 ) standalone? ( dev-libs/boost:= media-libs/liblrdf media-libs/lilv virtual/jack bluetooth? ( net-wireless/bluez ) zeroconf? ( net-dns/avahi ) ) virtual/pkgconfig nls? ( dev-util/intltool ) dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Virtual guitar amplifier for Linux +EAPI=6 +HOMEPAGE=http://guitarix.org/ +IUSE=bluetooth debug lv2 nls +standalone zeroconf +KEYWORDS=~amd64 +LICENSE=GPL-2 +RDEPEND=dev-cpp/eigen:3 dev-cpp/glibmm:2 dev-cpp/gtkmm:2.4 dev-libs/glib:2 >=media-libs/libsndfile-1.0.17 >=media-libs/zita-convolver-3 media-libs/zita-resampler >=net-misc/curl-7.26.0 >=sci-libs/fftw-3.1.2:3.0= x11-libs/gtk+:2 lv2? ( media-libs/lv2 ) standalone? ( dev-libs/boost:= media-libs/liblrdf media-libs/lilv virtual/jack bluetooth? ( net-wireless/bluez ) zeroconf? ( net-dns/avahi ) ) x11-themes/gtk-engines standalone? ( media-fonts/roboto ) +REQUIRED_USE=|| ( lv2 standalone ) +SLOT=0 +SRC_URI=mirror://sourceforge/guitarix/guitarix/guitarix2-0.38.1.tar.xz +_eclasses_=multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 python-any-r1 4900ae970f827a22d33d41bd8b8f9ace python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 waf-utils 1fab5379519d4b71bff5790435a71986 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 14d00d009167652b1fa363e55effe213 +_md5_=bb22c48d87f91c0ad8a48ae86019dc4d diff --git a/metadata/md5-cache/media-sound/mixxx-2.1.5 b/metadata/md5-cache/media-sound/mixxx-2.1.8 similarity index 95% rename from metadata/md5-cache/media-sound/mixxx-2.1.5 rename to metadata/md5-cache/media-sound/mixxx-2.1.8 index 4d3242f14393..2a92a544f92e 100644 --- a/metadata/md5-cache/media-sound/mixxx-2.1.5 +++ b/metadata/md5-cache/media-sound/mixxx-2.1.8 @@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 RDEPEND=dev-db/sqlite dev-libs/glib:2 dev-libs/protobuf:0= dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtscript:5[scripttools] dev-qt/qtsql:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-libs/chromaprint media-libs/flac media-libs/libid3tag media-libs/libogg media-libs/libsndfile >=media-libs/libsoundtouch-1.5 media-libs/libvorbis >=media-libs/portaudio-19_pre media-libs/portmidi media-libs/rubberband media-libs/taglib media-libs/vamp-plugin-sdk sci-libs/fftw:3.0= sys-power/upower virtual/libusb:1 virtual/opengl x11-libs/libX11 aac? ( media-libs/faad2 media-libs/libmp4v2:0 ) hid? ( dev-libs/hidapi ) mp3? ( media-libs/libmad ) mp4? ( media-libs/libmp4v2:= ) opus? ( media-libs/opusfile ) shout? ( media-libs/libshout ) wavpack? ( media-sound/wavpack ) ffmpeg? ( media-video/ffmpeg:0= ) SLOT=0 -SRC_URI=https://github.com/mixxxdj/mixxx/archive/release-2.1.5.tar.gz -> mixxx-2.1.5.tar.gz +SRC_URI=https://github.com/mixxxdj/mixxx/archive/release-2.1.8.tar.gz -> mixxx-2.1.8.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 scons-utils 741000d14c0b59263aac3f3cf6e39909 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=5cfd3aca300ba1aec542e847b1eaddc3 +_md5_=455a3424004213ee29523e1714b6c478 diff --git a/metadata/md5-cache/media-sound/ncmpcpp-0.8.1 b/metadata/md5-cache/media-sound/ncmpcpp-0.8.1 deleted file mode 100644 index 56b20ec02115..000000000000 --- a/metadata/md5-cache/media-sound/ncmpcpp-0.8.1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install postinst prepare -DEPEND=!dev-libs/boost:0/1.57.0 >=media-libs/libmpdclient-2.1 dev-libs/boost:=[icu?,nls,threads] net-misc/curl sys-libs/ncurses:= sys-libs/readline:* icu? ( dev-libs/icu ) taglib? ( media-libs/taglib ) visualizer? ( sci-libs/fftw:3.0= ) virtual/pkgconfig -DESCRIPTION=featureful ncurses based MPD client inspired by ncmpc -EAPI=6 -HOMEPAGE=https://rybczak.net/ncmpcpp/ -IUSE=clock icu outputs taglib visualizer -KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=!dev-libs/boost:0/1.57.0 >=media-libs/libmpdclient-2.1 dev-libs/boost:=[icu?,nls,threads] net-misc/curl sys-libs/ncurses:= sys-libs/readline:* icu? ( dev-libs/icu ) taglib? ( media-libs/taglib ) visualizer? ( sci-libs/fftw:3.0= ) -SLOT=0 -SRC_URI=https://rybczak.net/ncmpcpp/stable/ncmpcpp-0.8.1.tar.bz2 -_md5_=414b587af854cfe5e794836752c431c6 diff --git a/metadata/md5-cache/media-sound/ncmpcpp-0.8.2 b/metadata/md5-cache/media-sound/ncmpcpp-0.8.2 deleted file mode 100644 index ece642d0a476..000000000000 --- a/metadata/md5-cache/media-sound/ncmpcpp-0.8.2 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install postinst prepare -DEPEND=!dev-libs/boost:0/1.57.0 >=media-libs/libmpdclient-2.1 dev-libs/boost:=[icu?,nls,threads] net-misc/curl sys-libs/ncurses:= sys-libs/readline:* icu? ( dev-libs/icu ) taglib? ( media-libs/taglib ) visualizer? ( sci-libs/fftw:3.0= ) virtual/pkgconfig -DESCRIPTION=featureful ncurses based MPD client inspired by ncmpc -EAPI=6 -HOMEPAGE=https://rybczak.net/ncmpcpp/ -IUSE=clock icu outputs taglib visualizer -KEYWORDS=amd64 ~arm hppa ~ppc ~ppc64 ~sparc x86 -LICENSE=GPL-2 -RDEPEND=!dev-libs/boost:0/1.57.0 >=media-libs/libmpdclient-2.1 dev-libs/boost:=[icu?,nls,threads] net-misc/curl sys-libs/ncurses:= sys-libs/readline:* icu? ( dev-libs/icu ) taglib? ( media-libs/taglib ) visualizer? ( sci-libs/fftw:3.0= ) -SLOT=0 -SRC_URI=https://rybczak.net/ncmpcpp/stable/ncmpcpp-0.8.2.tar.bz2 -_md5_=eb1f22d9d223beec615749568ab845b8 diff --git a/metadata/md5-cache/media-sound/ncmpcpp-0.8.2-r1 b/metadata/md5-cache/media-sound/ncmpcpp-0.8.2-r1 index e08cfd4e9155..4e49c60543d7 100644 --- a/metadata/md5-cache/media-sound/ncmpcpp-0.8.2-r1 +++ b/metadata/md5-cache/media-sound/ncmpcpp-0.8.2-r1 @@ -4,9 +4,9 @@ DESCRIPTION=featureful ncurses based MPD client inspired by ncmpc EAPI=7 HOMEPAGE=https://rybczak.net/ncmpcpp/ IUSE=clock icu outputs taglib visualizer -KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=amd64 ~arm hppa ~ppc ~ppc64 ~sparc x86 LICENSE=GPL-2 RDEPEND=!dev-libs/boost:0/1.57.0 >=media-libs/libmpdclient-2.1 dev-libs/boost:=[icu?,nls,threads] net-misc/curl sys-libs/ncurses:= sys-libs/readline:* icu? ( dev-libs/icu:= ) taglib? ( media-libs/taglib ) visualizer? ( sci-libs/fftw:3.0= ) SLOT=0 SRC_URI=https://rybczak.net/ncmpcpp/stable/ncmpcpp-0.8.2.tar.bz2 -_md5_=706abda68882df79bd4877cf0ae79044 +_md5_=a123a152311313dd7b040f53f91b9b9c diff --git a/metadata/md5-cache/media-sound/pulseaudio-12.2-r1 b/metadata/md5-cache/media-sound/pulseaudio-12.2-r1 index 3484b358d8b4..83e04ae0083f 100644 --- a/metadata/md5-cache/media-sound/pulseaudio-12.2-r1 +++ b/metadata/md5-cache/media-sound/pulseaudio-12.2-r1 @@ -4,7 +4,7 @@ DESCRIPTION=A networked sound server with an advanced plugin system EAPI=6 HOMEPAGE=https://www.freedesktop.org/wiki/Software/PulseAudio/ IUSE=+alsa +alsa-plugin +asyncns bluetooth +caps dbus doc equalizer elogind gconf +gdbm +glib gtk ipv6 jack libsamplerate libressl lirc native-headset neon ofono-headset +orc oss qt5 realtime selinux sox ssl systemd system-wide tcpd test +udev +webrtc-aec +X zeroconf kernel_linux abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux +KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux LICENSE=!gdbm? ( LGPL-2.1 ) gdbm? ( GPL-2 ) PDEPEND=alsa? ( alsa-plugin? ( >=media-plugins/alsa-plugins-1.0.27-r1[pulseaudio,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) RDEPEND=|| ( elibc_glibc? ( virtual/libc ) elibc_uclibc? ( virtual/libc ) dev-libs/libpcre ) >=media-libs/libsndfile-1.0.20[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] X? ( >=x11-libs/libX11-1.4.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libxcb-1.6[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libSM[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libICE[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libXtst[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) caps? ( >=sys-libs/libcap-2.22-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libsamplerate? ( >=media-libs/libsamplerate-0.1.1-r1 ) alsa? ( >=media-libs/alsa-lib-1.0.19 ) glib? ( >=dev-libs/glib-2.26.0:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zeroconf? ( >=net-dns/avahi-0.6.12[dbus] ) jack? ( virtual/jack ) tcpd? ( sys-apps/tcp-wrappers[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lirc? ( app-misc/lirc ) dbus? ( >=sys-apps/dbus-1.0.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) gtk? ( x11-libs/gtk+:3 ) bluetooth? ( >=net-wireless/bluez-5 >=sys-apps/dbus-1.0.0 media-libs/sbc ) asyncns? ( net-libs/libasyncns[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) udev? ( >=virtual/udev-143[hwdb(+)] ) equalizer? ( sci-libs/fftw:3.0 ) ofono-headset? ( >=net-misc/ofono-1.13 ) orc? ( >=dev-lang/orc-0.4.15 ) sox? ( >=media-libs/soxr-0.1.1 ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) ) media-libs/speexdsp gdbm? ( sys-libs/gdbm:= ) webrtc-aec? ( >=media-libs/webrtc-audio-processing-0.2 ) elogind? ( sys-auth/elogind ) systemd? ( sys-apps/systemd:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dev-libs/libltdl:0 selinux? ( sec-policy/selinux-pulseaudio ) realtime? ( sys-auth/rtkit ) gconf? ( >=gnome-base/gconf-3.2.6 ) equalizer? ( qt5? ( dev-python/PyQt5[dbus,widgets] ) ) system-wide? ( alsa? ( media-sound/alsa-utils ) bluetooth? ( >=net-wireless/bluez-5 ) ) @@ -12,4 +12,4 @@ REQUIRED_USE=?? ( elogind systemd ) bluetooth? ( dbus ) equalizer? ( dbus ) ofon SLOT=0 SRC_URI=https://freedesktop.org/software/pulseaudio/releases/pulseaudio-12.2.tar.xz _eclasses_=bash-completion-r1 47a7402d95930413ce25ba8d857339bb desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf gnome2-utils 532371cfcba45b2ab0d2950547c97d95 linux-info 953c3b1c472dcadbf62098a9301327f2 ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 udev 7752f306eec7b286d00bdb47b763e7ac user 8bd74731cafdcdad8f7a63637302e073 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=d3a3dcfe3f1ee320e8aeeb40c30cf6db +_md5_=a3d734003c5b6da86735275a26d076f9 diff --git a/metadata/md5-cache/media-sound/soundconverter-3.0.2 b/metadata/md5-cache/media-sound/soundconverter-3.0.2 index e7a0300f3fd1..d6ba3d93c112 100644 --- a/metadata/md5-cache/media-sound/soundconverter-3.0.2 +++ b/metadata/md5-cache/media-sound/soundconverter-3.0.2 @@ -4,7 +4,7 @@ DESCRIPTION=A simple audiofile converter application for the GNOME environment EAPI=6 HOMEPAGE=https://soundconverter.org/ IUSE=aac flac libnotify mp3 ogg opus vorbis python_targets_python3_5 python_targets_python3_6 python_single_target_python3_5 python_single_target_python3_6 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=GPL-3 RDEPEND=python_single_target_python3_5? ( dev-lang/python:3.5 ) python_single_target_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_7(-),python_single_target_python3_5(+)?,python_single_target_python3_6(+)?] dev-libs/gobject-introspection:= x11-libs/gtk+:3[introspection] media-libs/gstreamer:1.0[introspection] x11-libs/pango[introspection] dev-python/gst-python:1.0[python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_7(-),python_single_target_python3_5(+)?,python_single_target_python3_6(+)?] libnotify? ( x11-libs/libnotify[introspection] ) media-libs/gst-plugins-base:1.0[vorbis?,ogg?] media-plugins/gst-plugins-meta:1.0 flac? ( media-plugins/gst-plugins-flac:1.0 ) media-libs/gst-plugins-good:1.0 mp3? ( media-libs/gst-plugins-bad:1.0 media-libs/gst-plugins-ugly:1.0 media-plugins/gst-plugins-lame:1.0 ) aac? ( media-plugins/gst-plugins-faac:1.0 ) opus? ( media-plugins/gst-plugins-opus:1.0 ) REQUIRED_USE=^^ ( python_single_target_python3_5 python_single_target_python3_6 ) python_single_target_python3_5? ( python_targets_python3_5 ) python_single_target_python3_6? ( python_targets_python3_6 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://launchpad.net/soundconverter/trunk/3.0.2/+download/soundconverter-3.0.2.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome.org 532d56d07b9eace4831aaa817d2b756a gnome2 1a42e8c41af42cb294817dcc5b7e3df6 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=54481cc6c7ca46253fd293b7e8ddd768 +_md5_=59ee16ea070746bf18c55741b4f98027 diff --git a/metadata/md5-cache/media-sound/upmpdcli-1.4.0 b/metadata/md5-cache/media-sound/upmpdcli-1.4.0 index e7497d7d49b1..ba440dd4f189 100644 --- a/metadata/md5-cache/media-sound/upmpdcli-1.4.0 +++ b/metadata/md5-cache/media-sound/upmpdcli-1.4.0 @@ -5,10 +5,10 @@ DESCRIPTION=UPnP Media Renderer front-end for MPD, the Music Player Daemon EAPI=7 HOMEPAGE=https://www.lesbonscomptes.com/upmpdcli/index.html IUSE=thirdparty -KEYWORDS=~amd64 +KEYWORDS=amd64 LICENSE=GPL-2 RDEPEND=dev-libs/jsoncpp media-libs/libmpdclient net-libs/libmicrohttpd >=net-libs/libupnpp-0.17.0 thirdparty? ( dev-python/requests ) SLOT=0 SRC_URI=https://www.lesbonscomptes.com/upmpdcli/downloads/upmpdcli-1.4.0.tar.gz _eclasses_=multilib b2f01ad412baf81650c23fcf0975fa33 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 user 8bd74731cafdcdad8f7a63637302e073 -_md5_=82c8573fa0ad1a1f6e84b5d4b23b3834 +_md5_=6f8e8f11c28eaa3c85c853a9628c360b diff --git a/metadata/md5-cache/media-sound/upmpdcli-1.3.6 b/metadata/md5-cache/media-sound/upmpdcli-1.4.2 similarity index 72% rename from metadata/md5-cache/media-sound/upmpdcli-1.3.6 rename to metadata/md5-cache/media-sound/upmpdcli-1.4.2 index f12e4a08c992..1eb683e86df9 100644 --- a/metadata/md5-cache/media-sound/upmpdcli-1.3.6 +++ b/metadata/md5-cache/media-sound/upmpdcli-1.4.2 @@ -1,13 +1,14 @@ +BDEPEND=virtual/pkgconfig DEFINED_PHASES=install postinst setup -DEPEND=dev-libs/jsoncpp media-libs/libmpdclient net-libs/libmicrohttpd =net-libs/libupnpp-0.17.0 DESCRIPTION=UPnP Media Renderer front-end for MPD, the Music Player Daemon -EAPI=6 +EAPI=7 HOMEPAGE=https://www.lesbonscomptes.com/upmpdcli/index.html IUSE=thirdparty -KEYWORDS=amd64 +KEYWORDS=~amd64 LICENSE=GPL-2 -RDEPEND=dev-libs/jsoncpp media-libs/libmpdclient net-libs/libmicrohttpd =net-libs/libupnpp-0.17.0 thirdparty? ( dev-python/requests ) SLOT=0 -SRC_URI=https://www.lesbonscomptes.com/upmpdcli/downloads/upmpdcli-1.3.6.tar.gz +SRC_URI=https://www.lesbonscomptes.com/upmpdcli/downloads/upmpdcli-1.4.2.tar.gz _eclasses_=multilib b2f01ad412baf81650c23fcf0975fa33 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 user 8bd74731cafdcdad8f7a63637302e073 -_md5_=238e054132db91babd40f8fe1cc0eb9c +_md5_=440ee9086dafef86c445e802a52858c8 diff --git a/metadata/md5-cache/media-video/Manifest.gz b/metadata/md5-cache/media-video/Manifest.gz index 61cfd7605120..cbe34fe67f72 100644 Binary files a/metadata/md5-cache/media-video/Manifest.gz and b/metadata/md5-cache/media-video/Manifest.gz differ diff --git a/metadata/md5-cache/media-video/mkvtoolnix-33.1.0 b/metadata/md5-cache/media-video/mkvtoolnix-33.1.0 new file mode 100644 index 000000000000..0038152ac06a --- /dev/null +++ b/metadata/md5-cache/media-video/mkvtoolnix-33.1.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare pretend test +DEPEND=dev-libs/libfmt:= >=dev-libs/boost-1.49.0:= >=dev-libs/libebml-1.3.7:= dev-libs/pugixml media-libs/flac >=media-libs/libmatroska-1.5.0:= media-libs/libogg media-libs/libvorbis sys-apps/file sys-libs/zlib qt5? ( dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtconcurrent:5 dev-qt/qtmultimedia:5 app-text/cmark:0= ) dev-cpp/nlohmann_json dev-libs/utfcpp dev-ruby/rake virtual/pkgconfig dev-libs/libxslt app-text/docbook-xsl-stylesheets nls? ( sys-devel/gettext app-text/po4a ) test? ( dev-cpp/gtest ) +DESCRIPTION=Tools to create, alter, and inspect Matroska files +EAPI=6 +HOMEPAGE=https://mkvtoolnix.download/ https://gitlab.com/mbunkus/mkvtoolnix +IUSE=debug nls pch test qt5 +KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 +LICENSE=GPL-2 +RDEPEND=dev-libs/libfmt:= >=dev-libs/boost-1.49.0:= >=dev-libs/libebml-1.3.7:= dev-libs/pugixml media-libs/flac >=media-libs/libmatroska-1.5.0:= media-libs/libogg media-libs/libvorbis sys-apps/file sys-libs/zlib qt5? ( dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 dev-qt/qtconcurrent:5 dev-qt/qtmultimedia:5 app-text/cmark:0= ) +SLOT=0 +SRC_URI=https://mkvtoolnix.download/sources/mkvtoolnix-33.1.0.tar.xz +_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 qmake-utils bdf97e69a34b864d6d545f4ec3143ff7 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 xdg-utils 14d00d009167652b1fa363e55effe213 +_md5_=0249dc061fa16d7a3ba580dc3364635e diff --git a/metadata/md5-cache/net-analyzer/Manifest.gz b/metadata/md5-cache/net-analyzer/Manifest.gz index e1752de7d70a..71d85cf67c0b 100644 Binary files a/metadata/md5-cache/net-analyzer/Manifest.gz and b/metadata/md5-cache/net-analyzer/Manifest.gz differ diff --git a/metadata/md5-cache/net-analyzer/cacti-1.1.20 b/metadata/md5-cache/net-analyzer/cacti-1.1.20 deleted file mode 100644 index 45764666888e..000000000000 --- a/metadata/md5-cache/net-analyzer/cacti-1.1.20 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install postinst prepare prerm setup -DEPEND=|| ( virtual/httpd-basic virtual/httpd-cgi virtual/httpd-fastcgi ) >=app-admin/webapp-config-1.50.15 -DESCRIPTION=Cacti is a complete frontend to rrdtool -EAPI=6 -HOMEPAGE=https://www.cacti.net/ -IUSE=snmp doc vhosts -KEYWORDS=alpha amd64 ~arm ~hppa ~ppc ~ppc64 sparc x86 -LICENSE=GPL-2 -RDEPEND=dev-lang/php[cli,mysql,pdo,session,sockets,xml] dev-php/adodb net-analyzer/rrdtool[graph] virtual/cron virtual/mysql snmp? ( >=net-analyzer/net-snmp-5.2.0 ) >=app-admin/webapp-config-1.50.15 -SLOT=1.1.20 -SRC_URI=https://www.cacti.net/downloads/cacti-1.1.20.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf webapp 16783e418aca3ffa461d68310bf7ab12 -_md5_=f85efa8328b8ae05a745547cd0f110f1 diff --git a/metadata/md5-cache/net-analyzer/cacti-1.1.21 b/metadata/md5-cache/net-analyzer/cacti-1.1.21 deleted file mode 100644 index c94a39a271d9..000000000000 --- a/metadata/md5-cache/net-analyzer/cacti-1.1.21 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install postinst prepare prerm setup -DEPEND=|| ( virtual/httpd-basic virtual/httpd-cgi virtual/httpd-fastcgi ) >=app-admin/webapp-config-1.50.15 -DESCRIPTION=Cacti is a complete frontend to rrdtool -EAPI=6 -HOMEPAGE=https://www.cacti.net/ -IUSE=snmp doc vhosts -KEYWORDS=~alpha ~amd64 ~arm hppa ~ppc ~ppc64 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=dev-lang/php[cli,mysql,pdo,session,sockets,xml] dev-php/adodb net-analyzer/rrdtool[graph] virtual/cron virtual/mysql snmp? ( >=net-analyzer/net-snmp-5.2.0 ) >=app-admin/webapp-config-1.50.15 -SLOT=1.1.21 -SRC_URI=https://www.cacti.net/downloads/cacti-1.1.21.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf webapp 16783e418aca3ffa461d68310bf7ab12 -_md5_=722f899ed2064cbe7c5f783c32c063e6 diff --git a/metadata/md5-cache/net-analyzer/cacti-1.1.28 b/metadata/md5-cache/net-analyzer/cacti-1.1.28 deleted file mode 100644 index 63cb408c7f58..000000000000 --- a/metadata/md5-cache/net-analyzer/cacti-1.1.28 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install postinst prerm setup -DEPEND=|| ( virtual/httpd-basic virtual/httpd-cgi virtual/httpd-fastcgi ) >=app-admin/webapp-config-1.50.15 -DESCRIPTION=Cacti is a complete frontend to rrdtool -EAPI=6 -HOMEPAGE=https://www.cacti.net/ -IUSE=snmp doc vhosts -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=dev-lang/php[cli,mysql,pdo,session,sockets,xml] dev-php/adodb net-analyzer/rrdtool[graph] virtual/cron virtual/mysql snmp? ( >=net-analyzer/net-snmp-5.2.0 ) >=app-admin/webapp-config-1.50.15 -SLOT=1.1.28 -SRC_URI=https://www.cacti.net/downloads/cacti-1.1.28.tar.gz -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf webapp 16783e418aca3ffa461d68310bf7ab12 -_md5_=9638d5218cd5ec39cfee112dc65ef588 diff --git a/metadata/md5-cache/net-analyzer/cacti-spine-1.1.20 b/metadata/md5-cache/net-analyzer/cacti-spine-1.1.20 deleted file mode 100644 index 14e0c0943c1f..000000000000 --- a/metadata/md5-cache/net-analyzer/cacti-spine-1.1.20 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install prepare -DEPEND=dev-libs/openssl:* net-analyzer/net-snmp virtual/mysql sys-apps/help2man >=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=Spine is a fast poller for Cacti (formerly known as Cactid) -EAPI=6 -HOMEPAGE=https://cacti.net/spine_info.php -KEYWORDS=alpha amd64 ~hppa ~ppc ~ppc64 sparc x86 -LICENSE=LGPL-2.1 -RDEPEND=dev-libs/openssl:* net-analyzer/net-snmp virtual/mysql >net-analyzer/cacti-0.8.8 -SLOT=0 -SRC_URI=https://www.cacti.net/downloads/spine/cacti-spine-1.1.20.tar.gz -_eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=4392074ec9025fb0da010aabce9ac79a diff --git a/metadata/md5-cache/net-analyzer/cacti-spine-1.1.21 b/metadata/md5-cache/net-analyzer/cacti-spine-1.1.21 deleted file mode 100644 index 4fcd8bf998db..000000000000 --- a/metadata/md5-cache/net-analyzer/cacti-spine-1.1.21 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install prepare -DEPEND=dev-libs/openssl:* net-analyzer/net-snmp virtual/mysql sys-apps/help2man >=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=Spine is a fast poller for Cacti (formerly known as Cactid) -EAPI=6 -HOMEPAGE=https://cacti.net/spine_info.php -KEYWORDS=~alpha ~amd64 hppa ~ppc ~ppc64 ~sparc ~x86 -LICENSE=LGPL-2.1 -RDEPEND=dev-libs/openssl:* net-analyzer/net-snmp virtual/mysql >net-analyzer/cacti-0.8.8 -SLOT=0 -SRC_URI=https://www.cacti.net/downloads/spine/cacti-spine-1.1.21.tar.gz -_eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=ccb2b9ffe6a8f394f624c80e6606f88d diff --git a/metadata/md5-cache/net-analyzer/cacti-spine-1.1.28-r1 b/metadata/md5-cache/net-analyzer/cacti-spine-1.1.28-r1 deleted file mode 100644 index 7e7a283c4452..000000000000 --- a/metadata/md5-cache/net-analyzer/cacti-spine-1.1.28-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install prepare -DEPEND=dev-libs/openssl:* net-analyzer/net-snmp dev-db/mysql-connector-c:0= sys-apps/help2man >=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=Spine is a fast poller for Cacti (formerly known as Cactid) -EAPI=6 -HOMEPAGE=https://cacti.net/spine_info.php -KEYWORDS=~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 -LICENSE=LGPL-2.1 -RDEPEND=dev-libs/openssl:* net-analyzer/net-snmp dev-db/mysql-connector-c:0= >net-analyzer/cacti-0.8.8 -SLOT=0 -SRC_URI=https://www.cacti.net/downloads/spine/cacti-spine-1.1.28.tar.gz -_eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=95a4359c6651664aa3523d824338d428 diff --git a/metadata/md5-cache/net-analyzer/fail2ban-0.10.4-r2 b/metadata/md5-cache/net-analyzer/fail2ban-0.10.4-r2 index 5de12fc9d0ac..5a432d530397 100644 --- a/metadata/md5-cache/net-analyzer/fail2ban-0.10.4-r2 +++ b/metadata/md5-cache/net-analyzer/fail2ban-0.10.4-r2 @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://github.com/fail2ban/fail2ban/tarball/0.10.4 -> fail2ban-0.10.4.tar.gz _eclasses_=distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=842f346ebb23654d9b6420756c81d8f8 +_md5_=3295d24cb75e1d2ffe666f5fe7baa9f4 diff --git a/metadata/md5-cache/net-analyzer/fail2ban-99999999 b/metadata/md5-cache/net-analyzer/fail2ban-99999999 index d42848d40fce..106d012aaf0c 100644 --- a/metadata/md5-cache/net-analyzer/fail2ban-99999999 +++ b/metadata/md5-cache/net-analyzer/fail2ban-99999999 @@ -10,4 +10,4 @@ REQUIRED_USE=systemd? ( !python_single_target_pypy ) ^^ ( python_single_target_p RESTRICT=test SLOT=0 _eclasses_=distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 git-r3 0d4635eeb5a96cd5315597a47eba25c9 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=c637d0b64ae7e864e4e7c68632b73eed +_md5_=14fcf56e0d99330601473ea97e66742f diff --git a/metadata/md5-cache/net-analyzer/munin-2.0.47 b/metadata/md5-cache/net-analyzer/munin-2.0.47 new file mode 100644 index 000000000000..73a4536d7190 --- /dev/null +++ b/metadata/md5-cache/net-analyzer/munin-2.0.47 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile config configure install postinst preinst prepare setup test +DEPEND=dev-lang/perl:=[berkdb] dev-perl/DBI dev-perl/Date-Manip dev-perl/File-Copy-Recursive dev-perl/List-MoreUtils dev-perl/Log-Log4perl dev-perl/Net-CIDR dev-perl/Net-DNS dev-perl/Net-Netmask dev-perl/Net-SNMP dev-perl/Net-Server[ipv6(-)?] virtual/perl-Digest-MD5 virtual/perl-Getopt-Long virtual/perl-MIME-Base64 virtual/perl-Storable virtual/perl-Text-Balanced virtual/perl-Time-HiRes apache2? ( www-servers/apache[apache2_modules_cgi,apache2_modules_cgid,apache2_modules_rewrite] ) asterisk? ( dev-perl/Net-Telnet ) cgi? ( dev-perl/FCGI dev-perl/CGI-Fast ) dhcpd? ( >=net-misc/dhcp-3[server] dev-perl/Net-IP dev-perl/HTTP-Date ) doc? ( dev-python/sphinx ) http? ( dev-perl/libwww-perl ) irc? ( dev-perl/Net-IRC ) ldap? ( dev-perl/perl-ldap ) kernel_linux? ( sys-process/procps ) memcached? ( dev-perl/Cache-Memcached ) mysql? ( virtual/mysql dev-perl/Cache-Cache dev-perl/DBD-mysql ) postgres? ( dev-perl/DBD-Pg dev-db/postgresql:* ) ssl? ( dev-perl/Net-SSLeay ) syslog? ( virtual/perl-Sys-Syslog ) !minimal? ( dev-perl/HTML-Template dev-perl/IO-Socket-INET6 dev-perl/URI >=net-analyzer/rrdtool-1.3[graph,perl] virtual/ssh ) dev-perl/Module-Build java? ( >=virtual/jdk-1.5 ) test? ( dev-perl/Test-Deep dev-perl/Test-Exception dev-perl/Test-LongString dev-perl/Test-Differences dev-perl/Test-MockModule dev-perl/Test-MockObject dev-perl/File-Slurp dev-perl/IO-stringy dev-perl/IO-Socket-INET6 ) java? ( >=dev-java/java-config-2.2.0-r3 ) virtual/pkgconfig +DESCRIPTION=Munin Server Monitoring Tool +EAPI=6 +HOMEPAGE=http://munin-monitoring.org/ +IUSE=asterisk irc java ldap memcached minimal mysql postgres selinux ssl test cgi ipv6 syslog ipmi http dhcpd doc apache2 elibc_FreeBSD java +KEYWORDS=~amd64 ~arm ~ppc ~x86 +LICENSE=GPL-2 +RDEPEND=dev-lang/perl:=[berkdb] dev-perl/DBI dev-perl/Date-Manip dev-perl/File-Copy-Recursive dev-perl/List-MoreUtils dev-perl/Log-Log4perl dev-perl/Net-CIDR dev-perl/Net-DNS dev-perl/Net-Netmask dev-perl/Net-SNMP dev-perl/Net-Server[ipv6(-)?] virtual/perl-Digest-MD5 virtual/perl-Getopt-Long virtual/perl-MIME-Base64 virtual/perl-Storable virtual/perl-Text-Balanced virtual/perl-Time-HiRes apache2? ( www-servers/apache[apache2_modules_cgi,apache2_modules_cgid,apache2_modules_rewrite] ) asterisk? ( dev-perl/Net-Telnet ) cgi? ( dev-perl/FCGI dev-perl/CGI-Fast ) dhcpd? ( >=net-misc/dhcp-3[server] dev-perl/Net-IP dev-perl/HTTP-Date ) doc? ( dev-python/sphinx ) http? ( dev-perl/libwww-perl ) irc? ( dev-perl/Net-IRC ) ldap? ( dev-perl/perl-ldap ) kernel_linux? ( sys-process/procps ) memcached? ( dev-perl/Cache-Memcached ) mysql? ( virtual/mysql dev-perl/Cache-Cache dev-perl/DBD-mysql ) postgres? ( dev-perl/DBD-Pg dev-db/postgresql:* ) ssl? ( dev-perl/Net-SSLeay ) syslog? ( virtual/perl-Sys-Syslog ) !minimal? ( dev-perl/HTML-Template dev-perl/IO-Socket-INET6 dev-perl/URI >=net-analyzer/rrdtool-1.3[graph,perl] virtual/ssh ) virtual/awk ipmi? ( >=sys-libs/freeipmi-1.1.6-r1 ) java? ( >=virtual/jre-1.5 net-analyzer/netcat ) !minimal? ( virtual/cron media-fonts/dejavu ) selinux? ( sec-policy/selinux-munin ) !=dev-java/java-config-2.2.0-r3 ) +REQUIRED_USE=cgi? ( !minimal ) apache2? ( cgi ) +SLOT=0 +SRC_URI=https://github.com/munin-monitoring/munin/archive/2.0.47.tar.gz -> munin-2.0.47.tar.gz https://dev.gentoo.org/~graaff/munin/munin-2.0.47-gentoo-1.tar.xz +_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 user 8bd74731cafdcdad8f7a63637302e073 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 +_md5_=9b5278a9b12ec949a87e5b7626e7258c diff --git a/metadata/md5-cache/net-analyzer/wireshark-3.0.1 b/metadata/md5-cache/net-analyzer/wireshark-3.0.1 index 9a76240d05c8..e1bb3c9b6b56 100644 --- a/metadata/md5-cache/net-analyzer/wireshark-3.0.1 +++ b/metadata/md5-cache/net-analyzer/wireshark-3.0.1 @@ -4,11 +4,11 @@ DESCRIPTION=A network protocol analyzer formerly known as ethereal EAPI=6 HOMEPAGE=https://www.wireshark.org/ IUSE=adns androiddump bcg729 +capinfos +captype ciscodump +dftest doc dpauxmon +dumpcap +editcap kerberos libxml2 lua lz4 maxminddb +mergecap +netlink nghttp2 +pcap +qt5 +randpkt +randpktdump +reordercap sbc selinux +sharkd smi snappy spandsp sshdump ssl sdjournal +text2pcap tfshark +tshark +udpdump zlib +filecaps python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc64 x86 +KEYWORDS=alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc64 x86 LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.32:2 dev-libs/libgcrypt:0 adns? ( >=net-dns/c-ares-1.5 ) bcg729? ( media-libs/bcg729 ) ciscodump? ( >=net-libs/libssh-0.6 ) filecaps? ( sys-libs/libcap ) kerberos? ( virtual/krb5 ) libxml2? ( dev-libs/libxml2 ) lua? ( >=dev-lang/lua-5.1:* ) lz4? ( app-arch/lz4 ) maxminddb? ( dev-libs/libmaxminddb ) netlink? ( dev-libs/libnl:3 ) nghttp2? ( net-libs/nghttp2 ) pcap? ( net-libs/libpcap ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtprintsupport:5 dev-qt/qtwidgets:5 x11-misc/xdg-utils ) sbc? ( media-libs/sbc ) sdjournal? ( sys-apps/systemd ) smi? ( net-libs/libsmi ) snappy? ( app-arch/snappy ) spandsp? ( media-libs/spandsp ) sshdump? ( >=net-libs/libssh-0.6 ) ssl? ( net-libs/gnutls:= ) zlib? ( sys-libs/zlib ) qt5? ( virtual/freedesktop-icon-theme ) selinux? ( sec-policy/selinux-wireshark ) REQUIRED_USE=|| ( python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 ) SLOT=0/3.0.1 SRC_URI=https://www.wireshark.org/download/src/all-versions/wireshark-3.0.1.tar.xz _eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 fcaps 9445d60c1eb084a91c38ef4c070b2f16 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f qmake-utils bdf97e69a34b864d6d545f4ec3143ff7 toolchain-funcs b45201c4e6c096b98e250336954e64b9 user 8bd74731cafdcdad8f7a63637302e073 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=71a9dd086022c95382e3545066906119 +_md5_=e2f0e11c5c47e6fd22c66498010946f7 diff --git a/metadata/md5-cache/net-dns/Manifest.gz b/metadata/md5-cache/net-dns/Manifest.gz index 525fcf722664..00be5ae21ab0 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/dnssec-validator-2.2.3 b/metadata/md5-cache/net-dns/dnssec-validator-2.2.3 new file mode 100644 index 000000000000..4aa2954a211f --- /dev/null +++ b/metadata/md5-cache/net-dns/dnssec-validator-2.2.3 @@ -0,0 +1,15 @@ +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=configure install prepare +DEPEND=>=dev-libs/openssl-1.1.0:0 +DESCRIPTION=Tools to ease the validation of DNSSEC related technologies +EAPI=7 +HOMEPAGE=https://www.dnssec-tools.org/ +IUSE=dlv +ipv6 +nsec3 static-libs +threads +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=BSD +RDEPEND=>=dev-libs/openssl-1.1.0:0 +RESTRICT=test +SLOT=0 +SRC_URI=https://github.com/DNSSEC-Tools/DNSSEC-Tools/archive/dnssec-tools-2.2.3.tar.gz +_eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=50da7e5a29ba69a9065988d3a2c6265c diff --git a/metadata/md5-cache/net-fs/Manifest.gz b/metadata/md5-cache/net-fs/Manifest.gz index 534e26dd7499..9609bf360ba8 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/nfs-utils-2.3.3 b/metadata/md5-cache/net-fs/nfs-utils-2.3.3 index f90d93c60007..f44d69978f77 100644 --- a/metadata/md5-cache/net-fs/nfs-utils-2.3.3 +++ b/metadata/md5-cache/net-fs/nfs-utils-2.3.3 @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/nfs/nfs-utils-2.3.3.tar.bz2 _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=5f825fa0f72562db0b0c080c786764ca +_md5_=990be5db2759f68b06fbdfecb38f47f3 diff --git a/metadata/md5-cache/net-ftp/Manifest.gz b/metadata/md5-cache/net-ftp/Manifest.gz index ad684d793bad..8f856b29f773 100644 Binary files a/metadata/md5-cache/net-ftp/Manifest.gz and b/metadata/md5-cache/net-ftp/Manifest.gz differ diff --git a/metadata/md5-cache/net-ftp/proftpd-1.3.6-r3 b/metadata/md5-cache/net-ftp/proftpd-1.3.6-r3 index bff695fa9953..f00c3736a500 100644 --- a/metadata/md5-cache/net-ftp/proftpd-1.3.6-r3 +++ b/metadata/md5-cache/net-ftp/proftpd-1.3.6-r3 @@ -4,7 +4,7 @@ DESCRIPTION=An advanced and very configurable FTP server EAPI=6 HOMEPAGE=http://www.proftpd.org/ http://www.castaglia.org/proftpd/ http://www.thrallingpenguin.com/resources/mod_clamav.htm http://gssmod.sourceforge.net/ IUSE=acl authfile ban +caps case clamav copy ctrls deflate diskuse doc dso dynmasq exec ifsession ifversion ident ipv6 kerberos ldap libressl log_forensic memcache msg mysql ncurses nls pam +pcre postgres qos radius ratio readme rewrite selinux sftp shaper sitemisc snmp sodium softquota sqlite ssl tcpd test unique_id vroot xinetd -KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd +KEYWORDS=alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd LICENSE=GPL-2 RDEPEND=acl? ( virtual/acl ) caps? ( sys-libs/libcap ) clamav? ( app-antivirus/clamav ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) memcache? ( >=dev-libs/libmemcached-0.41 ) mysql? ( dev-db/mysql-connector-c:0= ) nls? ( virtual/libiconv ) ncurses? ( sys-libs/ncurses:0= ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) ) pam? ( virtual/pam ) pcre? ( dev-libs/libpcre ) postgres? ( dev-db/postgresql:= ) sodium? ( dev-libs/libsodium:0= ) sqlite? ( dev-db/sqlite:3 ) xinetd? ( virtual/inetd ) net-ftp/ftpbase selinux? ( sec-policy/selinux-ftp ) virtual/tmpfiles REQUIRED_USE=ban? ( ctrls ) msg? ( ctrls ) sftp? ( ssl ) shaper? ( ctrls ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=ftp://ftp.proftpd.org/distrib/source/proftpd-1.3.6.tar.gz case? ( http://www.castaglia.org/proftpd/modules/proftpd-mod-case-0.7.tar.gz ) clamav? ( https://secure.thrallingpenguin.com/redmine/attachments/download/1/mod_clamav-0.11rc.tar.gz ) diskuse? ( http://www.castaglia.org/proftpd/modules/proftpd-mod-diskuse-0.9.tar.gz ) kerberos? ( mirror://sourceforge/gssmod/mod_gss-1.3.6.tar.gz ) msg? ( http://www.castaglia.org/proftpd/modules/proftpd-mod-msg-0.4.1.tar.gz ) vroot? ( https://github.com/Castaglia/proftpd-mod_vroot/archive/v0.9.4.tar.gz -> mod_vroot-0.9.4.tar.gz ) _eclasses_=multilib b2f01ad412baf81650c23fcf0975fa33 systemd 71fd8d2065d102753fb9e4d20eaf3e9f tmpfiles a6dd0427ea9c68067a0a7fe2236b457f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=a99e9a9ed335cbc231ce9bd07729afaa +_md5_=9275f1eaf3bb54b87c901ff5c46f0953 diff --git a/metadata/md5-cache/net-libs/Manifest.gz b/metadata/md5-cache/net-libs/Manifest.gz index ca94679e0d5d..b26074785e78 100644 Binary files a/metadata/md5-cache/net-libs/Manifest.gz and b/metadata/md5-cache/net-libs/Manifest.gz differ diff --git a/metadata/md5-cache/net-libs/gsoap-2.8.80 b/metadata/md5-cache/net-libs/gsoap-2.8.83 similarity index 94% rename from metadata/md5-cache/net-libs/gsoap-2.8.80 rename to metadata/md5-cache/net-libs/gsoap-2.8.83 index a2b15884d38f..8b09b5a4d19a 100644 --- a/metadata/md5-cache/net-libs/gsoap-2.8.80 +++ b/metadata/md5-cache/net-libs/gsoap-2.8.83 @@ -9,6 +9,6 @@ KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 gSOAP RDEPEND=sys-libs/zlib gnutls? ( net-libs/gnutls ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl ) ) SLOT=0 -SRC_URI=mirror://sourceforge/gsoap2/gsoap_2.8.80.zip +SRC_URI=mirror://sourceforge/gsoap2/gsoap_2.8.83.zip _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 _md5_=77abe83dd717d9d21a181bf20db624f0 diff --git a/metadata/md5-cache/net-libs/libesmtp-1.0.6-r3 b/metadata/md5-cache/net-libs/libesmtp-1.0.6-r3 index 2190322dc156..3812c1cddffe 100644 --- a/metadata/md5-cache/net-libs/libesmtp-1.0.6-r3 +++ b/metadata/md5-cache/net-libs/libesmtp-1.0.6-r3 @@ -5,10 +5,10 @@ DESCRIPTION=lib that implements the client side of the SMTP protocol EAPI=7 HOMEPAGE=http://brianstafford.info/libesmtp/ IUSE=debug libressl ntlm ssl static-libs threads -KEYWORDS=~alpha amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~x86-macos +KEYWORDS=~alpha amd64 ~arm arm64 hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~x86-macos LICENSE=LGPL-2.1 GPL-2 RDEPEND=ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) SLOT=0 SRC_URI=http://brianstafford.info/libesmtp/libesmtp-1.0.6.tar.bz2 _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=2a5315aca95472dd1382824eb8c64649 +_md5_=8242bce6e0fe414e404ce331b8b5f0b8 diff --git a/metadata/md5-cache/net-libs/libupnpp-0.16.1 b/metadata/md5-cache/net-libs/libupnpp-0.16.1 deleted file mode 100644 index 95d010fd7879..000000000000 --- a/metadata/md5-cache/net-libs/libupnpp-0.16.1 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=- -DEPEND=dev-libs/expat =dev-util/cmake-3.9.6 virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst prepare test +DESCRIPTION=Encrypted P2P, messaging, and audio/video calling platform +EAPI=7 +HOMEPAGE=https://tox.chat +IUSE=+av daemon ipv6 log-debug +log-error log-info log-trace log-warn static-libs test +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=GPL-3+ +RDEPEND=av? ( media-libs/libvpx:= media-libs/opus ) daemon? ( dev-libs/libconfig ) >=dev-libs/libsodium-0.6.1:=[asm,urandom,-minimal] +REQUIRED_USE=?? ( log-debug log-error log-info log-trace log-warn ) +SLOT=0/0.2 +SRC_URI=https://github.com/TokTok/c-toxcore/archive/v0.2.9.tar.gz -> c-toxcore-0.2.9.tar.gz +_eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 user 8bd74731cafdcdad8f7a63637302e073 xdg-utils 14d00d009167652b1fa363e55effe213 +_md5_=d8e069120bce237c7be499783081fba2 diff --git a/metadata/md5-cache/net-mail/Manifest.gz b/metadata/md5-cache/net-mail/Manifest.gz index 1bd936d38ebb..cb1db4c42d81 100644 Binary files a/metadata/md5-cache/net-mail/Manifest.gz and b/metadata/md5-cache/net-mail/Manifest.gz differ diff --git a/metadata/md5-cache/net-mail/dovecot-2.3.5.2 b/metadata/md5-cache/net-mail/dovecot-2.3.5.2 index dab362ec1e58..088fdfb4be96 100644 --- a/metadata/md5-cache/net-mail/dovecot-2.3.5.2 +++ b/metadata/md5-cache/net-mail/dovecot-2.3.5.2 @@ -4,10 +4,10 @@ DESCRIPTION=An IMAP and POP3 server written with security primarily in mind EAPI=6 HOMEPAGE=https://www.dovecot.org/ IUSE=kerberos ldap lua mysql pam postgres sqlite vpopmail bzip2 lzma lz4 zlib argon2 caps doc ipv6 libressl lucene managesieve selinux sieve solr static-libs suid tcpd textcat -KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +KEYWORDS=alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 LICENSE=LGPL-2.1 MIT RDEPEND=argon2? ( dev-libs/libsodium ) bzip2? ( app-arch/bzip2 ) caps? ( sys-libs/libcap ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) lua? ( dev-lang/lua:* ) lucene? ( >=dev-cpp/clucene-2.3 ) lzma? ( app-arch/xz-utils ) lz4? ( app-arch/lz4 ) mysql? ( dev-db/mysql-connector-c:0= ) pam? ( virtual/pam ) postgres? ( dev-db/postgresql:* !dev-db/postgresql[ldap,threads] ) selinux? ( sec-policy/selinux-dovecot ) solr? ( net-misc/curl dev-libs/expat ) sqlite? ( dev-db/sqlite:* ) !libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) tcpd? ( sys-apps/tcp-wrappers ) textcat? ( app-text/libexttextcat ) vpopmail? ( net-mail/vpopmail ) zlib? ( sys-libs/zlib ) virtual/libiconv dev-libs/icu:= net-mail/mailbase SLOT=0 SRC_URI=https://dovecot.org/releases/2.3/dovecot-2.3.5.2.tar.gz sieve? ( https://pigeonhole.dovecot.org/releases/2.3/dovecot-2.3-pigeonhole-0.5.5.tar.gz ) managesieve? ( https://pigeonhole.dovecot.org/releases/2.3/dovecot-2.3-pigeonhole-0.5.5.tar.gz ) _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 ssl-cert a1a4daed6b2479901759d6fe367c4c29 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 user 8bd74731cafdcdad8f7a63637302e073 -_md5_=6fdcbab588f0afc25cb34940d3fb19d8 +_md5_=5fb55e04b332324ea30d3bf48d74c8a5 diff --git a/metadata/md5-cache/net-misc/Manifest.gz b/metadata/md5-cache/net-misc/Manifest.gz index c5093ba77d08..1e40460dd276 100644 Binary files a/metadata/md5-cache/net-misc/Manifest.gz and b/metadata/md5-cache/net-misc/Manifest.gz differ diff --git a/metadata/md5-cache/net-misc/curl-7.64.1 b/metadata/md5-cache/net-misc/curl-7.64.1 index d175728d48eb..9afa409479c1 100644 --- a/metadata/md5-cache/net-misc/curl-7.64.1 +++ b/metadata/md5-cache/net-misc/curl-7.64.1 @@ -5,7 +5,7 @@ DESCRIPTION=A Client that groks URLs EAPI=7 HOMEPAGE=https://curl.haxx.se/ IUSE=adns brotli http2 idn ipv6 kerberos ldap metalink rtmp samba ssh ssl static-libs test threads curl_ssl_gnutls curl_ssl_libressl curl_ssl_mbedtls curl_ssl_nss +curl_ssl_openssl curl_ssl_winssl elibc_Winnt abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ldap? ( net-nds/openldap[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) brotli? ( app-arch/brotli:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssl? ( curl_ssl_gnutls? ( net-libs/gnutls:0=[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] dev-libs/nettle:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] app-misc/ca-certificates ) curl_ssl_libressl? ( dev-libs/libressl:0=[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) curl_ssl_mbedtls? ( net-libs/mbedtls:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] app-misc/ca-certificates ) curl_ssl_openssl? ( dev-libs/openssl:0=[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) curl_ssl_nss? ( dev-libs/nss:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] app-misc/ca-certificates ) ) http2? ( net-libs/nghttp2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) idn? ( net-dns/libidn2:0=[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) adns? ( net-dns/c-ares:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) kerberos? ( >=virtual/krb5-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) metalink? ( >=media-libs/libmetalink-0.1.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) rtmp? ( media-video/rtmpdump[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ssh? ( net-libs/libssh2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] REQUIRED_USE=curl_ssl_winssl? ( elibc_Winnt ) threads? ( !adns ) ssl? ( ^^ ( curl_ssl_gnutls curl_ssl_libressl curl_ssl_mbedtls curl_ssl_nss curl_ssl_openssl curl_ssl_winssl ) ) @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://curl.haxx.se/download/curl-7.64.1.tar.bz2 _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 libtool f143db5a74ccd9ca28c1234deffede96 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 prefix e51c7882b7b721e54e684f7eb143cbfe toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=f0f7a04d0e4d86fa9bcf9ae2a18956ab +_md5_=eb333dab6b20f12ff973f016ff255368 diff --git a/metadata/md5-cache/net-misc/dhcpcd-7.1.1-r1 b/metadata/md5-cache/net-misc/dhcpcd-7.1.1-r1 index c3c4d49cb619..1052556b2a21 100644 --- a/metadata/md5-cache/net-misc/dhcpcd-7.1.1-r1 +++ b/metadata/md5-cache/net-misc/dhcpcd-7.1.1-r1 @@ -4,10 +4,10 @@ DESCRIPTION=A fully featured, yet light weight RFC2131 compliant DHCP client EAPI=6 HOMEPAGE=https://roy.marples.name/projects/dhcpcd IUSE=elibc_glibc +embedded ipv6 kernel_linux +udev -KEYWORDS=~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux LICENSE=BSD-2 RDEPEND=udev? ( virtual/udev ) SLOT=0 SRC_URI=https://roy.marples.name/downloads/dhcpcd/dhcpcd-7.1.1.tar.xz _eclasses_=multilib b2f01ad412baf81650c23fcf0975fa33 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=053bb4d6113e2b561769b8b9f85b0d4e +_md5_=323a6fda5a3051f193d75fca16a40da2 diff --git a/metadata/md5-cache/net-misc/mikutter-3.8.6 b/metadata/md5-cache/net-misc/mikutter-3.8.6 new file mode 100644 index 000000000000..20b06297dd4a --- /dev/null +++ b/metadata/md5-cache/net-misc/mikutter-3.8.6 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile config configure install postinst prepare setup test unpack +DEPEND=test? ( ruby_targets_ruby24? ( =dev-ruby/delayer-deferred-2.0[ruby_targets_ruby24] >=dev-ruby/diva-0.3.2[ruby_targets_ruby24] dev-ruby/httpclient[ruby_targets_ruby24] dev-ruby/json:0[ruby_targets_ruby24] dev-ruby/instance_storage[ruby_targets_ruby24] dev-ruby/memoist[ruby_targets_ruby24] dev-ruby/moneta[ruby_targets_ruby24] dev-ruby/nokogiri[ruby_targets_ruby24] >=dev-ruby/oauth-0.5.1[ruby_targets_ruby24] >=dev-ruby/pluggaloid-1.1.1[ruby_targets_ruby24] dev-ruby/rcairo[ruby_targets_ruby24] >=dev-ruby/ruby-gettext-3.2.9[ruby_targets_ruby24] >=dev-ruby/ruby-gtk2-3.3.0[ruby_targets_ruby24] >dev-ruby/ruby-hmac-0.4[ruby_targets_ruby24] dev-ruby/totoridipjp[ruby_targets_ruby24] dev-ruby/twitter-text:=[ruby_targets_ruby24] >dev-ruby/typed-array-0.1[ruby_targets_ruby24] virtual/ruby-ssl[ruby_targets_ruby24] ) ruby_targets_ruby25? ( =dev-ruby/delayer-deferred-2.0[ruby_targets_ruby25] >=dev-ruby/diva-0.3.2[ruby_targets_ruby25] dev-ruby/httpclient[ruby_targets_ruby25] dev-ruby/json:0[ruby_targets_ruby25] dev-ruby/instance_storage[ruby_targets_ruby25] dev-ruby/memoist[ruby_targets_ruby25] dev-ruby/moneta[ruby_targets_ruby25] dev-ruby/nokogiri[ruby_targets_ruby25] >=dev-ruby/oauth-0.5.1[ruby_targets_ruby25] >=dev-ruby/pluggaloid-1.1.1[ruby_targets_ruby25] dev-ruby/rcairo[ruby_targets_ruby25] >=dev-ruby/ruby-gettext-3.2.9[ruby_targets_ruby25] >=dev-ruby/ruby-gtk2-3.3.0[ruby_targets_ruby25] >dev-ruby/ruby-hmac-0.4[ruby_targets_ruby25] dev-ruby/totoridipjp[ruby_targets_ruby25] dev-ruby/twitter-text:=[ruby_targets_ruby25] >dev-ruby/typed-array-0.1[ruby_targets_ruby25] virtual/ruby-ssl[ruby_targets_ruby25] ) ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) +DESCRIPTION=Simple, powerful and moeful twitter client +EAPI=6 +HOMEPAGE=http://mikutter.hachune.net/ +IUSE=+libnotify test elibc_FreeBSD ruby_targets_ruby24 ruby_targets_ruby25 +KEYWORDS=~amd64 +LICENSE=GPL-3 +RDEPEND=libnotify? ( x11-libs/libnotify ) media-sound/alsa-utils ruby_targets_ruby24? ( =dev-ruby/delayer-deferred-2.0[ruby_targets_ruby24] >=dev-ruby/diva-0.3.2[ruby_targets_ruby24] dev-ruby/httpclient[ruby_targets_ruby24] dev-ruby/json:0[ruby_targets_ruby24] dev-ruby/instance_storage[ruby_targets_ruby24] dev-ruby/memoist[ruby_targets_ruby24] dev-ruby/moneta[ruby_targets_ruby24] dev-ruby/nokogiri[ruby_targets_ruby24] >=dev-ruby/oauth-0.5.1[ruby_targets_ruby24] >=dev-ruby/pluggaloid-1.1.1[ruby_targets_ruby24] dev-ruby/rcairo[ruby_targets_ruby24] >=dev-ruby/ruby-gettext-3.2.9[ruby_targets_ruby24] >=dev-ruby/ruby-gtk2-3.3.0[ruby_targets_ruby24] >dev-ruby/ruby-hmac-0.4[ruby_targets_ruby24] dev-ruby/totoridipjp[ruby_targets_ruby24] dev-ruby/twitter-text:=[ruby_targets_ruby24] >dev-ruby/typed-array-0.1[ruby_targets_ruby24] virtual/ruby-ssl[ruby_targets_ruby24] ) ruby_targets_ruby25? ( =dev-ruby/delayer-deferred-2.0[ruby_targets_ruby25] >=dev-ruby/diva-0.3.2[ruby_targets_ruby25] dev-ruby/httpclient[ruby_targets_ruby25] dev-ruby/json:0[ruby_targets_ruby25] dev-ruby/instance_storage[ruby_targets_ruby25] dev-ruby/memoist[ruby_targets_ruby25] dev-ruby/moneta[ruby_targets_ruby25] dev-ruby/nokogiri[ruby_targets_ruby25] >=dev-ruby/oauth-0.5.1[ruby_targets_ruby25] >=dev-ruby/pluggaloid-1.1.1[ruby_targets_ruby25] dev-ruby/rcairo[ruby_targets_ruby25] >=dev-ruby/ruby-gettext-3.2.9[ruby_targets_ruby25] >=dev-ruby/ruby-gtk2-3.3.0[ruby_targets_ruby25] >dev-ruby/ruby-hmac-0.4[ruby_targets_ruby25] dev-ruby/totoridipjp[ruby_targets_ruby25] dev-ruby/twitter-text:=[ruby_targets_ruby25] >dev-ruby/typed-array-0.1[ruby_targets_ruby25] virtual/ruby-ssl[ruby_targets_ruby25] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) +REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ) +SLOT=0 +SRC_URI=http://mikutter.hachune.net/bin/mikutter.3.8.6.tar.gz https://raw.githubusercontent.com/toshia/twitter_api_keys/30071c3008e4616e723cf4e734fc79254019af09/twitter_api_keys.rb +_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 +_md5_=6917af49c51532bbf30e72dba71904c4 diff --git a/metadata/md5-cache/net-misc/mikutter-9999 b/metadata/md5-cache/net-misc/mikutter-9999 index c8d733348da4..e36a47276ea8 100644 --- a/metadata/md5-cache/net-misc/mikutter-9999 +++ b/metadata/md5-cache/net-misc/mikutter-9999 @@ -1,12 +1,13 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby23? ( dev-ruby/addressable[ruby_targets_ruby23] dev-ruby/delayer[ruby_targets_ruby23] dev-ruby/delayer-deferred[ruby_targets_ruby23] dev-ruby/httpclient[ruby_targets_ruby23] dev-ruby/json:0[ruby_targets_ruby23] dev-ruby/instance_storage[ruby_targets_ruby23] dev-ruby/memoist[ruby_targets_ruby23] >=dev-ruby/moneta-0.7[ruby_targets_ruby23] dev-ruby/nokogiri[ruby_targets_ruby23] >=dev-ruby/oauth-0.4.7[ruby_targets_ruby23] dev-ruby/pluggaloid[ruby_targets_ruby23] dev-ruby/rcairo[ruby_targets_ruby23] >=dev-ruby/ruby-gettext-3.0.1[ruby_targets_ruby23] >=dev-ruby/ruby-gtk2-2.2.0[ruby_targets_ruby23] dev-ruby/ruby-hmac[ruby_targets_ruby23] dev-ruby/totoridipjp[ruby_targets_ruby23] dev-ruby/twitter-text[ruby_targets_ruby23] dev-ruby/typed-array[ruby_targets_ruby23] virtual/ruby-ssl[ruby_targets_ruby23] ) ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) dev-vcs/git +DEFINED_PHASES=compile config configure install postinst prepare setup test unpack +DEPEND=test? ( ruby_targets_ruby24? ( =dev-ruby/delayer-deferred-2.0[ruby_targets_ruby24] >=dev-ruby/diva-0.3.2[ruby_targets_ruby24] dev-ruby/httpclient[ruby_targets_ruby24] dev-ruby/json:0[ruby_targets_ruby24] dev-ruby/instance_storage[ruby_targets_ruby24] dev-ruby/memoist[ruby_targets_ruby24] dev-ruby/moneta[ruby_targets_ruby24] dev-ruby/nokogiri[ruby_targets_ruby24] >=dev-ruby/oauth-0.5.1[ruby_targets_ruby24] >=dev-ruby/pluggaloid-1.1.1[ruby_targets_ruby24] dev-ruby/rcairo[ruby_targets_ruby24] >=dev-ruby/ruby-gettext-3.2.9[ruby_targets_ruby24] >=dev-ruby/ruby-gtk2-3.3.0[ruby_targets_ruby24] >dev-ruby/ruby-hmac-0.4[ruby_targets_ruby24] dev-ruby/totoridipjp[ruby_targets_ruby24] dev-ruby/twitter-text:=[ruby_targets_ruby24] >dev-ruby/typed-array-0.1[ruby_targets_ruby24] virtual/ruby-ssl[ruby_targets_ruby24] ) ruby_targets_ruby25? ( =dev-ruby/delayer-deferred-2.0[ruby_targets_ruby25] >=dev-ruby/diva-0.3.2[ruby_targets_ruby25] dev-ruby/httpclient[ruby_targets_ruby25] dev-ruby/json:0[ruby_targets_ruby25] dev-ruby/instance_storage[ruby_targets_ruby25] dev-ruby/memoist[ruby_targets_ruby25] dev-ruby/moneta[ruby_targets_ruby25] dev-ruby/nokogiri[ruby_targets_ruby25] >=dev-ruby/oauth-0.5.1[ruby_targets_ruby25] >=dev-ruby/pluggaloid-1.1.1[ruby_targets_ruby25] dev-ruby/rcairo[ruby_targets_ruby25] >=dev-ruby/ruby-gettext-3.2.9[ruby_targets_ruby25] >=dev-ruby/ruby-gtk2-3.3.0[ruby_targets_ruby25] >dev-ruby/ruby-hmac-0.4[ruby_targets_ruby25] dev-ruby/totoridipjp[ruby_targets_ruby25] dev-ruby/twitter-text:=[ruby_targets_ruby25] >dev-ruby/typed-array-0.1[ruby_targets_ruby25] virtual/ruby-ssl[ruby_targets_ruby25] ) ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) >=dev-vcs/git-1.8.2.1[curl] DESCRIPTION=Simple, powerful and moeful twitter client -EAPI=5 +EAPI=6 HOMEPAGE=http://mikutter.hachune.net/ -IUSE=+libnotify test elibc_FreeBSD ruby_targets_ruby23 +IUSE=+libnotify test elibc_FreeBSD ruby_targets_ruby24 ruby_targets_ruby25 LICENSE=GPL-3 -RDEPEND=libnotify? ( x11-libs/libnotify ) media-sound/alsa-utils ruby_targets_ruby23? ( dev-ruby/addressable[ruby_targets_ruby23] dev-ruby/delayer[ruby_targets_ruby23] dev-ruby/delayer-deferred[ruby_targets_ruby23] dev-ruby/httpclient[ruby_targets_ruby23] dev-ruby/json:0[ruby_targets_ruby23] dev-ruby/instance_storage[ruby_targets_ruby23] dev-ruby/memoist[ruby_targets_ruby23] >=dev-ruby/moneta-0.7[ruby_targets_ruby23] dev-ruby/nokogiri[ruby_targets_ruby23] >=dev-ruby/oauth-0.4.7[ruby_targets_ruby23] dev-ruby/pluggaloid[ruby_targets_ruby23] dev-ruby/rcairo[ruby_targets_ruby23] >=dev-ruby/ruby-gettext-3.0.1[ruby_targets_ruby23] >=dev-ruby/ruby-gtk2-2.2.0[ruby_targets_ruby23] dev-ruby/ruby-hmac[ruby_targets_ruby23] dev-ruby/totoridipjp[ruby_targets_ruby23] dev-ruby/twitter-text[ruby_targets_ruby23] dev-ruby/typed-array[ruby_targets_ruby23] virtual/ruby-ssl[ruby_targets_ruby23] ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) -REQUIRED_USE=|| ( ruby_targets_ruby23 ) +RDEPEND=libnotify? ( x11-libs/libnotify ) media-sound/alsa-utils ruby_targets_ruby24? ( =dev-ruby/delayer-deferred-2.0[ruby_targets_ruby24] >=dev-ruby/diva-0.3.2[ruby_targets_ruby24] dev-ruby/httpclient[ruby_targets_ruby24] dev-ruby/json:0[ruby_targets_ruby24] dev-ruby/instance_storage[ruby_targets_ruby24] dev-ruby/memoist[ruby_targets_ruby24] dev-ruby/moneta[ruby_targets_ruby24] dev-ruby/nokogiri[ruby_targets_ruby24] >=dev-ruby/oauth-0.5.1[ruby_targets_ruby24] >=dev-ruby/pluggaloid-1.1.1[ruby_targets_ruby24] dev-ruby/rcairo[ruby_targets_ruby24] >=dev-ruby/ruby-gettext-3.2.9[ruby_targets_ruby24] >=dev-ruby/ruby-gtk2-3.3.0[ruby_targets_ruby24] >dev-ruby/ruby-hmac-0.4[ruby_targets_ruby24] dev-ruby/totoridipjp[ruby_targets_ruby24] dev-ruby/twitter-text:=[ruby_targets_ruby24] >dev-ruby/typed-array-0.1[ruby_targets_ruby24] virtual/ruby-ssl[ruby_targets_ruby24] ) ruby_targets_ruby25? ( =dev-ruby/delayer-deferred-2.0[ruby_targets_ruby25] >=dev-ruby/diva-0.3.2[ruby_targets_ruby25] dev-ruby/httpclient[ruby_targets_ruby25] dev-ruby/json:0[ruby_targets_ruby25] dev-ruby/instance_storage[ruby_targets_ruby25] dev-ruby/memoist[ruby_targets_ruby25] dev-ruby/moneta[ruby_targets_ruby25] dev-ruby/nokogiri[ruby_targets_ruby25] >=dev-ruby/oauth-0.5.1[ruby_targets_ruby25] >=dev-ruby/pluggaloid-1.1.1[ruby_targets_ruby25] dev-ruby/rcairo[ruby_targets_ruby25] >=dev-ruby/ruby-gettext-3.2.9[ruby_targets_ruby25] >=dev-ruby/ruby-gtk2-3.3.0[ruby_targets_ruby25] >dev-ruby/ruby-hmac-0.4[ruby_targets_ruby25] dev-ruby/totoridipjp[ruby_targets_ruby25] dev-ruby/twitter-text:=[ruby_targets_ruby25] >dev-ruby/typed-array-0.1[ruby_targets_ruby25] virtual/ruby-ssl[ruby_targets_ruby25] ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) +REQUIRED_USE=|| ( ruby_targets_ruby24 ruby_targets_ruby25 ) SLOT=0 -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 git-2 249c1a0962573f4ce2c28f0d5b6b35d4 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=05e92b05810e10b577b896abde465574 +SRC_URI=https://raw.githubusercontent.com/toshia/twitter_api_keys/30071c3008e4616e723cf4e734fc79254019af09/twitter_api_keys.rb +_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 git-r3 0d4635eeb5a96cd5315597a47eba25c9 java-utils-2 dd352559d0e143500ec878acc74da909 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 9ffc1c055a3294fcc48de781c94825f6 ruby-utils 10cec86289e60f4b0d731b2e4b545e5d toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 +_md5_=6917af49c51532bbf30e72dba71904c4 diff --git a/metadata/md5-cache/net-misc/wget-1.20.3 b/metadata/md5-cache/net-misc/wget-1.20.3 index d3ea5cca7a39..29690bee1681 100644 --- a/metadata/md5-cache/net-misc/wget-1.20.3 +++ b/metadata/md5-cache/net-misc/wget-1.20.3 @@ -4,11 +4,11 @@ DESCRIPTION=Network utility to retrieve files from the WWW EAPI=6 HOMEPAGE=https://www.gnu.org/software/wget/ IUSE=debug gnutls idn ipv6 libressl nls ntlm pcre +ssl static test uuid zlib -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-3 RDEPEND=!static? ( idn? ( >=net-dns/libidn2-0.14:= ) pcre? ( dev-libs/libpcre2 ) ssl? ( gnutls? ( net-libs/gnutls:0= ) !gnutls? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) ) uuid? ( sys-apps/util-linux ) zlib? ( sys-libs/zlib ) ) REQUIRED_USE=ntlm? ( !gnutls ssl ) gnutls? ( ssl ) SLOT=0 SRC_URI=mirror://gnu/wget/wget-1.20.3.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 python-any-r1 4900ae970f827a22d33d41bd8b8f9ace python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=1476866252062004429426b3d8d15c74 +_md5_=35ac3b40965e1f5476caebca5a013238 diff --git a/metadata/md5-cache/net-misc/zerotier-1.2.12 b/metadata/md5-cache/net-misc/zerotier-1.2.12 index 0a76b6fc79ba..a8f9c4eb5cce 100644 --- a/metadata/md5-cache/net-misc/zerotier-1.2.12 +++ b/metadata/md5-cache/net-misc/zerotier-1.2.12 @@ -3,10 +3,10 @@ DEPEND=dev-libs/json-glib:= net-libs/http-parser:= net-libs/libnatpmp:= net-libs DESCRIPTION=A software-based managed Ethernet switch for planet Earth EAPI=6 HOMEPAGE=https://www.zerotier.com/ -KEYWORDS=~amd64 ~arm ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 LICENSE=GPL-3 RDEPEND=dev-libs/json-glib:= net-libs/http-parser:= net-libs/libnatpmp:= net-libs/miniupnpc:= SLOT=0 SRC_URI=https://github.com/zerotier/ZeroTierOne/archive/1.2.12.tar.gz -> zerotier-1.2.12.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=0eb21ad0f297c45aa4e31d2035781cb7 +_md5_=3ba293309fbe8da51b03d096c6edb58a diff --git a/metadata/md5-cache/net-nds/Manifest.gz b/metadata/md5-cache/net-nds/Manifest.gz index f13f90f2772a..60caad99f2e9 100644 Binary files a/metadata/md5-cache/net-nds/Manifest.gz and b/metadata/md5-cache/net-nds/Manifest.gz differ diff --git a/metadata/md5-cache/net-nds/gss-proxy-0.8.2 b/metadata/md5-cache/net-nds/gss-proxy-0.8.2 new file mode 100644 index 000000000000..12a8e24c817f --- /dev/null +++ b/metadata/md5-cache/net-nds/gss-proxy-0.8.2 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure install +DEPEND=>=dev-libs/libverto-0.2.2 >=dev-libs/ding-libs-0.6.1 virtual/krb5 selinux? ( sys-libs/libselinux ) app-text/docbook-xml-dtd:4.4 dev-libs/libxslt virtual/pkgconfig +DESCRIPTION=daemon to proxy GSSAPI context establishment and channel handling +EAPI=6 +HOMEPAGE=https://pagure.io/gssproxy +IUSE=debug selinux systemd hardened +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +LICENSE=BSD-1 +RDEPEND=>=dev-libs/libverto-0.2.2 >=dev-libs/ding-libs-0.6.1 virtual/krb5 selinux? ( sys-libs/libselinux ) selinux? ( sec-policy/selinux-gssproxy ) +RESTRICT=test +SLOT=0 +SRC_URI=http://releases.pagure.org/gssproxy/gssproxy-0.8.2.tar.gz +_md5_=0dc9f1b53b03744e13ea4934fa47d58d diff --git a/metadata/md5-cache/sci-astronomy/Manifest.gz b/metadata/md5-cache/sci-astronomy/Manifest.gz index 7c6f07392b2c..477435ad5e58 100644 Binary files a/metadata/md5-cache/sci-astronomy/Manifest.gz and b/metadata/md5-cache/sci-astronomy/Manifest.gz differ diff --git a/metadata/md5-cache/sci-astronomy/kstars-3.2.0 b/metadata/md5-cache/sci-astronomy/kstars-3.2.0 new file mode 100644 index 000000000000..cafbe34f6a19 --- /dev/null +++ b/metadata/md5-cache/sci-astronomy/kstars-3.2.0 @@ -0,0 +1,15 @@ +BDEPEND=dev-util/ninja >=dev-util/cmake-3.9.6 >=kde-frameworks/extra-cmake-modules-5.54.0:5 handbook? ( >=kde-frameworks/kdoctools-5.54.0:5 ) +DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack +DEPEND=>=kde-frameworks/kauth-5.54.0:5 >=kde-frameworks/kconfig-5.54.0:5 >=kde-frameworks/kconfigwidgets-5.54.0:5 >=kde-frameworks/kcoreaddons-5.54.0:5 >=kde-frameworks/kcrash-5.54.0:5 >=kde-frameworks/ki18n-5.54.0:5 >=kde-frameworks/kio-5.54.0:5 >=kde-frameworks/knewstuff-5.54.0:5 >=kde-frameworks/knotifications-5.54.0:5 >=kde-frameworks/knotifyconfig-5.54.0:5 >=kde-frameworks/kplotting-5.54.0:5 >=kde-frameworks/kwidgetsaddons-5.54.0:5 >=kde-frameworks/kxmlgui-5.54.0:5 >=dev-qt/qtdatavis3d-5.11.1:5 >=dev-qt/qtdbus-5.11.1:5 >=dev-qt/qtdeclarative-5.11.1:5 >=dev-qt/qtgui-5.11.1:5 >=dev-qt/qtnetwork-5.11.1:5 >=dev-qt/qtprintsupport-5.11.1:5 >=dev-qt/qtsql-5.11.1:5 >=dev-qt/qtsvg-5.11.1:5 >=dev-qt/qtwebsockets-5.11.1:5 >=dev-qt/qtwidgets-5.11.1:5 sys-libs/zlib fits? ( sci-libs/cfitsio ) indi? ( >=sci-libs/indilib-1.7.5 ) password? ( dev-libs/qtkeychain:= ) raw? ( media-libs/libraw:= ) wcs? ( sci-astronomy/wcslib ) >=dev-qt/qtconcurrent-5.11.1:5 dev-cpp/eigen:3 dev-util/desktop-file-utils x11-misc/shared-mime-info >=dev-qt/qtcore-5.11.1:5 dev-util/desktop-file-utils app-arch/xz-utils +DESCRIPTION=Desktop Planetarium +EAPI=7 +HOMEPAGE=https://kde.org/applications/education/kstars https://edu.kde.org/kstars/ +IUSE=fits indi +password raw wcs debug +handbook python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=>=kde-frameworks/kauth-5.54.0:5 >=kde-frameworks/kconfig-5.54.0:5 >=kde-frameworks/kconfigwidgets-5.54.0:5 >=kde-frameworks/kcoreaddons-5.54.0:5 >=kde-frameworks/kcrash-5.54.0:5 >=kde-frameworks/ki18n-5.54.0:5 >=kde-frameworks/kio-5.54.0:5 >=kde-frameworks/knewstuff-5.54.0:5 >=kde-frameworks/knotifications-5.54.0:5 >=kde-frameworks/knotifyconfig-5.54.0:5 >=kde-frameworks/kplotting-5.54.0:5 >=kde-frameworks/kwidgetsaddons-5.54.0:5 >=kde-frameworks/kxmlgui-5.54.0:5 >=dev-qt/qtdatavis3d-5.11.1:5 >=dev-qt/qtdbus-5.11.1:5 >=dev-qt/qtdeclarative-5.11.1:5 >=dev-qt/qtgui-5.11.1:5 >=dev-qt/qtnetwork-5.11.1:5 >=dev-qt/qtprintsupport-5.11.1:5 >=dev-qt/qtsql-5.11.1:5 >=dev-qt/qtsvg-5.11.1:5 >=dev-qt/qtwebsockets-5.11.1:5 >=dev-qt/qtwidgets-5.11.1:5 sys-libs/zlib fits? ( sci-libs/cfitsio ) indi? ( >=sci-libs/indilib-1.7.5 ) password? ( dev-libs/qtkeychain:= ) raw? ( media-libs/libraw:= ) wcs? ( sci-astronomy/wcslib ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)] >=kde-frameworks/kf-env-4 || ( >=kde-frameworks/breeze-icons-5.54.0:5 kde-frameworks/oxygen-icons:* ) >=dev-qt/qtcore-5.11.1:5 +REQUIRED_USE=indi? ( fits ) python_targets_python2_7 +SLOT=5 +SRC_URI=mirror://kde/stable/kstars/kstars-3.2.0.tar.xz +_eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf kde5 79b9341795c77777bb58dd1513bcbbb6 kde5-functions d2eb74228ec6cacb426e9e65eff37784 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 virtualx 401b718cc14d43a5a7fbe062c4851ba5 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 14d00d009167652b1fa363e55effe213 +_md5_=f13832b74fc5bb32b99e87e394c588fe diff --git a/metadata/md5-cache/sci-biology/Manifest.gz b/metadata/md5-cache/sci-biology/Manifest.gz index a6d388fc0d59..5b08349213fd 100644 Binary files a/metadata/md5-cache/sci-biology/Manifest.gz and b/metadata/md5-cache/sci-biology/Manifest.gz differ diff --git a/metadata/md5-cache/sci-biology/biopython-1.73 b/metadata/md5-cache/sci-biology/biopython-1.73 new file mode 100644 index 000000000000..297eb9b62ebb --- /dev/null +++ b/metadata/md5-cache/sci-biology/biopython-1.73 @@ -0,0 +1,15 @@ +BDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] +DEFINED_PHASES=compile configure install postinst prepare test +DEPEND=dev-python/matplotlib[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/networkx[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/numpy[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/rdflib[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pygraphviz[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/reportlab-3.5.13-r1[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pydot[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] sys-devel/flex +DESCRIPTION=Python modules for computational molecular biology +EAPI=7 +HOMEPAGE=https://www.biopython.org/ https://pypi.org/project/biopython/ +IUSE=python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +LICENSE=HPND +RDEPEND=dev-python/matplotlib[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/networkx[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/numpy[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/rdflib[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pygraphviz[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/reportlab-3.5.13-r1[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pydot[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 ) +SLOT=0 +SRC_URI=mirror://pypi/b/biopython/biopython-1.73.tar.gz +_eclasses_=distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=c467f0810536bbd7ae60a0ba82fbd422 diff --git a/metadata/md5-cache/sci-mathematics/Manifest.gz b/metadata/md5-cache/sci-mathematics/Manifest.gz index da859b20e315..9f24343133d0 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/p9m4-05-r1 b/metadata/md5-cache/sci-mathematics/p9m4-05-r1 index 5b4b4a84a834..691461ac40c7 100644 --- a/metadata/md5-cache/sci-mathematics/p9m4-05-r1 +++ b/metadata/md5-cache/sci-mathematics/p9m4-05-r1 @@ -1,14 +1,15 @@ -DEFINED_PHASES=compile configure install prepare setup test -DEPEND=dev-python/wxpython:* sci-mathematics/prover9 dev-python/setuptools python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)] +BDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/wxpython[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] sci-mathematics/prover9 dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] DESCRIPTION=This is a Graphical User Interface for Prover9 and Mace4 -EAPI=5 +EAPI=7 HOMEPAGE=http://www.cs.unm.edu/~mccune/mace4/ IUSE=examples python_targets_python2_7 KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND=dev-python/wxpython:* sci-mathematics/prover9 python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),python_single_target_python2_7(+)] -REQUIRED_USE=python_targets_python2_7 +RDEPEND=dev-python/wxpython[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] sci-mathematics/prover9 python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.cs.unm.edu/~mccune/prover9/gui/p9m4-v05.tar.gz https://dev.gentoo.org/~gienah/2big4tree/sci-mathematics/p9m4/p9m4-v05-64bit.patch.bz2 -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=fee19dd5acd6397cda12c0c44ef45db0 +_eclasses_=distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=c00af73fecb482d1981f5d01a5468d43 diff --git a/metadata/md5-cache/sci-visualization/Manifest.gz b/metadata/md5-cache/sci-visualization/Manifest.gz index 43d9d897cbad..3f3bcd54ae95 100644 Binary files a/metadata/md5-cache/sci-visualization/Manifest.gz and b/metadata/md5-cache/sci-visualization/Manifest.gz differ diff --git a/metadata/md5-cache/sci-visualization/labplot-2.6.0 b/metadata/md5-cache/sci-visualization/labplot-2.6.0 new file mode 100644 index 000000000000..772f39f8a6f7 --- /dev/null +++ b/metadata/md5-cache/sci-visualization/labplot-2.6.0 @@ -0,0 +1,14 @@ +BDEPEND=sys-devel/bison sys-devel/gettext dev-util/ninja >=dev-util/cmake-3.9.6 >=kde-frameworks/extra-cmake-modules-5.54.0:5 handbook? ( >=kde-frameworks/kdoctools-5.54.0:5 ) +DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack +DEPEND=>=kde-frameworks/karchive-5.54.0:5 >=kde-frameworks/kcompletion-5.54.0:5 >=kde-frameworks/kconfig-5.54.0:5 >=kde-frameworks/kconfigwidgets-5.54.0:5 >=kde-frameworks/kcoreaddons-5.54.0:5 >=kde-frameworks/ki18n-5.54.0:5 >=kde-frameworks/kiconthemes-5.54.0:5 >=kde-frameworks/knewstuff-5.54.0:5 >=kde-frameworks/kcrash-5.54.0:5 >=kde-frameworks/ktextwidgets-5.54.0:5 >=kde-frameworks/kwidgetsaddons-5.54.0:5 >=kde-frameworks/kxmlgui-5.54.0:5 >=kde-frameworks/syntax-highlighting-5.54.0:5 >=dev-qt/qtconcurrent-5.11.1:5 >=dev-qt/qtgui-5.11.1:5 >=dev-qt/qtnetwork-5.11.1:5 >=dev-qt/qtprintsupport-5.11.1:5 >=dev-qt/qtserialport-5.11.1:5 >=dev-qt/qtsql-5.11.1:5 >=dev-qt/qtsvg-5.11.1:5 >=dev-qt/qtwidgets-5.11.1:5 >=sci-libs/gsl-1.15:= cantor? ( >=kde-frameworks/kparts-5.54.0:5 >=kde-frameworks/kservice-5.54.0:5 >=kde-apps/cantor-18.12.3:5 ) fftw? ( sci-libs/fftw:3.0= ) fits? ( sci-libs/cfitsio:= ) hdf5? ( sci-libs/hdf5:= ) libcerf? ( sci-libs/libcerf ) netcdf? ( sci-libs/netcdf:= ) root? ( app-arch/lz4 sys-libs/zlib ) dev-util/desktop-file-utils x11-misc/shared-mime-info test? ( >=dev-qt/qttest-5.11.1:5 ) >=dev-qt/qtcore-5.11.1:5 dev-util/desktop-file-utils app-arch/xz-utils +DESCRIPTION=Scientific data analysis and visualisation based on KDE Frameworks +EAPI=7 +HOMEPAGE=https://www.kde.org/applications/education/labplot/ +IUSE=cantor fftw fits hdf5 libcerf netcdf root debug +handbook test +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=>=kde-frameworks/karchive-5.54.0:5 >=kde-frameworks/kcompletion-5.54.0:5 >=kde-frameworks/kconfig-5.54.0:5 >=kde-frameworks/kconfigwidgets-5.54.0:5 >=kde-frameworks/kcoreaddons-5.54.0:5 >=kde-frameworks/ki18n-5.54.0:5 >=kde-frameworks/kiconthemes-5.54.0:5 >=kde-frameworks/knewstuff-5.54.0:5 >=kde-frameworks/kcrash-5.54.0:5 >=kde-frameworks/ktextwidgets-5.54.0:5 >=kde-frameworks/kwidgetsaddons-5.54.0:5 >=kde-frameworks/kxmlgui-5.54.0:5 >=kde-frameworks/syntax-highlighting-5.54.0:5 >=dev-qt/qtconcurrent-5.11.1:5 >=dev-qt/qtgui-5.11.1:5 >=dev-qt/qtnetwork-5.11.1:5 >=dev-qt/qtprintsupport-5.11.1:5 >=dev-qt/qtserialport-5.11.1:5 >=dev-qt/qtsql-5.11.1:5 >=dev-qt/qtsvg-5.11.1:5 >=dev-qt/qtwidgets-5.11.1:5 >=sci-libs/gsl-1.15:= cantor? ( >=kde-frameworks/kparts-5.54.0:5 >=kde-frameworks/kservice-5.54.0:5 >=kde-apps/cantor-18.12.3:5 ) fftw? ( sci-libs/fftw:3.0= ) fits? ( sci-libs/cfitsio:= ) hdf5? ( sci-libs/hdf5:= ) libcerf? ( sci-libs/libcerf ) netcdf? ( sci-libs/netcdf:= ) root? ( app-arch/lz4 sys-libs/zlib ) >=kde-frameworks/kf-env-4 || ( >=kde-frameworks/breeze-icons-5.54.0:5 kde-frameworks/oxygen-icons:* ) >=dev-qt/qtcore-5.11.1:5 +SLOT=5 +SRC_URI=mirror://kde/stable/labplot/2.6.0/labplot-2.6.0.tar.xz +_eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf kde5 79b9341795c77777bb58dd1513bcbbb6 kde5-functions d2eb74228ec6cacb426e9e65eff37784 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs b45201c4e6c096b98e250336954e64b9 virtualx 401b718cc14d43a5a7fbe062c4851ba5 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 14d00d009167652b1fa363e55effe213 +_md5_=a6386df2ae2635c188c85d5cf63b9e53 diff --git a/metadata/md5-cache/sci-visualization/labplot-9999 b/metadata/md5-cache/sci-visualization/labplot-9999 index 83bb8b3c8d6e..f0414c998d5d 100644 --- a/metadata/md5-cache/sci-visualization/labplot-9999 +++ b/metadata/md5-cache/sci-visualization/labplot-9999 @@ -1,12 +1,12 @@ BDEPEND=sys-devel/bison sys-devel/gettext dev-util/ninja >=dev-util/cmake-3.9.6 >=dev-vcs/git-1.8.2.1[curl] >=kde-frameworks/extra-cmake-modules-5.54.0:5 handbook? ( >=kde-frameworks/kdoctools-5.54.0:5 ) DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack -DEPEND=>=kde-frameworks/karchive-5.54.0:5 >=kde-frameworks/kcompletion-5.54.0:5 >=kde-frameworks/kconfig-5.54.0:5 >=kde-frameworks/kconfigwidgets-5.54.0:5 >=kde-frameworks/kcoreaddons-5.54.0:5 >=kde-frameworks/ki18n-5.54.0:5 >=kde-frameworks/kiconthemes-5.54.0:5 >=kde-frameworks/knewstuff-5.54.0:5 >=kde-frameworks/ktextwidgets-5.54.0:5 >=kde-frameworks/kwidgetsaddons-5.54.0:5 >=kde-frameworks/kxmlgui-5.54.0:5 >=kde-frameworks/syntax-highlighting-5.54.0:5 >=dev-qt/qtconcurrent-5.11.1:5 >=dev-qt/qtgui-5.11.1:5 >=dev-qt/qtnetwork-5.11.1:5 >=dev-qt/qtprintsupport-5.11.1:5 >=dev-qt/qtserialport-5.11.1:5 >=dev-qt/qtsql-5.11.1:5 >=dev-qt/qtsvg-5.11.1:5 >=dev-qt/qtwidgets-5.11.1:5 >=sci-libs/gsl-1.15:= cantor? ( >=kde-frameworks/kparts-5.54.0:5 >=kde-frameworks/kservice-5.54.0:5 >=kde-apps/cantor-18.12.3:5 ) fftw? ( sci-libs/fftw:3.0= ) fits? ( sci-libs/cfitsio:= ) hdf5? ( sci-libs/hdf5:= ) libcerf? ( sci-libs/libcerf ) netcdf? ( sci-libs/netcdf:= ) root? ( app-arch/lz4 sys-libs/zlib ) dev-util/desktop-file-utils x11-misc/shared-mime-info test? ( >=dev-qt/qttest-5.11.1:5 ) >=dev-qt/qtcore-5.11.1:5 dev-util/desktop-file-utils +DEPEND=>=kde-frameworks/karchive-5.54.0:5 >=kde-frameworks/kcompletion-5.54.0:5 >=kde-frameworks/kconfig-5.54.0:5 >=kde-frameworks/kconfigwidgets-5.54.0:5 >=kde-frameworks/kcoreaddons-5.54.0:5 >=kde-frameworks/ki18n-5.54.0:5 >=kde-frameworks/kiconthemes-5.54.0:5 >=kde-frameworks/knewstuff-5.54.0:5 >=kde-frameworks/kcrash-5.54.0:5 >=kde-frameworks/ktextwidgets-5.54.0:5 >=kde-frameworks/kwidgetsaddons-5.54.0:5 >=kde-frameworks/kxmlgui-5.54.0:5 >=kde-frameworks/syntax-highlighting-5.54.0:5 >=dev-qt/qtconcurrent-5.11.1:5 >=dev-qt/qtgui-5.11.1:5 >=dev-qt/qtnetwork-5.11.1:5 >=dev-qt/qtprintsupport-5.11.1:5 >=dev-qt/qtserialport-5.11.1:5 >=dev-qt/qtsql-5.11.1:5 >=dev-qt/qtsvg-5.11.1:5 >=dev-qt/qtwidgets-5.11.1:5 >=sci-libs/gsl-1.15:= cantor? ( >=kde-frameworks/kparts-5.54.0:5 >=kde-frameworks/kservice-5.54.0:5 >=kde-apps/cantor-18.12.3:5 ) fftw? ( sci-libs/fftw:3.0= ) fits? ( sci-libs/cfitsio:= ) hdf5? ( sci-libs/hdf5:= ) libcerf? ( sci-libs/libcerf ) netcdf? ( sci-libs/netcdf:= ) root? ( app-arch/lz4 sys-libs/zlib ) dev-util/desktop-file-utils x11-misc/shared-mime-info test? ( >=dev-qt/qttest-5.11.1:5 ) >=dev-qt/qtcore-5.11.1:5 dev-util/desktop-file-utils DESCRIPTION=Scientific data analysis and visualisation based on KDE Frameworks EAPI=7 HOMEPAGE=https://www.kde.org/applications/education/labplot/ IUSE=cantor fftw fits hdf5 libcerf netcdf root debug +handbook test LICENSE=GPL-2 -RDEPEND=>=kde-frameworks/karchive-5.54.0:5 >=kde-frameworks/kcompletion-5.54.0:5 >=kde-frameworks/kconfig-5.54.0:5 >=kde-frameworks/kconfigwidgets-5.54.0:5 >=kde-frameworks/kcoreaddons-5.54.0:5 >=kde-frameworks/ki18n-5.54.0:5 >=kde-frameworks/kiconthemes-5.54.0:5 >=kde-frameworks/knewstuff-5.54.0:5 >=kde-frameworks/ktextwidgets-5.54.0:5 >=kde-frameworks/kwidgetsaddons-5.54.0:5 >=kde-frameworks/kxmlgui-5.54.0:5 >=kde-frameworks/syntax-highlighting-5.54.0:5 >=dev-qt/qtconcurrent-5.11.1:5 >=dev-qt/qtgui-5.11.1:5 >=dev-qt/qtnetwork-5.11.1:5 >=dev-qt/qtprintsupport-5.11.1:5 >=dev-qt/qtserialport-5.11.1:5 >=dev-qt/qtsql-5.11.1:5 >=dev-qt/qtsvg-5.11.1:5 >=dev-qt/qtwidgets-5.11.1:5 >=sci-libs/gsl-1.15:= cantor? ( >=kde-frameworks/kparts-5.54.0:5 >=kde-frameworks/kservice-5.54.0:5 >=kde-apps/cantor-18.12.3:5 ) fftw? ( sci-libs/fftw:3.0= ) fits? ( sci-libs/cfitsio:= ) hdf5? ( sci-libs/hdf5:= ) libcerf? ( sci-libs/libcerf ) netcdf? ( sci-libs/netcdf:= ) root? ( app-arch/lz4 sys-libs/zlib ) !sci-visualization/labplot:4 >=kde-frameworks/kf-env-4 || ( >=kde-frameworks/breeze-icons-5.54.0:5 kde-frameworks/oxygen-icons:* ) >=dev-qt/qtcore-5.11.1:5 +RDEPEND=>=kde-frameworks/karchive-5.54.0:5 >=kde-frameworks/kcompletion-5.54.0:5 >=kde-frameworks/kconfig-5.54.0:5 >=kde-frameworks/kconfigwidgets-5.54.0:5 >=kde-frameworks/kcoreaddons-5.54.0:5 >=kde-frameworks/ki18n-5.54.0:5 >=kde-frameworks/kiconthemes-5.54.0:5 >=kde-frameworks/knewstuff-5.54.0:5 >=kde-frameworks/kcrash-5.54.0:5 >=kde-frameworks/ktextwidgets-5.54.0:5 >=kde-frameworks/kwidgetsaddons-5.54.0:5 >=kde-frameworks/kxmlgui-5.54.0:5 >=kde-frameworks/syntax-highlighting-5.54.0:5 >=dev-qt/qtconcurrent-5.11.1:5 >=dev-qt/qtgui-5.11.1:5 >=dev-qt/qtnetwork-5.11.1:5 >=dev-qt/qtprintsupport-5.11.1:5 >=dev-qt/qtserialport-5.11.1:5 >=dev-qt/qtsql-5.11.1:5 >=dev-qt/qtsvg-5.11.1:5 >=dev-qt/qtwidgets-5.11.1:5 >=sci-libs/gsl-1.15:= cantor? ( >=kde-frameworks/kparts-5.54.0:5 >=kde-frameworks/kservice-5.54.0:5 >=kde-apps/cantor-18.12.3:5 ) fftw? ( sci-libs/fftw:3.0= ) fits? ( sci-libs/cfitsio:= ) hdf5? ( sci-libs/hdf5:= ) libcerf? ( sci-libs/libcerf ) netcdf? ( sci-libs/netcdf:= ) root? ( app-arch/lz4 sys-libs/zlib ) >=kde-frameworks/kf-env-4 || ( >=kde-frameworks/breeze-icons-5.54.0:5 kde-frameworks/oxygen-icons:* ) >=dev-qt/qtcore-5.11.1:5 SLOT=5 _eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf git-r3 0d4635eeb5a96cd5315597a47eba25c9 kde5 79b9341795c77777bb58dd1513bcbbb6 kde5-functions d2eb74228ec6cacb426e9e65eff37784 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs b45201c4e6c096b98e250336954e64b9 virtualx 401b718cc14d43a5a7fbe062c4851ba5 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=042a8e6511d197aabb6e27da88bef994 +_md5_=0279349a566aebb7e9354b2e53a8b8dd diff --git a/metadata/md5-cache/sys-apps/Manifest.gz b/metadata/md5-cache/sys-apps/Manifest.gz index 9454d241df8c..e53a2c33b113 100644 Binary files a/metadata/md5-cache/sys-apps/Manifest.gz and b/metadata/md5-cache/sys-apps/Manifest.gz differ diff --git a/metadata/md5-cache/sys-apps/accountsservice-0.6.50-r1 b/metadata/md5-cache/sys-apps/accountsservice-0.6.50-r1 index 8bc2c8452313..2d2bf92f141b 100644 --- a/metadata/md5-cache/sys-apps/accountsservice-0.6.50-r1 +++ b/metadata/md5-cache/sys-apps/accountsservice-0.6.50-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare -DEPEND=>=dev-libs/glib-2.44:2 sys-auth/polkit elogind? ( >=sys-auth/elogind-229.4 ) introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) systemd? ( >=sys-apps/systemd-186:0= ) !systemd? ( !elogind? ( sys-auth/consolekit ) ) dev-libs/libxslt dev-util/gdbus-codegen >=dev-util/gtk-doc-am-1.15 >=dev-util/intltool-0.40 sys-devel/gettext virtual/pkgconfig doc? ( app-text/docbook-xml-dtd:4.1.2 app-text/xmlto ) >=app-portage/elt-patches-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 app-arch/xz-utils dev-util/desktop-file-utils x11-misc/shared-mime-info virtual/pkgconfig +DEPEND=>=dev-libs/glib-2.44:2 sys-auth/polkit consolekit? ( sys-auth/consolekit ) elogind? ( >=sys-auth/elogind-229.4 ) introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) systemd? ( >=sys-apps/systemd-186:0= ) dev-libs/libxslt dev-util/gdbus-codegen >=dev-util/gtk-doc-am-1.15 >=dev-util/intltool-0.40 sys-devel/gettext virtual/pkgconfig doc? ( app-text/docbook-xml-dtd:4.1.2 app-text/xmlto ) >=app-portage/elt-patches-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 app-arch/xz-utils dev-util/desktop-file-utils x11-misc/shared-mime-info virtual/pkgconfig DESCRIPTION=D-Bus interfaces for querying and manipulating user account information EAPI=6 HOMEPAGE=https://www.freedesktop.org/wiki/Software/AccountsService/ -IUSE=doc elogind +introspection selinux systemd +IUSE=doc consolekit elogind +introspection selinux systemd KEYWORDS=~alpha amd64 arm ~arm64 ~ia64 ppc ppc64 ~sparc x86 LICENSE=GPL-3+ -RDEPEND=>=dev-libs/glib-2.44:2 sys-auth/polkit elogind? ( >=sys-auth/elogind-229.4 ) introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) systemd? ( >=sys-apps/systemd-186:0= ) !systemd? ( !elogind? ( sys-auth/consolekit ) ) selinux? ( sec-policy/selinux-accountsd ) -REQUIRED_USE=?? ( elogind systemd ) +RDEPEND=>=dev-libs/glib-2.44:2 sys-auth/polkit consolekit? ( sys-auth/consolekit ) elogind? ( >=sys-auth/elogind-229.4 ) introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) systemd? ( >=sys-apps/systemd-186:0= ) selinux? ( sec-policy/selinux-accountsd ) +REQUIRED_USE=^^ ( consolekit elogind systemd ) SLOT=0 SRC_URI=https://www.freedesktop.org/software/accountsservice/accountsservice-0.6.50.tar.xz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome.org 532d56d07b9eace4831aaa817d2b756a gnome2 1a42e8c41af42cb294817dcc5b7e3df6 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=65dd90c4b5a025d4a18719f1d5dda329 +_md5_=384d7d9b2525d4eccd392ce80e293d91 diff --git a/metadata/md5-cache/sys-apps/fwupd-1.2.7 b/metadata/md5-cache/sys-apps/fwupd-1.2.7 index 78b12ccd4653..0f8c5f8c286b 100644 --- a/metadata/md5-cache/sys-apps/fwupd-1.2.7 +++ b/metadata/md5-cache/sys-apps/fwupd-1.2.7 @@ -1,16 +1,16 @@ BDEPEND=>=dev-util/meson-0.47.0 virtual/pkgconfig doc? ( dev-util/gtk-doc ) man? ( app-text/docbook-sgml-utils ) >=dev-util/meson-0.48.2 >=dev-util/ninja-1.7.2 DEFINED_PHASES=compile configure install postinst prepare setup test -DEPEND=python_single_target_python3_5? ( dev-lang/python:3.5 ) python_single_target_python3_6? ( dev-lang/python:3.6 ) python_single_target_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_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] app-arch/gcab app-arch/libarchive:= dev-db/sqlite >=dev-libs/glib-2.45.8:2 dev-libs/json-glib dev-libs/libgpg-error dev-libs/libgudev:= >=dev-libs/libgusb-0.2.9[introspection] >=dev-libs/libxmlb-0.1.7 dev-python/pillow[python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] dev-python/pycairo[python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] dev-python/pygobject:3[cairo,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] >=net-libs/libsoup-2.51.92:2.4[introspection] >=sys-auth/polkit-0.103 virtual/libelf:0= colorhug? ( >=x11-misc/colord-1.2.12:0= ) dell? ( sys-libs/efivar >=sys-libs/libsmbios-2.4.0 ) gpg? ( app-crypt/gpgme dev-libs/libgpg-error ) nvme? ( sys-libs/efivar ) pkcs7? ( >=net-libs/gnutls-3.4.4.1:= ) redfish? ( sys-libs/efivar ) !systemd? ( !elogind? ( >=sys-auth/consolekit-1.0.0 ) elogind? ( sys-auth/elogind ) ) systemd? ( >=sys-apps/systemd-211 ) thunderbolt? ( sys-apps/thunderbolt-software-user-space ) uefi? ( media-libs/fontconfig media-libs/freetype sys-boot/gnu-efi >=sys-libs/efivar-33 x11-libs/cairo ) || ( dev-lang/vala:0.44 dev-lang/vala:0.42 dev-lang/vala:0.40 dev-lang/vala:0.36 dev-lang/vala:0.34 dev-lang/vala:0.32 ) x11-libs/pango[introspection] nvme? ( >=sys-kernel/linux-headers-4.4 ) test? ( net-libs/gnutls[tools] ) +DEPEND=python_single_target_python3_5? ( dev-lang/python:3.5 ) python_single_target_python3_6? ( dev-lang/python:3.6 ) python_single_target_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_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] app-arch/gcab app-arch/libarchive:= dev-db/sqlite >=dev-libs/glib-2.45.8:2 dev-libs/json-glib dev-libs/libgpg-error dev-libs/libgudev:= >=dev-libs/libgusb-0.2.9[introspection] >=dev-libs/libxmlb-0.1.7 dev-python/pillow[python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] dev-python/pycairo[python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] dev-python/pygobject:3[cairo,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] >=net-libs/libsoup-2.51.92:2.4[introspection] >=sys-auth/polkit-0.103 virtual/libelf:0= colorhug? ( >=x11-misc/colord-1.2.12:0= ) consolekit? ( >=sys-auth/consolekit-1.0.0 ) dell? ( sys-libs/efivar >=sys-libs/libsmbios-2.4.0 ) elogind? ( sys-auth/elogind ) gpg? ( app-crypt/gpgme dev-libs/libgpg-error ) nvme? ( sys-libs/efivar ) pkcs7? ( >=net-libs/gnutls-3.4.4.1:= ) redfish? ( sys-libs/efivar ) systemd? ( >=sys-apps/systemd-211 ) thunderbolt? ( sys-apps/thunderbolt-software-user-space ) uefi? ( media-libs/fontconfig media-libs/freetype sys-boot/gnu-efi >=sys-libs/efivar-33 x11-libs/cairo ) || ( dev-lang/vala:0.44 dev-lang/vala:0.42 dev-lang/vala:0.40 dev-lang/vala:0.36 dev-lang/vala:0.34 dev-lang/vala:0.32 ) x11-libs/pango[introspection] nvme? ( >=sys-kernel/linux-headers-4.4 ) test? ( net-libs/gnutls[tools] ) DESCRIPTION=Aims to make updating firmware on Linux automatic, safe and reliable EAPI=7 HOMEPAGE=https://fwupd.org -IUSE=agent colorhug dell doc elogind +gpg +man nvme pkcs7 redfish systemd test thunderbolt uefi 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 +IUSE=agent colorhug consolekit dell doc elogind +gpg +man nvme pkcs7 redfish systemd test thunderbolt uefi 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 KEYWORDS=~amd64 ~arm ~x86 LICENSE=LGPL-2.1+ PDEPEND=sys-apps/dbus -RDEPEND=python_single_target_python3_5? ( dev-lang/python:3.5 ) python_single_target_python3_6? ( dev-lang/python:3.6 ) python_single_target_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_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] app-arch/gcab app-arch/libarchive:= dev-db/sqlite >=dev-libs/glib-2.45.8:2 dev-libs/json-glib dev-libs/libgpg-error dev-libs/libgudev:= >=dev-libs/libgusb-0.2.9[introspection] >=dev-libs/libxmlb-0.1.7 dev-python/pillow[python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] dev-python/pycairo[python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] dev-python/pygobject:3[cairo,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] >=net-libs/libsoup-2.51.92:2.4[introspection] >=sys-auth/polkit-0.103 virtual/libelf:0= colorhug? ( >=x11-misc/colord-1.2.12:0= ) dell? ( sys-libs/efivar >=sys-libs/libsmbios-2.4.0 ) gpg? ( app-crypt/gpgme dev-libs/libgpg-error ) nvme? ( sys-libs/efivar ) pkcs7? ( >=net-libs/gnutls-3.4.4.1:= ) redfish? ( sys-libs/efivar ) !systemd? ( !elogind? ( >=sys-auth/consolekit-1.0.0 ) elogind? ( sys-auth/elogind ) ) systemd? ( >=sys-apps/systemd-211 ) thunderbolt? ( sys-apps/thunderbolt-software-user-space ) uefi? ( media-libs/fontconfig media-libs/freetype sys-boot/gnu-efi >=sys-libs/efivar-33 x11-libs/cairo ) -REQUIRED_USE=^^ ( python_single_target_python3_5 python_single_target_python3_6 python_single_target_python3_7 ) python_single_target_python3_5? ( python_targets_python3_5 ) python_single_target_python3_6? ( python_targets_python3_6 ) python_single_target_python3_7? ( python_targets_python3_7 ) ?? ( elogind systemd ) dell? ( uefi ) +RDEPEND=python_single_target_python3_5? ( dev-lang/python:3.5 ) python_single_target_python3_6? ( dev-lang/python:3.6 ) python_single_target_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_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] app-arch/gcab app-arch/libarchive:= dev-db/sqlite >=dev-libs/glib-2.45.8:2 dev-libs/json-glib dev-libs/libgpg-error dev-libs/libgudev:= >=dev-libs/libgusb-0.2.9[introspection] >=dev-libs/libxmlb-0.1.7 dev-python/pillow[python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] dev-python/pycairo[python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] dev-python/pygobject:3[cairo,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_5(+)?,python_single_target_python3_6(+)?,python_single_target_python3_7(+)?] >=net-libs/libsoup-2.51.92:2.4[introspection] >=sys-auth/polkit-0.103 virtual/libelf:0= colorhug? ( >=x11-misc/colord-1.2.12:0= ) consolekit? ( >=sys-auth/consolekit-1.0.0 ) dell? ( sys-libs/efivar >=sys-libs/libsmbios-2.4.0 ) elogind? ( sys-auth/elogind ) gpg? ( app-crypt/gpgme dev-libs/libgpg-error ) nvme? ( sys-libs/efivar ) pkcs7? ( >=net-libs/gnutls-3.4.4.1:= ) redfish? ( sys-libs/efivar ) systemd? ( >=sys-apps/systemd-211 ) thunderbolt? ( sys-apps/thunderbolt-software-user-space ) uefi? ( media-libs/fontconfig media-libs/freetype sys-boot/gnu-efi >=sys-libs/efivar-33 x11-libs/cairo ) +REQUIRED_USE=^^ ( python_single_target_python3_5 python_single_target_python3_6 python_single_target_python3_7 ) python_single_target_python3_5? ( python_targets_python3_5 ) python_single_target_python3_6? ( python_targets_python3_6 ) python_single_target_python3_7? ( python_targets_python3_7 ) ^^ ( consolekit elogind systemd ) dell? ( uefi ) SLOT=0 SRC_URI=https://github.com/hughsie/fwupd/archive/1.2.7.tar.gz -> fwupd-1.2.7.tar.gz _eclasses_=eutils 6e6c2737b59a4b982de6fb3ecefd87f8 meson e53acc5913e5581a8a71be22731d8f36 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-single-r1 3a0fc81f484bfdbd9c2b7448015a36e4 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 vala a94a0fb4c35fe91774bb72ec8f3c861f xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=1b646e0f4bc74cbf6d2417dae6a4493d +_md5_=9eee52669e2526bcd151293a6fb81a4a diff --git a/metadata/md5-cache/sys-apps/input-utils-1.2 b/metadata/md5-cache/sys-apps/input-utils-1.2 index dbec28f2e595..5388feefd126 100644 --- a/metadata/md5-cache/sys-apps/input-utils-1.2 +++ b/metadata/md5-cache/sys-apps/input-utils-1.2 @@ -2,9 +2,9 @@ DEFINED_PHASES=install prepare DESCRIPTION=Small collection of linux input layer utils EAPI=5 HOMEPAGE=https://www.kraxel.org/blog/linux/input/ -KEYWORDS=amd64 ~arm ppc x86 +KEYWORDS=amd64 ~arm ~arm64 ppc x86 LICENSE=GPL-2 SLOT=0 SRC_URI=https://www.kraxel.org/releases/input/input-1.2.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=17ea04ad4527a8c17bafa40c79fa0380 +_md5_=e5868a23cc412d4f7bd83c2feca076ed diff --git a/metadata/md5-cache/sys-apps/input-utils-1.3 b/metadata/md5-cache/sys-apps/input-utils-1.3 index fb87b1bfe35e..639a71f9a601 100644 --- a/metadata/md5-cache/sys-apps/input-utils-1.3 +++ b/metadata/md5-cache/sys-apps/input-utils-1.3 @@ -2,8 +2,8 @@ DEFINED_PHASES=install DESCRIPTION=Small collection of linux input layer utils EAPI=6 HOMEPAGE=https://www.kraxel.org/blog/linux/input/ -KEYWORDS=~amd64 ~arm ~ppc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~x86 LICENSE=GPL-2 SLOT=0 SRC_URI=https://www.kraxel.org/releases/input/input-1.3.tar.gz -_md5_=1b9787814c97971fa9e734af8b268860 +_md5_=9e2a957d9b666f1936d4333dc31645c9 diff --git a/metadata/md5-cache/sys-apps/lm_sensors-3.4.0_p20180923 b/metadata/md5-cache/sys-apps/lm_sensors-3.4.0_p20180923 deleted file mode 100644 index 85241889ed36..000000000000 --- a/metadata/md5-cache/sys-apps/lm_sensors-3.4.0_p20180923 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare setup test -DEPEND=sensord? ( net-analyzer/rrdtool virtual/logger ) sys-devel/bison sys-devel/flex virtual/pkgconfig -DESCRIPTION=Hardware Monitoring user-space utilities -EAPI=6 -HOMEPAGE=https://hwmon.wiki.kernel.org/ https://github.com/lm-sensors/lm-sensors -IUSE=contrib sensord static-libs kernel_linux abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux -LICENSE=GPL-2+ LGPL-2.1 -RDEPEND=sensord? ( net-analyzer/rrdtool virtual/logger ) dev-lang/perl ! lm_sensors-3.4.0_p20180923.tar.gz -_eclasses_=eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 linux-info 953c3b1c472dcadbf62098a9301327f2 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=6b4f50240f941e3f1455ae4a1a57eaf7 diff --git a/metadata/md5-cache/sys-apps/lm_sensors-3.5.0 b/metadata/md5-cache/sys-apps/lm_sensors-3.5.0 index cc726093a69c..21f072a80169 100644 --- a/metadata/md5-cache/sys-apps/lm_sensors-3.5.0 +++ b/metadata/md5-cache/sys-apps/lm_sensors-3.5.0 @@ -4,10 +4,10 @@ DESCRIPTION=Hardware Monitoring user-space utilities EAPI=6 HOMEPAGE=https://hwmon.wiki.kernel.org/ https://github.com/lm-sensors/lm-sensors IUSE=contrib sensord static-libs kernel_linux abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux +KEYWORDS=alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux LICENSE=GPL-2+ LGPL-2.1 RDEPEND=sensord? ( net-analyzer/rrdtool virtual/logger ) dev-lang/perl ! lm_sensors-3.5.0.tar.gz _eclasses_=eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 linux-info 953c3b1c472dcadbf62098a9301327f2 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=a0e125e44ebc20e7d27756cc5e43ce04 +_md5_=4a910c194907ee6c7efe3c907dcd3de0 diff --git a/metadata/md5-cache/sys-apps/logwatch-7.4.3 b/metadata/md5-cache/sys-apps/logwatch-7.4.3 index aa19ed3cf375..ad007a0bb8f0 100644 --- a/metadata/md5-cache/sys-apps/logwatch-7.4.3 +++ b/metadata/md5-cache/sys-apps/logwatch-7.4.3 @@ -2,10 +2,10 @@ DEFINED_PHASES=install postinst prepare DESCRIPTION=Analyzes and Reports on system logs EAPI=5 HOMEPAGE=http://www.logwatch.org/ -KEYWORDS=alpha amd64 arm hppa ppc ppc64 sparc x86 ~x86-fbsd +KEYWORDS=alpha amd64 arm ~arm64 hppa ppc ppc64 sparc x86 ~x86-fbsd LICENSE=MIT RDEPEND=virtual/cron virtual/mta virtual/mailx dev-lang/perl dev-perl/Date-Calc dev-perl/Date-Manip dev-perl/Tie-IxHash dev-perl/Sys-CPU dev-perl/Sys-MemInfo SLOT=0 SRC_URI=mirror://sourceforge/logwatch/logwatch-7.4.3/logwatch-7.4.3.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=6d6c118d0b8aa861a2bd3f0f7ee5cb9c +_md5_=cbad8c075da485d95dd0bf1223138364 diff --git a/metadata/md5-cache/sys-apps/logwatch-7.4.3_p20171025 b/metadata/md5-cache/sys-apps/logwatch-7.4.3_p20171025 index 17dafdad8cc4..263eb45cdce4 100644 --- a/metadata/md5-cache/sys-apps/logwatch-7.4.3_p20171025 +++ b/metadata/md5-cache/sys-apps/logwatch-7.4.3_p20171025 @@ -3,10 +3,10 @@ DEPEND=app-arch/unzip DESCRIPTION=Analyzes and Reports on system logs EAPI=6 HOMEPAGE=http://www.logwatch.org/ -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd LICENSE=MIT RDEPEND=virtual/cron virtual/mta virtual/mailx dev-lang/perl dev-perl/Date-Calc dev-perl/Date-Manip dev-perl/Tie-IxHash dev-perl/Sys-CPU dev-perl/Sys-MemInfo virtual/tmpfiles SLOT=0 SRC_URI=https://sourceforge.net/code-snapshots/git/l/lo/logwatch/git.git/logwatch-git-d36589f22a322a5ec4d77618b408803f4d193c2e.zip -> logwatch-7.4.3_p20171025.zip _eclasses_=tmpfiles a6dd0427ea9c68067a0a7fe2236b457f -_md5_=57bacf4bcc327d83bcb79470e06b252b +_md5_=df7d59f5a647bbfa1df4d2d17be7ee63 diff --git a/metadata/md5-cache/sys-apps/logwatch-9999 b/metadata/md5-cache/sys-apps/logwatch-9999 index 217c062b84b7..ac7b4677e649 100644 --- a/metadata/md5-cache/sys-apps/logwatch-9999 +++ b/metadata/md5-cache/sys-apps/logwatch-9999 @@ -7,4 +7,4 @@ LICENSE=MIT RDEPEND=virtual/cron virtual/mta virtual/mailx dev-lang/perl dev-perl/Date-Calc dev-perl/Date-Manip dev-perl/Tie-IxHash dev-perl/Sys-CPU dev-perl/Sys-MemInfo virtual/tmpfiles SLOT=0 _eclasses_=git-r3 0d4635eeb5a96cd5315597a47eba25c9 tmpfiles a6dd0427ea9c68067a0a7fe2236b457f -_md5_=af91a6161fa761dc338c3edc311a3461 +_md5_=498191f09658d5752dd5cd1b76d83e88 diff --git a/metadata/md5-cache/sys-apps/netplug-1.2.9.2-r1 b/metadata/md5-cache/sys-apps/netplug-1.2.9.2-r1 deleted file mode 100644 index fb40b3725d7a..000000000000 --- a/metadata/md5-cache/sys-apps/netplug-1.2.9.2-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile install prepare -DEPEND=doc? ( app-text/ghostscript-gpl media-gfx/graphviz ) -DESCRIPTION=Brings up/down ethernet ports automatically with cable detection -EAPI=5 -HOMEPAGE=https://www.red-bean.com/~bos/ -IUSE=debug doc -KEYWORDS=amd64 arm ~mips ppc sparc x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://www.red-bean.com/~bos/netplug/netplug-1.2.9.2.tar.bz2 -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=0c150ed9c04e471f150d660b4c79cd42 diff --git a/metadata/md5-cache/sys-apps/netplug-1.2.9.2-r3 b/metadata/md5-cache/sys-apps/netplug-1.2.9.2-r3 new file mode 100644 index 000000000000..f5b792296e5b --- /dev/null +++ b/metadata/md5-cache/sys-apps/netplug-1.2.9.2-r3 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile install prepare +DEPEND=doc? ( app-text/ghostscript-gpl media-gfx/graphviz ) +DESCRIPTION=Brings up/down ethernet ports automatically with cable detection +EAPI=7 +HOMEPAGE=https://www.red-bean.com/~bos/ +IUSE=debug doc +KEYWORDS=~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-2 +SLOT=0 +SRC_URI=https://www.red-bean.com/~bos/netplug/netplug-1.2.9.2.tar.bz2 +_eclasses_=multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=8fd2d4e63d1feae1709412102c50b7e8 diff --git a/metadata/md5-cache/sys-apps/pmount-0.9.99_alpha-r5 b/metadata/md5-cache/sys-apps/pmount-0.9.99_alpha-r5 index 1de90ce28760..c8a28b3e9322 100644 --- a/metadata/md5-cache/sys-apps/pmount-0.9.99_alpha-r5 +++ b/metadata/md5-cache/sys-apps/pmount-0.9.99_alpha-r5 @@ -4,10 +4,10 @@ DESCRIPTION=Policy based mounter that gives the ability to mount removable devic EAPI=5 HOMEPAGE=http://pmount.alioth.debian.org/ IUSE=crypt -KEYWORDS=~alpha amd64 arm hppa ~ia64 ppc ppc64 ~sh sparc x86 +KEYWORDS=alpha amd64 arm hppa ~ia64 ppc ppc64 ~sh sparc x86 LICENSE=GPL-2 RDEPEND=>=sys-apps/util-linux-2.17.2 crypt? ( >=sys-fs/cryptsetup-1.0.6-r2 ) SLOT=0 SRC_URI=mirror://debian/pool/main/p/pmount/pmount_0.9.99-alpha.orig.tar.bz2 _eclasses_=bash-completion-r1 47a7402d95930413ce25ba8d857339bb desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 user 8bd74731cafdcdad8f7a63637302e073 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=ac624f0a3d58787b351c4c02954c09ff +_md5_=6359057efd1bc4a355933f1d98667dd5 diff --git a/metadata/md5-cache/sys-apps/rng-tools-5-r2 b/metadata/md5-cache/sys-apps/rng-tools-5-r2 index 21d6fb5ac0a9..b0e1bea05e14 100644 --- a/metadata/md5-cache/sys-apps/rng-tools-5-r2 +++ b/metadata/md5-cache/sys-apps/rng-tools-5-r2 @@ -4,10 +4,10 @@ DESCRIPTION=Daemon to use hardware random number generators EAPI=5 HOMEPAGE=http://gkernel.sourceforge.net/ IUSE=selinux -KEYWORDS=alpha amd64 arm ia64 ppc x86 +KEYWORDS=alpha amd64 arm ~arm64 ia64 ppc x86 LICENSE=GPL-2 RDEPEND=dev-libs/libgcrypt:0 dev-libs/libgpg-error elibc_musl? ( sys-libs/argp-standalone ) selinux? ( sec-policy/selinux-rngd ) SLOT=0 SRC_URI=mirror://sourceforge/gkernel/rng-tools-5.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=ac2431191fe55deb697f37e7ceda783e +_md5_=772e47517f0ec4b1924a2ea9aa2b2aa4 diff --git a/metadata/md5-cache/sys-apps/rng-tools-6.6-r1 b/metadata/md5-cache/sys-apps/rng-tools-6.6-r1 index b05ce9944d8f..fa09ad962cec 100644 --- a/metadata/md5-cache/sys-apps/rng-tools-6.6-r1 +++ b/metadata/md5-cache/sys-apps/rng-tools-6.6-r1 @@ -4,10 +4,10 @@ DESCRIPTION=Daemon to use hardware random number generators EAPI=6 HOMEPAGE=https://github.com/nhorman/rng-tools IUSE=jitterentropy nistbeacon selinux -KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~x86 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~x86 LICENSE=GPL-2 RDEPEND=dev-libs/libgcrypt:0 dev-libs/libgpg-error sys-fs/sysfsutils jitterentropy? ( app-crypt/jitterentropy:= ) nistbeacon? ( net-misc/curl[ssl] dev-libs/libxml2:2= dev-libs/openssl:0= ) elibc_musl? ( sys-libs/argp-standalone ) selinux? ( sec-policy/selinux-rngd ) SLOT=0 SRC_URI=https://github.com/nhorman/rng-tools/archive/v6.6.tar.gz -> rng-tools-6.6.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=6f280ed60c92154a00436976dc332e77 +_md5_=b3b724cc0b485dbedb761cfcba763b32 diff --git a/metadata/md5-cache/sys-apps/rng-tools-6.7 b/metadata/md5-cache/sys-apps/rng-tools-6.7 index b05e55ed43c4..db95b5f7e7fe 100644 --- a/metadata/md5-cache/sys-apps/rng-tools-6.7 +++ b/metadata/md5-cache/sys-apps/rng-tools-6.7 @@ -4,10 +4,10 @@ DESCRIPTION=Daemon to use hardware random number generators EAPI=6 HOMEPAGE=https://github.com/nhorman/rng-tools IUSE=jitterentropy nistbeacon pkcs11 selinux -KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~x86 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~x86 LICENSE=GPL-2 RDEPEND=dev-libs/libgcrypt:0 dev-libs/libgpg-error sys-fs/sysfsutils jitterentropy? ( app-crypt/jitterentropy:= ) nistbeacon? ( net-misc/curl[ssl] dev-libs/libxml2:2= dev-libs/openssl:0= ) pkcs11? ( dev-libs/libp11:= ) elibc_musl? ( sys-libs/argp-standalone ) selinux? ( sec-policy/selinux-rngd ) SLOT=0 SRC_URI=https://github.com/nhorman/rng-tools/archive/v6.7.tar.gz -> rng-tools-6.7.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=29b6565919571d1b0581b94b8605a103 +_md5_=b89b1eb0b79196da87ab7fee757a01b1 diff --git a/metadata/md5-cache/sys-apps/setserial-2.17-r5 b/metadata/md5-cache/sys-apps/setserial-2.17-r5 index 444168863e0c..efdb115f4bda 100644 --- a/metadata/md5-cache/sys-apps/setserial-2.17-r5 +++ b/metadata/md5-cache/sys-apps/setserial-2.17-r5 @@ -2,9 +2,9 @@ DEFINED_PHASES=compile install DESCRIPTION=Configure your serial ports with it EAPI=6 HOMEPAGE=http://setserial.sourceforge.net/ -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 +KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 LICENSE=GPL-2 SLOT=0 SRC_URI=ftp://tsx-11.mit.edu/pub/linux/sources/sbin/setserial-2.17.tar.gz ftp://ftp.sunsite.org.uk/Mirrors/tsx-11.mit.edu/pub/linux/sources/sbin/setserial-2.17.tar.gz _eclasses_=multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=33f14d3aa7c3bc028fb13b3151d501c6 +_md5_=738679edc20030de51708b90950a30fa diff --git a/metadata/md5-cache/sys-apps/sysvinit-2.91-r1 b/metadata/md5-cache/sys-apps/sysvinit-2.91-r1 deleted file mode 100644 index 1884cd905af4..000000000000 --- a/metadata/md5-cache/sys-apps/sysvinit-2.91-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install postinst prepare -DEPEND=selinux? ( >=sys-libs/libselinux-1.28 ) virtual/os-headers -DESCRIPTION=/sbin/init - parent of all processes -EAPI=6 -HOMEPAGE=https://savannah.nongnu.org/projects/sysvinit -IUSE=selinux ibm static kernel_FreeBSD -KEYWORDS=alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 -LICENSE=GPL-2 -RDEPEND=selinux? ( >=sys-libs/libselinux-1.28 ) selinux? ( sec-policy/selinux-shutdown ) !=sys-libs/libselinux-1.28 ) selinux? ( sec-policy/selinux-shutdown ) !=dev-libs/glib-2.40:2=[dbus] >=sys-devel/gettext-0.19 sys-apps/dbus sys-libs/zlib:= x11-libs/libX11:= acl? ( sys-apps/acl:= >=virtual/udev-200 ) cgroups? ( app-admin/cgmanager >=sys-libs/libnih-1.0.2[dbus] ) evdev? ( dev-libs/libevdev:= ) udev? ( virtual/libudev x11-libs/libdrm:= ) pam? ( virtual/pam ) policykit? ( >=sys-auth/polkit-0.110 ) selinux? ( sys-libs/libselinux ) kernel_linux? ( sys-apps/coreutils[acl?] ) pm-utils? ( sys-power/pm-utils ) selinux? ( sec-policy/selinux-consolekit ) SLOT=0 SRC_URI=https://github.com/ConsoleKit2/ConsoleKit2/releases/download/1.2.1/ConsoleKit2-1.2.1.tar.bz2 _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 linux-info 953c3b1c472dcadbf62098a9301327f2 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 pam 69b1cf8e80a877ad42a03042aaa66a5e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=c901e160a08817aae8eab695bd616ac8 +_md5_=24a64c887af4e52f4a0f603ffe43edf4 diff --git a/metadata/md5-cache/sys-auth/elogind-239.4 b/metadata/md5-cache/sys-auth/elogind-239.4 index a3c51bab2933..542e48d9a2d4 100644 --- a/metadata/md5-cache/sys-auth/elogind-239.4 +++ b/metadata/md5-cache/sys-auth/elogind-239.4 @@ -4,11 +4,11 @@ DESCRIPTION=The systemd project's logind, extracted to a standalone package EAPI=6 HOMEPAGE=https://github.com/elogind/elogind IUSE=+acl debug doc +pam +policykit selinux kernel_linux -KEYWORDS=amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc x86 +KEYWORDS=amd64 arm arm64 ~ppc ~ppc64 ~sparc x86 LICENSE=CC0-1.0 LGPL-2.1+ public-domain PDEPEND=sys-apps/dbus policykit? ( sys-auth/polkit ) RDEPEND=sys-apps/util-linux sys-libs/libcap virtual/libudev:= acl? ( sys-apps/acl ) pam? ( virtual/pam ) selinux? ( sys-libs/libselinux ) !sys-apps/systemd SLOT=0 SRC_URI=https://github.com/elogind/elogind/archive/v239.4.tar.gz -> elogind-239.4.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf linux-info 953c3b1c472dcadbf62098a9301327f2 ltprune 2729691420b6deeda2a90b1f1183fb55 meson e53acc5913e5581a8a71be22731d8f36 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f pam 69b1cf8e80a877ad42a03042aaa66a5e preserve-libs ef207dc62baddfddfd39a164d9797648 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 udev 7752f306eec7b286d00bdb47b763e7ac vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=7569f763ce0b035b4742012c89f67798 +_md5_=7de9e318d438789b94dd65de435c1e93 diff --git a/metadata/md5-cache/sys-auth/elogind-241.2 b/metadata/md5-cache/sys-auth/elogind-241.2 index bcabb2bf7414..a7d19887ffa8 100644 --- a/metadata/md5-cache/sys-auth/elogind-241.2 +++ b/metadata/md5-cache/sys-auth/elogind-241.2 @@ -5,11 +5,11 @@ DESCRIPTION=The systemd project's logind, extracted to a standalone package EAPI=7 HOMEPAGE=https://github.com/elogind/elogind IUSE=+acl debug doc +pam +policykit selinux kernel_linux -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~amd64 ~arm arm64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=CC0-1.0 LGPL-2.1+ public-domain PDEPEND=sys-apps/dbus policykit? ( sys-auth/polkit ) RDEPEND=sys-apps/util-linux sys-libs/libcap virtual/libudev:= acl? ( sys-apps/acl ) pam? ( virtual/pam ) selinux? ( sys-libs/libselinux ) !sys-apps/systemd SLOT=0 SRC_URI=https://github.com/elogind/elogind/archive/v241.2.tar.gz -> elogind-241.2.tar.gz _eclasses_=eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf linux-info 953c3b1c472dcadbf62098a9301327f2 meson e53acc5913e5581a8a71be22731d8f36 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f pam 69b1cf8e80a877ad42a03042aaa66a5e python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 udev 7752f306eec7b286d00bdb47b763e7ac xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=9494008eabacc3b34a814a661bc51578 +_md5_=981c8f3f35d9321708895f2dc1dc6722 diff --git a/metadata/md5-cache/sys-auth/polkit-0.115-r3 b/metadata/md5-cache/sys-auth/polkit-0.115-r3 index 4b6afe4c5592..6783cb94d52f 100644 --- a/metadata/md5-cache/sys-auth/polkit-0.115-r3 +++ b/metadata/md5-cache/sys-auth/polkit-0.115-r3 @@ -4,7 +4,7 @@ DESCRIPTION=Policy framework for controlling privileges for system-wide services EAPI=6 HOMEPAGE=https://www.freedesktop.org/wiki/Software/polkit IUSE=consolekit elogind examples gtk +introspection jit kde nls pam selinux systemd test -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 ~sh ~sparc x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 ~sh ~sparc x86 LICENSE=LGPL-2 PDEPEND=consolekit? ( sys-auth/consolekit[policykit] ) gtk? ( || ( >=gnome-extra/polkit-gnome-0.105 >=lxde-base/lxsession-0.5.2 ) ) kde? ( kde-plasma/polkit-kde-agent ) RDEPEND=dev-lang/spidermonkey:52[-debug] dev-libs/glib:2 dev-libs/expat elogind? ( sys-auth/elogind ) introspection? ( dev-libs/gobject-introspection ) pam? ( sys-auth/pambase virtual/pam ) systemd? ( sys-apps/systemd:0=[policykit] ) selinux? ( sec-policy/selinux-policykit ) @@ -12,4 +12,4 @@ REQUIRED_USE=^^ ( consolekit elogind systemd ) SLOT=0 SRC_URI=https://www.freedesktop.org/software/polkit/releases/polkit-0.115.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 pam 69b1cf8e80a877ad42a03042aaa66a5e pax-utils e85f015e815dd463b0c206d781ef45a5 preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 user 8bd74731cafdcdad8f7a63637302e073 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=ab5a40c5b7b25abf7e11c26853fbaeeb +_md5_=1f581f1bba680146dc6e3940022a0ef6 diff --git a/metadata/md5-cache/sys-block/Manifest.gz b/metadata/md5-cache/sys-block/Manifest.gz index 5d81e60ae097..0057ff14c1fb 100644 Binary files a/metadata/md5-cache/sys-block/Manifest.gz and b/metadata/md5-cache/sys-block/Manifest.gz differ diff --git a/metadata/md5-cache/sys-block/thin-provisioning-tools-0.6.3 b/metadata/md5-cache/sys-block/thin-provisioning-tools-0.6.3 deleted file mode 100644 index df56d4b92558..000000000000 --- a/metadata/md5-cache/sys-block/thin-provisioning-tools-0.6.3 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=!static? ( dev-libs/expat dev-libs/libaio ) static? ( dev-libs/expat[static-libs(+)] dev-libs/libaio[static-libs(+)] ) test? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.4 dev-lang/ruby:2.3 ) >=dev-cpp/gtest-1.8.0 dev-util/cucumber dev-util/aruba ) dev-libs/boost >=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 suite of tools for thin provisioning on Linux -EAPI=6 -HOMEPAGE=https://github.com/jthornber/thin-provisioning-tools -IUSE=static test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux -LICENSE=GPL-3 -RDEPEND=!static? ( dev-libs/expat dev-libs/libaio ) -SLOT=0 -SRC_URI=https://github.com/jthornber/thin-provisioning-tools/archive/v0.6.3.tar.gz -> thin-provisioning-tools-0.6.3.tar.gz -_eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=bd45e3ba124ce7c6677b9fed9b3a8b8e diff --git a/metadata/md5-cache/sys-block/thin-provisioning-tools-0.7.5 b/metadata/md5-cache/sys-block/thin-provisioning-tools-0.8.0 similarity index 89% rename from metadata/md5-cache/sys-block/thin-provisioning-tools-0.7.5 rename to metadata/md5-cache/sys-block/thin-provisioning-tools-0.8.0 index e40f7e3385cf..4cecedd93f17 100644 --- a/metadata/md5-cache/sys-block/thin-provisioning-tools-0.7.5 +++ b/metadata/md5-cache/sys-block/thin-provisioning-tools-0.8.0 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND=!static? ( dev-libs/expat dev-libs/libaio ) static? ( dev-libs/expat[static-libs(+)] dev-libs/libaio[static-libs(+)] ) test? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.4 dev-lang/ruby:2.3 ) >=dev-cpp/gtest-1.8.0 dev-util/cucumber dev-util/aruba ) dev-libs/boost >=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=!static? ( dev-libs/expat dev-libs/libaio ) static? ( dev-libs/expat[static-libs(+)] dev-libs/libaio[static-libs(+)] ) test? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.4 ) >=dev-cpp/gtest-1.8.0 dev-util/cucumber dev-util/aruba ) dev-libs/boost >=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 suite of tools for thin provisioning on Linux EAPI=6 HOMEPAGE=https://github.com/jthornber/thin-provisioning-tools @@ -8,6 +8,6 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~spar LICENSE=GPL-3 RDEPEND=!static? ( dev-libs/expat dev-libs/libaio ) SLOT=0 -SRC_URI=https://github.com/jthornber/thin-provisioning-tools/archive/v0.7.5.tar.gz -> thin-provisioning-tools-0.7.5.tar.gz +SRC_URI=https://github.com/jthornber/thin-provisioning-tools/archive/v0.8.0.tar.gz -> thin-provisioning-tools-0.8.0.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=786a3f88ba1a0eeb8b0ac40613cb9e5a +_md5_=7f01d419f6278277e24fde9f0a30f663 diff --git a/metadata/md5-cache/sys-block/thin-provisioning-tools-9999 b/metadata/md5-cache/sys-block/thin-provisioning-tools-9999 index 5691c7f2b417..7804d73e3561 100644 --- a/metadata/md5-cache/sys-block/thin-provisioning-tools-9999 +++ b/metadata/md5-cache/sys-block/thin-provisioning-tools-9999 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=!static? ( dev-libs/expat dev-libs/libaio ) static? ( dev-libs/expat[static-libs(+)] dev-libs/libaio[static-libs(+)] ) test? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.4 dev-lang/ruby:2.3 ) >=dev-cpp/gtest-1.8.0 dev-util/cucumber dev-util/aruba ) dev-libs/boost >=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 >=dev-vcs/git-1.8.2.1[curl] +DEPEND=!static? ( dev-libs/expat dev-libs/libaio ) static? ( dev-libs/expat[static-libs(+)] dev-libs/libaio[static-libs(+)] ) test? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.4 ) >=dev-cpp/gtest-1.8.0 dev-util/cucumber dev-util/aruba ) dev-libs/boost >=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 >=dev-vcs/git-1.8.2.1[curl] DESCRIPTION=A suite of tools for thin provisioning on Linux EAPI=6 HOMEPAGE=https://github.com/jthornber/thin-provisioning-tools @@ -8,4 +8,4 @@ LICENSE=GPL-3 RDEPEND=!static? ( dev-libs/expat dev-libs/libaio ) SLOT=0 _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf git-r3 0d4635eeb5a96cd5315597a47eba25c9 libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=1519d64ba08f575dca93c14f610e7db0 +_md5_=7f01d419f6278277e24fde9f0a30f663 diff --git a/metadata/md5-cache/sys-cluster/Manifest.gz b/metadata/md5-cache/sys-cluster/Manifest.gz index cb3765a4b1e4..924d895de98a 100644 Binary files a/metadata/md5-cache/sys-cluster/Manifest.gz and b/metadata/md5-cache/sys-cluster/Manifest.gz differ diff --git a/metadata/md5-cache/sys-cluster/keepalived-2.0.10-r1 b/metadata/md5-cache/sys-cluster/keepalived-2.0.10-r1 index 2d42dca1344f..5f4fe5939571 100644 --- a/metadata/md5-cache/sys-cluster/keepalived-2.0.10-r1 +++ b/metadata/md5-cache/sys-cluster/keepalived-2.0.10-r1 @@ -3,12 +3,12 @@ DEFINED_PHASES=configure install prepare DEPEND=dev-libs/libnl:= dev-libs/openssl:= dev-libs/popt net-libs/libnfnetlink sys-apps/iproute2 dbus? ( sys-apps/dbus ) json? ( dev-libs/json-c:= ) snmp? ( net-analyzer/net-snmp ) >=sys-kernel/linux-headers-4.4 DESCRIPTION=A strong & robust keepalive facility to the Linux Virtual Server project EAPI=7 -HOMEPAGE=http://www.keepalived.org/ +HOMEPAGE=https://www.keepalived.org/ IUSE=dbus debug ipv6 -json snmp KEYWORDS=alpha amd64 ~hppa ia64 ppc ppc64 ~s390 sparc x86 LICENSE=GPL-2 RDEPEND=dev-libs/libnl:= dev-libs/openssl:= dev-libs/popt net-libs/libnfnetlink sys-apps/iproute2 dbus? ( sys-apps/dbus ) json? ( dev-libs/json-c:= ) snmp? ( net-analyzer/net-snmp ) SLOT=0 -SRC_URI=http://www.keepalived.org/software/keepalived-2.0.10.tar.gz +SRC_URI=https://www.keepalived.org/software/keepalived-2.0.10.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=d7155ab4fde20355458e776f745f545e +_md5_=1be5d17748e75eb53675aedebf75bd0e diff --git a/metadata/md5-cache/sys-cluster/keepalived-2.0.11 b/metadata/md5-cache/sys-cluster/keepalived-2.0.11 index b0fab387682a..cf0465f8b7a3 100644 --- a/metadata/md5-cache/sys-cluster/keepalived-2.0.11 +++ b/metadata/md5-cache/sys-cluster/keepalived-2.0.11 @@ -3,12 +3,12 @@ DEFINED_PHASES=configure install prepare DEPEND=dev-libs/libnl:= dev-libs/openssl:= dev-libs/popt net-libs/libnfnetlink sys-apps/iproute2 dbus? ( sys-apps/dbus ) json? ( dev-libs/json-c:= ) snmp? ( net-analyzer/net-snmp ) >=sys-kernel/linux-headers-4.4 DESCRIPTION=A strong & robust keepalive facility to the Linux Virtual Server project EAPI=7 -HOMEPAGE=http://www.keepalived.org/ +HOMEPAGE=https://www.keepalived.org/ IUSE=dbus debug ipv6 -json snmp KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 LICENSE=GPL-2 RDEPEND=dev-libs/libnl:= dev-libs/openssl:= dev-libs/popt net-libs/libnfnetlink sys-apps/iproute2 dbus? ( sys-apps/dbus ) json? ( dev-libs/json-c:= ) snmp? ( net-analyzer/net-snmp ) SLOT=0 -SRC_URI=http://www.keepalived.org/software/keepalived-2.0.11.tar.gz +SRC_URI=https://www.keepalived.org/software/keepalived-2.0.11.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=7494995918bf235012d0e930f37c6d9e +_md5_=e4d67999ad4d3e8197e4ef40e4cea84d diff --git a/metadata/md5-cache/sys-cluster/keepalived-2.0.12 b/metadata/md5-cache/sys-cluster/keepalived-2.0.12 index 8507de9b6c76..82c42ade4cd8 100644 --- a/metadata/md5-cache/sys-cluster/keepalived-2.0.12 +++ b/metadata/md5-cache/sys-cluster/keepalived-2.0.12 @@ -3,12 +3,12 @@ DEFINED_PHASES=configure install prepare DEPEND=dev-libs/libnl:= dev-libs/openssl:= dev-libs/popt net-libs/libnfnetlink sys-apps/iproute2 dbus? ( sys-apps/dbus ) json? ( dev-libs/json-c:= ) snmp? ( net-analyzer/net-snmp ) >=sys-kernel/linux-headers-4.4 DESCRIPTION=A strong & robust keepalive facility to the Linux Virtual Server project EAPI=7 -HOMEPAGE=http://www.keepalived.org/ +HOMEPAGE=https://www.keepalived.org/ IUSE=dbus debug ipv6 -json snmp KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 LICENSE=GPL-2 RDEPEND=dev-libs/libnl:= dev-libs/openssl:= dev-libs/popt net-libs/libnfnetlink sys-apps/iproute2 dbus? ( sys-apps/dbus ) json? ( dev-libs/json-c:= ) snmp? ( net-analyzer/net-snmp ) SLOT=0 -SRC_URI=http://www.keepalived.org/software/keepalived-2.0.12.tar.gz +SRC_URI=https://www.keepalived.org/software/keepalived-2.0.12.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=7494995918bf235012d0e930f37c6d9e +_md5_=e4d67999ad4d3e8197e4ef40e4cea84d diff --git a/metadata/md5-cache/sys-cluster/keepalived-2.0.13 b/metadata/md5-cache/sys-cluster/keepalived-2.0.13 index 90fa26aac550..d6996639685f 100644 --- a/metadata/md5-cache/sys-cluster/keepalived-2.0.13 +++ b/metadata/md5-cache/sys-cluster/keepalived-2.0.13 @@ -3,12 +3,12 @@ DEFINED_PHASES=configure install prepare DEPEND=dev-libs/libnl:= dev-libs/openssl:= dev-libs/popt net-libs/libnfnetlink sys-apps/iproute2 dbus? ( sys-apps/dbus ) json? ( dev-libs/json-c:= ) snmp? ( net-analyzer/net-snmp ) >=sys-kernel/linux-headers-4.4 DESCRIPTION=A strong & robust keepalive facility to the Linux Virtual Server project EAPI=7 -HOMEPAGE=http://www.keepalived.org/ +HOMEPAGE=https://www.keepalived.org/ IUSE=dbus debug ipv6 -json snmp KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 LICENSE=GPL-2 RDEPEND=dev-libs/libnl:= dev-libs/openssl:= dev-libs/popt net-libs/libnfnetlink sys-apps/iproute2 dbus? ( sys-apps/dbus ) json? ( dev-libs/json-c:= ) snmp? ( net-analyzer/net-snmp ) SLOT=0 -SRC_URI=http://www.keepalived.org/software/keepalived-2.0.13.tar.gz +SRC_URI=https://www.keepalived.org/software/keepalived-2.0.13.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=7494995918bf235012d0e930f37c6d9e +_md5_=e4d67999ad4d3e8197e4ef40e4cea84d diff --git a/metadata/md5-cache/sys-cluster/keepalived-2.0.13-r1 b/metadata/md5-cache/sys-cluster/keepalived-2.0.13-r1 index d2ced5bcc19f..7bfc7827a77c 100644 --- a/metadata/md5-cache/sys-cluster/keepalived-2.0.13-r1 +++ b/metadata/md5-cache/sys-cluster/keepalived-2.0.13-r1 @@ -3,12 +3,12 @@ DEFINED_PHASES=configure install prepare DEPEND=dev-libs/libnl:= dev-libs/openssl:= dev-libs/popt net-libs/libnfnetlink sys-apps/iproute2 regex? ( >=dev-libs/libpcre2-8 ) dbus? ( sys-apps/dbus ) json? ( dev-libs/json-c:= ) snmp? ( net-analyzer/net-snmp ) >=sys-kernel/linux-headers-4.4 DESCRIPTION=A strong & robust keepalive facility to the Linux Virtual Server project EAPI=7 -HOMEPAGE=http://www.keepalived.org/ +HOMEPAGE=https://www.keepalived.org/ IUSE=+bfd dbus debug -json regex snmp KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 LICENSE=GPL-2 RDEPEND=dev-libs/libnl:= dev-libs/openssl:= dev-libs/popt net-libs/libnfnetlink sys-apps/iproute2 regex? ( >=dev-libs/libpcre2-8 ) dbus? ( sys-apps/dbus ) json? ( dev-libs/json-c:= ) snmp? ( net-analyzer/net-snmp ) SLOT=0 -SRC_URI=http://www.keepalived.org/software/keepalived-2.0.13.tar.gz +SRC_URI=https://www.keepalived.org/software/keepalived-2.0.13.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=dc454d3b89b27e6c899ae94280026948 +_md5_=39d0246cbaedb05fecda7ced8349174e diff --git a/metadata/md5-cache/sys-cluster/keepalived-2.0.15 b/metadata/md5-cache/sys-cluster/keepalived-2.0.15 index 4c4fae93f941..15b40e94b296 100644 --- a/metadata/md5-cache/sys-cluster/keepalived-2.0.15 +++ b/metadata/md5-cache/sys-cluster/keepalived-2.0.15 @@ -3,12 +3,12 @@ DEFINED_PHASES=configure install prepare DEPEND=dev-libs/libnl:= dev-libs/openssl:= dev-libs/popt net-libs/libnfnetlink sys-apps/iproute2 regex? ( >=dev-libs/libpcre2-8 ) dbus? ( sys-apps/dbus dev-libs/glib:2 ) json? ( dev-libs/json-c:= ) snmp? ( net-analyzer/net-snmp ) >=sys-kernel/linux-headers-4.4 DESCRIPTION=A strong & robust keepalive facility to the Linux Virtual Server project EAPI=7 -HOMEPAGE=http://www.keepalived.org/ +HOMEPAGE=https://www.keepalived.org/ IUSE=+bfd dbus debug -json regex snmp KEYWORDS=~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 LICENSE=GPL-2 RDEPEND=dev-libs/libnl:= dev-libs/openssl:= dev-libs/popt net-libs/libnfnetlink sys-apps/iproute2 regex? ( >=dev-libs/libpcre2-8 ) dbus? ( sys-apps/dbus dev-libs/glib:2 ) json? ( dev-libs/json-c:= ) snmp? ( net-analyzer/net-snmp ) SLOT=0 -SRC_URI=http://www.keepalived.org/software/keepalived-2.0.15.tar.gz +SRC_URI=https://www.keepalived.org/software/keepalived-2.0.15.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=1d035b7fb2e28e9fb2490a6f4f32858e +_md5_=8a7ad687e7faeb0c17d0ea6356ecaca7 diff --git a/metadata/md5-cache/sys-cluster/openmpi-4.0.1 b/metadata/md5-cache/sys-cluster/openmpi-4.0.1 new file mode 100644 index 000000000000..2b8bb2b722a6 --- /dev/null +++ b/metadata/md5-cache/sys-cluster/openmpi-4.0.1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install preinst prepare setup test +DEPEND=!sys-cluster/mpich !sys-cluster/mpich2 !sys-cluster/nullmpi !sys-cluster/mpiexec >=dev-libs/libevent-2.0.22[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?,threads] dev-libs/libltdl:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-apps/hwloc-2.0.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] cuda? ( >=dev-util/nvidia-cuda-toolkit-6.5.19-r1:= ) elibc_FreeBSD? ( || ( dev-libs/libexecinfo >=sys-freebsd/freebsd-lib-10.0 ) ) openmpi_fabrics_ofed? ( sys-fabric/ofed:* ) openmpi_fabrics_knem? ( sys-cluster/knem ) openmpi_fabrics_psm? ( sys-fabric/infinipath-psm:* ) openmpi_rm_pbs? ( sys-cluster/torque ) openmpi_rm_slurm? ( sys-cluster/slurm ) openmpi_ofed_features_rdmacm? ( sys-fabric/librdmacm:* ) java? ( >=virtual/jdk-1.6 ) fortran? ( virtual/fortran ) java? ( >=dev-java/java-config-2.2.0-r3 ) +DESCRIPTION=A high-performance message passing library (MPI) +EAPI=7 +HOMEPAGE=http://www.open-mpi.org +IUSE=cma cuda cxx elibc_FreeBSD fortran heterogeneous ipv6 java numa romio openmpi_fabrics_ofed openmpi_fabrics_knem openmpi_fabrics_psm openmpi_rm_pbs openmpi_rm_slurm openmpi_ofed_features_control-hdr-padding openmpi_ofed_features_udcm openmpi_ofed_features_rdmacm openmpi_ofed_features_dynamic-sl elibc_FreeBSD java abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 +KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux +LICENSE=BSD +RDEPEND=!sys-cluster/mpich !sys-cluster/mpich2 !sys-cluster/nullmpi !sys-cluster/mpiexec >=dev-libs/libevent-2.0.22[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?,threads] dev-libs/libltdl:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-apps/hwloc-2.0.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] cuda? ( >=dev-util/nvidia-cuda-toolkit-6.5.19-r1:= ) elibc_FreeBSD? ( || ( dev-libs/libexecinfo >=sys-freebsd/freebsd-lib-10.0 ) ) openmpi_fabrics_ofed? ( sys-fabric/ofed:* ) openmpi_fabrics_knem? ( sys-cluster/knem ) openmpi_fabrics_psm? ( sys-fabric/infinipath-psm:* ) openmpi_rm_pbs? ( sys-cluster/torque ) openmpi_rm_slurm? ( sys-cluster/slurm ) openmpi_ofed_features_rdmacm? ( sys-fabric/librdmacm:* ) java? ( >=virtual/jre-1.6 ) fortran? ( virtual/fortran ) java? ( >=dev-java/java-config-2.2.0-r3 ) +REQUIRED_USE=openmpi_rm_slurm? ( !openmpi_rm_pbs ) openmpi_rm_pbs? ( !openmpi_rm_slurm ) openmpi_fabrics_psm? ( openmpi_fabrics_ofed ) openmpi_ofed_features_control-hdr-padding? ( openmpi_fabrics_ofed ) openmpi_ofed_features_udcm? ( openmpi_fabrics_ofed ) openmpi_ofed_features_rdmacm? ( openmpi_fabrics_ofed ) openmpi_ofed_features_dynamic-sl? ( openmpi_fabrics_ofed ) +SLOT=0 +SRC_URI=http://www.open-mpi.org/software/ompi/v4.0/downloads/openmpi-4.0.1.tar.bz2 +_eclasses_=cuda bb861e5221b7272ac90c2f12791c1e66 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf fortran-2 f75a2d9321053acf424991e805f32ede java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 dd352559d0e143500ec878acc74da909 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=86727b9dbf86b9ee472be0b1c0e863db diff --git a/metadata/md5-cache/sys-devel/Manifest.gz b/metadata/md5-cache/sys-devel/Manifest.gz index 01fcc692c1d4..ee622eb3b9ed 100644 Binary files a/metadata/md5-cache/sys-devel/Manifest.gz and b/metadata/md5-cache/sys-devel/Manifest.gz differ diff --git a/metadata/md5-cache/sys-devel/binutils-2.31.1-r4 b/metadata/md5-cache/sys-devel/binutils-2.31.1-r4 index 2156917ef5e3..bf48111180ee 100644 --- a/metadata/md5-cache/sys-devel/binutils-2.31.1-r4 +++ b/metadata/md5-cache/sys-devel/binutils-2.31.1-r4 @@ -4,11 +4,11 @@ DESCRIPTION=Tools necessary to build programs EAPI=6 HOMEPAGE=https://sourceware.org/binutils/ IUSE=+cxx default-gold doc +gold multitarget +nls +plugins static-libs test -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 m68k ~mips ~ppc ~ppc64 s390 sh ~sparc x86 ~amd64-fbsd ~x86-fbsd +KEYWORDS=alpha amd64 arm arm64 ~hppa ~ia64 m68k ~mips ~ppc ~ppc64 s390 sh ~sparc x86 ~amd64-fbsd ~x86-fbsd LICENSE=GPL-3+ RDEPEND=>=sys-devel/binutils-config-3 sys-libs/zlib REQUIRED_USE=cxx? ( gold plugins ) default-gold? ( gold ) SLOT=2.31 SRC_URI=mirror://gnu/binutils/binutils-2.31.1.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/binutils-2.31.1-patches-5.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf gnuconfig b8ec1c34be4ff9dac7ad4034d277936b libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=5784aabcd785711e907ee715c4d81d43 +_md5_=776cea03f7eaf2e07f7afe5d3f943ac4 diff --git a/metadata/md5-cache/sys-kernel/Manifest.gz b/metadata/md5-cache/sys-kernel/Manifest.gz index 21cff3b65eb6..8acb2dbcff80 100644 Binary files a/metadata/md5-cache/sys-kernel/Manifest.gz and b/metadata/md5-cache/sys-kernel/Manifest.gz differ diff --git a/metadata/md5-cache/sys-kernel/genkernel-3.5.3.3 b/metadata/md5-cache/sys-kernel/genkernel-3.5.3.3 index ca6235d54b1f..968a977ca520 100644 --- a/metadata/md5-cache/sys-kernel/genkernel-3.5.3.3 +++ b/metadata/md5-cache/sys-kernel/genkernel-3.5.3.3 @@ -4,10 +4,10 @@ DESCRIPTION=Gentoo automatic kernel building scripts EAPI=5 HOMEPAGE=https://www.gentoo.org IUSE=cryptsetup ibm +firmware selinux -KEYWORDS=alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 +KEYWORDS=alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 LICENSE=GPL-2 RDEPEND=sys-fs/e2fsprogs selinux? ( sys-libs/libselinux ) cryptsetup? ( sys-fs/cryptsetup ) app-arch/cpio >=app-misc/pax-utils-1.2.2 sys-apps/util-linux[static-libs(+)] firmware? ( sys-kernel/linux-firmware ) !=sys-libs/ncurses-5.2 virtual/libelf ) RESTRICT=binchecks strip SLOT=4.14.105-r1 SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.14.tar.xz mirror://gentoo/genpatches-4.14-112.base.tar.xz mirror://gentoo/genpatches-4.14-112.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.14-112.experimental.tar.xz ) _eclasses_=eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 estack 43ddf5aaffa7a8d0482df54d25a66a1f kernel-2 b2fdd65b5edb72d87dedaa82df19553c multilib b2f01ad412baf81650c23fcf0975fa33 python-any-r1 4900ae970f827a22d33d41bd8b8f9ace python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=ff6ba1056aee3d3ca6a5618faf737cea +_md5_=aca20645f4176f154b2efade282ba55a diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.113 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.113 new file mode 100644 index 000000000000..2dab8d95bd91 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.113 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Full sources including the Gentoo patchset for the 4.14 kernel tree +EAPI=6 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf ) +RESTRICT=binchecks strip +SLOT=4.14.113 +SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.14.tar.xz mirror://gentoo/genpatches-4.14-121.base.tar.xz mirror://gentoo/genpatches-4.14-121.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.14-121.experimental.tar.xz ) +_eclasses_=eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 estack 43ddf5aaffa7a8d0482df54d25a66a1f kernel-2 b2fdd65b5edb72d87dedaa82df19553c multilib b2f01ad412baf81650c23fcf0975fa33 python-any-r1 4900ae970f827a22d33d41bd8b8f9ace python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=00db83555f1e68ca76d8ba51f735f23b diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.27-r1 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.27-r1 index ab8b2beaec8f..d55023eb05b7 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.27-r1 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.27-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Full sources including the Gentoo patchset for the 4.19 kernel tree EAPI=6 HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches IUSE=experimental symlink build -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 +KEYWORDS=alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 LICENSE=GPL-2 RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf ) RESTRICT=binchecks strip SLOT=4.19.27-r1 SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.19.tar.xz mirror://gentoo/genpatches-4.19-28.base.tar.xz mirror://gentoo/genpatches-4.19-28.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.19-28.experimental.tar.xz ) _eclasses_=eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 estack 43ddf5aaffa7a8d0482df54d25a66a1f kernel-2 b2fdd65b5edb72d87dedaa82df19553c multilib b2f01ad412baf81650c23fcf0975fa33 python-any-r1 4900ae970f827a22d33d41bd8b8f9ace python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=5c3e175419c4b3423658a71805a891b7 +_md5_=dcd30bc173df92d8ac1658040ef3d0d3 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.36 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.36 new file mode 100644 index 000000000000..88540cc9c91b --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.36 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Full sources including the Gentoo patchset for the 4.19 kernel tree +EAPI=6 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf ) +RESTRICT=binchecks strip +SLOT=4.19.36 +SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.19.tar.xz mirror://gentoo/genpatches-4.19-37.base.tar.xz mirror://gentoo/genpatches-4.19-37.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.19-37.experimental.tar.xz ) +_eclasses_=eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 estack 43ddf5aaffa7a8d0482df54d25a66a1f kernel-2 b2fdd65b5edb72d87dedaa82df19553c multilib b2f01ad412baf81650c23fcf0975fa33 python-any-r1 4900ae970f827a22d33d41bd8b8f9ace python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=67b009131b14dc30cbe3aec7c4a71a33 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.176 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.176 index 3af4a16a432b..d82505800925 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.176 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.176 @@ -4,11 +4,11 @@ DESCRIPTION=Full sources including the Gentoo patchset for the 4.4 kernel tree EAPI=6 HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches IUSE=experimental symlink build -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 +KEYWORDS=alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 LICENSE=GPL-2 linux-firmware RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf ) RESTRICT=binchecks strip SLOT=4.4.176 SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.4.tar.xz mirror://gentoo/genpatches-4.4-177.base.tar.xz mirror://gentoo/genpatches-4.4-177.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.4-177.experimental.tar.xz ) _eclasses_=eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 estack 43ddf5aaffa7a8d0482df54d25a66a1f kernel-2 b2fdd65b5edb72d87dedaa82df19553c multilib b2f01ad412baf81650c23fcf0975fa33 python-any-r1 4900ae970f827a22d33d41bd8b8f9ace python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=8018f3291c69f707e536185d3d3d3d4d +_md5_=c196926adddc02d93e2487a978879a40 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.162-r1 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.162-r1 index 6832b8c65826..36d13f3d84e5 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.162-r1 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.162-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Full sources including the Gentoo patchset for the 4.9 kernel tree EAPI=6 HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches IUSE=experimental symlink build -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 +KEYWORDS=alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 LICENSE=GPL-2 linux-firmware RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf ) RESTRICT=binchecks strip SLOT=4.9.162-r1 SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.9.tar.xz mirror://gentoo/genpatches-4.9-165.base.tar.xz mirror://gentoo/genpatches-4.9-165.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.9-165.experimental.tar.xz ) _eclasses_=eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 estack 43ddf5aaffa7a8d0482df54d25a66a1f kernel-2 b2fdd65b5edb72d87dedaa82df19553c multilib b2f01ad412baf81650c23fcf0975fa33 python-any-r1 4900ae970f827a22d33d41bd8b8f9ace python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=ed8b714f1eb7aa319b2a29c395ac4a78 +_md5_=72facc64abc0a1362d136d54e89ed6f7 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.170 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.170 new file mode 100644 index 000000000000..56706cc1fd13 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.170 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Full sources including the Gentoo patchset for the 4.9 kernel tree +EAPI=6 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +LICENSE=GPL-2 linux-firmware +RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf ) +RESTRICT=binchecks strip +SLOT=4.9.170 +SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.9.tar.xz mirror://gentoo/genpatches-4.9-174.base.tar.xz mirror://gentoo/genpatches-4.9-174.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.9-174.experimental.tar.xz ) +_eclasses_=eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 estack 43ddf5aaffa7a8d0482df54d25a66a1f kernel-2 b2fdd65b5edb72d87dedaa82df19553c multilib b2f01ad412baf81650c23fcf0975fa33 python-any-r1 4900ae970f827a22d33d41bd8b8f9ace python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=98165c89b87f1f0c7d095791c3db0790 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-5.0.9 b/metadata/md5-cache/sys-kernel/gentoo-sources-5.0.9 new file mode 100644 index 000000000000..2fd27f03db77 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-5.0.9 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Full sources including the Gentoo patchset for the 5.0 kernel tree +EAPI=6 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf ) +RESTRICT=binchecks strip +SLOT=5.0.9 +SRC_URI=mirror://kernel/linux/kernel/v5.x/linux-5.0.tar.xz mirror://gentoo/genpatches-5.0-10.base.tar.xz mirror://gentoo/genpatches-5.0-10.extras.tar.xz experimental? ( mirror://gentoo/genpatches-5.0-10.experimental.tar.xz ) +_eclasses_=eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 estack 43ddf5aaffa7a8d0482df54d25a66a1f kernel-2 b2fdd65b5edb72d87dedaa82df19553c multilib b2f01ad412baf81650c23fcf0975fa33 python-any-r1 4900ae970f827a22d33d41bd8b8f9ace python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=13f88b7c6bdbf239b225de4c25d1d23a diff --git a/metadata/md5-cache/sys-kernel/git-sources-5.1_rc6 b/metadata/md5-cache/sys-kernel/git-sources-5.1_rc6 new file mode 100644 index 000000000000..efe07c799d95 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/git-sources-5.1_rc6 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=>=sys-devel/patch-2.7.5 !build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=The very latest -git version of the Linux kernel +EAPI=6 +HOMEPAGE=https://www.kernel.org +IUSE=symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf ) +RESTRICT=binchecks strip +SLOT=5.1_rc6 +SRC_URI=https://git.kernel.org/torvalds/p/v5.1-rc6/v5.0 -> patch-5.1-rc6.patch mirror://kernel/linux/kernel/v5.x/linux-5.0.tar.xz +_eclasses_=eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 estack 43ddf5aaffa7a8d0482df54d25a66a1f kernel-2 b2fdd65b5edb72d87dedaa82df19553c multilib b2f01ad412baf81650c23fcf0975fa33 python-any-r1 4900ae970f827a22d33d41bd8b8f9ace python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=afd1b2d9e41f87ff994172d5bf4031c6 diff --git a/metadata/md5-cache/sys-libs/Manifest.gz b/metadata/md5-cache/sys-libs/Manifest.gz index de6f610cf63b..8a368ba34139 100644 Binary files a/metadata/md5-cache/sys-libs/Manifest.gz and b/metadata/md5-cache/sys-libs/Manifest.gz differ diff --git a/metadata/md5-cache/sys-libs/binutils-libs-2.31.1-r4 b/metadata/md5-cache/sys-libs/binutils-libs-2.31.1-r4 index ee7e80af2941..e62438ff9e47 100644 --- a/metadata/md5-cache/sys-libs/binutils-libs-2.31.1-r4 +++ b/metadata/md5-cache/sys-libs/binutils-libs-2.31.1-r4 @@ -4,10 +4,10 @@ DESCRIPTION=Core binutils libraries (libbfd, libopcodes, libiberty) for external EAPI=6 HOMEPAGE=https://sourceware.org/binutils/ IUSE=64-bit-bfd multitarget nls static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 m68k ~mips ~ppc ~ppc64 s390 sh ~sparc x86 ~amd64-fbsd ~x86-fbsd +KEYWORDS=alpha amd64 arm arm64 ~hppa ~ia64 m68k ~mips ~ppc ~ppc64 s390 sh ~sparc x86 ~amd64-fbsd ~x86-fbsd LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=sys-libs/zlib[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-devel/binutils-config-5 nls? ( !=sys-apps/attr-2.4.47-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] pam? ( virtual/pam[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) RESTRICT=test SLOT=0 SRC_URI=mirror://kernel/linux/libs/security/linux-privs/libcap2/libcap-2.26.tar.xz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multilib-build b42436dc1260f475af229754c165cb6b multilib-minimal 8bddda43703ba94d8341f4e247f97566 pam 69b1cf8e80a877ad42a03042aaa66a5e preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=4bbe0136157642e3f5a3b407cd45b19e +_md5_=ec06fde82ddeba3909db4d5ee3b8e7b2 diff --git a/metadata/md5-cache/sys-libs/libnih-1.0.3-r3 b/metadata/md5-cache/sys-libs/libnih-1.0.3-r3 index c77169ccdadd..78bcc4fe16f7 100644 --- a/metadata/md5-cache/sys-libs/libnih-1.0.3-r3 +++ b/metadata/md5-cache/sys-libs/libnih-1.0.3-r3 @@ -4,10 +4,10 @@ DESCRIPTION=Light-weight 'standard library' of C functions EAPI=4 HOMEPAGE=https://launchpad.net/libnih IUSE=+dbus nls static-libs +threads -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 +KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 LICENSE=GPL-2 RDEPEND=dbus? ( dev-libs/expat >=sys-apps/dbus-1.2.16 ) SLOT=0 SRC_URI=https://launchpad.net/libnih/1.0/1.0.3/+download/libnih-1.0.3.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator 2352c3fc97241f6a02042773c8287748 -_md5_=27b87320f4100c73456a72cb62f73c84 +_md5_=9c26bbf48805167ec28ecbd544d095fb diff --git a/metadata/md5-cache/sys-libs/obstack-standalone-1.1 b/metadata/md5-cache/sys-libs/obstack-standalone-1.1 index a2a0f2520919..61e77026bfed 100644 --- a/metadata/md5-cache/sys-libs/obstack-standalone-1.1 +++ b/metadata/md5-cache/sys-libs/obstack-standalone-1.1 @@ -4,9 +4,9 @@ DESCRIPTION=A standalone library to implement GNU libc's obstack. EAPI=6 HOMEPAGE=https://github.com/pullmoll/musl-obstack IUSE=static-libs -KEYWORDS=amd64 arm ~mips ppc x86 +KEYWORDS=amd64 arm ~arm64 ~mips ppc x86 LICENSE=GPL-2 SLOT=0 SRC_URI=https://github.com/pullmoll/musl-obstack/archive/v1.1.tar.gz -> obstack-standalone-1.1.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=dbe7c77e72b762bde9ac513355aef891 +_md5_=a455ebb77a61c4ac0dad0dad24c94305 diff --git a/metadata/md5-cache/sys-power/Manifest.gz b/metadata/md5-cache/sys-power/Manifest.gz index ec5b449f151d..f905b0a0938a 100644 Binary files a/metadata/md5-cache/sys-power/Manifest.gz and b/metadata/md5-cache/sys-power/Manifest.gz differ diff --git a/metadata/md5-cache/sys-power/iasl-20161222 b/metadata/md5-cache/sys-power/iasl-20161222 deleted file mode 100644 index d524c146c763..000000000000 --- a/metadata/md5-cache/sys-power/iasl-20161222 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test -DEPEND=sys-devel/bison sys-devel/flex -DESCRIPTION=Intel ACPI Source Language (ASL) compiler -EAPI=6 -HOMEPAGE=https://www.acpica.org/downloads/ -IUSE=test -KEYWORDS=~amd64 ~arm64 ~ppc ~x86 ~amd64-fbsd ~x86-fbsd -LICENSE=iASL -SLOT=0 -SRC_URI=http://www.acpica.org/sites/acpica/files/acpica-unix-20161222.tar.gz test? ( http://www.acpica.org/sites/acpica/files/acpitests-unix-20161222.tar.gz ) -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=242a1857a76cc79b6bb0d29548db6659 diff --git a/metadata/md5-cache/sys-power/iasl-20171215 b/metadata/md5-cache/sys-power/iasl-20171215 deleted file mode 100644 index e8c48c7651e5..000000000000 --- a/metadata/md5-cache/sys-power/iasl-20171215 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test -DEPEND=sys-devel/bison sys-devel/flex -DESCRIPTION=Intel ACPI Source Language (ASL) compiler -EAPI=6 -HOMEPAGE=https://www.acpica.org/downloads/ -IUSE=test -KEYWORDS=~amd64 ~arm64 ~ppc ~x86 ~amd64-fbsd ~x86-fbsd -LICENSE=iASL -SLOT=0 -SRC_URI=http://www.acpica.org/sites/acpica/files/acpica-unix-20171215.tar.gz test? ( http://www.acpica.org/sites/acpica/files/acpitests-unix-20171215.tar.gz ) -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=242a1857a76cc79b6bb0d29548db6659 diff --git a/metadata/md5-cache/sys-power/iasl-20180810 b/metadata/md5-cache/sys-power/iasl-20180810 index 37dd080ac603..298c3de80c14 100644 --- a/metadata/md5-cache/sys-power/iasl-20180810 +++ b/metadata/md5-cache/sys-power/iasl-20180810 @@ -9,4 +9,4 @@ LICENSE=iASL SLOT=0 SRC_URI=http://www.acpica.org/sites/acpica/files/acpica-unix-20180810.tar.gz test? ( http://www.acpica.org/sites/acpica/files/acpitests-unix-20180810.tar.gz ) _eclasses_=eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=d0d67bc3a2b74a4f1807ae0ce582f9a1 +_md5_=e9a1fa35f65fae1e03c70c4e858436a0 diff --git a/metadata/md5-cache/sys-power/iasl-20190215 b/metadata/md5-cache/sys-power/iasl-20190215 new file mode 100644 index 000000000000..d39fd4306814 --- /dev/null +++ b/metadata/md5-cache/sys-power/iasl-20190215 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=sys-devel/bison sys-devel/flex +DESCRIPTION=Intel ACPI Source Language (ASL) compiler +EAPI=7 +HOMEPAGE=https://www.acpica.org/downloads/ +IUSE=test +KEYWORDS=~amd64 ~arm64 ~ppc ~x86 ~amd64-fbsd ~x86-fbsd +LICENSE=iASL +SLOT=0 +SRC_URI=http://www.acpica.org/sites/acpica/files/acpica-unix-20190215.tar.gz test? ( http://www.acpica.org/sites/acpica/files/acpitests-unix-20190215.tar.gz ) +_eclasses_=eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=e9a1fa35f65fae1e03c70c4e858436a0 diff --git a/metadata/md5-cache/sys-process/Manifest.gz b/metadata/md5-cache/sys-process/Manifest.gz index b85c30d981ab..47d31fa5e74b 100644 Binary files a/metadata/md5-cache/sys-process/Manifest.gz and b/metadata/md5-cache/sys-process/Manifest.gz differ diff --git a/metadata/md5-cache/sys-process/iotop-0.6 b/metadata/md5-cache/sys-process/iotop-0.6 index 9f565c37a5c7..d2b27a439742 100644 --- a/metadata/md5-cache/sys-process/iotop-0.6 +++ b/metadata/md5-cache/sys-process/iotop-0.6 @@ -1,14 +1,14 @@ +BDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[ncurses(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[ncurses(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[ncurses(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[ncurses(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] DEFINED_PHASES=compile configure install prepare setup test -DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[ncurses(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[ncurses(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[ncurses(+)] ) >=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(-)] DESCRIPTION=Top-like UI used to show which process is using the I/O -EAPI=5 +EAPI=7 HOMEPAGE=http://guichaz.free.fr/iotop/ -IUSE=python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 kernel_linux +IUSE=python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 kernel_linux KEYWORDS=amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 -RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[ncurses(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[ncurses(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[ncurses(+)] ) >=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_targets_python2_7 python_targets_python3_5 python_targets_python3_6 ) +RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[ncurses(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[ncurses(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[ncurses(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[ncurses(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python2_7(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_5 python_targets_python3_6 python_targets_python3_7 ) SLOT=0 SRC_URI=http://guichaz.free.fr/iotop/files/iotop-0.6.tar.bz2 -_eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 linux-info 953c3b1c472dcadbf62098a9301327f2 ltprune 2729691420b6deeda2a90b1f1183fb55 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=34296d7bb7b571b93635c77834f45ac2 +_eclasses_=distutils-r1 30044897f9a75ab6414bdb19aa3c07d4 linux-info 953c3b1c472dcadbf62098a9301327f2 multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 +_md5_=7359b2b93558b32596b9b61e7c12bdd4 diff --git a/metadata/md5-cache/virtual/Manifest.gz b/metadata/md5-cache/virtual/Manifest.gz index 2d89c988551b..1e72ea24f00b 100644 Binary files a/metadata/md5-cache/virtual/Manifest.gz and b/metadata/md5-cache/virtual/Manifest.gz differ diff --git a/metadata/md5-cache/virtual/pypy-7.1.1 b/metadata/md5-cache/virtual/pypy-7.1.1 new file mode 100644 index 000000000000..ba5690de2111 --- /dev/null +++ b/metadata/md5-cache/virtual/pypy-7.1.1 @@ -0,0 +1,8 @@ +DEFINED_PHASES=- +DESCRIPTION=A virtual for PyPy Python implementation +EAPI=7 +IUSE=bzip2 gdbm ncurses sqlite tk +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +RDEPEND=|| ( >=dev-python/pypy-7.1.1:0/41-py27[bzip2?,gdbm(-)?,ncurses?,sqlite?,tk?] >=dev-python/pypy-bin-7.1.1:0/41-py27[gdbm(-)?,sqlite?,tk?] ) +SLOT=0/41-py27 +_md5_=613281424cc967e843f41f85fa47ecdd diff --git a/metadata/md5-cache/virtual/pypy3-7.1.1 b/metadata/md5-cache/virtual/pypy3-7.1.1 new file mode 100644 index 000000000000..ce26e83c0297 --- /dev/null +++ b/metadata/md5-cache/virtual/pypy3-7.1.1 @@ -0,0 +1,8 @@ +DEFINED_PHASES=- +DESCRIPTION=A virtual for PyPy3 Python implementation +EAPI=7 +IUSE=bzip2 gdbm ncurses sqlite tk +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +RDEPEND=|| ( >=dev-python/pypy3-7.1.1:0/71-py36[bzip2?,gdbm(-)?,ncurses?,sqlite?,tk?] >=dev-python/pypy3-bin-7.1.1:0/71-py36[gdbm(-)?,sqlite?,tk?] ) +SLOT=0/71-py36 +_md5_=1ab7cc70bd0a9e1da689d025b6b75be9 diff --git a/metadata/md5-cache/www-apps/Manifest.gz b/metadata/md5-cache/www-apps/Manifest.gz index 1bb412dae7cd..0199db130211 100644 Binary files a/metadata/md5-cache/www-apps/Manifest.gz and b/metadata/md5-cache/www-apps/Manifest.gz differ diff --git a/metadata/md5-cache/www-apps/drupal-8.5.15 b/metadata/md5-cache/www-apps/drupal-8.5.15 new file mode 100644 index 000000000000..bf0a200bfb1a --- /dev/null +++ b/metadata/md5-cache/www-apps/drupal-8.5.15 @@ -0,0 +1,14 @@ +DEFINED_PHASES=install postinst prerm setup +DEPEND=|| ( virtual/httpd-cgi virtual/httpd-fastcgi ) >=app-admin/webapp-config-1.50.15 +DESCRIPTION=PHP-based open-source platform and content management system +EAPI=6 +HOMEPAGE=https://www.drupal.org/ +IUSE=+accelerator +mysql postgres sqlite +uploadprogress vhosts +KEYWORDS=~alpha ~amd64 ~ppc ~x86 +LICENSE=GPL-2 +RDEPEND=dev-lang/php[gd,hash,pdo,postgres?,simplexml,xml] virtual/httpd-php accelerator? ( || ( dev-php/xcache ( >=dev-lang/php-5.5[opcache] dev-php/pecl-apcu ) ) ) uploadprogress? ( dev-php/pecl-uploadprogress ) mysql? ( || ( dev-lang/php[mysql] dev-lang/php[mysqli] ) ) sqlite? ( dev-lang/php[sqlite] ) >=app-admin/webapp-config-1.50.15 +REQUIRED_USE=|| ( mysql postgres sqlite ) +SLOT=8.5.15 +SRC_URI=https://ftp.drupal.org/files/projects/drupal-8.5.15.tar.gz +_eclasses_=webapp 16783e418aca3ffa461d68310bf7ab12 +_md5_=daaf68e6aae38be5ba496d91b5d77ae6 diff --git a/metadata/md5-cache/www-apps/gitea-1.7.6 b/metadata/md5-cache/www-apps/gitea-1.7.6 new file mode 100644 index 000000000000..12958d26b668 --- /dev/null +++ b/metadata/md5-cache/www-apps/gitea-1.7.6 @@ -0,0 +1,15 @@ +BDEPEND=>=dev-lang/go-1.10 virtual/pkgconfig +DEFINED_PHASES=compile install postinst setup test unpack +DEPEND=pam? ( sys-libs/pam ) dev-go/go-bindata +DESCRIPTION=A painless self-hosted Git service +EAPI=7 +HOMEPAGE=https://gitea.io +IUSE=pam sqlite +KEYWORDS=~amd64 ~arm +LICENSE=MIT +RDEPEND=pam? ( sys-libs/pam ) dev-vcs/git +RESTRICT=strip +SLOT=0 +SRC_URI=https://github.com/go-gitea/gitea/archive/v1.7.6.tar.gz -> gitea-1.7.6.tar.gz +_eclasses_=golang-base c57d2c3f9e1a02d0feb8b87c7b689892 golang-vcs-snapshot 12177e83bede6f7fb87eae383864b40b multilib b2f01ad412baf81650c23fcf0975fa33 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 user 8bd74731cafdcdad8f7a63637302e073 +_md5_=520c88a1d3546bdb58cfc72eaef2166a diff --git a/metadata/md5-cache/www-client/Manifest.gz b/metadata/md5-cache/www-client/Manifest.gz index e314a10ea64b..7cc8a3d613a7 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/elinks-0.12_pre6-r1 b/metadata/md5-cache/www-client/elinks-0.12_pre6-r1 index a812a43c32af..e4b377b191bc 100644 --- a/metadata/md5-cache/www-client/elinks-0.12_pre6-r1 +++ b/metadata/md5-cache/www-client/elinks-0.12_pre6-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Advanced and well-established text-mode web browser EAPI=4 HOMEPAGE=http://elinks.or.cz/ IUSE=bittorrent bzip2 debug finger ftp gc gopher gpm guile idn ipv6 javascript lua +mouse nls nntp perl ruby samba ssl unicode X xml zlib -KEYWORDS=alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=bzip2? ( >=app-arch/bzip2-1.0.2 ) gc? ( dev-libs/boehm-gc ) ssl? ( >=dev-libs/openssl-0.9.6g:0 ) xml? ( >=dev-libs/expat-1.95.4 ) X? ( x11-libs/libX11 x11-libs/libXt ) zlib? ( >=sys-libs/zlib-1.1.4 ) lua? ( >=dev-lang/lua-5:0 ) gpm? ( >=sys-libs/ncurses-5.2:0 >=sys-libs/gpm-1.20.0-r5 ) guile? ( >=dev-scheme/guile-1.6.4-r1[deprecated,discouraged] ) idn? ( net-dns/libidn ) perl? ( dev-lang/perl ) ruby? ( dev-lang/ruby dev-ruby/rubygems ) samba? ( net-fs/samba ) javascript? ( dev-lang/spidermonkey:0 ) RESTRICT=test SLOT=0 SRC_URI=http://elinks.or.cz/download/elinks-0.12pre6.tar.bz2 https://dev.gentoo.org/~spock/portage/distfiles/elinks-0.10.4.conf.bz2 https://dev.gentoo.org/~axs/distfiles/elinks-0.12_pre5-js185-patches.tar.bz2 _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=98756e62d623bb1f8d380c4a234ceb63 +_md5_=b4cbd19ecd9d857fb344f1c670ac85f5 diff --git a/metadata/md5-cache/www-client/elinks-0.12_pre6-r4 b/metadata/md5-cache/www-client/elinks-0.12_pre6-r4 index 797eed35e82a..fb450254e4d4 100644 --- a/metadata/md5-cache/www-client/elinks-0.12_pre6-r4 +++ b/metadata/md5-cache/www-client/elinks-0.12_pre6-r4 @@ -4,11 +4,11 @@ DESCRIPTION=Advanced and well-established text-mode web browser EAPI=6 HOMEPAGE=http://elinks.or.cz/ IUSE=bittorrent bzip2 debug finger ftp gc gopher gpm guile idn ipv6 javascript libressl lua +mouse nls nntp perl ruby samba ssl tre unicode X xml zlib -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=bzip2? ( >=app-arch/bzip2-1.0.2 ) gc? ( dev-libs/boehm-gc ) gpm? ( >=sys-libs/ncurses-5.2:0= >=sys-libs/gpm-1.20.0-r5 ) guile? ( >=dev-scheme/guile-1.6.4-r1[deprecated,discouraged] ) idn? ( net-dns/libidn ) javascript? ( >=dev-lang/spidermonkey-1.8.5:0= ) lua? ( >=dev-lang/lua-5:0= ) perl? ( dev-lang/perl:= ) ruby? ( dev-lang/ruby:* dev-ruby/rubygems:* ) samba? ( net-fs/samba ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) tre? ( dev-libs/tre ) X? ( x11-libs/libX11 x11-libs/libXt ) xml? ( >=dev-libs/expat-1.95.4 ) zlib? ( >=sys-libs/zlib-1.1.4 ) RESTRICT=test SLOT=0 SRC_URI=http://elinks.or.cz/download/elinks-0.12pre6.tar.bz2 https://dev.gentoo.org/~axs/distfiles/elinks-0.12_pre5-js185-patches.tar.bz2 _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=e37acf09b9a294aa2a83256d422a9da1 +_md5_=c0499433ac7510b11b0dbcb3a77c8276 diff --git a/metadata/md5-cache/www-client/elinks-0.13_pre_pre20180225 b/metadata/md5-cache/www-client/elinks-0.13_pre_pre20180225 index 7ac9dd632cb8..268b993201ef 100644 --- a/metadata/md5-cache/www-client/elinks-0.13_pre_pre20180225 +++ b/metadata/md5-cache/www-client/elinks-0.13_pre_pre20180225 @@ -4,10 +4,10 @@ DESCRIPTION=Advanced and well-established text-mode web browser EAPI=6 HOMEPAGE=http://elinks.or.cz/ IUSE=bittorrent brotli bzip2 debug finger ftp gopher gpm guile idn ipv6 javascript libressl lua +mouse nls nntp perl ruby samba ssl tre unicode X xml zlib -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=|| ( >=dev-lang/python-2.7.5-r2:2.7[threads] ) brotli? ( app-arch/brotli ) bzip2? ( >=app-arch/bzip2-1.0.2 ) gpm? ( >=sys-libs/ncurses-5.2:0= >=sys-libs/gpm-1.20.0-r5 ) guile? ( >=dev-scheme/guile-1.6.4-r1[deprecated] ) idn? ( net-dns/libidn ) javascript? ( >=dev-lang/spidermonkey-1.8.5:0= ) lua? ( >=dev-lang/lua-5:0= ) perl? ( dev-lang/perl:= ) ruby? ( dev-lang/ruby:* dev-ruby/rubygems:* ) samba? ( net-fs/samba ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) tre? ( dev-libs/tre ) X? ( x11-libs/libX11 x11-libs/libXt ) xml? ( >=dev-libs/expat-1.95.4 ) zlib? ( >=sys-libs/zlib-1.1.4 ) SLOT=0 SRC_URI=https://github.com/rkd77/felinks/archive/0dd3aaabe61fbc5ed0d9a74915678d11d00c2a1c.tar.gz -> elinks-0.13_pre_pre20180225.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 python-any-r1 4900ae970f827a22d33d41bd8b8f9ace python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=e346964a2726ebdbb96c85015a9ab43b +_md5_=8bddc25ec0550b08f496bfa2be62adfd diff --git a/metadata/md5-cache/www-client/falkon-3.1.0 b/metadata/md5-cache/www-client/falkon-3.1.0 index 37d40c2c3904..c304cde10e03 100644 --- a/metadata/md5-cache/www-client/falkon-3.1.0 +++ b/metadata/md5-cache/www-client/falkon-3.1.0 @@ -5,11 +5,11 @@ DESCRIPTION=Cross-platform web browser using QtWebEngine EAPI=7 HOMEPAGE=https://www.falkon.org/ IUSE=dbus gnome-keyring kde libressl +X test debug test -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 ~x86 LICENSE=GPL-3 RDEPEND=>=dev-qt/qtdeclarative-5.11.1:5[widgets] >=dev-qt/qtgui-5.11.1:5 >=dev-qt/qtnetwork-5.11.1:5[ssl] >=dev-qt/qtprintsupport-5.11.1:5 >=dev-qt/qtsql-5.11.1:5[sqlite] >=dev-qt/qtwebchannel-5.11.1:5 >=dev-qt/qtwebengine-5.11.1:5=[widgets] >=dev-qt/qtwidgets-5.11.1:5 virtual/libintl dbus? ( >=dev-qt/qtdbus-5.11.1:5 ) gnome-keyring? ( gnome-base/libgnome-keyring ) kde? ( >=kde-frameworks/kcoreaddons-5.54.0 >=kde-frameworks/kcrash-5.54.0 >=kde-frameworks/kio-5.54.0 >=kde-frameworks/kwallet-5.54.0 ) libressl? ( dev-libs/libressl:= ) !libressl? ( dev-libs/openssl:0= ) X? ( >=dev-qt/qtx11extras-5.11.1:5 x11-libs/libxcb:= x11-libs/xcb-util ) !www-client/qupzilla >=dev-qt/qtsvg-5.11.1:5 >=kde-frameworks/kf-env-4 || ( >=kde-frameworks/breeze-icons-5.54.0:5 kde-frameworks/oxygen-icons:* ) >=dev-qt/qtcore-5.11.1:5 RESTRICT=test SLOT=0 SRC_URI=mirror://kde/stable/falkon/3.1/falkon-3.1.0.tar.xz _eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf kde5 79b9341795c77777bb58dd1513bcbbb6 kde5-functions d2eb74228ec6cacb426e9e65eff37784 multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs b45201c4e6c096b98e250336954e64b9 virtualx 401b718cc14d43a5a7fbe062c4851ba5 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=ff0d2df4d76c2596bed5c94feb95f9fb +_md5_=1ecf534ba601b6659195667649034aa7 diff --git a/metadata/md5-cache/www-client/google-chrome-beta-74.0.3729.75 b/metadata/md5-cache/www-client/google-chrome-beta-74.0.3729.91 similarity index 97% rename from metadata/md5-cache/www-client/google-chrome-beta-74.0.3729.75 rename to metadata/md5-cache/www-client/google-chrome-beta-74.0.3729.91 index b9b3ef530cb8..49d3befd6404 100644 --- a/metadata/md5-cache/www-client/google-chrome-beta-74.0.3729.75 +++ b/metadata/md5-cache/www-client/google-chrome-beta-74.0.3729.91 @@ -8,6 +8,6 @@ LICENSE=google-chrome RDEPEND=app-accessibility/at-spi2-atk:2 app-arch/bzip2 app-misc/ca-certificates dev-libs/atk dev-libs/expat dev-libs/glib:2 dev-libs/nspr >=dev-libs/nss-3.26 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype:2 net-print/cups sys-apps/dbus sys-libs/libcap x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3[X] >=x11-libs/libX11-1.5.0 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libXtst x11-libs/libxcb x11-libs/pango x11-misc/xdg-utils RESTRICT=bindist mirror strip SLOT=0 -SRC_URI=https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-beta/google-chrome-beta_74.0.3729.75-1_amd64.deb +SRC_URI=https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-beta/google-chrome-beta_74.0.3729.91-1_amd64.deb _eclasses_=chromium-2 92ff174aa2b13d6ea0c4539533f0b2de desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 linux-info 953c3b1c472dcadbf62098a9301327f2 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 pax-utils e85f015e815dd463b0c206d781ef45a5 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 unpacker 3cd8bad0d31e525cd26be1bfa4e61631 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 _md5_=3343caa50371c896ad0091dd00d8ec72 diff --git a/metadata/md5-cache/www-client/google-chrome-unstable-75.0.3759.4 b/metadata/md5-cache/www-client/google-chrome-unstable-75.0.3766.2 similarity index 97% rename from metadata/md5-cache/www-client/google-chrome-unstable-75.0.3759.4 rename to metadata/md5-cache/www-client/google-chrome-unstable-75.0.3766.2 index bf3e40db036c..470e62840c8f 100644 --- a/metadata/md5-cache/www-client/google-chrome-unstable-75.0.3759.4 +++ b/metadata/md5-cache/www-client/google-chrome-unstable-75.0.3766.2 @@ -8,6 +8,6 @@ LICENSE=google-chrome RDEPEND=app-accessibility/at-spi2-atk:2 app-arch/bzip2 app-misc/ca-certificates dev-libs/atk dev-libs/expat dev-libs/glib:2 dev-libs/nspr >=dev-libs/nss-3.26 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype:2 net-print/cups sys-apps/dbus sys-libs/libcap x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3[X] >=x11-libs/libX11-1.5.0 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libXtst x11-libs/libxcb x11-libs/pango x11-misc/xdg-utils RESTRICT=bindist mirror strip SLOT=0 -SRC_URI=https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_75.0.3759.4-1_amd64.deb +SRC_URI=https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_75.0.3766.2-1_amd64.deb _eclasses_=chromium-2 92ff174aa2b13d6ea0c4539533f0b2de desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 linux-info 953c3b1c472dcadbf62098a9301327f2 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 pax-utils e85f015e815dd463b0c206d781ef45a5 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 unpacker 3cd8bad0d31e525cd26be1bfa4e61631 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 _md5_=3343caa50371c896ad0091dd00d8ec72 diff --git a/metadata/md5-cache/www-client/opera-58.0.3135.127 b/metadata/md5-cache/www-client/opera-58.0.3135.127 deleted file mode 100644 index 1a93e14fa451..000000000000 --- a/metadata/md5-cache/www-client/opera-58.0.3135.127 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install postinst postrm preinst prepare setup unpack -DESCRIPTION=A fast and secure web browser -EAPI=5 -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_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/58.0.3135.127/linux/opera-stable_58.0.3135.127_amd64.deb https://download2.operacdn.com/pub/opera/desktop/58.0.3135.127/linux/opera-stable_58.0.3135.127_amd64.deb https://download3.operacdn.com/pub/opera/desktop/58.0.3135.127/linux/opera-stable_58.0.3135.127_amd64.deb https://download4.operacdn.com/pub/opera/desktop/58.0.3135.127/linux/opera-stable_58.0.3135.127_amd64.deb -_eclasses_=chromium-2 92ff174aa2b13d6ea0c4539533f0b2de desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 linux-info 953c3b1c472dcadbf62098a9301327f2 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 unpacker 3cd8bad0d31e525cd26be1bfa4e61631 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=e0842639e2a8f7a67e5a0ff58e0aaba7 diff --git a/metadata/md5-cache/www-client/opera-60.0.3255.27 b/metadata/md5-cache/www-client/opera-60.0.3255.27 deleted file mode 100644 index 37cebebeddb4..000000000000 --- a/metadata/md5-cache/www-client/opera-60.0.3255.27 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install postinst postrm preinst prepare setup unpack -DESCRIPTION=A fast and secure web browser -EAPI=5 -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_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/60.0.3255.27/linux/opera-stable_60.0.3255.27_amd64.deb https://download2.operacdn.com/pub/opera/desktop/60.0.3255.27/linux/opera-stable_60.0.3255.27_amd64.deb https://download3.operacdn.com/pub/opera/desktop/60.0.3255.27/linux/opera-stable_60.0.3255.27_amd64.deb https://download4.operacdn.com/pub/opera/desktop/60.0.3255.27/linux/opera-stable_60.0.3255.27_amd64.deb -_eclasses_=chromium-2 92ff174aa2b13d6ea0c4539533f0b2de desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 linux-info 953c3b1c472dcadbf62098a9301327f2 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 unpacker 3cd8bad0d31e525cd26be1bfa4e61631 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=eba038b7c78ffdc2e401b966a6f94363 diff --git a/metadata/md5-cache/www-client/opera-60.0.3255.56 b/metadata/md5-cache/www-client/opera-60.0.3255.59 similarity index 81% rename from metadata/md5-cache/www-client/opera-60.0.3255.56 rename to metadata/md5-cache/www-client/opera-60.0.3255.59 index 9e0f049ce9f8..f15b8ed7284c 100644 --- a/metadata/md5-cache/www-client/opera-60.0.3255.56 +++ b/metadata/md5-cache/www-client/opera-60.0.3255.59 @@ -3,10 +3,10 @@ DESCRIPTION=A fast and secure web browser EAPI=5 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_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 +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/60.0.3255.56/linux/opera-stable_60.0.3255.56_amd64.deb https://download2.operacdn.com/pub/opera/desktop/60.0.3255.56/linux/opera-stable_60.0.3255.56_amd64.deb https://download3.operacdn.com/pub/opera/desktop/60.0.3255.56/linux/opera-stable_60.0.3255.56_amd64.deb https://download4.operacdn.com/pub/opera/desktop/60.0.3255.56/linux/opera-stable_60.0.3255.56_amd64.deb +SRC_URI=https://download1.operacdn.com/pub/opera/desktop/60.0.3255.59/linux/opera-stable_60.0.3255.59_amd64.deb https://download2.operacdn.com/pub/opera/desktop/60.0.3255.59/linux/opera-stable_60.0.3255.59_amd64.deb https://download3.operacdn.com/pub/opera/desktop/60.0.3255.59/linux/opera-stable_60.0.3255.59_amd64.deb https://download4.operacdn.com/pub/opera/desktop/60.0.3255.59/linux/opera-stable_60.0.3255.59_amd64.deb _eclasses_=chromium-2 92ff174aa2b13d6ea0c4539533f0b2de desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 linux-info 953c3b1c472dcadbf62098a9301327f2 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 unpacker 3cd8bad0d31e525cd26be1bfa4e61631 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=eba038b7c78ffdc2e401b966a6f94363 +_md5_=e0842639e2a8f7a67e5a0ff58e0aaba7 diff --git a/metadata/md5-cache/www-plugins/Manifest.gz b/metadata/md5-cache/www-plugins/Manifest.gz index 67070e92502e..8e99bd186985 100644 Binary files a/metadata/md5-cache/www-plugins/Manifest.gz and b/metadata/md5-cache/www-plugins/Manifest.gz differ diff --git a/metadata/md5-cache/www-plugins/chrome-binary-plugins-74.0.3729.75_beta b/metadata/md5-cache/www-plugins/chrome-binary-plugins-74.0.3729.91_beta similarity index 92% rename from metadata/md5-cache/www-plugins/chrome-binary-plugins-74.0.3729.75_beta rename to metadata/md5-cache/www-plugins/chrome-binary-plugins-74.0.3729.91_beta index b940f75d0a4f..aec7361c2572 100644 --- a/metadata/md5-cache/www-plugins/chrome-binary-plugins-74.0.3729.75_beta +++ b/metadata/md5-cache/www-plugins/chrome-binary-plugins-74.0.3729.91_beta @@ -8,6 +8,6 @@ LICENSE=google-chrome RDEPEND=widevine? ( dev-libs/glib:2 dev-libs/nspr dev-libs/nss !=app-arch/brotli-0.6.0:= ) apache2_modules_http2? ( >=net-libs/nghttp2-1.2.1 ) apache2_modules_md? ( >=dev-libs/jansson-2.10 ) suexec? ( suexec-caps? ( sys-libs/libcap ) ) >=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 ssl? ( || ( dev-libs/openssl:0 dev-libs/libressl:0 ) ) >=dev-libs/apr-1.5.1:= !www-apache/mod_macro dev-lang/perl =dev-libs/apr-util-1*:=[gdbm=,ldap?] dev-libs/libpcre apache2_modules_deflate? ( sys-libs/zlib ) apache2_modules_mime? ( app-misc/mime-types ) gdbm? ( sys-libs/gdbm:= ) ldap? ( =net-nds/openldap-2* ) ssl? ( !libressl? ( >=dev-libs/openssl-1.0.2:0= ) libressl? ( dev-libs/libressl:0= ) ) !=www-servers/apache-1* virtual/pkgconfig -DESCRIPTION=The Apache Web Server -EAPI=6 -HOMEPAGE=https://httpd.apache.org/ -IUSE=+suexec-caps suexec-syslog ssl debug doc gdbm ldap libressl selinux ssl static suexec threads apache2_modules_access_compat apache2_modules_actions apache2_modules_alias apache2_modules_asis apache2_modules_auth_basic apache2_modules_auth_digest apache2_modules_authn_alias apache2_modules_authn_anon apache2_modules_authn_core apache2_modules_authn_dbd apache2_modules_authn_dbm apache2_modules_authn_file apache2_modules_authz_core apache2_modules_authz_dbd apache2_modules_authz_dbm apache2_modules_authz_groupfile apache2_modules_authz_host apache2_modules_authz_owner apache2_modules_authz_user apache2_modules_autoindex apache2_modules_brotli apache2_modules_cache apache2_modules_cache_disk apache2_modules_cache_socache apache2_modules_cern_meta apache2_modules_charset_lite apache2_modules_cgi apache2_modules_cgid apache2_modules_dav apache2_modules_dav_fs apache2_modules_dav_lock apache2_modules_dbd apache2_modules_deflate apache2_modules_dir apache2_modules_dumpio apache2_modules_env apache2_modules_expires apache2_modules_ext_filter apache2_modules_file_cache apache2_modules_filter apache2_modules_headers apache2_modules_http2 apache2_modules_ident apache2_modules_imagemap apache2_modules_include apache2_modules_info apache2_modules_lbmethod_byrequests apache2_modules_lbmethod_bytraffic apache2_modules_lbmethod_bybusyness apache2_modules_lbmethod_heartbeat apache2_modules_log_config apache2_modules_log_forensic apache2_modules_logio apache2_modules_macro apache2_modules_md apache2_modules_mime apache2_modules_mime_magic apache2_modules_negotiation apache2_modules_proxy apache2_modules_proxy_ajp apache2_modules_proxy_balancer apache2_modules_proxy_connect apache2_modules_proxy_ftp apache2_modules_proxy_html apache2_modules_proxy_http apache2_modules_proxy_scgi apache2_modules_proxy_fcgi apache2_modules_proxy_wstunnel apache2_modules_rewrite apache2_modules_ratelimit apache2_modules_remoteip apache2_modules_reqtimeout apache2_modules_setenvif apache2_modules_slotmem_shm apache2_modules_speling apache2_modules_socache_shmcb apache2_modules_status apache2_modules_substitute apache2_modules_unique_id apache2_modules_userdir apache2_modules_usertrack apache2_modules_unixd apache2_modules_version apache2_modules_vhost_alias apache2_modules_watchdog apache2_modules_xml2enc apache2_mpms_prefork apache2_mpms_event apache2_mpms_worker -KEYWORDS=alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x64-macos ~x86-macos ~m68k-mint ~sparc64-solaris ~x64-solaris -LICENSE=Apache-2.0 Apache-1.1 -PDEPEND=~app-admin/apache-tools-2.4.34 -RDEPEND=apache2_modules_brotli? ( >=app-arch/brotli-0.6.0:= ) apache2_modules_http2? ( >=net-libs/nghttp2-1.2.1 ) apache2_modules_md? ( >=dev-libs/jansson-2.10 ) >=dev-libs/apr-1.5.1:= !www-apache/mod_macro dev-lang/perl =dev-libs/apr-util-1*:=[gdbm=,ldap?] dev-libs/libpcre apache2_modules_deflate? ( sys-libs/zlib ) apache2_modules_mime? ( app-misc/mime-types ) gdbm? ( sys-libs/gdbm:= ) ldap? ( =net-nds/openldap-2* ) ssl? ( !libressl? ( >=dev-libs/openssl-1.0.2:0= ) libressl? ( dev-libs/libressl:0= ) ) !=www-servers/apache-1* selinux? ( sec-policy/selinux-apache ) virtual/tmpfiles -REQUIRED_USE=apache2_modules_http2? ( ssl ) apache2_modules_md? ( ssl ) apache2_mpms_prefork? ( !apache2_mpms_event !apache2_mpms_worker !threads ) apache2_mpms_event? ( !apache2_mpms_prefork !apache2_mpms_worker threads ) apache2_mpms_worker? ( !apache2_mpms_prefork !apache2_mpms_event threads ) apache2_mpms_prefork? ( !apache2_modules_http2 ) apache2_modules_brotli? ( apache2_modules_filter ) apache2_modules_dav_fs? ( apache2_modules_dav ) apache2_modules_dav_lock? ( apache2_modules_dav ) apache2_modules_deflate? ( apache2_modules_filter ) apache2_modules_cache_disk? ( apache2_modules_cache ) apache2_modules_ext_filter? ( apache2_modules_filter ) apache2_modules_file_cache? ( apache2_modules_cache ) apache2_modules_lbmethod_byrequests? ( apache2_modules_proxy_balancer ) apache2_modules_lbmethod_byrequests? ( apache2_modules_slotmem_shm ) apache2_modules_lbmethod_bytraffic? ( apache2_modules_proxy_balancer ) apache2_modules_lbmethod_bybusyness? ( apache2_modules_proxy_balancer ) apache2_modules_lbmethod_heartbeat? ( apache2_modules_proxy_balancer ) apache2_modules_log_forensic? ( apache2_modules_log_config ) apache2_modules_logio? ( apache2_modules_log_config ) apache2_modules_cache_disk? ( apache2_modules_cache ) apache2_modules_cache_socache? ( apache2_modules_cache ) apache2_modules_md? ( apache2_modules_watchdog ) apache2_modules_mime_magic? ( apache2_modules_mime ) apache2_modules_proxy_ajp? ( apache2_modules_proxy ) apache2_modules_proxy_balancer? ( apache2_modules_proxy ) apache2_modules_proxy_balancer? ( apache2_modules_slotmem_shm ) apache2_modules_proxy_connect? ( apache2_modules_proxy ) apache2_modules_proxy_ftp? ( apache2_modules_proxy ) apache2_modules_proxy_html? ( apache2_modules_proxy ) apache2_modules_proxy_html? ( apache2_modules_xml2enc ) apache2_modules_proxy_http? ( apache2_modules_proxy ) apache2_modules_proxy_scgi? ( apache2_modules_proxy ) apache2_modules_proxy_fcgi? ( apache2_modules_proxy ) apache2_modules_proxy_wstunnel? ( apache2_modules_proxy ) apache2_modules_substitute? ( apache2_modules_filter ) -SLOT=2 -SRC_URI=mirror://apache/httpd/httpd-2.4.34.tar.bz2 https://dev.gentoo.org/~polynomial-c/dist/apache/gentoo-apache-2.4.34-20180716.tar.bz2 -_eclasses_=apache-2 20ad1434bfafa6a0c06f7898cf4059ef autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ssl-cert a1a4daed6b2479901759d6fe367c4c29 systemd 71fd8d2065d102753fb9e4d20eaf3e9f tmpfiles a6dd0427ea9c68067a0a7fe2236b457f toolchain-funcs b45201c4e6c096b98e250336954e64b9 user 8bd74731cafdcdad8f7a63637302e073 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=4ecf7d6046b0f7b56d619d2a08da04eb diff --git a/metadata/md5-cache/www-servers/apache-2.4.38-r1 b/metadata/md5-cache/www-servers/apache-2.4.38-r1 deleted file mode 100644 index 5f44d55d7218..000000000000 --- a/metadata/md5-cache/www-servers/apache-2.4.38-r1 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare setup -DEPEND=apache2_modules_brotli? ( >=app-arch/brotli-0.6.0:= ) apache2_modules_http2? ( >=net-libs/nghttp2-1.2.1 ) apache2_modules_md? ( >=dev-libs/jansson-2.10 ) suexec? ( suexec-caps? ( sys-libs/libcap ) ) >=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 ssl? ( || ( dev-libs/openssl:0 dev-libs/libressl:0 ) ) >=dev-libs/apr-1.5.1:= !www-apache/mod_macro dev-lang/perl =dev-libs/apr-util-1*:=[gdbm=,ldap?] dev-libs/libpcre apache2_modules_deflate? ( sys-libs/zlib ) apache2_modules_mime? ( app-misc/mime-types ) gdbm? ( sys-libs/gdbm:= ) ldap? ( =net-nds/openldap-2* ) ssl? ( !libressl? ( >=dev-libs/openssl-1.0.2:0= ) libressl? ( dev-libs/libressl:0= ) ) !=www-servers/apache-1* virtual/pkgconfig -DESCRIPTION=The Apache Web Server -EAPI=6 -HOMEPAGE=https://httpd.apache.org/ -IUSE=+suexec-caps suexec-syslog ssl debug doc gdbm ldap libressl selinux ssl static suexec threads apache2_modules_access_compat apache2_modules_actions apache2_modules_alias apache2_modules_asis apache2_modules_auth_basic apache2_modules_auth_digest apache2_modules_authn_alias apache2_modules_authn_anon apache2_modules_authn_core apache2_modules_authn_dbd apache2_modules_authn_dbm apache2_modules_authn_file apache2_modules_authz_core apache2_modules_authz_dbd apache2_modules_authz_dbm apache2_modules_authz_groupfile apache2_modules_authz_host apache2_modules_authz_owner apache2_modules_authz_user apache2_modules_autoindex apache2_modules_brotli apache2_modules_cache apache2_modules_cache_disk apache2_modules_cache_socache apache2_modules_cern_meta apache2_modules_charset_lite apache2_modules_cgi apache2_modules_cgid apache2_modules_dav apache2_modules_dav_fs apache2_modules_dav_lock apache2_modules_dbd apache2_modules_deflate apache2_modules_dir apache2_modules_dumpio apache2_modules_env apache2_modules_expires apache2_modules_ext_filter apache2_modules_file_cache apache2_modules_filter apache2_modules_headers apache2_modules_http2 apache2_modules_ident apache2_modules_imagemap apache2_modules_include apache2_modules_info apache2_modules_lbmethod_byrequests apache2_modules_lbmethod_bytraffic apache2_modules_lbmethod_bybusyness apache2_modules_lbmethod_heartbeat apache2_modules_log_config apache2_modules_log_forensic apache2_modules_logio apache2_modules_macro apache2_modules_md apache2_modules_mime apache2_modules_mime_magic apache2_modules_negotiation apache2_modules_proxy apache2_modules_proxy_ajp apache2_modules_proxy_balancer apache2_modules_proxy_connect apache2_modules_proxy_ftp apache2_modules_proxy_html apache2_modules_proxy_http apache2_modules_proxy_scgi apache2_modules_proxy_http2 apache2_modules_proxy_fcgi apache2_modules_proxy_wstunnel apache2_modules_rewrite apache2_modules_ratelimit apache2_modules_remoteip apache2_modules_reqtimeout apache2_modules_setenvif apache2_modules_slotmem_shm apache2_modules_speling apache2_modules_socache_shmcb apache2_modules_status apache2_modules_substitute apache2_modules_unique_id apache2_modules_userdir apache2_modules_usertrack apache2_modules_unixd apache2_modules_version apache2_modules_vhost_alias apache2_modules_watchdog apache2_modules_xml2enc apache2_mpms_prefork apache2_mpms_event apache2_mpms_worker -KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x64-macos ~x86-macos ~m68k-mint ~sparc64-solaris ~x64-solaris -LICENSE=Apache-2.0 Apache-1.1 -PDEPEND=~app-admin/apache-tools-2.4.38 -RDEPEND=apache2_modules_brotli? ( >=app-arch/brotli-0.6.0:= ) apache2_modules_http2? ( >=net-libs/nghttp2-1.2.1 ) apache2_modules_md? ( >=dev-libs/jansson-2.10 ) >=dev-libs/apr-1.5.1:= !www-apache/mod_macro dev-lang/perl =dev-libs/apr-util-1*:=[gdbm=,ldap?] dev-libs/libpcre apache2_modules_deflate? ( sys-libs/zlib ) apache2_modules_mime? ( app-misc/mime-types ) gdbm? ( sys-libs/gdbm:= ) ldap? ( =net-nds/openldap-2* ) ssl? ( !libressl? ( >=dev-libs/openssl-1.0.2:0= ) libressl? ( dev-libs/libressl:0= ) ) !=www-servers/apache-1* selinux? ( sec-policy/selinux-apache ) virtual/tmpfiles -REQUIRED_USE=apache2_modules_http2? ( ssl ) apache2_modules_md? ( ssl ) apache2_mpms_prefork? ( !apache2_mpms_event !apache2_mpms_worker !threads ) apache2_mpms_event? ( !apache2_mpms_prefork !apache2_mpms_worker threads ) apache2_mpms_worker? ( !apache2_mpms_prefork !apache2_mpms_event threads ) apache2_mpms_prefork? ( !apache2_modules_http2 ) apache2_modules_brotli? ( apache2_modules_filter ) apache2_modules_dav_fs? ( apache2_modules_dav ) apache2_modules_dav_lock? ( apache2_modules_dav ) apache2_modules_deflate? ( apache2_modules_filter ) apache2_modules_cache_disk? ( apache2_modules_cache ) apache2_modules_ext_filter? ( apache2_modules_filter ) apache2_modules_file_cache? ( apache2_modules_cache ) apache2_modules_lbmethod_byrequests? ( apache2_modules_proxy_balancer ) apache2_modules_lbmethod_byrequests? ( apache2_modules_slotmem_shm ) apache2_modules_lbmethod_bytraffic? ( apache2_modules_proxy_balancer ) apache2_modules_lbmethod_bybusyness? ( apache2_modules_proxy_balancer ) apache2_modules_lbmethod_heartbeat? ( apache2_modules_proxy_balancer ) apache2_modules_log_forensic? ( apache2_modules_log_config ) apache2_modules_logio? ( apache2_modules_log_config ) apache2_modules_cache_disk? ( apache2_modules_cache ) apache2_modules_cache_socache? ( apache2_modules_cache ) apache2_modules_md? ( apache2_modules_watchdog ) apache2_modules_mime_magic? ( apache2_modules_mime ) apache2_modules_proxy_ajp? ( apache2_modules_proxy ) apache2_modules_proxy_balancer? ( apache2_modules_proxy ) apache2_modules_proxy_balancer? ( apache2_modules_slotmem_shm ) apache2_modules_proxy_connect? ( apache2_modules_proxy ) apache2_modules_proxy_ftp? ( apache2_modules_proxy ) apache2_modules_proxy_html? ( apache2_modules_proxy ) apache2_modules_proxy_html? ( apache2_modules_xml2enc ) apache2_modules_proxy_http? ( apache2_modules_proxy ) apache2_modules_proxy_scgi? ( apache2_modules_proxy ) apache2_modules_proxy_fcgi? ( apache2_modules_proxy ) apache2_modules_proxy_wstunnel? ( apache2_modules_proxy ) apache2_modules_substitute? ( apache2_modules_filter ) -SLOT=2 -SRC_URI=mirror://apache/httpd/httpd-2.4.38.tar.bz2 https://dev.gentoo.org/~polynomial-c/dist/apache/gentoo-apache-2.4.38-20190226.tar.bz2 -_eclasses_=apache-2 20ad1434bfafa6a0c06f7898cf4059ef autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ssl-cert a1a4daed6b2479901759d6fe367c4c29 systemd 71fd8d2065d102753fb9e4d20eaf3e9f tmpfiles a6dd0427ea9c68067a0a7fe2236b457f toolchain-funcs b45201c4e6c096b98e250336954e64b9 user 8bd74731cafdcdad8f7a63637302e073 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=50f298c935ea2d6821e806f796209011 diff --git a/metadata/md5-cache/www-servers/apache-2.4.39 b/metadata/md5-cache/www-servers/apache-2.4.39 index 02ab19506095..5885e287bc69 100644 --- a/metadata/md5-cache/www-servers/apache-2.4.39 +++ b/metadata/md5-cache/www-servers/apache-2.4.39 @@ -4,7 +4,7 @@ DESCRIPTION=The Apache Web Server EAPI=6 HOMEPAGE=https://httpd.apache.org/ IUSE=+suexec-caps suexec-syslog ssl debug doc gdbm ldap libressl selinux ssl static suexec threads apache2_modules_access_compat apache2_modules_actions apache2_modules_alias apache2_modules_asis apache2_modules_auth_basic apache2_modules_auth_digest apache2_modules_authn_alias apache2_modules_authn_anon apache2_modules_authn_core apache2_modules_authn_dbd apache2_modules_authn_dbm apache2_modules_authn_file apache2_modules_authz_core apache2_modules_authz_dbd apache2_modules_authz_dbm apache2_modules_authz_groupfile apache2_modules_authz_host apache2_modules_authz_owner apache2_modules_authz_user apache2_modules_autoindex apache2_modules_brotli apache2_modules_cache apache2_modules_cache_disk apache2_modules_cache_socache apache2_modules_cern_meta apache2_modules_charset_lite apache2_modules_cgi apache2_modules_cgid apache2_modules_dav apache2_modules_dav_fs apache2_modules_dav_lock apache2_modules_dbd apache2_modules_deflate apache2_modules_dir apache2_modules_dumpio apache2_modules_env apache2_modules_expires apache2_modules_ext_filter apache2_modules_file_cache apache2_modules_filter apache2_modules_headers apache2_modules_http2 apache2_modules_ident apache2_modules_imagemap apache2_modules_include apache2_modules_info apache2_modules_lbmethod_byrequests apache2_modules_lbmethod_bytraffic apache2_modules_lbmethod_bybusyness apache2_modules_lbmethod_heartbeat apache2_modules_log_config apache2_modules_log_forensic apache2_modules_logio apache2_modules_macro apache2_modules_md apache2_modules_mime apache2_modules_mime_magic apache2_modules_negotiation apache2_modules_proxy apache2_modules_proxy_ajp apache2_modules_proxy_balancer apache2_modules_proxy_connect apache2_modules_proxy_ftp apache2_modules_proxy_html apache2_modules_proxy_http apache2_modules_proxy_scgi apache2_modules_proxy_http2 apache2_modules_proxy_fcgi apache2_modules_proxy_wstunnel apache2_modules_rewrite apache2_modules_ratelimit apache2_modules_remoteip apache2_modules_reqtimeout apache2_modules_setenvif apache2_modules_slotmem_shm apache2_modules_speling apache2_modules_socache_shmcb apache2_modules_status apache2_modules_substitute apache2_modules_unique_id apache2_modules_userdir apache2_modules_usertrack apache2_modules_unixd apache2_modules_version apache2_modules_vhost_alias apache2_modules_watchdog apache2_modules_xml2enc apache2_mpms_prefork apache2_mpms_event apache2_mpms_worker -KEYWORDS=~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x64-macos ~x86-macos ~m68k-mint ~sparc64-solaris ~x64-solaris +KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x64-macos ~x86-macos ~m68k-mint ~sparc64-solaris ~x64-solaris LICENSE=Apache-2.0 Apache-1.1 PDEPEND=~app-admin/apache-tools-2.4.39 RDEPEND=apache2_modules_brotli? ( >=app-arch/brotli-0.6.0:= ) apache2_modules_http2? ( >=net-libs/nghttp2-1.2.1 ) apache2_modules_md? ( >=dev-libs/jansson-2.10 ) >=dev-libs/apr-1.5.1:= !www-apache/mod_macro dev-lang/perl =dev-libs/apr-util-1*:=[gdbm=,ldap?] dev-libs/libpcre apache2_modules_deflate? ( sys-libs/zlib ) apache2_modules_mime? ( app-misc/mime-types ) gdbm? ( sys-libs/gdbm:= ) ldap? ( =net-nds/openldap-2* ) ssl? ( !libressl? ( >=dev-libs/openssl-1.0.2:0= ) libressl? ( dev-libs/libressl:0= ) ) !=www-servers/apache-1* selinux? ( sec-policy/selinux-apache ) virtual/tmpfiles @@ -12,4 +12,4 @@ REQUIRED_USE=apache2_modules_http2? ( ssl ) apache2_modules_md? ( ssl ) apache2_ SLOT=2 SRC_URI=mirror://apache/httpd/httpd-2.4.39.tar.bz2 https://dev.gentoo.org/~polynomial-c/dist/apache/gentoo-apache-2.4.39-20190402.tar.bz2 _eclasses_=apache-2 20ad1434bfafa6a0c06f7898cf4059ef autotools 1bf086cdd7356f5c9a4acd9727bd2065 desktop b1d22ac8bdd4679ab79c71aca235009d eapi7-ver 756b3f27d8e46131d5cf3c51bd876446 epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 ssl-cert a1a4daed6b2479901759d6fe367c4c29 systemd 71fd8d2065d102753fb9e4d20eaf3e9f tmpfiles a6dd0427ea9c68067a0a7fe2236b457f toolchain-funcs b45201c4e6c096b98e250336954e64b9 user 8bd74731cafdcdad8f7a63637302e073 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=b489aff3165c242f7e6c0b61daa9fea1 +_md5_=77e306ed0e0d13b8f8bf1e02b6502514 diff --git a/metadata/md5-cache/x11-apps/Manifest.gz b/metadata/md5-cache/x11-apps/Manifest.gz index b12f50977375..8255c3237032 100644 Binary files a/metadata/md5-cache/x11-apps/Manifest.gz and b/metadata/md5-cache/x11-apps/Manifest.gz differ diff --git a/metadata/md5-cache/x11-apps/radeon-profile-daemon-20190309 b/metadata/md5-cache/x11-apps/radeon-profile-daemon-20190309-r1 similarity index 82% rename from metadata/md5-cache/x11-apps/radeon-profile-daemon-20190309 rename to metadata/md5-cache/x11-apps/radeon-profile-daemon-20190309-r1 index ec8b55be5288..7ae121892f0c 100644 --- a/metadata/md5-cache/x11-apps/radeon-profile-daemon-20190309 +++ b/metadata/md5-cache/x11-apps/radeon-profile-daemon-20190309-r1 @@ -1,11 +1,13 @@ BDEPEND=virtual/pkgconfig DEFINED_PHASES=configure install prepare +DEPEND=dev-qt/qtcore:5 dev-qt/qtnetwork:5 DESCRIPTION=Daemon for radeon-profile GUI EAPI=7 HOMEPAGE=https://github.com/marazmista/radeon-profile-daemon KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 +RDEPEND=dev-qt/qtcore:5 dev-qt/qtnetwork:5 SLOT=0 SRC_URI=https://github.com/marazmista/radeon-profile-daemon/archive/20190309.tar.gz -> radeon-profile-daemon-20190309.tar.gz _eclasses_=estack 43ddf5aaffa7a8d0482df54d25a66a1f multilib b2f01ad412baf81650c23fcf0975fa33 qmake-utils bdf97e69a34b864d6d545f4ec3143ff7 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=98c75dedd7544a3035b8308a3cd90105 +_md5_=329ee77c0fdf83b24b0c7885dc975c38 diff --git a/metadata/md5-cache/x11-apps/radeon-profile-daemon-99999999 b/metadata/md5-cache/x11-apps/radeon-profile-daemon-99999999 index 8da3240534b2..1ae4dede4ac8 100644 --- a/metadata/md5-cache/x11-apps/radeon-profile-daemon-99999999 +++ b/metadata/md5-cache/x11-apps/radeon-profile-daemon-99999999 @@ -1,9 +1,11 @@ BDEPEND=virtual/pkgconfig >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=configure install prepare unpack +DEPEND=dev-qt/qtcore:5 dev-qt/qtnetwork:5 DESCRIPTION=Daemon for radeon-profile GUI EAPI=7 HOMEPAGE=https://github.com/marazmista/radeon-profile-daemon LICENSE=GPL-2 +RDEPEND=dev-qt/qtcore:5 dev-qt/qtnetwork:5 SLOT=0 _eclasses_=estack 43ddf5aaffa7a8d0482df54d25a66a1f git-r3 0d4635eeb5a96cd5315597a47eba25c9 multilib b2f01ad412baf81650c23fcf0975fa33 qmake-utils bdf97e69a34b864d6d545f4ec3143ff7 systemd 71fd8d2065d102753fb9e4d20eaf3e9f toolchain-funcs b45201c4e6c096b98e250336954e64b9 -_md5_=98c75dedd7544a3035b8308a3cd90105 +_md5_=329ee77c0fdf83b24b0c7885dc975c38 diff --git a/metadata/md5-cache/x11-apps/xinput_calibrator-0.7.5-r1 b/metadata/md5-cache/x11-apps/xinput_calibrator-0.7.5-r1 index 2b8c4cc246be..c138cbd4f68d 100644 --- a/metadata/md5-cache/x11-apps/xinput_calibrator-0.7.5-r1 +++ b/metadata/md5-cache/x11-apps/xinput_calibrator-0.7.5-r1 @@ -4,10 +4,10 @@ DESCRIPTION=A generic touchscreen calibration program for X.Org EAPI=5 HOMEPAGE=https://www.freedesktop.org/wiki/Software/xinput_calibrator IUSE=gtk -KEYWORDS=amd64 arm x86 +KEYWORDS=amd64 arm ~arm64 x86 LICENSE=MIT RDEPEND=x11-libs/libX11 x11-libs/libXext x11-libs/libXi x11-libs/libXrandr gtk? ( dev-cpp/gtkmm:2.4 ) SLOT=0 SRC_URI=mirror://github/tias/xinput_calibrator/xinput_calibrator-0.7.5.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 autotools-utils 696393cddf6200db17a31641f597b403 desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf libtool f143db5a74ccd9ca28c1234deffede96 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf -_md5_=6b87365199e4ca46bd0aef862c786df7 +_md5_=68866cb28b61b8b307e8bb807c24759a diff --git a/metadata/md5-cache/x11-misc/Manifest.gz b/metadata/md5-cache/x11-misc/Manifest.gz index 58f298717efa..3d884ff7085f 100644 Binary files a/metadata/md5-cache/x11-misc/Manifest.gz and b/metadata/md5-cache/x11-misc/Manifest.gz differ diff --git a/metadata/md5-cache/x11-misc/sunflower-0.3.61 b/metadata/md5-cache/x11-misc/sunflower-0.3.61 index ba9636347ee7..b4e1ff73bb6f 100644 --- a/metadata/md5-cache/x11-misc/sunflower-0.3.61 +++ b/metadata/md5-cache/x11-misc/sunflower-0.3.61 @@ -6,9 +6,9 @@ HOMEPAGE=https://github.com/MeanEYE/Sunflower http://sunflower-fm.org/ IUSE=python_targets_python2_7 KEYWORDS=~amd64 ~x86 LICENSE=GPL-3 -RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pygtk-2.15.0:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/notify-python-0.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] gnome-base/librsvg:2 +RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pygtk-2.15.0:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/notify-python-0.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] gnome-base/librsvg:2 dev-python/chardet[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycairo[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/MeanEYE/Sunflower/archive/0.3-61.tar.gz -> sunflower-0.3.61.tar.gz _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d multibuild 40fe59465edacd730c644ec2bc197809 multilib b2f01ad412baf81650c23fcf0975fa33 python-r1 ce1cd23cfdc1848e8e32743efe34f299 python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=50ec01025befd25b6378a14fc92f87ca +_md5_=cde8b4f2405e290da841019678f54ff8 diff --git a/metadata/md5-cache/x11-misc/xcalib-0.10 b/metadata/md5-cache/x11-misc/xcalib-0.10 index 0afbd9b48114..ef9abac80c39 100644 --- a/metadata/md5-cache/x11-misc/xcalib-0.10 +++ b/metadata/md5-cache/x11-misc/xcalib-0.10 @@ -4,10 +4,10 @@ DEPEND=x11-libs/libX11 x11-libs/libXrandr x11-libs/libXxf86vm x11-base/xorg-prot DESCRIPTION=Tiny monitor calibration loader for X.org EAPI=7 HOMEPAGE=https://github.com/OpenICC/xcalib -KEYWORDS=~amd64 ~arm ~ppc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~x86 LICENSE=GPL-2 RDEPEND=x11-libs/libX11 x11-libs/libXrandr x11-libs/libXxf86vm SLOT=0 SRC_URI=https://github.com/OpenICC/xcalib/archive/0.10.tar.gz -> xcalib-0.10.tar.gz _eclasses_=cmake-utils ab10bd85e5d38e2a32077bcd91faa1b6 eutils 6e6c2737b59a4b982de6fb3ecefd87f8 flag-o-matic a09389deba2c0a7108b581e02c7cecbf multilib b2f01ad412baf81650c23fcf0975fa33 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs b45201c4e6c096b98e250336954e64b9 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=a82ef92778cdc448fd9aabc450d2e575 +_md5_=e58941bf1f6fc0ee545ab31c4ed531a0 diff --git a/metadata/md5-cache/x11-themes/Manifest.gz b/metadata/md5-cache/x11-themes/Manifest.gz index 74d44ab5c855..9acc4f011f53 100644 Binary files a/metadata/md5-cache/x11-themes/Manifest.gz and b/metadata/md5-cache/x11-themes/Manifest.gz differ diff --git a/metadata/md5-cache/x11-themes/mate-themes-3.22.19 b/metadata/md5-cache/x11-themes/mate-themes-3.22.19 index 55f6a9406e87..8714920a413e 100644 --- a/metadata/md5-cache/x11-themes/mate-themes-3.22.19 +++ b/metadata/md5-cache/x11-themes/mate-themes-3.22.19 @@ -3,12 +3,12 @@ DEFINED_PHASES=postinst postrm preinst prepare DEPEND=>=x11-libs/gdk-pixbuf-2:2 >=x11-libs/gtk+-2:2 >=x11-themes/gtk-engines-2.15.3:2 x11-themes/gtk-engines-murrine >=dev-util/intltool-0.35 sys-devel/gettext >=sys-devel/autoconf-2.53 >=x11-misc/icon-naming-utils-0.8.7:0 virtual/pkgconfig dev-util/desktop-file-utils x11-misc/shared-mime-info DESCRIPTION=A set of MATE themes, with sets for users with limited or low vision EAPI=7 -HOMEPAGE=http://mate-desktop.org +HOMEPAGE=https://mate-desktop.org KEYWORDS=amd64 ~arm ~arm64 x86 LICENSE=LGPL-2.1 GPL-3 RDEPEND=>=x11-libs/gdk-pixbuf-2:2 >=x11-libs/gtk+-2:2 >=x11-themes/gtk-engines-2.15.3:2 x11-themes/gtk-engines-murrine RESTRICT=binchecks strip SLOT=0/3.22 -SRC_URI=http://pub.mate-desktop.org/releases/themes/3.22/mate-themes-3.22.19.tar.xz +SRC_URI=https://pub.mate-desktop.org/releases/themes/3.22/mate-themes-3.22.19.tar.xz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=9c741b2972ed9d06f065226febc744ae +_md5_=4c765fcaa4c42b24323eaa27a5f55577 diff --git a/metadata/md5-cache/xfce-base/Manifest.gz b/metadata/md5-cache/xfce-base/Manifest.gz index f783d245f1ff..2db451eb1746 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/exo-0.12.4 b/metadata/md5-cache/xfce-base/exo-0.12.4 index 09206cc18561..9ac12e49afbd 100644 --- a/metadata/md5-cache/xfce-base/exo-0.12.4 +++ b/metadata/md5-cache/xfce-base/exo-0.12.4 @@ -3,10 +3,10 @@ DEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.42:= dev-perl/URI >=x11-libs/gtk+-2 DESCRIPTION=Extensions, widgets and framework library with session support for Xfce EAPI=6 HOMEPAGE=https://www.xfce.org/projects/ -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris LICENSE=GPL-2+ LGPL-2.1+ RDEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.42:= dev-perl/URI >=x11-libs/gtk+-2.24:2= >=x11-libs/gtk+-3.22:3= >=xfce-base/libxfce4ui-4.12:=[gtk3(+)] >=xfce-base/libxfce4util-4.12:= SLOT=0 SRC_URI=https://archive.xfce.org/src/xfce/exo/0.12/exo-0.12.4.tar.bz2 _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=0519ff992fb722b402fc3c03a7408fdc +_md5_=8466f06aee5da553288d08e2755c1ca8 diff --git a/metadata/md5-cache/xfce-base/garcon-0.6.2 b/metadata/md5-cache/xfce-base/garcon-0.6.2 index e49caeb994aa..b019f2fb861c 100644 --- a/metadata/md5-cache/xfce-base/garcon-0.6.2 +++ b/metadata/md5-cache/xfce-base/garcon-0.6.2 @@ -4,9 +4,9 @@ DESCRIPTION=Xfce's freedesktop.org specification compatible menu implementation 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 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris +KEYWORDS=alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-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_=c87d8815d0c18661b366e6a5709e6188 +_md5_=3934950144c58468cca186150b47caac diff --git a/metadata/md5-cache/xfce-base/thunar-1.6.16 b/metadata/md5-cache/xfce-base/thunar-1.6.16 index bacc68958e74..93512f40b1ca 100644 --- a/metadata/md5-cache/xfce-base/thunar-1.6.16 +++ b/metadata/md5-cache/xfce-base/thunar-1.6.16 @@ -4,11 +4,11 @@ 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 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris +KEYWORDS=alpha amd64 arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~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] ) 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 b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 401b718cc14d43a5a7fbe062c4851ba5 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=03e654c13776f905884e3886119831e4 +_md5_=aab56f67a5c3f8700cf5e10021a5ba8b diff --git a/metadata/md5-cache/xfce-extra/Manifest.gz b/metadata/md5-cache/xfce-extra/Manifest.gz index 926a71f616e0..325fa858a5aa 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/xfce4-dict-0.8.2 b/metadata/md5-cache/xfce-extra/xfce4-dict-0.8.2 index c9bc47569014..c2efd197ef63 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-dict-0.8.2 +++ b/metadata/md5-cache/xfce-extra/xfce4-dict-0.8.2 @@ -3,10 +3,10 @@ DEPEND=>=dev-libs/glib-2.24:= >=x11-libs/gtk+-3.22:3= x11-libs/libX11:= >=xfce-b DESCRIPTION=A dict.org querying application and panel plug-in for the Xfce desktop EAPI=6 HOMEPAGE=https://goodies.xfce.org/projects/applications/xfce4-dict -KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux +KEYWORDS=alpha amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.24:= >=x11-libs/gtk+-3.22:3= x11-libs/libX11:= >=xfce-base/libxfce4util-4.10:= >=xfce-base/libxfce4ui-4.12:= >=xfce-base/xfce4-panel-4.10:= SLOT=0 SRC_URI=https://archive.xfce.org/src/apps/xfce4-dict/0.8/xfce4-dict-0.8.2.tar.bz2 _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=8d841cf7a5756f97274bfbb6e7aa8b29 +_md5_=7228680ee8fb56609020a0c9a7755c2c 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-r1 index a60c716d4fc3..00df0b09ac0f 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-r1 @@ -3,10 +3,10 @@ DEPEND=>=dev-libs/glib-2.24:2 >=x11-libs/gtk+-2.20:2 >=xfce-base/libxfce4ui-4.10 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 ~x86-fbsd ~amd64-linux ~x86-linux +KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~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= 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 14d00d009167652b1fa363e55effe213 -_md5_=5836c46d8de10618ba5ac4125ea37848 +_md5_=038e3f53c67b924ee206f2908f476c42 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-r1 index 67379e7ebdbb..1438d92492e8 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-r1 @@ -4,9 +4,9 @@ DESCRIPTION=A panel plug-in to provide quick access to files, folders and remova 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 ~x86-fbsd ~amd64-linux ~x86-linux +KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~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:= ) 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_=1146d7e05d3733ba67233cbe55a6950f +_md5_=886b2a655327e79754eeff541e6a354a diff --git a/metadata/md5-cache/xfce-extra/xfce4-taskmanager-1.2.2 b/metadata/md5-cache/xfce-extra/xfce4-taskmanager-1.2.2 index 1134472a1256..559c7f9d0c94 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-taskmanager-1.2.2 +++ b/metadata/md5-cache/xfce-extra/xfce4-taskmanager-1.2.2 @@ -3,10 +3,10 @@ DEPEND=x11-libs/cairo:= x11-libs/libX11:= x11-libs/libXmu:= x11-libs/gtk+:3= x11 DESCRIPTION=Easy to use task manager EAPI=6 HOMEPAGE=https://goodies.xfce.org/projects/applications/xfce4-taskmanager -KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux +KEYWORDS=alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux LICENSE=GPL-2+ RDEPEND=x11-libs/cairo:= x11-libs/libX11:= x11-libs/libXmu:= x11-libs/gtk+:3= x11-libs/libwnck:3= SLOT=0 SRC_URI=https://archive.xfce.org/src/apps/xfce4-taskmanager/1.2/xfce4-taskmanager-1.2.2.tar.bz2 _eclasses_=desktop b1d22ac8bdd4679ab79c71aca235009d epatch a1bf4756dba418a7238f3be0cb010c54 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 6e6c2737b59a4b982de6fb3ecefd87f8 gnome2-utils 532371cfcba45b2ab0d2950547c97d95 ltprune 2729691420b6deeda2a90b1f1183fb55 multilib b2f01ad412baf81650c23fcf0975fa33 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=01f401a768d7cc37e43e706cc2b7f560 +_md5_=22cf2495e15f2a003b5b0177b53d88a4 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 e2d0fc800c9e..66958f4d5fe5 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 @@ -3,10 +3,10 @@ DEPEND=x11-libs/gtk+:2 x11-libs/libX11:= >=xfce-base/libxfce4ui-4.8:= >=xfce-bas 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 ~x86-fbsd ~amd64-linux ~x86-linux +KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~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:= 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 14d00d009167652b1fa363e55effe213 -_md5_=059fb517182ed2dce9d91246dee5f8c6 +_md5_=41d1df861d9d36b56117635f940515ac diff --git a/metadata/md5-cache/xfce-extra/xfce4-vala-4.10.3-r5 b/metadata/md5-cache/xfce-extra/xfce4-vala-4.10.3-r5 index 202a99b73032..8e4730c4e762 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-vala-4.10.3-r5 +++ b/metadata/md5-cache/xfce-extra/xfce4-vala-4.10.3-r5 @@ -3,10 +3,10 @@ DEPEND=|| ( dev-lang/vala:0.40[vapigen(+)] ) >=xfce-base/exo-0.10:= >=xfce-base/ DESCRIPTION=Vala bindings for the Xfce desktop environment EAPI=7 HOMEPAGE=https://wiki.xfce.org/vala-bindings -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=LGPL-2.1+ RDEPEND=|| ( dev-lang/vala:0.40[vapigen(+)] ) >=xfce-base/exo-0.10:= >=xfce-base/garcon-0.2:= >=xfce-base/libxfce4ui-4.10:= >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfce4-panel-4.10:= >=xfce-base/xfconf-4.10:= SLOT=0 SRC_URI=https://archive.xfce.org/src/bindings/xfce4-vala/4.10/xfce4-vala-4.10.3.tar.bz2 _eclasses_=eutils 6e6c2737b59a4b982de6fb3ecefd87f8 multilib b2f01ad412baf81650c23fcf0975fa33 toolchain-funcs b45201c4e6c096b98e250336954e64b9 vala a94a0fb4c35fe91774bb72ec8f3c861f -_md5_=c2ef142732eb6d560046dc44cc4c5c37 +_md5_=9263d8d83663dde0855e5eb7834275be diff --git a/metadata/md5-cache/xfce-extra/xfce4-windowck-plugin-0.4.5 b/metadata/md5-cache/xfce-extra/xfce4-windowck-plugin-0.4.5 index 8442125a4a6c..bf5eb6426897 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-windowck-plugin-0.4.5 +++ b/metadata/md5-cache/xfce-extra/xfce4-windowck-plugin-0.4.5 @@ -4,10 +4,10 @@ DEPEND=>=x11-libs/gtk+-2.20:2 x11-libs/libX11 >=x11-libs/libwnck-2.30:1 >=xfce-b 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 +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:= SLOT=0 SRC_URI=https://github.com/cedl38/xfce4-windowck-plugin/archive/v0.4.5.tar.gz -> xfce4-windowck-plugin-0.4.5.tar.gz _eclasses_=autotools 1bf086cdd7356f5c9a4acd9727bd2065 libtool f143db5a74ccd9ca28c1234deffede96 multilib b2f01ad412baf81650c23fcf0975fa33 python-any-r1 4900ae970f827a22d33d41bd8b8f9ace python-utils-r1 08e17157a6807add7db1f8d01e7e391f toolchain-funcs b45201c4e6c096b98e250336954e64b9 xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=a24188f554cbb7bf46e1286adc8c729c +_md5_=994df61ad2ab1008c2ae064fd43de287 diff --git a/metadata/md5-cache/xfce-extra/xfdashboard-0.6.1 b/metadata/md5-cache/xfce-extra/xfdashboard-0.6.1 index 8c12b33f578a..4651670eaa27 100644 --- a/metadata/md5-cache/xfce-extra/xfdashboard-0.6.1 +++ b/metadata/md5-cache/xfce-extra/xfdashboard-0.6.1 @@ -3,10 +3,10 @@ DEPEND=>=dev-libs/dbus-glib-0.100:= >=dev-libs/glib-2.32:2 >=x11-libs/gtk+-3.2:3 DESCRIPTION=Maybe a GNOME shell like dashboard for the Xfce desktop environment EAPI=7 HOMEPAGE=https://goodies.xfce.org/projects/applications/xfdashboard/start -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2+ RDEPEND=>=dev-libs/dbus-glib-0.100:= >=dev-libs/glib-2.32:2 >=x11-libs/gtk+-3.2:3 >=media-libs/clutter-1.12:1.0= >=x11-libs/libwnck-3:3= x11-libs/libX11:= x11-libs/libXcomposite:= x11-libs/libXdamage:= x11-libs/libXinerama:= >=xfce-base/garcon-0.2.0:= >=xfce-base/libxfce4ui-4.10:= >=xfce-base/libxfce4util-4.10:= >=xfce-base/xfconf-4.10:= SLOT=0 SRC_URI=https://archive.xfce.org/src/apps/xfdashboard/0.6/xfdashboard-0.6.1.tar.bz2 _eclasses_=xdg-utils 14d00d009167652b1fa363e55effe213 -_md5_=adaedd85fee790d706b548b6195667ae +_md5_=49b819b4891fdf99e09263189fb25b59 diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index c6080967c0d7..aea8570b6f4e 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Sat, 20 Apr 2019 16:08:48 +0000 +Mon, 22 Apr 2019 05:08:47 +0000 diff --git a/metadata/projects.xml b/metadata/projects.xml index d0fb21d01161..57dade735a2d 100644 --- a/metadata/projects.xml +++ b/metadata/projects.xml @@ -1526,6 +1526,11 @@ Hardened musl https://wiki.gentoo.org/wiki/Project:Hardened_musl This subproject aims to port the hardened tool chain to musl based systems for a variety of architectures. The project treats musl as an alternative to glibc and uClibc, and not necessarily as "embedded". + + anarchy@gentoo.org + Jory A. Pratt + Developer + blueness@gentoo.org Anthony G. Basile diff --git a/metadata/timestamp b/metadata/timestamp index 65d6b4d7a74b..a15a3ef30b7e 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Sat Apr 20 16:08:48 UTC 2019 +Mon Apr 22 05:08:47 UTC 2019 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index c59d6a5c5297..b45fd3dbe409 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Sat, 20 Apr 2019 16:30:01 +0000 +Mon, 22 Apr 2019 05:30:01 +0000 diff --git a/metadata/timestamp.commit b/metadata/timestamp.commit index 35e3d949934d..a781f0dd8214 100644 --- a/metadata/timestamp.commit +++ b/metadata/timestamp.commit @@ -1 +1 @@ -3c50f4b197f3a451c7da26719b584d6113597747 1555773585 2019-04-20T15:19:45+00:00 +ce75abb55d60bf3c33e7850812e67fa1ad8cdfbc 1555904707 2019-04-22T03:45:07+00:00 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index 7642d81488a6..384385a7aea2 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1555776301 Sat 20 Apr 2019 04:05:01 PM UTC +1555909502 Mon 22 Apr 2019 05:05:02 AM UTC diff --git a/metadata/xml-schema/timestamp.chk b/metadata/xml-schema/timestamp.chk index c6080967c0d7..aea8570b6f4e 100644 --- a/metadata/xml-schema/timestamp.chk +++ b/metadata/xml-schema/timestamp.chk @@ -1 +1 @@ -Sat, 20 Apr 2019 16:08:48 +0000 +Mon, 22 Apr 2019 05:08:47 +0000 diff --git a/net-analyzer/Manifest.gz b/net-analyzer/Manifest.gz index 3afca90260d2..d636b7877e68 100644 Binary files a/net-analyzer/Manifest.gz and b/net-analyzer/Manifest.gz differ diff --git a/net-analyzer/cacti-spine/Manifest b/net-analyzer/cacti-spine/Manifest index 69c9557550ad..2738c9aeb717 100644 --- a/net-analyzer/cacti-spine/Manifest +++ b/net-analyzer/cacti-spine/Manifest @@ -1,5 +1,2 @@ -DIST cacti-spine-1.1.20.tar.gz 801877 BLAKE2B 35da513691967e507b9d10c373de571e2ef84aa20021d1bcfb2bc446a99fbbd2c68ebcd99dc47bece4387faa6596a7b109d8a61f02a3b2413cb89bfbcaa22e89 SHA512 df552157e64da04f57493351831a0602dea9ca3219ce3936884aec894e6698559d429ec62936a307b43fd49eff674c670d7e0a047924b5f03c30abeeec91491f -DIST cacti-spine-1.1.21.tar.gz 801907 BLAKE2B cdcda765d349db12df1c672c4469770297d09a3946f19f1e686c251ef30d5be1e3f772efeeb3f344b21ecdba29275dde1b683025ae7c16b10561486397a484f3 SHA512 0dfdd3444639a471bc5c0d35ea3898532f2ebf16679677fee8ad291221ed607b54acc7fbf25e78da7c5597eeaed6b870ad7af66a95e20f95afce3270c8da5dd0 -DIST cacti-spine-1.1.28.tar.gz 802006 BLAKE2B 79e833b6afb619a1d2361bad38c3a52dc1e29b296864670f830a3bc998e7e456638523da15032751d56c65aefe0480477e70b741b23882a2a38adb2262aef601 SHA512 2255823d29342b49babebbae175c29fc7054b05ec5ae5897609960d808409f46e6d0cfcba2038dfad9598bc23532794f6cf26032a0566d2d2d2c57d622d37ab1 DIST cacti-spine-1.1.38.tar.gz 805437 BLAKE2B 32d934f54e00d83e9807dd194a7cacf8d5526c8e5b84c44ffad201c07edcb117f862266843552299fe04cc780575b9b2dc7129a106a20bd709cb82844ade7812 SHA512 5409a690e89fcc74e1e87e34e1918cab27d1243825955eb8256a92f8e9658f312345c66b338a4a07a0e38c94e3275131cb4e58fb70e7b59837c0e6c47746e45e DIST cacti-spine-1.2.2.tar.gz 2310298 BLAKE2B 782fb21fda6acf06434c6e996863a235670970b19e5218624723df4736c388c2d9f00c1e3cc623dad7973bcbbe7ae5d4bbe89e366c1f47ce83eac9b416f88cb4 SHA512 ef2f839f7b247439a8576d49e311546cfd2346eea06cfb26b7a05d4757ae28334e6ed6ea00396027dc6c0c6e107121ed38f356ba62d8202003553fea3b5d139e diff --git a/net-analyzer/cacti-spine/cacti-spine-1.1.20.ebuild b/net-analyzer/cacti-spine/cacti-spine-1.1.20.ebuild deleted file mode 100644 index 837f87b754fa..000000000000 --- a/net-analyzer/cacti-spine/cacti-spine-1.1.20.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit autotools eutils - -MY_P=${PN}-${PV/_p/-} - -DESCRIPTION="Spine is a fast poller for Cacti (formerly known as Cactid)" -HOMEPAGE="https://cacti.net/spine_info.php" -SRC_URI="https://www.cacti.net/downloads/spine/${MY_P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 ~hppa ~ppc ~ppc64 sparc x86" - -CDEPEND=" - dev-libs/openssl:* - net-analyzer/net-snmp - virtual/mysql -" -DEPEND=" - ${CDEPEND} - sys-apps/help2man -" -RDEPEND=" - ${CDEPEND} - >net-analyzer/cacti-0.8.8 -" -PATCHES=( - "${FILESDIR}"/${PN}-0.8.8d-ping.patch - "${FILESDIR}"/${PN}-0.8.8g-net-snmp.patch -) - -src_prepare() { - default - - AT_M4DIR="config" eautoreconf -} - -src_install() { - dosbin spine - insinto /etc/ - insopts -m0640 -o root - newins spine.conf{.dist,} - dodoc ChangeLog -} diff --git a/net-analyzer/cacti-spine/cacti-spine-1.1.21.ebuild b/net-analyzer/cacti-spine/cacti-spine-1.1.21.ebuild deleted file mode 100644 index 4c78d022f85d..000000000000 --- a/net-analyzer/cacti-spine/cacti-spine-1.1.21.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit autotools eutils - -MY_P=${PN}-${PV/_p/-} - -DESCRIPTION="Spine is a fast poller for Cacti (formerly known as Cactid)" -HOMEPAGE="https://cacti.net/spine_info.php" -SRC_URI="https://www.cacti.net/downloads/spine/${MY_P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha ~amd64 hppa ~ppc ~ppc64 ~sparc ~x86" - -CDEPEND=" - dev-libs/openssl:* - net-analyzer/net-snmp - virtual/mysql -" -DEPEND=" - ${CDEPEND} - sys-apps/help2man -" -RDEPEND=" - ${CDEPEND} - >net-analyzer/cacti-0.8.8 -" -PATCHES=( - "${FILESDIR}"/${PN}-0.8.8d-ping.patch - "${FILESDIR}"/${PN}-0.8.8g-net-snmp.patch -) - -src_prepare() { - default - - AT_M4DIR="config" eautoreconf -} - -src_install() { - dosbin spine - insinto /etc/ - insopts -m0640 -o root - newins spine.conf{.dist,} - dodoc ChangeLog -} diff --git a/net-analyzer/cacti-spine/cacti-spine-1.1.28-r1.ebuild b/net-analyzer/cacti-spine/cacti-spine-1.1.28-r1.ebuild deleted file mode 100644 index 3cfbf20feb3e..000000000000 --- a/net-analyzer/cacti-spine/cacti-spine-1.1.28-r1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit autotools - -MY_P=${PN}-${PV/_p/-} - -DESCRIPTION="Spine is a fast poller for Cacti (formerly known as Cactid)" -HOMEPAGE="https://cacti.net/spine_info.php" -SRC_URI="https://www.cacti.net/downloads/spine/${MY_P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" - -CDEPEND=" - dev-libs/openssl:* - net-analyzer/net-snmp - dev-db/mysql-connector-c:0= -" -DEPEND=" - ${CDEPEND} - sys-apps/help2man -" -RDEPEND=" - ${CDEPEND} - >net-analyzer/cacti-0.8.8 -" -PATCHES=( - "${FILESDIR}"/${PN}-0.8.8d-ping.patch - "${FILESDIR}"/${PN}-0.8.8g-net-snmp.patch -) - -src_prepare() { - default - - AT_M4DIR="config" eautoreconf -} - -src_install() { - dosbin spine - insinto /etc/ - insopts -m0640 -o root - newins spine.conf{.dist,} - dodoc ChangeLog -} diff --git a/net-analyzer/cacti/Manifest b/net-analyzer/cacti/Manifest index 0024ebbfb2f3..08297479cecb 100644 --- a/net-analyzer/cacti/Manifest +++ b/net-analyzer/cacti/Manifest @@ -1,5 +1,2 @@ -DIST cacti-1.1.20.tar.gz 8903728 BLAKE2B 0efc22726540c57d9d6af71f80e9843bfee3d846ecfffbb8552511d06080c377ccfad8c8d19e21186b666c393d32a8f39196cb9caa0f005bb92f7c87c0fc316d SHA512 2d51c757916b366a188a3ab31771bafb6492aaa6ab2e778255945677bbb3f23f6fbfbb73ea9b05abf2f7cb26c0970bc208f68d5f1c016f8fe3b9da003dcd3b1b -DIST cacti-1.1.21.tar.gz 8905650 BLAKE2B a6e579b7d846388a9b732465eecdb5694c226b5edc98c1a005bbb8c17a307fa4d6ec56342e77e68bc62302c29451527e634fbbe6a9788073f0c5608dac57b76b SHA512 383bfc24c038154fd03d8997cba0fdf8d87ee69305f392b254102b6c279c0b7e53562a2d3d1f996315152a36da467821876e3834dd7b62bdc057a3b7838b94d2 -DIST cacti-1.1.28.tar.gz 8953179 BLAKE2B a1a7c3e39cfdb0f47eee86131d2210fb209b351cf91b56b8584d90ef53d216ab85936d66942506415d7e2610bdf2aa5235430cc664edd05ab612815d60d42b18 SHA512 2816a78604d169951519404e4bfbf17377912efd7a8bf1ef2a262fde7414783e65ee4a6bcac7dd3175fd9942aebf475b7dbd1fe6d350f75cf88246d3561ef9e8 DIST cacti-1.1.38.tar.gz 9081347 BLAKE2B 9f64bc7cd33187c4c744e1473409ea8998cd953c6fd047c66af6ff07d288678cbd944d2e70d0fc3838a42c7f7a9dbf7b094963391791a46bc50c3ed65ed4251f SHA512 1f91156416a9988fa149f9b8fc9fc7df904e4cf6d9a19a62d06c7de1ded99ddaec2f5b5f1a21b0effc4dee7b9c1d1911ca5aaa6113b57edc7e2f42b7969343b5 DIST cacti-1.2.2.tar.gz 23800723 BLAKE2B 3608edd60d796dcd8c875f2611c268605813d9f4102ecac99dd71d1b7a904f7bb74031d1c5692d0af7964af9e1a13fb46a88d98bbb6961bde0696b339fe84505 SHA512 4a41aff20f06ad56f4723e52084d1a09e3b3eb017e8f1c957f700e4e2f9b12e8f0e599cb56611241c6fcc59bbd6bf957e948631f3beca72e2a7fdadacc473c65 diff --git a/net-analyzer/cacti/cacti-1.1.20.ebuild b/net-analyzer/cacti/cacti-1.1.20.ebuild deleted file mode 100644 index e85926548ee1..000000000000 --- a/net-analyzer/cacti/cacti-1.1.20.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit eutils webapp - -# Support for _p* in version. -MY_P=${P/_p*/} - -DESCRIPTION="Cacti is a complete frontend to rrdtool" -HOMEPAGE="https://www.cacti.net/" -SRC_URI="https://www.cacti.net/downloads/${MY_P}.tar.gz" - -LICENSE="GPL-2" -KEYWORDS="alpha amd64 ~arm ~hppa ~ppc ~ppc64 sparc x86" -IUSE="snmp doc" - -need_httpd - -RDEPEND=" - dev-lang/php[cli,mysql,pdo,session,sockets,xml] - dev-php/adodb - net-analyzer/rrdtool[graph] - virtual/cron - virtual/mysql - snmp? ( >=net-analyzer/net-snmp-5.2.0 ) -" - -src_prepare() { - default - sed -i -e \ - 's:$config\["library_path"\] . "/adodb/adodb.inc.php":"adodb/adodb.inc.php":' \ - "${S}"/include/global.php || die - - rm -rf lib/adodb || die # don't use bundled adodb -} - -src_compile() { :; } - -src_install() { - dodoc docs/{CHANGELOG,txt/manual.txt} - dodoc -r docs/html/ - rm -rf docs - - webapp_src_preinst - - edos2unix `find -type f -name '*.php'` - - dodir ${MY_HTDOCSDIR} - cp -r . "${D}"${MY_HTDOCSDIR} - - webapp_serverowned ${MY_HTDOCSDIR}/rra - webapp_serverowned ${MY_HTDOCSDIR}/log - webapp_configfile ${MY_HTDOCSDIR}/include/config.php - webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt - - webapp_src_install -} diff --git a/net-analyzer/cacti/cacti-1.1.21.ebuild b/net-analyzer/cacti/cacti-1.1.21.ebuild deleted file mode 100644 index 7d51a73050c1..000000000000 --- a/net-analyzer/cacti/cacti-1.1.21.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit eutils webapp - -# Support for _p* in version. -MY_P=${P/_p*/} - -DESCRIPTION="Cacti is a complete frontend to rrdtool" -HOMEPAGE="https://www.cacti.net/" -SRC_URI="https://www.cacti.net/downloads/${MY_P}.tar.gz" - -LICENSE="GPL-2" -KEYWORDS="~alpha ~amd64 ~arm hppa ~ppc ~ppc64 ~sparc ~x86" -IUSE="snmp doc" - -need_httpd - -RDEPEND=" - dev-lang/php[cli,mysql,pdo,session,sockets,xml] - dev-php/adodb - net-analyzer/rrdtool[graph] - virtual/cron - virtual/mysql - snmp? ( >=net-analyzer/net-snmp-5.2.0 ) -" - -src_prepare() { - default - sed -i -e \ - 's:$config\["library_path"\] . "/adodb/adodb.inc.php":"adodb/adodb.inc.php":' \ - "${S}"/include/global.php || die - - rm -rf lib/adodb || die # don't use bundled adodb -} - -src_compile() { :; } - -src_install() { - dodoc docs/{CHANGELOG,txt/manual.txt} - dodoc -r docs/html/ - rm -rf docs - - webapp_src_preinst - - edos2unix `find -type f -name '*.php'` - - dodir ${MY_HTDOCSDIR} - cp -r . "${D}"${MY_HTDOCSDIR} - - webapp_serverowned ${MY_HTDOCSDIR}/rra - webapp_serverowned ${MY_HTDOCSDIR}/log - webapp_configfile ${MY_HTDOCSDIR}/include/config.php - webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt - - webapp_src_install -} diff --git a/net-analyzer/cacti/cacti-1.1.28.ebuild b/net-analyzer/cacti/cacti-1.1.28.ebuild deleted file mode 100644 index 921139358544..000000000000 --- a/net-analyzer/cacti/cacti-1.1.28.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit eutils webapp - -# Support for _p* in version. -MY_P=${P/_p*/} - -DESCRIPTION="Cacti is a complete frontend to rrdtool" -HOMEPAGE="https://www.cacti.net/" -SRC_URI="https://www.cacti.net/downloads/${MY_P}.tar.gz" - -LICENSE="GPL-2" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86" -IUSE="snmp doc" - -need_httpd - -RDEPEND=" - dev-lang/php[cli,mysql,pdo,session,sockets,xml] - dev-php/adodb - net-analyzer/rrdtool[graph] - virtual/cron - virtual/mysql - snmp? ( >=net-analyzer/net-snmp-5.2.0 ) -" - -src_compile() { :; } - -src_install() { - dodoc docs/{CHANGELOG,txt/manual.txt} - dodoc -r docs/html/ - rm -rf docs - - webapp_src_preinst - - edos2unix `find -type f -name '*.php'` - - dodir ${MY_HTDOCSDIR} - cp -r . "${D}"${MY_HTDOCSDIR} - - webapp_serverowned ${MY_HTDOCSDIR}/rra - webapp_serverowned ${MY_HTDOCSDIR}/log - webapp_configfile ${MY_HTDOCSDIR}/include/config.php - webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt - - webapp_src_install -} diff --git a/net-analyzer/fail2ban/fail2ban-0.10.4-r2.ebuild b/net-analyzer/fail2ban/fail2ban-0.10.4-r2.ebuild index f03ad9d38155..c44c1d21b5a9 100644 --- a/net-analyzer/fail2ban/fail2ban-0.10.4-r2.ebuild +++ b/net-analyzer/fail2ban/fail2ban-0.10.4-r2.ebuild @@ -66,7 +66,7 @@ python_install_all() { systemd_dotmpfilesd files/${PN}-tmpfiles.conf doman man/*.{1,5} - # Use INSTALL_MASK if you do not want to touch /etc/logrotate.d. + # Use INSTALL_MASK if you do not want to touch /etc/logrotate.d. # See http://thread.gmane.org/gmane.linux.gentoo.devel/35675 insinto /etc/logrotate.d newins files/${PN}-logrotate ${PN} @@ -101,7 +101,9 @@ pkg_postinst() { if ! has_version dev-lang/python[sqlite]; then elog "If you want to use ${PN}'s persistent database, then reinstall" - elog "dev-lang/python with USE=sqlite" + elog "dev-lang/python with USE=sqlite. If you do not use the" + elog "persistent database feature, then you should set" + elog "dbfile = :memory: in fail2ban.conf accordingly." fi if has_version sys-apps/systemd[-python]; then diff --git a/net-analyzer/fail2ban/fail2ban-99999999.ebuild b/net-analyzer/fail2ban/fail2ban-99999999.ebuild index 9dcaaf4be164..a3968f20f629 100644 --- a/net-analyzer/fail2ban/fail2ban-99999999.ebuild +++ b/net-analyzer/fail2ban/fail2ban-99999999.ebuild @@ -54,7 +54,7 @@ python_install_all() { systemd_dotmpfilesd files/${PN}-tmpfiles.conf doman man/*.{1,5} - # Use INSTALL_MASK if you do not want to touch /etc/logrotate.d. + # Use INSTALL_MASK if you do not want to touch /etc/logrotate.d. # See http://thread.gmane.org/gmane.linux.gentoo.devel/35675 insinto /etc/logrotate.d newins files/${PN}-logrotate ${PN} @@ -89,7 +89,9 @@ pkg_postinst() { if ! has_version dev-lang/python[sqlite]; then elog "If you want to use ${PN}'s persistent database, then reinstall" - elog "dev-lang/python with USE=sqlite" + elog "dev-lang/python with USE=sqlite. If you do not use the" + elog "persistent database feature, then you should set" + elog "dbfile = :memory: in fail2ban.conf accordingly." fi if has_version sys-apps/systemd[-python]; then diff --git a/net-analyzer/munin/Manifest b/net-analyzer/munin/Manifest index 815c31356b92..a3e4aea22d62 100644 --- a/net-analyzer/munin/Manifest +++ b/net-analyzer/munin/Manifest @@ -4,3 +4,5 @@ DIST munin-2.0.38-gentoo-1.tar.xz 5404 BLAKE2B d375c6a6c5bda768f83f701a9cf0236eb DIST munin-2.0.38.tar.gz 2253625 BLAKE2B 10e4c1f9fb846fd30491c00c5be19d627ae97b033a190cfa1d3a5def7455daf7c6cae741b08f3389b4508220eb2bda6b6afd7eddf620dbb745eecd9cbc3e7b08 SHA512 1139cd2ca765ba85fcf7cf37986fb0dd5423d976ae2943373ee4706f376a6f299f0c626912db318eb49e541054017c604725e6f9b0c1e9198530375a2db6eb05 DIST munin-2.0.43-gentoo-1.tar.xz 4288 BLAKE2B 4b8695c8800712d07474aac3057041c03c63226a7569895d8ff5587592d0d7cdfaf808675ecf08a47c1986a2d8f8cb220091ce680aa87e1e4b7b5f88c806b258 SHA512 ebcd44d9385c799514ac930790928052692ab0f71bc4a641899fa9b6458e083b7f16230a95f703c5b0e2848ab6879e79a1e77f165fcd880c91e4581aafa336aa DIST munin-2.0.43.tar.gz 2264931 BLAKE2B 92f2e13517a725303fe2569e65539b432822aa713c663a9974b9fba62db02a3606d0c56240e4e9d108a9f1aaa2ed3fcd9622387aa9b28eccc28356aee2e28777 SHA512 c01448e51aceafd8330e815c11fe63458768b48209edbffad983cffeff2b46f6eef8726792793485d491be9530dacb0bce11abeb2664e01541c73a77c9fd360c +DIST munin-2.0.47-gentoo-1.tar.xz 3980 BLAKE2B 5aae9c29befa761f797d362c90d810051a7f3a5dc8250776ab6ae1659197d795dfb87274db66ff0a3deb4e10e14ced5b3765551a3f29357c436968a848f450ea SHA512 b21d6590bb9e1da127066a06818f1f3157362762f80526e2231b926956959e62af575f38235f72326376dc21bba63f9767efa379f1f2558ca9b20ddf5395e851 +DIST munin-2.0.47.tar.gz 2257217 BLAKE2B 5b21c779487741ed505f77e07926d275741471a4dc699c8b8032bf008853c93757b7d0303773fbd76ec72dcf9185927a50517ca6d7744bd1020cdccd966cbb1b SHA512 63b292378576726886a606f089ef3b19073bba89b63768570d9f1e6d12c69d1dcded6b2b377fd53290443108023a01c9cc81b6fd2ea092259cdf5b116bff665a diff --git a/net-analyzer/munin/munin-2.0.47.ebuild b/net-analyzer/munin/munin-2.0.47.ebuild new file mode 100644 index 000000000000..d1c4dea964e8 --- /dev/null +++ b/net-analyzer/munin/munin-2.0.47.ebuild @@ -0,0 +1,416 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PATCHSET=1 + +inherit user java-pkg-opt-2 systemd + +MY_P=${P/_/-} + +DESCRIPTION="Munin Server Monitoring Tool" +HOMEPAGE="http://munin-monitoring.org/" +SRC_URI=" + https://github.com/munin-monitoring/munin/archive/${PV}.tar.gz -> ${P}.tar.gz + https://dev.gentoo.org/~graaff/munin/${P}-gentoo-${PATCHSET}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86" +IUSE="asterisk irc java ldap memcached minimal mysql postgres selinux ssl test cgi ipv6 syslog ipmi http dhcpd doc apache2" +REQUIRED_USE="cgi? ( !minimal ) apache2? ( cgi )" + +# Upstream's listing of required modules is NOT correct! +# Some of the postgres plugins use DBD::Pg, while others call psql directly. +# Some of the mysql plugins use DBD::mysql, while others call mysqladmin directly. +# We replace the original ipmi plugins with the freeipmi_ plugin which at least works. +DEPEND_COM=" + dev-lang/perl:=[berkdb] + dev-perl/DBI + dev-perl/Date-Manip + dev-perl/File-Copy-Recursive + dev-perl/List-MoreUtils + dev-perl/Log-Log4perl + dev-perl/Net-CIDR + dev-perl/Net-DNS + dev-perl/Net-Netmask + dev-perl/Net-SNMP + dev-perl/Net-Server[ipv6(-)?] + virtual/perl-Digest-MD5 + virtual/perl-Getopt-Long + virtual/perl-MIME-Base64 + virtual/perl-Storable + virtual/perl-Text-Balanced + virtual/perl-Time-HiRes + apache2? ( www-servers/apache[apache2_modules_cgi,apache2_modules_cgid,apache2_modules_rewrite] ) + asterisk? ( dev-perl/Net-Telnet ) + cgi? ( + dev-perl/FCGI + dev-perl/CGI-Fast + ) + dhcpd? ( + >=net-misc/dhcp-3[server] + dev-perl/Net-IP + dev-perl/HTTP-Date + ) + doc? ( dev-python/sphinx ) + http? ( dev-perl/libwww-perl ) + irc? ( dev-perl/Net-IRC ) + ldap? ( dev-perl/perl-ldap ) + kernel_linux? ( sys-process/procps ) + memcached? ( dev-perl/Cache-Memcached ) + mysql? ( + virtual/mysql + dev-perl/Cache-Cache + dev-perl/DBD-mysql + ) + postgres? ( dev-perl/DBD-Pg dev-db/postgresql:* ) + ssl? ( dev-perl/Net-SSLeay ) + syslog? ( virtual/perl-Sys-Syslog ) + !minimal? ( + dev-perl/HTML-Template + dev-perl/IO-Socket-INET6 + dev-perl/URI + >=net-analyzer/rrdtool-1.3[graph,perl] + virtual/ssh + ) + " + +# Keep this seperate, as previous versions have had other deps here +DEPEND="${DEPEND_COM} + dev-perl/Module-Build + java? ( >=virtual/jdk-1.5 ) + test? ( + dev-perl/Test-Deep + dev-perl/Test-Exception + dev-perl/Test-LongString + dev-perl/Test-Differences + dev-perl/Test-MockModule + dev-perl/Test-MockObject + dev-perl/File-Slurp + dev-perl/IO-stringy + dev-perl/IO-Socket-INET6 + )" +RDEPEND="${DEPEND_COM} + virtual/awk + ipmi? ( >=sys-libs/freeipmi-1.1.6-r1 ) + java? ( + >=virtual/jre-1.5 + net-analyzer/netcat + ) + !minimal? ( + virtual/cron + media-fonts/dejavu + ) + selinux? ( sec-policy/selinux-munin ) + ! RELEASE || die + + eapply "${WORKDIR}"/patches/*.patch + + eapply_user + + java-pkg-opt-2_src_prepare +} + +src_configure() { + local cgidir='$(DESTDIR)/usr/libexec/munin/cgi' + use cgi || cgidir="${T}/useless/cgi-bin" + + local cgiuser=$(usex apache2 apache munin) + + cat >> "${S}"/Makefile.config <<- EOF + PREFIX=\$(DESTDIR)/usr + CONFDIR=\$(DESTDIR)/etc/munin + DOCDIR=${T}/useless/doc + MANDIR=\$(PREFIX)/share/man + LIBDIR=\$(PREFIX)/libexec/munin + HTMLDIR=\$(DESTDIR)/var/www/localhost/htdocs/munin + CGIDIR=${cgidir} + CGITMPDIR=\$(DESTDIR)/var/cache/munin-cgi + CGIUSER=${cgiuser} + DBDIR=\$(DESTDIR)/var/lib/munin + DBDIRNODE=\$(DESTDIR)/var/lib/munin-node + SPOOLDIR=\$(DESTDIR)/var/spool/munin-async + LOGDIR=\$(DESTDIR)/var/log/munin + PERLSITELIB=$(perl -V:vendorlib | cut -d"'" -f2) + JCVALID=$(usex java yes no) + STATEDIR=\$(DESTDIR)/run/munin + EOF +} + +# parallel make and install need to be fixed before, and I haven't +# gotten around to do so yet. +src_compile() { + emake -j1 + use doc && emake -C doc html +} + +src_test() { + if [[ ${EUID} == 0 ]]; then + eerror "You cannot run tests as root." + eerror "Please enable FEATURES=userpriv before proceeding." + return 1 + fi + + local testtargets="test-common test-node test-plugins" + use minimal || testtargets+=" test-master" + + LC_ALL=C emake -j1 ${testtargets} +} + +src_install() { + local dirs=" + /var/log/munin + /var/lib/munin/plugin-state + /etc/munin/plugin-conf.d + /etc/munin/plugins" + use minimal || dirs+=" /etc/munin/munin-conf.d/" + + keepdir ${dirs} + fowners munin:munin ${dirs} + + # parallel install doesn't work and it's also pointless to have this + # run in parallel for now (because it uses internal loops). + emake -j1 DESTDIR="${D}" $(usex minimal "install-minimal install-man" install) + + # we remove /run from the install, as it's not the package's to deal + # with. + rm -rf "${D}"/run || die + + # remove the plugins for non-Gentoo package managers; use -f so that + # it doesn't fail when installing on non-Linux platforms. + rm -f "${D}"/usr/libexec/munin/plugins/{apt{,_all},yum} || die + + insinto /etc/munin/plugin-conf.d/ + newins "${FILESDIR}"/${PN}-1.3.2-plugins.conf munin-node + + newinitd "${FILESDIR}"/munin-node_init.d_2.0.19 munin-node + newconfd "${FILESDIR}"/munin-node_conf.d_1.4.6-r2 munin-node + + newinitd "${FILESDIR}"/munin-asyncd.init.2 munin-asyncd + + dodir /usr/lib/tmpfiles.d + cat > "${D}"/usr/lib/tmpfiles.d/${CATEGORY}:${PN}:${SLOT}.conf <<- EOF + d /run/munin 0700 munin munin - - + EOF + + systemd_dounit "${FILESDIR}"/munin-async.service + systemd_dounit "${FILESDIR}"/munin-graph.{service,socket} + systemd_dounit "${FILESDIR}"/munin-html.{service,socket} + systemd_dounit "${FILESDIR}"/munin-node.service + + cat >> "${T}"/munin.env <<- EOF + CONFIG_PROTECT=/var/spool/munin-async/.ssh + EOF + newenvd "${T}"/munin.env 50munin + + dodoc README ChangeLog INSTALL + if use doc; then + cd "${S}"/doc/_build/html || die + docinto html + dodoc -r * + cd "${S}" || die + fi + + dodir /etc/logrotate.d/ + sed -e "s:@CGIUSER@:$(usex apache2 apache munin):g" \ + "${FILESDIR}"/logrotate.d-munin.3 > "${D}"/etc/logrotate.d/munin + + dosym ipmi_ /usr/libexec/munin/plugins/ipmi_sensor_ + + if use syslog; then + sed -i -e '/log_file/s| .*| Sys::Syslog|' \ + "${D}"/etc/munin/munin-node.conf || die + fi + + # Use a simpler pid file to avoid trouble with /run in tmpfs. The + # munin-node service is ran as user root, and only later drops + # privileges. + sed -i -e 's:/run/munin/munin-node.pid:/run/munin-node.pid:' \ + "${D}"/etc/munin/munin-node.conf || die + + keepdir /var/spool/munin-async/.ssh + touch "${D}"/var/spool/munin-async/.ssh/authorized_keys + fowners munin-async:munin /var/spool/munin-async{,/.ssh/{,authorized_keys}} + fperms 0750 /var/spool/munin-async{,/.ssh} + fperms 0600 /var/spool/munin-async/.ssh/authorized_keys + + if use minimal; then + # This requires the presence of munin-update, which is part of + # the non-minimal install... + rm "${D}"/usr/libexec/munin/plugins/munin_stats + else + # remove font files so that we don't have to keep them around + rm "${D}"/usr/libexec/${PN}/*.ttf || die + + if use cgi; then + sed -i -e '/#graph_strategy cgi/s:^#::' "${D}"/etc/munin/munin.conf || die + + keepdir /var/cache/munin-cgi + touch "${D}"/var/log/munin/munin-cgi-{graph,html}.log + fowners $(usex apache2 apache munin) \ + /var/cache/munin-cgi \ + /var/log/munin/munin-cgi-{graph,html}.log + + if use apache2; then + insinto /etc/apache2/vhosts.d + newins "${FILESDIR}"/munin.apache.include munin.include + newins "${FILESDIR}"/munin.apache.include-2.4 munin-2.4.include + fi + else + sed \ + -e '/#graph_strategy cgi/s:#graph_strategy cgi:graph_strategy cron:' \ + -i "${D}"/etc/munin/munin.conf || die + fi + + keepdir /var/lib/munin/.ssh + cat >> "${D}"/var/lib/munin/.ssh/config <<- EOF + IdentityFile /var/lib/munin/.ssh/id_ecdsa + IdentityFile /var/lib/munin/.ssh/id_rsa + EOF + + fowners munin:munin /var/lib/munin/.ssh/{,config} + fperms go-rwx /var/lib/munin/.ssh/{,config} + + dodir /usr/share/${PN} + cat >> "${D}"/usr/share/${PN}/crontab <<- EOF + # Force the shell to bash + SHELL=/bin/bash + # Mail reports to root@, not munin@ + MAILTO=root + + # This runs the munin task every 5 minutes. + */5 * * * * /usr/bin/munin-cron + + # Alternatively, this route works differently + # Update once a minute (for busy sites) + #*/1 * * * * /usr/libexec/munin/munin-update + ## Check for limit excess every 2 minutes + #*/2 * * * * /usr/libexec/munin/munin-limits + ## Update graphs every 5 minutes + #*/5 * * * * nice /usr/libexec/munin/munin-graph + ## Update HTML pages every 15 minutes + #*/15 * * * * nice /usr/libexec/munin/munin-html + EOF + + cat >> "${D}"/usr/share/${PN}/fcrontab <<- EOF + # Mail reports to root@, not munin@, only execute one at a time + !mailto(root),serial(true) + + # This runs the munin task every 5 minutes. + @ 5 /usr/bin/munin-cron + + # Alternatively, this route works differently + # Update once a minute (for busy sites) + #@ 1 /usr/libexec/munin/munin-update + ## Check for limit excess every 2 minutes + #@ 2 /usr/libexec/munin/munin-limits + ## Update graphs every 5 minutes + #@ 5 nice /usr/libexec/munin/munin-graph + ## Update HTML pages every 15 minutes + #@ 15 nice /usr/libexec/munin/munin-html + EOF + + # remove .htaccess file + find "${D}" -name .htaccess -delete || die + fi +} + +pkg_config() { + if use minimal; then + einfo "Nothing to do." + return 0 + fi + + einfo "Press enter to install the default crontab for the munin master" + einfo "installation from /usr/share/${PN}/f?crontab" + einfo "If you have a large site, you may wish to customize it." + read + + ebegin "Setting up cron ..." + if has_version sys-process/fcron; then + fcrontab - -u munin < /usr/share/${PN}/fcrontab + else + # dcron is very fussy about syntax + # the following is the only form that works in BOTH dcron and vixie-cron + crontab - -u munin < /usr/share/${PN}/crontab + fi + eend $? + + einfo "Press enter to set up the SSH keys used for SSH transport" + read + + # generate one rsa (for legacy) and one ecdsa (for new systems) + ssh-keygen -t rsa \ + -f /var/lib/munin/.ssh/id_rsa -N '' \ + -C "created by portage for ${CATEGORY}/${PN}" || die + ssh-keygen -t ecdsa \ + -f /var/lib/munin/.ssh/id_ecdsa -N '' \ + -C "created by portage for ${CATEGORY}/${PN}" || die + chown -R munin:munin /var/lib/munin/.ssh || die + chmod 0600 /var/lib/munin/.ssh/id_{rsa,ecdsa} || die + + einfo "Your public keys are available in " + einfo " /var/lib/munin/.ssh/id_rsa.pub" + einfo " /var/lib/munin/.ssh/id_ecdsa.pub" + einfo "and follows for convenience" + echo + cat /var/lib/munin/.ssh/id_*.pub +} + +pkg_postinst() { + elog "Please follow the munin documentation to set up the plugins you" + elog "need, afterwards start munin-node." + elog "" + elog "To make use of munin-async, make sure to set up the corresponding" + elog "SSH key in /var/lib/munin-async/.ssh/authorized_keys" + elog "" + if ! use minimal; then + elog "Please run" + elog " emerge --config net-analyzer/munin" + elog "to automatically configure munin's cronjobs as well as generate" + elog "passwordless SSH keys to be used with munin-async." + fi + elog "" + elog "Further information about setting up Munin in Gentoo can be found" + elog "in the Gentoo Wiki: https://wiki.gentoo.org/wiki/Munin" + + if use cgi; then + chown $(usex apache2 apache munin) \ + "${ROOT}"/var/cache/munin-cgi \ + "${ROOT}"/var/log/munin/munin-cgi-{graph,html}.log + + if use apache2; then + elog "To use Munin with CGI you should include /etc/apache2/vhosts.d/munin.include" + elog "or /etc/apache2/vhosts.d/munin-2.4.include (for Apache 2.4) from the virtual" + elog "host you want it to be served." + elog "If you want to enable CGI-based HTML as well, you have to add to" + elog "/etc/conf.d/apache2 the option -D MUNIN_HTML_CGI." + else + elog "Effective CGI support has just been added in 2.0.7-r6." + elog "Documentation on how to use it is still sparse." + fi + fi + + # we create this here as we don't want Portage to check /run + # symlinks but we still need this to be present before the reboot. + if ! use minimal && ! [[ -d "${ROOT}"/run/munin ]]; then + mkdir "${ROOT}"/run/munin + chown munin:munin "${ROOT}"/run/munin + chmod 0700 "${ROOT}"/run/munin + fi +} diff --git a/net-analyzer/wireshark/wireshark-3.0.1.ebuild b/net-analyzer/wireshark/wireshark-3.0.1.ebuild index 8bf322bc5c8d..3e7cdc79b613 100644 --- a/net-analyzer/wireshark/wireshark-3.0.1.ebuild +++ b/net-analyzer/wireshark/wireshark-3.0.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="${HOMEPAGE}download/src/all-versions/${P/_/}.tar.xz" LICENSE="GPL-2" SLOT="0/${PV}" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc64 x86" +KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc64 x86" IUSE=" adns androiddump bcg729 +capinfos +captype ciscodump +dftest doc dpauxmon +dumpcap +editcap kerberos libxml2 lua lz4 maxminddb +mergecap +netlink diff --git a/net-dns/Manifest.gz b/net-dns/Manifest.gz index 66a112c7100e..8ed5f4f845a3 100644 Binary files a/net-dns/Manifest.gz and b/net-dns/Manifest.gz differ diff --git a/net-dns/dnssec-validator/Manifest b/net-dns/dnssec-validator/Manifest index 4a6ba91b3d6e..206db72518af 100644 --- a/net-dns/dnssec-validator/Manifest +++ b/net-dns/dnssec-validator/Manifest @@ -1 +1,2 @@ +DIST dnssec-tools-2.2.3.tar.gz 42941393 BLAKE2B b7b6a54113fb5cf030bd60e18f5446b02d1ceba3564ac854b0305225672545e802fecfa1169dc81e68ffe195533e06082dc22500a51b48965aa9c0fc32c915ed SHA512 fd2467f116f77089bddf9311706f356957f4ae735d827d393534e4001b621c9dfc904ff3d4da698d37e8e97b1be9448ab2fd5455c124656399aac30f1f642baf DIST dnsval-2.2.tar.gz 1060434 BLAKE2B 3a19d5f4128e32f81ae824a128c65b5c5b6f21cef2786d1050631db10084a479614241d869bb33d054d96e7a1e286c472296edf8c4c7e45abd84aaa4df599f28 SHA512 1a01911b08e447d992f4843db8e10bc91041f9e3eaa8a3c050f71f0d7028292145379d1b769e69a837a157443abfa8b0b8ecc289c1b2fa4d33a9234282e9ae05 diff --git a/net-dns/dnssec-validator/dnssec-validator-2.2.3.ebuild b/net-dns/dnssec-validator/dnssec-validator-2.2.3.ebuild new file mode 100644 index 000000000000..04606f66a6fb --- /dev/null +++ b/net-dns/dnssec-validator/dnssec-validator-2.2.3.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="Tools to ease the validation of DNSSEC related technologies" +HOMEPAGE="https://www.dnssec-tools.org/" +SRC_URI="https://github.com/DNSSEC-Tools/DNSSEC-Tools/archive/dnssec-tools-${PV}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="dlv +ipv6 +nsec3 static-libs +threads" + +RDEPEND=">=dev-libs/openssl-1.1.0:0" +DEPEND="${RDEPEND}" + +# Tests fail due "Cannot create context: -7" +RESTRICT="test" + +S="${WORKDIR}/DNSSEC-Tools-dnssec-tools-${PV}/dnssec-tools/validator" + +PATCHES=( + # Users LDFLAGS are not respected + # See https://github.com/DNSSEC-Tools/DNSSEC-Tools/pull/9 + "${FILESDIR}/${P}-ldflags.patch" +) + +src_prepare() { + default + + mv configure.in configure.ac || die + eautoreconf +} + +src_configure() { + local myeconfargs=( + $(use_with dlv) + $(use_with ipv6) + $(use_with nsec3) + $(use_enable static-libs static) + $(use_with threads) + --with-dnsval-conf="${EPREFIX%/}/etc/dnssec-tools/dnsval.conf" + --with-resolv-conf="${EPREFIX%/}/etc/dnssec-tools/resolv.conf" + --with-root-hints="${EPREFIX%/}/etc/dnssec-tools/root.hints" + ) + + econf "${myeconfargs[@]}" +} + +src_install() { + # Install fails with MAKEOPTS > -j1 + # See https://github.com/DNSSEC-Tools/DNSSEC-Tools/issues/8 + emake -j1 DESTDIR="${D}" install + + einstalldocs + + find "${D}" -name '*.la' -delete || die +} diff --git a/net-dns/dnssec-validator/files/dnssec-validator-2.2.3-ldflags.patch b/net-dns/dnssec-validator/files/dnssec-validator-2.2.3-ldflags.patch new file mode 100644 index 000000000000..66f8b0b49ee6 --- /dev/null +++ b/net-dns/dnssec-validator/files/dnssec-validator-2.2.3-ldflags.patch @@ -0,0 +1,33 @@ +--- a/libsres/Makefile.in 2018-08-30 00:25:30.000000000 +0200 ++++ b/libsres/Makefile.in 2018-12-09 02:32:05.000000000 +0100 +@@ -63,7 +63,7 @@ + $(RM) -rf $(LT_DIR) + + $(LIBRES): $(LOBJ) +- $(LIBTOOLLD) -o $@ $(LOBJ) ++ $(LIBTOOLLD) -o $@ $(LOBJ) $(LDFLAGS) + + install: + $(MKPATH) $(DESTDIR)$(libdir) +--- a/libval_shim/Makefile.in 2018-08-30 00:25:30.000000000 +0200 ++++ b/libval_shim/Makefile.in 2018-12-09 02:34:56.000000000 +0100 +@@ -21,7 +21,7 @@ + $(RM) -rf $(LT_DIR) + + $(LIBVAL_SHIM): $(LOBJ) +- $(LIBTOOLLD) -o $@ $(LOBJ) $(EXTRA_LIBS) ++ $(LIBTOOLLD) -o $@ $(LOBJ) $(EXTRA_LIBS) $(LDFLAGS) + + install: + $(MKPATH) $(DESTDIR)$(libdir) +--- a/libval/Makefile.in 2018-08-30 00:25:30.000000000 +0200 ++++ b/libval/Makefile.in 2018-12-09 02:37:32.000000000 +0100 +@@ -65,7 +65,7 @@ + $(RM) -rf $(LT_DIR) + + $(LIBVAL): $(LOBJ) +- $(LIBTOOLLD) -o $@ $(LOBJ) $(LSRES) ++ $(LIBTOOLLD) -o $@ $(LOBJ) $(LSRES) $(LDFLAGS) + + install: + $(MKPATH) $(DESTDIR)$(libdir) diff --git a/net-dns/dnssec-validator/metadata.xml b/net-dns/dnssec-validator/metadata.xml index 7206094d0b09..94a38b12e8db 100644 --- a/net-dns/dnssec-validator/metadata.xml +++ b/net-dns/dnssec-validator/metadata.xml @@ -1,8 +1,26 @@ - - - Requires openssl[-bindist] - + + ck+gentoo@bl4ckb0x.de + Conrad Kostecki + + + proxy-maint@gentoo.org + Proxy Maintainers + + + A tool which can display the sequence of queries and their results + used to validate a DNS query. The stderr output of this command can + serve as input to the drawvalmap tool. + + + Enable support for the DNSSEC look-aside validation + Requires openssl[-bindist] + Enable support for the NSEC3 Resource Record + + + https://github.com/dnssec-tools/dnssec-tools/issues + DNSSEC-Tools/DNSSEC-Tools + diff --git a/net-fs/Manifest.gz b/net-fs/Manifest.gz index 7b9a79b42f9f..6096ce7e876b 100644 Binary files a/net-fs/Manifest.gz and b/net-fs/Manifest.gz differ diff --git a/net-fs/nfs-utils/files/nfs-utils-2.3.1-limits.patch b/net-fs/nfs-utils/files/nfs-utils-2.3.1-limits.patch new file mode 100644 index 000000000000..b322b6fb17ce --- /dev/null +++ b/net-fs/nfs-utils/files/nfs-utils-2.3.1-limits.patch @@ -0,0 +1,105 @@ +Required for successful build on musl +https://bugs.gentoo.org/651080#c5 + +Thanks-to: Robert Bridge + +--- nfs-utils-2.3.1/support/export/export.c ++++ nfs-utils-2.3.1/support/export/export.c +@@ -17,6 +17,7 @@ + #include + #include + #include ++#include + #include "xmalloc.h" + #include "nfslib.h" + #include "exportfs.h" +--- nfs-utils-2.3.1/support/export/xtab.c ++++ nfs-utils-2.3.1/support/export/xtab.c +@@ -18,6 +18,7 @@ + #include + #include + #include ++#include + + #include "nfslib.h" + #include "exportfs.h" +--- nfs-utils-2.3.1/support/misc/file.c ++++ nfs-utils-2.3.1/support/misc/file.c +@@ -27,6 +27,7 @@ + #include + #include + #include ++#include + + #include "xlog.h" + #include "misc.h" +--- nfs-utils-2.3.1/support/nfs/xcommon.c ++++ nfs-utils-2.3.1/support/nfs/xcommon.c +@@ -16,6 +16,7 @@ + #include + #include + #include ++#include + + #include "xcommon.h" + #include "nls.h" /* _() */ +--- nfs-utils-2.3.1/support/nsm/file.c ++++ nfs-utils-2.3.1/support/nsm/file.c +@@ -85,6 +85,7 @@ + #include + #include + #include ++#include + + #include "xlog.h" + #include "nsm.h" +--- nfs-utils-2.3.1/utils/blkmapd/device-discovery.c ++++ nfs-utils-2.3.1/utils/blkmapd/device-discovery.c +@@ -49,6 +49,7 @@ + #include + #include + #include ++#include + #include + + #ifdef HAVE_CONFIG_H +--- nfs-utils-2.3.1/utils/gssd/krb5_util.c ++++ nfs-utils-2.3.1/utils/gssd/krb5_util.c +@@ -120,6 +120,7 @@ + #endif + #include + #include ++#include + + #include "gssd.h" + #include "err_util.h" +--- nfs-utils-2.3.1/utils/mountd/cache.c ++++ nfs-utils-2.3.1/utils/mountd/cache.c +@@ -26,6 +26,7 @@ + #include + #include + #include ++#include + #include "misc.h" + #include "nfslib.h" + #include "exportfs.h" +--- nfs-utils-2.3.1/utils/mountd/mountd.c ++++ nfs-utils-2.3.1/utils/mountd/mountd.c +@@ -22,6 +22,7 @@ + #include + #include + #include ++#include + + #include "conffile.h" + #include "xmalloc.h" +--- nfs-utils-2.3.1/utils/mountd/rmtab.c ++++ nfs-utils-2.3.1/utils/mountd/rmtab.c +@@ -16,6 +16,7 @@ + #include + #include + #include ++#include + + #include "misc.h" + #include "exportfs.h" diff --git a/net-fs/nfs-utils/files/nfs-utils-2.3.4_rc2-improved_res_querydomain_check.patch b/net-fs/nfs-utils/files/nfs-utils-2.3.4_rc2-improved_res_querydomain_check.patch new file mode 100644 index 000000000000..787a96fe89d8 --- /dev/null +++ b/net-fs/nfs-utils/files/nfs-utils-2.3.4_rc2-improved_res_querydomain_check.patch @@ -0,0 +1,41 @@ +From 4f91877bb313a35ade44d9dde1fd219035ba1fd9 Mon Sep 17 00:00:00 2001 +From: Patrick Steinhardt +Date: Wed, 27 Feb 2019 11:58:47 -0500 +Subject: [PATCH] configure.ac: more carefully detect availability of + res_querydomain(3) + +Since glibc 2.2, the function res_querydomain(3) is implemented as a +define to `__res_querydomain`. Due to this implementation detail, using +`AC_CHECK_LIB` with a symbol name of "res_querydomain" will cause a +linking failure and thus fail to detect its availability. This is why +right now, we try to detect availability of `__res_querydomain` instead. + +Unfortunately, this may break on other platforms where there is no +`__res_querydomain` but only the function without leading underscores. +To fix this, we can perform another `AC_CHECK_LIB([resolv], +[res_querydomain], ...)` call in case where the other one was not found +and only raise an error if both symbols weren't found. + +Signed-off-by: Patrick Steinhardt +Signed-off-by: Steve Dickson +--- + configure.ac | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/configure.ac b/configure.ac +index 4bf5aea..cb9d921 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -411,7 +411,8 @@ if test "$enable_gss" = yes; then + fi + + dnl libdnsidmap specific checks +-AC_CHECK_LIB([resolv], [__res_querydomain], , AC_MSG_ERROR(res_querydomain needed)) ++AC_CHECK_LIB([resolv], [__res_querydomain], , ++ AC_CHECK_LIB([resolv], [res_querydomain], , AC_MSG_ERROR(res_querydomain needed))) + + AC_ARG_ENABLE([ldap], + [AS_HELP_STRING([--disable-ldap],[Disable support for LDAP @<:default=detect@:>@])]) +-- +1.8.3.1 + diff --git a/net-fs/nfs-utils/nfs-utils-2.3.3.ebuild b/net-fs/nfs-utils/nfs-utils-2.3.3.ebuild index be66fe1e765d..07216af6e213 100644 --- a/net-fs/nfs-utils/nfs-utils-2.3.3.ebuild +++ b/net-fs/nfs-utils/nfs-utils-2.3.3.ebuild @@ -68,6 +68,8 @@ PATCHES=( "${FILESDIR}"/${PN}-1.2.8-cross-build.patch "${FILESDIR}"/${PN}-2.3.2-junction_libs.patch "${FILESDIR}"/${PN}-2.3.2-no-werror.patch + "${FILESDIR}"/${PN}-2.3.1-limits.patch #651080 + "${FILESDIR}"/${PN}-2.3.4_rc2-improved_res_querydomain_check.patch #651080 ) src_prepare() { diff --git a/net-ftp/Manifest.gz b/net-ftp/Manifest.gz index a574edac2420..4be9790b6190 100644 Binary files a/net-ftp/Manifest.gz and b/net-ftp/Manifest.gz differ diff --git a/net-ftp/proftpd/proftpd-1.3.6-r3.ebuild b/net-ftp/proftpd/proftpd-1.3.6-r3.ebuild index deef56383932..da2fff59e8be 100644 --- a/net-ftp/proftpd/proftpd-1.3.6-r3.ebuild +++ b/net-ftp/proftpd/proftpd-1.3.6-r3.ebuild @@ -26,7 +26,7 @@ SRC_URI="ftp://ftp.proftpd.org/distrib/source/${P/_/}.tar.gz LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd" IUSE="acl authfile ban +caps case clamav copy ctrls deflate diskuse doc dso dynmasq exec ifsession ifversion ident ipv6 kerberos ldap libressl log_forensic memcache msg mysql ncurses nls pam +pcre postgres qos radius ratio readme rewrite selinux sftp shaper sitemisc snmp sodium softquota sqlite ssl tcpd test unique_id vroot xinetd" diff --git a/net-libs/Manifest.gz b/net-libs/Manifest.gz index 4344976c0b14..dcedc62a8b9b 100644 Binary files a/net-libs/Manifest.gz and b/net-libs/Manifest.gz differ diff --git a/net-libs/gsoap/Manifest b/net-libs/gsoap/Manifest index fba6b8358903..3c4a10fa6835 100644 --- a/net-libs/gsoap/Manifest +++ b/net-libs/gsoap/Manifest @@ -1,3 +1,3 @@ DIST gsoap_2.8.70.zip 32695627 BLAKE2B 6d803441804badf06b29cee8ca898dc864b9a0388f6f3fa58b84c1b237d77e22ab70e0cc5439915c715bdba7831b14f86d8003e1338b6184ddbfe845bb76ff75 SHA512 f7e9f85580c19bb390f1310bb47b690a5788b54c1e12c6fc0d9166039a84ae24ec5d3268cb67cd72b20e2eaa78689e175b975f07da44fd20e172a77ef37f4ae7 -DIST gsoap_2.8.80.zip 32686918 BLAKE2B 63a49b09696be0eb7318233bc3df1f44b118a238a206cf25a47bfbdb1d60ad08cc0eb5c24c6d0952e72bfcc850d3780c56e09153a935450aec3c543c9ef2dc79 SHA512 7018f9904d6b3cd5f0d6dacdd03e399fa01df450ec37a4fd29988657b639b86027da62ffc8b03b79a05547e80250fb974b56784fb57e4583899bc8c1958aa8e1 DIST gsoap_2.8.82.zip 32514214 BLAKE2B 4945fc9e8c6fcbf364235c31aaf5eff5546b4f927a69cc973ba9e855a97ba2e40af2823448c2ea7d371aafea3ea6f6a71cc2d0527049fea53a2d6e1bbeecceec SHA512 daf6a1870fe43beb20d0faf646b171c92629885708baabea5bbce79fa5a8030f014dbe5c0bf4024031df993dd3ed3a90449db813946cfdfa9c12318096b57eec +DIST gsoap_2.8.83.zip 32703770 BLAKE2B 1750a25bcd38c020c83d644395e9b3ac3e0c1080fb82f26b11ea0d0beea98c7dc8f3f24a77e093c6ac7e3598d416430990105eeb93e565809844825e1e937ec1 SHA512 7f4ae6feea26ec2d0e970e77cf476a0049c2e3fe47feba4e3b3b57239e7ae0016c409a74d3e865e56d2c01a8098be282d74a33c686d177d203cb8c2dff6bc407 diff --git a/net-libs/gsoap/gsoap-2.8.80.ebuild b/net-libs/gsoap/gsoap-2.8.83.ebuild similarity index 100% rename from net-libs/gsoap/gsoap-2.8.80.ebuild rename to net-libs/gsoap/gsoap-2.8.83.ebuild diff --git a/net-libs/libesmtp/libesmtp-1.0.6-r3.ebuild b/net-libs/libesmtp/libesmtp-1.0.6-r3.ebuild index 4b76b6257c62..cc403587ddc4 100644 --- a/net-libs/libesmtp/libesmtp-1.0.6-r3.ebuild +++ b/net-libs/libesmtp/libesmtp-1.0.6-r3.ebuild @@ -10,7 +10,7 @@ SRC_URI="http://brianstafford.info/${PN}/${P}.tar.bz2" LICENSE="LGPL-2.1 GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~x86-macos" +KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux ~x86-macos" IUSE="debug libressl ntlm ssl static-libs threads" RDEPEND=" diff --git a/net-libs/libupnpp/Manifest b/net-libs/libupnpp/Manifest index 472430818ccb..956c3d6028c5 100644 --- a/net-libs/libupnpp/Manifest +++ b/net-libs/libupnpp/Manifest @@ -1,2 +1 @@ -DIST libupnpp-0.16.1.tar.gz 470523 BLAKE2B f587633e796c34ed38c35559c935a7f1f4b6042f69d5cc76f268312b0a871988ee5521fba2de125a50c0067d4a5674850eb7d01cb36ed62c0f2b17267a1b3ad8 SHA512 c63eb8ab8a76b7e161625631bee645e7a1f8d779ea6b16ed0bbf43d0972e8875613f04dbf44cd43796273f7b20b4fa71b791d10867c6d220f0d78c15c016c275 DIST libupnpp-0.17.0.tar.gz 475725 BLAKE2B 568ead87791db1a41a4e5f93280cc8560336516cf676e1b64c35d0835579501ba61b75ee41e1dd1e58024d771f6f077c3c85515929be1c059a51ca314756fbfb SHA512 da7ef2453a8fad1e226c6252a84d76bf874128d306d4f9ca53e77e64734d113f3ad6dcd79549b2fe2a3cfab22243b5dceb1b7bd1fffeb512ed996b8fc680667e diff --git a/net-libs/libupnpp/libupnpp-0.16.1.ebuild b/net-libs/libupnpp/libupnpp-0.16.1.ebuild deleted file mode 100644 index 86d95189100c..000000000000 --- a/net-libs/libupnpp/libupnpp-0.16.1.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -DESCRIPTION="The libupnpp C++ library wraps libupnp for easier use by upmpdcli and upplay" -HOMEPAGE="https://www.lesbonscomptes.com/upmpdcli" -SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64" - -# Unfortunatetly I receive segfaults from upmpcli on any newer version -DEPEND=" - dev-libs/expat - =dev-ruby/delayer-deferred-2.0 + >=dev-ruby/diva-0.3.2 + dev-ruby/httpclient + dev-ruby/json:0 + dev-ruby/instance_storage + dev-ruby/memoist + dev-ruby/moneta + dev-ruby/nokogiri + >=dev-ruby/oauth-0.5.1 + >=dev-ruby/pluggaloid-1.1.1 + dev-ruby/rcairo + >=dev-ruby/ruby-gettext-3.2.9 + >=dev-ruby/ruby-gtk2-3.3.0 + >dev-ruby/ruby-hmac-0.4 + dev-ruby/totoridipjp + dev-ruby/twitter-text:= + >dev-ruby/typed-array-0.1 + virtual/ruby-ssl" + +all_ruby_unpack() { + if [ "${PV}" = "9999" ];then + git-3_src_unpack + else + default + fi +} + +all_ruby_install() { + local rubyversion + + if use ruby_targets_ruby25; then + rubyversion=ruby25 + elif use ruby_targets_ruby24; then + rubyversion=ruby24 + fi + + exeinto /usr/share/mikutter + doexe mikutter.rb + insinto /usr/share/mikutter + doins -r core plugin + sed -e "s/ruby19/${rubyversion}/" "${FILESDIR}"/mikutter \ + | newbin - mikutter + dodoc README + make_desktop_entry mikutter Mikutter \ + /usr/share/mikutter/core/skin/data/icon.png + + insinto /usr/share/mikutter/plugin/twitter_api_keys + newins "${DISTDIR}"/twitter_api_keys.rb twitter_api_keys.rb.in +} + +pkg_postinst() { + echo + elog "To use Twitter, you need to setup your Consumer Key/Consumer Secret by running" + elog " emerge --config =${PF}" +} + +pkg_config() { + local PLUGIN_DIR="${EROOT}"/usr/share/mikutter/plugin + local CK CS + + echo + einfon "Please input your Consumer Key for Twitter: " + read -r CK + + echo + einfon "Please input your Consumer Secret for Twitter: " + read -r CS + + if [ -z "${CK}" -o -z "${CS}" ]; then + eerror "Consumer Key or Consumer Secret is missing." + return + fi + + sed -e "/consumer_key = /s!''!'${CK}'!" \ + -e "/consumer_secret = /s!''!'${CS}'!" \ + ${PLUGIN_DIR}/twitter_api_keys/twitter_api_keys.rb.in > \ + ${PLUGIN_DIR}/twitter_api_keys/twitter_api_keys.rb + + echo + einfo "Consuker Key/Consumer secret is set." +} diff --git a/net-misc/mikutter/mikutter-9999.ebuild b/net-misc/mikutter/mikutter-9999.ebuild index 04d1acc69b11..06d5346485a6 100644 --- a/net-misc/mikutter/mikutter-9999.ebuild +++ b/net-misc/mikutter/mikutter-9999.ebuild @@ -1,20 +1,25 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 -USE_RUBY="ruby22 ruby23" +USE_RUBY="ruby24 ruby25" inherit eutils ruby-ng +PLUGIN_HASH="30071c3008e4616e723cf4e734fc79254019af09" + if [ "${PV}" = "9999" ]; then - EGIT_REPO_URI="git://toshia.dip.jp/mikutter.git" - inherit git-2 + EGIT_REPO_URI="git://toshia.dip.jp/mikutter.git + https://github.com/toshia/twitter_api_keys.git" + inherit git-r3 + SRC_URI="https://raw.githubusercontent.com/toshia/twitter_api_keys/${PLUGIN_HASH}/twitter_api_keys.rb" KEYWORDS="" - EGIT_SOURCEDIR="${WORKDIR}/all" + EGIT_CHECKOUT_DIR="${WORKDIR}/all" else MY_P="${PN}.${PV}" - SRC_URI="http://mikutter.hachune.net/bin/${MY_P}.tar.gz" + SRC_URI="http://mikutter.hachune.net/bin/${MY_P}.tar.gz + https://raw.githubusercontent.com/toshia/twitter_api_keys/${PLUGIN_HASH}/twitter_api_keys.rb" KEYWORDS="~amd64" RUBY_S="${PN}" fi @@ -31,41 +36,42 @@ RDEPEND=" libnotify? ( x11-libs/libnotify ) media-sound/alsa-utils" -ruby_add_rdepend "dev-ruby/addressable +ruby_add_rdepend "=dev-ruby/delayer-deferred-2.0 + >=dev-ruby/diva-0.3.2 dev-ruby/httpclient dev-ruby/json:0 dev-ruby/instance_storage dev-ruby/memoist - >=dev-ruby/moneta-0.7 + dev-ruby/moneta dev-ruby/nokogiri - >=dev-ruby/oauth-0.4.7 - dev-ruby/pluggaloid + >=dev-ruby/oauth-0.5.1 + >=dev-ruby/pluggaloid-1.1.1 dev-ruby/rcairo - >=dev-ruby/ruby-gettext-3.0.1 - >=dev-ruby/ruby-gtk2-2.2.0 - dev-ruby/ruby-hmac + >=dev-ruby/ruby-gettext-3.2.9 + >=dev-ruby/ruby-gtk2-3.3.0 + >dev-ruby/ruby-hmac-0.4 dev-ruby/totoridipjp - dev-ruby/twitter-text - dev-ruby/typed-array + dev-ruby/twitter-text:= + >dev-ruby/typed-array-0.1 virtual/ruby-ssl" all_ruby_unpack() { if [ "${PV}" = "9999" ];then - git-2_src_unpack + git-3_src_unpack else default fi } -each_ruby_install() { +all_ruby_install() { local rubyversion - if use ruby_targets_ruby23; then - rubyversion=ruby23 - elif use ruby_targets_ruby22; then - rubyversion=ruby22 + if use ruby_targets_ruby25; then + rubyversion=ruby25 + elif use ruby_targets_ruby24; then + rubyversion=ruby24 fi exeinto /usr/share/mikutter @@ -77,4 +83,39 @@ each_ruby_install() { dodoc README make_desktop_entry mikutter Mikutter \ /usr/share/mikutter/core/skin/data/icon.png + + insinto /usr/share/mikutter/plugin/twitter_api_keys + newins "${DISTDIR}"/twitter_api_keys.rb twitter_api_keys.rb.in +} + +pkg_postinst() { + echo + elog "To use Twitter, you need to setup your Consumer Key/Consumer Secret by running" + elog " emerge --config =${PF}" +} + +pkg_config() { + local PLUGIN_DIR="${EROOT}"/usr/share/mikutter/plugin + local CK CS + + echo + einfon "Please input your Consumer Key for Twitter: " + read -r CK + + echo + einfon "Please input your Consumer Secret for Twitter: " + read -r CS + + if [ -z "${CK}" -o -z "${CS}" ]; then + eerror "Consumer Key or Consumer Secret is missing." + return + fi + + sed -e "/consumer_key = /s!''!'${CK}'!" \ + -e "/consumer_secret = /s!''!'${CS}'!" \ + ${PLUGIN_DIR}/twitter_api_keys/twitter_api_keys.rb.in > \ + ${PLUGIN_DIR}/twitter_api_keys/twitter_api_keys.rb + + echo + einfo "Consuker Key/Consumer secret is set." } diff --git a/net-misc/wget/wget-1.20.3.ebuild b/net-misc/wget/wget-1.20.3.ebuild index 858a69d5d928..cc673370700a 100644 --- a/net-misc/wget/wget-1.20.3.ebuild +++ b/net-misc/wget/wget-1.20.3.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://gnu/wget/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="debug gnutls idn ipv6 libressl nls ntlm pcre +ssl static test uuid zlib" REQUIRED_USE=" ntlm? ( !gnutls ssl ) gnutls? ( ssl )" diff --git a/net-misc/zerotier/zerotier-1.2.12.ebuild b/net-misc/zerotier/zerotier-1.2.12.ebuild index fa68ddc1c4f2..6f5351d0790d 100644 --- a/net-misc/zerotier/zerotier-1.2.12.ebuild +++ b/net-misc/zerotier/zerotier-1.2.12.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 @@ -11,7 +11,7 @@ SRC_URI="https://github.com/zerotier/ZeroTierOne/archive/${PV}.tar.gz -> ${P}.ta LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" S="${WORKDIR}/ZeroTierOne-${PV}" diff --git a/net-nds/Manifest.gz b/net-nds/Manifest.gz index 5d455a6d5ba0..e4e07bed4bbc 100644 Binary files a/net-nds/Manifest.gz and b/net-nds/Manifest.gz differ diff --git a/net-nds/gss-proxy/Manifest b/net-nds/gss-proxy/Manifest index 9dbb012d4b3e..78f367107f32 100644 --- a/net-nds/gss-proxy/Manifest +++ b/net-nds/gss-proxy/Manifest @@ -1,2 +1,3 @@ DIST gssproxy-0.7.0.tar.gz 552041 BLAKE2B 78ec58e151c801ea65e01bf12ac38591442073eef051302afbbd8c11e20c753ae481542a9cdaeb321551ac1ba14be5875b5dc0f9514a0d436bc28e71a5d28c9e SHA512 00cd1d05e12f93f81c11062ccf4950e521960f752a6121f2055e47294a51894eda2415c558d3bc0d4c496146ab8f82a1162328acfb5eb3405c7b116774fa9f89 DIST gssproxy-0.8.0.tar.gz 557386 BLAKE2B 14948bbd4c08834375ed00d9f9c6624797eadef3a4313af55a3f3cc9fa3133627ed11da97c1414caa1731ef6da1286dbc1e1c41af8e6c4f96dd42e5b0b2b69e6 SHA512 f3b8f053d6750d7ee6ab2bfb6bfc4dc1ac2e2f354f923590340bb3c522f57cc881df5a2850750bc00c0dcacf2ae173549dc3bb9ece4512cf2f39869527afc2ec +DIST gssproxy-0.8.2.tar.gz 563300 BLAKE2B 104637af6f43d118ef5194ee8bdfd0a8a8155df43691ac80394de0482f718f2672996b698a80d5c4db7bdc1b164be7f8dc6ffd9a5346affd5923b78362f10333 SHA512 68ce39b36ee83d77da19e9a9fb322ba901366999828a2b427bc2275c4187b4d2291de140c202cce02bdf53eb5cf64da2fafa022ea482258c102f28b0af5d7c63 diff --git a/net-nds/gss-proxy/gss-proxy-0.8.2.ebuild b/net-nds/gss-proxy/gss-proxy-0.8.2.ebuild new file mode 100644 index 000000000000..b10d6301494f --- /dev/null +++ b/net-nds/gss-proxy/gss-proxy-0.8.2.ebuild @@ -0,0 +1,89 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +MY_P="${PN/-}-${PV}" + +DESCRIPTION="daemon to proxy GSSAPI context establishment and channel handling" +HOMEPAGE="https://pagure.io/gssproxy" +SRC_URI="http://releases.pagure.org/gssproxy/${MY_P}.tar.gz" + +LICENSE="BSD-1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="debug selinux systemd hardened" + +COMMON_DEPEND=">=dev-libs/libverto-0.2.2 + >=dev-libs/ding-libs-0.6.1 + virtual/krb5 + selinux? ( sys-libs/libselinux )" +RDEPEND="${COMMON_DEPEND} + selinux? ( sec-policy/selinux-gssproxy )" +# We need xml stuff to build the man pages, and people really want/need +# the man pages for this package :). #585200 +DEPEND="${COMMON_DEPEND} + app-text/docbook-xml-dtd:4.4 + dev-libs/libxslt + virtual/pkgconfig" + +S="${WORKDIR}/${MY_P}" + +# Many requirements to run tests, including running slapd as root, hence +# unfeasible. +RESTRICT="test" + +# pkg_setup() { +# # Here instead of flag-logic in DEPEND, since virtual/krb5 does not +# # allow to specify the openldap use flag, which heimdal doesn't +# # support. +# # Using mit-krb5 explicitly because heimdal doesn't install kerberos +# # schemata required for the tests of gss-proxy. +# if use test && ! has_version "app-crypt/mit-krb5[openldap]"; then +# eerror "Tests of this package require the kerberos schemata installed from app-crypt/mit-krb5[openldap]." +# die "Tests enabled but no app-crypt/mit-krb5[openldap] being installed." +# fi +# } + +# Was required in 0.7.0 to fix the schema- and slapd-path. Reason for +# comment: see RESTRICT comment +# src_prepare() { +# default +# # The tests look for kerberos schemata in the documentation +# # directory of krb5, however these are installed in /etc/openldap +# # and only if the openldap useflag is supplied +# sed -i \ +# -e 's#/usr/share/doc/krb5-server-ldap*#/etc/openldap/schema#' \ +# -e "s#\(subprocess.Popen..\"\)slapd#\1/usr/$(get_libdir)/openldap/slapd#" \ +# "${S}/tests/testlib.py" || die +# } + +src_configure() { + local myeconfargs=( + # The build assumes localstatedir is /var and takes care of + # using all the right subdirs itself. + "--localstatedir=${EPREFIX}/var" + "--with-os=gentoo" + "--with-initscript=$(usex systemd systemd none)" + "$(use_with selinux)" + "$(use_with debug gssidebug)" + "$(use_with hardened hardening)" + ) + + econf "${myeconfargs[@]}" +} + +src_install() { + default + # This is a plugin module, so no need for la file. + find "${ED%/}"/usr -name proxymech.la -delete + + doinitd "${FILESDIR}"/gssproxy + insinto /etc/gssproxy + doins examples/*.conf + insinto /etc/gss/mech.d + newins examples/mech gssproxy.conf + + # The build installs a bunch of empty dirs, so prune them. + find "${ED}" -depth -type d -empty -delete || die +} diff --git a/profiles/Manifest.gz b/profiles/Manifest.gz index eb9ea70d5022..0f79408826ed 100644 Binary files a/profiles/Manifest.gz and b/profiles/Manifest.gz differ diff --git a/profiles/arch/arm/use.stable.mask b/profiles/arch/arm/use.stable.mask index 89f0809db8d7..120f9a73381f 100644 --- a/profiles/arch/arm/use.stable.mask +++ b/profiles/arch/arm/use.stable.mask @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # This file requires eapi 5 or later. New entries go on top. @@ -13,10 +13,6 @@ python_single_target_python3_7 # Not stable, bug #642822 qt5 -# Michael Palimaka (03 Jun 2017) -# Not yet stable. -elogind - # Andrey Grozin (16 May 2014) # No stable gcl gcl diff --git a/profiles/arch/arm64/package.use.stable.mask b/profiles/arch/arm64/package.use.stable.mask index c40c70e99e31..265ff6adef56 100644 --- a/profiles/arch/arm64/package.use.stable.mask +++ b/profiles/arch/arm64/package.use.stable.mask @@ -68,7 +68,7 @@ app-portage/layman cvs subversion test app-text/xmlto latex dev-libs/apr-util freetds odbc sys-apps/man-pages l10n_fr -sys-apps/systemd cryptsetup policykit qrcode +sys-apps/systemd cryptsetup qrcode sys-auth/pambase pam_krb5 pam_ssh passwdqc sys-block/thin-provisioning-tools test sys-devel/distcc gssapi diff --git a/profiles/arch/arm64/use.stable.mask b/profiles/arch/arm64/use.stable.mask index 6b4e46c27d93..e56a98f53154 100644 --- a/profiles/arch/arm64/use.stable.mask +++ b/profiles/arch/arm64/use.stable.mask @@ -8,10 +8,6 @@ # sys-auth/consolekit will not be stabilised anymore. consolekit -# Andreas Sturmlechner (31 Mar 2019) -# sys-auth/elogind not stable yet. bug #682158 -elogind - # Mart Raudsepp (07 Feb 2019) # app-misc/tracker not stable yet tracker diff --git a/profiles/arch/x86-fbsd/package.use.mask b/profiles/arch/x86-fbsd/package.use.mask index 8d7639315abc..ce7eafff58fd 100644 --- a/profiles/arch/x86-fbsd/package.use.mask +++ b/profiles/arch/x86-fbsd/package.use.mask @@ -42,10 +42,6 @@ dev-qt/qtchooser test # Missing keyword on dev-libs/botan app-crypt/qca botan -# Justin Lecher (18 Mar 2010) -# Unkeyworded deps -net-im/gajim kde - # Alexandre Rostovtsev (09 Jan 2012) # jsc JIT compilation is supported only on amd64/arm/x86 and their prefixes, so # it's masked in base profile and unmasked here (bug #396313). diff --git a/profiles/features/selinux/package.mask b/profiles/features/selinux/package.mask index 3c3e2d5da570..84625d6e2367 100644 --- a/profiles/features/selinux/package.mask +++ b/profiles/features/selinux/package.mask @@ -28,6 +28,7 @@ gnome-extra/gnome-logs gnome-extra/gnome-shell-extensions gnome-extra/gnome-shell-frippery gnome-extra/gnome-shell-extensions-topicons-plus +gnome-extra/gnome-shell-extension-applications-overview-tooltip gnome-extra/gnome-shell-extension-dash-to-panel gnome-extra/gnome-shell-extension-desktop-icons gnome-extra/gnome-shell-extension-gsconnect diff --git a/profiles/license_groups b/profiles/license_groups index 52fbcec2d6a8..7a1c70f977c7 100644 --- a/profiles/license_groups +++ b/profiles/license_groups @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # Please report bugs or other requests at bugs.gentoo.org and assign to @@ -30,7 +30,7 @@ OSI-APPROVED AFL-3.0 AGPL-3 AGPL-3+ Apache-1.1 Apache-2.0 APL-1.0 APSL-2 Artisti # Licenses in this list should NOT appear directly or indirectly in # @FSF-APPROVED or @OSI-APPROVED. # Note: Licenses for fonts should be included in @MISC-FREE-DOCS. -MISC-FREE ACE Allegro alternate AMPAS bea.ri.jsr173 BEER-WARE boehm-gc BSD-1 BSD-with-attribution buddy bufexplorer.vim BZIP2 canfep CAOSL CDDL-Schily CeCILL-C CMake CPL-0.5 CRACKLIB Crypt-IDEA DES docbook dom4j eGenixPublic-1.1 ElementTree Emacs ErlPL-1.1 FastCGI feh File-MMagic Flashpix FLEX flexmock FLTK freetts FVWM gd gsm HTML-Tidy htmlc iASL icu IDPL imagemagick Info-ZIP inner-net ipadic ipx-utils Ispell JasPer2.0 JDOM JNIC JOVE keynote LambdaMOO LIBGLOSS libmng libpng libpng2 libtiff LLVM-Grant LPPL-1.3 LPPL-1.3b lsof Mail-Sendmail mapm-4.9.5 matplotlib Mini-XML minpack MIT-with-advertising mm mpich2 NCSA-HDF netcat NEWLIB ngrep Old-MIT openafs-krb5-a Openwall otter PCRE perforce photopc PHP-2.02 pngcrush pngnq Princeton psutils qmail-nelson rc rdisc regexp-UofT repoze RSA rwpng scanlogd Sendmail Sendmail-Open-Source shrimp SMAIL Snd SNIA SSLeay Subversion SVFL symlinks tablelist tcltk tcp_wrappers_license telegram TeX TeX-other-free the-Click-license Time-Format Time-modules tm-align torque-2.5 totd Toyoda UCAR-Unidata URT VTK w3m wxWinLL-3.1 x2x xbatt xboing XC Xdebug xtrs xvt YaTeX yuuji ZSH +MISC-FREE ACE Allegro alternate AMPAS bea.ri.jsr173 BEER-WARE boehm-gc BSD-1 BSD-with-attribution buddy bufexplorer.vim BZIP2 canfep CAOSL CDDL-Schily CeCILL-C CMake CPL-0.5 CRACKLIB Crypt-IDEA DES docbook dom4j eGenixPublic-1.1 ElementTree Emacs ErlPL-1.1 FastCGI feh File-MMagic Flashpix FLEX flexmock FLTK freetts FVWM gd gsm HTML-Tidy htmlc iASL icu IDPL imagemagick Info-ZIP inner-net ipadic ipx-utils Ispell JasPer2.0 JDOM JNIC JOVE LambdaMOO LIBGLOSS libmng libpng libpng2 libtiff LLVM-Grant LPPL-1.3 LPPL-1.3b lsof Mail-Sendmail mapm-4.9.5 matplotlib Mini-XML minpack MIT-with-advertising mm mpich2 NCSA-HDF netcat NEWLIB ngrep Old-MIT openafs-krb5-a Openwall otter PCRE perforce photopc PHP-2.02 pngcrush pngnq Princeton psutils qmail-nelson rc rdisc regexp-UofT repoze RSA rwpng scanlogd Sendmail Sendmail-Open-Source shrimp SMAIL Snd SNIA SSLeay Subversion SVFL symlinks tablelist tcltk tcp_wrappers_license telegram TeX TeX-other-free the-Click-license Time-Format Time-modules tm-align torque-2.5 totd Toyoda UCAR-Unidata URT VTK w3m wxWinLL-3.1 x2x xbatt xboing XC Xdebug xtrs xvt YaTeX yuuji ZSH # Metaset for all free software FREE-SOFTWARE @FSF-APPROVED @OSI-APPROVED @MISC-FREE @@ -71,7 +71,7 @@ BINARY-REDISTRIBUTABLE @FREE bh-luxi Broadcom Dina intel-ucode ipw2100-fw ipw220 # License agreements that try to take away your rights. These are more # restrictive than "all-rights-reserved" or require explicit approval. -EULA AdobeFlash-11.x AMD-GPU-PRO-EULA AnyDesk-TOS ArxFatalis-EULA-JoWooD baudline BCS bf1942-lnxded CAPYBARA-EULA Coherent-Graphics CROSSOVER-2 DOOM3 ETQW f.lux FAH-EULA-2014 FraunhoferFDK GameFront Gameplay-Group-EULA geekbench genymotion GIMPS GOG-EULA google-chrome Google-TOS Intel-SDP Introversion LastPass LOKI-EULA LRCTF MakeMKV-EULA Mendeley-terms Microsemi Mojang MTA-0.5 NVIDIA-CODEC-SDK NVIDIA-CUDA OPERA-12 OPERA-2014 Oracle-BCLA-JavaSE PAPERS-PLEASE POMPOM postal2 Primate-Plunge protonmail-bridge-EULA PUEL Q3AEULA Q3AEULA-20000111 QUAKE4 Quartus-prime-megacore RAR RTCW RTCW-ETEULA RuneScape-EULA SJ-Labs Sourcetrail SPS Steam supermicro teamspeak3 TeamViewer THINKTANKS TIK ubiquiti ut2003 ut2003-demo Vivaldi worklog-assistant zi-labone +EULA AdobeFlash-11.x AMD-GPU-PRO-EULA AnyDesk-TOS ArxFatalis-EULA-JoWooD baudline BCS bestcrypt bf1942-lnxded CAPYBARA-EULA Coherent-Graphics CROSSOVER-2 DOOM3 ETQW f.lux FAH-EULA-2014 FraunhoferFDK GameFront Gameplay-Group-EULA geekbench genymotion GIMPS GOG-EULA google-chrome Google-TOS Intel-SDP Introversion LastPass LOKI-EULA LRCTF MakeMKV-EULA Mendeley-terms Microsemi Mojang MTA-0.5 NVIDIA-CODEC-SDK NVIDIA-CUDA OPERA-12 OPERA-2014 Oracle-BCLA-JavaSE PAPERS-PLEASE POMPOM postal2 Primate-Plunge protonmail-bridge-EULA PUEL Q3AEULA Q3AEULA-20000111 QUAKE4 Quartus-prime-megacore RAR RTCW RTCW-ETEULA RuneScape-EULA SJ-Labs Sourcetrail SPS Steam supermicro teamspeak3 TeamViewer THINKTANKS TIK ubiquiti ut2003 ut2003-demo Vivaldi worklog-assistant zi-labone # Local Variables: # mode: conf-space diff --git a/profiles/package.mask b/profiles/package.mask index a4b01f85877e..6c88a469913e 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -29,6 +29,29 @@ #--- END OF EXAMPLES --- +# David Seifert (21 Apr 2019) +# Ancient, last release over 8 years ago, GTK2, +# broken USE=doc, multiple QA violations. +# Removal in 30 days. Bug #636580, #683486. +dev-python/python-gtkmvc + +# Lars Wendler (21 Apr 2019) +# Masked for removal (bug #683926) +sys-libs/ntdb + +# Alexys Jacob (20 Apr 2019) +# Unmaintained. Not active any more with latest release Jul 23, 2017. +# Does not build with recent openssl. Dropping useless python driver as well. +# Removal in 30 days. Bug #597340, #674236. +dev-db/rethinkdb +dev-python/python-rethinkdb + +# Alexys Jacob (20 Apr 2019) +# Unmaintained. Only version in portage has been EOL for a while. +# No strong user base or herd support. Breaks fuse-3. +# Removal in 30 days. Bug #650256, #673672. +sys-cluster/moosefs + # David Seifert (20 Apr 2019) # Completely broken build system, massive maintenance # burden, no new release since 2014. diff --git a/profiles/use.local.desc b/profiles/use.local.desc index abab0139e3ea..3b10f2aecfb2 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -88,8 +88,9 @@ app-admin/mcollective:client - Install client utilities app-admin/mms-agent:monitoring - Install the monitoring agent app-admin/openrc-settingsd:systemd - Use the versions of dbus and polkit files provided by sys-apps/systemd app-admin/packagekit-base:command-not-found - Enable packagekit support on shell "command not found" +app-admin/packagekit-base:consolekit - Use sys-auth/consolekit to get user session app-admin/packagekit-base:cron - Install cron script for auto-update -app-admin/packagekit-base:elogind - Enable elogind support to get user session +app-admin/packagekit-base:elogind - Enable sys-auth/elogind support to get user session app-admin/packagekit-base:entropy - Enable Entropy backend app-admin/pass:X - Use x11-misc/xclip to copy passwords to the clipboard. app-admin/pass:dmenu - Add support for x11-misc/dmenu with the 'passmenu' program. @@ -1462,7 +1463,8 @@ dev-cpp/eigen:c++11 - Build using the C++11 standard dev-cpp/eigen:cuda - Build with cuda support dev-cpp/glog:gflags - Use dev-cpp/gflags for flag parsing dev-cpp/glog:unwind - Use sys-libs/libunwind for stack unwinding instead of glibc/gcc (may be more reliable on x86_64) -dev-cpp/libcmis:man - Build and install man pages. +dev-cpp/libcmis:man - Build and install man pages +dev-cpp/libcmis:tools - Build client tool for testing and viewing features dev-cpp/libjson-rpc-cpp:http-client - Build support for HTTP client using net-misc/curl dev-cpp/libjson-rpc-cpp:http-server - Build support for HTTP server using net-libs/libmicrohttpd dev-cpp/libjson-rpc-cpp:redis-client - Build support for Redis client using dev-libs/hiredis @@ -4685,6 +4687,7 @@ media-libs/xine-lib:vis - Adds support for SIMD optimizations for UltraSPARC pro media-libs/xine-lib:vpx - Enable VP8 codec support via media-libs/libvpx. media-libs/xine-lib:xvmc - Enable support for XVideo Motion Compensation (accelerated mpeg playback). media-libs/xvid:pic - disable optimized assembly code that is not PIC friendly +media-libs/zita-resampler:tools - Install zresample and zretune tools media-plugins/alsa-plugins:arcam_av - Enables Arcam AV control plugin media-plugins/alsa-plugins:mix - Enables upmix and vdownmix plugin media-plugins/alsa-plugins:usb_stream - Enables usb_stream plugin @@ -4864,6 +4867,8 @@ media-sound/gimmix:lyrics - Enable lyric fetching media-sound/gmpc:unique - Enable single instance support using dev-libs/libunique media-sound/gmpc:xspf - Enable support for reading and saving XSPF playlists media-sound/gmusicbrowser:extras - Install some extra deps for plugins (ex. Titlebar) +media-sound/guitarix:lv2 - Build lv2 plugins +media-sound/guitarix:standalone - Build standalone application media-sound/herrie:http - Enable http streaming media-sound/herrie:xspf - Enable support for reading and saving XSPF playlists media-sound/hydrogen:archive - Use libarchive instead of libtar @@ -5781,7 +5786,9 @@ net-dns/dnsmasq:id - Whether report *.bind CHAOS info to clients, otherwise forw net-dns/dnsmasq:libidn2 - Enable support for Internationalized Domain Names, via net-dns/libidn2 rather than net-dns/libidn net-dns/dnsmasq:script - Enable support for calling scripts when leases change. net-dns/dnsmasq:tftp - Enables built in TFTP server for netbooting. +net-dns/dnssec-validator:dlv - Enable support for the DNSSEC look-aside validation net-dns/dnssec-validator:ecdsa-check - Requires openssl[-bindist] +net-dns/dnssec-validator:nsec3 - Enable support for the NSEC3 Resource Record net-dns/getdns:getdns_query - Add getdns_query tool net-dns/getdns:getdns_server_mon - Add getdns_server_mon tool net-dns/getdns:libev - Enable dev-libs/libev support @@ -7609,7 +7616,7 @@ sci-libs/opencascade:freeimage - Enable support for image i/o via media-libs/fre sci-libs/opencascade:gl2ps - Use gl2ps PostScript printing library sci-libs/opencascade:gles2 - Use OpenGL ES 2.0 sci-libs/opencascade:tbb - Enable multithreading with the Intel Threads Building Block dev-cpp/tbb -sci-libs/opencascade:vtk - Enable Virtualisation Toolkit +sci-libs/opencascade:vtk - Enable Visualization Toolkit sci-libs/openfoam:opendx - Install opendx visualisation tool sci-libs/openfoam:paraview - Enable support for paraview library sci-libs/openfoam:src - Install source files @@ -7860,8 +7867,9 @@ sec-policy/selinux-base:peer_perms - Enable the labeled networking peer permissi sec-policy/selinux-base:ubac - Enable User Based Access Control (UBAC) in the SELinux policy sec-policy/selinux-base:unconfined - Enable support for the unconfined SELinux module sec-policy/selinux-base-policy:unconfined - Enable support for the unconfined SELinux policy module -sys-apps/accountsservice:elogind - Use sys-auth/elogind instead of sys-auth/consolekit for session tracking -sys-apps/accountsservice:systemd - Use sys-apps/systemd instead of sys-auth/consolekit for session tracking +sys-apps/accountsservice:consolekit - Use sys-auth/consolekit for session tracking +sys-apps/accountsservice:elogind - Use sys-auth/elogind for session tracking +sys-apps/accountsservice:systemd - Use sys-apps/systemd for session tracking sys-apps/baselayout:split-usr - Enable this if /bin and /usr/bin are separate directories sys-apps/baselayout-prefix:split-usr - Enable this if /bin and /usr/bin are separate directories sys-apps/busybox:make-symlinks - Create all the appropriate symlinks in /bin and /sbin. @@ -7941,9 +7949,9 @@ sys-apps/flashrom:usbblaster - Enable support for Altera USB-Blaster dongles sys-apps/flashrom:usbblaster_spi - Enable support for Altera USB-Blaster dongles sys-apps/flashrom:wiki - Enable wiki informations, like supported devices etc. sys-apps/fwupd:agent - Enable update notification agent -sys-apps/fwupd:colorhug - Enable ColorHug support through x11-misc/colord package. +sys-apps/fwupd:colorhug - Enable ColorHug support throughx11-misc/colord package +sys-apps/fwupd:consolekit - Use sys-auth/consolekit for session tracking sys-apps/fwupd:dell - Enable Dell-specific support. -sys-apps/fwupd:elogind - Use sys-auth/elogind instead of sys-auth/consolekit for session tracking sys-apps/fwupd:gpg - Enable GPG support. sys-apps/fwupd:man - Build and install man pages sys-apps/fwupd:nvme - Build and install nvme plugin diff --git a/sci-astronomy/Manifest.gz b/sci-astronomy/Manifest.gz index 8436519621bc..9f2467b8078b 100644 Binary files a/sci-astronomy/Manifest.gz and b/sci-astronomy/Manifest.gz differ diff --git a/sci-astronomy/kstars/Manifest b/sci-astronomy/kstars/Manifest index 2665c6ea6bf1..c61393a39e41 100644 --- a/sci-astronomy/kstars/Manifest +++ b/sci-astronomy/kstars/Manifest @@ -1 +1,2 @@ DIST kstars-3.1.1.tar.xz 70308140 BLAKE2B 97c32773bb600b6601f6b0f64cb951d9931760f3f83bd40e99888868a49643c26af666756fde7b8fb59c634cdfdd7391d4ea8674e99acbe0955bc07b194f4285 SHA512 f482a0bf82eda596a6da9ab8641059aaae8c1983b3c28e963b18665aec3d6418472997aa3d94f6cdff496a95f4151f4b5ca2171bed4c9ff3f7f95177a8fd67c0 +DIST kstars-3.2.0.tar.xz 70667528 BLAKE2B e1a57ebd9f851069d64a5e79afc60cf92ed3e4e5319f2458aeb510f49015a73508e39cf0adcee86f88fdb2c447e4b9725977e43ebedee8094cd367c52a4a7152 SHA512 7286c0e49d6c359ace3e2670fff281b591d87ff5a2a69adc2864eac2a0e9f8e2ec732304c40ee2dbb16ce50379318ccd441411390395061537d030d140a9aaea diff --git a/sci-astronomy/kstars/kstars-3.2.0.ebuild b/sci-astronomy/kstars/kstars-3.2.0.ebuild new file mode 100644 index 000000000000..dbf91c26649b --- /dev/null +++ b/sci-astronomy/kstars/kstars-3.2.0.ebuild @@ -0,0 +1,85 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +KDE_HANDBOOK="forceoptional" +PYTHON_COMPAT=( python2_7 ) +inherit kde5 python-single-r1 + +if [[ ${KDE_BUILD_TYPE} = release ]]; then + SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz" + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="Desktop Planetarium" +HOMEPAGE="https://kde.org/applications/education/kstars https://edu.kde.org/kstars/" +IUSE="fits indi +password raw wcs" + +REQUIRED_USE="indi? ( fits ) ${PYTHON_REQUIRED_USE}" + +COMMON_DEPEND=" + $(add_frameworks_dep kauth) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kcrash) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kio) + $(add_frameworks_dep knewstuff) + $(add_frameworks_dep knotifications) + $(add_frameworks_dep knotifyconfig) + $(add_frameworks_dep kplotting) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kxmlgui) + $(add_qt_dep qtdatavis3d) + $(add_qt_dep qtdbus) + $(add_qt_dep qtdeclarative) + $(add_qt_dep qtgui) + $(add_qt_dep qtnetwork) + $(add_qt_dep qtprintsupport) + $(add_qt_dep qtsql) + $(add_qt_dep qtsvg) + $(add_qt_dep qtwebsockets) + $(add_qt_dep qtwidgets) + sys-libs/zlib + fits? ( sci-libs/cfitsio ) + indi? ( >=sci-libs/indilib-1.7.5 ) + password? ( dev-libs/qtkeychain:= ) + raw? ( media-libs/libraw:= ) + wcs? ( sci-astronomy/wcslib ) +" +# TODO: Add back when re-enabled by upstream +# opengl? ( +# $(add_qt_dep qtopengl) +# virtual/opengl +# ) +DEPEND="${COMMON_DEPEND} + $(add_qt_dep qtconcurrent) + dev-cpp/eigen:3 +" +RDEPEND="${COMMON_DEPEND} + ${PYTHON_DEPS} +" + +src_configure() { + local mycmakeargs=( + -DFETCH_TRANSLATIONS=OFF + $(cmake-utils_use_find_package fits CFitsio) + $(cmake-utils_use_find_package indi INDI) + $(cmake-utils_use_find_package password Qt5Keychain) + $(cmake-utils_use_find_package raw LibRaw) + $(cmake-utils_use_find_package wcs WCSLIB) + ) + + kde5_src_configure +} + +pkg_postinst () { + kde5_pkg_postinst + + if [[ -z "${REPLACING_VERSIONS}" ]] && ! has_version "x11-misc/xplanet" ; then + elog "${PN} has optional runtime support for x11-misc/xplanet" + fi + # same for AstrometryNet, which is not packaged. +} diff --git a/sci-biology/Manifest.gz b/sci-biology/Manifest.gz index a0a7012e8954..89bff10b7570 100644 Binary files a/sci-biology/Manifest.gz and b/sci-biology/Manifest.gz differ diff --git a/sci-biology/biopython/Manifest b/sci-biology/biopython/Manifest index 70af7c92d44d..02d90810dc5f 100644 --- a/sci-biology/biopython/Manifest +++ b/sci-biology/biopython/Manifest @@ -1,2 +1,3 @@ DIST biopython-1.68.tar.gz 14445813 BLAKE2B 566931c4e522e95278f7f6a9dc07ecc091dc54b69cdea8bb07603339af4f1fd38e3df87482e97729acb776dd2df19a4e61d49ee7608ec5cb0f24966e28c2e3dd SHA512 0ca994475654bb68ff326c8e86cbd4547cd87b42e1633dda039ad668e1298884b22e169f6b25ab514e929861334a93b7db6d057a3486cea9997ca2de95c61a69 DIST biopython-1.71.tar.gz 16031832 BLAKE2B 2062065b77fc35ea8a3f09ec967482c233a6e0bbfc7d09187ff5e892848b45fa7bd6d7b6027b38c3d4c9a9c601785521fa7edb91fa960b46c8e49aed91b1f5dc SHA512 003955e92295e98526c88abb573db9bdc37877fc41395551b541e7106ffa603327a36c6f4d999838c0be38b378901235c9dbd7cb7fc25c14a5d7001939fe23bd +DIST biopython-1.73.tar.gz 15715102 BLAKE2B b2c40f9ed02681f19607c88f91b469784985acefc6e81770a54e5c13c715915344bc7fd72e4a88ae50879a2463965ac6d0d04c6d263908887028d1e065620b95 SHA512 d067330ef8e25ca6881b56f4e5e89e16a816c89760473e2f32a6236ab202f805294650aa944f0b098987425bcb65727317da7a26deb4d4937f02b00123ea9a8f diff --git a/sci-biology/biopython/biopython-1.73.ebuild b/sci-biology/biopython/biopython-1.73.ebuild new file mode 100644 index 000000000000..f0d335a5933a --- /dev/null +++ b/sci-biology/biopython/biopython-1.73.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 python3_{5,6,7} ) + +inherit distutils-r1 eutils + +DESCRIPTION="Python modules for computational molecular biology" +HOMEPAGE="https://www.biopython.org/ https://pypi.org/project/biopython/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="HPND" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND=" + dev-python/matplotlib[${PYTHON_USEDEP}] + dev-python/networkx[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/rdflib[${PYTHON_USEDEP}] + dev-python/pygraphviz[${PYTHON_USEDEP}] + >=dev-python/reportlab-3.5.13-r1[${PYTHON_USEDEP}] + dev-python/pydot[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + sys-devel/flex" + +DOCS=( {CONTRIB,DEPRECATED,NEWS,README}.rst Doc/. ) + +python_test() { + distutils_install_for_testing + cp -r "${S}"/{Doc,Tests} "${TEST_DIR}"/lib/ || die + cd "${TEST_DIR}"/lib/Tests || die + rm test_BioSQL_{psycopg2.py,MySQLdb.py,mysql_connector.py} || die + "${EPYTHON}" run_tests.py --offline --verbose || die +} + +python_install_all() { + # remove files causing ecompressdir to fail + rm Doc/examples/ls_orchid.gbk.{gz,bz2} || die + + distutils-r1_python_install_all + + dodir /usr/share/${PN} + cp -r --preserve=mode Scripts Tests "${ED}"/usr/share/${PN} || die +} + +pkg_postinst() { + elog "For database support you need to install:" + optfeature "MySQL" dev-python/mysql-python + optfeature "PostgreSQL" dev-python/psycopg + + elog "Some applications need extra packages:" + optfeature "EMBOSS (The European Molecular Biology Open Software Suite)" sci-biology/emboss +} diff --git a/sci-libs/Manifest.gz b/sci-libs/Manifest.gz index 2004d6659bfc..847f07c642e4 100644 Binary files a/sci-libs/Manifest.gz and b/sci-libs/Manifest.gz differ diff --git a/sci-libs/opencascade/metadata.xml b/sci-libs/opencascade/metadata.xml index 38f461d22b3b..cfb5bac89f91 100644 --- a/sci-libs/opencascade/metadata.xml +++ b/sci-libs/opencascade/metadata.xml @@ -14,6 +14,6 @@ Use gl2ps PostScript printing library Use OpenGL ES 2.0 Enable multithreading with the Intel Threads Building Block dev-cpp/tbb - Enable Virtualisation Toolkit + Enable Visualization Toolkit diff --git a/sci-mathematics/Manifest.gz b/sci-mathematics/Manifest.gz index bba17b729af3..ee79276578f2 100644 Binary files a/sci-mathematics/Manifest.gz and b/sci-mathematics/Manifest.gz differ diff --git a/sci-mathematics/p9m4/p9m4-05-r1.ebuild b/sci-mathematics/p9m4/p9m4-05-r1.ebuild index a97703003bec..16bb1c83dee1 100644 --- a/sci-mathematics/p9m4/p9m4-05-r1.ebuild +++ b/sci-mathematics/p9m4/p9m4-05-r1.ebuild @@ -1,10 +1,9 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="5" +EAPI=7 PYTHON_COMPAT=( python2_7 ) -DISTUTILS_SINGLE_IMPL=1 inherit distutils-r1 @@ -13,42 +12,42 @@ MY_P="${MY_PN}${PV}" DESCRIPTION="This is a Graphical User Interface for Prover9 and Mace4" HOMEPAGE="http://www.cs.unm.edu/~mccune/mace4/" -SRC_URI="http://www.cs.unm.edu/~mccune/prover9/gui/${MY_P}.tar.gz - https://dev.gentoo.org/~gienah/2big4tree/sci-mathematics/p9m4/p9m4-v05-64bit.patch.bz2" +SRC_URI=" + http://www.cs.unm.edu/~mccune/prover9/gui/${MY_P}.tar.gz + https://dev.gentoo.org/~gienah/2big4tree/sci-mathematics/p9m4/p9m4-v05-64bit.patch.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="examples" -RDEPEND="dev-python/wxpython:* - sci-mathematics/prover9" -DEPEND="${RDEPEND} - dev-python/setuptools" +RDEPEND=" + dev-python/wxpython[${PYTHON_USEDEP}] + sci-mathematics/prover9" +DEPEND=" + ${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" -PATCHES=( "${DISTDIR}/${MY_PN}05-64bit.patch.bz2" - "${FILESDIR}/${MY_PN}05-use-inst-paths.patch" - "${FILESDIR}/${MY_PN}05-package.patch" - "${FILESDIR}/${MY_PN}05-python2.6.patch" ) +PATCHES=( + "${WORKDIR}"/${MY_PN}05-64bit.patch + "${FILESDIR}"/${MY_PN}05-use-inst-paths.patch + "${FILESDIR}"/${MY_PN}05-package.patch + "${FILESDIR}"/${MY_PN}05-python2.6.patch +) -S="${WORKDIR}/${MY_P}/" - -python_check_deps() { - has_version "dev-python/foo[${PYTHON_USEDEP}]" -} - -pkg_setup() { - python-single-r1_pkg_setup -} +S="${WORKDIR}/${MY_P}" python_prepare_all() { - rm -f p9m4-v05/bin/prover9 \ + distutils-r1_python_prepare_all + + rm -f \ + p9m4-v05/bin/prover9 \ p9m4-v05/bin/mace4 \ p9m4-v05/bin/interpformat \ p9m4-v05/bin/prooftrans \ p9m4-v05/bin/isofilter \ p9m4-v05/bin/isofilter2 || die "Could not rm old executables" - distutils-r1_python_prepare_all + mkdir p9m4 || die "Could not create directory p9m4" mv Mac-setup.py \ Win32-setup.py \ @@ -67,42 +66,27 @@ python_prepare_all() { } python_install_all() { - dosym /usr/bin/prover9-mace4.py /usr/bin/prover9-mace4 - insinto /usr/share - dodir /usr/share/${PN}/Images + distutils-r1_python_install_all + + dosym prover9-mace4.py /usr/bin/prover9-mace4 + insinto /usr/share/${PN}/Images - cd "${S}/Images" \ - || die "Could not cd to Images" - doins *.gif *.ico + doins Images/*.{gif,ico} + if use examples; then - dodir /usr/share/${PN}/Samples insinto /usr/share/${PN}/Samples - cd "${S}/Samples" \ - || die "Could not cd to Samples" - doins *.in + doins Samples/*.in - dodir /usr/share/${PN}/Samples/Equality/Mace4 insinto /usr/share/${PN}/Samples/Equality/Mace4 - cd "${S}/Samples/Equality/Mace4" \ - || die "Could not cd to Samples/Equality/Mace4" - doins *.in + doins Samples/Equality/Mace4/*.in - dodir /usr/share/${PN}/Samples/Equality/Prover9 insinto /usr/share/${PN}/Samples/Equality/Prover9 - cd "${S}/Samples/Equality/Prover9" \ - || die "Could not cd to Samples/Equality/Prover9" - doins *.in + doins Samples/Equality/Prover9/*.in - dodir /usr/share/${PN}/Samples/Non-Equality/Mace4 insinto /usr/share/${PN}/Samples/Non-Equality/Mace4 - cd "${S}/Samples/Non-Equality/Mace4" \ - || die "Could cd to Samples/Non-Equality/Mace4" - doins *.in + doins Samples/Non-Equality/Mace4/*.in - dodir /usr/share/${PN}/Samples/Non-Equality/Prover9 insinto /usr/share/${PN}/Samples/Non-Equality/Prover9 - cd "${S}/Samples/Non-Equality/Prover9" \ - || die "Could not cd to Samples/Non-Equality/Prover9" - doins *.in + doins Samples/Non-Equality/Prover9/*.in fi } diff --git a/sci-visualization/Manifest.gz b/sci-visualization/Manifest.gz index ef70b1fb90be..043bffa5e83c 100644 Binary files a/sci-visualization/Manifest.gz and b/sci-visualization/Manifest.gz differ diff --git a/sci-visualization/labplot/Manifest b/sci-visualization/labplot/Manifest index 141373dce8b0..3ca755dac2b1 100644 --- a/sci-visualization/labplot/Manifest +++ b/sci-visualization/labplot/Manifest @@ -1 +1,2 @@ DIST labplot-2.5.0.tar.xz 11831656 BLAKE2B b6c122509874f1f7a554814b7ac9889b416d36f750ff831773aed313f9eff23abc0809f40f6f591051b287bd1a875af455f5d500ce54130c4d8ddfe5fcfa0870 SHA512 a4b285917e30b0ac00cb8c8ad6827ba3884d95fccc0511a0a317bb2d637e48e6579929c45cfb8bba737bb5a01472a2baa9d812a688730ac4fa40b23cc6625eba +DIST labplot-2.6.0.tar.xz 12360732 BLAKE2B f6259de30deb0adb4ddd47f0401fe8753a277aa01ade27c220ec832eb7f6c3e568c765085d2567529799777c9fe2442da777bd4089e5f488cc1aefb25a61d5a8 SHA512 6ebc96b3cfb25ebd62a6631d8cca0d9574f84548c04271eb8a10ff3ef9ebbdd0bf842b9b6129a995953412c5e6f902440dc91dbaa01d97fc220d7f6b19dc46af diff --git a/sci-visualization/labplot/labplot-2.6.0.ebuild b/sci-visualization/labplot/labplot-2.6.0.ebuild new file mode 100644 index 000000000000..7de7c2fe995b --- /dev/null +++ b/sci-visualization/labplot/labplot-2.6.0.ebuild @@ -0,0 +1,79 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +KDE_HANDBOOK="forceoptional" +KDE_TEST="forceoptional" +inherit kde5 + +DESCRIPTION="Scientific data analysis and visualisation based on KDE Frameworks" +HOMEPAGE="https://www.kde.org/applications/education/labplot/" +[[ ${KDE_BUILD_TYPE} != live ]] && SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" +IUSE="cantor fftw fits hdf5 libcerf netcdf root" + +# not packaged: dev-qt/qtmqtt, bug 683994 +BDEPEND=" + sys-devel/bison + sys-devel/gettext +" +DEPEND=" + $(add_frameworks_dep karchive) + $(add_frameworks_dep kcompletion) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kiconthemes) + $(add_frameworks_dep knewstuff) + $(add_frameworks_dep kcrash) + $(add_frameworks_dep ktextwidgets) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kxmlgui) + $(add_frameworks_dep syntax-highlighting) + $(add_qt_dep qtconcurrent) + $(add_qt_dep qtgui) + $(add_qt_dep qtnetwork) + $(add_qt_dep qtprintsupport) + $(add_qt_dep qtserialport) + $(add_qt_dep qtsql) + $(add_qt_dep qtsvg) + $(add_qt_dep qtwidgets) + >=sci-libs/gsl-1.15:= + cantor? ( + $(add_frameworks_dep kparts) + $(add_frameworks_dep kservice) + $(add_kdeapps_dep cantor) + ) + fftw? ( sci-libs/fftw:3.0= ) + fits? ( sci-libs/cfitsio:= ) + hdf5? ( sci-libs/hdf5:= ) + libcerf? ( sci-libs/libcerf ) + netcdf? ( sci-libs/netcdf:= ) + root? ( + app-arch/lz4 + sys-libs/zlib + ) +" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${P/.0/}" + +src_configure() { + local mycmakeargs=( + -DENABLE_CANTOR=$(usex cantor) + -DENABLE_FFTW=$(usex fftw) + -DENABLE_FITS=$(usex fits) + -DENABLE_HDF5=$(usex hdf5) + -DENABLE_LIBCERF=$(usex libcerf) + -DENABLE_NETCDF=$(usex netcdf) + -DENABLE_ROOT=$(usex root) + -DENABLE_TESTS=$(usex test) + -DENABLE_MQTT=OFF + ) + + kde5_src_configure +} diff --git a/sci-visualization/labplot/labplot-9999.ebuild b/sci-visualization/labplot/labplot-9999.ebuild index 7e90a08059fa..5e4f6fed268f 100644 --- a/sci-visualization/labplot/labplot-9999.ebuild +++ b/sci-visualization/labplot/labplot-9999.ebuild @@ -15,6 +15,7 @@ LICENSE="GPL-2" KEYWORDS="" IUSE="cantor fftw fits hdf5 libcerf netcdf root" +# not packaged: dev-qt/qtmqtt, bug 683994 BDEPEND=" sys-devel/bison sys-devel/gettext @@ -28,6 +29,7 @@ DEPEND=" $(add_frameworks_dep ki18n) $(add_frameworks_dep kiconthemes) $(add_frameworks_dep knewstuff) + $(add_frameworks_dep kcrash) $(add_frameworks_dep ktextwidgets) $(add_frameworks_dep kwidgetsaddons) $(add_frameworks_dep kxmlgui) @@ -56,9 +58,7 @@ DEPEND=" sys-libs/zlib ) " -RDEPEND="${DEPEND} - !sci-visualization/labplot:4 -" +RDEPEND="${DEPEND}" src_configure() { local mycmakeargs=( @@ -69,7 +69,8 @@ src_configure() { -DENABLE_LIBCERF=$(usex libcerf) -DENABLE_NETCDF=$(usex netcdf) -DENABLE_ROOT=$(usex root) - -DENABLE_TEST=$(usex test) + -DENABLE_TESTS=$(usex test) + -DENABLE_MQTT=OFF ) kde5_src_configure diff --git a/sys-apps/Manifest.gz b/sys-apps/Manifest.gz index ba0a9d6f0f82..ca94d719db03 100644 Binary files a/sys-apps/Manifest.gz and b/sys-apps/Manifest.gz differ diff --git a/sys-apps/accountsservice/accountsservice-0.6.50-r1.ebuild b/sys-apps/accountsservice/accountsservice-0.6.50-r1.ebuild index a61545c13622..cd05be8ca8b9 100644 --- a/sys-apps/accountsservice/accountsservice-0.6.50-r1.ebuild +++ b/sys-apps/accountsservice/accountsservice-0.6.50-r1.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,16 +14,16 @@ LICENSE="GPL-3+" SLOT="0" KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ppc ppc64 ~sparc x86" -IUSE="doc elogind +introspection selinux systemd" -REQUIRED_USE="?? ( elogind systemd )" +IUSE="doc consolekit elogind +introspection selinux systemd" +REQUIRED_USE="^^ ( consolekit elogind systemd )" CDEPEND=" >=dev-libs/glib-2.44:2 sys-auth/polkit + consolekit? ( sys-auth/consolekit ) elogind? ( >=sys-auth/elogind-229.4 ) introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) systemd? ( >=sys-apps/systemd-186:0= ) - !systemd? ( !elogind? ( sys-auth/consolekit ) ) " DEPEND="${CDEPEND} dev-libs/libxslt diff --git a/sys-apps/accountsservice/metadata.xml b/sys-apps/accountsservice/metadata.xml index 69657d082aea..35e1d4b2c2bd 100644 --- a/sys-apps/accountsservice/metadata.xml +++ b/sys-apps/accountsservice/metadata.xml @@ -6,9 +6,8 @@ Gentoo GNOME Desktop - Use sys-auth/elogind instead of - sys-auth/consolekit for session tracking - Use sys-apps/systemd instead of - sys-auth/consolekit for session tracking + Use sys-auth/consolekit for session tracking + Use sys-auth/elogind for session tracking + Use sys-apps/systemd for session tracking diff --git a/sys-apps/fwupd/fwupd-1.2.7.ebuild b/sys-apps/fwupd/fwupd-1.2.7.ebuild index 00ab9a633a64..5951cd35b846 100644 --- a/sys-apps/fwupd/fwupd-1.2.7.ebuild +++ b/sys-apps/fwupd/fwupd-1.2.7.ebuild @@ -14,10 +14,10 @@ SRC_URI="https://github.com/hughsie/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="LGPL-2.1+" SLOT="0" KEYWORDS="~amd64 ~arm ~x86" -IUSE="agent colorhug dell doc elogind +gpg +man nvme pkcs7 redfish systemd test thunderbolt uefi" +IUSE="agent colorhug consolekit dell doc elogind +gpg +man nvme pkcs7 redfish systemd test thunderbolt uefi" REQUIRED_USE="${PYTHON_REQUIRED_USE} - ?? ( elogind systemd ) + ^^ ( consolekit elogind systemd ) dell? ( uefi ) " @@ -38,10 +38,12 @@ RDEPEND="${PYTHON_DEPS} >=sys-auth/polkit-0.103 virtual/libelf:0= colorhug? ( >=x11-misc/colord-1.2.12:0= ) + consolekit? ( >=sys-auth/consolekit-1.0.0 ) dell? ( sys-libs/efivar >=sys-libs/libsmbios-2.4.0 ) + elogind? ( sys-auth/elogind ) gpg? ( app-crypt/gpgme dev-libs/libgpg-error @@ -49,10 +51,6 @@ RDEPEND="${PYTHON_DEPS} nvme? ( sys-libs/efivar ) pkcs7? ( >=net-libs/gnutls-3.4.4.1:= ) redfish? ( sys-libs/efivar ) - !systemd? ( - !elogind? ( >=sys-auth/consolekit-1.0.0 ) - elogind? ( sys-auth/elogind ) - ) systemd? ( >=sys-apps/systemd-211 ) thunderbolt? ( sys-apps/thunderbolt-software-user-space ) uefi? ( @@ -94,6 +92,7 @@ src_configure() { local emesonargs=( --localstatedir "${EPREFIX}"/var -Dagent="$(usex agent true false)" + -Dconsolekit="$(usex consolekit true false)" -Dgtkdoc="$(usex doc true false)" -Delogind="$(usex elogind true false)" -Dgpg="$(usex gpg true false)" @@ -111,12 +110,6 @@ src_configure() { -Dtests="$(usex test true false)" ) - if use elogind || use systemd ; then - emesonargs+=( -Dconsolekit=false ) - else - emesonargs+=( -Dconsolekit=true ) - fi - meson_src_configure } diff --git a/sys-apps/fwupd/metadata.xml b/sys-apps/fwupd/metadata.xml index 64d755cca4f6..d749d5ca31b9 100644 --- a/sys-apps/fwupd/metadata.xml +++ b/sys-apps/fwupd/metadata.xml @@ -7,10 +7,9 @@ Enable update notification agent - Enable ColorHug support through - x11-misc/colord package. + Enable ColorHug support throughx11-misc/colord package + Use sys-auth/consolekit for session tracking Enable Dell-specific support. - Use sys-auth/elogind instead of sys-auth/consolekit for session tracking Enable GPG support. Build and install man pages Build and install nvme plugin diff --git a/sys-apps/input-utils/input-utils-1.2.ebuild b/sys-apps/input-utils/input-utils-1.2.ebuild index f2e8b5042ff1..5bd6e7f4694f 100644 --- a/sys-apps/input-utils/input-utils-1.2.ebuild +++ b/sys-apps/input-utils/input-utils-1.2.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=5 @@ -13,7 +13,7 @@ SRC_URI="https://www.kraxel.org/releases/input/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ~arm ppc x86" +KEYWORDS="amd64 ~arm ~arm64 ppc x86" IUSE="" DEPEND="" diff --git a/sys-apps/input-utils/input-utils-1.3.ebuild b/sys-apps/input-utils/input-utils-1.3.ebuild index 2821ff527621..ff1c3933d560 100644 --- a/sys-apps/input-utils/input-utils-1.3.ebuild +++ b/sys-apps/input-utils/input-utils-1.3.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 @@ -12,7 +12,7 @@ SRC_URI="https://www.kraxel.org/releases/input/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86" IUSE="" DEPEND="" diff --git a/sys-apps/lm_sensors/Manifest b/sys-apps/lm_sensors/Manifest index d96d024b3056..34c38ccbbbf5 100644 --- a/sys-apps/lm_sensors/Manifest +++ b/sys-apps/lm_sensors/Manifest @@ -1,2 +1 @@ -DIST lm_sensors-3.4.0_p20180923.tar.gz 264263 BLAKE2B 7444934429b16ae19af0390e8d3e6a2cf979dccf3c83ee8a3fd0f1f358d07bbc3e446197d44deb994a6d3313cff492625b8fd5c7462c39eb5e10b998b6588cb1 SHA512 cf6ea7898248420e2927aa673ba166ede8e774f605038fad4e503f178ab36c2b371253c69197739fe533663dac191b40dce7c3b4ad71488e4f15e4583f6ad363 DIST lm_sensors-3.5.0.tar.gz 267133 BLAKE2B f8fe8efe19cd17f2c828404bee7b2b285118279f06aaa2ebf831823d6767865a2b19da7bede1f3b43b2664ae3cec41b9e840be24fa673472fe577d38f602da4e SHA512 bea9b2ac01bc43622cafdce0b00ac3bb8cb2d818449c8b332ab51e7ad0022b66bcbf6ca1e99c8500bdc6092c5c1ef985bfe7cff05dbcf015bd3ccf58c00a72e1 diff --git a/sys-apps/lm_sensors/lm_sensors-3.4.0_p20180923.ebuild b/sys-apps/lm_sensors/lm_sensors-3.4.0_p20180923.ebuild deleted file mode 100644 index 3a69d17218d9..000000000000 --- a/sys-apps/lm_sensors/lm_sensors-3.4.0_p20180923.ebuild +++ /dev/null @@ -1,215 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -inherit linux-info systemd toolchain-funcs multilib-minimal eapi7-ver - -DESCRIPTION="Hardware Monitoring user-space utilities" -HOMEPAGE="https://hwmon.wiki.kernel.org/ https://github.com/lm-sensors/lm-sensors" - -COMMIT="807f9b1529892c0ac89bca0c7ae781c59f9c8393" -MY_PN="${PN/_/-}" - -#SRC_URI="http://dl.lm-sensors.org/lm-sensors/releases/${P}.tar.bz2" -SRC_URI="https://github.com/lm-sensors/${MY_PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2+ LGPL-2.1" - -# SUBSLOT based on SONAME of libsensors.so -SLOT="0/4.4.0" - -KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" -IUSE="contrib sensord static-libs" - -COMMON_DEPS=" - sensord? ( - net-analyzer/rrdtool - virtual/logger - )" - -RDEPEND="${COMMON_DEPS} - dev-lang/perl - !\", \"HWMON_MODULES\" or \"BUS_MODULES\"" - elog " variables from \"/etc/conf.d/lm_modules\" to" - elog " \"/etc/modules-load.d/lm_sensors.conf\" and adjust format." - elog "" - elog " For details see https://wiki.gentoo.org/wiki/Systemd#Automatic_module_loading" - elog "" - elog " Important: Don't forget to migrate your module's argument" - elog " (modules__args variable) if your are not already" - elog " using \"/etc/modprobe.d\" (which is recommended)." - - # Show this elog only once - break - fi - done - - if [[ -z "${REPLACING_VERSIONS}" ]]; then - # New installation - - elog "" - elog "Please run \`/usr/sbin/sensors-detect' in order to setup" - elog "\"/etc/modules-load.d/lm_sensors.conf\"." - elog "" - elog "You might want to add ${PN} to your default runlevel to make" - elog "sure the sensors get initialized on the next startup." - elog "" - elog "Be warned, the probing of hardware in your system performed by" - elog "sensors-detect could freeze your system. Also make sure you read" - elog "the documentation before running ${PN} on IBM ThinkPads." - fi -} diff --git a/sys-apps/lm_sensors/lm_sensors-3.5.0.ebuild b/sys-apps/lm_sensors/lm_sensors-3.5.0.ebuild index 3254e2449209..f5c4e1a4e7f1 100644 --- a/sys-apps/lm_sensors/lm_sensors-3.5.0.ebuild +++ b/sys-apps/lm_sensors/lm_sensors-3.5.0.ebuild @@ -24,7 +24,7 @@ LICENSE="GPL-2+ LGPL-2.1" # SUBSLOT based on SONAME of libsensors.so SLOT="0/5.0.0" -KEYWORDS="~alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" IUSE="contrib sensord static-libs" COMMON_DEPS=" diff --git a/sys-apps/logwatch/logwatch-7.4.3.ebuild b/sys-apps/logwatch/logwatch-7.4.3.ebuild index b8dc95af0f58..41273312c4e1 100644 --- a/sys-apps/logwatch/logwatch-7.4.3.ebuild +++ b/sys-apps/logwatch/logwatch-7.4.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ppc ppc64 sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm ~arm64 hppa ppc ppc64 sparc x86 ~x86-fbsd" IUSE="" DEPEND="" diff --git a/sys-apps/logwatch/logwatch-7.4.3_p20171025.ebuild b/sys-apps/logwatch/logwatch-7.4.3_p20171025.ebuild index 2cb75e82997f..391f0f2e9534 100644 --- a/sys-apps/logwatch/logwatch-7.4.3_p20171025.ebuild +++ b/sys-apps/logwatch/logwatch-7.4.3_p20171025.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -14,7 +14,7 @@ if [[ ${PV} == "9999" ]] ; then inherit git-r3 else SRC_URI="https://sourceforge.net/code-snapshots/git/l/lo/logwatch/git.git/logwatch-git-${MY_COMMIT}.zip -> ${P}.zip" - KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" fi DESCRIPTION="Analyzes and Reports on system logs" diff --git a/sys-apps/logwatch/logwatch-9999.ebuild b/sys-apps/logwatch/logwatch-9999.ebuild index 93f1e8caf378..971e5d621f38 100644 --- a/sys-apps/logwatch/logwatch-9999.ebuild +++ b/sys-apps/logwatch/logwatch-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]] ; then inherit git-r3 else SRC_URI="mirror://sourceforge/${PN}/${P}/${P}.tar.gz" - KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" fi DESCRIPTION="Analyzes and Reports on system logs" diff --git a/sys-apps/netplug/files/netplug-1.2.9.2-multi-waitpid-sigchld.patch b/sys-apps/netplug/files/netplug-1.2.9.2-multi-waitpid-sigchld.patch new file mode 100644 index 000000000000..06e645c1dee9 --- /dev/null +++ b/sys-apps/netplug/files/netplug-1.2.9.2-multi-waitpid-sigchld.patch @@ -0,0 +1,65 @@ +# Rework SIGCHLD handler to anticipate multiple children dying while the +# handler is being executed. +# +# Without the patch if multiple SIGCHLD signals are received while the signal +# handler is being executed, the first will be left in pending state and the +# extra discarded. Due to the children processing logic in netplugd, the ones +# which were missed will never be waited, left as zombies. +# +# Implementation of the signal handler is following suggested handling in +# https://www.gnu.org/software/libc/manual/html_node/Merged-Signals.html +# +# The patch strives to change only the children wait logic in the signal +# handler, it doesn't try to enhance write call error handling or the unsafe +# call to exit/do_log. Also the formatting is left as it was in the original +# code. + +--- a/main.c ++++ b/main.c +@@ -153,17 +153,29 @@ static int child_handler_pipe[2]; + static void + child_handler(int sig, siginfo_t *info, void *v) + { +- struct child_exit ce; +- int ret; +- ssize_t s = 0; ++ int old_errno = errno; + + assert(sig == SIGCHLD); + +- ce.pid = info->si_pid; +- ret = waitpid(info->si_pid, &ce.status, 0); +- if (ret == info->si_pid) ++ while (1) + { +- s = write(child_handler_pipe[1], &ce, sizeof(ce)); ++ pid_t pid; ++ int status; ++ ++ do ++ { ++ errno = 0; ++ pid = waitpid(WAIT_ANY, &status, WNOHANG); ++ } while (pid <= 0 && errno == EINTR); ++ ++ if (pid <= 0) ++ { ++ break; ++ } ++ ++ struct child_exit ce = { .pid = pid, .status = status }; ++ ++ ssize_t s = write(child_handler_pipe[1], &ce, sizeof(ce)); + + if (s == -1) + { +@@ -171,6 +183,9 @@ child_handler(int sig, siginfo_t *info, void *v) + exit(1); + } + } ++ ++ errno = old_errno; ++ return; + } + + /* Poll the existing interface state, so we can catch any state diff --git a/sys-apps/netplug/netplug-1.2.9.2-r1.ebuild b/sys-apps/netplug/netplug-1.2.9.2-r3.ebuild similarity index 65% rename from sys-apps/netplug/netplug-1.2.9.2-r1.ebuild rename to sys-apps/netplug/netplug-1.2.9.2-r3.ebuild index 969fd2dbc4d3..a452c1ad1c3d 100644 --- a/sys-apps/netplug/netplug-1.2.9.2-r1.ebuild +++ b/sys-apps/netplug/netplug-1.2.9.2-r3.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -inherit eutils toolchain-funcs +inherit toolchain-funcs DESCRIPTION="Brings up/down ethernet ports automatically with cable detection" HOMEPAGE="https://www.red-bean.com/~bos/" @@ -11,34 +11,44 @@ SRC_URI="https://www.red-bean.com/~bos/netplug/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 arm ~mips ppc sparc x86" +KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86" IUSE="debug doc" DEPEND="doc? ( app-text/ghostscript-gpl media-gfx/graphviz )" RDEPEND="" +PATCHES=( + # Remove nested functions, #116140 + "${FILESDIR}/${PN}-1.2.9-remove-nest.patch" + + # Ignore wireless events + "${FILESDIR}/${PN}-1.2.9-ignore-wireless.patch" + + # Fix DOWNANDOUT problem #599400 + "${FILESDIR}/${P}-downandout.patch" + + # Wait for multiple children in SIGCHLD handler #631316 + "${FILESDIR}/${P}-multi-waitpid-sigchld.patch" +) + src_prepare() { # Remove debug flags from CFLAGS - if ! use debug; then + if ! use debug ; then sed -i -e "s/ -ggdb3//" Makefile || die fi # Remove -O3 and -Werror from CFLAGS sed -i -e "s/ -O3//" -e "s/ -Werror//" Makefile || die - # Remove nested functions, #116140 - epatch "${FILESDIR}/${PN}-1.2.9-remove-nest.patch" - - # Ignore wireless events - epatch "${FILESDIR}/${PN}-1.2.9-ignore-wireless.patch" + default } src_compile() { tc-export CC emake CC="${CC}" - if use doc; then + if use doc ; then emake -C docs/ fi } @@ -53,7 +63,7 @@ src_install() { newexe "${FILESDIR}/netplug-2" netplug dodir /etc/netplug - echo "eth*" > "${D}"/etc/netplug/netplugd.conf || die + echo "eth*" > "${ED}"/etc/netplug/netplugd.conf || die dodoc ChangeLog NEWS README TODO diff --git a/sys-apps/pmount/pmount-0.9.99_alpha-r5.ebuild b/sys-apps/pmount/pmount-0.9.99_alpha-r5.ebuild index 1ab89f8962df..c4a9fda505b5 100644 --- a/sys-apps/pmount/pmount-0.9.99_alpha-r5.ebuild +++ b/sys-apps/pmount/pmount-0.9.99_alpha-r5.ebuild @@ -11,7 +11,7 @@ SRC_URI="mirror://debian/pool/main/p/${PN}/${PN}_${PV/_/-}.orig.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ppc64 ~sh sparc x86" +KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ppc64 ~sh sparc x86" IUSE="crypt" RDEPEND=">=sys-apps/util-linux-2.17.2 diff --git a/sys-apps/rng-tools/rng-tools-5-r2.ebuild b/sys-apps/rng-tools/rng-tools-5-r2.ebuild index 50b73e605716..c204dd9c36db 100644 --- a/sys-apps/rng-tools/rng-tools-5-r2.ebuild +++ b/sys-apps/rng-tools/rng-tools-5-r2.ebuild @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/gkernel/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm ia64 ppc x86" +KEYWORDS="alpha amd64 arm ~arm64 ia64 ppc x86" IUSE="selinux" DEPEND="dev-libs/libgcrypt:0 diff --git a/sys-apps/rng-tools/rng-tools-6.6-r1.ebuild b/sys-apps/rng-tools/rng-tools-6.6-r1.ebuild index 7f64372574e8..7ad1a1edc80a 100644 --- a/sys-apps/rng-tools/rng-tools-6.6-r1.ebuild +++ b/sys-apps/rng-tools/rng-tools-6.6-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/nhorman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~x86" IUSE="jitterentropy nistbeacon selinux" DEPEND="dev-libs/libgcrypt:0 diff --git a/sys-apps/rng-tools/rng-tools-6.7.ebuild b/sys-apps/rng-tools/rng-tools-6.7.ebuild index 3259cb07f84b..e674b8de1d30 100644 --- a/sys-apps/rng-tools/rng-tools-6.7.ebuild +++ b/sys-apps/rng-tools/rng-tools-6.7.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/nhorman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~x86" IUSE="jitterentropy nistbeacon pkcs11 selinux" DEPEND="dev-libs/libgcrypt:0 diff --git a/sys-apps/setserial/setserial-2.17-r5.ebuild b/sys-apps/setserial/setserial-2.17-r5.ebuild index 3548932db089..dddb2d6e21da 100644 --- a/sys-apps/setserial/setserial-2.17-r5.ebuild +++ b/sys-apps/setserial/setserial-2.17-r5.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 @@ -13,7 +13,7 @@ SRC_URI=" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86" PATCHES=( "${FILESDIR}"/${P}-spelling.patch diff --git a/sys-apps/sysvinit/Manifest b/sys-apps/sysvinit/Manifest index a7aa2c886a04..85991333fc4f 100644 --- a/sys-apps/sysvinit/Manifest +++ b/sys-apps/sysvinit/Manifest @@ -1,3 +1,2 @@ -DIST sysvinit-2.91.tar.xz 114412 BLAKE2B 5e044f589f5001c2b5a30eda76bf5c24bb2a7e0d308b7027d54031848407e6b7667b59096044eb186a7f6a862521d4a670c05a17dcc929d07da6515058949606 SHA512 8dcf6de79b03567c300ef5f2b7dd211895745e231510d730092085a15f61f06f28cee7c504b0b022bdcb4b4e903f44946537d4fbb2b5069fb5d29bb099fd45f5 DIST sysvinit-2.93.tar.xz 117580 BLAKE2B 2e771b00dbdc73e76df9e78659aaa5e5fcbfda36290a1b5aa20a5a6fe3540c4616f2a235a668de30d33c620e2d2516da303537eda47b83b29b0844ad7aa77df4 SHA512 c80d07a674253d15ec6382cfaf792f47486e2e84ab9c913d3c9e03b590cf211177a3a14e168f4d1c9c2e97737221f7ac70a75633d90502837a6d29bdc4c48d72 DIST sysvinit-2.94.tar.xz 120900 BLAKE2B e45a95246325e93ef49f11573924216937e238761cb9f5979ae2b272838fb3280b1d12c9553992271f7926dc7c7bc18e352a8019a70f54c592971fe043453804 SHA512 8d3b7b777f7c37cf5eaf73d4cdfad8ac54c6115577052bd7ddf3588da8fb7d16b812ffaade0ce300c2c6b7d2acd6e7778130544befc171eab174ee8766b3ec50 diff --git a/sys-apps/sysvinit/files/sysvinit-2.88-shutdown-h.patch b/sys-apps/sysvinit/files/sysvinit-2.88-shutdown-h.patch deleted file mode 100644 index 716999c39c3b..000000000000 --- a/sys-apps/sysvinit/files/sysvinit-2.88-shutdown-h.patch +++ /dev/null @@ -1,65 +0,0 @@ -other inits have moved to not requiring the -h flag when used with -H/-P. -modify sysvinit to be the same since it really doesn't matter. - -https://bugs.gentoo.org/449354 - -patch by Doug Goldstein - ---- sysvinit-2.88dsf/man/shutdown.8 -+++ sysvinit-2.88dsf/man/shutdown.8 -@@ -66,16 +66,15 @@ - .\"}}} - .\"{{{ -h - .IP \fB\-h\fP --Halt or power off after shutdown. -+Equivalent to -P, unless -H is specified. - .\"}}} - .\"{{{ -P - .IP \fB\-P\fP --Halt action is to turn off the power. -+Action is to power-off the machine. - .\"}}} - .\"{{{ -H - .IP \fB\-H\fP --Modifier to the -h flag. Halt action is to halt or drop into boot --monitor on systems that support it. Must be used with the -h flag. -+Action is to halt the machine. - .\"}}} - .\"{{{ -f - .IP \fB\-f\fP ---- sysvinit-2.88dsf/src/shutdown.c -+++ sysvinit-2.88dsf/src/shutdown.c -@@ -514,9 +514,11 @@ - switch(c) { - case 'H': - halttype = "HALT"; -+ down_level[0] = '0'; - break; - case 'P': - halttype = "POWERDOWN"; -+ down_level[0] = '0'; - break; - case 'a': /* Access control. */ - useacl = 1; -@@ -532,6 +534,8 @@ - break; - case 'h': /* Halt after shutdown */ - down_level[0] = '0'; -+ if (!halttype) -+ halttype = "POWERDOWN"; - break; - case 'f': /* Don't perform fsck after next boot */ - fastboot = 1; -@@ -565,12 +569,6 @@ - } - } - -- if (NULL != halttype && down_level[0] != '0') { -- fprintf(stderr, "shutdown: -H and -P flags can only be used along with -h flag.\n"); -- usage(); -- exit(1); -- } -- - /* Do we need to use the shutdown.allow file ? */ - if (useacl && (fp = fopen(SDALLOW, "r")) != NULL) { - diff --git a/sys-apps/sysvinit/sysvinit-2.91-r1.ebuild b/sys-apps/sysvinit/sysvinit-2.91-r1.ebuild deleted file mode 100644 index 18216a730727..000000000000 --- a/sys-apps/sysvinit/sysvinit-2.91-r1.ebuild +++ /dev/null @@ -1,117 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs flag-o-matic - -DESCRIPTION="/sbin/init - parent of all processes" -HOMEPAGE="https://savannah.nongnu.org/projects/sysvinit" -SRC_URI="mirror://nongnu/${PN}/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86" -IUSE="selinux ibm static kernel_FreeBSD" - -CDEPEND=" - selinux? ( - >=sys-libs/libselinux-1.28 - )" -DEPEND="${CDEPEND} - virtual/os-headers" -RDEPEND="${CDEPEND} - selinux? ( sec-policy/selinux-shutdown ) - !::g' \ - -e '/^MAN[18]/s:\<(last|lastb|mesg|mountpoint|sulogin|utmpdump|wall)[.][18]\>::g' \ - src/Makefile || die - - # pidof has moved to >=procps-3.3.9 - sed -i -r \ - -e '/\/bin\/pidof/d' \ - -e '/^MAN8/s:\::g' \ - src/Makefile || die - - # Mung inittab for specific architectures - cd "${WORKDIR}" || die - cp "${FILESDIR}"/inittab-2.91 inittab || die "cp inittab" - local insert=() - use ppc && insert=( '#psc0:12345:respawn:/sbin/agetty 115200 ttyPSC0 linux' ) - use arm && insert=( '#f0:12345:respawn:/sbin/agetty 9600 ttyFB0 vt100' ) - use arm64 && insert=( 'f0:12345:respawn:/sbin/agetty 9600 ttyAMA0 vt100' ) - use hppa && insert=( 'b0:12345:respawn:/sbin/agetty 9600 ttyB0 vt100' ) - use s390 && insert=( 's0:12345:respawn:/sbin/agetty 38400 console dumb' ) - if use ibm ; then - insert+=( - '#hvc0:2345:respawn:/sbin/agetty -L 9600 hvc0' - '#hvsi:2345:respawn:/sbin/agetty -L 19200 hvsi0' - ) - fi - (use arm || use mips || use sh || use sparc) && sed -i '/ttyS0/s:#::' inittab - if use kernel_FreeBSD ; then - sed -i \ - -e 's/linux/cons25/g' \ - -e 's/ttyS0/cuaa0/g' \ - -e 's/ttyS1/cuaa1/g' \ - inittab #121786 - fi - if use x86 || use amd64 ; then - sed -i \ - -e '/ttyS[01]/s:9600:115200:' \ - inittab - fi - if [[ ${#insert[@]} -gt 0 ]] ; then - printf '%s\n' '' '# Architecture specific features' "${insert[@]}" >> inittab - fi -} - -src_compile() { - tc-export CC - append-lfs-flags - export DISTRO= #381311 - export VERSION="${PV}" - use static && append-ldflags -static - emake -C src $(usex selinux 'WITH_SELINUX=yes' '') -} - -src_install() { - emake -C src install ROOT="${D}" - dodoc README doc/* - - insinto /etc - doins "${WORKDIR}"/inittab - - # dead symlink - rm "${ED%/}"/usr/bin/lastb || die -} - -pkg_postinst() { - # Reload init to fix unmounting problems of / on next reboot. - # This is really needed, as without the new version of init cause init - # not to quit properly on reboot, and causes a fsck of / on next reboot. - if [[ ${ROOT} == / ]] ; then - if [[ -e /dev/initctl && ! -e /run/initctl ]]; then - ln -s /dev/initctl /run/initctl - fi - # Do not return an error if this fails - /sbin/telinit U &>/dev/null - fi - - elog "The last/lastb/mesg/mountpoint/sulogin/utmpdump/wall tools have been moved to" - elog "sys-apps/util-linux. The pidof tool has been moved to sys-process/procps." -} diff --git a/sys-apps/sysvinit/sysvinit-2.93.ebuild b/sys-apps/sysvinit/sysvinit-2.93.ebuild index fceb7ad651ef..9386bee6975e 100644 --- a/sys-apps/sysvinit/sysvinit-2.93.ebuild +++ b/sys-apps/sysvinit/sysvinit-2.93.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://nongnu/${PN}/${P/_/-}.tar.xz" LICENSE="GPL-2" SLOT="0" [[ "${PV}" == *beta* ]] || \ -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86" IUSE="selinux ibm static kernel_FreeBSD" CDEPEND=" diff --git a/sys-auth/Manifest.gz b/sys-auth/Manifest.gz index 55c10d063ea8..3dab3e3488b8 100644 Binary files a/sys-auth/Manifest.gz and b/sys-auth/Manifest.gz differ diff --git a/sys-auth/consolekit/consolekit-1.2.1.ebuild b/sys-auth/consolekit/consolekit-1.2.1.ebuild index f1a5d163a527..f10e1e4677d7 100644 --- a/sys-auth/consolekit/consolekit-1.2.1.ebuild +++ b/sys-auth/consolekit/consolekit-1.2.1.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 @@ -13,7 +13,7 @@ SRC_URI="https://github.com/${MY_PN}/${MY_PN}/releases/download/${PV}/${MY_P}.ta LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 s390 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" IUSE="acl cgroups debug doc evdev kernel_linux pam pm-utils policykit selinux test udev" COMMON_DEPEND=">=dev-libs/glib-2.40:2=[dbus] diff --git a/sys-auth/elogind/elogind-239.4.ebuild b/sys-auth/elogind/elogind-239.4.ebuild index f7c7b82cb333..37683d18cf76 100644 --- a/sys-auth/elogind/elogind-239.4.ebuild +++ b/sys-auth/elogind/elogind-239.4.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="CC0-1.0 LGPL-2.1+ public-domain" SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc x86" +KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~sparc x86" IUSE="+acl debug doc +pam +policykit selinux" COMMON_DEPEND=" diff --git a/sys-auth/elogind/elogind-241.2.ebuild b/sys-auth/elogind/elogind-241.2.ebuild index 2b18cff05a4b..9e90bc76496c 100644 --- a/sys-auth/elogind/elogind-241.2.ebuild +++ b/sys-auth/elogind/elogind-241.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="CC0-1.0 LGPL-2.1+ public-domain" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~amd64 ~arm arm64 ~ppc ~ppc64 ~sparc ~x86" IUSE="+acl debug doc +pam +policykit selinux" COMMON_DEPEND=" diff --git a/sys-auth/polkit/polkit-0.115-r3.ebuild b/sys-auth/polkit/polkit-0.115-r3.ebuild index 651390b98784..50f1115f70b2 100644 --- a/sys-auth/polkit/polkit-0.115-r3.ebuild +++ b/sys-auth/polkit/polkit-0.115-r3.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://www.freedesktop.org/software/${PN}/releases/${P}.tar.gz" LICENSE="LGPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 ~sh ~sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 ~sh ~sparc x86" IUSE="consolekit elogind examples gtk +introspection jit kde nls pam selinux systemd test" REQUIRED_USE="^^ ( consolekit elogind systemd )" diff --git a/sys-block/Manifest.gz b/sys-block/Manifest.gz index 977de6e2b458..e56dbb7dd86e 100644 Binary files a/sys-block/Manifest.gz and b/sys-block/Manifest.gz differ diff --git a/sys-block/thin-provisioning-tools/Manifest b/sys-block/thin-provisioning-tools/Manifest index 94797e60e210..3517c6ec0edb 100644 --- a/sys-block/thin-provisioning-tools/Manifest +++ b/sys-block/thin-provisioning-tools/Manifest @@ -1,5 +1,4 @@ DIST thin-provisioning-tools-0.4.1.tar.gz 186979 BLAKE2B d7e60b67f716c1398c4fa7230b3e0b57f62aa47cf6253806e4e3b932b0a71a489cf367ec9eb1e0a620dfab5a7ef0f4c2049a8ee5f5da0d94855fc3618dd03feb SHA512 e148296b55f7ff4ab85dc3b4679c7eab0ee8d56e61415397fc2e46f17bcc16a6a582c17343381320f8582bc4f12311af622d43aabe60e7abb25a882446016b7e -DIST thin-provisioning-tools-0.6.3.tar.gz 198697 BLAKE2B 0bc9ae1ee650f4f2c553ca72e0569bcf2590174cde2b89084ff4347d78f0dbd08c29bbc9629498f2b8fe2149fb27eeee2e0b5928890224b9ead224fd1a3161d1 SHA512 ccebf5bb1ac2da56a3dab5b7ce8d61f6a71f84b5168c2680618d724340bbf8cf97c935c1bce966a296331d9dc048a855d81775d2a39f10b4096ab3ee835286d9 DIST thin-provisioning-tools-0.7.0.tar.gz 230595 BLAKE2B 00238a682f80600e3a5bb6d0d2a9662bd0fd3ae5404d5895427f169640b469780f554c22c6a93187058e6399c76ba14a6fa8d73f2bb09aa79927dd458b58ffa9 SHA512 cb6c44c7215aadd72292d73e2374d8c0c28566adcb10c7a3de83576dbd28649ebba6e2cc59945a28921e423540969cb21f648c37e375d68f48e56a8be4a4c7b8 -DIST thin-provisioning-tools-0.7.5.tar.gz 278856 BLAKE2B f554a9001bc9dde3510e3702f184d48cd77ddfc04f16c7e054fea8a3a47fdce7796ca4fcdb8d155e3d22526535ae965e344b3c2735f6275a7702044536dff923 SHA512 65268cc0c68428fa89f039c097794f574ef79b1862de3208715b9180ba73b197f37d879b386b110c52d9f2d3e80fb069a8d48ee2939aa1fd2b88f2513babc763 DIST thin-provisioning-tools-0.7.6.tar.gz 285428 BLAKE2B af74eff6d435f00e347872786fee8627f02844af122a9f1bf9ffd00234ce5275d3a61d9b4204313a19813cadbc0197bbeb9a1bd92d55992c6d9a03a299579e29 SHA512 395035b6f59fafb1c0f3e68750611e04f10223bc8d57b257e25c28c928647d1d2c6e94014b64ed90eeae1151fc7e5d23cf1aa428716e343338cb3c8fe55ed704 +DIST thin-provisioning-tools-0.8.0.tar.gz 305009 BLAKE2B 1002916cd7b455be21091007f68d12455476efc234a3892607152085adab37db03cea9959cf76d6903dad680b209d87ec62745b268daa02ff11667d0e070da8c SHA512 b95f320f8da94b52327d7afece98020de65c7a3eccf9e6d8e8f89600b9f984e3d4ae928b52c04dd973d0d87885354567f6d392e9551e0e7394158406bae79891 diff --git a/sys-block/thin-provisioning-tools/files/thin-provisioning-tools-0.6.3-build-fixes.patch b/sys-block/thin-provisioning-tools/files/thin-provisioning-tools-0.6.3-build-fixes.patch deleted file mode 100644 index ae1148a1626f..000000000000 --- a/sys-block/thin-provisioning-tools/files/thin-provisioning-tools-0.6.3-build-fixes.patch +++ /dev/null @@ -1,57 +0,0 @@ -diff -purN a/Makefile.in b/Makefile.in ---- a/Makefile.in 2016-07-21 15:42:52.000000000 +0100 -+++ b/Makefile.in 2016-10-28 22:45:54.292931031 +0100 -@@ -108,7 +108,7 @@ CFLAGS?=@CFLAGS@ - CFLAGS+=-Wall - CFLAGS+=@LFS_FLAGS@ - CXXFLAGS?=@CXXFLAGS@ --CXXFLAGS+=-Wall -fno-strict-aliasing -std=gnu++98 -+CXXFLAGS+=-Wall -fno-strict-aliasing - CXXFLAGS+=@CXXOPTIMISE_FLAG@ - CXXFLAGS+=@CXXDEBUG_FLAG@ - CXXFLAGS+=@CXX_STRERROR_FLAG@ -diff -purN a/thin-provisioning/restore_emitter.cc b/thin-provisioning/restore_emitter.cc ---- a/thin-provisioning/restore_emitter.cc 2016-07-21 15:42:52.000000000 +0100 -+++ b/thin-provisioning/restore_emitter.cc 2016-10-28 22:49:32.662189111 +0100 -@@ -142,7 +142,7 @@ namespace { - bool device_exists(thin_dev_t dev) const { - uint64_t key[1] = {dev}; - device_tree::maybe_value v = md_->details_->lookup(key); -- return v; -+ return v.is_initialized(); - } - - metadata::ptr md_; -diff -purN a/thin-provisioning/thin_pool.cc b/thin-provisioning/thin_pool.cc ---- a/thin-provisioning/thin_pool.cc 2016-07-21 15:42:52.000000000 +0100 -+++ b/thin-provisioning/thin_pool.cc 2016-10-28 22:50:26.999256645 +0100 -@@ -232,7 +232,7 @@ bool - thin_pool::device_exists(thin_dev_t dev) const - { - uint64_t key[1] = {dev}; -- return md_->details_->lookup(key); -+ return md_->details_->lookup(key).is_initialized(); - } - - //---------------------------------------------------------------- -diff -purN a/unit-tests/Makefile.in b/unit-tests/Makefile.in ---- a/unit-tests/Makefile.in 2016-07-21 15:42:52.000000000 +0100 -+++ b/unit-tests/Makefile.in 2016-10-28 22:45:20.985893955 +0100 -@@ -25,7 +25,7 @@ GMOCK_FLAGS=\ - -Wno-unused-local-typedefs - - GMOCK_LIBS=\ -- -Llib -lpdata -lgmock -lpthread -laio -+ -Llib -lpdata -lgmock -lpthread -laio -lgtest - - GMOCK_DEPS=\ - $(wildcard $(GMOCK_DIR)/include/*.h) \ -@@ -80,7 +80,7 @@ TEST_OBJECTS=$(subst .cc,.gmo,$(TEST_SOU - sed 's,\([^ :]*\)\.o[ :]*,\1.o \1.gmo $* : Makefile ,g' < $*.$$$$ > $*.d; \ - $(RM) $*.$$$$ - --unit-tests/unit_tests: $(TEST_OBJECTS) lib/libgmock.a lib/libpdata.a -+unit-tests/unit_tests: $(TEST_OBJECTS) lib/libpdata.a - @echo " [LD] $<" - $(V)g++ $(CXXFLAGS) $(LDFLAGS) -o $@ $(TEST_OBJECTS) $(LIBS) $(GMOCK_LIBS) $(LIBEXPAT) - diff --git a/sys-block/thin-provisioning-tools/thin-provisioning-tools-0.6.3.ebuild b/sys-block/thin-provisioning-tools/thin-provisioning-tools-0.6.3.ebuild deleted file mode 100644 index fdca9783f125..000000000000 --- a/sys-block/thin-provisioning-tools/thin-provisioning-tools-0.6.3.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools flag-o-matic - -DESCRIPTION="A suite of tools for thin provisioning on Linux" -HOMEPAGE="https://github.com/jthornber/thin-provisioning-tools" -SRC_URI="https://github.com/jthornber/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="static test" - -LIB_DEPEND="dev-libs/expat[static-libs(+)] - dev-libs/libaio[static-libs(+)]" -RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )" -DEPEND="${RDEPEND} - static? ( ${LIB_DEPEND} ) - test? ( - || ( dev-lang/ruby:2.5 dev-lang/ruby:2.4 dev-lang/ruby:2.3 ) - >=dev-cpp/gtest-1.8.0 - dev-util/cucumber - dev-util/aruba - ) - dev-libs/boost" - -PATCHES=( "${FILESDIR}"/${P}-build-fixes.patch ) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - use static && append-ldflags -static - STRIP=true econf \ - --prefix="${EPREFIX}"/ \ - --bindir="${EPREFIX}"/sbin \ - --with-optimisation='' \ - $(use_enable test testing) -} - -src_compile() { - MAKEOPTS+=" V=" - default -} - -src_test() { - emake unit-test -} - -src_install() { - emake DESTDIR="${D}" DATADIR="${ED}/usr/share" install - dodoc README.md TODO.org -} diff --git a/sys-block/thin-provisioning-tools/thin-provisioning-tools-0.7.5.ebuild b/sys-block/thin-provisioning-tools/thin-provisioning-tools-0.8.0.ebuild similarity index 57% rename from sys-block/thin-provisioning-tools/thin-provisioning-tools-0.7.5.ebuild rename to sys-block/thin-provisioning-tools/thin-provisioning-tools-0.8.0.ebuild index 22a1164fc489..8b0eb97b2165 100644 --- a/sys-block/thin-provisioning-tools/thin-provisioning-tools-0.7.5.ebuild +++ b/sys-block/thin-provisioning-tools/thin-provisioning-tools-0.8.0.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 @@ -7,11 +7,17 @@ inherit autotools flag-o-matic DESCRIPTION="A suite of tools for thin provisioning on Linux" HOMEPAGE="https://github.com/jthornber/thin-provisioning-tools" -SRC_URI="https://github.com/jthornber/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +if [[ ${PV} != *9999 ]]; then + SRC_URI="https://github.com/jthornber/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux" +else + inherit git-r3 + EGIT_REPO_URI='https://github.com/jthornber/thin-provisioning-tools.git' +fi LICENSE="GPL-3" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux" IUSE="static test" LIB_DEPEND="dev-libs/expat[static-libs(+)] @@ -20,7 +26,11 @@ RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )" DEPEND="${RDEPEND} static? ( ${LIB_DEPEND} ) test? ( - || ( dev-lang/ruby:2.5 dev-lang/ruby:2.4 dev-lang/ruby:2.3 ) + || ( + dev-lang/ruby:2.6 + dev-lang/ruby:2.5 + dev-lang/ruby:2.4 + ) >=dev-cpp/gtest-1.8.0 dev-util/cucumber dev-util/aruba @@ -38,11 +48,13 @@ src_prepare() { src_configure() { use static && append-ldflags -static - STRIP=true econf \ - --prefix="${EPREFIX}"/ \ - --bindir="${EPREFIX}"/sbin \ - --with-optimisation='' \ + local myeconfargs=( + --prefix="${EPREFIX}"/ + --bindir="${EPREFIX}"/sbin + --with-optimisation='' $(use_enable test testing) + ) + STRIP=true econf "${myeconfargs[@]}" } src_compile() { @@ -55,6 +67,6 @@ src_test() { } src_install() { - emake DESTDIR="${D}" DATADIR="${ED%/}/usr/share" install + emake DESTDIR="${D}" DATADIR="${D%/}/usr/share" install dodoc README.md TODO.org } diff --git a/sys-block/thin-provisioning-tools/thin-provisioning-tools-9999.ebuild b/sys-block/thin-provisioning-tools/thin-provisioning-tools-9999.ebuild index 96d1cf0b494d..8b0eb97b2165 100644 --- a/sys-block/thin-provisioning-tools/thin-provisioning-tools-9999.ebuild +++ b/sys-block/thin-provisioning-tools/thin-provisioning-tools-9999.ebuild @@ -1,11 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 -[[ ${PV} == *9999 ]] && SCM="git-r3" -EGIT_REPO_URI='https://github.com/jthornber/thin-provisioning-tools.git' -inherit autotools flag-o-matic $SCM +inherit autotools flag-o-matic DESCRIPTION="A suite of tools for thin provisioning on Linux" HOMEPAGE="https://github.com/jthornber/thin-provisioning-tools" @@ -13,6 +11,9 @@ HOMEPAGE="https://github.com/jthornber/thin-provisioning-tools" if [[ ${PV} != *9999 ]]; then SRC_URI="https://github.com/jthornber/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux" +else + inherit git-r3 + EGIT_REPO_URI='https://github.com/jthornber/thin-provisioning-tools.git' fi LICENSE="GPL-3" @@ -25,14 +26,20 @@ RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )" DEPEND="${RDEPEND} static? ( ${LIB_DEPEND} ) test? ( - || ( dev-lang/ruby:2.5 dev-lang/ruby:2.4 dev-lang/ruby:2.3 ) + || ( + dev-lang/ruby:2.6 + dev-lang/ruby:2.5 + dev-lang/ruby:2.4 + ) >=dev-cpp/gtest-1.8.0 dev-util/cucumber dev-util/aruba ) dev-libs/boost" -PATCHES=( "${FILESDIR}"/${PN}-0.7.0-build-fixes.patch ) +PATCHES=( + "${FILESDIR}"/${PN}-0.7.0-build-fixes.patch +) src_prepare() { default @@ -41,11 +48,13 @@ src_prepare() { src_configure() { use static && append-ldflags -static - STRIP=true econf \ - --prefix="${EPREFIX}"/ \ - --bindir="${EPREFIX}"/sbin \ - --with-optimisation='' \ + local myeconfargs=( + --prefix="${EPREFIX}"/ + --bindir="${EPREFIX}"/sbin + --with-optimisation='' $(use_enable test testing) + ) + STRIP=true econf "${myeconfargs[@]}" } src_compile() { @@ -58,6 +67,6 @@ src_test() { } src_install() { - emake DESTDIR="${D}" DATADIR="${ED%/}/usr/share" install + emake DESTDIR="${D}" DATADIR="${D%/}/usr/share" install dodoc README.md TODO.org } diff --git a/sys-cluster/Manifest.gz b/sys-cluster/Manifest.gz index eef6387efd73..4dc89c13e3a2 100644 Binary files a/sys-cluster/Manifest.gz and b/sys-cluster/Manifest.gz differ diff --git a/sys-cluster/keepalived/keepalived-2.0.10-r1.ebuild b/sys-cluster/keepalived/keepalived-2.0.10-r1.ebuild index 08bd54714b96..b0e4108824ad 100644 --- a/sys-cluster/keepalived/keepalived-2.0.10-r1.ebuild +++ b/sys-cluster/keepalived/keepalived-2.0.10-r1.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=7 @@ -6,8 +6,8 @@ EAPI=7 inherit autotools systemd DESCRIPTION="A strong & robust keepalive facility to the Linux Virtual Server project" -HOMEPAGE="http://www.keepalived.org/" -SRC_URI="http://www.keepalived.org/software/${P}.tar.gz" +HOMEPAGE="https://www.keepalived.org/" +SRC_URI="https://www.keepalived.org/software/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" diff --git a/sys-cluster/keepalived/keepalived-2.0.11.ebuild b/sys-cluster/keepalived/keepalived-2.0.11.ebuild index 79fe86eb5c2b..e7e3f1f636d3 100644 --- a/sys-cluster/keepalived/keepalived-2.0.11.ebuild +++ b/sys-cluster/keepalived/keepalived-2.0.11.ebuild @@ -6,8 +6,8 @@ EAPI=7 inherit autotools systemd DESCRIPTION="A strong & robust keepalive facility to the Linux Virtual Server project" -HOMEPAGE="http://www.keepalived.org/" -SRC_URI="http://www.keepalived.org/software/${P}.tar.gz" +HOMEPAGE="https://www.keepalived.org/" +SRC_URI="https://www.keepalived.org/software/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" diff --git a/sys-cluster/keepalived/keepalived-2.0.12.ebuild b/sys-cluster/keepalived/keepalived-2.0.12.ebuild index 79fe86eb5c2b..e7e3f1f636d3 100644 --- a/sys-cluster/keepalived/keepalived-2.0.12.ebuild +++ b/sys-cluster/keepalived/keepalived-2.0.12.ebuild @@ -6,8 +6,8 @@ EAPI=7 inherit autotools systemd DESCRIPTION="A strong & robust keepalive facility to the Linux Virtual Server project" -HOMEPAGE="http://www.keepalived.org/" -SRC_URI="http://www.keepalived.org/software/${P}.tar.gz" +HOMEPAGE="https://www.keepalived.org/" +SRC_URI="https://www.keepalived.org/software/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" diff --git a/sys-cluster/keepalived/keepalived-2.0.13-r1.ebuild b/sys-cluster/keepalived/keepalived-2.0.13-r1.ebuild index 678e3d34ca81..fb23b0325af7 100644 --- a/sys-cluster/keepalived/keepalived-2.0.13-r1.ebuild +++ b/sys-cluster/keepalived/keepalived-2.0.13-r1.ebuild @@ -6,8 +6,8 @@ EAPI=7 inherit autotools systemd DESCRIPTION="A strong & robust keepalive facility to the Linux Virtual Server project" -HOMEPAGE="http://www.keepalived.org/" -SRC_URI="http://www.keepalived.org/software/${P}.tar.gz" +HOMEPAGE="https://www.keepalived.org/" +SRC_URI="https://www.keepalived.org/software/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" diff --git a/sys-cluster/keepalived/keepalived-2.0.13.ebuild b/sys-cluster/keepalived/keepalived-2.0.13.ebuild index 79fe86eb5c2b..e7e3f1f636d3 100644 --- a/sys-cluster/keepalived/keepalived-2.0.13.ebuild +++ b/sys-cluster/keepalived/keepalived-2.0.13.ebuild @@ -6,8 +6,8 @@ EAPI=7 inherit autotools systemd DESCRIPTION="A strong & robust keepalive facility to the Linux Virtual Server project" -HOMEPAGE="http://www.keepalived.org/" -SRC_URI="http://www.keepalived.org/software/${P}.tar.gz" +HOMEPAGE="https://www.keepalived.org/" +SRC_URI="https://www.keepalived.org/software/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" diff --git a/sys-cluster/keepalived/keepalived-2.0.15.ebuild b/sys-cluster/keepalived/keepalived-2.0.15.ebuild index 02e558b5285b..a00ef1ac4008 100644 --- a/sys-cluster/keepalived/keepalived-2.0.15.ebuild +++ b/sys-cluster/keepalived/keepalived-2.0.15.ebuild @@ -6,8 +6,8 @@ EAPI=7 inherit autotools systemd DESCRIPTION="A strong & robust keepalive facility to the Linux Virtual Server project" -HOMEPAGE="http://www.keepalived.org/" -SRC_URI="http://www.keepalived.org/software/${P}.tar.gz" +HOMEPAGE="https://www.keepalived.org/" +SRC_URI="https://www.keepalived.org/software/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" diff --git a/sys-cluster/openmpi/Manifest b/sys-cluster/openmpi/Manifest index abcc2e4b8cb0..cab90a779c0e 100644 --- a/sys-cluster/openmpi/Manifest +++ b/sys-cluster/openmpi/Manifest @@ -11,3 +11,4 @@ DIST openmpi-2.0.4.tar.bz2 8272983 BLAKE2B 7d0a392fbc8c896cdccefb9bf0ff83fbd8db8 DIST openmpi-2.1.6.tar.bz2 8324626 BLAKE2B 4aed4b397c0e0ead24ed5e9bbf45ee8f6719a7566d74405cccf119ddf535891ece91c04cbcad96be5a5d9805c620aa13a1b51c0edd67c049827357e7668008b9 SHA512 f552f47961e040476e7d2949cdd3e5a0b5ad74bea2b6532608117ec893473a160cd368251d1f439fd773f4846950857baf939e7b3586bac2a099495f7bc0e349 DIST openmpi-3.0.3.tar.bz2 9316109 BLAKE2B e67e649917911eff3286c0f3d15e181b30e4ac6061891f6e13c75570368edb943fff55e4d41ffaa4a095b2060c84d24f8c32975758ad4632bae1813accd9f516 SHA512 12bbc5add4160e732ac10f302106c4bc2fa61ef2cde955e1fdd4a7aaad44b022d6babdd4bd529f687bb03fc5e5c3804ba6b1869e9609c9725bc291524c8304d7 DIST openmpi-3.1.3.tar.bz2 9442937 BLAKE2B 40067e1694a106d96e5ba41884a6facec9e605b5afba03ab908e4cf124f35b0691f0ab626e5190cffebc9c28d05b11b5c6401a5aa39ac17ec04650ed29e0976e SHA512 700821df676de5f85ce2793298242dcaea73f585f89540e30999792a568f193545a9f9b2bcb3ea22effa3bf14744531c4eb5fc4c84a8d7bbe5e5fdd76ab3a04a +DIST openmpi-4.0.1.tar.bz2 9838152 BLAKE2B 75657940e37c23fbe88032f116588960c6bcf34c4928d77b45e8fde6fb51e814f521adb6c5155cb588fff9d1b382c2470873d90979a68598ff13e1aa205fc811 SHA512 09f35dc2e44b4f84aab9c5af9d81f90bbdb030e4d90800a5d3ffae88cb32b7faecc9bea0abb113da53c21f73e9d19db68f961f997bc47bdd28d83a87beee0731 diff --git a/sys-cluster/openmpi/openmpi-4.0.1.ebuild b/sys-cluster/openmpi/openmpi-4.0.1.ebuild new file mode 100644 index 000000000000..8aca8f380423 --- /dev/null +++ b/sys-cluster/openmpi/openmpi-4.0.1.ebuild @@ -0,0 +1,170 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +FORTRAN_NEEDED=fortran + +inherit cuda flag-o-matic fortran-2 java-pkg-opt-2 toolchain-funcs multilib multilib-minimal + +MY_P=${P/-mpi} +S=${WORKDIR}/${MY_P} + +IUSE_OPENMPI_FABRICS=" + openmpi_fabrics_ofed + openmpi_fabrics_knem + openmpi_fabrics_psm" + +IUSE_OPENMPI_RM=" + openmpi_rm_pbs + openmpi_rm_slurm" + +IUSE_OPENMPI_OFED_FEATURES=" + openmpi_ofed_features_control-hdr-padding + openmpi_ofed_features_udcm + openmpi_ofed_features_rdmacm + openmpi_ofed_features_dynamic-sl" + +DESCRIPTION="A high-performance message passing library (MPI)" +HOMEPAGE="http://www.open-mpi.org" +SRC_URI="http://www.open-mpi.org/software/ompi/v$(ver_cut 1-2)/downloads/${MY_P}.tar.bz2" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux" +IUSE="cma cuda cxx elibc_FreeBSD fortran heterogeneous ipv6 java numa romio + ${IUSE_OPENMPI_FABRICS} ${IUSE_OPENMPI_RM} ${IUSE_OPENMPI_OFED_FEATURES}" + +REQUIRED_USE="openmpi_rm_slurm? ( !openmpi_rm_pbs ) + openmpi_rm_pbs? ( !openmpi_rm_slurm ) + openmpi_fabrics_psm? ( openmpi_fabrics_ofed ) + openmpi_ofed_features_control-hdr-padding? ( openmpi_fabrics_ofed ) + openmpi_ofed_features_udcm? ( openmpi_fabrics_ofed ) + openmpi_ofed_features_rdmacm? ( openmpi_fabrics_ofed ) + openmpi_ofed_features_dynamic-sl? ( openmpi_fabrics_ofed )" + +CDEPEND=" + !sys-cluster/mpich + !sys-cluster/mpich2 + !sys-cluster/nullmpi + !sys-cluster/mpiexec + >=dev-libs/libevent-2.0.22[${MULTILIB_USEDEP},threads] + dev-libs/libltdl:0[${MULTILIB_USEDEP}] + >=sys-apps/hwloc-2.0.2[${MULTILIB_USEDEP}] + >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] + cuda? ( >=dev-util/nvidia-cuda-toolkit-6.5.19-r1:= ) + elibc_FreeBSD? ( || ( dev-libs/libexecinfo >=sys-freebsd/freebsd-lib-10.0 ) ) + openmpi_fabrics_ofed? ( sys-fabric/ofed:* ) + openmpi_fabrics_knem? ( sys-cluster/knem ) + openmpi_fabrics_psm? ( sys-fabric/infinipath-psm:* ) + openmpi_rm_pbs? ( sys-cluster/torque ) + openmpi_rm_slurm? ( sys-cluster/slurm ) + openmpi_ofed_features_rdmacm? ( sys-fabric/librdmacm:* )" + +RDEPEND="${CDEPEND} + java? ( >=virtual/jre-1.6 )" + +DEPEND="${CDEPEND} + java? ( >=virtual/jdk-1.6 )" + +MULTILIB_WRAPPED_HEADERS=( + /usr/include/mpi.h + /usr/include/openmpi/ompi/mpi/java/mpiJava.h +) + +pkg_setup() { + fortran-2_pkg_setup + java-pkg-opt-2_pkg_setup + + elog + elog "OpenMPI has an overwhelming count of configuration options." + elog "Don't forget the EXTRA_ECONF environment variable can let you" + elog "specify configure options if you find them necessary." + elog +} + +src_prepare() { + default + + # Necessary for scalibility, see + # http://www.open-mpi.org/community/lists/users/2008/09/6514.php + echo 'oob_tcp_listen_mode = listen_thread' \ + >> opal/etc/openmpi-mca-params.conf || die +} + +multilib_src_configure() { + if use java; then + # We must always build with the right -source and -target + # flags. Passing flags to javac isn't explicitly supported here + # but we can cheat by overriding the configure test for javac. + export ac_cv_path_JAVAC="$(java-pkg_get-javac) $(java-pkg_javac-args)" + fi + + ECONF_SOURCE=${S} econf \ + --sysconfdir="${EPREFIX}/etc/${PN}" \ + --enable-pretty-print-stacktrace \ + --enable-orterun-prefix-by-default \ + --with-hwloc="${EPREFIX}/usr" \ + --with-hwloc-libdir="${EPREFIX}/usr/$(get_libdir)" \ + --with-libltdl="${EPREFIX}/usr" \ + --with-libevent="${EPREFIX}/usr" \ + --with-libevent-libdir="${EPREFIX}/usr/$(get_libdir)" \ + --enable-mpi-fortran=$(usex fortran all no) \ + $(use_enable cxx mpi-cxx) \ + $(use_with cma) \ + $(multilib_native_use_with cuda cuda "${EPREFIX}"/opt/cuda) \ + $(use_enable romio io-romio) \ + $(use_enable heterogeneous) \ + $(use_enable ipv6) \ + $(multilib_native_use_enable java mpi-java) \ + $(multilib_native_use_with openmpi_fabrics_ofed verbs "${EPREFIX}"/usr) \ + $(multilib_native_use_with openmpi_fabrics_knem knem "${EPREFIX}"/usr) \ + $(multilib_native_use_with openmpi_fabrics_psm psm "${EPREFIX}"/usr) \ + $(multilib_native_use_enable openmpi_ofed_features_control-hdr-padding openib-control-hdr-padding) \ + $(multilib_native_use_enable openmpi_ofed_features_rdmacm openib-rdmacm) \ + $(multilib_native_use_enable openmpi_ofed_features_udcm openib-udcm) \ + $(multilib_native_use_enable openmpi_ofed_features_dynamic-sl openib-dynamic-sl) \ + $(multilib_native_use_with openmpi_rm_pbs tm) \ + $(multilib_native_use_with openmpi_rm_slurm slurm) +} + +multilib_src_test() { + # Doesn't work with the default src_test as the dry run (-n) fails. + emake -j1 check +} + +multilib_src_install() { + default + + # fortran header cannot be wrapped (bug #540508), workaround part 1 + if multilib_is_native_abi && use fortran; then + mkdir "${T}"/fortran || die + mv "${ED}"/usr/include/mpif* "${T}"/fortran || die + else + # some fortran files get installed unconditionally + rm \ + "${ED}"usr/include/mpif* \ + "${ED}"usr/bin/mpif* \ + "${ED}"usr/bin/oshfort \ + "${ED}"usr/bin/shmemfort \ + || die + fi +} + +multilib_src_install_all() { + # fortran header cannot be wrapped (bug #540508), workaround part 2 + if use fortran; then + mv "${T}"/fortran/mpif* "${ED}"/usr/include || die + fi + + # Remove la files, no static libs are installed and we have pkg-config + find "${ED}" -name '*.la' -delete || die + + if use java; then + local mpi_jar="${ED}"/usr/$(get_libdir)/mpi.jar + java-pkg_dojar "${mpi_jar}" + # We don't want to install the jar file twice + # so let's clean after ourselves. + rm "${mpi_jar}" || die + fi + einstalldocs +} diff --git a/sys-devel/Manifest.gz b/sys-devel/Manifest.gz index 70f2292d3ff3..d937a39ae28d 100644 Binary files a/sys-devel/Manifest.gz and b/sys-devel/Manifest.gz differ diff --git a/sys-devel/binutils/binutils-2.31.1-r4.ebuild b/sys-devel/binutils/binutils-2.31.1-r4.ebuild index 2f9f4183e3ac..be07db1d9525 100644 --- a/sys-devel/binutils/binutils-2.31.1-r4.ebuild +++ b/sys-devel/binutils/binutils-2.31.1-r4.ebuild @@ -45,7 +45,7 @@ case ${PV} in *) SRC_URI="mirror://gnu/binutils/binutils-${PV}.tar.xz" SLOT=$(get_version_component_range 1-2) - KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 m68k ~mips ~ppc ~ppc64 s390 sh ~sparc x86 ~amd64-fbsd ~x86-fbsd" + KEYWORDS="alpha amd64 arm arm64 ~hppa ~ia64 m68k ~mips ~ppc ~ppc64 s390 sh ~sparc x86 ~amd64-fbsd ~x86-fbsd" ;; esac diff --git a/sys-kernel/Manifest.gz b/sys-kernel/Manifest.gz index 768f8ad89643..d1c3f22b721e 100644 Binary files a/sys-kernel/Manifest.gz and b/sys-kernel/Manifest.gz differ diff --git a/sys-kernel/genkernel/genkernel-3.5.3.3.ebuild b/sys-kernel/genkernel/genkernel-3.5.3.3.ebuild index 6fd8131a13f3..24e861f4329a 100644 --- a/sys-kernel/genkernel/genkernel-3.5.3.3.ebuild +++ b/sys-kernel/genkernel/genkernel-3.5.3.3.ebuild @@ -43,7 +43,7 @@ then else SRC_URI="mirror://gentoo/${P}.tar.xz ${COMMON_URI}" - KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 s390 sh sparc x86" + KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 s390 sh sparc x86" fi DESCRIPTION="Gentoo automatic kernel building scripts" diff --git a/sys-kernel/gentoo-sources/Manifest b/sys-kernel/gentoo-sources/Manifest index f63dcb8781cf..5dbd992e5f34 100644 --- a/sys-kernel/gentoo-sources/Manifest +++ b/sys-kernel/gentoo-sources/Manifest @@ -16,6 +16,9 @@ DIST genpatches-4.14-119.extras.tar.xz 17496 BLAKE2B b7f181bc84d4b7b23e7f435a537 DIST genpatches-4.14-120.base.tar.xz 2682768 BLAKE2B 4a67dad8ff6ffd98354cdd43474a33b8ba4d57d62f8516abe680ca7b19b0606ac47a83833bdee5c07d5cc356d9968ba50c78065c9c54d2890a88ed0a29db1b3a SHA512 1abf7006a3ba0db287cc1d162eff54c24593eb987d762fe4f35bce28934baec641d7c35c88f5a2e9b120f9532cff0b83e8519268a72ac71ace143f9152ac3300 DIST genpatches-4.14-120.experimental.tar.xz 5224 BLAKE2B 6f2db6a718955610c0e850b6cc51237dce7c5f5908445468c835240545ab50bdf4f66384b57f17dfa0eb6a61fe558b35eb815c46821c13be75d41311387a6b61 SHA512 2e823cc5cbc006dbc35d9cd1b0b469ca96e18d74890c2fef426e46d03db3a66c150f7b4b275e4a14c54e5760de44b5e840689e06201fae4a88520566fe88dc36 DIST genpatches-4.14-120.extras.tar.xz 17500 BLAKE2B aa889c82d65acdeedcb53906447be7601ba406eaf4ac206cb16762c31f95395119af587665c758ea81f0c0681bd8f96f1919d156f52c9ed20f518eeed31aacf4 SHA512 eb5d9dc85b053c35a162494625f9fe9a607219ce979b9a7b9d478daa1e4ae0a39a585d00b170ece303c54b727dd44d149d7efd065b750890e91caa7b2f659e1d +DIST genpatches-4.14-121.base.tar.xz 2721472 BLAKE2B 22e3107593560f6b2f84415de9bf831c1a89bf5701700bd1355574837993a35a895c389f237419ee7cad878b3f87ff2dae085c186a35d3692eaefed8c6034b91 SHA512 410f5a16a6d181a3fdc2166f0fb943dc9b26a1bbdeb3350ec1fa6ff068a6b01e88b3ed21d21373b7ab6668600d73acab9c56321bc659bc0cd5edd862c90597d2 +DIST genpatches-4.14-121.experimental.tar.xz 5228 BLAKE2B ad0a09941992fca1dff6b400c7ea7f74f6d5ce3403bfe1a26f16884bc06bf4552f0cdb76b12681aaea1e576f48ef52dbc7397829558274a42414a51e438db6c7 SHA512 8c89c27860e697bcf3e0ec1e0dd764daa7b2083444ab405a4375ac82451b8bc50e6bb59f948eff5c0c6535bd8cf35bf81497e83221e6d5c968aaa7d55661487b +DIST genpatches-4.14-121.extras.tar.xz 17496 BLAKE2B 5b25b295ea3dfc5a1be4709feba9a4b73dafea2c26f9d73933c86b5402c174612ea1b09ce03a6780a213921684372952bcf027315ac5d4301b8b33315c5e64ec SHA512 ba09e089879cac9c9f2adabbe7adfe67acef3c1c7701a0e162f40947ea9f95a85774064da5114c3e841e2386735a801350fab810ed2a0458398047bec3afb1e9 DIST genpatches-4.14-90.base.tar.xz 2158040 BLAKE2B 1fe37fa012c110dc48f5291c149d23d544d9cf11d691b026c66bf0b632525d28dab5521fc399de34a83e9017522aa9114f95b7c0c23043ec27204af1e4c77caa SHA512 cf1dfa59b0c83ab4cf4f345087d9d89a03d32265cf9c4f3896474f2bfabe616f8a4d0bf8f7daf584c129023e9d4f47cf151bb7aa83d06d2ee440ecf9f8c6e72a DIST genpatches-4.14-90.experimental.tar.xz 5224 BLAKE2B cf3e25ad929a3822aff357164ce27b3dc790dbb2c7e9a75f9267ef0cac49d28bc2538b68b86ff34a81789f9ec7e8ed82d0a3a71151abbd2ac7e3d8475026c14a SHA512 beadc5e4b5161d231637123bbe54e5afbdb47bbf1bc2ef1b44c27560c81827e0f9960a851807b2accc3fc3d325d3634593d122113973786a7bd8f9d5a61884de DIST genpatches-4.14-90.extras.tar.xz 17484 BLAKE2B ec51340486f3fd053a228b1302c1a59b3b5100cbf55c96ab07e242479081ea05b2edac3c325df520bdb38daff689a68c63fd9abf0557e5399b681507605c3a01 SHA512 99ec816bd994a1d33d254373878cfa68acd0ddcf7a56237442247d222e41263f8fa1ba9d5494f32748a1990e3e20d0a4768f28e23f8148e83b884b4f637bd2b8 @@ -37,6 +40,9 @@ DIST genpatches-4.19-35.extras.tar.xz 17480 BLAKE2B 92f8254df7b97efe6130f5832076 DIST genpatches-4.19-36.base.tar.xz 1064736 BLAKE2B 824d99ad61000e08f311b7d869b5567096010dae2afdbf9ef8e9f1a63fee438e482f4b48ba17ad036d299edd3787da4c887e284433e1c0bac48bf85ce0bd1d17 SHA512 6919f2fd4ebf73d10a983edfaba8c616089bc16a9266fe4b3ad6bccd2a2bf4928439b781cd9fec695cb9f9e34c832f9dbd29d7d2ae7113a650b6ee7733b91489 DIST genpatches-4.19-36.experimental.tar.xz 5808 BLAKE2B edc9666d15e7e60336502f0857b3d250faed6741bc047b4569798c31c11d916d7f7dd65f518dbc96e44883c2e413cdd15a9a36f28320808a45276a407db42ec3 SHA512 7699ca5b3d7b5be98d9644a22565bf6d751de73f4c27e001d0c94698a624da700a0075e588ae1940e696df9286a39e2067bbad3fdd17f7d50342d5a10232fdc5 DIST genpatches-4.19-36.extras.tar.xz 17476 BLAKE2B 94d27e8f10b0f48b62a78bc537b7d84387043330d1508425c72052173fbbd308da0ccf32e4ed81ad8822a6155c5f9f2bb1396858f27050d08ef869c6f432bcac SHA512 d19869b2d25a9d0cf7e88acbcea0b03e388ccdb26711c69d9bbbed0d8a8b06436d1c36c1cded621bfbc9dbabae6e8210b432cbc981003cd1964fc42bb5731fe4 +DIST genpatches-4.19-37.base.tar.xz 1108896 BLAKE2B 09e685243e7cd6185b0e936fe25f5dfe618b32ba8838d3808bfb08897eae8e93590793e8934fbc6eff81e8ba15334f20df25deca43d8c6a7495baf655436faee SHA512 1a206c29b749ed2f44fe4baa0e050d7d1e922dae49782d4d69c9d8b15d0bb8419f55d7a97d04c30d5b66badd86cbdbc26a2ac94f30ef9f54e1c647500f4d0a32 +DIST genpatches-4.19-37.experimental.tar.xz 5812 BLAKE2B 7abe2aeab043b83cf70ed7af4ab38922ff22ab8fe7f4dc610127d33357c7e43297816639cd7e9ce4ea1b135455a8cd55aac253dd0f6499e0a655912ad215dda7 SHA512 5c2c1c971fdefef136acb560e97ea203d3ddd95b3aafd0438009b0e5bc7c100fe83fd4c2266a85baa355e0f3938adfc29f0a71fdc6720ae373c88e79033a2be6 +DIST genpatches-4.19-37.extras.tar.xz 17484 BLAKE2B 35ccf9e20f343d08d33bdefe2bced196268eff6cd16e76b546d08d838fe9dd9214815e140bc37e0f4d84111685d5d22e96369343ec81a789b33c9be57a92c94e SHA512 6f20d9a7c5b69a83cf743097c61d44897ecab508ce087bb009ac098f2d56d3daeb0cb68786088f8de31d572b58de3fe78d363f711f150a10d194de01c917f79a DIST genpatches-4.20-18.base.tar.xz 526776 BLAKE2B 4d0584ebf8c8dfce1f5e5d0154fa6530faafc2af86b865799de6a0780bfca06cd25a0706388b76c1decbb7f2003d44a444b7257c2771e0c651d8ab1b246d40c0 SHA512 4283d365e8814d9007bb52ac37dcb78751780fcb0aa114913a54e82c6629cdbf4bccfb360ce8c2f20aa097c5ef75bb0cb3726952dd2161f1f1bbc04fedb9c521 DIST genpatches-4.20-18.experimental.tar.xz 5804 BLAKE2B 23418d89907c42dd4f4bde70c2e1c11b6384f1b4e27f09a13dd77d02a37fa948c7f0d339ca349a06d2f686250a32de96eb1203e4278a585ff7dd74f62a498a58 SHA512 7de433bb60c55384d9bc1e94dec0add657e5f3210a4b03a4ddf58656833b246da609a2e117b05a2409d8b2f546c2edf65f91d5add273aa1d49da0de56cf48d48 DIST genpatches-4.20-18.extras.tar.xz 3280 BLAKE2B 4c3550102ec0c584649c3fa4f5f991896ffc8a24bc146d747f0575c898459bd1bf9b9b797f25fedbc4554080cf437fd1e83c0f0452a4e3f77c9eda255f87a12d SHA512 143f982f7ffe139b1dbde08872dbb3b001c9751aeef1cf6cdd69756e2f16132686ff3b3713064ca4ff88e5098425a407371fca99678452507374a7874cf8cd9e @@ -79,6 +85,12 @@ DIST genpatches-4.9-172.extras.tar.xz 17360 BLAKE2B fe956e62b48f07edb71d172063e2 DIST genpatches-4.9-173.base.tar.xz 2990728 BLAKE2B 505733a3fa141937323a67b48051ce18c9bc479e1ebccadfc7b957841f52756f18c8485206d14ab455f91208d3b1ad2522b149edac0bbaf5ce430dd7198cb523 SHA512 f8f22b6d6e52bc663d2d76d607a69fa97c337c774667fe6e34dd32fe3858fe4e8bf63018cf9c8ab80e22dd101437e959f6a0af5405c2c4b32f431ba21ba9645a DIST genpatches-4.9-173.experimental.tar.xz 106392 BLAKE2B 0f96f418df66c5844cf307b85039a78012171da19dbfbaa206e66f73d6a7df4f2996e84751724e4aa1fc66ef271c9998d8b4ce95d85d911831373d79ee6feaeb SHA512 155fbfab999614f1040d154b0f9d7b30672a85a2fc2e50135e9d6d1d453e95997331e06f52a3e7b435733005b7f2936574ba1a663973b7a55555347b1713c769 DIST genpatches-4.9-173.extras.tar.xz 17356 BLAKE2B 75c1b42962b1a3c010ed93b6084b1f5a6d4822e67f8ecf8300a22d08b75c1285115fee8d8bbfddbf232e1924155bed3625f09ddac47b673c1511f5ee51d01f6c SHA512 d801d8af58441061019dc30f355cac680e7867999baf62119fb11c50ba163a7a57ca303c4be2e432eb7ca72b6c3e7400ac01d271ab1037903629283bb74eae36 +DIST genpatches-4.9-174.base.tar.xz 3009672 BLAKE2B 64c372f36f9e99301ea9ea10877492111dd5a5909954d3a820df91eb2b70e4a8d3880020a9f30ce821d671e01e3d3241705ffefadc1c273ce277f6cb9778dfaa SHA512 7aa72153462a6eec2ff10ec4cda32d39cb4063d457d345b0329dc21ccee7e70810c732dcfea9806c063450ab7ecbd23e506b98a954d75d8c12f8b37b611380c8 +DIST genpatches-4.9-174.experimental.tar.xz 106428 BLAKE2B 66bfff8ce58a87cedbc743fbb7964cd94bf55c654d997ef0bf3d1c1be84f6ff5876ee8c82f3af4084fd4b2fa18aa4d12c60ba52ded9160974dd948738b1b9381 SHA512 8e0eef495e42b1c211b70e21abeb5d775583d619618bc3581d5fd5febf5b795f943c646a5b8fc22c8a38773427d569c18a4b7b8ed648ecf98d6c63a64cf1e0f0 +DIST genpatches-4.9-174.extras.tar.xz 17368 BLAKE2B 53a18f6d4ebdf69d1eb35fc3aa0a5cf6ce29e5078fbe9da1505e52f8306e5b03e074fcbae578ee3c8c21bd82d54ec011bb2365cd5acfc69aec1efaf75675aed9 SHA512 d4f764ae0ccf9b51501e45160032c9cb0847df2be6ae5d7b817bcb8a6a8f66318693a0bc3ded419b38e942b48b5b682a42b7f1bee53583a8d8ef925f1d2a87db +DIST genpatches-5.0-10.base.tar.xz 315312 BLAKE2B f0111b40e8e69fab61f144c1b27437a39af14d7588fe930f06556658e8dd67e33f8ad06fa849ebc36a62f6b6304738304bb0d769165ed191885bd6eaf4b6ad39 SHA512 105388b6b19d02b1a721d8dd4be420704b18feb0d4c3e56c18f55d8745f91ad03817c312a1b90dc4c9ce1e0085925ec23b9bd29c800bc0d6912f921766a5ee26 +DIST genpatches-5.0-10.experimental.tar.xz 5808 BLAKE2B 95fd9ad971c65ea67344ba9240cd46db760c4d1046398cf6fc79d7f2963f00eb113082622a0a19844e2977763f2bb3187b1501308339833ac30ee57f57ad7d3d SHA512 ec70b013014ebc37f2f448169ba0fa5175b3bd5c1aa4de238447852e8583fda15ee6a37dcdeaa9b220c9fc93fded4f35d7067bf16ebf93654bd0b924668e6b4a +DIST genpatches-5.0-10.extras.tar.xz 1724 BLAKE2B f7ece588fa22eea2b02d19cc257c5fae37be53f92eead17305e138a9ebe3c9bdbeb92bd5ca006e52dab31c73225f411fa7f0d860a7422aa835c7d9eafeed2d64 SHA512 b76a56c820b8f2d233445f1b9dd2bcbf4980d6ae52e544473579bb453bc6a352009b2dc7c2073befe71c8cc87d2d186e2d3d65ef7a036f3631a41e5cb13e3d07 DIST genpatches-5.0-4.base.tar.xz 45932 BLAKE2B 28869fd86ebf9e6ceb2b7732c035cf7382a4c7950a1dabadb0c84f7101e252c7d74825fdbcd228e67e3f88370b1e0ce396e2ddcc4dd4a4f40b0e5e52b33a30a7 SHA512 71572fbb1fdc1b461d1a66fe134f00e5f7ccd0d6e805a8ca7e8d9ce32d1f195ac24d329839f5d24fa80de9b05866a67a71a3ae60959cb48b2267ef109b513923 DIST genpatches-5.0-4.experimental.tar.xz 5804 BLAKE2B 6a69825e2830db123d74ae5579c2dc46987488dcdd33fe4fb8eed42ca48a300d6ee60371cd3103467381f4fce621d80e012f32e3640d44c737a9f9e72e777295 SHA512 0f6c8549213ec6499ecf8d29ada487d3d66fa8ec365bb1c3e47c33f39404749da422801309ee483c2ba388c8aec19ec3c99bc0e494ff873d16d2e5b4fa437d26 DIST genpatches-5.0-4.extras.tar.xz 1724 BLAKE2B 7c2514e44bffdbccfa8c30d1d56bca2f38b9c39e39f6484a269124fa9404e16692333b57d0133432a796b3de51db27b886caae989bc9e6672bf99ca50e754a35 SHA512 052ef7189a30df3c691472d5525b93d6d35b274273c12450f59d423bfc8d3130d9f7fcd7e7f5ba3c633847555957bae419c06af2fd9b51c03958edd8951d3efb diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.14.105-r1.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.14.105-r1.ebuild index 324c031b4c30..539de0881596 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.14.105-r1.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.14.105-r1.ebuild @@ -10,7 +10,7 @@ inherit kernel-2 detect_version detect_arch -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86" +KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86" HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" IUSE="experimental" diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.14.113.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.14.113.ebuild new file mode 100644 index 000000000000..653f9db871c8 --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.14.113.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="121" + +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" +IUSE="experimental" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.27-r1.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.19.27-r1.ebuild index 473c8be77420..6916cf6245f5 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.19.27-r1.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.27-r1.ebuild @@ -10,7 +10,7 @@ inherit kernel-2 detect_version detect_arch -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86" +KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86" HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" IUSE="experimental" diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.36.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.19.36.ebuild new file mode 100644 index 000000000000..6a8822145794 --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.36.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="37" + +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" +IUSE="experimental" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.4.176.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.4.176.ebuild index 9a16a575190d..fd9a2e8f31cc 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.176.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.176.ebuild @@ -10,7 +10,7 @@ inherit kernel-2 detect_version detect_arch -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86" +KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86" HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" IUSE="experimental" diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.9.162-r1.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.9.162-r1.ebuild index 37440dd4792b..7d178969d352 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.162-r1.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.9.162-r1.ebuild @@ -10,7 +10,7 @@ inherit kernel-2 detect_version detect_arch -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86" +KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86" HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" IUSE="experimental" diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.9.170.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.9.170.ebuild new file mode 100644 index 000000000000..748b6c4137af --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.9.170.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="174" + +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" +IUSE="experimental" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.0.9.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-5.0.9.ebuild new file mode 100644 index 000000000000..75d10230ffc3 --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-5.0.9.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="10" + +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" +IUSE="experimental" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest index ad690124ff27..2af9cfee04cc 100644 --- a/sys-kernel/git-sources/Manifest +++ b/sys-kernel/git-sources/Manifest @@ -4,3 +4,4 @@ DIST patch-5.1-rc2.patch 39225075 BLAKE2B 3b4efa4ac54a76f18ec1cea311c21f9599a5d3 DIST patch-5.1-rc3.patch 39886006 BLAKE2B f4777ad45eeef9281df9bb4255e2d70750e7cd63ba09ce78fd7a218f754ca6748efda3cb873facbf8316fc32920c755b8ca1f4eb066aeda8e177d4261e67107f SHA512 96d20dde7efdb73077939414752d37dd20623b7efca396a4a676b2fb2f7388a5eb552933e3007a7960e0c031145bdd7f630cc9b6380d57a6a5917553ae8e2fb0 DIST patch-5.1-rc4.patch 40198305 BLAKE2B 981cf99dcc6102bc45e240577b5ab5d566ede507cd753139d52255d4145a0c72c3eb07b1b4f275f65ebe13ac6f67ba74c93d99ab44aa8e33ee4779b977f87685 SHA512 a3b29cd28403893b76961e184391421ee14580645224d92e9fee38a067d4dc184594ee5204141c94ce0e891cf7ba0f66e123f09ad723263ac64d607a737b5df8 DIST patch-5.1-rc5.patch 40391650 BLAKE2B 3f6d76f528e9eed9611315362e1c78821968c28cd852fc8d02dd052a5175889583260557207a9b85bd4af4df5d4f65d2d83b222b7791fc6075684289f5184a2c SHA512 97f211fff49def57cc89aaac7f56d3421a2577d8fb8154ca3a7ccc4905a8c02a23e4e5a539ab8e6085fd98a6b8876c0db98535acef8b1a3be687f11005741cd5 +DIST patch-5.1-rc6.patch 40668793 BLAKE2B 5228d2bd81642b28247ef39d021c3baee9cb9f396aa09798574fa4d928815016f02578dc886777ae1c69a746032d2a86cc25655ae0a80f2fc0805a2b61454edc SHA512 cb134cef2d9cbad89a30cea29363059c6681a796e66347c350f08f1a2399442700e423b3f693a1cbdf573f147ae8251624b80cbb90cb787c35f8b4b688385eba diff --git a/sys-kernel/git-sources/git-sources-5.1_rc6.ebuild b/sys-kernel/git-sources/git-sources-5.1_rc6.ebuild new file mode 100644 index 000000000000..775e4fb8b978 --- /dev/null +++ b/sys-kernel/git-sources/git-sources-5.1_rc6.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +UNIPATCH_STRICTORDER="yes" +K_NOUSENAME="yes" +K_NOSETEXTRAVERSION="yes" +K_NOUSEPR="yes" +K_SECURITY_UNSUPPORTED="1" +K_BASE_VER="5.0" +K_EXP_GENPATCHES_NOUSE="1" +K_FROM_GIT="yes" +ETYPE="sources" +CKV="${PVR/-r/-git}" + +# only use this if it's not an _rc/_pre release +[ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}" +inherit kernel-2 +detect_version + +DESCRIPTION="The very latest -git version of the Linux kernel" +HOMEPAGE="https://www.kernel.org" +SRC_URI="${KERNEL_URI}" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="" + +K_EXTRAEINFO="This kernel is not supported by Gentoo due to its unstable and +experimental nature. If you have any issues, try a matching vanilla-sources +ebuild -- if the problem is not there, please contact the upstream kernel +developers at https://bugzilla.kernel.org and on the linux-kernel mailing list to +report the problem so it can be fixed in time for the next kernel release." + +RDEPEND="" +DEPEND="${RDEPEND} + >=sys-devel/patch-2.7.5" + +pkg_postinst() { + postinst_sources +} diff --git a/sys-libs/Manifest.gz b/sys-libs/Manifest.gz index d6ff2ac80bfd..15271e8a7d09 100644 Binary files a/sys-libs/Manifest.gz and b/sys-libs/Manifest.gz differ diff --git a/sys-libs/binutils-libs/binutils-libs-2.31.1-r4.ebuild b/sys-libs/binutils-libs/binutils-libs-2.31.1-r4.ebuild index c37485612711..95d81f846ce1 100644 --- a/sys-libs/binutils-libs/binutils-libs-2.31.1-r4.ebuild +++ b/sys-libs/binutils-libs/binutils-libs-2.31.1-r4.ebuild @@ -23,7 +23,7 @@ LICENSE="|| ( GPL-3 LGPL-3 )" # -r1 is a one-off subslot bump where SONAME changed for bug #666100 SLOT="0/${PV}-r1" IUSE="64-bit-bfd multitarget nls static-libs" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 m68k ~mips ~ppc ~ppc64 s390 sh ~sparc x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="alpha amd64 arm arm64 ~hppa ~ia64 m68k ~mips ~ppc ~ppc64 s390 sh ~sparc x86 ~amd64-fbsd ~x86-fbsd" COMMON_DEPEND="sys-libs/zlib[${MULTILIB_USEDEP}]" DEPEND="${COMMON_DEPEND} diff --git a/sys-libs/glibc/glibc-2.29-r2.ebuild b/sys-libs/glibc/glibc-2.29-r2.ebuild index 8f920eb85ac4..c0f14491fe70 100644 --- a/sys-libs/glibc/glibc-2.29-r2.ebuild +++ b/sys-libs/glibc/glibc-2.29-r2.ebuild @@ -1262,6 +1262,17 @@ glibc_do_src_install() { fi done + # HACK: If we're building for riscv, we need to additionally make sure that + # we can find the locale archive afterwards + case ${CTARGET} in + riscv*) + if [[ ! -e ${ED}/usr/lib/locale ]] ; then + dosym ../$(get_libdir)/locale /usr/lib/locale + fi + ;; + *) ;; + esac + cd "${S}" # Install misc network config files diff --git a/sys-libs/glibc/glibc-9999.ebuild b/sys-libs/glibc/glibc-9999.ebuild index b01dc8236359..4951020d5199 100644 --- a/sys-libs/glibc/glibc-9999.ebuild +++ b/sys-libs/glibc/glibc-9999.ebuild @@ -1263,6 +1263,17 @@ glibc_do_src_install() { fi done + # HACK: If we're building for riscv, we need to additionally make sure that + # we can find the locale archive afterwards + case ${CTARGET} in + riscv*) + if [[ ! -e ${ED}/usr/lib/locale ]] ; then + dosym ../$(get_libdir)/locale /usr/lib/locale + fi + ;; + *) ;; + esac + cd "${S}" # Install misc network config files diff --git a/sys-libs/libcap/libcap-2.26-r2.ebuild b/sys-libs/libcap/libcap-2.26-r2.ebuild index a526b4e0f9c5..7752354da9af 100644 --- a/sys-libs/libcap/libcap-2.26-r2.ebuild +++ b/sys-libs/libcap/libcap-2.26-r2.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://kernel/linux/libs/security/linux-privs/libcap2/${P}.tar.xz" # it's available under either of the licenses LICENSE="|| ( GPL-2 BSD )" SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux" IUSE="pam static-libs" # While the build system optionally uses gperf, we don't DEPEND on it because diff --git a/sys-libs/libnih/libnih-1.0.3-r3.ebuild b/sys-libs/libnih/libnih-1.0.3-r3.ebuild index 32d0d66bcd16..0aafd332a1b5 100644 --- a/sys-libs/libnih/libnih-1.0.3-r3.ebuild +++ b/sys-libs/libnih/libnih-1.0.3-r3.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://launchpad.net/${PN}/$(get_version_component_range 1-2)/${PV}/+d LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86" +KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86" IUSE="+dbus nls static-libs +threads" # The configure phase will check for valgrind headers, and the tests will use diff --git a/sys-libs/obstack-standalone/obstack-standalone-1.1.ebuild b/sys-libs/obstack-standalone/obstack-standalone-1.1.ebuild index 8a82593f24b2..2ebc2b7733b4 100644 --- a/sys-libs/obstack-standalone/obstack-standalone-1.1.ebuild +++ b/sys-libs/obstack-standalone/obstack-standalone-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 @@ -11,7 +11,7 @@ SRC_URI="https://github.com/pullmoll/musl-obstack/archive/v${PV}.tar.gz -> ${P}. LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 arm ~mips ppc x86" +KEYWORDS="amd64 arm ~arm64 ~mips ppc x86" IUSE="static-libs" DEPEND=" diff --git a/sys-power/Manifest.gz b/sys-power/Manifest.gz index e1f524d971b6..7b9bb7805348 100644 Binary files a/sys-power/Manifest.gz and b/sys-power/Manifest.gz differ diff --git a/sys-power/iasl/Manifest b/sys-power/iasl/Manifest index 63891496a237..a6c4a7b4b6e6 100644 --- a/sys-power/iasl/Manifest +++ b/sys-power/iasl/Manifest @@ -1,8 +1,6 @@ DIST acpica-unix-20160729.tar.gz 1556095 BLAKE2B 2785d343d7aa0e3cce83d762bb70f8a7e76221da5d0e803eac3253b4a26dcaf852e114eadf811f387c7c040aeeb794de8cae37c47d8c29968f8cd0a0d76ed4b6 SHA512 37b0439b03e8d811c8b14d0c7c89471989227fb78b462f585c6290431afecc5b258073e568dde8dc982fa959ebce4b4d51589ea997f0066e66d4785ce185ccf2 -DIST acpica-unix-20161222.tar.gz 1580428 BLAKE2B dcf44d1a19b51e43ad1a74b2ba5b4bfadeb83eca584ff5a5062aff9cc4b0a65153b1590d993b7bca602e35da747683d230ea56c380afbec3308fb83fdb03908a SHA512 ff733d210b3b013970d3f3a0bea45f346ca5cf78dd61b583d30114a69c80e8272af304d14248aa34e775e19bca1c2ddbbed1b4ba5e8ba660b28621a8ca45ae31 -DIST acpica-unix-20171215.tar.gz 1769116 BLAKE2B f15c1202244ce5f489d80240e6c89f7fda38a3c74cf0773c4530e265876f931502571e3086aabae0082654a2085f3d6e5eeed324fd892c199a91a8837fdb19e2 SHA512 4cd3755fe28344de3259dad5209a58c9548216ecaf50a830165a0ee8993af57d4b63836904faafd5f97b1651051ee2f17a908395e0a048bab20b13395fe0d3ff DIST acpica-unix-20180810.tar.gz 1797634 BLAKE2B 66b1c53874a7fa898fb042d0aac6001e623bb056ef17de46fc5a8e3ee5667178c47b5d8ecec194ebd8d2b0bdf947b5c85a1874c5d11a9ba3307a85418856ebdb SHA512 f37d8e0f1393b87cbfd9c6607104b05f85386583e4e5a5bcdbd2f049c122592a53e7cd56fe7da75e93bf3a424921fbc9291e7a39e06de80e6403abe042f869cd +DIST acpica-unix-20190215.tar.gz 1809671 BLAKE2B aff312636ff0f38e7708a251daad84689cb64abd0dd241d57063b5e229c50a3a8bd3e509c2fe9918da4ab9179b07d2207e01eb7c9f94670d0758eec73bb2714b SHA512 7a469097d82721ea55f86eeefa2a67fc6be6b3d2e0382bb830f64c7daf7d99e2bce60011fb68e54b3891939b1fed91da03de9d19c2d4020d3412656cce2c09b0 DIST acpitests-unix-20160729.tar.gz 1829061 BLAKE2B 8dacb39c477ff8ba8b68a3f061b74e90a128a90eb287b9febd57d6871ff0878dfe2eaf616d9881af2b0bca6c8db57d48711ad9009c6ceb1ceba321bed182a51c SHA512 bf6073092a0dfb208f1d4b13ff3a3c5335be8e1326b1e58acd41def1a402ab0d843600f616019d1dde6593db8c53c6876bd9d489360fe98c6a7bee95d9215600 -DIST acpitests-unix-20161222.tar.gz 1759278 BLAKE2B cb1b3ea882135e9ee87c4337df4710ac2e613b89f2606306c3ce68af049735f999ae6a37b1f75c112f0fb5f8bc5af6897bf18715f657c8dcac82a37637da2a57 SHA512 ff0435f40564a94ceb3bc6cfc11ac859a5467b650004238092d7f3e2f7d596e7eb2fb9d3c56f0860c8324d38fcbedf3c6f4bc3f0569f1148462b824c7c025408 -DIST acpitests-unix-20171215.tar.gz 2034932 BLAKE2B c36aaf6a8a7aadf54651f95486af918926b664069ed961993c3ee8a062a646a7bd4e40adeebe82a101a5997080b90762fa016724ed4be31af56086eb3c3b3ab9 SHA512 b405e87f18b15bd01540d32c021a7b900139abd7e698b55786ccbaf8536c5068087a8ba1e7adbb69e0954cdc6b347e9a88428f1e8f889e0e9eb3a472c11235f9 DIST acpitests-unix-20180810.tar.gz 2093850 BLAKE2B 519ce7807026dc11617ed9c34f294600ddae77a57a1fb76220da50da1bee56975373d583d51dfcdd81c8ccba3d5e735167b831bdb4669ab9cb2a1d9753d9261d SHA512 36c2527e8d670ccfb9a537b4944cfb8432c9638c1427e3c59f614c2ca43a66089228ecb74392301a07f266870e2d79bf0e2c671c6c7af06a4683bf97ac01ba54 +DIST acpitests-unix-20190215.tar.gz 2094957 BLAKE2B 3a31ae398650a1dc3ac70843c43868a35501cbe0376d1d2437a3568aad1fb63b3d83270653c009885b014894c69dcfff075bbf5d18290220067bcd1804a38097 SHA512 80060a61c80b01231b10e04dd65c2ab41d42824c439152cf128328890cee39ef597dc3f5bc535db4566cb322394bfce2760e1835df781d699818049cad5a4419 diff --git a/sys-power/iasl/iasl-20161222.ebuild b/sys-power/iasl/iasl-20161222.ebuild deleted file mode 100644 index 7bc182a44cec..000000000000 --- a/sys-power/iasl/iasl-20161222.ebuild +++ /dev/null @@ -1,127 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs flag-o-matic eutils - -MY_PN=acpica-unix -MY_P=${MY_PN}-${PV} -MY_TESTS_P=${MY_PN/ca/tests}-${PV} -DESCRIPTION="Intel ACPI Source Language (ASL) compiler" -HOMEPAGE="https://www.acpica.org/downloads/" -SRC_URI="http://www.acpica.org/sites/acpica/files/${MY_P}.tar.gz - test? ( http://www.acpica.org/sites/acpica/files/${MY_TESTS_P}.tar.gz )" - -LICENSE="iASL" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc ~x86 ~amd64-fbsd ~x86-fbsd" -IUSE="test" - -DEPEND="sys-devel/bison - sys-devel/flex" -RDEPEND="" - -S=${WORKDIR}/${MY_P} - -pkg_setup() { - if use test && has test ${FEATURES}; then - ewarn 'You have selected USE="test". This will install the test results' - ewarn "into /usr/share/${PF}/, compressed as a tarball." - ewarn 'The tests themselves will only rarely die, but the test results' - ewarn 'are interesting for arch testing. The tests may take quite some' - ewarn 'time to complete.' - fi -} - -PATCHES=( - "${FILESDIR}/${PN}-20140828-locale.patch" - "${FILESDIR}/${PN}-20140214-nostrip.patch" -) - -src_prepare() { - default - - find "${S}" -type f -name 'Makefile*' -print0 | \ - xargs -0 -I '{}' \ - sed -r -e 's:-\::g' -i '{}' \ - || die - - # BITS is tied to ARCH - please set appropriately if you add new keywords - if [[ $ARCH == @(amd64|amd64-fbsd) ]] ; then - export BITS=64 - else - export BITS=32 - fi -} - -src_configure() { - : -} - -src_compile() { - cd generate/unix || die - emake BITS=${BITS} -} - -src_test() { - aslts_test - #The aapits test currently fails, missing include probably. - #aapits_test -} - -src_install() { - cd generate/unix || die - emake install DESTDIR="${D}" BITS=${BITS} - default_src_install - #local bin - #for bin in $(<"${T}"/binlist) ; do - # dobin "${T}"/${bin} - #done - dodoc "${S}"/changes.txt - newdoc "${S}"/source/compiler/readme.txt compiler-readme.txt - newdoc "${S}"/generate/unix/readme.txt unix-readme.txt - newdoc "${S}"/generate/lint/readme.txt lint-readme.txt - newdoc "${S}"/source/compiler/new_table.txt compiler-new_table.txt - - if use test && has test ${FEATURES}; then - tb="${T}"/testresults.tar.bz2 - export ASLTSDIR="$(<"${T}"/asltdir)" - ebegin "Creating Test Tarball" - tar -cjf "${tb}" -C "${ASLTSDIR}"/tmp/RESULTS . || die "tar failed" - eend $? - dodir /usr/share/${PF} - insinto /usr/share/${PF} - doins ${tb} - fi - -} - -aslts_test() { - export ASL="${S}"/generate/unix/bin/iasl \ - acpiexec="${S}"/generate/unix/bin/acpiexec \ - ASLTSDIR="${WORKDIR}/${MY_TESTS_P}"/tests/aslts - export PATH="${PATH}:${ASLTSDIR}/bin" - echo "$ASLTSDIR" >"${T}"/asltdir - cd "${ASLTSDIR}" || die - edos2unix $(find . -type 'f') - make install || die "make install aslts test failed" - chmod +x $(find bin/ ! -regex 'ERROR_OPCODES|HOW_TO_USE|README' ) || die "chmod bin +x failed" - - #The below Do commands runs the tests twice and then dies if the results aren't - #Identical. - Do 1 || die "failed Do 1" - Do 2 || die "failed Do 2" -} - -aapits_test() { - mv "${WORKDIR}/${MY_TESTS_P}/tests/aapits" "${S}/tools/" || die "mv failed" - cd "${S}/tools/aapits" || die "cannot find ${S}/tools/aapits" - edos2unix $(find . -type 'f') - chmod +x $(find bin/ | sed -r -e '/\/[A-Z_]+$/d') || die "chmod bin +x failed" - make || die "make in aapits failed" - cd asl || die "cd asl failed" - make || die "make in asl failed" - cd ../bin || die - ./aapitsrun || die "aapitsrun failed" -} diff --git a/sys-power/iasl/iasl-20180810.ebuild b/sys-power/iasl/iasl-20180810.ebuild index b96e7473a7a7..edd9ba4e0f01 100644 --- a/sys-power/iasl/iasl-20180810.ebuild +++ b/sys-power/iasl/iasl-20180810.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=7 @@ -99,6 +99,7 @@ src_install() { aslts_test() { export ASL="${S}"/generate/unix/bin/iasl \ + acpibin="${S}"/generate/unix/bin/acpibin \ acpiexec="${S}"/generate/unix/bin/acpiexec \ ASLTSDIR="${WORKDIR}/${MY_TESTS_P}"/tests/aslts export PATH="${PATH}:${ASLTSDIR}/bin" diff --git a/sys-power/iasl/iasl-20171215.ebuild b/sys-power/iasl/iasl-20190215.ebuild similarity index 93% rename from sys-power/iasl/iasl-20171215.ebuild rename to sys-power/iasl/iasl-20190215.ebuild index 7bc182a44cec..edd9ba4e0f01 100644 --- a/sys-power/iasl/iasl-20171215.ebuild +++ b/sys-power/iasl/iasl-20190215.ebuild @@ -1,13 +1,13 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit toolchain-funcs flag-o-matic eutils +inherit toolchain-funcs flag-o-matic MY_PN=acpica-unix -MY_P=${MY_PN}-${PV} -MY_TESTS_P=${MY_PN/ca/tests}-${PV} +MY_P="${MY_PN}-${PV}" +MY_TESTS_P="${MY_PN/ca/tests}-${PV}" DESCRIPTION="Intel ACPI Source Language (ASL) compiler" HOMEPAGE="https://www.acpica.org/downloads/" SRC_URI="http://www.acpica.org/sites/acpica/files/${MY_P}.tar.gz @@ -22,7 +22,7 @@ DEPEND="sys-devel/bison sys-devel/flex" RDEPEND="" -S=${WORKDIR}/${MY_P} +S="${WORKDIR}/${MY_P}" pkg_setup() { if use test && has test ${FEATURES}; then @@ -73,7 +73,7 @@ src_test() { src_install() { cd generate/unix || die emake install DESTDIR="${D}" BITS=${BITS} - default_src_install + default #local bin #for bin in $(<"${T}"/binlist) ; do # dobin "${T}"/${bin} @@ -99,6 +99,7 @@ src_install() { aslts_test() { export ASL="${S}"/generate/unix/bin/iasl \ + acpibin="${S}"/generate/unix/bin/acpibin \ acpiexec="${S}"/generate/unix/bin/acpiexec \ ASLTSDIR="${WORKDIR}/${MY_TESTS_P}"/tests/aslts export PATH="${PATH}:${ASLTSDIR}/bin" diff --git a/sys-process/Manifest.gz b/sys-process/Manifest.gz index 68f96c8bb60a..0b6916a4b04f 100644 Binary files a/sys-process/Manifest.gz and b/sys-process/Manifest.gz differ diff --git a/sys-process/iotop/iotop-0.6.ebuild b/sys-process/iotop/iotop-0.6.ebuild index 5e69c958fc10..f79891ac8f90 100644 --- a/sys-process/iotop/iotop-0.6.ebuild +++ b/sys-process/iotop/iotop-0.6.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -PYTHON_COMPAT=( python2_7 python3_{5,6} ) +PYTHON_COMPAT=( python2_7 python3_{5,6,7} ) PYTHON_REQ_USE="ncurses(+)" inherit distutils-r1 linux-info diff --git a/virtual/Manifest.gz b/virtual/Manifest.gz index 6143d0f9e166..12decbc08ebb 100644 Binary files a/virtual/Manifest.gz and b/virtual/Manifest.gz differ diff --git a/virtual/pypy/pypy-7.1.1.ebuild b/virtual/pypy/pypy-7.1.1.ebuild new file mode 100644 index 000000000000..76abaa124207 --- /dev/null +++ b/virtual/pypy/pypy-7.1.1.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A virtual for PyPy Python implementation" +# pypy -c 'import sysconfig; print sysconfig.get_config_var("SOABI")' +# pypy 7.0.0: install directory changed to 'pypy2.7' +SLOT="0/41-py27" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="bzip2 gdbm ncurses sqlite tk" + +RDEPEND=" + || ( + >=dev-python/pypy-${PV}:${SLOT}[bzip2?,gdbm(-)?,ncurses?,sqlite?,tk?] + >=dev-python/pypy-bin-${PV}:${SLOT}[gdbm(-)?,sqlite?,tk?] + )" diff --git a/virtual/pypy3/pypy3-7.1.1.ebuild b/virtual/pypy3/pypy3-7.1.1.ebuild new file mode 100644 index 000000000000..ae7c453cde1b --- /dev/null +++ b/virtual/pypy3/pypy3-7.1.1.ebuild @@ -0,0 +1,16 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A virtual for PyPy3 Python implementation" +# pypy3 -c 'import sysconfig; print(sysconfig.get_config_var("SOABI"))' +SLOT="0/71-py36" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="bzip2 gdbm ncurses sqlite tk" + +RDEPEND=" + || ( + >=dev-python/pypy3-${PV}:${SLOT}[bzip2?,gdbm(-)?,ncurses?,sqlite?,tk?] + >=dev-python/pypy3-bin-${PV}:${SLOT}[gdbm(-)?,sqlite?,tk?] + )" diff --git a/www-apps/Manifest.gz b/www-apps/Manifest.gz index d275c9e5190f..0ba9fcf4f455 100644 Binary files a/www-apps/Manifest.gz and b/www-apps/Manifest.gz differ diff --git a/www-apps/drupal/Manifest b/www-apps/drupal/Manifest index 5061da861c8d..f8f1020feba0 100644 --- a/www-apps/drupal/Manifest +++ b/www-apps/drupal/Manifest @@ -1,2 +1,3 @@ DIST drupal-7.66.tar.gz 3300183 BLAKE2B 89d82c7018ecade0f798df92087d704ca9f5847780a1c3106e69afda62b43c414d57f01584e2869e72fc3687370b0bad84c2a7ffc0ca90537be55cb36ce6edac SHA512 c348eeeabfb5fef05b28aa87c9885231bd5e676b1ced64a2f51cc2aefa122b5ce142aae2ede5c1479608c893195450ae25168bae971b8e77cc741b18650f75c8 +DIST drupal-8.5.15.tar.gz 15828193 BLAKE2B 3a90ad525da3d81f555461e28decea7977cb51eda5f2e3be89dcd38f05b94cc6743967e19d21d89572babc05c38ab4d3585e4b7ffb52677b50b19844400fbcdf SHA512 aa09a28d7dcba51e193bba2a714eef091773d5e12a3a7388db8925c791a7153a4333db6150a8a68fe21b04009887dcf60f16f237a86d52bd2cc7d28ada301221 DIST drupal-8.6.15.tar.gz 17137689 BLAKE2B 098847cc4a3a52a6c5d9af23c31e5dca43c2f9cbb4ac0f7d2724cf6b6ce98598b75750742c695e666000843f6fa855e2ba414ceb0d9b46f9baff244cc583ef64 SHA512 9a8d9c73f7812b6deca4bcfee0e04d485bfac5efa6e9112379fdacc727ecf0e40703ce9b141c7414357c296eb621a015aa1c97ab8e6bbe4d35c38b2f1c323337 diff --git a/www-apps/drupal/drupal-8.5.15.ebuild b/www-apps/drupal/drupal-8.5.15.ebuild new file mode 100644 index 000000000000..a8514d07dfe0 --- /dev/null +++ b/www-apps/drupal/drupal-8.5.15.ebuild @@ -0,0 +1,84 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit webapp + +MY_PV=${PV:0:3}.0 +MY_P=${P/_/-} +S="${WORKDIR}/${MY_P}" + +DESCRIPTION="PHP-based open-source platform and content management system" +HOMEPAGE="https://www.drupal.org/" +SRC_URI="https://ftp.drupal.org/files/projects/${MY_P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~ppc ~x86" +IUSE="+accelerator +mysql postgres sqlite +uploadprogress" + +RDEPEND=" + dev-lang/php[gd,hash,pdo,postgres?,simplexml,xml] + virtual/httpd-php + accelerator? ( || + ( + dev-php/xcache + ( + >=dev-lang/php-5.5[opcache] + dev-php/pecl-apcu + ) + ) + ) + uploadprogress? ( dev-php/pecl-uploadprogress ) + mysql? ( + || ( + dev-lang/php[mysql] + dev-lang/php[mysqli] + ) + ) + sqlite? ( dev-lang/php[sqlite] ) +" + +need_httpd_cgi + +REQUIRED_USE="|| ( mysql postgres sqlite )" + +src_install() { + webapp_src_preinst + + local docs="LICENSE.txt README.txt core/MAINTAINERS.txt core/INSTALL.txt core/CHANGELOG.txt \ + core/INSTALL.mysql.txt core/INSTALL.pgsql.txt core/INSTALL.sqlite.txt core/UPDATE.txt " + + dodoc ${docs} + rm -f ${docs} core/INSTALL core/COPYRIGHT.txt core/LICENSE.txt || die + + cp sites/default/{default.settings.php,settings.php} || die + insinto "${MY_HTDOCSDIR}" + doins -r . + + dodir "${MY_HTDOCSDIR}"/files + webapp_serverowned "${MY_HTDOCSDIR}"/files + + webapp_configfile "${MY_HTDOCSDIR}"/sites/default/settings.php + webapp_configfile "${MY_HTDOCSDIR}"/.htaccess + + webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt + + webapp_src_install +} + +pkg_postinst() { + echo + ewarn "SECURITY NOTICE" + ewarn "If you plan on using SSL on your Drupal site, please consult the postinstall information:" + ewarn "\t# webapp-config --show-postinst ${PN} ${PV}" + echo + ewarn "If this is a new install, unless you want anyone with network access to your server to be" + ewarn "able to run the setup, you'll have to configure your web server to limit access to it." + echo + ewarn "If you're doing a new drupal-8 install, you'll have to copy /sites/default/default.services.yml" + ewarn "to /sites/default/services.yml and grant it write permissions to your web server." + ewarn "Just follow the instructions of the drupal setup and be sure to resolve any permissions issue" + ewarn "reported by the setup." + echo +} diff --git a/www-apps/gitea/Manifest b/www-apps/gitea/Manifest index 4ed8383cb255..9cdebf87da21 100644 --- a/www-apps/gitea/Manifest +++ b/www-apps/gitea/Manifest @@ -1 +1,2 @@ DIST gitea-1.7.4.tar.gz 20858340 BLAKE2B 81d896d313abe25bc1a5becd16249c2ce39ab45d9f40ccf3a565b6777847c7256d5b131f597be237df57513a207978e23480ad3c6087bbc588afe8bbcd46d5c9 SHA512 eede6d410529b1facf65061256e48fee7d459aa12d8c55346d3ad78004a45b7bf667536979fe92270a85901102fd9cddb8183490e16f912b742e799ca912e370 +DIST gitea-1.7.6.tar.gz 20868421 BLAKE2B bdd623c09f628a56df9e2c36958d94582707ffeaeb45960fd1ea0d50a8083458683f28ab2c398ac1e939ba6b011ba6a83cc02abd98e9b9ff131bda8fd224c66c SHA512 ad39969b5f1246875c006c72f2ea711772f29bfb9c687510efbd2089c9f88e9d218d14b03111715179b2e0f72f85731f22dd46fc022e224be73b7e73e798236b diff --git a/www-apps/gitea/files/gitea.confd-r1 b/www-apps/gitea/files/gitea.confd-r1 new file mode 100644 index 000000000000..19018c1c645a --- /dev/null +++ b/www-apps/gitea/files/gitea.confd-r1 @@ -0,0 +1,14 @@ +# Gitea configuration +GITEA_CONF="/etc/gitea/app.ini" + +# Gitea user +GITEA_USER="git" + +# Gitea group +GITEA_GROUP="git" + +# Gitea working directory +GITEA_WORK_DIR="/var/lib/gitea" + +# Gitea custom directory +GITEA_CUSTOM="${GITEA_WORK_DIR}/custom" diff --git a/www-apps/gitea/files/gitea.initd-r2 b/www-apps/gitea/files/gitea.initd-r2 new file mode 100644 index 000000000000..24cac0b41f23 --- /dev/null +++ b/www-apps/gitea/files/gitea.initd-r2 @@ -0,0 +1,22 @@ +#!/sbin/openrc-run +# Copyright 2016-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +description="Gitea, a self-hosted Git service" + +: ${GITEA_CONF:=/etc/gitea/app.ini} +: ${GITEA_USER:=git} +: ${GITEA_GROUP:=git} +: ${GITEA_WORK_DIR:=/var/lib/gitea} +: ${GITEA_CUSTOM:=${GITEA_WORK_DIR}/custom} + +command="/usr/bin/gitea web" +command_args="--config ${GITEA_CONF}" +command_background="true" +command_user="${GITEA_USER}:${GITEA_GROUP}" +error_log="/var/log/${RC_SVCNAME}/${RC_SVCNAME}.err" +output_log="/var/log/${RC_SVCNAME}/${RC_SVCNAME}.log" +pidfile="/run/${RC_SVCNAME}.pid" +required_files="${GITEA_CONF}" +start_stop_daemon_args="-e GITEA_WORK_DIR=${GITEA_WORK_DIR} \ + -e GITEA_CUSTOM=${GITEA_CUSTOM}" diff --git a/www-apps/gitea/files/gitea.service-r1 b/www-apps/gitea/files/gitea.service-r1 new file mode 100644 index 000000000000..73f924337fd6 --- /dev/null +++ b/www-apps/gitea/files/gitea.service-r1 @@ -0,0 +1,28 @@ +[Unit] +Description=Gitea service +Documentation=https://docs.gitea.io/ + +AssertPathIsDirectory=/var/lib/gitea +AssertPathIsReadWrite=/var/lib/gitea + +After=network.target +Requires=network.target +After=mysqld.service +After=postgresql.service +After=memcached.service +After=redis.service + +[Service] +User=git +Group=git + +Environment="GITEA_WORK_DIR=/var/lib/gitea GITEA_CUSTOM=/var/lib/gitea/custom" +WorkingDirectory=/var/lib/gitea +ExecStart=/usr/bin/gitea web --config /etc/gitea/app.ini + +Restart=always +PrivateTmp=true +Nice=5 + +[Install] +WantedBy=multi-user.target diff --git a/www-apps/gitea/gitea-1.7.6.ebuild b/www-apps/gitea/gitea-1.7.6.ebuild new file mode 100644 index 000000000000..f62591346a41 --- /dev/null +++ b/www-apps/gitea/gitea-1.7.6.ebuild @@ -0,0 +1,85 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit golang-vcs-snapshot systemd user + +EGO_PN="code.gitea.io/gitea" +KEYWORDS="~amd64 ~arm" + +DESCRIPTION="A painless self-hosted Git service" +HOMEPAGE="https://gitea.io" +SRC_URI="https://github.com/go-gitea/gitea/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +IUSE="pam sqlite" + +COMMON_DEPEND="pam? ( sys-libs/pam )" +DEPEND="${COMMON_DEPEND} + dev-go/go-bindata" +RDEPEND="${COMMON_DEPEND} + dev-vcs/git" + +DOCS=( custom/conf/app.ini.sample CONTRIBUTING.md README.md ) +S="${WORKDIR}/${P}/src/${EGO_PN}" + +pkg_setup() { + enewgroup git + enewuser git -1 /bin/bash /var/lib/gitea git +} + +gitea_make() { + local my_tags=( + bindata + $(usev pam) + $(usex sqlite 'sqlite sqlite_unlock_notify' '') + ) + local my_makeopt=( + DRONE_TAG=${PV} + TAGS="${my_tags[@]}" + ) + GOPATH=${WORKDIR}/${P}:$(get_golibdir_gopath) emake "${my_makeopt[@]}" "$1" +} + +src_compile() { + gitea_make generate + gitea_make build +} + +src_test() { + gitea_make test +} + +src_install() { + einstalldocs + dobin gitea + newconfd "${FILESDIR}"/gitea.confd-r1 gitea + newinitd "${FILESDIR}"/gitea.initd-r2 gitea + systemd_newunit "${FILESDIR}"/gitea.service-r1 gitea.service + diropts -m0750 -o git -g git + keepdir /etc/gitea + keepdir /var/lib/gitea /var/lib/gitea/custom /var/lib/gitea/data + keepdir /var/log/gitea +} + +pkg_postinst() { + ewarn "The configuration path has been changed to ${EROOT}/etc/gitea/app.ini." + ewarn "Please adapt the gitea-repositories hooks and ssh authorized_keys." + ewarn "Depending on your configuration you should run something like:" + ewarn "sed -i -e 's#/var/lib/gitea/conf/app.ini#/etc/gitea/app.ini#' \\" + ewarn " /var/lib/gitea/gitea-repositories/*/*/hooks/*/* \\" + ewarn " /var/lib/gitea/.ssh/authorized_keys" + + if [[ ! -e "${EROOT}/etc/gitea/app.ini" ]]; then + elog "No app.ini found, copying initial config over" + cp "${FILESDIR}"/app.ini "${EROOT}"/etc/gitea/ || die + chown git:git "${EROOT}"/etc/gitea/app.ini || die + elog "Please make sure that your 'git' user has the correct homedir (/var/lib/gitea)." + else + elog "app.ini found, please check the sample file for possible changes" + ewarn "Please note that environment variables have been changed:" + ewarn "GITEA_WORK_DIR is set to /var/lib/gitea (previous value: unset)" + ewarn "GITEA_CUSTOM is set to '\$GITEA_WORK_DIR/custom' (previous: /var/lib/gitea)" + fi +} diff --git a/www-client/Manifest.gz b/www-client/Manifest.gz index b2089feec2e2..6dddc98c4216 100644 Binary files a/www-client/Manifest.gz and b/www-client/Manifest.gz differ diff --git a/www-client/elinks/elinks-0.12_pre6-r1.ebuild b/www-client/elinks/elinks-0.12_pre6-r1.ebuild index 56f93c4ec855..8a039844213e 100644 --- a/www-client/elinks/elinks-0.12_pre6-r1.ebuild +++ b/www-client/elinks/elinks-0.12_pre6-r1.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=4 @@ -13,7 +13,7 @@ SRC_URI="http://elinks.or.cz/download/${MY_P}.tar.bz2 LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="bittorrent bzip2 debug finger ftp gc gopher gpm guile idn ipv6 javascript lua +mouse nls nntp perl ruby samba ssl unicode X xml zlib" RESTRICT="test" diff --git a/www-client/elinks/elinks-0.12_pre6-r4.ebuild b/www-client/elinks/elinks-0.12_pre6-r4.ebuild index b55304188fe7..7fe7f7638a79 100644 --- a/www-client/elinks/elinks-0.12_pre6-r4.ebuild +++ b/www-client/elinks/elinks-0.12_pre6-r4.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" @@ -12,7 +12,7 @@ SRC_URI="http://elinks.or.cz/download/${MY_P}.tar.bz2 LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="bittorrent bzip2 debug finger ftp gc gopher gpm guile idn ipv6 javascript libressl lua +mouse nls nntp perl ruby samba ssl tre unicode X xml zlib" RESTRICT="test" diff --git a/www-client/elinks/elinks-0.13_pre_pre20180225.ebuild b/www-client/elinks/elinks-0.13_pre_pre20180225.ebuild index 9a4f291cc061..d83e5634a103 100644 --- a/www-client/elinks/elinks-0.13_pre_pre20180225.ebuild +++ b/www-client/elinks/elinks-0.13_pre_pre20180225.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 @@ -15,7 +15,7 @@ S="${WORKDIR}/felinks-${EGIT_COMMIT}" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="bittorrent brotli bzip2 debug finger ftp gopher gpm guile idn ipv6 javascript libressl lua +mouse nls nntp perl ruby samba ssl tre unicode X xml zlib" diff --git a/www-client/falkon/falkon-3.1.0.ebuild b/www-client/falkon/falkon-3.1.0.ebuild index b246a3809b85..7de143001d26 100644 --- a/www-client/falkon/falkon-3.1.0.ebuild +++ b/www-client/falkon/falkon-3.1.0.ebuild @@ -9,7 +9,7 @@ inherit kde5 if [[ ${KDE_BUILD_TYPE} != live ]]; then SRC_URI="mirror://kde/stable/${PN}/${PV%.0}/${P}.tar.xz" - KEYWORDS="~amd64 ~arm64 ~x86" + KEYWORDS="amd64 ~arm64 ~x86" fi DESCRIPTION="Cross-platform web browser using QtWebEngine" diff --git a/www-client/google-chrome-beta/Manifest b/www-client/google-chrome-beta/Manifest index 6074e6d31a6a..c48f0a8fc5bb 100644 --- a/www-client/google-chrome-beta/Manifest +++ b/www-client/google-chrome-beta/Manifest @@ -1 +1 @@ -DIST google-chrome-beta_74.0.3729.75-1_amd64.deb 59498310 BLAKE2B d5d078ed078f93b94ad4915c76d35e41f0d3512829dfa5be4835cb995a0109b26fe5d041ed3f4cef9714fc49e0c670bbf5c3a3015a74cd68d76a509c47fbfa78 SHA512 cb03b85d8041b4cd577a384efdbcc00fd1c9c839f6776c3b2534008b384c163e183e2a3e1d77cd34b193f24793a342ec789ba376100c8981b4ba98ddb87ffd99 +DIST google-chrome-beta_74.0.3729.91-1_amd64.deb 59744586 BLAKE2B faa45324e0368e0439f6b3e6c2186a496a1a57614007131d488715c78c57ef48b6eefed27ab41ed3a30b4703712bb72468c243a1a5eaf7d9b7eb527e0bdcc6d2 SHA512 43a1dc5b90775b26c37ffba3f5591a05a6e0637d337c0d2aadc3f158b8e9d1fc33655cc07974b7c2670d76b243ba1225f6bf18b2e70c056ec0db28b90d65b100 diff --git a/www-client/google-chrome-beta/google-chrome-beta-74.0.3729.75.ebuild b/www-client/google-chrome-beta/google-chrome-beta-74.0.3729.91.ebuild similarity index 100% rename from www-client/google-chrome-beta/google-chrome-beta-74.0.3729.75.ebuild rename to www-client/google-chrome-beta/google-chrome-beta-74.0.3729.91.ebuild diff --git a/www-client/google-chrome-unstable/Manifest b/www-client/google-chrome-unstable/Manifest index d42e4d8a2b34..0137f98d8fa6 100644 --- a/www-client/google-chrome-unstable/Manifest +++ b/www-client/google-chrome-unstable/Manifest @@ -1 +1 @@ -DIST google-chrome-unstable_75.0.3759.4-1_amd64.deb 60072262 BLAKE2B d66269dca89ebbff0ae86c7d02f524050d31ac0e4be50a477e55d18dd5ccc2cb092b0808e89fe4e18ff951ffceceb9202536b5bdf32c15e691e2ed309c075d4b SHA512 a806d3b0918f879829da070d8a5216fb7711f902eff141287c6a82db7de908546bc32f886ce6a8e38fbc9e3ae4fbeb38c0245d4c15b8953472a608d8328bdc69 +DIST google-chrome-unstable_75.0.3766.2-1_amd64.deb 60650572 BLAKE2B 28d0b7d81cdf3b5579c5e31175414d4a5907b7568c3aa80d2e62eb82c885c13651621675249e19a84673ce8ed084817444135a2eb46d88c44bba38a27dd3b249 SHA512 0fc2b14336c4f7ef8b24311998ec011bf614f3722b667c9b3b0d7bc63c3df82874bfff6d3f63943dec8df128a3119f2749d04f93d742576a81253595184d9662 diff --git a/www-client/google-chrome-unstable/google-chrome-unstable-75.0.3759.4.ebuild b/www-client/google-chrome-unstable/google-chrome-unstable-75.0.3766.2.ebuild similarity index 100% rename from www-client/google-chrome-unstable/google-chrome-unstable-75.0.3759.4.ebuild rename to www-client/google-chrome-unstable/google-chrome-unstable-75.0.3766.2.ebuild diff --git a/www-client/opera/Manifest b/www-client/opera/Manifest index 251b31279e15..9f0e33db20a4 100644 --- a/www-client/opera/Manifest +++ b/www-client/opera/Manifest @@ -2,6 +2,4 @@ DIST opera-12.16-1860.amd64.freebsd.tar.xz 13312684 BLAKE2B 2c4cd52a07999c5beabe DIST opera-12.16-1860.i386.freebsd.tar.xz 13385696 BLAKE2B 35fef5a5d1784941ce11ff3fed440d9c8f83ce5f9a0a8aad3f68deb470a7d82accfe7c9c93be225b458c0fc8e738ca7841d3d14abcaa201801321f3280f2b58f SHA512 0bb2c0548765ea476cdb8be6c84faf1d60dddb5a2c08b7312027f4cd17fa8ebd4fbc1a97657bbcb0ac07733e5f3b340b181a307a778c38543140adbfe7f8b844 DIST opera-12.16-1860.i386.linux.tar.xz 13154668 BLAKE2B 7f9ef54f44bc143c13173bce92543351c39288058455baf3fde19f9f8766c9acd72971216c8c340fd89e918f18e89320eb8d13c4be9ec71635e2073c94c90067 SHA512 a13ec53311e3e78f35103a9dd5337c0e9a555362860213080211ee9d21de88fbd6aae03bed20b7515874d5a09dfbab108954213745fb82175f5e48e555152613 DIST opera-12.16-1860.x86_64.linux.tar.xz 14018800 BLAKE2B e0cb727ea79868d1c3c692d445fc8949f554c3bbe2bf3c9f222885891458cab7af1a29096cd3caf6936e83068841dda4bff5b8a17eb55a86bebe39ce2b270183 SHA512 c1289f352ea5fc8133b105771f48fdc56ccd770920330b1a0ed939ff909abc68081447673572eabeb1aae6db5194b6ab35c93afad78a91d8f7a9a0f91e81ef8b -DIST opera-stable_58.0.3135.127_amd64.deb 70953530 BLAKE2B 9d3cebbedcda9472e01edb8561828a3be280f2f1bf5b9bb49ed25640fdd2525999bbeef8935a9847d37be8a3151ec39fd4c56b7e898ba1f7a365adceef93bf6d SHA512 9dc75702f735862034012dc158608048115145308d8f8b11e523ff7d09a1dea0773a681c11a7d78b7cff66c65fef5559825959104e36f9ac5723845319a1f7e2 -DIST opera-stable_60.0.3255.27_amd64.deb 66428142 BLAKE2B de5ca966ca661110ba38120ea4d6210172020e21fcb81e4e0e431fe45d0f0b35d54559c5b44a8ac5af751ac25c3923ac990ed438c46aad86826e1607758b7d47 SHA512 8e9568979006eeeec89bd0a5df5a6c7e182c602f1a8e2b4f058899635d5348ce0f412fe6b157f280177a94c230ac32a0fd638779be97e0fc85c67e466266e93d -DIST opera-stable_60.0.3255.56_amd64.deb 66847936 BLAKE2B 281b3b713747f539487ec90dfacb93586f325da288a11b42bfd608c987d6276e285936c33b245c35e15e23dd112604d3da9ffd5b653554f570500cb9190d1ed3 SHA512 ba54127915a14b93878f0f4fc7e583c7287012daedade3169a17e8aafb6c422b5b2e1b7c26e6894f0bfec62cc5bbfbdcfe6413b3c69943cd38310df4b10fdae8 +DIST opera-stable_60.0.3255.59_amd64.deb 66570178 BLAKE2B 0dcd5890c03a4d919c7ee9df6755f603196626f075b15b94610d68738043f1488bd4d11a06150150c3936a3771edc0f6d12bbb9c4c0e4811bf9c1b4ba12cf2c5 SHA512 d4cad9ea145d603be9541e664e601dd10f4042e894a4362b346bc105c143e2a40d82d6fbb0f3a60b363e435248d85d440674dee3a87eb1a59339d2be7ec97eae diff --git a/www-client/opera/opera-60.0.3255.27.ebuild b/www-client/opera/opera-60.0.3255.27.ebuild deleted file mode 100644 index 28c78dd8a552..000000000000 --- a/www-client/opera/opera-60.0.3255.27.ebuild +++ /dev/null @@ -1,112 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -CHROMIUM_LANGS=" - be bg bn ca cs da de el en-GB 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 gnome2-utils 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} -OPERA_HOME="usr/$(get_libdir)/${PN}" - -src_unpack() { - unpack_deb ${A} -} - -src_prepare() { - epatch_user - - 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() { - mv * "${D}" || die - dosym ../$(get_libdir)/${PN}/${PN} /usr/bin/${PN} - fperms 4711 /usr/$(get_libdir)/${PN}/opera_sandbox -} - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postrm() { - gnome2_icon_cache_update - xdg_desktop_database_update - xdg_mimeinfo_database_update -} - -pkg_postinst() { - gnome2_icon_cache_update - xdg_desktop_database_update - xdg_mimeinfo_database_update -} diff --git a/www-client/opera/opera-60.0.3255.56.ebuild b/www-client/opera/opera-60.0.3255.56.ebuild deleted file mode 100644 index 28c78dd8a552..000000000000 --- a/www-client/opera/opera-60.0.3255.56.ebuild +++ /dev/null @@ -1,112 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -CHROMIUM_LANGS=" - be bg bn ca cs da de el en-GB 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 gnome2-utils 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} -OPERA_HOME="usr/$(get_libdir)/${PN}" - -src_unpack() { - unpack_deb ${A} -} - -src_prepare() { - epatch_user - - 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() { - mv * "${D}" || die - dosym ../$(get_libdir)/${PN}/${PN} /usr/bin/${PN} - fperms 4711 /usr/$(get_libdir)/${PN}/opera_sandbox -} - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postrm() { - gnome2_icon_cache_update - xdg_desktop_database_update - xdg_mimeinfo_database_update -} - -pkg_postinst() { - gnome2_icon_cache_update - xdg_desktop_database_update - xdg_mimeinfo_database_update -} diff --git a/www-client/opera/opera-58.0.3135.127.ebuild b/www-client/opera/opera-60.0.3255.59.ebuild similarity index 100% rename from www-client/opera/opera-58.0.3135.127.ebuild rename to www-client/opera/opera-60.0.3255.59.ebuild diff --git a/www-plugins/Manifest.gz b/www-plugins/Manifest.gz index fc3281d575ee..f9e47258b927 100644 Binary files a/www-plugins/Manifest.gz and b/www-plugins/Manifest.gz differ diff --git a/www-plugins/chrome-binary-plugins/Manifest b/www-plugins/chrome-binary-plugins/Manifest index 0a96fa513942..c5a73aa9c251 100644 --- a/www-plugins/chrome-binary-plugins/Manifest +++ b/www-plugins/chrome-binary-plugins/Manifest @@ -1,3 +1,3 @@ -DIST google-chrome-beta_74.0.3729.75-1_amd64.deb 59498310 BLAKE2B d5d078ed078f93b94ad4915c76d35e41f0d3512829dfa5be4835cb995a0109b26fe5d041ed3f4cef9714fc49e0c670bbf5c3a3015a74cd68d76a509c47fbfa78 SHA512 cb03b85d8041b4cd577a384efdbcc00fd1c9c839f6776c3b2534008b384c163e183e2a3e1d77cd34b193f24793a342ec789ba376100c8981b4ba98ddb87ffd99 +DIST google-chrome-beta_74.0.3729.91-1_amd64.deb 59744586 BLAKE2B faa45324e0368e0439f6b3e6c2186a496a1a57614007131d488715c78c57ef48b6eefed27ab41ed3a30b4703712bb72468c243a1a5eaf7d9b7eb527e0bdcc6d2 SHA512 43a1dc5b90775b26c37ffba3f5591a05a6e0637d337c0d2aadc3f158b8e9d1fc33655cc07974b7c2670d76b243ba1225f6bf18b2e70c056ec0db28b90d65b100 DIST google-chrome-stable_73.0.3683.103-1_amd64.deb 57642824 BLAKE2B b1df10d4367d23ef075005c6496655d38da8c013e1f860289b7be19260ca56d6d49153fb239c0781e7babc46138653493722d4badca023ee14e07e8d7afc2fed SHA512 19a1719ef9b1946401749f0ede6ee381ecbdeeb3e03afa474fd3122de6e6a5db983c24af18c81d135d703bd30b95673dc277c64fc19127b02ce64f795fc79cd1 -DIST google-chrome-unstable_75.0.3759.4-1_amd64.deb 60072262 BLAKE2B d66269dca89ebbff0ae86c7d02f524050d31ac0e4be50a477e55d18dd5ccc2cb092b0808e89fe4e18ff951ffceceb9202536b5bdf32c15e691e2ed309c075d4b SHA512 a806d3b0918f879829da070d8a5216fb7711f902eff141287c6a82db7de908546bc32f886ce6a8e38fbc9e3ae4fbeb38c0245d4c15b8953472a608d8328bdc69 +DIST google-chrome-unstable_75.0.3766.2-1_amd64.deb 60650572 BLAKE2B 28d0b7d81cdf3b5579c5e31175414d4a5907b7568c3aa80d2e62eb82c885c13651621675249e19a84673ce8ed084817444135a2eb46d88c44bba38a27dd3b249 SHA512 0fc2b14336c4f7ef8b24311998ec011bf614f3722b667c9b3b0d7bc63c3df82874bfff6d3f63943dec8df128a3119f2749d04f93d742576a81253595184d9662 diff --git a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-74.0.3729.75_beta.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-74.0.3729.91_beta.ebuild similarity index 100% rename from www-plugins/chrome-binary-plugins/chrome-binary-plugins-74.0.3729.75_beta.ebuild rename to www-plugins/chrome-binary-plugins/chrome-binary-plugins-74.0.3729.91_beta.ebuild diff --git a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-75.0.3759.4_alpha.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-75.0.3766.2_alpha.ebuild similarity index 100% rename from www-plugins/chrome-binary-plugins/chrome-binary-plugins-75.0.3759.4_alpha.ebuild rename to www-plugins/chrome-binary-plugins/chrome-binary-plugins-75.0.3766.2_alpha.ebuild diff --git a/www-servers/Manifest.gz b/www-servers/Manifest.gz index 211122a4f132..6026532bfaff 100644 Binary files a/www-servers/Manifest.gz and b/www-servers/Manifest.gz differ diff --git a/www-servers/apache/Manifest b/www-servers/apache/Manifest index 5e988a0e24a3..ed95ede81d64 100644 --- a/www-servers/apache/Manifest +++ b/www-servers/apache/Manifest @@ -1,8 +1,4 @@ DIST gentoo-apache-2.2.34-20170918.tar.bz2 64390 BLAKE2B d3f6d85192706d7c49a38cc36e816b3ae531f8c0d42111c33ec32ed39900d36d8a2a85a5d1b5afca22331137f04fb24fb424a42a21caa7eb4f6906fa39cb8224 SHA512 10b42e50dcc196f60bcaefe90c382d62a61339dd8a56e899d6afb6998be4acdd376e2c3509791f22a0acf99d06add497e32703b6d523f640306a6db5e05f358a -DIST gentoo-apache-2.4.34-20180716.tar.bz2 24773 BLAKE2B 6ff3b711e16a0156f8c5da4c5ee830a6e3d55b1f29c44a81be26decf6611e2680c84ec7779372bc0de775f3aff90fdaec48f5bc7253c8c9317c1308b60bf10e3 SHA512 4b96c2c7cad0aeef070584b64396360acb2ec24139a5af4755fc36b1f3cd2b82b213ebbfc45035f61c49b59ba40870930227b42e0b60042fd1147f34ba5df574 -DIST gentoo-apache-2.4.38-20190226.tar.bz2 24810 BLAKE2B 31dc4363c7bdb3dd49287da405541b73e31f251b1b31ecfdffd066a3cd6b838938acf7326a7963a05693e20d6dc34e71223efd1ecd5062a25829d6f6f4721595 SHA512 3dbddedab74e4326b53a9ec3daeb53d727c2789736ae3234d127ccffe873541bd7baa26d5cf9ed064b6e4125fd5a2baee97bccb81e67fdc5674cffe81ca93c40 DIST gentoo-apache-2.4.39-20190402.tar.bz2 25491 BLAKE2B ce230b07ec156048c7d7c1eb4b0e732fa6140f55d136e317714591327bde3f85bab7780424e6eef04b7a4518cbdcfdddcbc094409f4ca19ffea1ce967bdf7cf1 SHA512 bc0ffa20cffd9a89c2ea64420fa2243d77e97d7922bcd0b387a7fcfcc3c6908a056972b499a81344f7c3e3e19b55ffc300fd034c54b287f4f32d8931bd50cde4 DIST httpd-2.2.34.tar.bz2 5779739 BLAKE2B 8cdd41fb5d1880da4a1cfef252b4682f613b938594057ea4c9665d3881a50b298fb7339c1ceb3dafc215aa927048f99d500f2d29c125016d5766954be9b632b4 SHA512 e6dac5865a48533c025fe17523ee74d68c3a23f9512c9441b78a140e33cfb6835573eb049b0ad424eb5c5ca78a1915778c54e8a409da95fbdd3890cb99e08240 -DIST httpd-2.4.34.tar.bz2 6942969 BLAKE2B 02ecb9980f48bef7ac915077598560353e0682001bdaa99410b7faad459c4581f8d0878b4840e38e570b1872d549d58743260cb3030c145ae93bef97fc692cc4 SHA512 2bc09213f08a4722e305929fbac5f5060c7a8444704494894bb9b61f17e4d20bb6e3d663bb93fc5b2030b04a43fb12373d260cc291422b210b299725aaf3b5c8 -DIST httpd-2.4.38.tar.bz2 7035030 BLAKE2B 52d965b0eae3402c268f1c5f5fb669ad84408699871d0518ba254c6e7c00f2198cba8cb6106114a62f0f6de67e0a8b921b5783af9530d165ed4d435312ce5164 SHA512 8bdc36fa2bd13fd83feee17fdce4a5316ed8f96c1ac32b636ba106572ba257815438c72068d2d0e900783a3fa25c90a5da34c3f83fc2c04a1dbdbf234f7ad448 DIST httpd-2.4.39.tar.bz2 7030539 BLAKE2B 1e378833efb9bbdd6fdc277a779620a08752d064524489f9ad747cf85350fbb6ad65f57b30c81d57273cd6693d8a2c4e988f5a2c42bd5c9c538b305b9b7719e8 SHA512 9742202040b3dc6344b301540f54b2d3f8e36898410d24206a7f8dcecb1bea7d7230fabc7256752724558af249facf64bffe2cf678b8f7cccb64076737abfda7 diff --git a/www-servers/apache/apache-2.4.34-r2.ebuild b/www-servers/apache/apache-2.4.34-r2.ebuild deleted file mode 100644 index 7951d9793d58..000000000000 --- a/www-servers/apache/apache-2.4.34-r2.ebuild +++ /dev/null @@ -1,262 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -# latest gentoo apache files -GENTOO_PATCHSTAMP="20180716" -GENTOO_DEVELOPER="polynomial-c" -GENTOO_PATCHNAME="gentoo-apache-2.4.34" - -# IUSE/USE_EXPAND magic -IUSE_MPMS_FORK="prefork" -IUSE_MPMS_THREAD="event worker" - -# << obsolete modules: -# authn_default authz_default mem_cache -# mem_cache is replaced by cache_disk -# ?? buggy modules -# proxy_scgi: startup error: undefined symbol "ap_proxy_release_connection", no fix found -# >> added modules for reason: -# compat: compatibility with 2.2 access control -# authz_host: new module for access control -# authn_core: functionality provided by authn_alias in previous versions -# authz_core: new module, provides core authorization capabilities -# cache_disk: replacement for mem_cache -# lbmethod_byrequests: Split off from mod_proxy_balancer in 2.3 -# lbmethod_bytraffic: Split off from mod_proxy_balancer in 2.3 -# lbmethod_bybusyness: Split off from mod_proxy_balancer in 2.3 -# lbmethod_heartbeat: Split off from mod_proxy_balancer in 2.3 -# slotmem_shm: Slot-based shared memory provider (for lbmethod_byrequests). -# socache_shmcb: shared object cache provider. Default config with ssl needs it -# unixd: fixes startup error: Invalid command 'User' -IUSE_MODULES="access_compat actions alias asis auth_basic auth_digest -authn_alias authn_anon authn_core authn_dbd authn_dbm authn_file authz_core -authz_dbd authz_dbm authz_groupfile authz_host authz_owner authz_user autoindex -brotli cache cache_disk cache_socache cern_meta charset_lite cgi cgid dav dav_fs dav_lock -dbd deflate dir dumpio env expires ext_filter file_cache filter headers http2 -ident imagemap include info lbmethod_byrequests lbmethod_bytraffic lbmethod_bybusyness -lbmethod_heartbeat log_config log_forensic logio macro md mime mime_magic negotiation -proxy proxy_ajp proxy_balancer proxy_connect proxy_ftp proxy_html proxy_http proxy_scgi -proxy_fcgi proxy_wstunnel rewrite ratelimit remoteip reqtimeout setenvif -slotmem_shm speling socache_shmcb status substitute unique_id userdir usertrack -unixd version vhost_alias watchdog xml2enc" -# The following are also in the source as of this version, but are not available -# for user selection: -# bucketeer case_filter case_filter_in echo http isapi optional_fn_export -# optional_fn_import optional_hook_export optional_hook_import - -# inter-module dependencies -# TODO: this may still be incomplete -MODULE_DEPENDS=" - brotli:filter - dav_fs:dav - dav_lock:dav - deflate:filter - cache_disk:cache - ext_filter:filter - file_cache:cache - lbmethod_byrequests:proxy_balancer - lbmethod_byrequests:slotmem_shm - lbmethod_bytraffic:proxy_balancer - lbmethod_bybusyness:proxy_balancer - lbmethod_heartbeat:proxy_balancer - log_forensic:log_config - logio:log_config - cache_disk:cache - cache_socache:cache - md:watchdog - mime_magic:mime - proxy_ajp:proxy - proxy_balancer:proxy - proxy_balancer:slotmem_shm - proxy_connect:proxy - proxy_ftp:proxy - proxy_html:proxy - proxy_html:xml2enc - proxy_http:proxy - proxy_scgi:proxy - proxy_fcgi:proxy - proxy_wstunnel:proxy - substitute:filter -" - -# module<->define mappings -MODULE_DEFINES=" - auth_digest:AUTH_DIGEST - authnz_ldap:AUTHNZ_LDAP - cache:CACHE - cache_disk:CACHE - cache_socache:CACHE - dav:DAV - dav_fs:DAV - dav_lock:DAV - file_cache:CACHE - http2:HTTP2 - info:INFO - ldap:LDAP - md:SSL - proxy:PROXY - proxy_ajp:PROXY - proxy_balancer:PROXY - proxy_connect:PROXY - proxy_ftp:PROXY - proxy_html:PROXY - proxy_http:PROXY - proxy_fcgi:PROXY - proxy_scgi:PROXY - proxy_wstunnel:PROXY - socache_shmcb:SSL - ssl:SSL - status:STATUS - suexec:SUEXEC - userdir:USERDIR -" - -# critical modules for the default config -MODULE_CRITICAL=" - authn_core - authz_core - authz_host - dir - mime - unixd -" -inherit apache-2 systemd tmpfiles toolchain-funcs - -DESCRIPTION="The Apache Web Server" -HOMEPAGE="https://httpd.apache.org/" - -# some helper scripts are Apache-1.1, thus both are here -LICENSE="Apache-2.0 Apache-1.1" -SLOT="2" -KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x64-macos ~x86-macos ~m68k-mint ~sparc64-solaris ~x64-solaris" - -# Enable http2 by default (bug #563452) -# FIXME: Move to apache-2.eclass once this has reached stable. -IUSE="${IUSE/apache2_modules_http2/+apache2_modules_http2}" -# New suexec options (since 2.4.34) -IUSE="${IUSE} +suexec-caps suexec-syslog" - -CDEPEND="apache2_modules_brotli? ( >=app-arch/brotli-0.6.0:= ) - apache2_modules_http2? ( >=net-libs/nghttp2-1.2.1 ) - apache2_modules_md? ( >=dev-libs/jansson-2.10 )" - -DEPEND+="${CDEPEND} - suexec? ( suexec-caps? ( sys-libs/libcap ) )" -RDEPEND+="${CDEPEND}" - -REQUIRED_USE="apache2_modules_http2? ( ssl ) - apache2_modules_md? ( ssl )" - -PATCHES=( - "${FILESDIR}/${PN}-2.4.34-suexec_parallel_install.patch" #661358 - "${FILESDIR}"/${P}-PR62557.patch #663312 -) - -pkg_setup() { - # dependend critical modules which are not allowed in global scope due - # to USE flag conditionals (bug #499260) - use ssl && MODULE_CRITICAL+=" socache_shmcb" - use doc && MODULE_CRITICAL+=" alias negotiation setenvif" - apache-2_pkg_setup -} - -src_configure() { - # Brain dead check. - tc-is-cross-compiler && export ap_cv_void_ptr_lt_long="no" - - apache-2_src_configure -} - -src_compile() { - if tc-is-cross-compiler; then - # This header is the same across targets, so use the build compiler. - pushd server >/dev/null - emake gen_test_char - tc-export_build_env BUILD_CC - ${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_CPPFLAGS} ${BUILD_LDFLAGS} \ - gen_test_char.c -o gen_test_char $(apr-1-config --includes) || die - popd >/dev/null - fi - - default -} - -src_install() { - apache-2_src_install - local i - local apache_tools_prune_list=( - /usr/bin/{htdigest,logresolve,htpasswd,htdbm,ab,httxt2dbm} - /usr/sbin/{checkgid,fcgistarter,htcacheclean,rotatelogs} - /usr/share/man/man1/{logresolve.1,htdbm.1,htdigest.1,htpasswd.1,dbmmanage.1,ab.1} - /usr/share/man/man8/{rotatelogs.8,htcacheclean.8} - ) - for i in ${apache_tools_prune_list[@]} ; do - rm "${ED%/}"/$i || die "Failed to prune apache-tools bits" - done - - # install apxs in /usr/bin (bug #502384) and put a symlink into the - # old location until all ebuilds and eclasses have been modified to - # use the new location. - dobin support/apxs - dosym ../bin/apxs /usr/sbin/apxs - - # Note: wait for mod_systemd to be included in some forthcoming release, - # Then apache2.4.service can be used and systemd support controlled - # through --enable-systemd - systemd_newunit "${FILESDIR}/apache2.2-hardened.service" "apache2.service" - systemd_dotmpfilesd "${FILESDIR}/apache.conf" - #insinto /etc/apache2/modules.d - #doins "${FILESDIR}/00_systemd.conf" - - # Install http2 module config - insinto /etc/apache2/modules.d - doins "${FILESDIR}"/41_mod_http2.conf - - # Fix path to apache libdir - sed "s|@LIBDIR@|$(get_libdir)|" -i "${ED%/}"/usr/sbin/apache2ctl || die -} - -pkg_postinst() { - apache-2_pkg_postinst || die "apache-2_pkg_postinst failed" - - tmpfiles_process apache.conf #662544 - - # warnings that default config might not work out of the box - local mod cmod - for mod in ${MODULE_CRITICAL} ; do - if ! use "apache2_modules_${mod}"; then - echo - ewarn "Warning: Critical module not installed!" - ewarn "Modules 'authn_core', 'authz_core' and 'unixd'" - ewarn "are highly recomended but might not be in the base profile yet." - ewarn "Default config for ssl needs module 'socache_shmcb'." - ewarn "Enabling the following flags is highly recommended:" - for cmod in ${MODULE_CRITICAL} ; do - use "apache2_modules_${cmod}" || \ - ewarn "+ apache2_modules_${cmod}" - done - echo - break - fi - done - # warning for proxy_balancer and missing load balancing scheduler - if use apache2_modules_proxy_balancer; then - local lbset= - for mod in lbmethod_byrequests lbmethod_bytraffic lbmethod_bybusyness lbmethod_heartbeat; do - if use "apache2_modules_${mod}"; then - lbset=1 && break - fi - done - if [ ! ${lbset} ] ; then - echo - ewarn "Info: Missing load balancing scheduler algorithm module" - ewarn "(They were split off from proxy_balancer in 2.3)" - ewarn "In order to get the ability of load balancing, at least" - ewarn "one of these modules has to be present:" - ewarn "lbmethod_byrequests lbmethod_bytraffic lbmethod_bybusyness lbmethod_heartbeat" - echo - fi - fi -} diff --git a/www-servers/apache/apache-2.4.38-r1.ebuild b/www-servers/apache/apache-2.4.38-r1.ebuild deleted file mode 100644 index 64fa99892b96..000000000000 --- a/www-servers/apache/apache-2.4.38-r1.ebuild +++ /dev/null @@ -1,257 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -# latest gentoo apache files -GENTOO_PATCHSTAMP="20190226" -GENTOO_DEVELOPER="polynomial-c" -GENTOO_PATCHNAME="gentoo-apache-2.4.38" - -# IUSE/USE_EXPAND magic -IUSE_MPMS_FORK="prefork" -IUSE_MPMS_THREAD="event worker" - -# << obsolete modules: -# authn_default authz_default mem_cache -# mem_cache is replaced by cache_disk -# ?? buggy modules -# proxy_scgi: startup error: undefined symbol "ap_proxy_release_connection", no fix found -# >> added modules for reason: -# compat: compatibility with 2.2 access control -# authz_host: new module for access control -# authn_core: functionality provided by authn_alias in previous versions -# authz_core: new module, provides core authorization capabilities -# cache_disk: replacement for mem_cache -# lbmethod_byrequests: Split off from mod_proxy_balancer in 2.3 -# lbmethod_bytraffic: Split off from mod_proxy_balancer in 2.3 -# lbmethod_bybusyness: Split off from mod_proxy_balancer in 2.3 -# lbmethod_heartbeat: Split off from mod_proxy_balancer in 2.3 -# slotmem_shm: Slot-based shared memory provider (for lbmethod_byrequests). -# socache_shmcb: shared object cache provider. Default config with ssl needs it -# unixd: fixes startup error: Invalid command 'User' -IUSE_MODULES="access_compat actions alias asis auth_basic auth_digest -authn_alias authn_anon authn_core authn_dbd authn_dbm authn_file authz_core -authz_dbd authz_dbm authz_groupfile authz_host authz_owner authz_user autoindex -brotli cache cache_disk cache_socache cern_meta charset_lite cgi cgid dav dav_fs dav_lock -dbd deflate dir dumpio env expires ext_filter file_cache filter headers http2 -ident imagemap include info lbmethod_byrequests lbmethod_bytraffic lbmethod_bybusyness -lbmethod_heartbeat log_config log_forensic logio macro md mime mime_magic negotiation -proxy proxy_ajp proxy_balancer proxy_connect proxy_ftp proxy_html proxy_http proxy_scgi -proxy_http2 proxy_fcgi proxy_wstunnel rewrite ratelimit remoteip reqtimeout setenvif -slotmem_shm speling socache_shmcb status substitute unique_id userdir usertrack -unixd version vhost_alias watchdog xml2enc" -# The following are also in the source as of this version, but are not available -# for user selection: -# bucketeer case_filter case_filter_in echo http isapi optional_fn_export -# optional_fn_import optional_hook_export optional_hook_import - -# inter-module dependencies -# TODO: this may still be incomplete -MODULE_DEPENDS=" - brotli:filter - dav_fs:dav - dav_lock:dav - deflate:filter - cache_disk:cache - ext_filter:filter - file_cache:cache - lbmethod_byrequests:proxy_balancer - lbmethod_byrequests:slotmem_shm - lbmethod_bytraffic:proxy_balancer - lbmethod_bybusyness:proxy_balancer - lbmethod_heartbeat:proxy_balancer - log_forensic:log_config - logio:log_config - cache_disk:cache - cache_socache:cache - md:watchdog - mime_magic:mime - proxy_ajp:proxy - proxy_balancer:proxy - proxy_balancer:slotmem_shm - proxy_connect:proxy - proxy_ftp:proxy - proxy_html:proxy - proxy_html:xml2enc - proxy_http:proxy - proxy_scgi:proxy - proxy_fcgi:proxy - proxy_wstunnel:proxy - substitute:filter -" - -# module<->define mappings -MODULE_DEFINES=" - auth_digest:AUTH_DIGEST - authnz_ldap:AUTHNZ_LDAP - cache:CACHE - cache_disk:CACHE - cache_socache:CACHE - dav:DAV - dav_fs:DAV - dav_lock:DAV - file_cache:CACHE - http2:HTTP2 - info:INFO - ldap:LDAP - md:SSL - proxy:PROXY - proxy_ajp:PROXY - proxy_balancer:PROXY - proxy_connect:PROXY - proxy_ftp:PROXY - proxy_html:PROXY - proxy_http:PROXY - proxy_fcgi:PROXY - proxy_scgi:PROXY - proxy_wstunnel:PROXY - socache_shmcb:SSL - ssl:SSL - status:STATUS - suexec:SUEXEC - userdir:USERDIR -" - -# critical modules for the default config -MODULE_CRITICAL=" - authn_core - authz_core - authz_host - dir - mime - unixd -" -inherit apache-2 systemd tmpfiles toolchain-funcs - -DESCRIPTION="The Apache Web Server" -HOMEPAGE="https://httpd.apache.org/" - -# some helper scripts are Apache-1.1, thus both are here -LICENSE="Apache-2.0 Apache-1.1" -SLOT="2" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x64-macos ~x86-macos ~m68k-mint ~sparc64-solaris ~x64-solaris" - -# Enable http2 by default (bug #563452) -# FIXME: Move to apache-2.eclass once this has reached stable. -IUSE="${IUSE/apache2_modules_http2/+apache2_modules_http2}" -# New suexec options (since 2.4.34) -IUSE="${IUSE} +suexec-caps suexec-syslog" - -CDEPEND="apache2_modules_brotli? ( >=app-arch/brotli-0.6.0:= ) - apache2_modules_http2? ( >=net-libs/nghttp2-1.2.1 ) - apache2_modules_md? ( >=dev-libs/jansson-2.10 )" - -DEPEND+="${CDEPEND} - suexec? ( suexec-caps? ( sys-libs/libcap ) )" -RDEPEND+="${CDEPEND}" - -REQUIRED_USE="apache2_modules_http2? ( ssl ) - apache2_modules_md? ( ssl )" - -pkg_setup() { - # dependend critical modules which are not allowed in global scope due - # to USE flag conditionals (bug #499260) - use ssl && MODULE_CRITICAL+=" socache_shmcb" - use doc && MODULE_CRITICAL+=" alias negotiation setenvif" - apache-2_pkg_setup -} - -src_configure() { - # Brain dead check. - tc-is-cross-compiler && export ap_cv_void_ptr_lt_long="no" - - apache-2_src_configure -} - -src_compile() { - if tc-is-cross-compiler; then - # This header is the same across targets, so use the build compiler. - pushd server >/dev/null - emake gen_test_char - tc-export_build_env BUILD_CC - ${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_CPPFLAGS} ${BUILD_LDFLAGS} \ - gen_test_char.c -o gen_test_char $(apr-1-config --includes) || die - popd >/dev/null - fi - - default -} - -src_install() { - apache-2_src_install - local i - local apache_tools_prune_list=( - /usr/bin/{htdigest,logresolve,htpasswd,htdbm,ab,httxt2dbm} - /usr/sbin/{checkgid,fcgistarter,htcacheclean,rotatelogs} - /usr/share/man/man1/{logresolve.1,htdbm.1,htdigest.1,htpasswd.1,dbmmanage.1,ab.1} - /usr/share/man/man8/{rotatelogs.8,htcacheclean.8} - ) - for i in ${apache_tools_prune_list[@]} ; do - rm "${ED%/}"/${i} || die "Failed to prune apache-tools bits" - done - - # install apxs in /usr/bin (bug #502384) and put a symlink into the - # old location until all ebuilds and eclasses have been modified to - # use the new location. - dobin support/apxs - dosym ../bin/apxs /usr/sbin/apxs - - # Note: wait for mod_systemd to be included in some forthcoming release, - # Then apache2.4.service can be used and systemd support controlled - # through --enable-systemd - systemd_newunit "${FILESDIR}/apache2.2-hardened.service" "apache2.service" - systemd_dotmpfilesd "${FILESDIR}/apache.conf" - #insinto /etc/apache2/modules.d - #doins "${FILESDIR}/00_systemd.conf" - - # Install http2 module config - insinto /etc/apache2/modules.d - doins "${FILESDIR}"/41_mod_http2.conf - - # Fix path to apache libdir - sed "s|@LIBDIR@|$(get_libdir)|" -i "${ED%/}"/usr/sbin/apache2ctl || die -} - -pkg_postinst() { - apache-2_pkg_postinst || die "apache-2_pkg_postinst failed" - - tmpfiles_process apache.conf #662544 - - # warnings that default config might not work out of the box - local mod cmod - for mod in ${MODULE_CRITICAL} ; do - if ! use "apache2_modules_${mod}"; then - echo - ewarn "Warning: Critical module not installed!" - ewarn "Modules 'authn_core', 'authz_core' and 'unixd'" - ewarn "are highly recomended but might not be in the base profile yet." - ewarn "Default config for ssl needs module 'socache_shmcb'." - ewarn "Enabling the following flags is highly recommended:" - for cmod in ${MODULE_CRITICAL} ; do - use "apache2_modules_${cmod}" || \ - ewarn "+ apache2_modules_${cmod}" - done - echo - break - fi - done - # warning for proxy_balancer and missing load balancing scheduler - if use apache2_modules_proxy_balancer; then - local lbset= - for mod in lbmethod_byrequests lbmethod_bytraffic lbmethod_bybusyness lbmethod_heartbeat; do - if use "apache2_modules_${mod}"; then - lbset=1 && break - fi - done - if [ ! ${lbset} ] ; then - echo - ewarn "Info: Missing load balancing scheduler algorithm module" - ewarn "(They were split off from proxy_balancer in 2.3)" - ewarn "In order to get the ability of load balancing, at least" - ewarn "one of these modules has to be present:" - ewarn "lbmethod_byrequests lbmethod_bytraffic lbmethod_bybusyness lbmethod_heartbeat" - echo - fi - fi -} diff --git a/www-servers/apache/apache-2.4.39.ebuild b/www-servers/apache/apache-2.4.39.ebuild index ee8e5f91bc06..7a1fd21f41f1 100644 --- a/www-servers/apache/apache-2.4.39.ebuild +++ b/www-servers/apache/apache-2.4.39.ebuild @@ -130,7 +130,7 @@ HOMEPAGE="https://httpd.apache.org/" # some helper scripts are Apache-1.1, thus both are here LICENSE="Apache-2.0 Apache-1.1" SLOT="2" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x64-macos ~x86-macos ~m68k-mint ~sparc64-solaris ~x64-solaris" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x64-macos ~x86-macos ~m68k-mint ~sparc64-solaris ~x64-solaris" # Enable http2 by default (bug #563452) # FIXME: Move to apache-2.eclass once this has reached stable. diff --git a/www-servers/apache/files/apache-2.4.34-PR62557.patch b/www-servers/apache/files/apache-2.4.34-PR62557.patch deleted file mode 100644 index d95a9864d1bc..000000000000 --- a/www-servers/apache/files/apache-2.4.34-PR62557.patch +++ /dev/null @@ -1,216 +0,0 @@ -From d7713339dbde7cfa4cfc9914f683b4644dcab92e Mon Sep 17 00:00:00 2001 -From: Ruediger Pluem -Date: Fri, 20 Jul 2018 19:27:31 +0000 -Subject: [PATCH] * mod_proxy: Remove load order and link dependency between - mod_lbmethod_* modules and mod_proxy by providing mod_proxy's - ap_proxy_balancer_get_best_worker as an optional function. - -PR: 62557 - - -git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1836381 13f79535-47bb-0310-9956-ffa450edef68 ---- - CHANGES | 3 +++ - include/ap_mmn.h | 5 +++- - modules/proxy/balancers/mod_lbmethod_bybusyness.c | 28 ++++++++++++++++++++++- - modules/proxy/balancers/mod_lbmethod_byrequests.c | 28 ++++++++++++++++++++++- - modules/proxy/balancers/mod_lbmethod_bytraffic.c | 28 ++++++++++++++++++++++- - modules/proxy/mod_proxy.h | 8 +++++++ - modules/proxy/proxy_util.c | 1 + - 7 files changed, 97 insertions(+), 4 deletions(-) - ---- apache2.orig/modules/proxy/balancers/mod_lbmethod_bybusyness.c -+++ apache2/modules/proxy/balancers/mod_lbmethod_bybusyness.c -@@ -22,6 +22,9 @@ - - module AP_MODULE_DECLARE_DATA lbmethod_bybusyness_module; - -+static APR_OPTIONAL_FN_TYPE(ap_proxy_balancer_get_best_worker) -+ *ap_proxy_balancer_get_best_worker_fn = NULL; -+ - static int is_best_bybusyness(proxy_worker *current, proxy_worker *prev_best, void *baton) - { - int *total_factor = (int *)baton; -@@ -44,7 +47,7 @@ static proxy_worker *find_best_bybusynes - { - int total_factor = 0; - proxy_worker *worker = -- ap_proxy_balancer_get_best_worker(balancer, r, is_best_bybusyness, -+ ap_proxy_balancer_get_best_worker_fn(balancer, r, is_best_bybusyness, - &total_factor); - - if (worker) { -@@ -82,9 +85,32 @@ static const proxy_balancer_method bybus - NULL - }; - -+/* post_config hook: */ -+static int lbmethod_bybusyness_post_config(apr_pool_t *pconf, apr_pool_t *plog, -+ apr_pool_t *ptemp, server_rec *s) -+{ -+ -+ /* lbmethod_bybusyness_post_config() will be called twice during startup. So, don't -+ * set up the static data the 1st time through. */ -+ if (ap_state_query(AP_SQ_MAIN_STATE) == AP_SQ_MS_CREATE_PRE_CONFIG) { -+ return OK; -+ } -+ -+ ap_proxy_balancer_get_best_worker_fn = -+ APR_RETRIEVE_OPTIONAL_FN(ap_proxy_balancer_get_best_worker); -+ if (!ap_proxy_balancer_get_best_worker_fn) { -+ ap_log_error(APLOG_MARK, APLOG_EMERG, 0, s, APLOGNO() -+ "mod_proxy must be loaded for mod_lbmethod_bybusyness"); -+ return !OK; -+ } -+ -+ return OK; -+} -+ - static void register_hook(apr_pool_t *p) - { - ap_register_provider(p, PROXY_LBMETHOD, "bybusyness", "0", &bybusyness); -+ ap_hook_post_config(lbmethod_bybusyness_post_config, NULL, NULL, APR_HOOK_MIDDLE); - } - - AP_DECLARE_MODULE(lbmethod_bybusyness) = { ---- apache2.orig/modules/proxy/balancers/mod_lbmethod_byrequests.c -+++ apache2/modules/proxy/balancers/mod_lbmethod_byrequests.c -@@ -22,6 +22,9 @@ - - module AP_MODULE_DECLARE_DATA lbmethod_byrequests_module; - -+static APR_OPTIONAL_FN_TYPE(ap_proxy_balancer_get_best_worker) -+ *ap_proxy_balancer_get_best_worker_fn = NULL; -+ - static int is_best_byrequests(proxy_worker *current, proxy_worker *prev_best, void *baton) - { - int *total_factor = (int *)baton; -@@ -81,7 +84,7 @@ static proxy_worker *find_best_byrequest - request_rec *r) - { - int total_factor = 0; -- proxy_worker *worker = ap_proxy_balancer_get_best_worker(balancer, r, is_best_byrequests, &total_factor); -+ proxy_worker *worker = ap_proxy_balancer_get_best_worker_fn(balancer, r, is_best_byrequests, &total_factor); - - if (worker) { - worker->s->lbstatus -= total_factor; -@@ -123,6 +126,28 @@ static const proxy_balancer_method byreq - NULL - }; - -+/* post_config hook: */ -+static int lbmethod_byrequests_post_config(apr_pool_t *pconf, apr_pool_t *plog, -+ apr_pool_t *ptemp, server_rec *s) -+{ -+ -+ /* lbmethod_byrequests_post_config() will be called twice during startup. So, don't -+ * set up the static data the 1st time through. */ -+ if (ap_state_query(AP_SQ_MAIN_STATE) == AP_SQ_MS_CREATE_PRE_CONFIG) { -+ return OK; -+ } -+ -+ ap_proxy_balancer_get_best_worker_fn = -+ APR_RETRIEVE_OPTIONAL_FN(ap_proxy_balancer_get_best_worker); -+ if (!ap_proxy_balancer_get_best_worker_fn) { -+ ap_log_error(APLOG_MARK, APLOG_EMERG, 0, s, APLOGNO() -+ "mod_proxy must be loaded for mod_lbmethod_byrequests"); -+ return !OK; -+ } -+ -+ return OK; -+} -+ - static void register_hook(apr_pool_t *p) - { - /* Only the mpm_winnt has child init hook handler. -@@ -130,6 +155,7 @@ static void register_hook(apr_pool_t *p) - * initializes and after the mod_proxy - */ - ap_register_provider(p, PROXY_LBMETHOD, "byrequests", "0", &byrequests); -+ ap_hook_post_config(lbmethod_byrequests_post_config, NULL, NULL, APR_HOOK_MIDDLE); - } - - AP_DECLARE_MODULE(lbmethod_byrequests) = { ---- apache2.orig/modules/proxy/balancers/mod_lbmethod_bytraffic.c -+++ apache2/modules/proxy/balancers/mod_lbmethod_bytraffic.c -@@ -22,6 +22,9 @@ - - module AP_MODULE_DECLARE_DATA lbmethod_bytraffic_module; - -+static APR_OPTIONAL_FN_TYPE(ap_proxy_balancer_get_best_worker) -+ *ap_proxy_balancer_get_best_worker_fn = NULL; -+ - static int is_best_bytraffic(proxy_worker *current, proxy_worker *prev_best, void *baton) - { - apr_off_t *min_traffic = (apr_off_t *)baton; -@@ -59,7 +62,7 @@ static proxy_worker *find_best_bytraffic - { - apr_off_t min_traffic = 0; - -- return ap_proxy_balancer_get_best_worker(balancer, r, is_best_bytraffic, -+ return ap_proxy_balancer_get_best_worker_fn(balancer, r, is_best_bytraffic, - &min_traffic); - } - -@@ -93,6 +96,28 @@ static const proxy_balancer_method bytra - NULL - }; - -+/* post_config hook: */ -+static int lbmethod_bytraffic_post_config(apr_pool_t *pconf, apr_pool_t *plog, -+ apr_pool_t *ptemp, server_rec *s) -+{ -+ -+ /* lbmethod_bytraffic_post_config() will be called twice during startup. So, don't -+ * set up the static data the 1st time through. */ -+ if (ap_state_query(AP_SQ_MAIN_STATE) == AP_SQ_MS_CREATE_PRE_CONFIG) { -+ return OK; -+ } -+ -+ ap_proxy_balancer_get_best_worker_fn = -+ APR_RETRIEVE_OPTIONAL_FN(ap_proxy_balancer_get_best_worker); -+ if (!ap_proxy_balancer_get_best_worker_fn) { -+ ap_log_error(APLOG_MARK, APLOG_EMERG, 0, s, APLOGNO() -+ "mod_proxy must be loaded for mod_lbmethod_bytraffic"); -+ return !OK; -+ } -+ -+ return OK; -+} -+ - static void register_hook(apr_pool_t *p) - { - /* Only the mpm_winnt has child init hook handler. -@@ -100,6 +125,7 @@ static void register_hook(apr_pool_t *p) - * initializes and after the mod_proxy - */ - ap_register_provider(p, PROXY_LBMETHOD, "bytraffic", "0", &bytraffic); -+ ap_hook_post_config(lbmethod_bytraffic_post_config, NULL, NULL, APR_HOOK_MIDDLE); - } - - AP_DECLARE_MODULE(lbmethod_bytraffic) = { ---- apache2.orig/modules/proxy/mod_proxy.h -+++ apache2/modules/proxy/mod_proxy.h -@@ -846,6 +846,14 @@ PROXY_DECLARE(proxy_worker *) ap_proxy_b - request_rec *r, - proxy_is_best_callback_fn_t *is_best, - void *baton); -+/* -+ * Needed by the lb modules. -+ */ -+APR_DECLARE_OPTIONAL_FN(proxy_worker *, ap_proxy_balancer_get_best_worker, -+ (proxy_balancer *balancer, -+ request_rec *r, -+ proxy_is_best_callback_fn_t *is_best, -+ void *baton)); - - /** - * Find the shm of the worker as needed ---- apache2.orig/modules/proxy/proxy_util.c -+++ apache2/modules/proxy/proxy_util.c -@@ -4028,4 +4028,5 @@ void proxy_util_register_hooks(apr_pool_ - { - APR_REGISTER_OPTIONAL_FN(ap_proxy_retry_worker); - APR_REGISTER_OPTIONAL_FN(ap_proxy_clear_connection); -+ APR_REGISTER_OPTIONAL_FN(ap_proxy_balancer_get_best_worker); - } diff --git a/www-servers/apache/files/apache-2.4.34-suexec_parallel_install.patch b/www-servers/apache/files/apache-2.4.34-suexec_parallel_install.patch deleted file mode 100644 index d5543f7004be..000000000000 --- a/www-servers/apache/files/apache-2.4.34-suexec_parallel_install.patch +++ /dev/null @@ -1,19 +0,0 @@ -https://bugs.gentoo.org/661358 - ---- httpd-2.4.34/Makefile.in -+++ httpd-2.4.34/Makefile.in -@@ -277,12 +277,12 @@ - $(INSTALL_PROGRAM) $(top_builddir)/support/suexec $(DESTDIR)$(sbindir); \ - fi - --install-suexec-setuid: -+install-suexec-setuid: install-suexec-binary - @if test -f $(builddir)/support/suexec; then \ - chmod 4755 $(DESTDIR)$(sbindir)/suexec; \ - fi - --install-suexec-caps: -+install-suexec-caps: install-suexec-binary - @if test -f $(builddir)/support/suexec; then \ - setcap 'cap_setuid,cap_setgid+pe' $(DESTDIR)$(sbindir)/suexec; \ - fi diff --git a/x11-apps/Manifest.gz b/x11-apps/Manifest.gz index 9e52a1b0c073..255ea7151824 100644 Binary files a/x11-apps/Manifest.gz and b/x11-apps/Manifest.gz differ diff --git a/x11-apps/radeon-profile-daemon/radeon-profile-daemon-20190309.ebuild b/x11-apps/radeon-profile-daemon/radeon-profile-daemon-20190309-r1.ebuild similarity index 85% rename from x11-apps/radeon-profile-daemon/radeon-profile-daemon-20190309.ebuild rename to x11-apps/radeon-profile-daemon/radeon-profile-daemon-20190309-r1.ebuild index 052a3ef3b330..ca74330cfd3c 100644 --- a/x11-apps/radeon-profile-daemon/radeon-profile-daemon-20190309.ebuild +++ b/x11-apps/radeon-profile-daemon/radeon-profile-daemon-20190309-r1.ebuild @@ -19,6 +19,12 @@ SLOT="0" IUSE="" +RDEPEND=" + dev-qt/qtcore:5 + dev-qt/qtnetwork:5 +" +DEPEND="${RDEPEND}" + S="${WORKDIR}/${P}/${PN}" src_prepare() { @@ -27,6 +33,9 @@ src_prepare() { -e '/^bin\.path/s@/bin@/sbin@' \ -e "/^service\.path/s@=.*\$@= $(systemd_get_systemunitdir)@" \ -i radeon-profile-daemon.pro || die + sed \ + -e '/^ExecStart/s@/bin/@/sbin/@' \ + -i extra/${PN}.service || die } src_configure() { diff --git a/x11-apps/radeon-profile-daemon/radeon-profile-daemon-99999999.ebuild b/x11-apps/radeon-profile-daemon/radeon-profile-daemon-99999999.ebuild index 052a3ef3b330..ca74330cfd3c 100644 --- a/x11-apps/radeon-profile-daemon/radeon-profile-daemon-99999999.ebuild +++ b/x11-apps/radeon-profile-daemon/radeon-profile-daemon-99999999.ebuild @@ -19,6 +19,12 @@ SLOT="0" IUSE="" +RDEPEND=" + dev-qt/qtcore:5 + dev-qt/qtnetwork:5 +" +DEPEND="${RDEPEND}" + S="${WORKDIR}/${P}/${PN}" src_prepare() { @@ -27,6 +33,9 @@ src_prepare() { -e '/^bin\.path/s@/bin@/sbin@' \ -e "/^service\.path/s@=.*\$@= $(systemd_get_systemunitdir)@" \ -i radeon-profile-daemon.pro || die + sed \ + -e '/^ExecStart/s@/bin/@/sbin/@' \ + -i extra/${PN}.service || die } src_configure() { diff --git a/x11-apps/xinput_calibrator/xinput_calibrator-0.7.5-r1.ebuild b/x11-apps/xinput_calibrator/xinput_calibrator-0.7.5-r1.ebuild index e1f2aa309667..d4b7027c807f 100644 --- a/x11-apps/xinput_calibrator/xinput_calibrator-0.7.5-r1.ebuild +++ b/x11-apps/xinput_calibrator/xinput_calibrator-0.7.5-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -10,7 +10,7 @@ SRC_URI="mirror://github/tias/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 arm x86" +KEYWORDS="amd64 arm ~arm64 x86" IUSE="gtk" RDEPEND="x11-libs/libX11 diff --git a/x11-misc/Manifest.gz b/x11-misc/Manifest.gz index 04e356bf33cf..3ed12d828b58 100644 Binary files a/x11-misc/Manifest.gz and b/x11-misc/Manifest.gz differ diff --git a/x11-misc/sunflower/sunflower-0.3.61.ebuild b/x11-misc/sunflower/sunflower-0.3.61.ebuild index 70998acf88ee..a556eff77ba3 100644 --- a/x11-misc/sunflower/sunflower-0.3.61.ebuild +++ b/x11-misc/sunflower/sunflower-0.3.61.ebuild @@ -24,7 +24,10 @@ DEPEND="${PYTHON_DEPS}" RDEPEND="${DEPEND} >=dev-python/pygtk-2.15.0:2[${PYTHON_USEDEP}] >=dev-python/notify-python-0.1[${PYTHON_USEDEP}] - gnome-base/librsvg:2" + gnome-base/librsvg:2 + dev-python/chardet[${PYTHON_USEDEP}] + dev-python/pycairo[${PYTHON_USEDEP}] +" S=${WORKDIR}/${MY_PN}-$MY_PV diff --git a/x11-misc/xcalib/xcalib-0.10.ebuild b/x11-misc/xcalib/xcalib-0.10.ebuild index 67cb6f0ee2ba..b97a56578667 100644 --- a/x11-misc/xcalib/xcalib-0.10.ebuild +++ b/x11-misc/xcalib/xcalib-0.10.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/OpenICC/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86" IUSE="" RDEPEND=" diff --git a/x11-themes/Manifest.gz b/x11-themes/Manifest.gz index 61520528f296..299f6a9435b0 100644 Binary files a/x11-themes/Manifest.gz and b/x11-themes/Manifest.gz differ diff --git a/x11-themes/mate-themes/mate-themes-3.22.19.ebuild b/x11-themes/mate-themes/mate-themes-3.22.19.ebuild index c8c40fc65462..f88a2fd4a654 100644 --- a/x11-themes/mate-themes/mate-themes-3.22.19.ebuild +++ b/x11-themes/mate-themes/mate-themes-3.22.19.ebuild @@ -7,9 +7,9 @@ inherit autotools xdg MATE_GTK_V="$(ver_cut 1-2)" -HOMEPAGE="http://mate-desktop.org" +HOMEPAGE="https://mate-desktop.org" DESCRIPTION="A set of MATE themes, with sets for users with limited or low vision" -SRC_URI="http://pub.mate-desktop.org/releases/themes/${MATE_GTK_V}/${P}.tar.xz" +SRC_URI="https://pub.mate-desktop.org/releases/themes/${MATE_GTK_V}/${P}.tar.xz" LICENSE="LGPL-2.1 GPL-3" SLOT="0/${MATE_GTK_V}" diff --git a/xfce-base/Manifest.gz b/xfce-base/Manifest.gz index 75c2c7890ea7..2aaf1adb12a5 100644 Binary files a/xfce-base/Manifest.gz and b/xfce-base/Manifest.gz differ diff --git a/xfce-base/exo/exo-0.12.4.ebuild b/xfce-base/exo/exo-0.12.4.ebuild index feb4f4390816..3651ab1ab4c1 100644 --- a/xfce-base/exo/exo-0.12.4.ebuild +++ b/xfce-base/exo/exo-0.12.4.ebuild @@ -11,7 +11,7 @@ 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-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris" IUSE="" RDEPEND=">=dev-lang/perl-5.6 diff --git a/xfce-base/garcon/garcon-0.6.2.ebuild b/xfce-base/garcon/garcon-0.6.2.ebuild index ec245ae4a085..fbccd273d080 100644 --- a/xfce-base/garcon/garcon-0.6.2.ebuild +++ b/xfce-base/garcon/garcon-0.6.2.ebuild @@ -9,7 +9,7 @@ SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2" LICENSE="LGPL-2+ FDL-1.1+" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris" +KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris" IUSE="+gtk2" RDEPEND=">=dev-libs/glib-2.30:= diff --git a/xfce-base/thunar/thunar-1.6.16.ebuild b/xfce-base/thunar/thunar-1.6.16.ebuild index 63c05f607510..b07936c65ea1 100644 --- a/xfce-base/thunar/thunar-1.6.16.ebuild +++ b/xfce-base/thunar/thunar-1.6.16.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${MY_P}.tar.bz2" LICENSE="GPL-2+ LGPL-2+" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris" +KEYWORDS="alpha amd64 arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris" IUSE="+dbus exif libnotify pcre test +trash-panel-plugin udisks" GVFS_DEPEND=">=gnome-base/gvfs-1.18.3" diff --git a/xfce-extra/Manifest.gz b/xfce-extra/Manifest.gz index 9ce33049d9fb..638c3a3e963a 100644 Binary files a/xfce-extra/Manifest.gz and b/xfce-extra/Manifest.gz differ diff --git a/xfce-extra/xfce4-dict/xfce4-dict-0.8.2.ebuild b/xfce-extra/xfce4-dict/xfce4-dict-0.8.2.ebuild index fb3e7bb66cc4..0b54a475eb87 100644 --- a/xfce-extra/xfce4-dict/xfce4-dict-0.8.2.ebuild +++ b/xfce-extra/xfce4-dict/xfce4-dict-0.8.2.ebuild @@ -10,7 +10,7 @@ SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux" IUSE="" RDEPEND=">=dev-libs/glib-2.24:= 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-r1.ebuild index 2d2897fe14b1..ef644c598069 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-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/$(ver_cut 1-2)/${P}.ta LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux" IUSE="" RDEPEND=">=dev-libs/glib-2.24:2 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-r1.ebuild index 7a8330de60d8..3730eebd90ec 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-r1.ebuild @@ -9,7 +9,7 @@ SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux" IUSE="libnotify" RDEPEND=">=dev-libs/glib-2.28:2 diff --git a/xfce-extra/xfce4-taskmanager/xfce4-taskmanager-1.2.2.ebuild b/xfce-extra/xfce4-taskmanager/xfce4-taskmanager-1.2.2.ebuild index eb2d7d5bdc26..41ed4d4dea81 100644 --- a/xfce-extra/xfce4-taskmanager/xfce4-taskmanager-1.2.2.ebuild +++ b/xfce-extra/xfce4-taskmanager/xfce4-taskmanager-1.2.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux" IUSE="" 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 1b17740c0675..1db8c0494799 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 @@ -11,7 +11,7 @@ SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux" IUSE="" RDEPEND="x11-libs/gtk+:2 diff --git a/xfce-extra/xfce4-vala/xfce4-vala-4.10.3-r5.ebuild b/xfce-extra/xfce4-vala/xfce4-vala-4.10.3-r5.ebuild index 7b9ab017937e..b365b1d7c8eb 100644 --- a/xfce-extra/xfce4-vala/xfce4-vala-4.10.3-r5.ebuild +++ b/xfce-extra/xfce4-vala/xfce4-vala-4.10.3-r5.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://archive.xfce.org/src/bindings/${PN}/${PV%.*}/${P}.tar.bz2" LICENSE="LGPL-2.1+" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="" RDEPEND="$(vala_depend) diff --git a/xfce-extra/xfce4-windowck-plugin/xfce4-windowck-plugin-0.4.5.ebuild b/xfce-extra/xfce4-windowck-plugin/xfce4-windowck-plugin-0.4.5.ebuild index 393b44fd9670..48bc0eb09e84 100644 --- a/xfce-extra/xfce4-windowck-plugin/xfce4-windowck-plugin-0.4.5.ebuild +++ b/xfce-extra/xfce4-windowck-plugin/xfce4-windowck-plugin-0.4.5.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/cedl38/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3+" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="" RDEPEND=">=x11-libs/gtk+-2.20:2 diff --git a/xfce-extra/xfdashboard/xfdashboard-0.6.1.ebuild b/xfce-extra/xfdashboard/xfdashboard-0.6.1.ebuild index d902d6643284..5eaf8acad413 100644 --- a/xfce-extra/xfdashboard/xfdashboard-0.6.1.ebuild +++ b/xfce-extra/xfdashboard/xfdashboard-0.6.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="" RDEPEND=">=dev-libs/dbus-glib-0.100:=