diff --git a/Manifest.files.gz b/Manifest.files.gz index 6ea291eb7eff..d6e3038d90e7 100644 Binary files a/Manifest.files.gz and b/Manifest.files.gz differ diff --git a/app-crypt/Manifest.gz b/app-crypt/Manifest.gz index 4b27d33cf21f..3ffaa4991f29 100644 Binary files a/app-crypt/Manifest.gz and b/app-crypt/Manifest.gz differ diff --git a/app-crypt/heimdal/Manifest b/app-crypt/heimdal/Manifest index 85332da45eec..7946c1e872dc 100644 --- a/app-crypt/heimdal/Manifest +++ b/app-crypt/heimdal/Manifest @@ -1 +1,2 @@ DIST heimdal-7.4.0.tar.gz 9928553 BLAKE2B e43215a82d603bf69d3ac22ffbf0b0b7995fdaa9c2d0c1a5ac2d145a5fbed653b9b021caae5af1955323760afcd0ec2083b94d1c32f07486c7368ab03172a9bd SHA512 3bb83974180e0f6fe2e1b2a11c51cf136c9a64f13f9ed7592f0039ccccd03c1a22081b7d88ae631f94cf46589ed399b79666eb814104f915faa70b53749863a7 +DIST heimdal-7.5.0.tar.gz 10071281 BLAKE2B 917f5855248c333e5ec35bf992973d8b5fb84581b9c3bc8d42c328e5f878ce24c5596c5a1e3fbca786a71be04984068efbb817f7336135056d1feae38895758f SHA512 6d1ad77e795df786680b5e68e2bfefee27bd0207eab507295d7af7053135de9c9ebb517d2c0235bc3a7d50945e18044515f0d76c0899b6b74aa839f1f3e5b131 diff --git a/app-crypt/heimdal/heimdal-7.5.0.ebuild b/app-crypt/heimdal/heimdal-7.5.0.ebuild new file mode 100644 index 000000000000..5aa24ddb6637 --- /dev/null +++ b/app-crypt/heimdal/heimdal-7.5.0.ebuild @@ -0,0 +1,175 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) +VIRTUALX_REQUIRED="manual" + +inherit autotools db-use eutils multilib multilib-minimal python-any-r1 virtualx flag-o-matic + +MY_P="${P}" +DESCRIPTION="Kerberos 5 implementation from KTH" +HOMEPAGE="http://www.h5l.org/" +SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd" +IUSE="afs +berkdb caps hdb-ldap ipv6 libressl otp +pkinit selinux ssl static-libs test X" + +CDEPEND=" + ssl? ( + !libressl? ( >=dev-libs/openssl-1.0.1h-r2[${MULTILIB_USEDEP}] ) + libressl? ( dev-libs/libressl[${MULTILIB_USEDEP}] ) + ) + berkdb? ( >=sys-libs/db-4.8.30-r1:*[${MULTILIB_USEDEP}] ) + !berkdb? ( >=sys-libs/gdbm-1.10-r1[${MULTILIB_USEDEP}] ) + caps? ( sys-libs/libcap-ng ) + >=dev-db/sqlite-3.8.2[${MULTILIB_USEDEP}] + >=sys-libs/e2fsprogs-libs-1.42.9[${MULTILIB_USEDEP}] + sys-libs/ncurses:0= + >=sys-libs/readline-6.2_p5-r1:0=[${MULTILIB_USEDEP}] + afs? ( net-fs/openafs ) + hdb-ldap? ( >=net-nds/openldap-2.3.0 ) + X? ( x11-libs/libX11 + x11-libs/libXau + x11-libs/libXt ) + abi_x86_32? ( + !<=app-emulation/emul-linux-x86-baselibs-20140508-r1 + !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] + ) + !!app-crypt/mit-krb5 + !!app-crypt/mit-krb5-appl" + +DEPEND="${CDEPEND} + ${PYTHON_DEPS} + >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] + >=sys-devel/autoconf-2.62 + test? ( X? ( ${VIRTUALX_DEPEND} ) )" + +RDEPEND="${CDEPEND} + selinux? ( sec-policy/selinux-kerberos )" + +MULTILIB_WRAPPED_HEADERS=( + /usr/include/krb5-types.h + /usr/include/cms_asn1.h + /usr/include/digest_asn1.h + /usr/include/hdb_asn1.h + /usr/include/krb5_asn1.h + /usr/include/pkcs12_asn1.h + /usr/include/pkinit_asn1.h + /usr/include/rfc2459_asn1.h +) + +MULTILIB_CHOST_TOOLS=( + /usr/bin/krb5-config +) + +src_prepare() { + eapply "${FILESDIR}/heimdal_disable-check-iprop.patch" + eapply "${FILESDIR}/heimdal_tinfo.patch" + eautoreconf + eapply_user +} + +src_configure() { + # QA + append-flags -fno-strict-aliasing + + multilib-minimal_src_configure +} + +multilib_src_configure() { + local myconf=() + if use berkdb; then + myconf+=( + --with-berkeley-db + --with-berkeley-db-include="$(db_includedir)" + ) + else + myconf+=( + --without-berkeley-db + ) + fi + + ECONF_SOURCE=${S} \ + econf \ + --enable-kcm \ + --disable-osfc2 \ + --enable-shared \ + --with-libintl=/usr \ + --with-readline=/usr \ + --with-sqlite3=/usr \ + --libexecdir=/usr/sbin \ + --enable-pthread-support \ + $(use_enable afs afs-support) \ + $(use_enable otp) \ + $(use_enable pkinit kx509) \ + $(use_enable pkinit pk-init) \ + $(use_enable static-libs static) \ + $(multilib_native_use_with caps capng) \ + $(multilib_native_use_with hdb-ldap openldap /usr) \ + $(use_with ipv6) \ + $(use_with ssl openssl /usr) \ + $(multilib_native_use_with X x) \ + "${myconf[@]}" +} + +multilib_src_compile() { + if multilib_is_native_abi; then + emake -j1 + else + emake -C include -j1 + emake -C lib -j1 + emake -C kdc -j1 + emake -C tools -j1 + emake -C tests/plugin -j1 + fi +} + +multilib_src_test() { + multilib_is_native_abi && emake -j1 check +} + +multilib_src_install() { + if multilib_is_native_abi; then + INSTALL_CATPAGES="no" emake DESTDIR="${D}" install + else + emake -C include DESTDIR="${D}" install + emake -C lib DESTDIR="${D}" install + emake -C kdc DESTDIR="${D}" install + emake -C tools DESTDIR="${D}" install + emake -C tests/plugin DESTDIR="${D}" install + fi +} + +multilib_src_install_all() { + dodoc ChangeLog* README NEWS TODO + + # client rename + mv "${D}"/usr/share/man/man1/{,k}su.1 + mv "${D}"/usr/bin/{,k}su + + newinitd "${FILESDIR}"/heimdal-kdc.initd-r2 heimdal-kdc + newinitd "${FILESDIR}"/heimdal-kadmind.initd-r2 heimdal-kadmind + newinitd "${FILESDIR}"/heimdal-kpasswdd.initd-r2 heimdal-kpasswdd + newinitd "${FILESDIR}"/heimdal-kcm.initd-r1 heimdal-kcm + + newconfd "${FILESDIR}"/heimdal-kdc.confd heimdal-kdc + newconfd "${FILESDIR}"/heimdal-kadmind.confd heimdal-kadmind + newconfd "${FILESDIR}"/heimdal-kpasswdd.confd heimdal-kpasswdd + newconfd "${FILESDIR}"/heimdal-kcm.confd heimdal-kcm + + insinto /etc + newins "${S}"/krb5.conf krb5.conf.example + + if use hdb-ldap; then + insinto /etc/openldap/schema + doins "${S}/lib/hdb/hdb.schema" + fi + + prune_libtool_files + + # default database dir + keepdir /var/heimdal +} diff --git a/app-i18n/Manifest.gz b/app-i18n/Manifest.gz index 5b1f50aa4894..3a230f579b8f 100644 Binary files a/app-i18n/Manifest.gz and b/app-i18n/Manifest.gz differ diff --git a/app-i18n/ibus-table-chinese/Manifest b/app-i18n/ibus-table-chinese/Manifest index 78999f10b393..c5bdd2d13132 100644 --- a/app-i18n/ibus-table-chinese/Manifest +++ b/app-i18n/ibus-table-chinese/Manifest @@ -1,2 +1 @@ -DIST ibus-table-chinese-1.4.6-Source.tar.gz 7604868 BLAKE2B 25662d2f9d2f305fbd2cfda79aae1ebb721f0a4cce7a152032d4d2c4cf689488e57ce9134fa0f4de7fc1e4fa9a088991a5c25b3087dda2d9e17620dd4546323b SHA512 52a72c388ad287572ae334bb25537b6054f72ecdd641aa1c539b85a5e9a4cf97801ae38baa8ace1caabca95d845d2fb4156eb174ac7ad1c9123409749318d76d DIST ibus-table-chinese-1.8.2.tar.gz 10576111 BLAKE2B a80fa9c4780207efefba1118ee9dacc33dba4136b916a24971198b3325bf1b26f86cd4586db994db6dfaa85fffe087b021673d056b10df61c5f95ede4e967cd6 SHA512 30fd1c7ee8416cd62d8e26bc2646a667ac45c4579a7cb191c77e80fecccbc576c34f33ec0b5c55669c073a633298cfda1711e4b9d89a9ef8f6146acdc0167c1a diff --git a/app-i18n/ibus-table-chinese/ibus-table-chinese-1.4.6.ebuild b/app-i18n/ibus-table-chinese/ibus-table-chinese-1.4.6.ebuild deleted file mode 100644 index 6601af39011c..000000000000 --- a/app-i18n/ibus-table-chinese/ibus-table-chinese-1.4.6.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -CMAKE_IN_SOURCE_BUILD="1" -CMAKE_MAKEFILE_GENERATOR="emake" - -inherit cmake-utils - -MY_P="${P}-Source" - -DESCRIPTION="Chinese tables for IBus-Table" -HOMEPAGE="https://github.com/definite/ibus-table-chinese" -SRC_URI="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/ibus/${MY_P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="app-i18n/ibus-table" -DEPEND="${RDEPEND} - dev-util/cmake-fedora" -S="${WORKDIR}/${MY_P}" diff --git a/app-i18n/ibus-table-chinese/ibus-table-chinese-1.8.2.ebuild b/app-i18n/ibus-table-chinese/ibus-table-chinese-1.8.2.ebuild index 36f3ece322b8..8d412b554c15 100644 --- a/app-i18n/ibus-table-chinese/ibus-table-chinese-1.8.2.ebuild +++ b/app-i18n/ibus-table-chinese/ibus-table-chinese-1.8.2.ebuild @@ -24,6 +24,7 @@ src_configure() { local mycmakeargs=( -DCMAKE_FEDORA_TMP_DIR="${T}" -DDATA_DIR="${EPREFIX}"/usr/share + -DMANAGE_DEPENDENCY_PACKAGE_EXISTS_CMD=false -DPRJ_DOC_DIR="${EPREFIX}"/usr/share/doc/${PF} ) cmake-utils_src_configure diff --git a/app-i18n/ibus-table-others/ibus-table-others-1.3.9.ebuild b/app-i18n/ibus-table-others/ibus-table-others-1.3.9.ebuild index 636e5dce4891..ef774df954c8 100644 --- a/app-i18n/ibus-table-others/ibus-table-others-1.3.9.ebuild +++ b/app-i18n/ibus-table-others/ibus-table-others-1.3.9.ebuild @@ -12,6 +12,10 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -RDEPEND="app-i18n/ibus-table" +RDEPEND="app-i18n/ibus-table + !app-i18n/ibus-table-code + !app-i18n/ibus-table-cyrillic + !app-i18n/ibus-table-latin + !app-i18n/ibus-table-tv" DEPEND="${RDEPEND} virtual/pkgconfig" diff --git a/app-i18n/libskk/libskk-1.0.1.ebuild b/app-i18n/libskk/libskk-1.0.1.ebuild index 77cf687debec..9dfbf773269b 100644 --- a/app-i18n/libskk/libskk-1.0.1.ebuild +++ b/app-i18n/libskk/libskk-1.0.1.ebuild @@ -38,6 +38,7 @@ src_configure() { } src_test() { + export GSETTINGS_BACKEND="memory" virtx emake check } diff --git a/app-i18n/libskk/libskk-1.0.2.ebuild b/app-i18n/libskk/libskk-1.0.2.ebuild index 976e49d5f069..c2a5d159fe18 100644 --- a/app-i18n/libskk/libskk-1.0.2.ebuild +++ b/app-i18n/libskk/libskk-1.0.2.ebuild @@ -38,6 +38,7 @@ src_configure() { } src_test() { + export GSETTINGS_BACKEND="memory" virtx emake check } diff --git a/app-office/Manifest.gz b/app-office/Manifest.gz index 3ad21452da14..348a6f49496a 100644 Binary files a/app-office/Manifest.gz and b/app-office/Manifest.gz differ diff --git a/app-office/unoconv/Manifest b/app-office/unoconv/Manifest index 9e7da32a330c..6079ed7658c4 100644 --- a/app-office/unoconv/Manifest +++ b/app-office/unoconv/Manifest @@ -1 +1,2 @@ DIST unoconv-0.7.tar.gz 96151 BLAKE2B dcdb797728db36c33be9aff447a28dddc8918fb3a496fd718d6dd9ec22a49c395ddaf0130b99aa09d8ed9b2516795c1aaeb58fe8d906bb004a2192eae0df1fab SHA512 3b0837e11f22733e0fbef93dc6aeabd0e2d3d59b6c35a6f7b29b86506a5842bcbffb3e889864d6e14c1e53dd306354690a699257fe60f36ce1d4455ab52b5df7 +DIST unoconv-0.8.2.tar.gz 104072 BLAKE2B 1ac16159f939a06cc75f3ff23f5aa7f1c4d49a41d4cce5e9c5866714ef1b3b969f94c074d36fff19d6af22375d5598033fb69761a09d3e60b81d794841c0e0d8 SHA512 cd6a4d06559895c0aebb5fda51ca86928474dd0ca0aa908e81762643186c29cf8436c889eedbb18bc74ed6016414d1aa831cd034614244d5aae677a6b4cdd4c9 diff --git a/app-office/unoconv/unoconv-0.8.2.ebuild b/app-office/unoconv/unoconv-0.8.2.ebuild new file mode 100644 index 000000000000..15bab5d0ef54 --- /dev/null +++ b/app-office/unoconv/unoconv-0.8.2.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) + +inherit eutils python-single-r1 + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +DESCRIPTION="Convert between document formats supported by Libreoffice" +HOMEPAGE="http://dag.wieers.com/home-made/unoconv/" +SRC_URI="https://github.com/dagwieers/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" + +KEYWORDS="~amd64 ~x86" + +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND} + ${PYTHON_DEPS} + !app-text/odt2txt + virtual/ooo +" + +src_prepare() { + epatch "${FILESDIR}/timeout.patch" + eapply_user + python_fix_shebang . +} + +src_compile() { :; } + +src_install() { + emake -j1 doc-install install install-links DESTDIR="${D}" || die + + dodoc ChangeLog CHANGELOG.md README.adoc || die +} diff --git a/app-office/unoconv/unoconv-99999999.ebuild b/app-office/unoconv/unoconv-99999999.ebuild deleted file mode 100644 index 38c911aa3f85..000000000000 --- a/app-office/unoconv/unoconv-99999999.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_{4,5} ) -EGIT_REPO_URI="https://github.com/dagwieers/unoconv.git" -[[ ${PV} == 9999* ]] && SCM_ECLASS="git-r3" -inherit python-single-r1 ${SCM_ECLASS} -unset SCM_ECLASS - -DESCRIPTION="Convert between document formats supported by Libreoffice" -HOMEPAGE="http://dag.wieers.com/home-made/unoconv/" -[[ ${PV} == 9999* ]] || SRC_URI="http://dev.gentooexperimental.org/~scarabeus/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -[[ ${PV} == 9999* ]] || \ -KEYWORDS="~amd64 ~x86" -IUSE="" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -DEPEND="" -RDEPEND="${DEPEND} - ${PYTHON_DEPS} - !app-text/odt2txt - virtual/ooo -" - -DOCS=( ChangeLog CHANGELOG.md README.adoc ) - -PATCHES=( "${FILESDIR}/timeout.patch" ) - -src_compile() { :; } - -src_install() { - emake doc-install install install-links DESTDIR="${D}" || die - einstalldocs - python_fix_shebang . -} diff --git a/app-portage/Manifest.gz b/app-portage/Manifest.gz index 995467a84464..f259ffd09f47 100644 Binary files a/app-portage/Manifest.gz and b/app-portage/Manifest.gz differ diff --git a/app-portage/repoman/repoman-2.3.6.ebuild b/app-portage/repoman/repoman-2.3.6.ebuild index 06452e3cd8de..74da72410815 100644 --- a/app-portage/repoman/repoman-2.3.6.ebuild +++ b/app-portage/repoman/repoman-2.3.6.ebuild @@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]]; then S="${WORKDIR}/${P}/repoman" else SRC_URI="https://dev.gentoo.org/~zmedico/portage/archives/${P}.tar.bz2" - KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" + KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" fi DESCRIPTION="Repoman is a Quality Assurance tool for Gentoo ebuilds" diff --git a/app-text/Manifest.gz b/app-text/Manifest.gz index 6945e6d477a8..18336999bce3 100644 Binary files a/app-text/Manifest.gz and b/app-text/Manifest.gz differ diff --git a/app-text/namazu/files/namazu-gentoo.patch b/app-text/namazu/files/namazu-gentoo.patch index 027804e3fa7a..8f0275ba27c5 100644 --- a/app-text/namazu/files/namazu-gentoo.patch +++ b/app-text/namazu/files/namazu-gentoo.patch @@ -7,7 +7,7 @@ -etcdir = $(pkgdatadir)/etc -etc_DATA = AUTHORS ChangeLog ChangeLog.1 CREDITS COPYING INSTALL \ - INSTALL-ja README README-es README-ja NEWS THANKS TODO \ -+etcdir = @docdir@ ++etcdir = $(docdir) +etc_DATA = AUTHORS ChangeLog ChangeLog.1 CREDITS \ + README README-es README-ja NEWS THANKS TODO \ HACKING HACKING-ja @@ -20,7 +20,7 @@ SUBDIRS = en ja -cssdir = $(pkgdatadir)/doc -+cssdir = @htmldir@ ++cssdir = $(htmldir) css_DATA = namazu.css EXTRA_DIST = $(css_DATA) diff --git a/dev-libs/Manifest.gz b/dev-libs/Manifest.gz index 65089e2edf1a..5726a74c3776 100644 Binary files a/dev-libs/Manifest.gz and b/dev-libs/Manifest.gz differ diff --git a/dev-libs/icu-layoutex/Manifest b/dev-libs/icu-layoutex/Manifest index 6b3b0cb51628..ee35700f7675 100644 --- a/dev-libs/icu-layoutex/Manifest +++ b/dev-libs/icu-layoutex/Manifest @@ -2,3 +2,4 @@ DIST icu4c-58_1-src.tgz 23366443 BLAKE2B 16f1c778d925893769c6e0f0901fe02e5728953 DIST icu4c-58_2-src.tgz 23369902 BLAKE2B cdd2e02c3aba050f5b7f8b38c5a3731e3e5f1cc1403ef86a50908b95560ea3cf8a2d47119fa60cf34f22a8b65eaa2392fd5bcbd3bc48b3da541fe3d9bd7392c0 SHA512 5c21af748f48b392e6c0412bd0aee92162ea931820dcbfab4ec6e0299868504b303d88f7586cc95de55c777ac0dca3a29d6c8ca0892c646ebc864c8a5b5a162a DIST icu4c-59_1-src.tgz 22706578 BLAKE2B 88ec0b5a174b7f854813c66009aba695b61ec4887b845f092f5b5bf401c416cb2920c596f3f33fee4751bb8ea576a37e991fb18bc845142b322e985224b95879 SHA512 9348aa68d72a74cd1f26588c30c80eee1b48800a26930d7eb0749390fd65f7930ee8843058b6a6dd5f265e79054fef661e807ded16a1ad691cbc5ebc5ab944c4 DIST icu4c-60_1-src.tgz 23296064 BLAKE2B 4f90c1f4f00b686d2632429fbaa6a6ec3d977e414f8d00cf82a525a1504c9d8c9b1a19458b495e5847abbcfff933038752f96d6bd165d206582f8ec1b77fff40 SHA512 a6798f70add1b3bac2197a49e09a0bb636279af7019ce572f63a30ab713e09657ee9d9b20aac7ea806fbb84667ca2eca981411e5053b47c3c705aa496a669233 +DIST icu4c-60_2-src.tgz 23317794 BLAKE2B 3c65f32676dfa554e8a93a3802ebc72ae9eac2e758e47e579be946169781ec49438fc1c468b834019af971dda092551f4cfb4faa882856620539f7599605543c SHA512 d127410b17dc79b133eb36bcee7f6db441e7e3ec5edc34c142d597718b7b3dbed5b77859ab18770fe4110fce965a2e5d7bb01a923880190ad4044f47ee7102f9 diff --git a/dev-libs/icu-layoutex/icu-layoutex-60.2.ebuild b/dev-libs/icu-layoutex/icu-layoutex-60.2.ebuild new file mode 100644 index 000000000000..cb059aee76fc --- /dev/null +++ b/dev-libs/icu-layoutex/icu-layoutex-60.2.ebuild @@ -0,0 +1,115 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit eutils flag-o-matic toolchain-funcs autotools multilib-minimal + +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="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~x86" +IUSE="debug static-libs" + +RDEPEND=" + ~dev-libs/icu-${PV}[${MULTILIB_USEDEP}] + dev-libs/icu-le-hb[${MULTILIB_USEDEP}] +" + +DEPEND=" + virtual/pkgconfig[${MULTILIB_USEDEP}] + ${RDEPEND} +" + +S="${WORKDIR}/${PN/-layoutex}/source" + +PATCHES=( + "${FILESDIR}/${PN}-58.1-remove-bashisms.patch" +) + +src_prepare() { + # apply patches + default + + 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 + + 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 6b3b0cb51628..ee35700f7675 100644 --- a/dev-libs/icu/Manifest +++ b/dev-libs/icu/Manifest @@ -2,3 +2,4 @@ DIST icu4c-58_1-src.tgz 23366443 BLAKE2B 16f1c778d925893769c6e0f0901fe02e5728953 DIST icu4c-58_2-src.tgz 23369902 BLAKE2B cdd2e02c3aba050f5b7f8b38c5a3731e3e5f1cc1403ef86a50908b95560ea3cf8a2d47119fa60cf34f22a8b65eaa2392fd5bcbd3bc48b3da541fe3d9bd7392c0 SHA512 5c21af748f48b392e6c0412bd0aee92162ea931820dcbfab4ec6e0299868504b303d88f7586cc95de55c777ac0dca3a29d6c8ca0892c646ebc864c8a5b5a162a DIST icu4c-59_1-src.tgz 22706578 BLAKE2B 88ec0b5a174b7f854813c66009aba695b61ec4887b845f092f5b5bf401c416cb2920c596f3f33fee4751bb8ea576a37e991fb18bc845142b322e985224b95879 SHA512 9348aa68d72a74cd1f26588c30c80eee1b48800a26930d7eb0749390fd65f7930ee8843058b6a6dd5f265e79054fef661e807ded16a1ad691cbc5ebc5ab944c4 DIST icu4c-60_1-src.tgz 23296064 BLAKE2B 4f90c1f4f00b686d2632429fbaa6a6ec3d977e414f8d00cf82a525a1504c9d8c9b1a19458b495e5847abbcfff933038752f96d6bd165d206582f8ec1b77fff40 SHA512 a6798f70add1b3bac2197a49e09a0bb636279af7019ce572f63a30ab713e09657ee9d9b20aac7ea806fbb84667ca2eca981411e5053b47c3c705aa496a669233 +DIST icu4c-60_2-src.tgz 23317794 BLAKE2B 3c65f32676dfa554e8a93a3802ebc72ae9eac2e758e47e579be946169781ec49438fc1c468b834019af971dda092551f4cfb4faa882856620539f7599605543c SHA512 d127410b17dc79b133eb36bcee7f6db441e7e3ec5edc34c142d597718b7b3dbed5b77859ab18770fe4110fce965a2e5d7bb01a923880190ad4044f47ee7102f9 diff --git a/dev-libs/icu/icu-60.2.ebuild b/dev-libs/icu/icu-60.2.ebuild new file mode 100644 index 000000000000..773d5b35d4ba --- /dev/null +++ b/dev-libs/icu/icu-60.2.ebuild @@ -0,0 +1,163 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit eutils 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 ~amd64-fbsd ~x86-fbsd ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris ~x86-winnt" +IUSE="debug doc examples static-libs" + +DEPEND=" + virtual/pkgconfig + doc? ( + app-doc/doxygen[dot] + ) +" + +S="${WORKDIR}/${PN}/source" + +MULTILIB_CHOST_TOOLS=( + /usr/bin/icu-config +) + +PATCHES=( + "${FILESDIR}/${PN}-58.1-remove-bashisms.patch" + "${FILESDIR}/${PN}-58.2-darwin.patch" +) + +pkg_pretend() { + if tc-is-gcc ; then + if [[ $(gcc-major-version) == 4 && $(gcc-minor-version) -lt 9 \ + || $(gcc-major-version) -lt 4 ]] ; then + die "You need at least sys-devel/gcc-4.9" + fi + fi +} + +src_prepare() { + # apply patches + default + + 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() { + # Use C++14 + append-cxxflags -std=c++14 + + if tc-is-gcc ; then + if [[ $(gcc-major-version) == 4 && $(gcc-minor-version) -lt 9 \ + || $(gcc-major-version) -lt 4 ]] ; then + die "You need at least sys-devel/gcc-4.9" + fi + fi + + 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_is_native_abi && myeconfargs+=( + $(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/Manifest b/dev-libs/libcdio/Manifest index 7f546197bd06..b3d13593cd17 100644 --- a/dev-libs/libcdio/Manifest +++ b/dev-libs/libcdio/Manifest @@ -1,3 +1,4 @@ DIST libcdio-0.93.tar.gz 2723371 BLAKE2B 3dc361f48c0ccc22c76ad691f856512a87906ddccdbf05a22d4c8f7f28221d201480e015532be382d576550ecabae40df9e325043fa6cff89b39d77e30b6509b SHA512 a2ea7a1f219e1abdbbb42633003e10ff77b6a879133c96a0c8e7a80fe205c08a48bade1d9941c6493f24d6eb2ed410469b57e19d9740a4400266a6f3f9d3da91 DIST libcdio-0.94.tar.gz 2355452 BLAKE2B c6a720fb714e6aa0d4425ccf92e4c08172d26d77a94e8a6897ffee197a740de78da8d480ec9af2dcfd59c3f96fb2a823a4e39259389dd82ece4108c6a05a4646 SHA512 e1d3c96c4acc7be923c97109c3f76223adc00b293278daef7d5008b1e5d67f33402f9f224f05120e9e1e8b3a8d1fa1b0bd5069dc6dd309741e3590e2c19e0e66 DIST libcdio-1.0.0.tar.gz 2343992 BLAKE2B d187a0aba99efa1172cab302fcd020dc2a581633368230a6ba00db6250c8e7d5e66111fba1804ecb0ba5416c876f88f1d07549118bb003d4631c14d0f3e85ba6 SHA512 2beb5c9cf455c5b56f0a8ba641b8fe322c487256b017108fadbdf288e92787fa0b956d2291aa877df5a9b4494f8425de58c0f71d587ef5f9346987733f66e5dc +DIST libcdio-1.1.0.tar.gz 2348106 BLAKE2B c63959d6cd92288b2d098f19b28a61fc5a7005390186045c6f72392becf9eb5808da7a8b952de166c5b263b9c10e594031a3fb908331eda040c210b984b3e11e SHA512 fe5a0d726974c8678b59de74ce043a5ed464f6ab595bf938e90bc5a348e9e882755e75aa3eecce50ce910b28e2498b5a892402fc0ea8728d382d1af36db71985 diff --git a/dev-libs/libcdio/libcdio-1.1.0.ebuild b/dev-libs/libcdio/libcdio-1.1.0.ebuild new file mode 100644 index 000000000000..b8ba3e226653 --- /dev/null +++ b/dev-libs/libcdio/libcdio-1.1.0.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools libtool ltprune multilib-minimal + +DESCRIPTION="A library to encapsulate CD-ROM reading and control" +HOMEPAGE="https://www.gnu.org/software/libcdio/" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0/17" # subslot is based on SONAME +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="cddb +cxx minimal static-libs test" + +RDEPEND=" + !minimal? ( + >=sys-libs/ncurses-5.7-r7:0= + cddb? ( >=media-libs/libcddb-1.3.2 ) + ) + >=virtual/libiconv-0-r1[${MULTILIB_USEDEP}] +" +DEPEND="${RDEPEND} + sys-apps/sed + sys-devel/gettext + virtual/pkgconfig + test? ( dev-lang/perl ) +" + +DOCS="AUTHORS ChangeLog NEWS README* THANKS TODO" + +MULTILIB_WRAPPED_HEADERS=( + /usr/include/cdio/cdio_config.h + /usr/include/cdio/version.h +) + +src_prepare() { + default + + eautoreconf + + sed \ + -e "s:-lncurses:$($(tc-getPKG_CONFIG) --libs ncurses):g" \ + -i configure || die + + elibtoolize # to prevent -L/usr/lib ending up in the linker line wrt 499510 +} + +multilib_src_configure() { + local util_switch + if ! multilib_is_native_abi || use minimal ; then + util_switch="--without" + else + util_switch="--with" + fi + + # Tests fail if ECONF_SOURCE is not relative + ECONF_SOURCE="../${P}" econf \ + --disable-maintainer-mode \ + $(use_enable cxx) \ + --disable-cpp-progs \ + --disable-example-progs \ + $(use_enable static-libs static) \ + $(use_enable cddb) \ + --disable-vcd-info \ + ${util_switch}-{cd-drive,cd-info,cdda-player,cd-read,iso-info,iso-read} +} + +multilib_src_install_all() { + einstalldocs + prune_libtool_files +} diff --git a/dev-libs/nettle/nettle-3.4.ebuild b/dev-libs/nettle/nettle-3.4.ebuild index d9a9f00c9a03..8de7ef006fe4 100644 --- a/dev-libs/nettle/nettle-3.4.ebuild +++ b/dev-libs/nettle/nettle-3.4.ebuild @@ -7,7 +7,7 @@ inherit autotools multilib-build multilib-minimal multilib toolchain-funcs DESCRIPTION="Low-level cryptographic library" HOMEPAGE="http://www.lysator.liu.se/~nisse/nettle/" -SRC_URI="https://www.lysator.liu.se/~nisse/archive/${P}.tar.gz" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" LICENSE="|| ( LGPL-3 LGPL-2.1 )" SLOT="0/6.2" # subslot = libnettle soname version, .2 as broke ABI bug#601512 then fixed diff --git a/dev-php/Manifest.gz b/dev-php/Manifest.gz index ac51c08c4376..207118ce2b3c 100644 Binary files a/dev-php/Manifest.gz and b/dev-php/Manifest.gz differ diff --git a/dev-php/PEAR-Services_W3C_HTMLValidator/Manifest b/dev-php/PEAR-Services_W3C_HTMLValidator/Manifest deleted file mode 100644 index 92866d7798c2..000000000000 --- a/dev-php/PEAR-Services_W3C_HTMLValidator/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST Services_W3C_HTMLValidator-1.0.0.tgz 13598 BLAKE2B 91044738afe73ad30bc5cd7617bc63f2dfa1e4505f7770c37d9b7a1f7223b693dc910aa70875ee2183e32aa6011c22f9c7cbe8d81ef60f13d1706f07a390fbb5 SHA512 d8dc3d3d524d9cd46537f55cb173d73cf633565f3f3169bbaac3bfe43e6213e0a2e4ce16026a32350331a80de09d98c8f5574ad183e62b79e65446e80940b457 diff --git a/dev-php/PEAR-Services_W3C_HTMLValidator/PEAR-Services_W3C_HTMLValidator-1.0.0-r1.ebuild b/dev-php/PEAR-Services_W3C_HTMLValidator/PEAR-Services_W3C_HTMLValidator-1.0.0-r1.ebuild deleted file mode 100644 index 2dab816e190c..000000000000 --- a/dev-php/PEAR-Services_W3C_HTMLValidator/PEAR-Services_W3C_HTMLValidator-1.0.0-r1.ebuild +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="4" - -inherit php-pear-r1 - -DESCRIPTION="Object oriented interface to the API of validator.w3.org" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND=">=dev-php/PEAR-HTTP_Request2-0.2.0" diff --git a/dev-php/PEAR-Services_W3C_HTMLValidator/metadata.xml b/dev-php/PEAR-Services_W3C_HTMLValidator/metadata.xml deleted file mode 100644 index b86acf66c756..000000000000 --- a/dev-php/PEAR-Services_W3C_HTMLValidator/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - php-bugs@gentoo.org - PHP - - diff --git a/kde-frameworks/Manifest.gz b/kde-frameworks/Manifest.gz index 46ca1ec58fa8..db72670dba72 100644 Binary files a/kde-frameworks/Manifest.gz and b/kde-frameworks/Manifest.gz differ diff --git a/kde-frameworks/kfilemetadata/kfilemetadata-5.41.0.ebuild b/kde-frameworks/kfilemetadata/kfilemetadata-5.41.0.ebuild index 6d05ecf9888d..c9b9c841b040 100644 --- a/kde-frameworks/kfilemetadata/kfilemetadata-5.41.0.ebuild +++ b/kde-frameworks/kfilemetadata/kfilemetadata-5.41.0.ebuild @@ -29,6 +29,8 @@ DEPEND="${RDEPEND} test? ( ${PYTHON_DEPS} ) " +RESTRICT+=" test" + pkg_setup() { use test && python-any-r1_pkg_setup kde5_pkg_setup diff --git a/mail-client/Manifest.gz b/mail-client/Manifest.gz index 7bca33c160d2..e1eb7a04b144 100644 Binary files a/mail-client/Manifest.gz and b/mail-client/Manifest.gz differ diff --git a/mail-client/thunderbird/Manifest b/mail-client/thunderbird/Manifest index 9c9fbf201fe9..f0afa169a796 100644 --- a/mail-client/thunderbird/Manifest +++ b/mail-client/thunderbird/Manifest @@ -2,7 +2,7 @@ DIST firefox-45.0-patches-12.tar.xz 22040 BLAKE2B d2d82ad6255b1a7d1d56e3a3e5c5c8 DIST firefox-52.2-patches-01.tar.xz 10400 BLAKE2B 2a32dc77a2b91649ee3602556acbd1fbfafc4105b6b7d29f56c0d7eb9b0da3e3160229b290448517d8bd8fb568b172916214f56d3932a35b32ddfcb01d398b7f SHA512 85cc57e27c46c3243deedcc21d248babbd9ac6c144332ac70dd6e00161fb46584d090683bc1e066c0e9136d6ede5a4e30ccb68d83cad448f6b0d8223c726dafc DIST firefox-52.2-patches-03.tar.xz 13148 BLAKE2B b43fda5b8455f49f042bc2e0d5417d6c17c196db226c2d563cc7b0813e800eaaed1eeb5759166a861ac9dc48c59909717d7e848853aa51c96219c06a32597779 SHA512 420dbeded3ff2f81250554416115a674ece1847db4449af9d09fa3ea5861037da9bd8525ce5bceede2abab1b58e06485e95417644c0ba8332eb076fbfed7cecd DIST firefox-52.4-patches-02.tar.xz 14412 BLAKE2B 9c15aa293dfc36efe1236d9b5736012a3efd0480f0d8eb243687b50245ccdb6e0ed13e564271569211eb767bd01ba3c7688c350005ce862403335dcc2e87bca7 SHA512 6befeaefc118bc161ad05eed619142814e5cf31aaeede3fb5618b1f5ace887e9e1fa6914320b513404380a426cfb0f45107435f92b2d7e95d95cd7c44e03ad96 -DIST firefox-52.5-patches-01.tar.xz 15660 BLAKE2B a6d217057e3ebf8b06ecbee03d88f9154a1336475e6ea9fe3659f5a798c2b4e217edd63d8cdda6602431df5858020a620be22a60e63c2f4033f005abd19e8326 SHA512 8cc8bf42dbb916d820b22a59cba2ecc89922b791a18184eaf380657ab44836832038420b00de6d662c5ab046d80854ca6226635c7dcdc3be0e5db7030ecfe757 +DIST firefox-52.5-patches-02.tar.xz 15084 BLAKE2B 538dd61dbb7b290add4782b323a62f9ab4dbc57326a9a085710d207752118c504eb030a8741c1eed2e281c8d18e5453210b1905d71439250caa588137bbc37d0 SHA512 b80f9acaf49226cd5c2864714826c5b0e7e918e94c31ec81521b90c47edbb88ea85faa34fc22791efefbcd3867ddc413c563de58ca0f8ce21e10a3858899efce DIST gdata-provider-2.6-r1.tar.xz 83836 BLAKE2B 774458132c914cd0165387f2d8c1ebaa228ba4f11b0d52328a5e1f836cc59200aabf6c1002622962073a78cf35330569f8a473cde46d8aa7b3a241b5a460b5fa SHA512 e5fcf60c221590d1d904ce8c6a74da7208b118c2872a26267f4ee6d3e68eea466d44b979b7259a012a21e48eb5b470d52cc9e58584226fe04ce88ff698da495b DIST gdata-provider-3.3.tar.xz 85628 BLAKE2B 2ccde620b181a2d8678f50d7107373886f3b2e7d1d1e8861c4e42602cedb02108d28e0bf5e5cd9e31474356b70cb99baa7870e20436bc72e25cd8a8fc1353d14 SHA512 ae0c0e6fd42d6e7088256ca8a4be5b0bac84b2f331b51afdc982354caef60b6ba631d4f76bfba7523000b49235c8f8c63704d90acf24b34b14696b709be9342b DIST lightning-4.7.8.tar.xz 1951252 BLAKE2B df8900cacfe660ad17454836893e7199b8590d47ef093699afd135e0a39201cb43dda8d581a36b5375a29c43bb55dd7cb9479dcaf02f52ee8f4a454fe3d426a0 SHA512 37decaf4010e48cf242e76c5d73caf96f7b1e34c67fd465fb8b33055a6986d5fa7b1557862526224ab4ac421df3441e974d297ec4a9454dd63a039683ec46fe6 diff --git a/mail-client/thunderbird/thunderbird-52.5.0.ebuild b/mail-client/thunderbird/thunderbird-52.5.0.ebuild index b6e6200a2026..59bfc063d6d1 100644 --- a/mail-client/thunderbird/thunderbird-52.5.0.ebuild +++ b/mail-client/thunderbird/thunderbird-52.5.0.ebuild @@ -17,7 +17,7 @@ uk vi zh-CN zh-TW ) MOZ_PV="${PV/_beta/b}" # Patches -PATCHFF="firefox-52.5-patches-01" +PATCHFF="firefox-52.5-patches-02" MOZ_HTTP_URI="https://archive.mozilla.org/pub/${PN}/releases" diff --git a/media-fonts/Manifest.gz b/media-fonts/Manifest.gz index d3b23db7d47f..7f0fac2011ce 100644 Binary files a/media-fonts/Manifest.gz and b/media-fonts/Manifest.gz differ diff --git a/media-fonts/baekmuk-fonts/Manifest b/media-fonts/baekmuk-fonts/Manifest index 4711b49149da..5c8959e4fdc9 100644 --- a/media-fonts/baekmuk-fonts/Manifest +++ b/media-fonts/baekmuk-fonts/Manifest @@ -1,3 +1,3 @@ -DIST 20020418.tar.bz2 1841477 BLAKE2B 92b781ba678314a58e145488027f6fe998a13f9a75a5838a5bb9572299018feca2acd7dc54ec0a51a1b43fc43f3b394666ca9fe53a99d3011ccb78efd5e8cac1 SHA512 e32fd44d0d19f0a0ac6229763dbf4b4998b766206402fb161ce4d1f7c63019e360b0f0907603a6baf2950832f43ed529f5174fa613e62b93dc245e8ffce7085d DIST baekmuk-bdf-2.2.tar.gz 9547995 BLAKE2B 162a86425042dd615bd7b41565a41f0138697ff512a71589fdd964a98220b143abd43642ac6e3c66c5595b2f211609f3eff3407eafcace256149c0447f30abe6 SHA512 dc0aaf1f684f1e75c70cde3a5e3084e7abae38cbc6057063063f53abdadc200347e3e1c609535c1e44b050ce9540de3175b69d9551de31aa755ba7068632d898 DIST baekmuk-ttf-2.2.tar.gz 29241850 BLAKE2B f14685743d6e1ce76d68f26e740621d768376884fdbd1a5b43c57a77b71d4fd1c634ef421f5161d88efd6a89ee6c7dbfdcb51aab1f64f17b45af2df009a6333b SHA512 779e0bef5fe17e08e0e08ccdad9ad0e91123a5d5cbcb3d66256d517a0903c5fd91c4a8c75eb42f82fcb0d82e26455cf13aeec5ba3a04002133dbbaf1357ec14b +DIST baekmuk-unicode-bdf-20020418.tar.bz2 1841477 BLAKE2B 92b781ba678314a58e145488027f6fe998a13f9a75a5838a5bb9572299018feca2acd7dc54ec0a51a1b43fc43f3b394666ca9fe53a99d3011ccb78efd5e8cac1 SHA512 e32fd44d0d19f0a0ac6229763dbf4b4998b766206402fb161ce4d1f7c63019e360b0f0907603a6baf2950832f43ed529f5174fa613e62b93dc245e8ffce7085d diff --git a/media-fonts/baekmuk-fonts/baekmuk-fonts-2.2-r2.ebuild b/media-fonts/baekmuk-fonts/baekmuk-fonts-2.2-r2.ebuild index 2763f1db1e3c..e69a979666be 100644 --- a/media-fonts/baekmuk-fonts/baekmuk-fonts-2.2-r2.ebuild +++ b/media-fonts/baekmuk-fonts/baekmuk-fonts-2.2-r2.ebuild @@ -1,33 +1,32 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +EAPI="6" + inherit font font-ebdftopcf -TTF_P="${P/fonts/ttf}" BDF_P="${P/fonts/bdf}" -UNI_P="20020418" +TTF_P="${P/fonts/ttf}" +UNI_P="${PN/fonts/unicode-bdf}-20020418" DESCRIPTION="Korean Baekmuk Font" -HOMEPAGE="http://kldp.net/projects/baekmuk/" -SRC_URI="http://kldp.net/download.php/1429/${TTF_P}.tar.gz - http://kldp.net/download.php/1428/${BDF_P}.tar.gz - unicode? ( http://chem.skku.ac.kr/~wkpark/baekmuk/iso10646/${UNI_P}.tar.bz2 )" +HOMEPAGE="http://kldp.net/baekmuk/" +SRC_URI="http://kldp.net/${PN/-*}/release/865-${BDF_P}.tar.gz -> ${BDF_P}.tar.gz + http://kldp.net/${PN/-*}/release/865-${TTF_P}.tar.gz -> ${TTF_P}.tar.gz + unicode? ( mirror://gentoo/${UNI_P}.tar.bz2 )" LICENSE="BSD" SLOT="0" KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" IUSE="unicode" +RESTRICT="binchecks strip" -S=${WORKDIR} - -# Only installs fonts -RESTRICT="strip binchecks" +S="${WORKDIR}" src_unpack() { unpack ${BDF_P}.tar.gz ${TTF_P}.tar.gz - - if use unicode ; then - cd "${WORKDIR}/${BDF_P}/bdf" + if use unicode; then + cd "${WORKDIR}"/${BDF_P}/bdf unpack ${UNI_P}.tar.bz2 fi } @@ -38,7 +37,6 @@ src_compile() { } src_install () { - FONT_S="${S}/${TTF_P}/ttf" FONT_SUFFIX="ttf" font_src_install - use X && FONT_S="${S}/${BDF_P}/bdf" FONT_SUFFIX="pcf.gz" font_src_install - use X || FONT_S="${S}/${BDF_P}/bdf" FONT_SUFFIX="bdf" font_src_install + FONT_S="${S}"/${TTF_P}/ttf FONT_SUFFIX="ttf" font_src_install + FONT_S="${S}"/${BDF_P}/bdf font_src_install } diff --git a/media-fonts/jisx0213-fonts/jisx0213-fonts-20040425-r2.ebuild b/media-fonts/jisx0213-fonts/jisx0213-fonts-20040425-r2.ebuild index 28e50869faf5..f7f912173349 100644 --- a/media-fonts/jisx0213-fonts/jisx0213-fonts-20040425-r2.ebuild +++ b/media-fonts/jisx0213-fonts/jisx0213-fonts-20040425-r2.ebuild @@ -1,39 +1,38 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +EAPI="6" + inherit font font-ebdftopcf DESCRIPTION="Japanese fixed fonts that cover JIS0213 charset" - -HOMEPAGE="http://www12.ocn.ne.jp/~imamura/jisx0213.html" -SRC_BASE1="http://www12.ocn.ne.jp/~imamura" -SRC_BASE2="http://gitatsu.hp.infoseek.co.jp/bdf" -SRC_URI="${SRC_BASE1}/jiskan16-2004-1.bdf.gz - ${SRC_BASE1}/jiskan16-2000-1.bdf.gz - ${SRC_BASE1}/jiskan16-2000-2.bdf.gz - ${SRC_BASE1}/K14-2004-1.bdf.gz - ${SRC_BASE1}/K14-2000-1.bdf.gz - ${SRC_BASE1}/K14-2000-2.bdf.gz - ${SRC_BASE1}/K12-1.bdf.gz - ${SRC_BASE1}/K12-2.bdf.gz - ${SRC_BASE1}/A14.bdf.gz - ${SRC_BASE1}/A12.bdf.gz - ${SRC_BASE2}/jiskan24-2000-1.bdf.gz - ${SRC_BASE2}/jiskan24-2000-2.bdf.gz" +#HOMEPAGE="http://www12.ocn.ne.jp/~imamura/jisx0213.html" +HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" +SRC_URI="mirror://gentoo/jiskan16-2004-1.bdf.gz + mirror://gentoo/jiskan16-2000-1.bdf.gz + mirror://gentoo/jiskan16-2000-2.bdf.gz + mirror://gentoo/K14-2004-1.bdf.gz + mirror://gentoo/K14-2000-1.bdf.gz + mirror://gentoo/K14-2000-2.bdf.gz + mirror://gentoo/K12-1.bdf.gz + mirror://gentoo/K12-2.bdf.gz + mirror://gentoo/A14.bdf.gz + mirror://gentoo/A12.bdf.gz + mirror://gentoo/jiskan24-2000-1.bdf.gz + mirror://gentoo/jiskan24-2000-2.bdf.gz" LICENSE="public-domain" SLOT="0" - KEYWORDS="alpha amd64 arm ia64 ppc s390 sh sparc x86 ~x86-fbsd" +IUSE="" +RESTRICT="binchecks strip" S="${WORKDIR}" + FONT_S="${S}" FONT_PN="${PN/-fonts/}" FONTDIR="/usr/share/fonts/${FONT_PN}" -# Only installs fonts -RESTRICT="strip binchecks" - pkg_postinst(){ if use X; then elog "You need you add following line into 'Section \"Files\"' in" diff --git a/media-fonts/opendesktop-fonts/opendesktop-fonts-1.4.2.ebuild b/media-fonts/opendesktop-fonts/opendesktop-fonts-1.4.2.ebuild index c949581a3a08..b8517aac0d0d 100644 --- a/media-fonts/opendesktop-fonts/opendesktop-fonts-1.4.2.ebuild +++ b/media-fonts/opendesktop-fonts/opendesktop-fonts-1.4.2.ebuild @@ -1,22 +1,26 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +EAPI="6" + inherit font DESCRIPTION="Chinese TrueType Fonts" -HOMEPAGE="http://www.opendesktop.org.tw/" -SRC_URI="ftp://ftp.opendesktop.org.tw/odp/ODOFonts/OpenFonts/${P}.tar.gz" +#HOMEPAGE="http://www.opendesktop.org.tw/" +HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" +SRC_URI="mirror://gentoo/${P}.tar.gz" LICENSE="Arphic" SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 ppc s390 sh sparc x86 ~x86-fbsd" IUSE="" -FONT_S="${S}" FONT_SUFFIX="ttf ttc" -FONT_CONF=( "69-odofonts.conf" +FONT_S="${S}" +FONT_CONF=( + "69-odofonts.conf" "80-odofonts-original.conf" "80-odofonts-simulate-MS-simplified-chinese.conf" - "80-odofonts-simulate-MS-triditional-chinese.conf" ) - + "80-odofonts-simulate-MS-triditional-chinese.conf" +) DOCS="AUTHORS Changelog*" diff --git a/media-video/Manifest.gz b/media-video/Manifest.gz index ef5e2177eeba..83a5636ad655 100644 Binary files a/media-video/Manifest.gz and b/media-video/Manifest.gz differ diff --git a/media-video/vlc/vlc-2.2.6-r2.ebuild b/media-video/vlc/vlc-2.2.6-r2.ebuild deleted file mode 100644 index 7cf4885b897d..000000000000 --- a/media-video/vlc/vlc-2.2.6-r2.ebuild +++ /dev/null @@ -1,477 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -MY_PV="${PV/_/-}" -MY_PV="${MY_PV/-beta/-test}" -MY_P="${PN}-${MY_PV}" -if [[ ${PV} = *9999 ]] ; then - if [[ ${PV%.9999} != ${PV} ]] ; then - EGIT_REPO_URI="https://git.videolan.org/git/vlc/vlc-${PV%.9999}.git" - else - EGIT_REPO_URI="https://git.videolan.org/git/vlc.git" - fi - SCM="git-r3" -else - if [[ ${MY_P} = ${P} ]] ; then - SRC_URI="https://download.videolan.org/pub/videolan/${PN}/${PV}/${P}.tar.xz" - else - SRC_URI="https://download.videolan.org/pub/videolan/testing/${MY_P}/${MY_P}.tar.xz" - fi - KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 -sparc ~x86 ~x86-fbsd" -fi -inherit autotools flag-o-matic toolchain-funcs versionator virtualx ${SCM} - -DESCRIPTION="VLC media player - Video player and streamer" -HOMEPAGE="https://www.videolan.org/vlc/" - -LICENSE="LGPL-2.1 GPL-2" -SLOT="0/5-8" # vlc - vlccore - -IUSE="a52 aalib alsa altivec atmo +audioqueue +avcodec +avformat bidi bluray cdda - cddb chromaprint dbus dc1394 debug directfb directx dts dvb +dvbpsi dvd dxva2 - elibc_glibc +encode faad fdk fluidsynth +ffmpeg flac fontconfig +gcrypt gme - gnome gnutls growl gstreamer httpd ieee1394 jack jpeg kate libass libav - libcaca libnotify +libsamplerate libtiger linsys libtar lirc live lua - macosx-dialog-provider macosx-eyetv macosx-quartztext macosx-qtkit - matroska cpu_flags_x86_mmx modplug mp3 mpeg mtp musepack ncurses neon ogg - omxil opencv opengl optimisememory opus png postproc projectm pulseaudio - qt4 +qt5 rdp rtsp run-as-root samba schroedinger sdl sdl-image sftp shout - sid skins speex cpu_flags_x86_sse svg +swscale taglib theora tremor truetype - twolame udev upnp vaapi v4l vcdx vdpau vlm vnc vorbis vpx wma-fixed +X - x264 x265 +xcb xml xv zeroconf zvbi -" -REQUIRED_USE=" - aalib? ( X ) - bidi? ( truetype ) - cddb? ( cdda ) - dvb? ( dvbpsi ) - dxva2? ( avcodec ) - ffmpeg? ( avcodec avformat swscale ) - fontconfig? ( truetype ) - gnutls? ( gcrypt ) - httpd? ( lua ) - libcaca? ( X ) - libtar? ( skins ) - libtiger? ( kate ) - qt4? ( X ) - qt5? ( X ) - sdl? ( X ) - skins? ( truetype X xml || ( qt4 qt5 ) ) - vaapi? ( avcodec X ) - vdpau? ( X ) - vlm? ( encode ) - xv? ( xcb ) -" -RDEPEND=" - dev-libs/libgpg-error:0 - net-dns/libidn:0 - sys-libs/zlib:0[minizip] - virtual/libintl:0 - a52? ( >=media-libs/a52dec-0.7.4-r3:0 ) - aalib? ( media-libs/aalib:0 ) - alsa? ( >=media-libs/alsa-lib-1.0.24:0 ) - avcodec? ( - !libav? ( media-video/ffmpeg:0= ) - libav? ( media-video/libav:0= ) - ) - avformat? ( - !libav? ( media-video/ffmpeg:0= ) - libav? ( media-video/libav:0= ) - ) - bidi? ( dev-libs/fribidi:0 ) - bluray? ( >=media-libs/libbluray-0.3:0= ) - cddb? ( >=media-libs/libcddb-1.2:0 ) - chromaprint? ( >=media-libs/chromaprint-0.6:0 ) - dbus? ( >=sys-apps/dbus-1.6:0 ) - dc1394? ( >=sys-libs/libraw1394-2.0.1:0 >=media-libs/libdc1394-2.1:2 ) - directfb? ( dev-libs/DirectFB:0 sys-libs/zlib:0 ) - dts? ( >=media-libs/libdca-0.0.5:0 ) - dvbpsi? ( >=media-libs/libdvbpsi-1.0.0:0= ) - dvd? ( >=media-libs/libdvdread-4.9:0 >=media-libs/libdvdnav-4.9:0 ) - elibc_glibc? ( >=sys-libs/glibc-2.8:2.2 ) - faad? ( >=media-libs/faad2-2.6.1:0 ) - fdk? ( media-libs/fdk-aac:0 ) - flac? ( >=media-libs/libogg-1:0 >=media-libs/flac-1.1.2:0 ) - fluidsynth? ( >=media-sound/fluidsynth-1.1.2:0 ) - fontconfig? ( media-libs/fontconfig:1.0 ) - gcrypt? ( >=dev-libs/libgcrypt-1.2.0:0= ) - gme? ( media-libs/game-music-emu:0 ) - gnome? ( gnome-base/gnome-vfs:2 dev-libs/glib:2 ) - gnutls? ( >=net-libs/gnutls-3.0.20:0 ) - gstreamer? ( >=media-libs/gst-plugins-base-1.4.5:1.0 ) - ieee1394? ( >=sys-libs/libraw1394-2.0.1:0 >=sys-libs/libavc1394-0.5.3:0 ) - jack? ( virtual/jack ) - jpeg? ( virtual/jpeg:0 ) - kate? ( >=media-libs/libkate-0.3:0 ) - libass? ( >=media-libs/libass-0.9.8:0= media-libs/fontconfig:1.0 ) - libcaca? ( >=media-libs/libcaca-0.99_beta14:0 ) - libnotify? ( x11-libs/libnotify:0 x11-libs/gtk+:2 x11-libs/gdk-pixbuf:2 dev-libs/glib:2 ) - libsamplerate? ( media-libs/libsamplerate:0 ) - libtar? ( >=dev-libs/libtar-1.2.11-r3:0 ) - libtiger? ( >=media-libs/libtiger-0.3.1:0 ) - linsys? ( >=media-libs/zvbi-0.2.28:0 ) - lirc? ( app-misc/lirc:0 ) - live? ( >=media-plugins/live-2011.12.23:0 ) - lua? ( >=dev-lang/lua-5.1:0 ) - matroska? ( >=dev-libs/libebml-1:0= >=media-libs/libmatroska-1:0= ) - modplug? ( >=media-libs/libmodplug-0.8.4:0 !~media-libs/libmodplug-0.8.8 ) - mp3? ( media-libs/libmad:0 ) - mpeg? ( >=media-libs/libmpeg2-0.3.2:0 ) - mtp? ( >=media-libs/libmtp-1:0 ) - musepack? ( >=media-sound/musepack-tools-444:0 ) - ncurses? ( sys-libs/ncurses:0=[unicode] ) - ogg? ( >=media-libs/libogg-1:0 ) - opencv? ( >media-libs/opencv-2:0= ) - opengl? ( virtual/opengl:0 >=x11-libs/libX11-1.3.99.901:0 ) - opus? ( >=media-libs/opus-1.0.3:0 ) - png? ( media-libs/libpng:0= sys-libs/zlib:0 ) - postproc? ( - !libav? ( >=media-video/ffmpeg-2.2:0= ) - libav? ( media-libs/libpostproc:0= ) - ) - projectm? ( media-libs/libprojectm:0 media-fonts/dejavu:0 ) - pulseaudio? ( >=media-sound/pulseaudio-1:0 ) - !qt5? ( qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 ) ) - qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 ) - rdp? ( =net-misc/freerdp-1*:0=[client] ) - samba? ( >=net-fs/samba-4.0.0_alpha1:0[client] ) - schroedinger? ( >=media-libs/schroedinger-1.0.10:0 ) - sdl? ( >=media-libs/libsdl-1.2.10:0 - sdl-image? ( >=media-libs/sdl-image-1.2.10:0 sys-libs/zlib:0 ) ) - sftp? ( net-libs/libssh2:0 ) - shout? ( >=media-libs/libshout-2.1:0 ) - sid? ( media-libs/libsidplay:2 ) - skins? ( x11-libs/libXext:0 x11-libs/libXpm:0 x11-libs/libXinerama:0 ) - speex? ( >=media-libs/speex-1.2.0:0 media-libs/speexdsp:0 ) - svg? ( >=gnome-base/librsvg-2.9:2 >=x11-libs/cairo-1.13.1:0 ) - swscale? ( - !libav? ( media-video/ffmpeg:0= ) - libav? ( media-video/libav:0= ) - ) - taglib? ( >=media-libs/taglib-1.9:0 sys-libs/zlib:0 ) - theora? ( >=media-libs/libtheora-1.0_beta3:0 ) - tremor? ( media-libs/tremor:0 ) - truetype? ( media-libs/freetype:2 virtual/ttf-fonts:0 - !fontconfig? ( media-fonts/dejavu:0 ) ) - twolame? ( media-sound/twolame:0 ) - udev? ( >=virtual/udev-142:0 ) - upnp? ( net-libs/libupnp:0 ) - v4l? ( media-libs/libv4l:0 ) - vaapi? ( - x11-libs/libva:0[X,drm] - !libav? ( media-video/ffmpeg:0=[vaapi] ) - libav? ( media-video/libav:0=[vaapi] ) - ) - vcdx? ( >=dev-libs/libcdio-0.78.2:0 >=media-video/vcdimager-0.7.22:0 ) - vdpau? ( - x11-libs/libvdpau:0 - !libav? ( media-video/ffmpeg:0= ) - libav? ( >=media-video/libav-10:0= ) - ) - vnc? ( >=net-libs/libvncserver-0.9.9:0 ) - vorbis? ( media-libs/libvorbis:0 ) - vpx? ( media-libs/libvpx:0= ) - X? ( x11-libs/libX11:0 ) - x264? ( media-libs/x264:0= ) - x265? ( media-libs/x265:0= ) - xcb? ( x11-libs/libxcb:0 x11-libs/xcb-util:0 x11-libs/xcb-util-keysyms:0 ) - xml? ( dev-libs/libxml2:2 ) - zeroconf? ( >=net-dns/avahi-0.6:0[dbus] ) - zvbi? ( media-libs/zvbi:0 ) -" -DEPEND="${RDEPEND} - app-arch/xz-utils:0 - >=sys-devel/gettext-0.18.3:* - virtual/pkgconfig:* - amd64? ( dev-lang/yasm:* ) - x86? ( dev-lang/yasm:* ) - xcb? ( x11-proto/xproto:0 ) -" - -PATCHES=( - # Fix build system mistake. - "${FILESDIR}"/${PN}-2.1.0-fix-libtremor-libs.patch - - # Bug #541678 - "${FILESDIR}"/qt4-select.patch - - # Allow QT5.5 since Gentoo has a patched QTwidgets - "${FILESDIR}"/${PN}-2.2.2-qt5widgets.patch - - # Bug #575072 - "${FILESDIR}"/${PN}-2.2.4-relax_ffmpeg.patch - "${FILESDIR}"/${PN}-2.2.4-ffmpeg3.patch - - # Bug #589396 - "${FILESDIR}"/${PN}-2.2.4-cxx0x.patch - - # Bug #594126, #629294 - "${FILESDIR}"/${PN}-2.2.6-decoder-lock-scope.patch - "${FILESDIR}"/${PN}-2.2.4-alsa-large-buffers.patch - - # Bug #593460 - "${FILESDIR}"/${PN}-2.2.4-libav-11.7.patch -) - -DOCS=( AUTHORS THANKS NEWS README doc/fortunes.txt doc/intf-vcd.txt ) - -S="${WORKDIR}/${MY_P}" - -src_unpack() { - if [[ ${PV} = *9999 ]] ; then - git-r3_src_unpack - else - unpack ${A} - fi -} - -src_prepare() { - default - - # Remove unnecessary warnings about unimplemented pragmas on gcc for now. - # Need to recheck this with gcc 4.9 and every subsequent minor bump of gcc. - # - # config.h:792: warning: ignoring #pragma STDC FENV_ACCESS [-Wunknown-pragmas] - # config.h:793: warning: ignoring #pragma STDC FP_CONTRACT [-Wunknown-pragmas] - # - # https://gcc.gnu.org/c99status.html - if tc-is-gcc ; then - sed -i 's/ifndef __FAST_MATH__/if 0/g' configure.ac || die - fi - - # Bootstrap when we are on a git checkout. - if [[ ${PV} = *9999 ]] ; then - ./bootstrap - fi - - # Make it build with libtool 1.5 - rm -f m4/lt* m4/libtool.m4 || die - - # We are not in a real git checkout due to the absence of a .git directory. - touch src/revision.txt || die - - # Don't use --started-from-file when not using dbus. - if ! use dbus ; then - sed -i 's/ --started-from-file//' share/vlc.desktop.in || die - fi - - eautoreconf - - # Disable automatic running of tests. - find . -name 'Makefile.in' -exec sed -i 's/\(..*\)check-TESTS/\1/' {} \; || die - - # If qtchooser is installed, it may break the build, because moc,rcc and uic binaries for wrong qt - # version may be used. Setting QT_SELECT environment variable will enforce correct binaries. - if use qt5; then - export QT_SELECT=qt5 - elif use qt4; then - export QT_SELECT=qt4 - fi -} - -src_configure() { - local myconf - - # Compatibility fix for Samba 4. - use samba && append-cppflags "-I/usr/include/samba-4.0" - - # We need to disable -fstack-check if use >=gcc 4.8.0. bug #499996 - use x86 && append-cflags $(test-flags-CC -fno-stack-check) - - # FIXME: Needs libresid-builder from libsidplay:2 which is in another directory... - append-ldflags "-L/usr/$(get_libdir)/sidplay/builders/" - - if use truetype || use projectm ; then - local dejavu="/usr/share/fonts/dejavu/" - myconf="--with-default-font=${dejavu}/DejaVuSans.ttf \ - --with-default-font-family=Sans \ - --with-default-monospace-font=${dejavu}/DejaVuSansMono.ttf - --with-default-monospace-font-family=Monospace" - fi - - if use qt5 ; then - myconf+=" --enable-qt=5" - else - if use qt4 ; then - myconf+=" --enable-qt=4" - else - myconf+=" --disable-qt" - fi - fi - - econf \ - ${myconf} \ - --enable-vlc \ - --docdir=/usr/share/doc/${PF} \ - --disable-dependency-tracking \ - --disable-optimizations \ - --disable-update-check \ - --enable-fast-install \ - --enable-screen \ - $(use_enable a52) \ - $(use_enable aalib aa) \ - $(use_enable alsa) \ - $(use_enable altivec) \ - $(use_enable atmo) \ - $(use_enable audioqueue) \ - $(use_enable avcodec) \ - $(use_enable avformat) \ - $(use_enable bidi fribidi) \ - $(use_enable bluray) \ - $(use_enable cdda vcd) \ - $(use_enable cddb libcddb) \ - $(use_enable chromaprint) \ - $(use_enable dbus) \ - $(use_enable directfb) \ - $(use_enable directx) \ - $(use_enable dc1394) \ - $(use_enable debug) \ - $(use_enable dts dca) \ - $(use_enable dvbpsi) \ - $(use_enable dvd dvdread) $(use_enable dvd dvdnav) \ - $(use_enable dxva2) \ - $(use_enable encode sout) \ - $(use_enable faad) \ - $(use_enable fdk fdkaac) \ - $(use_enable flac) \ - $(use_enable fluidsynth) \ - $(use_enable fontconfig) \ - $(use_enable gcrypt libgcrypt) \ - $(use_enable gme) \ - $(use_enable gnome gnomevfs) \ - $(use_enable gnutls) \ - $(use_enable growl) \ - $(use_enable gstreamer gst-decode) \ - $(use_enable httpd) \ - $(use_enable ieee1394 dv1394) \ - $(use_enable jack) \ - $(use_enable jpeg) \ - $(use_enable kate) \ - $(use_enable libass) \ - $(use_enable libcaca caca) \ - $(use_enable libnotify notify) \ - $(use_enable libsamplerate samplerate) \ - $(use_enable libtar) \ - $(use_enable libtiger tiger) \ - $(use_enable linsys) \ - $(use_enable lirc) \ - $(use_enable live live555) \ - $(use_enable lua) \ - $(use_enable macosx-dialog-provider) \ - $(use_enable macosx-eyetv) \ - $(use_enable macosx-qtkit) \ - $(use_enable macosx-quartztext) \ - $(use_enable matroska mkv) \ - $(use_enable cpu_flags_x86_mmx mmx) \ - $(use_enable modplug mod) \ - $(use_enable mp3 mad) \ - $(use_enable mpeg libmpeg2) \ - $(use_enable mtp) \ - $(use_enable musepack mpc) \ - $(use_enable ncurses) \ - $(use_enable neon) \ - $(use_enable ogg) $(use_enable ogg mux_ogg) \ - $(use_enable omxil) \ - $(use_enable omxil omxil-vout) \ - $(use_enable opencv) \ - $(use_enable opengl glspectrum) \ - $(use_enable opus) \ - $(use_enable optimisememory optimize-memory) \ - $(use_enable png) \ - $(use_enable postproc) \ - $(use_enable projectm) \ - $(use_enable pulseaudio pulse) \ - $(use_enable rdp freerdp) \ - $(use_enable rtsp realrtsp) \ - $(use_enable run-as-root) \ - $(use_enable samba smbclient) \ - $(use_enable schroedinger) \ - $(use_enable sdl) \ - $(use_enable sdl-image) \ - $(use_enable sid) \ - $(use_enable sftp) \ - $(use_enable shout) \ - $(use_enable skins skins2) \ - $(use_enable speex) \ - $(use_enable cpu_flags_x86_sse sse) \ - $(use_enable svg) \ - $(use_enable svg svgdec) \ - $(use_enable swscale) \ - $(use_enable taglib) \ - $(use_enable theora) \ - $(use_enable tremor) \ - $(use_enable truetype freetype) \ - $(use_enable twolame) \ - $(use_enable udev) \ - $(use_enable upnp) \ - $(use_enable v4l v4l2) \ - $(use_enable vaapi libva) \ - $(use_enable vcdx) \ - $(use_enable vdpau) \ - $(use_enable vlm) \ - $(use_enable vnc) \ - $(use_enable vorbis) \ - $(use_enable vpx) \ - $(use_enable wma-fixed) \ - $(use_with X x) \ - $(use_enable x264) \ - $(use_enable x265) \ - $(use_enable xcb) \ - $(use_enable xml libxml2) \ - $(use_enable xv xvideo) \ - $(use_enable zeroconf bonjour) \ - $(use_enable zvbi) $(use_enable !zvbi telx) \ - --disable-asdcp \ - --disable-coverage \ - --disable-cprof \ - --disable-crystalhd \ - --disable-decklink \ - --disable-gles1 \ - --disable-gles2 \ - --disable-goom \ - --disable-kai \ - --disable-kva \ - --disable-maintainer-mode \ - --disable-merge-ffmpeg \ - --disable-mfx \ - --disable-mmal-codec \ - --disable-mmal-vout \ - --disable-opensles \ - --disable-oss \ - --disable-quicktime \ - --disable-rpi-omxil \ - --disable-shine \ - --disable-sndio \ - --disable-vda \ - --disable-vsxu \ - --disable-wasapi - - # ^ We don't have these disabled libraries in the Portage tree yet. - - # _FORTIFY_SOURCE is set to 2 in config.h, which is also the default value on Gentoo. - # Other values of _FORTIFY_SOURCE may break the build (bug 523144), so definition should not be removed from config.h. - # To prevent redefinition warnings, we undefine _FORTIFY_SOURCE at the very start of config.h file - sed -i '1i#undef _FORTIFY_SOURCE' "${S}"/config.h || die -} - -src_test() { - virtx emake check-TESTS -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die -} - -pkg_postinst() { - if [[ "$ROOT" = "/" ]] && [[ -x "/usr/$(get_libdir)/vlc/vlc-cache-gen" ]] ; then - einfo "Running /usr/$(get_libdir)/vlc/vlc-cache-gen on /usr/$(get_libdir)/vlc/plugins/" - "/usr/$(get_libdir)/vlc/vlc-cache-gen" -f "/usr/$(get_libdir)/vlc/plugins/" - else - ewarn "We cannot run vlc-cache-gen (most likely ROOT!=/)" - ewarn "Please run /usr/$(get_libdir)/vlc/vlc-cache-gen manually" - ewarn "If you do not do it, vlc will take a long time to load." - fi -} diff --git a/metadata/Manifest.gz b/metadata/Manifest.gz index 0e47968aa278..2b316988e202 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 7554c9f8ff5c..7ce2bdb2e040 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Tue, 12 Dec 2017 07:08:33 +0000 +Tue, 12 Dec 2017 15:08:35 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index 7554c9f8ff5c..7ce2bdb2e040 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Tue, 12 Dec 2017 07:08:33 +0000 +Tue, 12 Dec 2017 15:08:35 +0000 diff --git a/metadata/md5-cache/Manifest.gz b/metadata/md5-cache/Manifest.gz index 8eb4b2d08beb..9849ae3a4c0f 100644 Binary files a/metadata/md5-cache/Manifest.gz and b/metadata/md5-cache/Manifest.gz differ diff --git a/metadata/md5-cache/app-crypt/Manifest.gz b/metadata/md5-cache/app-crypt/Manifest.gz index 38be7cac6a89..ce0660903a4b 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/heimdal-7.5.0 b/metadata/md5-cache/app-crypt/heimdal-7.5.0 new file mode 100644 index 000000000000..48280efe82cd --- /dev/null +++ b/metadata/md5-cache/app-crypt/heimdal-7.5.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=ssl? ( !libressl? ( >=dev-libs/openssl-1.0.1h-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(-)?] ) libressl? ( dev-libs/libressl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) berkdb? ( >=sys-libs/db-4.8.30-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(-)?] ) !berkdb? ( >=sys-libs/gdbm-1.10-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(-)?] ) caps? ( sys-libs/libcap-ng ) >=dev-db/sqlite-3.8.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/e2fsprogs-libs-1.42.9[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/ncurses:0= >=sys-libs/readline-6.2_p5-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] afs? ( net-fs/openafs ) hdb-ldap? ( >=net-nds/openldap-2.3.0 ) X? ( x11-libs/libX11 x11-libs/libXau x11-libs/libXt ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20140508-r1 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) !!app-crypt/mit-krb5 !!app-crypt/mit-krb5-appl || ( dev-lang/python:3.6 dev-lang/python:3.5 dev-lang/python:3.4 >=dev-lang/python-2.7.5-r2:2.7 ) >=virtual/pkgconfig-0-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-devel/autoconf-2.62 test? ( X? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=Kerberos 5 implementation from KTH +EAPI=6 +HOMEPAGE=http://www.h5l.org/ +IUSE=afs +berkdb caps hdb-ldap ipv6 libressl otp +pkinit selinux ssl static-libs test X abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd +LICENSE=BSD +RDEPEND=ssl? ( !libressl? ( >=dev-libs/openssl-1.0.1h-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(-)?] ) libressl? ( dev-libs/libressl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) berkdb? ( >=sys-libs/db-4.8.30-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(-)?] ) !berkdb? ( >=sys-libs/gdbm-1.10-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(-)?] ) caps? ( sys-libs/libcap-ng ) >=dev-db/sqlite-3.8.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/e2fsprogs-libs-1.42.9[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/ncurses:0= >=sys-libs/readline-6.2_p5-r1:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] afs? ( net-fs/openafs ) hdb-ldap? ( >=net-nds/openldap-2.3.0 ) X? ( x11-libs/libX11 x11-libs/libXau x11-libs/libXt ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20140508-r1 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) !!app-crypt/mit-krb5 !!app-crypt/mit-krb5-appl selinux? ( sec-policy/selinux-kerberos ) +SLOT=0 +SRC_URI=https://github.com/heimdal/heimdal/releases/download/heimdal-7.5.0/heimdal-7.5.0.tar.gz +_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 db-use 582140d1a711279e50ce284fc7b609f5 desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 flag-o-matic a6089a2a4027ae3da4a460dc87b21050 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 +_md5_=b5a71df7cc81aa4aed617d500740ff86 diff --git a/metadata/md5-cache/app-i18n/Manifest.gz b/metadata/md5-cache/app-i18n/Manifest.gz index 961b23244293..14d8d6a72d7b 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/ibus-table-chinese-1.4.6 b/metadata/md5-cache/app-i18n/ibus-table-chinese-1.4.6 deleted file mode 100644 index 79b5c39dda0b..000000000000 --- a/metadata/md5-cache/app-i18n/ibus-table-chinese-1.4.6 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=app-i18n/ibus-table dev-util/cmake-fedora sys-devel/make >=dev-util/cmake-3.7.2 -DESCRIPTION=Chinese tables for IBus-Table -EAPI=6 -HOMEPAGE=https://github.com/definite/ibus-table-chinese -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=app-i18n/ibus-table -SLOT=0 -SRC_URI=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/ibus/ibus-table-chinese-1.4.6-Source.tar.gz -_eclasses_=cmake-utils 77a5a8d3308359caadcdd91688f20093 desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 flag-o-matic a6089a2a4027ae3da4a460dc87b21050 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=8bba87925c78047f2cb1717aa69f5c1d diff --git a/metadata/md5-cache/app-i18n/ibus-table-chinese-1.8.2 b/metadata/md5-cache/app-i18n/ibus-table-chinese-1.8.2 index e66c18610e05..d34cdf043a1d 100644 --- a/metadata/md5-cache/app-i18n/ibus-table-chinese-1.8.2 +++ b/metadata/md5-cache/app-i18n/ibus-table-chinese-1.8.2 @@ -9,4 +9,4 @@ RDEPEND=app-i18n/ibus-table SLOT=0 SRC_URI=https://github.com/definite/ibus-table-chinese/archive/1.8.2.tar.gz -> ibus-table-chinese-1.8.2.tar.gz _eclasses_=cmake-utils 77a5a8d3308359caadcdd91688f20093 desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 flag-o-matic a6089a2a4027ae3da4a460dc87b21050 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=ce017e3c27b893cac286bd887a070d1c +_md5_=ff382bdd3974a4395184acbdefe79cd3 diff --git a/metadata/md5-cache/app-i18n/ibus-table-others-1.3.9 b/metadata/md5-cache/app-i18n/ibus-table-others-1.3.9 index 792a6467e1f7..3b725ddcba17 100644 --- a/metadata/md5-cache/app-i18n/ibus-table-others-1.3.9 +++ b/metadata/md5-cache/app-i18n/ibus-table-others-1.3.9 @@ -1,11 +1,11 @@ DEFINED_PHASES=- -DEPEND=app-i18n/ibus-table virtual/pkgconfig +DEPEND=app-i18n/ibus-table !app-i18n/ibus-table-code !app-i18n/ibus-table-cyrillic !app-i18n/ibus-table-latin !app-i18n/ibus-table-tv virtual/pkgconfig DESCRIPTION=Various tables for IBus-Table EAPI=6 HOMEPAGE=https://github.com/moebiuscurve/ibus-table-others KEYWORDS=~amd64 ~x86 LICENSE=GPL-3 -RDEPEND=app-i18n/ibus-table +RDEPEND=app-i18n/ibus-table !app-i18n/ibus-table-code !app-i18n/ibus-table-cyrillic !app-i18n/ibus-table-latin !app-i18n/ibus-table-tv SLOT=0 SRC_URI=https://github.com/moebiuscurve/ibus-table-others/releases/download/1.3.9/ibus-table-others-1.3.9.tar.gz -_md5_=7a4fa834a7a8217685643100f0fe4c4b +_md5_=a24f4bacda5e138d0b1a2f18e71a6f84 diff --git a/metadata/md5-cache/app-i18n/libskk-1.0.1 b/metadata/md5-cache/app-i18n/libskk-1.0.1 index 25790e49b0af..7c8a00a91a29 100644 --- a/metadata/md5-cache/app-i18n/libskk-1.0.1 +++ b/metadata/md5-cache/app-i18n/libskk-1.0.1 @@ -10,4 +10,4 @@ RDEPEND=dev-libs/glib:2 dev-libs/json-glib dev-libs/libgee:0 introspection? ( de SLOT=0 SRC_URI=https://bitbucket.org/libskk/libskk/downloads/libskk-1.0.1.tar.gz _eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af vala 103e6885c83965507391cdc5b6fa0e67 virtualx 171580f737f5aaf18fcb456548588066 -_md5_=594a69d2089eec3306c26d88abb531d8 +_md5_=f978fd405668e09f6586f2ab6041ae38 diff --git a/metadata/md5-cache/app-i18n/libskk-1.0.2 b/metadata/md5-cache/app-i18n/libskk-1.0.2 index 6e7d9a683131..91975222196e 100644 --- a/metadata/md5-cache/app-i18n/libskk-1.0.2 +++ b/metadata/md5-cache/app-i18n/libskk-1.0.2 @@ -10,4 +10,4 @@ RDEPEND=dev-libs/glib:2 dev-libs/json-glib dev-libs/libgee:0.8 introspection? ( SLOT=0 SRC_URI=https://github.com/ueno/libskk/releases/download/1.0.2/libskk-1.0.2.tar.gz _eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af vala 103e6885c83965507391cdc5b6fa0e67 virtualx 171580f737f5aaf18fcb456548588066 -_md5_=3906f797c563772d5fd567fb27288b2e +_md5_=4288c1d347291ec80c7d86bbec374b58 diff --git a/metadata/md5-cache/app-office/Manifest.gz b/metadata/md5-cache/app-office/Manifest.gz index 65d418d0443a..1cb77e3ec576 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/unoconv-0.8.2 b/metadata/md5-cache/app-office/unoconv-0.8.2 new file mode 100644 index 000000000000..511edadb6ac8 --- /dev/null +++ b/metadata/md5-cache/app-office/unoconv-0.8.2 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install prepare setup +DESCRIPTION=Convert between document formats supported by Libreoffice +EAPI=6 +HOMEPAGE=http://dag.wieers.com/home-made/unoconv/ +IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 python_single_target_python2_7 python_single_target_python3_4 python_single_target_python3_5 python_single_target_python3_6 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_single_target_python3_4? ( dev-lang/python:3.4 ) python_single_target_python3_5? ( dev-lang/python:3.5 ) python_single_target_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?] !app-text/odt2txt virtual/ooo +REQUIRED_USE=^^ ( python_single_target_python2_7 python_single_target_python3_4 python_single_target_python3_5 python_single_target_python3_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_4? ( python_targets_python3_4 ) python_single_target_python3_5? ( python_targets_python3_5 ) python_single_target_python3_6? ( python_targets_python3_6 ) +SLOT=0 +SRC_URI=https://github.com/dagwieers/unoconv/archive/0.8.2.tar.gz -> unoconv-0.8.2.tar.gz +_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af +_md5_=04084ac5eac916a9d5bd5cb9567fa773 diff --git a/metadata/md5-cache/app-office/unoconv-99999999 b/metadata/md5-cache/app-office/unoconv-99999999 deleted file mode 100644 index 13a6148ff30d..000000000000 --- a/metadata/md5-cache/app-office/unoconv-99999999 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile install setup unpack -DEPEND=>=dev-vcs/git-1.8.2.1 -DESCRIPTION=Convert between document formats supported by Libreoffice -EAPI=6 -HOMEPAGE=http://dag.wieers.com/home-made/unoconv/ -IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_single_target_python2_7 python_single_target_python3_4 python_single_target_python3_5 -LICENSE=GPL-2 -RDEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_single_target_python3_4? ( dev-lang/python:3.4 ) python_single_target_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?,python_single_target_python3_5(+)?] !app-text/odt2txt virtual/ooo -REQUIRED_USE=^^ ( python_single_target_python2_7 python_single_target_python3_4 python_single_target_python3_5 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_4? ( python_targets_python3_4 ) python_single_target_python3_5? ( python_targets_python3_5 ) -SLOT=0 -_eclasses_=git-r3 fec09a83ae965b041b47f5ff7c8ba29a multilib 97f470f374f2e94ccab04a2fb21d811e python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=d817a24e8efa47eb47221d65de936f9a diff --git a/metadata/md5-cache/app-portage/Manifest.gz b/metadata/md5-cache/app-portage/Manifest.gz index 4b7bdc847e3d..6003cdd594f4 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/repoman-2.3.6 b/metadata/md5-cache/app-portage/repoman-2.3.6 index 7513e2f2f5fa..433c5bbf10fa 100644 --- a/metadata/md5-cache/app-portage/repoman-2.3.6 +++ b/metadata/md5-cache/app-portage/repoman-2.3.6 @@ -4,11 +4,11 @@ DESCRIPTION=Repoman is a Quality Assurance tool for Gentoo ebuilds EAPI=6 HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Portage IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=>=sys-apps/portage-2.3.14[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/lxml-3.6.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[bzip2(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[bzip2(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[bzip2(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[bzip2(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) SLOT=0 SRC_URI=https://dev.gentoo.org/~zmedico/portage/archives/repoman-2.3.6.tar.bz2 _eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=3b9d580dc902bbdbb9d47dea9afab415 +_md5_=2bc1a1f0b803c32ba95bba4385808161 diff --git a/metadata/md5-cache/dev-libs/Manifest.gz b/metadata/md5-cache/dev-libs/Manifest.gz index f498b67ef3a8..d22cce86230e 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/icu-60.2 b/metadata/md5-cache/dev-libs/icu-60.2 new file mode 100644 index 000000000000..b83922c676f1 --- /dev/null +++ b/metadata/md5-cache/dev-libs/icu-60.2 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare pretend test +DEPEND=virtual/pkgconfig doc? ( app-doc/doxygen[dot] ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=International Components for Unicode +EAPI=6 +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 ~amd64-fbsd ~x86-fbsd ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris ~x86-winnt +LICENSE=BSD +SLOT=0/60.2 +SRC_URI=http://download.icu-project.org/files/icu4c/60.2/icu4c-60_2-src.tgz +_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 flag-o-matic a6089a2a4027ae3da4a460dc87b21050 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af +_md5_=812d65bde59b6bce9e7fd7dd7fca2bea diff --git a/metadata/md5-cache/dev-libs/icu-layoutex-60.2 b/metadata/md5-cache/dev-libs/icu-layoutex-60.2 new file mode 100644 index 000000000000..d1b4d34cebf8 --- /dev/null +++ b/metadata/md5-cache/dev-libs/icu-layoutex-60.2 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=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(-)?] ~dev-libs/icu-60.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(-)?] >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=External layout part of International Components for Unicode +EAPI=6 +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=~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 +LICENSE=BSD +RDEPEND=~dev-libs/icu-60.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/60.2 +SRC_URI=http://download.icu-project.org/files/icu4c/60.2/icu4c-60_2-src.tgz +_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 flag-o-matic a6089a2a4027ae3da4a460dc87b21050 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af +_md5_=6917584550ce6fd392d22d6ca75d63a3 diff --git a/metadata/md5-cache/dev-libs/libcdio-1.1.0 b/metadata/md5-cache/dev-libs/libcdio-1.1.0 new file mode 100644 index 000000000000..2f3fbcd6fdcb --- /dev/null +++ b/metadata/md5-cache/dev-libs/libcdio-1.1.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=!minimal? ( >=sys-libs/ncurses-5.7-r7:0= cddb? ( >=media-libs/libcddb-1.3.2 ) ) >=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(-)?] sys-apps/sed sys-devel/gettext virtual/pkgconfig test? ( dev-lang/perl ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=A library to encapsulate CD-ROM reading and control +EAPI=6 +HOMEPAGE=https://www.gnu.org/software/libcdio/ +IUSE=cddb +cxx minimal 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 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris +LICENSE=GPL-3 +RDEPEND=!minimal? ( >=sys-libs/ncurses-5.7-r7:0= cddb? ( >=media-libs/libcddb-1.3.2 ) ) >=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/17 +SRC_URI=mirror://gnu/libcdio/libcdio-1.1.0.tar.gz +_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af +_md5_=52a1c1a396b438d67588c1854751ce4a diff --git a/metadata/md5-cache/dev-libs/nettle-3.4 b/metadata/md5-cache/dev-libs/nettle-3.4 index 78909d463ea9..b01ac40066b7 100644 --- a/metadata/md5-cache/dev-libs/nettle-3.4 +++ b/metadata/md5-cache/dev-libs/nettle-3.4 @@ -8,6 +8,6 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~spar LICENSE=|| ( LGPL-3 LGPL-2.1 ) RDEPEND=gmp? ( >=dev-libs/gmp-5.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(-)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20131008-r17 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] ) SLOT=0/6.2 -SRC_URI=https://www.lysator.liu.se/~nisse/archive/nettle-3.4.tar.gz +SRC_URI=mirror://gnu/nettle/nettle-3.4.tar.gz _eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 libtool 0081a71a261724730ec4c248494f044d multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=c4fab3b90c009632d55754742a7b714a +_md5_=3022a39a461138504a458888eaf0339a diff --git a/metadata/md5-cache/dev-php/Manifest.gz b/metadata/md5-cache/dev-php/Manifest.gz index 584c1ae4aa81..f0e6f57f9675 100644 Binary files a/metadata/md5-cache/dev-php/Manifest.gz and b/metadata/md5-cache/dev-php/Manifest.gz differ diff --git a/metadata/md5-cache/dev-php/PEAR-Services_W3C_HTMLValidator-1.0.0-r1 b/metadata/md5-cache/dev-php/PEAR-Services_W3C_HTMLValidator-1.0.0-r1 deleted file mode 100644 index bfafafc62ff3..000000000000 --- a/metadata/md5-cache/dev-php/PEAR-Services_W3C_HTMLValidator-1.0.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install setup -DEPEND=dev-lang/php >=dev-php/pear-1.8.1 -DESCRIPTION=Object oriented interface to the API of validator.w3.org -EAPI=4 -HOMEPAGE=http://pear.php.net/Services_W3C_HTMLValidator -KEYWORDS=~amd64 ~x86 -LICENSE=BSD -RDEPEND=>=dev-php/PEAR-HTTP_Request2-0.2.0 dev-lang/php >=dev-php/pear-1.8.1 -SLOT=0 -SRC_URI=http://pear.php.net/get/Services_W3C_HTMLValidator-1.0.0.tgz -_eclasses_=multilib 97f470f374f2e94ccab04a2fb21d811e php-pear-r1 e6a4fc4a452dfc1f425180455f1257d8 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=7cc18acb772ae4927d5fdea1695785df diff --git a/metadata/md5-cache/kde-frameworks/Manifest.gz b/metadata/md5-cache/kde-frameworks/Manifest.gz index e63c41a44b4b..0a2f44851e16 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/kfilemetadata-5.41.0 b/metadata/md5-cache/kde-frameworks/kfilemetadata-5.41.0 index e02514ea26ae..8ed2884a4292 100644 --- a/metadata/md5-cache/kde-frameworks/kfilemetadata-5.41.0 +++ b/metadata/md5-cache/kde-frameworks/kfilemetadata-5.41.0 @@ -7,7 +7,8 @@ IUSE=epub exif ffmpeg libav office pdf taglib debug doc test KEYWORDS=~amd64 ~arm ~arm64 ~x86 LICENSE=GPL-2 RDEPEND=>=kde-frameworks/ki18n-5.41:5 >=dev-qt/qtxml-5.7.1:5 epub? ( app-text/ebook-tools ) exif? ( media-gfx/exiv2:= ) ffmpeg? ( libav? ( media-video/libav:= ) !libav? ( media-video/ffmpeg:0= ) ) office? ( >=kde-frameworks/karchive-5.41:5 ) pdf? ( app-text/poppler[qt5] ) taglib? ( media-libs/taglib ) !taglib? ( >=dev-qt/qtmultimedia-5.7.1:5 ) >=kde-frameworks/kf-env-4 || ( >=kde-frameworks/breeze-icons-5.41:5 kde-frameworks/oxygen-icons:* ) !=dev-qt/qtcore-5.7.1:5 doc? ( >=dev-qt/qt-docs-5.7.1:5 ) +RESTRICT=test SLOT=5/5.41 SRC_URI=mirror://kde/stable/frameworks/5.41/kfilemetadata-5.41.0.tar.xz _eclasses_=cmake-utils 77a5a8d3308359caadcdd91688f20093 desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 flag-o-matic a6089a2a4027ae3da4a460dc87b21050 gnome2-utils 4d211d7614f303710fca59db6ec12c88 kde5 aeb3e2e5e6d47b055239967bc5beafd1 kde5-functions 32035c63585f9f5de8a6610e7dab0aa9 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 6f5991c7101863d0b29df63990ad852e ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=579fdfa2df788fe87afc775db46f6806 +_md5_=a4366a75fe614fa00fd66b077832aba0 diff --git a/metadata/md5-cache/mail-client/Manifest.gz b/metadata/md5-cache/mail-client/Manifest.gz index e3c5bd45b421..31b7c5d3295b 100644 Binary files a/metadata/md5-cache/mail-client/Manifest.gz and b/metadata/md5-cache/mail-client/Manifest.gz differ diff --git a/metadata/md5-cache/mail-client/thunderbird-52.5.0 b/metadata/md5-cache/mail-client/thunderbird-52.5.0 index 290434200bf8..c82d958fa518 100644 --- a/metadata/md5-cache/mail-client/thunderbird-52.5.0 +++ b/metadata/md5-cache/mail-client/thunderbird-52.5.0 @@ -9,6 +9,6 @@ LICENSE=MPL-2.0 GPL-2 LGPL-2.1 RDEPEND=>=dev-libs/nss-3.28.3 >=dev-libs/nspr-4.13.1 selinux? ( sec-policy/selinux-thunderbird ) crypt? ( >=x11-plugins/enigmail-1.9.8.3-r1 ) >=app-text/hunspell-1.2:= dev-libs/atk dev-libs/expat >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.25:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.9 ) ) virtual/freedesktop-icon-theme dbus? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=virtual/libffi-3.0.10 virtual/ffmpeg x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt system-cairo? ( >=x11-libs/cairo-1.12[X,xcb] >=x11-libs/pixman-0.19.2 ) system-icu? ( >=dev-libs/icu-58.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0= ) system-sqlite? ( >=dev-db/sqlite-3.17.0:3[secure-delete,debug=] ) system-libvpx? ( >=media-libs/libvpx-1.5.0:0=[postproc] ) system-harfbuzz? ( >=media-libs/harfbuzz-1.3.3:0= >=media-gfx/graphite2-1.3.8 ) !gtk2? ( >=x11-libs/gtk+-3.4.0:3 ) wifi? ( kernel_linux? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 net-misc/networkmanager ) ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.9 ) ) selinux? ( sec-policy/selinux-mozilla ) RESTRICT=!bindist? ( bindist ) SLOT=0 -SRC_URI=l10n_ar? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/ar.xpi -> thunderbird-52.5.0-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/ast.xpi -> thunderbird-52.5.0-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/be.xpi -> thunderbird-52.5.0-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/bg.xpi -> thunderbird-52.5.0-bg.xpi ) l10n_bn-BD? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/bn-BD.xpi -> thunderbird-52.5.0-bn-BD.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/br.xpi -> thunderbird-52.5.0-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/ca.xpi -> thunderbird-52.5.0-ca.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/cs.xpi -> thunderbird-52.5.0-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/cy.xpi -> thunderbird-52.5.0-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/da.xpi -> thunderbird-52.5.0-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/de.xpi -> thunderbird-52.5.0-de.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/el.xpi -> thunderbird-52.5.0-el.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/en-GB.xpi -> thunderbird-52.5.0-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/es-AR.xpi -> thunderbird-52.5.0-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/es-ES.xpi -> thunderbird-52.5.0-es-ES.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/et.xpi -> thunderbird-52.5.0-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/eu.xpi -> thunderbird-52.5.0-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/fi.xpi -> thunderbird-52.5.0-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/fr.xpi -> thunderbird-52.5.0-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/fy-NL.xpi -> thunderbird-52.5.0-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/ga-IE.xpi -> thunderbird-52.5.0-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/gd.xpi -> thunderbird-52.5.0-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/gl.xpi -> thunderbird-52.5.0-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/he.xpi -> thunderbird-52.5.0-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/hr.xpi -> thunderbird-52.5.0-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/hsb.xpi -> thunderbird-52.5.0-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/hu.xpi -> thunderbird-52.5.0-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/hy-AM.xpi -> thunderbird-52.5.0-hy-AM.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/id.xpi -> thunderbird-52.5.0-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/is.xpi -> thunderbird-52.5.0-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/it.xpi -> thunderbird-52.5.0-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/ja.xpi -> thunderbird-52.5.0-ja.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/ko.xpi -> thunderbird-52.5.0-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/lt.xpi -> thunderbird-52.5.0-lt.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/nb-NO.xpi -> thunderbird-52.5.0-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/nl.xpi -> thunderbird-52.5.0-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/nn-NO.xpi -> thunderbird-52.5.0-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/pa-IN.xpi -> thunderbird-52.5.0-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/pl.xpi -> thunderbird-52.5.0-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/pt-BR.xpi -> thunderbird-52.5.0-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/pt-PT.xpi -> thunderbird-52.5.0-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/rm.xpi -> thunderbird-52.5.0-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/ro.xpi -> thunderbird-52.5.0-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/ru.xpi -> thunderbird-52.5.0-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/si.xpi -> thunderbird-52.5.0-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/sk.xpi -> thunderbird-52.5.0-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/sl.xpi -> thunderbird-52.5.0-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/sq.xpi -> thunderbird-52.5.0-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/sr.xpi -> thunderbird-52.5.0-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/sv-SE.xpi -> thunderbird-52.5.0-sv-SE.xpi ) l10n_ta-LK? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/ta-LK.xpi -> thunderbird-52.5.0-ta-LK.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/tr.xpi -> thunderbird-52.5.0-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/uk.xpi -> thunderbird-52.5.0-uk.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/vi.xpi -> thunderbird-52.5.0-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/zh-CN.xpi -> thunderbird-52.5.0-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/zh-TW.xpi -> thunderbird-52.5.0-zh-TW.xpi ) https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/source/thunderbird-52.5.0.source.tar.xz https://dev.gentoo.org/~axs/distfiles/lightning-5.4.5.tar.xz lightning? ( https://dev.gentoo.org/~axs/distfiles/gdata-provider-3.3.tar.xz ) https://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-52.5-patches-01.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-52.5-patches-01.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-52.5-patches-01.tar.xz +SRC_URI=l10n_ar? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/ar.xpi -> thunderbird-52.5.0-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/ast.xpi -> thunderbird-52.5.0-ast.xpi ) l10n_be? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/be.xpi -> thunderbird-52.5.0-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/bg.xpi -> thunderbird-52.5.0-bg.xpi ) l10n_bn-BD? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/bn-BD.xpi -> thunderbird-52.5.0-bn-BD.xpi ) l10n_br? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/br.xpi -> thunderbird-52.5.0-br.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/ca.xpi -> thunderbird-52.5.0-ca.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/cs.xpi -> thunderbird-52.5.0-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/cy.xpi -> thunderbird-52.5.0-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/da.xpi -> thunderbird-52.5.0-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/de.xpi -> thunderbird-52.5.0-de.xpi ) l10n_el? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/el.xpi -> thunderbird-52.5.0-el.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/en-GB.xpi -> thunderbird-52.5.0-en-GB.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/es-AR.xpi -> thunderbird-52.5.0-es-AR.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/es-ES.xpi -> thunderbird-52.5.0-es-ES.xpi ) l10n_et? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/et.xpi -> thunderbird-52.5.0-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/eu.xpi -> thunderbird-52.5.0-eu.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/fi.xpi -> thunderbird-52.5.0-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/fr.xpi -> thunderbird-52.5.0-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/fy-NL.xpi -> thunderbird-52.5.0-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/ga-IE.xpi -> thunderbird-52.5.0-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/gd.xpi -> thunderbird-52.5.0-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/gl.xpi -> thunderbird-52.5.0-gl.xpi ) l10n_he? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/he.xpi -> thunderbird-52.5.0-he.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/hr.xpi -> thunderbird-52.5.0-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/hsb.xpi -> thunderbird-52.5.0-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/hu.xpi -> thunderbird-52.5.0-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/hy-AM.xpi -> thunderbird-52.5.0-hy-AM.xpi ) l10n_id? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/id.xpi -> thunderbird-52.5.0-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/is.xpi -> thunderbird-52.5.0-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/it.xpi -> thunderbird-52.5.0-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/ja.xpi -> thunderbird-52.5.0-ja.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/ko.xpi -> thunderbird-52.5.0-ko.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/lt.xpi -> thunderbird-52.5.0-lt.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/nb-NO.xpi -> thunderbird-52.5.0-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/nl.xpi -> thunderbird-52.5.0-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/nn-NO.xpi -> thunderbird-52.5.0-nn-NO.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/pa-IN.xpi -> thunderbird-52.5.0-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/pl.xpi -> thunderbird-52.5.0-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/pt-BR.xpi -> thunderbird-52.5.0-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/pt-PT.xpi -> thunderbird-52.5.0-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/rm.xpi -> thunderbird-52.5.0-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/ro.xpi -> thunderbird-52.5.0-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/ru.xpi -> thunderbird-52.5.0-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/si.xpi -> thunderbird-52.5.0-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/sk.xpi -> thunderbird-52.5.0-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/sl.xpi -> thunderbird-52.5.0-sl.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/sq.xpi -> thunderbird-52.5.0-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/sr.xpi -> thunderbird-52.5.0-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/sv-SE.xpi -> thunderbird-52.5.0-sv-SE.xpi ) l10n_ta-LK? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/ta-LK.xpi -> thunderbird-52.5.0-ta-LK.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/tr.xpi -> thunderbird-52.5.0-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/uk.xpi -> thunderbird-52.5.0-uk.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/vi.xpi -> thunderbird-52.5.0-vi.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/zh-CN.xpi -> thunderbird-52.5.0-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/linux-i686/xpi/zh-TW.xpi -> thunderbird-52.5.0-zh-TW.xpi ) https://archive.mozilla.org/pub/thunderbird/releases/52.5.0/source/thunderbird-52.5.0.source.tar.xz https://dev.gentoo.org/~axs/distfiles/lightning-5.4.5.tar.xz lightning? ( https://dev.gentoo.org/~axs/distfiles/gdata-provider-3.3.tar.xz ) https://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-52.5-patches-02.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-52.5-patches-02.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-52.5-patches-02.tar.xz _eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 check-reqs bd050ce908e4637604ee604ed4b78e8f desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 flag-o-matic a6089a2a4027ae3da4a460dc87b21050 gnome2-utils 4d211d7614f303710fca59db6ec12c88 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e makeedit 5b9d1905404073cf12f3bf4d694cf387 mozconfig-v6.52 aeba761913d03fc45f4d6ae2b89165ca mozcoreconf-v5 dfc58397c1e9ecd4420428e695cf8dc8 mozextension 42c5ed513e5325a5d0629ad85bb27c23 mozlinguas-v2 e7b3bd89af6dc1a3dd10be68ba3d574d multilib 97f470f374f2e94ccab04a2fb21d811e nsplugins 2049586e425364a1c5bdb004205d1758 pax-utils 4f95120230a315c8caaabeb2307b7eee python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=374e4f751fdf445d159113c1251dfb8d +_md5_=3c622a9514e8c0f97419cf4dc96c5ca2 diff --git a/metadata/md5-cache/media-fonts/Manifest.gz b/metadata/md5-cache/media-fonts/Manifest.gz index af47cade3bff..f06346eca1d2 100644 Binary files a/metadata/md5-cache/media-fonts/Manifest.gz and b/metadata/md5-cache/media-fonts/Manifest.gz differ diff --git a/metadata/md5-cache/media-fonts/baekmuk-fonts-2.2-r2 b/metadata/md5-cache/media-fonts/baekmuk-fonts-2.2-r2 index 029b870e3962..c6c0b7983fc5 100644 --- a/metadata/md5-cache/media-fonts/baekmuk-fonts-2.2-r2 +++ b/metadata/md5-cache/media-fonts/baekmuk-fonts-2.2-r2 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile install postinst postrm setup unpack DEPEND=X? ( x11-apps/mkfontdir media-fonts/encodings ) X? ( media-gfx/ebdftopcf ) DESCRIPTION=Korean Baekmuk Font -EAPI=0 -HOMEPAGE=http://kldp.net/projects/baekmuk/ +EAPI=6 +HOMEPAGE=http://kldp.net/baekmuk/ IUSE=unicode X X 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 ~x86-macos LICENSE=BSD -RESTRICT=strip binchecks +RESTRICT=binchecks strip SLOT=0 -SRC_URI=http://kldp.net/download.php/1429/baekmuk-ttf-2.2.tar.gz http://kldp.net/download.php/1428/baekmuk-bdf-2.2.tar.gz unicode? ( http://chem.skku.ac.kr/~wkpark/baekmuk/iso10646/20020418.tar.bz2 ) +SRC_URI=http://kldp.net/baekmuk/release/865-baekmuk-bdf-2.2.tar.gz -> baekmuk-bdf-2.2.tar.gz http://kldp.net/baekmuk/release/865-baekmuk-ttf-2.2.tar.gz -> baekmuk-ttf-2.2.tar.gz unicode? ( mirror://gentoo/baekmuk-unicode-bdf-20020418.tar.bz2 ) _eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 font 82836641e7d4639329d8c195234ad0e3 font-ebdftopcf e23db122fd578442f37e3e79267eedd8 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=700f110dc2592773d237117a1e98f0ce +_md5_=f8b694505f1d2bceb2dcb7c87386c401 diff --git a/metadata/md5-cache/media-fonts/jisx0213-fonts-20040425-r2 b/metadata/md5-cache/media-fonts/jisx0213-fonts-20040425-r2 index 1ab768fb1d39..5fe1aa13e6ca 100644 --- a/metadata/md5-cache/media-fonts/jisx0213-fonts-20040425-r2 +++ b/metadata/md5-cache/media-fonts/jisx0213-fonts-20040425-r2 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile install postinst postrm setup DEPEND=X? ( x11-apps/mkfontdir media-fonts/encodings ) X? ( media-gfx/ebdftopcf ) DESCRIPTION=Japanese fixed fonts that cover JIS0213 charset -EAPI=0 -HOMEPAGE=http://www12.ocn.ne.jp/~imamura/jisx0213.html +EAPI=6 +HOMEPAGE=https://wiki.gentoo.org/wiki/No_homepage IUSE=X X KEYWORDS=alpha amd64 arm ia64 ppc s390 sh sparc x86 ~x86-fbsd LICENSE=public-domain -RESTRICT=strip binchecks +RESTRICT=binchecks strip SLOT=0 -SRC_URI=http://www12.ocn.ne.jp/~imamura/jiskan16-2004-1.bdf.gz http://www12.ocn.ne.jp/~imamura/jiskan16-2000-1.bdf.gz http://www12.ocn.ne.jp/~imamura/jiskan16-2000-2.bdf.gz http://www12.ocn.ne.jp/~imamura/K14-2004-1.bdf.gz http://www12.ocn.ne.jp/~imamura/K14-2000-1.bdf.gz http://www12.ocn.ne.jp/~imamura/K14-2000-2.bdf.gz http://www12.ocn.ne.jp/~imamura/K12-1.bdf.gz http://www12.ocn.ne.jp/~imamura/K12-2.bdf.gz http://www12.ocn.ne.jp/~imamura/A14.bdf.gz http://www12.ocn.ne.jp/~imamura/A12.bdf.gz http://gitatsu.hp.infoseek.co.jp/bdf/jiskan24-2000-1.bdf.gz http://gitatsu.hp.infoseek.co.jp/bdf/jiskan24-2000-2.bdf.gz +SRC_URI=mirror://gentoo/jiskan16-2004-1.bdf.gz mirror://gentoo/jiskan16-2000-1.bdf.gz mirror://gentoo/jiskan16-2000-2.bdf.gz mirror://gentoo/K14-2004-1.bdf.gz mirror://gentoo/K14-2000-1.bdf.gz mirror://gentoo/K14-2000-2.bdf.gz mirror://gentoo/K12-1.bdf.gz mirror://gentoo/K12-2.bdf.gz mirror://gentoo/A14.bdf.gz mirror://gentoo/A12.bdf.gz mirror://gentoo/jiskan24-2000-1.bdf.gz mirror://gentoo/jiskan24-2000-2.bdf.gz _eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 font 82836641e7d4639329d8c195234ad0e3 font-ebdftopcf e23db122fd578442f37e3e79267eedd8 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=bd149bd5b729ec2783a7f88d0c83a1ac +_md5_=9b9e523b8c0c7a1d6325413a81d7c545 diff --git a/metadata/md5-cache/media-fonts/opendesktop-fonts-1.4.2 b/metadata/md5-cache/media-fonts/opendesktop-fonts-1.4.2 index bbdfe26ed77a..85708daa9cc1 100644 --- a/metadata/md5-cache/media-fonts/opendesktop-fonts-1.4.2 +++ b/metadata/md5-cache/media-fonts/opendesktop-fonts-1.4.2 @@ -1,12 +1,12 @@ DEFINED_PHASES=install postinst postrm setup DEPEND=X? ( x11-apps/mkfontdir media-fonts/encodings ) DESCRIPTION=Chinese TrueType Fonts -EAPI=0 -HOMEPAGE=http://www.opendesktop.org.tw/ +EAPI=6 +HOMEPAGE=https://wiki.gentoo.org/wiki/No_homepage IUSE=X KEYWORDS=alpha amd64 arm hppa ia64 ppc s390 sh sparc x86 ~x86-fbsd LICENSE=Arphic SLOT=0 -SRC_URI=ftp://ftp.opendesktop.org.tw/odp/ODOFonts/OpenFonts/opendesktop-fonts-1.4.2.tar.gz +SRC_URI=mirror://gentoo/opendesktop-fonts-1.4.2.tar.gz _eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 font 82836641e7d4639329d8c195234ad0e3 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=8a8ce9a19a8555c8aa65006813156281 +_md5_=6fd7326934c0a06fe8aeaa4eec7f7030 diff --git a/metadata/md5-cache/media-video/Manifest.gz b/metadata/md5-cache/media-video/Manifest.gz index 177d1b91d8e4..91ae1ad5a57c 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/vlc-2.2.6-r2 b/metadata/md5-cache/media-video/vlc-2.2.6-r2 deleted file mode 100644 index f93cf82b02bd..000000000000 --- a/metadata/md5-cache/media-video/vlc-2.2.6-r2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=configure install postinst prepare test unpack -DEPEND=dev-libs/libgpg-error:0 net-dns/libidn:0 sys-libs/zlib:0[minizip] virtual/libintl:0 a52? ( >=media-libs/a52dec-0.7.4-r3:0 ) aalib? ( media-libs/aalib:0 ) alsa? ( >=media-libs/alsa-lib-1.0.24:0 ) avcodec? ( !libav? ( media-video/ffmpeg:0= ) libav? ( media-video/libav:0= ) ) avformat? ( !libav? ( media-video/ffmpeg:0= ) libav? ( media-video/libav:0= ) ) bidi? ( dev-libs/fribidi:0 ) bluray? ( >=media-libs/libbluray-0.3:0= ) cddb? ( >=media-libs/libcddb-1.2:0 ) chromaprint? ( >=media-libs/chromaprint-0.6:0 ) dbus? ( >=sys-apps/dbus-1.6:0 ) dc1394? ( >=sys-libs/libraw1394-2.0.1:0 >=media-libs/libdc1394-2.1:2 ) directfb? ( dev-libs/DirectFB:0 sys-libs/zlib:0 ) dts? ( >=media-libs/libdca-0.0.5:0 ) dvbpsi? ( >=media-libs/libdvbpsi-1.0.0:0= ) dvd? ( >=media-libs/libdvdread-4.9:0 >=media-libs/libdvdnav-4.9:0 ) elibc_glibc? ( >=sys-libs/glibc-2.8:2.2 ) faad? ( >=media-libs/faad2-2.6.1:0 ) fdk? ( media-libs/fdk-aac:0 ) flac? ( >=media-libs/libogg-1:0 >=media-libs/flac-1.1.2:0 ) fluidsynth? ( >=media-sound/fluidsynth-1.1.2:0 ) fontconfig? ( media-libs/fontconfig:1.0 ) gcrypt? ( >=dev-libs/libgcrypt-1.2.0:0= ) gme? ( media-libs/game-music-emu:0 ) gnome? ( gnome-base/gnome-vfs:2 dev-libs/glib:2 ) gnutls? ( >=net-libs/gnutls-3.0.20:0 ) gstreamer? ( >=media-libs/gst-plugins-base-1.4.5:1.0 ) ieee1394? ( >=sys-libs/libraw1394-2.0.1:0 >=sys-libs/libavc1394-0.5.3:0 ) jack? ( virtual/jack ) jpeg? ( virtual/jpeg:0 ) kate? ( >=media-libs/libkate-0.3:0 ) libass? ( >=media-libs/libass-0.9.8:0= media-libs/fontconfig:1.0 ) libcaca? ( >=media-libs/libcaca-0.99_beta14:0 ) libnotify? ( x11-libs/libnotify:0 x11-libs/gtk+:2 x11-libs/gdk-pixbuf:2 dev-libs/glib:2 ) libsamplerate? ( media-libs/libsamplerate:0 ) libtar? ( >=dev-libs/libtar-1.2.11-r3:0 ) libtiger? ( >=media-libs/libtiger-0.3.1:0 ) linsys? ( >=media-libs/zvbi-0.2.28:0 ) lirc? ( app-misc/lirc:0 ) live? ( >=media-plugins/live-2011.12.23:0 ) lua? ( >=dev-lang/lua-5.1:0 ) matroska? ( >=dev-libs/libebml-1:0= >=media-libs/libmatroska-1:0= ) modplug? ( >=media-libs/libmodplug-0.8.4:0 !~media-libs/libmodplug-0.8.8 ) mp3? ( media-libs/libmad:0 ) mpeg? ( >=media-libs/libmpeg2-0.3.2:0 ) mtp? ( >=media-libs/libmtp-1:0 ) musepack? ( >=media-sound/musepack-tools-444:0 ) ncurses? ( sys-libs/ncurses:0=[unicode] ) ogg? ( >=media-libs/libogg-1:0 ) opencv? ( >media-libs/opencv-2:0= ) opengl? ( virtual/opengl:0 >=x11-libs/libX11-1.3.99.901:0 ) opus? ( >=media-libs/opus-1.0.3:0 ) png? ( media-libs/libpng:0= sys-libs/zlib:0 ) postproc? ( !libav? ( >=media-video/ffmpeg-2.2:0= ) libav? ( media-libs/libpostproc:0= ) ) projectm? ( media-libs/libprojectm:0 media-fonts/dejavu:0 ) pulseaudio? ( >=media-sound/pulseaudio-1:0 ) !qt5? ( qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 ) ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 ) rdp? ( =net-misc/freerdp-1*:0=[client] ) samba? ( >=net-fs/samba-4.0.0_alpha1:0[client] ) schroedinger? ( >=media-libs/schroedinger-1.0.10:0 ) sdl? ( >=media-libs/libsdl-1.2.10:0 sdl-image? ( >=media-libs/sdl-image-1.2.10:0 sys-libs/zlib:0 ) ) sftp? ( net-libs/libssh2:0 ) shout? ( >=media-libs/libshout-2.1:0 ) sid? ( media-libs/libsidplay:2 ) skins? ( x11-libs/libXext:0 x11-libs/libXpm:0 x11-libs/libXinerama:0 ) speex? ( >=media-libs/speex-1.2.0:0 media-libs/speexdsp:0 ) svg? ( >=gnome-base/librsvg-2.9:2 >=x11-libs/cairo-1.13.1:0 ) swscale? ( !libav? ( media-video/ffmpeg:0= ) libav? ( media-video/libav:0= ) ) taglib? ( >=media-libs/taglib-1.9:0 sys-libs/zlib:0 ) theora? ( >=media-libs/libtheora-1.0_beta3:0 ) tremor? ( media-libs/tremor:0 ) truetype? ( media-libs/freetype:2 virtual/ttf-fonts:0 !fontconfig? ( media-fonts/dejavu:0 ) ) twolame? ( media-sound/twolame:0 ) udev? ( >=virtual/udev-142:0 ) upnp? ( net-libs/libupnp:0 ) v4l? ( media-libs/libv4l:0 ) vaapi? ( x11-libs/libva:0[X,drm] !libav? ( media-video/ffmpeg:0=[vaapi] ) libav? ( media-video/libav:0=[vaapi] ) ) vcdx? ( >=dev-libs/libcdio-0.78.2:0 >=media-video/vcdimager-0.7.22:0 ) vdpau? ( x11-libs/libvdpau:0 !libav? ( media-video/ffmpeg:0= ) libav? ( >=media-video/libav-10:0= ) ) vnc? ( >=net-libs/libvncserver-0.9.9:0 ) vorbis? ( media-libs/libvorbis:0 ) vpx? ( media-libs/libvpx:0= ) X? ( x11-libs/libX11:0 ) x264? ( media-libs/x264:0= ) x265? ( media-libs/x265:0= ) xcb? ( x11-libs/libxcb:0 x11-libs/xcb-util:0 x11-libs/xcb-util-keysyms:0 ) xml? ( dev-libs/libxml2:2 ) zeroconf? ( >=net-dns/avahi-0.6:0[dbus] ) zvbi? ( media-libs/zvbi:0 ) app-arch/xz-utils:0 >=sys-devel/gettext-0.18.3:* virtual/pkgconfig:* amd64? ( dev-lang/yasm:* ) x86? ( dev-lang/yasm:* ) xcb? ( x11-proto/xproto:0 ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) -DESCRIPTION=VLC media player - Video player and streamer -EAPI=6 -HOMEPAGE=https://www.videolan.org/vlc/ -IUSE=a52 aalib alsa altivec atmo +audioqueue +avcodec +avformat bidi bluray cdda cddb chromaprint dbus dc1394 debug directfb directx dts dvb +dvbpsi dvd dxva2 elibc_glibc +encode faad fdk fluidsynth +ffmpeg flac fontconfig +gcrypt gme gnome gnutls growl gstreamer httpd ieee1394 jack jpeg kate libass libav libcaca libnotify +libsamplerate libtiger linsys libtar lirc live lua macosx-dialog-provider macosx-eyetv macosx-quartztext macosx-qtkit matroska cpu_flags_x86_mmx modplug mp3 mpeg mtp musepack ncurses neon ogg omxil opencv opengl optimisememory opus png postproc projectm pulseaudio qt4 +qt5 rdp rtsp run-as-root samba schroedinger sdl sdl-image sftp shout sid skins speex cpu_flags_x86_sse svg +swscale taglib theora tremor truetype twolame udev upnp vaapi v4l vcdx vdpau vlm vnc vorbis vpx wma-fixed +X x264 x265 +xcb xml xv zeroconf zvbi test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 -sparc ~x86 ~x86-fbsd -LICENSE=LGPL-2.1 GPL-2 -RDEPEND=dev-libs/libgpg-error:0 net-dns/libidn:0 sys-libs/zlib:0[minizip] virtual/libintl:0 a52? ( >=media-libs/a52dec-0.7.4-r3:0 ) aalib? ( media-libs/aalib:0 ) alsa? ( >=media-libs/alsa-lib-1.0.24:0 ) avcodec? ( !libav? ( media-video/ffmpeg:0= ) libav? ( media-video/libav:0= ) ) avformat? ( !libav? ( media-video/ffmpeg:0= ) libav? ( media-video/libav:0= ) ) bidi? ( dev-libs/fribidi:0 ) bluray? ( >=media-libs/libbluray-0.3:0= ) cddb? ( >=media-libs/libcddb-1.2:0 ) chromaprint? ( >=media-libs/chromaprint-0.6:0 ) dbus? ( >=sys-apps/dbus-1.6:0 ) dc1394? ( >=sys-libs/libraw1394-2.0.1:0 >=media-libs/libdc1394-2.1:2 ) directfb? ( dev-libs/DirectFB:0 sys-libs/zlib:0 ) dts? ( >=media-libs/libdca-0.0.5:0 ) dvbpsi? ( >=media-libs/libdvbpsi-1.0.0:0= ) dvd? ( >=media-libs/libdvdread-4.9:0 >=media-libs/libdvdnav-4.9:0 ) elibc_glibc? ( >=sys-libs/glibc-2.8:2.2 ) faad? ( >=media-libs/faad2-2.6.1:0 ) fdk? ( media-libs/fdk-aac:0 ) flac? ( >=media-libs/libogg-1:0 >=media-libs/flac-1.1.2:0 ) fluidsynth? ( >=media-sound/fluidsynth-1.1.2:0 ) fontconfig? ( media-libs/fontconfig:1.0 ) gcrypt? ( >=dev-libs/libgcrypt-1.2.0:0= ) gme? ( media-libs/game-music-emu:0 ) gnome? ( gnome-base/gnome-vfs:2 dev-libs/glib:2 ) gnutls? ( >=net-libs/gnutls-3.0.20:0 ) gstreamer? ( >=media-libs/gst-plugins-base-1.4.5:1.0 ) ieee1394? ( >=sys-libs/libraw1394-2.0.1:0 >=sys-libs/libavc1394-0.5.3:0 ) jack? ( virtual/jack ) jpeg? ( virtual/jpeg:0 ) kate? ( >=media-libs/libkate-0.3:0 ) libass? ( >=media-libs/libass-0.9.8:0= media-libs/fontconfig:1.0 ) libcaca? ( >=media-libs/libcaca-0.99_beta14:0 ) libnotify? ( x11-libs/libnotify:0 x11-libs/gtk+:2 x11-libs/gdk-pixbuf:2 dev-libs/glib:2 ) libsamplerate? ( media-libs/libsamplerate:0 ) libtar? ( >=dev-libs/libtar-1.2.11-r3:0 ) libtiger? ( >=media-libs/libtiger-0.3.1:0 ) linsys? ( >=media-libs/zvbi-0.2.28:0 ) lirc? ( app-misc/lirc:0 ) live? ( >=media-plugins/live-2011.12.23:0 ) lua? ( >=dev-lang/lua-5.1:0 ) matroska? ( >=dev-libs/libebml-1:0= >=media-libs/libmatroska-1:0= ) modplug? ( >=media-libs/libmodplug-0.8.4:0 !~media-libs/libmodplug-0.8.8 ) mp3? ( media-libs/libmad:0 ) mpeg? ( >=media-libs/libmpeg2-0.3.2:0 ) mtp? ( >=media-libs/libmtp-1:0 ) musepack? ( >=media-sound/musepack-tools-444:0 ) ncurses? ( sys-libs/ncurses:0=[unicode] ) ogg? ( >=media-libs/libogg-1:0 ) opencv? ( >media-libs/opencv-2:0= ) opengl? ( virtual/opengl:0 >=x11-libs/libX11-1.3.99.901:0 ) opus? ( >=media-libs/opus-1.0.3:0 ) png? ( media-libs/libpng:0= sys-libs/zlib:0 ) postproc? ( !libav? ( >=media-video/ffmpeg-2.2:0= ) libav? ( media-libs/libpostproc:0= ) ) projectm? ( media-libs/libprojectm:0 media-fonts/dejavu:0 ) pulseaudio? ( >=media-sound/pulseaudio-1:0 ) !qt5? ( qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 ) ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 ) rdp? ( =net-misc/freerdp-1*:0=[client] ) samba? ( >=net-fs/samba-4.0.0_alpha1:0[client] ) schroedinger? ( >=media-libs/schroedinger-1.0.10:0 ) sdl? ( >=media-libs/libsdl-1.2.10:0 sdl-image? ( >=media-libs/sdl-image-1.2.10:0 sys-libs/zlib:0 ) ) sftp? ( net-libs/libssh2:0 ) shout? ( >=media-libs/libshout-2.1:0 ) sid? ( media-libs/libsidplay:2 ) skins? ( x11-libs/libXext:0 x11-libs/libXpm:0 x11-libs/libXinerama:0 ) speex? ( >=media-libs/speex-1.2.0:0 media-libs/speexdsp:0 ) svg? ( >=gnome-base/librsvg-2.9:2 >=x11-libs/cairo-1.13.1:0 ) swscale? ( !libav? ( media-video/ffmpeg:0= ) libav? ( media-video/libav:0= ) ) taglib? ( >=media-libs/taglib-1.9:0 sys-libs/zlib:0 ) theora? ( >=media-libs/libtheora-1.0_beta3:0 ) tremor? ( media-libs/tremor:0 ) truetype? ( media-libs/freetype:2 virtual/ttf-fonts:0 !fontconfig? ( media-fonts/dejavu:0 ) ) twolame? ( media-sound/twolame:0 ) udev? ( >=virtual/udev-142:0 ) upnp? ( net-libs/libupnp:0 ) v4l? ( media-libs/libv4l:0 ) vaapi? ( x11-libs/libva:0[X,drm] !libav? ( media-video/ffmpeg:0=[vaapi] ) libav? ( media-video/libav:0=[vaapi] ) ) vcdx? ( >=dev-libs/libcdio-0.78.2:0 >=media-video/vcdimager-0.7.22:0 ) vdpau? ( x11-libs/libvdpau:0 !libav? ( media-video/ffmpeg:0= ) libav? ( >=media-video/libav-10:0= ) ) vnc? ( >=net-libs/libvncserver-0.9.9:0 ) vorbis? ( media-libs/libvorbis:0 ) vpx? ( media-libs/libvpx:0= ) X? ( x11-libs/libX11:0 ) x264? ( media-libs/x264:0= ) x265? ( media-libs/x265:0= ) xcb? ( x11-libs/libxcb:0 x11-libs/xcb-util:0 x11-libs/xcb-util-keysyms:0 ) xml? ( dev-libs/libxml2:2 ) zeroconf? ( >=net-dns/avahi-0.6:0[dbus] ) zvbi? ( media-libs/zvbi:0 ) -REQUIRED_USE=aalib? ( X ) bidi? ( truetype ) cddb? ( cdda ) dvb? ( dvbpsi ) dxva2? ( avcodec ) ffmpeg? ( avcodec avformat swscale ) fontconfig? ( truetype ) gnutls? ( gcrypt ) httpd? ( lua ) libcaca? ( X ) libtar? ( skins ) libtiger? ( kate ) qt4? ( X ) qt5? ( X ) sdl? ( X ) skins? ( truetype X xml || ( qt4 qt5 ) ) vaapi? ( avcodec X ) vdpau? ( X ) vlm? ( encode ) xv? ( xcb ) -SLOT=0/5-8 -SRC_URI=https://download.videolan.org/pub/videolan/vlc/2.2.6/vlc-2.2.6.tar.xz -_eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 flag-o-matic a6089a2a4027ae3da4a460dc87b21050 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 -_md5_=81db0bcf1ce22d82d75f39134186403a diff --git a/metadata/md5-cache/net-analyzer/Manifest.gz b/metadata/md5-cache/net-analyzer/Manifest.gz index 3598e24ce7a0..fa6d75ea0623 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/prometheus-blackbox_exporter-0.11.0 b/metadata/md5-cache/net-analyzer/prometheus-blackbox_exporter-0.11.0 new file mode 100644 index 000000000000..51c7d3c8e68c --- /dev/null +++ b/metadata/md5-cache/net-analyzer/prometheus-blackbox_exporter-0.11.0 @@ -0,0 +1,11 @@ +DEFINED_PHASES=compile install prepare setup test unpack +DEPEND=dev-util/promu >=dev-lang/go-1.8 +DESCRIPTION=Prometheus exporter for blackbox probing via HTTP, HTTPS, DNS, TCP and ICMP +EAPI=6 +HOMEPAGE=https://github.com/prometheus/blackbox_exporter +KEYWORDS=~amd64 +LICENSE=Apache-2.0 +SLOT=0 +SRC_URI=https://github.com/prometheus/blackbox_exporter/archive/v0.11.0.tar.gz -> prometheus-blackbox_exporter-0.11.0.tar.gz +_eclasses_=golang-base 51a1f13e065f1cff4507685d9cc268c7 golang-build b66349c110e4ddd6203bbe8bf4ae05c1 golang-vcs-snapshot 913580335becddd3ebecefe852e47536 user 8bc2845510e2109af75e3eeac607ec81 +_md5_=66caa972dea799512a9b2ed5b1eb42de diff --git a/metadata/md5-cache/net-analyzer/wireshark-99999999 b/metadata/md5-cache/net-analyzer/wireshark-99999999 index 90cda6e8ec38..4be3c76dc3e4 100644 --- a/metadata/md5-cache/net-analyzer/wireshark-99999999 +++ b/metadata/md5-cache/net-analyzer/wireshark-99999999 @@ -9,4 +9,4 @@ RDEPEND=>=dev-libs/glib-2.14:2 dev-libs/libgcrypt:0 netlink? ( dev-libs/libnl:3 REQUIRED_USE=ciscodump? ( libssh ) sshdump? ( libssh ) SLOT=0/99999999 _eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 fcaps e80204189039ecc03f24151c518375f0 flag-o-matic a6089a2a4027ae3da4a460dc87b21050 git-r3 fec09a83ae965b041b47f5ff7c8ba29a gnome2-utils 4d211d7614f303710fca59db6ec12c88 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e qmake-utils 990448b067cb3cfe1443bc25fb57239c toolchain-funcs 185a06792159ca143528e7010368e8af user 8bc2845510e2109af75e3eeac607ec81 xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=9a2d5e14b337dcc3c7aabe12a0468572 +_md5_=88fbf265b344ae97b961b7a943cf470d diff --git a/metadata/md5-cache/net-dns/Manifest.gz b/metadata/md5-cache/net-dns/Manifest.gz index 6e275c46e680..13d8562fdd3f 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/ldns-utils-1.7.0-r1 b/metadata/md5-cache/net-dns/ldns-utils-1.7.0-r1 index fc4f0175c5d9..3ac5f02747ee 100644 --- a/metadata/md5-cache/net-dns/ldns-utils-1.7.0-r1 +++ b/metadata/md5-cache/net-dns/ldns-utils-1.7.0-r1 @@ -7,6 +7,7 @@ IUSE=+dane ecdsa examples gost ssl KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 LICENSE=BSD RDEPEND=>=net-libs/ldns-1.7.0[dane?,ecdsa?,gost?] examples? ( net-libs/libpcap ) +REQUIRED_USE=ecdsa? ( ssl ) dane? ( ssl ) gost? ( ssl ) SLOT=0 SRC_URI=http://www.nlnetlabs.nl/downloads/ldns/ldns-1.7.0.tar.gz -_md5_=3101d7be0b4b8ed619cff79ae4f5529f +_md5_=44b783009c3936db3de920cf8776819b diff --git a/metadata/md5-cache/net-dns/nsd-4.1.17 b/metadata/md5-cache/net-dns/nsd-4.1.19 similarity index 89% rename from metadata/md5-cache/net-dns/nsd-4.1.17 rename to metadata/md5-cache/net-dns/nsd-4.1.19 index 3372b6fc1c0e..59c333dc9cd5 100644 --- a/metadata/md5-cache/net-dns/nsd-4.1.17 +++ b/metadata/md5-cache/net-dns/nsd-4.1.19 @@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~x86 LICENSE=BSD RDEPEND=virtual/yacc libevent? ( dev-libs/libevent ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) ) munin? ( net-analyzer/munin ) SLOT=0 -SRC_URI=http://www.nlnetlabs.nl/downloads/nsd/nsd-4.1.17.tar.gz +SRC_URI=http://www.nlnetlabs.nl/downloads/nsd/nsd-4.1.19.tar.gz _eclasses_=multilib 97f470f374f2e94ccab04a2fb21d811e systemd 8f5286f89e265842f5b5189666eae88b toolchain-funcs 185a06792159ca143528e7010368e8af user 8bc2845510e2109af75e3eeac607ec81 -_md5_=df023da9b5365194b5e52cfad5bd3171 +_md5_=6e74ee9b21943128eb6cf13acd68c872 diff --git a/metadata/md5-cache/net-libs/Manifest.gz b/metadata/md5-cache/net-libs/Manifest.gz index 5dd9217686d1..162db17059e5 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/ldns-1.7.0-r2 b/metadata/md5-cache/net-libs/ldns-1.7.0-r2 index 9e7dd59a02c7..feaaa6bd4b07 100644 --- a/metadata/md5-cache/net-libs/ldns-1.7.0-r2 +++ b/metadata/md5-cache/net-libs/ldns-1.7.0-r2 @@ -3,7 +3,7 @@ DEPEND=python? ( python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >= DESCRIPTION=a library with the aim to simplify DNS programming in C EAPI=5 HOMEPAGE=http://www.nlnetlabs.nl/projects/ldns/ -IUSE=+dane doc +ecdsa gost libressl python ssl static-libs vim-syntax abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 python_targets_python2_7 +IUSE=+dane doc +ecdsa gost libressl python static-libs vim-syntax abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 python_targets_python2_7 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~ppc-macos ~x64-macos ~x64-solaris LICENSE=BSD 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_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] ) ecdsa? ( !libressl? ( >=dev-libs/openssl-1.0.1e:0[-bindist,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) !libressl? ( >=dev-libs/openssl-1.0.1e:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libressl? ( dev-libs/libressl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=http://www.nlnetlabs.nl/downloads/ldns/ldns-1.7.0.tar.gz _eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=ccced91f44ba38382dedcf68babac59c +_md5_=86a69bca3e93df019be556f3d3da4026 diff --git a/metadata/md5-cache/net-libs/libmicrohttpd-0.9.51 b/metadata/md5-cache/net-libs/libmicrohttpd-0.9.51 deleted file mode 100644 index d348a286e551..000000000000 --- a/metadata/md5-cache/net-libs/libmicrohttpd-0.9.51 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install test -DEPEND=ssl? ( dev-libs/libgcrypt:0= net-libs/gnutls ) test? ( ssl? ( net-misc/curl[ssl] ) ) -DESCRIPTION=Small C library to run an HTTP server as part of another application -EAPI=6 -HOMEPAGE=https://www.gnu.org/software/libmicrohttpd/ -IUSE=epoll messages ssl static-libs test -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 -LICENSE=LGPL-2.1 -RDEPEND=ssl? ( dev-libs/libgcrypt:0= net-libs/gnutls ) -SLOT=0/12 -SRC_URI=mirror://gnu/libmicrohttpd/libmicrohttpd-0.9.51.tar.gz -_md5_=76a589fa24494e726aee115e378a7276 diff --git a/metadata/md5-cache/net-libs/libmicrohttpd-0.9.53 b/metadata/md5-cache/net-libs/libmicrohttpd-0.9.53 deleted file mode 100644 index da4a5c90d5ff..000000000000 --- a/metadata/md5-cache/net-libs/libmicrohttpd-0.9.53 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install prepare test -DEPEND=ssl? ( dev-libs/libgcrypt:0= net-libs/gnutls ) test? ( ssl? ( net-misc/curl[ssl] ) ) -DESCRIPTION=Small C library to run an HTTP server as part of another application -EAPI=6 -HOMEPAGE=https://www.gnu.org/software/libmicrohttpd/ -IUSE=epoll messages ssl static-libs test -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 -LICENSE=LGPL-2.1 -RDEPEND=ssl? ( dev-libs/libgcrypt:0= net-libs/gnutls ) -SLOT=0/12 -SRC_URI=mirror://gnu/libmicrohttpd/libmicrohttpd-0.9.53.tar.gz -_md5_=0edb98743050b19a89b46cec00b5b7f7 diff --git a/metadata/md5-cache/net-libs/libmicrohttpd-0.9.54 b/metadata/md5-cache/net-libs/libmicrohttpd-0.9.54 deleted file mode 100644 index b73c9c3dbf86..000000000000 --- a/metadata/md5-cache/net-libs/libmicrohttpd-0.9.54 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install test -DEPEND=ssl? ( dev-libs/libgcrypt:0= net-libs/gnutls ) test? ( ssl? ( net-misc/curl[ssl] ) ) -DESCRIPTION=Small C library to run an HTTP server as part of another application -EAPI=6 -HOMEPAGE=https://www.gnu.org/software/libmicrohttpd/ -IUSE=epoll messages ssl static-libs test -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 -LICENSE=LGPL-2.1 -RDEPEND=ssl? ( dev-libs/libgcrypt:0= net-libs/gnutls ) -SLOT=0/12 -SRC_URI=mirror://gnu/libmicrohttpd/libmicrohttpd-0.9.54.tar.gz -_md5_=7c90e1ff5cb1040962fb674b7d552ef1 diff --git a/metadata/md5-cache/net-libs/libmicrohttpd-0.9.58 b/metadata/md5-cache/net-libs/libmicrohttpd-0.9.58 new file mode 100644 index 000000000000..1f1aff8aa310 --- /dev/null +++ b/metadata/md5-cache/net-libs/libmicrohttpd-0.9.58 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install test +DEPEND=ssl? ( dev-libs/libgcrypt:0= net-libs/gnutls ) test? ( ssl? ( net-misc/curl[ssl] ) ) +DESCRIPTION=Small C library to run an HTTP server as part of another application +EAPI=6 +HOMEPAGE=https://www.gnu.org/software/libmicrohttpd/ +IUSE=epoll messages ssl 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 ~sparc ~x86 +LICENSE=LGPL-2.1 +RDEPEND=ssl? ( dev-libs/libgcrypt:0= net-libs/gnutls ) +SLOT=0/12 +SRC_URI=mirror://gnu/libmicrohttpd/libmicrohttpd-0.9.58.tar.gz +_eclasses_=multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af +_md5_=bb1f868c746a80a64a0e73956ccf5597 diff --git a/metadata/md5-cache/net-misc/Manifest.gz b/metadata/md5-cache/net-misc/Manifest.gz index 744be7c54a19..234f1cd6c7d1 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/whois-5.2.17 b/metadata/md5-cache/net-misc/whois-5.2.19 similarity index 91% rename from metadata/md5-cache/net-misc/whois-5.2.17 rename to metadata/md5-cache/net-misc/whois-5.2.19 index 1ff38fe25a84..af7221b83e1b 100644 --- a/metadata/md5-cache/net-misc/whois-5.2.17 +++ b/metadata/md5-cache/net-misc/whois-5.2.19 @@ -9,6 +9,6 @@ LICENSE=GPL-2 RDEPEND=iconv? ( virtual/libiconv ) idn? ( net-dns/libidn ) nls? ( virtual/libintl ) RESTRICT=test SLOT=0 -SRC_URI=mirror://debian/pool/main/w/whois/whois_5.2.17.tar.xz +SRC_URI=mirror://debian/pool/main/w/whois/whois_5.2.19.tar.xz _eclasses_=multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af _md5_=f74420a3974da3120cb9851df28f2fbf diff --git a/metadata/md5-cache/sys-kernel/Manifest.gz b/metadata/md5-cache/sys-kernel/Manifest.gz index ac310b587269..52dd1de45a68 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/gentoo-sources-4.13.10 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.13.10 deleted file mode 100644 index 43eb42239441..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.13.10 +++ /dev/null @@ -1,14 +0,0 @@ -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.13 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 freedist -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=4.13.10 -SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.13.tar.xz mirror://gentoo/genpatches-4.13-12.base.tar.xz mirror://gentoo/genpatches-4.13-12.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.13-12.experimental.tar.xz ) -_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=d73a0dbaec0583d46d63ba1f764f07ef diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.13.11 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.13.11 deleted file mode 100644 index 77212e223398..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.13.11 +++ /dev/null @@ -1,14 +0,0 @@ -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.13 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 freedist -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=4.13.11 -SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.13.tar.xz mirror://gentoo/genpatches-4.13-13.base.tar.xz mirror://gentoo/genpatches-4.13-13.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.13-13.experimental.tar.xz ) -_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=d84c96726b00b48c7324d9610f99be6d diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.13.12 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.13.12 deleted file mode 100644 index faac9360c8bb..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.13.12 +++ /dev/null @@ -1,14 +0,0 @@ -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.13 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 freedist -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=4.13.12 -SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.13.tar.xz mirror://gentoo/genpatches-4.13-14.base.tar.xz mirror://gentoo/genpatches-4.13-14.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.13-14.experimental.tar.xz ) -_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=eec8fd6af9b0f19f76b43a2c1259fc53 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.13.13 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.13.13 deleted file mode 100644 index efda8c218d40..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.13.13 +++ /dev/null @@ -1,14 +0,0 @@ -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.13 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 freedist -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=4.13.13 -SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.13.tar.xz mirror://gentoo/genpatches-4.13-15.base.tar.xz mirror://gentoo/genpatches-4.13-15.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.13-15.experimental.tar.xz ) -_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=120a8150c402b8d62811eb47072fffd4 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.13.14 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.13.14 deleted file mode 100644 index 2c33c1a6c48e..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.13.14 +++ /dev/null @@ -1,14 +0,0 @@ -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.13 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 freedist -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=4.13.14 -SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.13.tar.xz mirror://gentoo/genpatches-4.13-17.base.tar.xz mirror://gentoo/genpatches-4.13-17.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.13-17.experimental.tar.xz ) -_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=6d0b8e9175395ddb7c9e30dcc1762a24 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.1 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.1 deleted file mode 100644 index 3a62084d7455..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.1 +++ /dev/null @@ -1,14 +0,0 @@ -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 freedist -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=4.14.1 -SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.14.tar.xz mirror://gentoo/genpatches-4.14-2.base.tar.xz mirror://gentoo/genpatches-4.14-2.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.14-2.experimental.tar.xz ) -_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=41f0d6fd47fec88a3dccbf257d9d06a2 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.2 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.2 deleted file mode 100644 index 866e07e0da2f..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.2 +++ /dev/null @@ -1,14 +0,0 @@ -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 freedist -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=4.14.2 -SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.14.tar.xz mirror://gentoo/genpatches-4.14-3.base.tar.xz mirror://gentoo/genpatches-4.14-3.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.14-3.experimental.tar.xz ) -_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=08f602080df5510d2ad7c7654024377f diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.3 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.3 deleted file mode 100644 index 6521169886fb..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.3 +++ /dev/null @@ -1,14 +0,0 @@ -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 freedist -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=4.14.3 -SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.14.tar.xz mirror://gentoo/genpatches-4.14-4.base.tar.xz mirror://gentoo/genpatches-4.14-4.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.14-4.experimental.tar.xz ) -_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=1c56164010c0c5956cce418b242f08ed diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.100 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.100 deleted file mode 100644 index 61eab6a8df41..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.100 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack -DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) -DESCRIPTION=Full sources including the Gentoo patchset for the 4.4 kernel tree -EAPI=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 freedist -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=4.4.100 -SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.4.tar.xz mirror://gentoo/genpatches-4.4-104.base.tar.xz mirror://gentoo/genpatches-4.4-104.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.4-104.experimental.tar.xz ) -_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=b841779bb56a00d9089f95649d69abfe diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.102 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.102 deleted file mode 100644 index 227f5b4d1b12..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.102 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack -DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) -DESCRIPTION=Full sources including the Gentoo patchset for the 4.4 kernel tree -EAPI=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 freedist -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=4.4.102 -SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.4.tar.xz mirror://gentoo/genpatches-4.4-105.base.tar.xz mirror://gentoo/genpatches-4.4-105.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.4-105.experimental.tar.xz ) -_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=aa5f9b2b30af1a433bdc88d0b47726a5 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.103 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.103 deleted file mode 100644 index 82e947779120..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.103 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack -DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) -DESCRIPTION=Full sources including the Gentoo patchset for the 4.4 kernel tree -EAPI=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 freedist -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=4.4.103 -SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.4.tar.xz mirror://gentoo/genpatches-4.4-106.base.tar.xz mirror://gentoo/genpatches-4.4-106.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.4-106.experimental.tar.xz ) -_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=9e62c84ba2dceec8c8b0e27db6a1d433 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.95 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.95 deleted file mode 100644 index 14269803ce83..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.95 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack -DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) -DESCRIPTION=Full sources including the Gentoo patchset for the 4.4 kernel tree -EAPI=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 freedist -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=4.4.95 -SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.4.tar.xz mirror://gentoo/genpatches-4.4-99.base.tar.xz mirror://gentoo/genpatches-4.4-99.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.4-99.experimental.tar.xz ) -_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=d7c4a341ccec593580218d22b3b4647c diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.96 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.96 deleted file mode 100644 index e868614f2c8b..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.96 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack -DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) -DESCRIPTION=Full sources including the Gentoo patchset for the 4.4 kernel tree -EAPI=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 freedist -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=4.4.96 -SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.4.tar.xz mirror://gentoo/genpatches-4.4-100.base.tar.xz mirror://gentoo/genpatches-4.4-100.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.4-100.experimental.tar.xz ) -_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=4e188ece069b3787fc22245a8f06f2ed diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.97 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.97 deleted file mode 100644 index 1ea28ec62e34..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.97 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack -DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) -DESCRIPTION=Full sources including the Gentoo patchset for the 4.4 kernel tree -EAPI=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 freedist -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=4.4.97 -SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.4.tar.xz mirror://gentoo/genpatches-4.4-101.base.tar.xz mirror://gentoo/genpatches-4.4-101.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.4-101.experimental.tar.xz ) -_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=2ef543f73694620c0930824566a7dc48 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.98 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.98 deleted file mode 100644 index 1a8692152c0d..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.98 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack -DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) -DESCRIPTION=Full sources including the Gentoo patchset for the 4.4 kernel tree -EAPI=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 freedist -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=4.4.98 -SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.4.tar.xz mirror://gentoo/genpatches-4.4-102.base.tar.xz mirror://gentoo/genpatches-4.4-102.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.4-102.experimental.tar.xz ) -_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=c5f5e296b87dcb7ee0b3c384e009604c diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.99 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.99 deleted file mode 100644 index 6b9409271a82..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.99 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack -DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) -DESCRIPTION=Full sources including the Gentoo patchset for the 4.4 kernel tree -EAPI=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 freedist -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=4.4.99 -SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.4.tar.xz mirror://gentoo/genpatches-4.4-103.base.tar.xz mirror://gentoo/genpatches-4.4-103.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.4-103.experimental.tar.xz ) -_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=b25436c55b990f4e2b11f8fa4d0c1013 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.59 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.59 deleted file mode 100644 index 8c910e7eeeea..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.59 +++ /dev/null @@ -1,14 +0,0 @@ -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 freedist -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=4.9.59 -SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.9.tar.xz mirror://gentoo/genpatches-4.9-61.base.tar.xz mirror://gentoo/genpatches-4.9-61.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.9-61.experimental.tar.xz ) -_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=c98928a40f7c18ccfc20166d9a70aebf diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.60 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.60 deleted file mode 100644 index 6851b9d38ffb..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.60 +++ /dev/null @@ -1,14 +0,0 @@ -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 freedist -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=4.9.60 -SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.9.tar.xz mirror://gentoo/genpatches-4.9-62.base.tar.xz mirror://gentoo/genpatches-4.9-62.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.9-62.experimental.tar.xz ) -_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=cd66633adbcd30b26096292b3f6062ce diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.61 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.61 deleted file mode 100644 index ed071cd1d4f5..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.61 +++ /dev/null @@ -1,14 +0,0 @@ -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 freedist -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=4.9.61 -SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.9.tar.xz mirror://gentoo/genpatches-4.9-63.base.tar.xz mirror://gentoo/genpatches-4.9-63.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.9-63.experimental.tar.xz ) -_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=f8354e99ac5e8fa4550da4999b43cfa2 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.62 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.62 deleted file mode 100644 index d679f7676022..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.62 +++ /dev/null @@ -1,14 +0,0 @@ -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 freedist -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=4.9.62 -SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.9.tar.xz mirror://gentoo/genpatches-4.9-64.base.tar.xz mirror://gentoo/genpatches-4.9-64.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.9-64.experimental.tar.xz ) -_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=ed4f94bfcccd0591937407842ef6f762 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.63 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.63 deleted file mode 100644 index 448aa6f95d6d..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.63 +++ /dev/null @@ -1,14 +0,0 @@ -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 freedist -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=4.9.63 -SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.9.tar.xz mirror://gentoo/genpatches-4.9-65.base.tar.xz mirror://gentoo/genpatches-4.9-65.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.9-65.experimental.tar.xz ) -_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=2c9598da108ac857cbe960d302dc9761 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.64 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.64 deleted file mode 100644 index be23fece6b05..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.64 +++ /dev/null @@ -1,14 +0,0 @@ -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 freedist -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=4.9.64 -SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.9.tar.xz mirror://gentoo/genpatches-4.9-66.base.tar.xz mirror://gentoo/genpatches-4.9-66.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.9-66.experimental.tar.xz ) -_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=de5fcff8f3c5330fc89e958ff4c3097e diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.65 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.65 deleted file mode 100644 index d068642e0d8d..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.65 +++ /dev/null @@ -1,14 +0,0 @@ -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 freedist -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=4.9.65 -SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.9.tar.xz mirror://gentoo/genpatches-4.9-67.base.tar.xz mirror://gentoo/genpatches-4.9-67.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.9-67.experimental.tar.xz ) -_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=08492efa499ce3ecd10482d1b65e338f diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.66 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.66 deleted file mode 100644 index 6ca3ab5ff5d8..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.66 +++ /dev/null @@ -1,14 +0,0 @@ -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 freedist -RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) -RESTRICT=binchecks strip -SLOT=4.9.66 -SRC_URI=mirror://kernel/linux/kernel/v4.x/linux-4.9.tar.xz mirror://gentoo/genpatches-4.9-68.base.tar.xz mirror://gentoo/genpatches-4.9-68.extras.tar.xz experimental? ( mirror://gentoo/genpatches-4.9-68.experimental.tar.xz ) -_eclasses_=desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 kernel-2 880361b861490d9503f47d4f16e05f2c ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=c750a08c8cdcc6e9c593b18ff2fb3159 diff --git a/metadata/md5-cache/www-client/Manifest.gz b/metadata/md5-cache/www-client/Manifest.gz index da405b7a7e57..7fccd745cab2 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/firefox-52.5.2 b/metadata/md5-cache/www-client/firefox-52.5.2 index 1e4b4013fe62..4a47934606dd 100644 --- a/metadata/md5-cache/www-client/firefox-52.5.2 +++ b/metadata/md5-cache/www-client/firefox-52.5.2 @@ -9,6 +9,6 @@ LICENSE=MPL-2.0 GPL-2 LGPL-2.1 RDEPEND=jack? ( virtual/jack ) >=dev-libs/nss-3.28.3 >=dev-libs/nspr-4.13.1 selinux? ( sec-policy/selinux-mozilla ) >=app-text/hunspell-1.2:= dev-libs/atk dev-libs/expat >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.25:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.9 ) ) virtual/freedesktop-icon-theme dbus? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=virtual/libffi-3.0.10 virtual/ffmpeg x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt system-cairo? ( >=x11-libs/cairo-1.12[X,xcb] >=x11-libs/pixman-0.19.2 ) system-icu? ( >=dev-libs/icu-58.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0= ) system-sqlite? ( >=dev-db/sqlite-3.17.0:3[secure-delete,debug=] ) system-libvpx? ( >=media-libs/libvpx-1.5.0:0=[postproc] ) system-harfbuzz? ( >=media-libs/harfbuzz-1.3.3:0= >=media-gfx/graphite2-1.3.8 ) !gtk2? ( >=x11-libs/gtk+-3.4.0:3 ) wifi? ( kernel_linux? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 net-misc/networkmanager ) ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.9 ) ) selinux? ( sec-policy/selinux-mozilla ) RESTRICT=!bindist? ( bindist ) SLOT=0 -SRC_URI=l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ach.xpi -> firefox-52.5.2esr-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/af.xpi -> firefox-52.5.2esr-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/an.xpi -> firefox-52.5.2esr-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ar.xpi -> firefox-52.5.2esr-ar.xpi ) l10n_as? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/as.xpi -> firefox-52.5.2esr-as.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ast.xpi -> firefox-52.5.2esr-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/az.xpi -> firefox-52.5.2esr-az.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/bg.xpi -> firefox-52.5.2esr-bg.xpi ) l10n_bn-BD? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/bn-BD.xpi -> firefox-52.5.2esr-bn-BD.xpi ) l10n_bn-IN? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/bn-IN.xpi -> firefox-52.5.2esr-bn-IN.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/br.xpi -> firefox-52.5.2esr-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/bs.xpi -> firefox-52.5.2esr-bs.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ca.xpi -> firefox-52.5.2esr-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/cak.xpi -> firefox-52.5.2esr-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/cs.xpi -> firefox-52.5.2esr-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/cy.xpi -> firefox-52.5.2esr-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/da.xpi -> firefox-52.5.2esr-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/de.xpi -> firefox-52.5.2esr-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/dsb.xpi -> firefox-52.5.2esr-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/el.xpi -> firefox-52.5.2esr-el.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/en-GB.xpi -> firefox-52.5.2esr-en-GB.xpi ) l10n_en-ZA? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/en-ZA.xpi -> firefox-52.5.2esr-en-ZA.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/eo.xpi -> firefox-52.5.2esr-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/es-AR.xpi -> firefox-52.5.2esr-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/es-CL.xpi -> firefox-52.5.2esr-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/es-ES.xpi -> firefox-52.5.2esr-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/es-MX.xpi -> firefox-52.5.2esr-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/et.xpi -> firefox-52.5.2esr-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/eu.xpi -> firefox-52.5.2esr-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/fa.xpi -> firefox-52.5.2esr-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ff.xpi -> firefox-52.5.2esr-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/fi.xpi -> firefox-52.5.2esr-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/fr.xpi -> firefox-52.5.2esr-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/fy-NL.xpi -> firefox-52.5.2esr-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ga-IE.xpi -> firefox-52.5.2esr-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/gd.xpi -> firefox-52.5.2esr-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/gl.xpi -> firefox-52.5.2esr-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/gn.xpi -> firefox-52.5.2esr-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/gu-IN.xpi -> firefox-52.5.2esr-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/he.xpi -> firefox-52.5.2esr-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/hi-IN.xpi -> firefox-52.5.2esr-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/hr.xpi -> firefox-52.5.2esr-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/hsb.xpi -> firefox-52.5.2esr-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/hu.xpi -> firefox-52.5.2esr-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/hy-AM.xpi -> firefox-52.5.2esr-hy-AM.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/id.xpi -> firefox-52.5.2esr-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/is.xpi -> firefox-52.5.2esr-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/it.xpi -> firefox-52.5.2esr-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ja.xpi -> firefox-52.5.2esr-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ka.xpi -> firefox-52.5.2esr-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/kab.xpi -> firefox-52.5.2esr-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/kk.xpi -> firefox-52.5.2esr-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/km.xpi -> firefox-52.5.2esr-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/kn.xpi -> firefox-52.5.2esr-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ko.xpi -> firefox-52.5.2esr-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/lij.xpi -> firefox-52.5.2esr-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/lt.xpi -> firefox-52.5.2esr-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/lv.xpi -> firefox-52.5.2esr-lv.xpi ) l10n_mai? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/mai.xpi -> firefox-52.5.2esr-mai.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/mk.xpi -> firefox-52.5.2esr-mk.xpi ) l10n_ml? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ml.xpi -> firefox-52.5.2esr-ml.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/mr.xpi -> firefox-52.5.2esr-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ms.xpi -> firefox-52.5.2esr-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/nb-NO.xpi -> firefox-52.5.2esr-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/nl.xpi -> firefox-52.5.2esr-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/nn-NO.xpi -> firefox-52.5.2esr-nn-NO.xpi ) l10n_or? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/or.xpi -> firefox-52.5.2esr-or.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/pa-IN.xpi -> firefox-52.5.2esr-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/pl.xpi -> firefox-52.5.2esr-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/pt-BR.xpi -> firefox-52.5.2esr-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/pt-PT.xpi -> firefox-52.5.2esr-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/rm.xpi -> firefox-52.5.2esr-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ro.xpi -> firefox-52.5.2esr-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ru.xpi -> firefox-52.5.2esr-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/si.xpi -> firefox-52.5.2esr-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/sk.xpi -> firefox-52.5.2esr-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/sl.xpi -> firefox-52.5.2esr-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/son.xpi -> firefox-52.5.2esr-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/sq.xpi -> firefox-52.5.2esr-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/sr.xpi -> firefox-52.5.2esr-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/sv-SE.xpi -> firefox-52.5.2esr-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ta.xpi -> firefox-52.5.2esr-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/te.xpi -> firefox-52.5.2esr-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/th.xpi -> firefox-52.5.2esr-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/tr.xpi -> firefox-52.5.2esr-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/uk.xpi -> firefox-52.5.2esr-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/uz.xpi -> firefox-52.5.2esr-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/vi.xpi -> firefox-52.5.2esr-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/xh.xpi -> firefox-52.5.2esr-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/zh-CN.xpi -> firefox-52.5.2esr-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/zh-TW.xpi -> firefox-52.5.2esr-zh-TW.xpi ) https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/source/firefox-52.5.2esr.source.tar.xz https://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-52.5-patches-01.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-52.5-patches-01.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-52.5-patches-01.tar.xz +SRC_URI=l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ach.xpi -> firefox-52.5.2esr-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/af.xpi -> firefox-52.5.2esr-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/an.xpi -> firefox-52.5.2esr-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ar.xpi -> firefox-52.5.2esr-ar.xpi ) l10n_as? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/as.xpi -> firefox-52.5.2esr-as.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ast.xpi -> firefox-52.5.2esr-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/az.xpi -> firefox-52.5.2esr-az.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/bg.xpi -> firefox-52.5.2esr-bg.xpi ) l10n_bn-BD? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/bn-BD.xpi -> firefox-52.5.2esr-bn-BD.xpi ) l10n_bn-IN? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/bn-IN.xpi -> firefox-52.5.2esr-bn-IN.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/br.xpi -> firefox-52.5.2esr-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/bs.xpi -> firefox-52.5.2esr-bs.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ca.xpi -> firefox-52.5.2esr-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/cak.xpi -> firefox-52.5.2esr-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/cs.xpi -> firefox-52.5.2esr-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/cy.xpi -> firefox-52.5.2esr-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/da.xpi -> firefox-52.5.2esr-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/de.xpi -> firefox-52.5.2esr-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/dsb.xpi -> firefox-52.5.2esr-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/el.xpi -> firefox-52.5.2esr-el.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/en-GB.xpi -> firefox-52.5.2esr-en-GB.xpi ) l10n_en-ZA? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/en-ZA.xpi -> firefox-52.5.2esr-en-ZA.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/eo.xpi -> firefox-52.5.2esr-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/es-AR.xpi -> firefox-52.5.2esr-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/es-CL.xpi -> firefox-52.5.2esr-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/es-ES.xpi -> firefox-52.5.2esr-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/es-MX.xpi -> firefox-52.5.2esr-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/et.xpi -> firefox-52.5.2esr-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/eu.xpi -> firefox-52.5.2esr-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/fa.xpi -> firefox-52.5.2esr-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ff.xpi -> firefox-52.5.2esr-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/fi.xpi -> firefox-52.5.2esr-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/fr.xpi -> firefox-52.5.2esr-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/fy-NL.xpi -> firefox-52.5.2esr-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ga-IE.xpi -> firefox-52.5.2esr-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/gd.xpi -> firefox-52.5.2esr-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/gl.xpi -> firefox-52.5.2esr-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/gn.xpi -> firefox-52.5.2esr-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/gu-IN.xpi -> firefox-52.5.2esr-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/he.xpi -> firefox-52.5.2esr-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/hi-IN.xpi -> firefox-52.5.2esr-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/hr.xpi -> firefox-52.5.2esr-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/hsb.xpi -> firefox-52.5.2esr-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/hu.xpi -> firefox-52.5.2esr-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/hy-AM.xpi -> firefox-52.5.2esr-hy-AM.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/id.xpi -> firefox-52.5.2esr-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/is.xpi -> firefox-52.5.2esr-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/it.xpi -> firefox-52.5.2esr-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ja.xpi -> firefox-52.5.2esr-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ka.xpi -> firefox-52.5.2esr-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/kab.xpi -> firefox-52.5.2esr-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/kk.xpi -> firefox-52.5.2esr-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/km.xpi -> firefox-52.5.2esr-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/kn.xpi -> firefox-52.5.2esr-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ko.xpi -> firefox-52.5.2esr-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/lij.xpi -> firefox-52.5.2esr-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/lt.xpi -> firefox-52.5.2esr-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/lv.xpi -> firefox-52.5.2esr-lv.xpi ) l10n_mai? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/mai.xpi -> firefox-52.5.2esr-mai.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/mk.xpi -> firefox-52.5.2esr-mk.xpi ) l10n_ml? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ml.xpi -> firefox-52.5.2esr-ml.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/mr.xpi -> firefox-52.5.2esr-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ms.xpi -> firefox-52.5.2esr-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/nb-NO.xpi -> firefox-52.5.2esr-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/nl.xpi -> firefox-52.5.2esr-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/nn-NO.xpi -> firefox-52.5.2esr-nn-NO.xpi ) l10n_or? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/or.xpi -> firefox-52.5.2esr-or.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/pa-IN.xpi -> firefox-52.5.2esr-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/pl.xpi -> firefox-52.5.2esr-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/pt-BR.xpi -> firefox-52.5.2esr-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/pt-PT.xpi -> firefox-52.5.2esr-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/rm.xpi -> firefox-52.5.2esr-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ro.xpi -> firefox-52.5.2esr-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ru.xpi -> firefox-52.5.2esr-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/si.xpi -> firefox-52.5.2esr-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/sk.xpi -> firefox-52.5.2esr-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/sl.xpi -> firefox-52.5.2esr-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/son.xpi -> firefox-52.5.2esr-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/sq.xpi -> firefox-52.5.2esr-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/sr.xpi -> firefox-52.5.2esr-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/sv-SE.xpi -> firefox-52.5.2esr-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/ta.xpi -> firefox-52.5.2esr-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/te.xpi -> firefox-52.5.2esr-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/th.xpi -> firefox-52.5.2esr-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/tr.xpi -> firefox-52.5.2esr-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/uk.xpi -> firefox-52.5.2esr-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/uz.xpi -> firefox-52.5.2esr-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/vi.xpi -> firefox-52.5.2esr-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/xh.xpi -> firefox-52.5.2esr-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/zh-CN.xpi -> firefox-52.5.2esr-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/linux-i686/xpi/zh-TW.xpi -> firefox-52.5.2esr-zh-TW.xpi ) https://archive.mozilla.org/pub/firefox/releases/52.5.2esr/source/firefox-52.5.2esr.source.tar.xz https://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-52.5-patches-02.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-52.5-patches-02.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-52.5-patches-02.tar.xz _eclasses_=autotools dc412f38566b91012efd58b9c203e6c3 check-reqs bd050ce908e4637604ee604ed4b78e8f desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 flag-o-matic a6089a2a4027ae3da4a460dc87b21050 gnome2-utils 4d211d7614f303710fca59db6ec12c88 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e mozconfig-v6.52 aeba761913d03fc45f4d6ae2b89165ca mozcoreconf-v5 dfc58397c1e9ecd4420428e695cf8dc8 mozextension 42c5ed513e5325a5d0629ad85bb27c23 mozlinguas-v2 e7b3bd89af6dc1a3dd10be68ba3d574d multilib 97f470f374f2e94ccab04a2fb21d811e pax-utils 4f95120230a315c8caaabeb2307b7eee python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 xdg-utils f2c8335407f0b935b0a96d4adf23ef25 -_md5_=2596d4ed0619701e9774f723773828dd +_md5_=937d557e8ec73068b8dbfa30e25ff18d diff --git a/metadata/md5-cache/www-client/vivaldi-1.13.1008.36_p1 b/metadata/md5-cache/www-client/vivaldi-1.13.1008.36_p1 new file mode 100644 index 000000000000..b12f6fc1961f --- /dev/null +++ b/metadata/md5-cache/www-client/vivaldi-1.13.1008.36_p1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=install postinst postrm preinst prepare setup unpack +DEPEND=virtual/libiconv >=sys-apps/sed-4 +DESCRIPTION=A new browser for our friends +EAPI=5 +HOMEPAGE=http://vivaldi.com/ +IUSE=+l10n_am +l10n_ar +l10n_bg +l10n_bn +l10n_ca +l10n_cs +l10n_da +l10n_de +l10n_el +l10n_en-GB +l10n_en-US +l10n_es +l10n_es-419 +l10n_et +l10n_fa +l10n_fi +l10n_fil +l10n_fr +l10n_gu +l10n_he +l10n_hi +l10n_hr +l10n_hu +l10n_id +l10n_it +l10n_ja +l10n_kn +l10n_ko +l10n_lt +l10n_lv +l10n_ml +l10n_mr +l10n_ms +l10n_nb +l10n_nl +l10n_pl +l10n_pt-BR +l10n_pt-PT +l10n_ro +l10n_ru +l10n_sk +l10n_sl +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 ~arm ~x86 +LICENSE=Vivaldi +RDEPEND=dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss >=dev-libs/openssl-1.0.1:0 gnome-base/gconf:2 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype net-misc/curl net-print/cups sys-apps/dbus sys-libs/libcap x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 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/pango[X] +RESTRICT=bindist mirror +SLOT=0 +SRC_URI=amd64? ( https://downloads.vivaldi.com/stable/vivaldi-stable_1.13.1008.36-1_amd64.deb -> vivaldi-1.13.1008.36_p1-amd64.deb ) arm? ( https://downloads.vivaldi.com/stable/vivaldi-stable_1.13.1008.36-1_armhf.deb -> vivaldi-1.13.1008.36_p1-armhf.deb ) x86? ( https://downloads.vivaldi.com/stable/vivaldi-stable_1.13.1008.36-1_i386.deb -> vivaldi-1.13.1008.36_p1-i386.deb ) +_eclasses_=chromium-2 fcd0e1c5eaae64392927ca67cdb13e0c desktop 2ccd1dd1dd7bfb8795eea024a4f91bb6 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 97ce9decef1ff4b6c5be700283f67343 gnome2-utils 4d211d7614f303710fca59db6ec12c88 linux-info ca370deef9d44125d829f2eb6ebc83e0 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af unpacker f40f7b4bd5aa88c2a4ba7b0d1e0ded70 versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg-utils f2c8335407f0b935b0a96d4adf23ef25 +_md5_=8e4f9133efd676a7ab0b5df3f965ac45 diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index 7554c9f8ff5c..7ce2bdb2e040 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Tue, 12 Dec 2017 07:08:33 +0000 +Tue, 12 Dec 2017 15:08:35 +0000 diff --git a/metadata/timestamp b/metadata/timestamp index a2d5d8a4cbb9..20359c72317f 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Tue Dec 12 07:08:33 UTC 2017 +Tue Dec 12 15:08:35 UTC 2017 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index a8192e3fdc0c..380574923ebe 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Tue, 12 Dec 2017 07:30:01 +0000 +Tue, 12 Dec 2017 15:30:01 +0000 diff --git a/metadata/timestamp.commit b/metadata/timestamp.commit index 6aa4f06d0a63..f2092cb1cc31 100644 --- a/metadata/timestamp.commit +++ b/metadata/timestamp.commit @@ -1 +1 @@ -f5d1eabacafc785eb5559d37793130575c6f54eb 1513059323 2017-12-12T06:15:23+00:00 +a88f2801c4ae354d70882260a46b22dc74285e8f 1513090844 2017-12-12T15:00:44+00:00 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index a6ddb5252a3f..90d335c7d465 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1513062301 Tue 12 Dec 2017 07:05:01 AM UTC +1513091101 Tue 12 Dec 2017 03:05:01 PM UTC diff --git a/metadata/xml-schema/timestamp.chk b/metadata/xml-schema/timestamp.chk index 7554c9f8ff5c..7ce2bdb2e040 100644 --- a/metadata/xml-schema/timestamp.chk +++ b/metadata/xml-schema/timestamp.chk @@ -1 +1 @@ -Tue, 12 Dec 2017 07:08:33 +0000 +Tue, 12 Dec 2017 15:08:35 +0000 diff --git a/net-analyzer/Manifest.gz b/net-analyzer/Manifest.gz index 46744cc14de6..6cc743c9859f 100644 Binary files a/net-analyzer/Manifest.gz and b/net-analyzer/Manifest.gz differ diff --git a/net-analyzer/prometheus-blackbox_exporter/Manifest b/net-analyzer/prometheus-blackbox_exporter/Manifest index 5428c3bd3d62..01384b4ad68a 100644 --- a/net-analyzer/prometheus-blackbox_exporter/Manifest +++ b/net-analyzer/prometheus-blackbox_exporter/Manifest @@ -1 +1,2 @@ DIST prometheus-blackbox_exporter-0.10.0.tar.gz 530109 BLAKE2B 3b2208140814029cad9c33e8390a1135026e03b44dc96f8bdac479a7904f89c36f6f0c8dd9ed51cfaa6eaa4d241673b729a3444b8c44c61333d30a7adbef89f8 SHA512 497246b440b03b964c90f9bcf8ec1bca45c213bc4652ddb92c339b42586746b75a5145e87899381718ba628891faae3dfae39b0196272f572c7213e94ea7295b +DIST prometheus-blackbox_exporter-0.11.0.tar.gz 2143849 BLAKE2B e9a35b4b5adca955c1ac5b2219dd892112f6b3bd2dfe825f6393daca9dee3cba943309be024cc56f3d682a8544a4f78949072de620a4e6b07da61a740a84d55f SHA512 9bc397b846cdaf8cc0054100adffb39bbe2e5cf6743a61565e90f2e4298d8a165a138c985431937083fd88ccac065e278d8c9eab8a83015bf58fddb6da8ea812 diff --git a/net-analyzer/prometheus-blackbox_exporter/prometheus-blackbox_exporter-0.11.0.ebuild b/net-analyzer/prometheus-blackbox_exporter/prometheus-blackbox_exporter-0.11.0.ebuild new file mode 100644 index 000000000000..5badbe7a59dd --- /dev/null +++ b/net-analyzer/prometheus-blackbox_exporter/prometheus-blackbox_exporter-0.11.0.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit user golang-build golang-vcs-snapshot + +EGO_PN="github.com/prometheus/blackbox_exporter" +EGIT_COMMIT="v${PV/_rc/-rc.}" +BLACKBOX_EXPORTER_COMMIT="200181b" +ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" +KEYWORDS="~amd64" + +DESCRIPTION="Prometheus exporter for blackbox probing via HTTP, HTTPS, DNS, TCP and ICMP" +HOMEPAGE="https://github.com/prometheus/blackbox_exporter" +SRC_URI="${ARCHIVE_URI}" +LICENSE="Apache-2.0" +SLOT="0" +IUSE="" + +DEPEND="dev-util/promu" + +pkg_setup() { + enewgroup ${PN} + enewuser ${PN} -1 -1 -1 ${PN} +} + +src_prepare() { + default + sed -i -e "s/{{.Revision}}/${BLACBOX_EXPORTER_COMMIT}/" src/${EGO_PN}/.promu.yml || die +} + +src_compile() { + pushd src/${EGO_PN} || die + mkdir -p bin || die + GOPATH="${S}" promu build -v --prefix blackbox_exporter || die + popd || die +} + +src_install() { + pushd src/${EGO_PN} || die + dobin blackbox_exporter/blackbox_exporter + dodoc {README,CONFIGURATION}.md blackbox.yml + insinto /etc/blackbox_exporter + newins example.yml blackbox.yml.example + popd || die + keepdir /var/lib/blackbox_exporter /var/log/blackbox_exporter + fowners ${PN}:${PN} /var/lib/blackbox_exporter /var/log/blackbox_exporter + newinitd "${FILESDIR}"/${PN}.initd ${PN} + newconfd "${FILESDIR}"/${PN}.confd ${PN} +} diff --git a/net-analyzer/wireshark/wireshark-99999999.ebuild b/net-analyzer/wireshark/wireshark-99999999.ebuild index f8b854c9dc0b..a011c0ef028d 100644 --- a/net-analyzer/wireshark/wireshark-99999999.ebuild +++ b/net-analyzer/wireshark/wireshark-99999999.ebuild @@ -265,6 +265,7 @@ src_install() { pkg_postinst() { gnome2_icon_cache_update + xdg_desktop_database_update xdg_mimeinfo_database_update # Add group for users allowed to sniff. @@ -283,5 +284,6 @@ pkg_postinst() { pkg_postrm() { gnome2_icon_cache_update + xdg_desktop_database_update xdg_mimeinfo_database_update } diff --git a/net-dns/Manifest.gz b/net-dns/Manifest.gz index 26fe840f95e0..dea6675ce6bb 100644 Binary files a/net-dns/Manifest.gz and b/net-dns/Manifest.gz differ diff --git a/net-dns/ldns-utils/ldns-utils-1.7.0-r1.ebuild b/net-dns/ldns-utils/ldns-utils-1.7.0-r1.ebuild index fa3472999ef4..fa37734bc140 100644 --- a/net-dns/ldns-utils/ldns-utils-1.7.0-r1.ebuild +++ b/net-dns/ldns-utils/ldns-utils-1.7.0-r1.ebuild @@ -14,6 +14,12 @@ SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" IUSE="+dane ecdsa examples gost ssl" +REQUIRED_USE=" + ecdsa? ( ssl ) + dane? ( ssl ) + gost? ( ssl ) +" + DEPEND=">=net-libs/ldns-${PV}[dane?,ecdsa?,gost?] examples? ( net-libs/libpcap )" RDEPEND="${DEPEND}" diff --git a/net-dns/nsd/Manifest b/net-dns/nsd/Manifest index d1ea36048808..2e3942976800 100644 --- a/net-dns/nsd/Manifest +++ b/net-dns/nsd/Manifest @@ -1,3 +1,3 @@ DIST nsd-4.1.16.tar.gz 1088633 BLAKE2B c170ca8c4008d8db383a072c40bbf262487979bff659b3d0d76cb0203e1b7ff9f9c2bc4bc46912628c246d2cd12e55486a526fbdaa4f23eaa177fb2dcc4769e9 SHA512 51135bbf412cdc5d6d9be02af9fef16513f0529155c102debfd6bd68b025d289c684777a8fca57de86b25f68bc94aef89d2cfefb871b8d63048d262f6c8eb8e3 -DIST nsd-4.1.17.tar.gz 1089526 BLAKE2B 97eb78377af0887633c32cf65b81b71f5cf8593f8979e41a9465c0a00ba84a6fb40ff534f96c768f8ec92a339b9e86632f9590724bf16a8360b22f7e7721fec5 SHA512 4cffa261b1832d0daac095e92542359ffd725918f07ec605c78a9346b1cf4a4bc21bdc59ab388eb7324a170bbd8b122cfa75e7448015b38572b47d18add24a8f DIST nsd-4.1.18.tar.gz 1095673 BLAKE2B e3dc86e64614323dbefb334769a8095dc674f422f8e62c91e2918f4622ceac0ebef7dec42d5a714b15ad2f3af368ba817239a0027d3a685abf603cf00e9fa9d1 SHA512 d9939b8813677127ccd3e87e709b27a8a4f96cc0221ab77563d9349cb6dd56ae39bb7349ede9aed9aaa07de9310bcaeb8be8b17f608e9c4714b4fb084f2e756f +DIST nsd-4.1.19.tar.gz 1096567 BLAKE2B f6e700d0c6f539caa0f1ff94fb43091eb15b32421f4b952566ca5ae31b94922248cc5ffd28a97abd6870d6bdd8acd76e80b06717584c626634f0a01eed76ae51 SHA512 fc99590f84658311cf33428d87c84c73b231ac0c90f8ca47daedeb264642e291eb2e79f8dee304dd4dc3a73bd9c7fbe65f2bd164b120bd7b13429ad483882d82 diff --git a/net-dns/nsd/nsd-4.1.17.ebuild b/net-dns/nsd/nsd-4.1.19.ebuild similarity index 95% rename from net-dns/nsd/nsd-4.1.17.ebuild rename to net-dns/nsd/nsd-4.1.19.ebuild index 23775fc75841..4a7e4dbabe2b 100644 --- a/net-dns/nsd/nsd-4.1.17.ebuild +++ b/net-dns/nsd/nsd-4.1.19.ebuild @@ -5,20 +5,21 @@ EAPI=6 inherit user systemd +# version voodoo needed only for non-release tarballs: 4.0.0_rc1 => 4.0.0rc1 +MY_PV="${PV/_rc/rc}" +MY_PV="${MY_PV/_beta/b}" +MY_P="${PN}-${MY_PV}" + DESCRIPTION="An authoritative only, high performance, open source name server" HOMEPAGE="http://www.nlnetlabs.nl/projects/nsd" -# version voodoo needed only for non-release tarballs: 4.0.0_rc1 => 4.0.0rc1 -MY_PV=${PV/_rc/rc} -MY_PV=${MY_PV/_beta/b} -MY_P=${PN}-${MY_PV} -S="${WORKDIR}/${MY_P}" SRC_URI="http://www.nlnetlabs.nl/downloads/${PN}/${MY_P}.tar.gz" - LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="bind8-stats ipv6 libevent minimal-responses mmap munin +nsec3 ratelimit root-server runtime-checks ssl libressl" +S="${WORKDIR}/${MY_P}" + RDEPEND=" virtual/yacc libevent? ( dev-libs/libevent ) @@ -85,7 +86,7 @@ src_install() { # remove the /run directory that usually resides on tmpfs and is # being taken care of by the nsd init script anyway (checkpath) - rm -r "${ED}"/run || die "Failed to remove /run" + rm -r "${ED%/}"/run || die "Failed to remove /run" } pkg_postinst() { diff --git a/net-libs/Manifest.gz b/net-libs/Manifest.gz index daa1a050a964..583fe470bd4e 100644 Binary files a/net-libs/Manifest.gz and b/net-libs/Manifest.gz differ diff --git a/net-libs/ldns/ldns-1.7.0-r2.ebuild b/net-libs/ldns/ldns-1.7.0-r2.ebuild index 054d81a0e12d..d2375c604ead 100644 --- a/net-libs/ldns/ldns-1.7.0-r2.ebuild +++ b/net-libs/ldns/ldns-1.7.0-r2.ebuild @@ -13,7 +13,7 @@ SRC_URI="http://www.nlnetlabs.nl/downloads/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~ppc-macos ~x64-macos ~x64-solaris" -IUSE="+dane doc +ecdsa gost libressl python ssl static-libs vim-syntax" +IUSE="+dane doc +ecdsa gost libressl python static-libs vim-syntax" # configure will die if ecdsa is enabled and ssl is not REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" diff --git a/net-libs/libmicrohttpd/Manifest b/net-libs/libmicrohttpd/Manifest index d22606a9c98d..dc393ab56063 100644 --- a/net-libs/libmicrohttpd/Manifest +++ b/net-libs/libmicrohttpd/Manifest @@ -1,6 +1,4 @@ -DIST libmicrohttpd-0.9.51.tar.gz 1114110 BLAKE2B eaaa9e9ca5c4abf618b1e56c922415abfac8fb243b24899946c7662769a5398364f5de955d57fc357f6d563d7f839c5dff29b78a66adebd221843c47facd64c7 SHA512 462178033d5fabc53885189a7f73a343a1a0d2f54e8ff6310a3e74ace3316567927c453773e62ff35150ec36658605d6d0a9c1c38c5d3186d543ca313f4a5912 DIST libmicrohttpd-0.9.52.tar.gz 1244489 BLAKE2B b8736bd50afa9531ea5377f082c8085ff189fad32cca5c07db14e4a1551dd2330630a06cfadb022b212385c2b01e4469c66e727c3e1c2035c131d99760962171 SHA512 2cb7fa6ed59ec5f48748cd2aedea8a68629f02ffcf8e86c6d5b57a6622bb5f0ffd7dabfd6c04cc99047ca81eb76efe2a79b34bd6e3de329261a319369232fcf4 -DIST libmicrohttpd-0.9.53.tar.gz 1301214 BLAKE2B cc1bfdfc56873ee8f1a31d292accfd09e6f5b0a3d8f4aa53ac73d2274a6b26a1f99a057ffdd181395d137def7decc28fd3a44a41c2418cba0de02a7c41db20e7 SHA512 2e29595c980cdcf12c1cead62f8938cc32e8c93d3a848e7473c5d5f596c6b6858732df0a3293b93d89577e5a325a62fe82adf3921a76d7184a647489364d7e2c -DIST libmicrohttpd-0.9.54.tar.gz 1309560 BLAKE2B dc78b18fba42473078bdfeb30c976354600dd69cbac3827aaf6a0cc00a4b8a5dc7861f41abd72ff40be16cd00379fb87f1518255d7b89e3e83b7ed64a005e740 SHA512 d3276ad3af123aacc5ff885786861ccc94397576b81999974456b9b803fe5d911115f6595281ffce2240087f98a6527a840506eabeec9f2589d555fd235b6c89 DIST libmicrohttpd-0.9.55.tar.gz 1308328 BLAKE2B 5189bcaf2f29fdff9fdd3d7dfddd1b5e5abbca016c4f55a7e0a176b505cd6e3aa5868260615c922937856cfb9c6fd77a4edeab829c669b4f7751d5512e8c538b SHA512 b410e7253d7c98c40b5e8b8dcd1f93bcbb05c88717190e8dae73073d36465e8e5cfa53c6c5098de60051a5ec64dc423fd94f4b06537d8146b744aa99f5a0b173 DIST libmicrohttpd-0.9.57.tar.gz 1332713 BLAKE2B 52e46726b220229ae722b4b94478bcd657e5edf1a836fa412b3365d8a2ca651887e62badd095f42f4fe41ad92f07e4147c812aef1c03dd6fba72a4acc6b1581a SHA512 996a59b1bc950320f21df095d3e24e1e6a6e4204095eb84e7dc5e5ed296b1dbe553459b227ba6cc93f60721f1975f778ece8c7c1c10e9168d030fba46675eed3 +DIST libmicrohttpd-0.9.58.tar.gz 1333687 BLAKE2B ef3dfb4684f2c387399d9044eb46de70c387b89bc4600529a9cdad7f2f31a25e0b0996b91d03cf42421979279781161b72d35eeb94d4bb101dd4d73bb6181bb7 SHA512 f68268bb0a0776ac0654a682fc598f4778561c2cc775e7315505c0e2f26f0633590d01f157984d348fdcedfb63d31d39add760a4ddb041694330015293d161b6 diff --git a/net-libs/libmicrohttpd/libmicrohttpd-0.9.51.ebuild b/net-libs/libmicrohttpd/libmicrohttpd-0.9.51.ebuild deleted file mode 100644 index a31f258f10f8..000000000000 --- a/net-libs/libmicrohttpd/libmicrohttpd-0.9.51.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -MY_P="${P/_/}" - -DESCRIPTION="Small C library to run an HTTP server as part of another application" -HOMEPAGE="https://www.gnu.org/software/libmicrohttpd/" -SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0/12" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86" -IUSE="epoll messages ssl static-libs test" - -RDEPEND="ssl? ( - dev-libs/libgcrypt:0= - net-libs/gnutls - )" - -# We disable tests below because they're broken, -# but if enabled, we'll need this. -DEPEND="${RDEPEND} - test? ( - ssl? ( net-misc/curl[ssl] ) - )" - -S=${WORKDIR}/${MY_P} - -DOCS="AUTHORS NEWS README ChangeLog" - -src_configure() { - econf \ - --enable-bauth \ - --enable-dauth \ - --disable-examples \ - --enable-postprocessor \ - --disable-thread-names \ - $(use_enable epoll) \ - $(use_enable test curl) \ - $(use_enable messages) \ - $(use_enable ssl https) \ - $(use_with ssl gnutls) \ - $(use_enable static-libs static) -} - -# tests are broken in the portage environment. -src_test() { - : -} - -src_install() { - default - - use static-libs || find "${ED}" -name '*.la' -delete -} diff --git a/net-libs/libmicrohttpd/libmicrohttpd-0.9.53.ebuild b/net-libs/libmicrohttpd/libmicrohttpd-0.9.53.ebuild deleted file mode 100644 index 9afe482cd6bf..000000000000 --- a/net-libs/libmicrohttpd/libmicrohttpd-0.9.53.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -MY_P="${P/_/}" - -DESCRIPTION="Small C library to run an HTTP server as part of another application" -HOMEPAGE="https://www.gnu.org/software/libmicrohttpd/" -SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0/12" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" -IUSE="epoll messages ssl static-libs test" - -RDEPEND="ssl? ( - dev-libs/libgcrypt:0= - net-libs/gnutls - )" - -# We disable tests below because they're broken, -# but if enabled, we'll need this. -DEPEND="${RDEPEND} - test? ( - ssl? ( net-misc/curl[ssl] ) - )" - -S=${WORKDIR}/${MY_P} - -DOCS="AUTHORS NEWS README ChangeLog" - -src_prepare() { - eapply "${FILESDIR}"/${P}-fix-build-without-epoll.patch - eapply_user -} - -src_configure() { - econf \ - --enable-bauth \ - --enable-dauth \ - --disable-examples \ - --enable-postprocessor \ - --disable-thread-names \ - $(use_enable epoll) \ - $(use_enable test curl) \ - $(use_enable messages) \ - $(use_enable ssl https) \ - $(use_with ssl gnutls) \ - $(use_enable static-libs static) -} - -# tests are broken in the portage environment. -src_test() { - : -} - -src_install() { - default - - use static-libs || find "${ED}" -name '*.la' -delete -} diff --git a/net-libs/libmicrohttpd/libmicrohttpd-0.9.54.ebuild b/net-libs/libmicrohttpd/libmicrohttpd-0.9.58.ebuild similarity index 85% rename from net-libs/libmicrohttpd/libmicrohttpd-0.9.54.ebuild rename to net-libs/libmicrohttpd/libmicrohttpd-0.9.58.ebuild index d782c539ac31..e5946aac12bd 100644 --- a/net-libs/libmicrohttpd/libmicrohttpd-0.9.54.ebuild +++ b/net-libs/libmicrohttpd/libmicrohttpd-0.9.58.ebuild @@ -3,6 +3,8 @@ EAPI="6" +inherit multilib-minimal + MY_P="${P/_/}" DESCRIPTION="Small C library to run an HTTP server as part of another application" @@ -11,7 +13,7 @@ SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0/12" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" IUSE="epoll messages ssl static-libs test" RDEPEND="ssl? ( @@ -30,7 +32,8 @@ S=${WORKDIR}/${MY_P} DOCS="AUTHORS NEWS README ChangeLog" -src_configure() { +multilib_src_configure() { + ECONF_SOURCE="${S}" \ econf \ --enable-bauth \ --enable-dauth \ @@ -50,7 +53,7 @@ src_test() { : } -src_install() { +multilib_src_install_all() { default use static-libs || find "${ED}" -name '*.la' -delete diff --git a/net-misc/Manifest.gz b/net-misc/Manifest.gz index d9af3ee2e020..2a954076211f 100644 Binary files a/net-misc/Manifest.gz and b/net-misc/Manifest.gz differ diff --git a/net-misc/whois/Manifest b/net-misc/whois/Manifest index 4f3ac886184c..03bfaf597aa3 100644 --- a/net-misc/whois/Manifest +++ b/net-misc/whois/Manifest @@ -1,3 +1,3 @@ DIST whois_5.2.12.tar.xz 80428 BLAKE2B 53aa08d4e45ab417585aaaff03beb588a01e88c35d508f96e0738e6934659df6ab78c21d5794d86ce90c775fe5a32242710e8cf93b9f46c52dc32597ad113f40 SHA512 df40e2e7cbd11d00984f865e122ad4ece882a6a45e2f75ad5ea24ce937b7e9452b01fd886f43bae55fd065a6556cfc4577e7126151b5fd43fa806c4b0c886ced -DIST whois_5.2.17.tar.xz 82360 BLAKE2B 6141d95504abe1498e5e403248609fddbb7a6612555e0cbb25cbf9e3932b84b12ccdf7efa6865e5bece61457d516082424a271d41e995374131fc3d7c6c618df SHA512 b65de384ac935518bde0cee42f46f4bf99dc94e94e411b103df8eb73291c317409837adba2a358dfebdae6e1c46d85ccfe8debf86233be64eb91ebfe86a29152 DIST whois_5.2.18.tar.xz 82368 BLAKE2B 41596c6100436cb766af3cd84ceb817a958b8f6b9aa58f4174a758c9d90e9813443135998c04b418c68912aba9c0758ecedcd940533989279c4f2c39c767c66c SHA512 dcbfbab0da3b9b5876c7c51bc411ac371a5c33012bf1286a3e6ccfb59fb4fba89eab1c4b812766d2f101a93ca3424ef636214c05add59549b9809621dfb03d73 +DIST whois_5.2.19.tar.xz 82476 BLAKE2B 20fb18c0d7244293f5ead1bb11431227f5897f8db57ce4347790e4f9e4689c1dd8a43a9be95533df2496f4da515163053e3f9110f5470eb3faa1cf9a6f21bd4c SHA512 93e6df6bda18fe1dd9b8ca017271a46c6e2b721820260b11c5427258f6c0010cb573cc619def5af44a56b5740423b46ad7b383da7743cc35517f4526a720389f diff --git a/net-misc/whois/whois-5.2.17.ebuild b/net-misc/whois/whois-5.2.19.ebuild similarity index 100% rename from net-misc/whois/whois-5.2.17.ebuild rename to net-misc/whois/whois-5.2.19.ebuild diff --git a/profiles/Manifest.gz b/profiles/Manifest.gz index d1bd6ef92c5d..ec2f63efdf4c 100644 Binary files a/profiles/Manifest.gz and b/profiles/Manifest.gz differ diff --git a/profiles/package.mask b/profiles/package.mask index 335a90120bbb..c267ee1a8116 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -29,6 +29,10 @@ #--- END OF EXAMPLES --- +# Patrick Lauer (12 Dec 2017) +# Unfetchable / wrong checksum #640718 +=dev-libs/nettle-3.4 + # Patrice Clement (12 Dec 2017) # Masked due to a hard dependency on an ancient versions of dev-libs/msgpack # (<0.6) that have been punted from the tree. @@ -382,12 +386,6 @@ media-plugins/vdr-alcd # See also bug #624046. Masked for removal on 2017-12-12 sci-geosciences/gmapcatcher -# Brian Evans (07 Nov 2017) -# Remote service removed this method, dead upstream -# Masked for removal in 30 days. -# Bug 636796 -dev-php/PEAR-Services_W3C_HTMLValidator - # Mike Gilbert (05 Nov 2017) # Breaks several reverse dependencies. # https://bugs.gentoo.org/635934 diff --git a/sys-kernel/Manifest.gz b/sys-kernel/Manifest.gz index 8a97ba1d8556..23a4fe5320d5 100644 Binary files a/sys-kernel/Manifest.gz and b/sys-kernel/Manifest.gz differ diff --git a/sys-kernel/gentoo-sources/Manifest b/sys-kernel/gentoo-sources/Manifest index 17a548c0c844..0d3f93ed62d0 100644 --- a/sys-kernel/gentoo-sources/Manifest +++ b/sys-kernel/gentoo-sources/Manifest @@ -16,63 +16,18 @@ DIST genpatches-4.12-14.extras.tar.xz 17360 BLAKE2B 4eea1e0375ace3489e9129eca57a DIST genpatches-4.12-15.base.tar.xz 247556 BLAKE2B 357bb71d10618597e85ff7eec528a3555a1444d8946cf98fb362f91de82aaafee76346c97882cded03f52ed05564e84d25c36b00f11d8caa3cba577a89f40e52 SHA512 abd9f433fd6247fde9bd9c6655bd6cb90d56d4b3df6fed7f86872ff620f8502a7d277bd418c7d5d1667c792f85eb568b2cebe981cbd8bf4e4b7d7c3746e33d22 DIST genpatches-4.12-15.experimental.tar.xz 5188 BLAKE2B 84d57dc972407bd00a68b134366772d7711d3bb69614a1e9523c6bc44b8cfc4fb161590c9c5965c53fb0b60f400a47ca580ddb3929c3d116e18a7dc4131e5359 SHA512 af85f2724f767062c06acefb230db5eaae6ae65c68b8d0ba52f7ea9f13cf07adc277929bc9a4e3532ec680c5c0d270d92f1786a21303390e33f41e592d9761c3 DIST genpatches-4.12-15.extras.tar.xz 17340 BLAKE2B c4943b4e49ace480d17ea789ff1687028b8a4c75fcac84d74a46575fb33bda001e87f29e6bb5e22857b45be188614228def71def1e6933f4724ce60bf4e1c7c2 SHA512 9080bff5dde940c4c96e18e9fd2a6b29946511424cd5bf6c7467efd7d1301a7401155514d97fa5a890339ba84525f36f7a4c272fece3faae3dfaaf24d1498ac1 -DIST genpatches-4.13-12.base.tar.xz 219808 BLAKE2B d2dc7f53d27b15f7040399af2e3d0591b6f323ee1ace6a1d2df464c77fbd3274ec145447ae79fac813baf81eeef4f8f42fba50e470a8659abb8d9dbac75c3250 SHA512 65e1f5bebf942d73719becc60d0c46171176cf34e036374b44232e1de645205aebbb1da90d9e82699bb65dc69b78dbc5b76d39d8a041397c2508471fddd20b6e -DIST genpatches-4.13-12.experimental.tar.xz 5184 BLAKE2B 8664c583734f1ce5bb603941cf8766982d7611e2fdc3d7e6b823ea2668c389b52a134f8ec87c2e9be626b81706a8701c0d068886ce1395f85a9a452a49ec4f38 SHA512 2d23dbdb14ec619aecc6ae854aeaa8094a689a17a9453383f27b57b226bf23121574c41dafa3ad7744011000bc990c92f4f65a323d38a89675777fbb61083c31 -DIST genpatches-4.13-12.extras.tar.xz 17412 BLAKE2B 24e9e6ac166b2fd1853ac2409454987b7dcfa656e9b19ecef3479f5cfcd7044768d0fb65c2b04d8b8aa94b6f41fb9762b698f6a5fbfbb31e516ca2c3758c7ea1 SHA512 d348bb190a41526ae88cd82d2f77f0ce2bb50f9a8332daca92e09de078f70db6b906f4380f7ef85b807dc5a6cf34da0bff7afbbb68de3e483a5f26de352348d8 -DIST genpatches-4.13-13.base.tar.xz 232160 BLAKE2B bb1ddc51b4a257958de6835ccfd3eae68acb2db4a686e9e8040bd6296da09f44ec0efecba4e7293e47f5d27363a6cec19ca5aaf7a0c6854fcaf6fd911e307ec1 SHA512 02ed31fd0fedf1c312ac12a016946746df549e30c16040ab860a91041872addb0cd33e6b845fb37af179b30c9e50a090e4091d2b48eee1b61cb935fd593c1108 -DIST genpatches-4.13-13.experimental.tar.xz 5184 BLAKE2B 336f63cf6cd456c54ce153c6485ab5b910303a444b2e0d6e07437792993a9e961f3e1831bcc24fe6884dc80a9f7947ead32705cc823b2666b6197357bc273c56 SHA512 c220d229f4dffaf7bf09b9d4cb1a73d61b7646191d715098e5eb51808c66d38827729edcc9999f1252d7b1bfaaed7d2d2566add7b6cbadad1db246379334dee1 -DIST genpatches-4.13-13.extras.tar.xz 17396 BLAKE2B c36c764dd95b63b2e821821da23be8c900b51ddfe5db07536acf97a6650a166d6a09001132efab91ae5ddf14ff9f437104f3722c3255bec24f64c2024e8d7646 SHA512 67a4cf48502378663c5277e5d6c2d98d195d7f7b3a7fe0e79a5118c7e910e19c9882807cd7d80f73c08f28d702b83e4af9248597af751dc3cf923eee40a5c0ab -DIST genpatches-4.13-14.base.tar.xz 243120 BLAKE2B 768508c4c2652d6f215a40345bbfd9317ad40adb7cb8386da1866108e72877e26fb40ccf2ef904bbb4c4d0ae6c1cc545a6c3ae47b3052c8726dfa79ec0bf3959 SHA512 c885d59f4d301b1ef71d40e3b35758914b669e25a15a64826454b3f46f5b45a49850971ddf11cd1d5db41d1c0fc5d814158dd02f14d9eb0c97af208865c44dd2 -DIST genpatches-4.13-14.experimental.tar.xz 5184 BLAKE2B 336f63cf6cd456c54ce153c6485ab5b910303a444b2e0d6e07437792993a9e961f3e1831bcc24fe6884dc80a9f7947ead32705cc823b2666b6197357bc273c56 SHA512 c220d229f4dffaf7bf09b9d4cb1a73d61b7646191d715098e5eb51808c66d38827729edcc9999f1252d7b1bfaaed7d2d2566add7b6cbadad1db246379334dee1 -DIST genpatches-4.13-14.extras.tar.xz 17396 BLAKE2B c36c764dd95b63b2e821821da23be8c900b51ddfe5db07536acf97a6650a166d6a09001132efab91ae5ddf14ff9f437104f3722c3255bec24f64c2024e8d7646 SHA512 67a4cf48502378663c5277e5d6c2d98d195d7f7b3a7fe0e79a5118c7e910e19c9882807cd7d80f73c08f28d702b83e4af9248597af751dc3cf923eee40a5c0ab -DIST genpatches-4.13-15.base.tar.xz 254132 BLAKE2B 9079585e89d633821de2408442c2949c080f47831ebdabcf174e142fdf06838a4aef8bc1db288ca8d74074f7fe0f45215a8341a49ed1303360d9ee7718e927d5 SHA512 7d38c30f213a1bc0a38d2bb8e97f1f6b86ecff60779aa36cd1c9bd9cd2726c16b8bd3067364cae716d38e22d8f34dd34cac3072d5fe2c8256de229b99cb9a4b3 -DIST genpatches-4.13-15.experimental.tar.xz 5184 BLAKE2B 6cecdccdb9591650dd3c56944ec44302b9fca22e21f643da2a49ca97ea20daf6428e30fadc01331fbddae62b5ab620933fe8f87be6fb2fc7c9fa82573202cdb7 SHA512 4c5416bdfa602ae083a9058d04d2dede66bef95e5c589dd211aa82264c044a1102b63459dc384e7bdd6c10678b440542db2b274ebeb4456aeef93f09aea4693f -DIST genpatches-4.13-15.extras.tar.xz 17400 BLAKE2B b0f306dda52425809e3e6365269d6858cbff160825191614a940cf77d441aea08ba31e8c955df9a43161ddba3172fa5b1066a8e1546df2a7e479d79cd3697ab0 SHA512 4e41c0780bc7c37fa5e13847ee203cefc6e1676921d1560fef9a198ffcb948c7df38acb642098a1266661bf5ddeb022510aa0ab6863e654e29400eeccf093cc9 -DIST genpatches-4.13-17.base.tar.xz 266392 BLAKE2B 3c244e967b874c6cb3a0f286466e7994f4c2cf12bbca4a557e30014c0bdd85dba883bd2dea52b90f938e48c7cf6fefb12c6788dcd3c85cad521c3cf0501a6061 SHA512 8cd638064078eef540f614f766b89d845208082109f7af71013ab210ef4f0b7f483eefc112805646cc99b8517c3d938dcbe2eab4fcd4b35be14969c83f71b858 -DIST genpatches-4.13-17.experimental.tar.xz 5184 BLAKE2B 793202f126069c7abf0518cb280766450d777515b7ac74f6303e85781fb57c05e10389423163b18b54cb445874d3f4a230a3bbe792070e4c542b249a8646b0ae SHA512 9f74b4ad9970941ffc931faf933dcd4e3e6fa3b5090c629db4fcac99d07613e0953d33fdae629359fec58207c245627e963e4b6e36e2a13ffc3c654f592cf7bc -DIST genpatches-4.13-17.extras.tar.xz 17384 BLAKE2B 5ff2388104deb932ce55581405aeaafa1442814875c6bdb9802d7c42dd654201505ca73f92402e062cc73c1303f4570da9f28d448b9179c392e84518e1e379ca SHA512 2e6a14b9a40ea92af1ab79db66892d7f77bfc54380f08e8214ba1ce8d3d3de36e1be4c979ac3cd257545faf364002b7def9f7614bdbe73751692e8aed753ca5a DIST genpatches-4.13-18.base.tar.xz 273920 BLAKE2B a399354f7f7d6aedea1c0a16821d79a06c7cb560f66fc4da680dc59cb63d0d4d1b15a94d00c682b42e3123bec5930f70180c7dc6a4122c726736108734642193 SHA512 3164f77eef84977602beed2acc59739d8d8ed99a0e9ea02a1f9a1e8ba95b35c8e7566e020ea88ed73f6bb0d359daa207d9e08d6cecf9cebe9b93fb86ff6280ac DIST genpatches-4.13-18.experimental.tar.xz 5180 BLAKE2B 041818f6cae40ec0f39d6b696c67471671036f521d033e5165fc77b3fb8901c49da7f52ac96f0fc057bd076bd068024d82cac9abe311ce78ddf7553c0d4c2f55 SHA512 09a53e6b53c20ddc857b7ff7001be326adacf9d24a565922c8ceae35a98e9a5a1bd214fd6a227115ea90436d3504154cd6ae3e47e5eac270f220ec16255b16ca DIST genpatches-4.13-18.extras.tar.xz 17408 BLAKE2B 863c54f3451fff15f51bd65ea9ff1c2f6e42f587323c1251e8e5f1c3edec2653c079b87a87da1358bd06116a49986e5c347a761020d3966198d7a5371ec03524 SHA512 eb0505e6f54051ca3f1cdf3070092d5e78831a649582021a19878d6ada2d47d0c960d1726201c0d276a2eb4eed2ed72dd162dbc0ce0185a82f4a4e9580e7c804 DIST genpatches-4.13-19.base.tar.xz 281648 BLAKE2B b2dded0ed572fcce3f2b0e361732edad617728eac80a8febe2f2fc8f01faf9de3ded6d392bfa7bfaa7b0c221d292bf902c18d5961ad80db3a7d62e8754c84e97 SHA512 a3c26828df68e1e7595f47612f6a54d7e773feafa3e4ee2fdd0592d74c6e13bd3c50195696408a7d53a10f59e70072626b982f42b678d64bfce055100eb48307 DIST genpatches-4.13-19.experimental.tar.xz 5180 BLAKE2B 8641931516f97fb88415f6d1496ec3c68efb75bd188f77746068e35d011f71c3ff7246dd2f427eed905ceb3db06327a31678179457280b2f82e7290d1821e4ab SHA512 cf8feb8cea668f2f94b85e211274a186631193f0f0ee2bc8d5c51e8b7a159d0ff9f79e484ca90163de44c1a024e973b69ac4d6730c7aae15c60bab44854c0db1 DIST genpatches-4.13-19.extras.tar.xz 17404 BLAKE2B 351c85e48c7757bf2bf99cdd8deff6a7a9aee3b5d122a43ec38c4339b1c1ff71fa8a1d7cdee980823d69699a699ea20d0e0fc30011e6b47df905834473f656de SHA512 e3ff1ed750609e8e2625bb97c348e84b0e19577cf382a393d7bdcacd4a8dea8dc605afee8e60b162d08781df2bdb9d380004550c6f46c0b93e274057d2322d3f -DIST genpatches-4.14-2.base.tar.xz 17648 BLAKE2B 8e97f8aa8b8c45605f920cdbbfc9e55212e16ee33d2776dcc5d741ea68272234bd976fffaffc425e2c7c020bd154301ca06774f2401da8f012c770b183bb9efb SHA512 8562287eef0efd1df7816c65eb452e2b1a037cf572cc5131cc27526a7e93cb610d49b6855eae28039c922c5ce1ca270da1cf4070aa5ceb32edb260c5ca82717a -DIST genpatches-4.14-2.experimental.tar.xz 5184 BLAKE2B 793202f126069c7abf0518cb280766450d777515b7ac74f6303e85781fb57c05e10389423163b18b54cb445874d3f4a230a3bbe792070e4c542b249a8646b0ae SHA512 9f74b4ad9970941ffc931faf933dcd4e3e6fa3b5090c629db4fcac99d07613e0953d33fdae629359fec58207c245627e963e4b6e36e2a13ffc3c654f592cf7bc -DIST genpatches-4.14-2.extras.tar.xz 17480 BLAKE2B 16712b535d1548ad14e7c6b21a85f04830d4c7d3617764658d7423e4122c17af5008560ae48090f44d8b4248595b6fd1004333d63f63d747d1fbf36904f07623 SHA512 75ce75cb5248c8822e3798203b6836d689d32d54dc387f8a879d7cdd5aa81decbe7f3794861a92039b2b16a69e5a3de90dadca015eedc88d5d5d92883a6f0ff4 -DIST genpatches-4.14-3.base.tar.xz 22980 BLAKE2B 1856fe273ec373a059be489157cc268f079e3b6fa552f948732aca985b6a039aed0bde1a6e7be64b2c964a4c8a8ee00e02a427a56f72d278e757b1ebae0fc477 SHA512 ad4d27211b69a184ec82f34167b38cf16bee96a6242201304c683aec6d29c3a829202f5ea4ef4a73504f5ff90db22f471bdbf8c643ebfd2c1789c510cd6dabb9 -DIST genpatches-4.14-3.experimental.tar.xz 5180 BLAKE2B 8641931516f97fb88415f6d1496ec3c68efb75bd188f77746068e35d011f71c3ff7246dd2f427eed905ceb3db06327a31678179457280b2f82e7290d1821e4ab SHA512 cf8feb8cea668f2f94b85e211274a186631193f0f0ee2bc8d5c51e8b7a159d0ff9f79e484ca90163de44c1a024e973b69ac4d6730c7aae15c60bab44854c0db1 -DIST genpatches-4.14-3.extras.tar.xz 17480 BLAKE2B 346a3292223a5e046c019a50cce2bf7fbc8f2ab08ac281e0a82e8fec32193750767653f93f2f3e314c749b24ba4da1c4fad0176ade5871b17377b238cf57522e SHA512 1116a712bf223d670eb5eb4f01ed8a916a362d0accb525d2a8fab5b8a4c1c27120a566add7b0ca2658833b4f802db83e094185ecdec4ad2b9d2e07dbfd0bcbd8 -DIST genpatches-4.14-4.base.tar.xz 87480 BLAKE2B 753bc9a5145ae32f1d4562862449f798ac9c78111819c7c279327039f74142fd0ae6955d559801736b6d2a0b074cae56d53226e5745cb8c85e76b0bd42ea0673 SHA512 8c0d8d864dea85f6730cc8c5bb1bcefefc8ef3ee5254ba62f0d4e90c5787ea6423988f4c303e0e32aa41fc9e5d4fc01103136556daa826a57403522066c3c949 -DIST genpatches-4.14-4.experimental.tar.xz 5184 BLAKE2B f1d9938a476a958a5fb42b60589234df5c85211b2ebfe59316dd32036ce2a93fdd405f02976ed8eb9312841a4853bac0baec4df52cfc09278b7cdd1fe76e0718 SHA512 85f3055ce8ee187fc7105bf338dc18fbbf02e9cec27aedec10a6fde4db89dec70e666e63dd24497decfefb4b1f59c74789079614025304df67484d80f81d7ede -DIST genpatches-4.14-4.extras.tar.xz 17488 BLAKE2B ddab5ff81dc6cfe85ce3805846d8d74ce1eb8a2c79b2156e4363fa9592d1a0edec9f9812b9f41bd9ed955ac7030188776a7da5ff4a59408a0d5cf74bf0e629d6 SHA512 7ab148e3db28367ac7d8e56f75e65cafc3b80fd0932018d5ebd1ba1ba1b97521c94e30055fd653803806825bbc8be65e4fff2924907f9144b5ccdb48a53b00c8 DIST genpatches-4.14-5.base.tar.xz 115968 BLAKE2B d48a56eef5c045c79a355b765f7b569280b741f5879b7ae2ffd411922a27225d8150554f42f70503218bb7ac674434c01f0e2350e7c7e8da256cd36be11a502c SHA512 67c9b9c295ec90137c05385be239b6d2d0e79465a3f1e9f92ac3d0e6d8bb50a9107885a009a185d0cb2102e31d773cfd690f0d8ccafc0bacdcfab607ae556872 DIST genpatches-4.14-5.experimental.tar.xz 5184 BLAKE2B 13611ce70740cae179fd732ddab8b5daa1f8feab9d5fe80081753020e0df42dd76c8c8696522769a950f9eded8a92b80c93dece78a9c959a1fb9ac5ee61af101 SHA512 c6725e6728c9fbe923472116977136a13bf6ee4e4e450478ab2eb2e7c91d88fb50961b017d9c57335bd329543a830ba629bd064975326f187d72ae7376687d5e DIST genpatches-4.14-5.extras.tar.xz 17488 BLAKE2B 16281a8110e0e1156aeaa1b5bc219e3bad364b22da6ef3a540e16c0f0a2a9fd1fd3fd550d002e79b4095916863f93cfdf4b49617b9b1c3bea8263c54702205a0 SHA512 f15a3b545b5d4c1359f57046cc2dcd273508737129b181ab3a8c7eb7ee65f5ddb82ecf8b1f96095da87d5fb9659ec4f0eb4826aab63b45bfda2530ed8a609605 DIST genpatches-4.14-6.base.tar.xz 135424 BLAKE2B 28b59fc433c1b4d5c4fa4fd5bc71192eda5da51ce63a4af245b746425bac1abe9313a1cbc760396fcaa160c1c6333e756697923d45f114da94eaa2ed3ae8659b SHA512 460e38c9895156c2a16d3aadcaa4a2c9974a14e561155b914da143b14c726d9e8ad74cb435bd2ee51ad2a0966166e3705f943bd3831e3e33932373b2e04ace36 DIST genpatches-4.14-6.experimental.tar.xz 5176 BLAKE2B e28358bab3de6aa0274d537ca15239154bb69e5819ada8cb050ee35bb5885ff3ef5610988ebb1afa2bab3500c28300299c65e58aa302a6cfacad0aa2a8cb0244 SHA512 bdca000c196e1db78b27d16bf1abda0872d982375a5e33d4a9cbb5610df384f08692120460cda43ae06e0b9a6ea9c2c1c565697fbffdc9cb46e92d1ad628c74a DIST genpatches-4.14-6.extras.tar.xz 17488 BLAKE2B 39d46c202139f9d4b19eee37e711c81e95ce3b25924a70a3f75e6e4c6d4c665c1c73890fb0f61ea4ecad04cf9d9e2ad4788bad1e9c9e0e2fd03a07c3f5f8c713 SHA512 0fc7403ab27bc6a7ca1ff641bee8e8ea92bd04913e84c9559ac210cb6ecebb08dc4be9fdba6176c4c2d543990ea23d68a9f403dede6f1b2b56456d63d992faf3 -DIST genpatches-4.4-100.base.tar.xz 1513104 BLAKE2B 9b14d28288288ba467f32ed32f1944734f6f457883f360d844171c0d22f28e75a00026b8d736ce0673a80812e5471e9de0e89dbb45e510dfa3f6bd85391eef2f SHA512 75324834165e3493387e635918cb81d73d27b3274cc6826557df548f7f84a0aab456faf1b60e1e4bf35d8ae5fef00d1bdb4298f43208440c0422e006a3b248ef -DIST genpatches-4.4-100.experimental.tar.xz 87748 BLAKE2B 81c2c32d1f590c958895c9f0de60b2e1ddea61c994e950ef721ea59c33432934a4ccb443b08cf164c0031b4fb0f03ad6f85029e5f23508988230f1da18c6ed5b SHA512 822c943f114c35a8caeea20ee5f6c56d67f0d1122ca9db8f3bd9f34561735b0eaa72f9be7161b55c390ab5adf967ee64540a81a042746e39c6d294158cfd52b9 -DIST genpatches-4.4-100.extras.tar.xz 16464 BLAKE2B a8f9d161806e308f87b25d9d8b56b3f4eb61d9315e5eb753d7bd75506c9ce729262c2d3444f98e295e2ac9d5b52b5d147361f9b502f4718b0203a2eb67474671 SHA512 b9ae815130b993cd2723ba54c41aa62b04e8e373b4b26f63ad0c511c445eaa1af71e7d63f0eaecd23b6ded8589b65b4e9da0dd62349a0b8b836b15b01a4e523b -DIST genpatches-4.4-101.base.tar.xz 1522480 BLAKE2B 0fdf33f46e74537d41bae2e13e71ec8747bf92538dc8bc155a2986a08545cd25398972f65aff18e5c4ea210fef7545811cfb290890dda703f626bebb6492078d SHA512 4b0c6aaabca1984996c393c118a61e289553c7b2e65847d19f8148a75a363ac50f88b63666e3cd3c90ae8aa6724da402ec6867b30e3cab6bdc6fdbe4de6373bf -DIST genpatches-4.4-101.experimental.tar.xz 87768 BLAKE2B 00c9eae05561f82a7629e1f14079b6256870ac031b765035df025f0aa8939957d4d130039d57131464a3040e7140d9568fc14c548a503708b48ba9aaade1fea7 SHA512 631feeed11f995d6071f38a7cd8d6b50a824cc33b3736a6ba8bb89943cb00c0c17039e4f4d27e8bd69740739b27d877d03616b2a88d19cf30ad0a51708077670 -DIST genpatches-4.4-101.extras.tar.xz 16468 BLAKE2B 44e2acdbd4029aec39f7667c43b2139e2e702f6be0a0f7eb7cbaccaa369d8228659a161aba99e59339d95134b37fd4542fea69d338f244d34c56025eb966460b SHA512 aaed443e351ff3c24063e7edfb2c24e73ed6e2d8796bafb03202b7eb35ff6d50985d22f45c1f0eb811f8074c1fc43cbc84116d37cbe81110776a867b79eb8a23 -DIST genpatches-4.4-102.base.tar.xz 1534876 BLAKE2B 71002baad6872614ebf986adc3e0c24f33284ef6e1ab4bc80c1074472bff0057e6dcceeeb9b815a35c65e231de5c6487470260acc36001ec9740ff2f647d7391 SHA512 bc314f6a6bd7477ae3e217ce27c8b859f4574de76a7e5f3c1e70247eb3236d7bfd8e37a12d27a46cded56e49056e6e7d646c2814935634f387d2ab680b23e5af -DIST genpatches-4.4-102.experimental.tar.xz 87724 BLAKE2B 458a096fb3319b2d1eb123b83e32c11d30cafeafca2258fc917cc7c19a4cddb03e01e5fd6493f058838cd593b6de02bf0736656b53225c2e227ce8e6c67f42ce SHA512 f38af999df68a51778d44aa83dc442824f09cdc4a743ebf1f96cb091338bd77ac0f8a0d49d04ddeca80c5930fc10fb00e3589ad5074e0ec08cdc9c7f09b7316e -DIST genpatches-4.4-102.extras.tar.xz 16460 BLAKE2B c03212d57a906ae15e3445bd3c1ec553aedf5f5fcd64c5d12aec357b900f04d68aca453c5f41f306a19606de62c4b7aea3a09cc0cd2359c9ecaff49045f2ea15 SHA512 c93def08004c8a7f15aae95d8be454c2ff9142dc0721eb6623cb18fa621093539fa9458a3735cbc803aa76b8353b8e6ae421b32bb38bfafdcaaf131179b8c5e3 -DIST genpatches-4.4-103.base.tar.xz 1542244 BLAKE2B 7f94fd8ca4721047a81fc6f94427c17c7fd5617daa3b8092508f01d6ebafc099a09db2918194d2f404e1d1ace9bfa0ed6dea486d43a21bd8b3d94848e56bfd32 SHA512 d3d615dd6e912afa23db3b23c88f0adcf55b2cec987ad6902e997d55cf8ef6af48a01e576c5d9dad998c2ef6963cf9f5b56a605dac08dc8f8c9a2d0732c22f79 -DIST genpatches-4.4-103.experimental.tar.xz 87784 BLAKE2B 7b41ad75cafba6778aabfa4278a1b731ca236f20b989373ae2400c0b137aea124520ae2e6056a7419a70702eb1c147d8f82ff5c0d66364db7ff1d220c53b60bd SHA512 71747c2a01baa8f288d720b093a9035bd0ecb65a6c22a308c9f97c150f7c8ffdba48172b2cd18730298b6cbfe0f9718737f2975017382d15d403eabcba3f3198 -DIST genpatches-4.4-103.extras.tar.xz 16460 BLAKE2B e5e601bf64497ddf2674b5cef052e692e4d5cfe9e109048e55bc550facc7c309ec27262b7282145744997105f14190b5e8d1f082960b499620afed3daf429e1a SHA512 7caee6577147b750fb178126b73f7204082c1b353720695abd091e004211f42b0a5ec279783a98a5cbe294239eb1b29a2492a1af662a8efb70263403604715a7 -DIST genpatches-4.4-104.base.tar.xz 1555020 BLAKE2B 650c7e4538cf8635495bac98b05519941022ae2f29a8b59a95bc1f34b39bbf6730f16f54f4b691538c4f328fce17745d491f2febe766997fd00c70ed2dfa1367 SHA512 7b6625a1dc8669e25f5702509c7f25d7e72c102c6eb959afe295000cbd320db18a4d896fe385751cbbc569d74f056db70f610053a165f2f01683a411acc120b4 -DIST genpatches-4.4-104.experimental.tar.xz 87752 BLAKE2B fcd492594ce917948f596983f5950275cb2d5a4a9cb44dd417209a1fd6006b71d84b18cd6d54ab13538d6a842eb61eff50a3a664eef25fdc943d9a5c3a3e3b5c SHA512 75148631440426b827ea17e397212594c7e6b99e5ef6913c96f39ed9cbc25a4078d6ccb0be0a375eb88a1db952a4c7a877df05f6fda98c6e8ae5ec91ea1c19be -DIST genpatches-4.4-104.extras.tar.xz 16464 BLAKE2B 5e9a96777058c213d9dc5495bbd6e0b97422bf7d0de4ebd09475b6e50a338daa2120b551bbeb2a5c041899f717f1618105c6033cf1039834ca0519ec71f094b3 SHA512 6248bb8482697705b3c339c70cb1c64e286cde8d454051a5aa5633220a31e310ab77080e6acca6b4afcb60ba317763ed179e3789ce5587527229fe6dae6fdf1c -DIST genpatches-4.4-105.base.tar.xz 1559072 BLAKE2B cd0c70448977b247cf1bd67878fd2cc335179de501b115f5be14441c6b0f5680dc0b0f14aec42f2072ba8c63c812203a0d03e86fef4958f4b0f1ce141362066c SHA512 9129608889884057651a8532492f6ad2b5cb4ddc18bd21dfdc64c1dc97c43b97ef2ca3188808ff1d101ddcdf2f44661f8de363bc4a1bc53c07df22b719b5e6eb -DIST genpatches-4.4-105.experimental.tar.xz 87780 BLAKE2B ccc052ca22d8b44df734c70872a07d2b7898b2320d47f038a13c55e9b072437d73d795ce3705f552b985a70fe329df09d9a19b7a8231a60d07d9cd227791e5a0 SHA512 3c80f5b4d54d9d1890f8a2ee2442b1da29b83bee4502371974d096731f85bbe18d79a3201a23ede662e762e6a1c4af8cf7c05280e81eb5e1308f5fa310ee4a14 -DIST genpatches-4.4-105.extras.tar.xz 16460 BLAKE2B 672957c70a6d024dc6791e643ad29e9f3e91972df1f66aa126744f31ac00475e10f84bfde3721ed9d6f997b23f01c4e5ece93de056dec31e984768a683ba3e04 SHA512 b2df138aff124f426cc88fc15e6931c19371c5d59de294f529828a0b8fb46197638a69d67995fa0f8ffc40202d94692904d4ea790de3ff62206498f6fef046ee -DIST genpatches-4.4-106.base.tar.xz 1578596 BLAKE2B db4ebc32b4af5b13d436eeb28370207d308c8795dcad3f19e1213040584a114fe85622b7681765699d5e5e1ca6924c92409814d769a1434d6126b4e066ddbefe SHA512 927e4ab34c59e1a1a22c4fb2f162f7883188339b67688a31c707a7edaf33f5de36cabd709fab484b43da2dd0ec5101857a4c9be5ed10e490b36182fc208036f5 -DIST genpatches-4.4-106.experimental.tar.xz 87780 BLAKE2B 2e5ee20d172653a7d05495ced9cf759ab1ba8e8d20cefffa6c41c2fceb1192eaad2c8956b22ad7db88ffc8e3b068929d92b3042572f84028b9fe295382606e5f SHA512 a231ffa95aa64325a0d09cdd61d4515f17768b13c21c38c817e57b57dc244c1a162fd05bc408f94bd3cc5ec99a55748065e0384b9ff99bee2582203a7778c510 -DIST genpatches-4.4-106.extras.tar.xz 16460 BLAKE2B 7911a046df74d53a7ce79ed6c8e89f635f2e038806eeeb90fe19541cdef743992982a599a5f8e30a2079303112629d942f4e4eb31ae71a43168e6d74adf25a2b SHA512 3da45183686a962d33f6ae7a9ae10cd275bced09dba0913874737ba5915970e7142fe9ea96c1c294f6f43f10d24560a42d78edf664c3e6d0f1318ceb753a85ac DIST genpatches-4.4-107.base.tar.xz 1587988 BLAKE2B 827d3ae42c0fc412c165568edaf1f8550bf828d7e2edb7c5abd3013a2b639dbeb68d2e3a9656e2995baee07c7619695918e654174528ce3eebc8a891715bc636 SHA512 1fffc6d7b2c186c87c8b343d4bf5fcf94086dae9f4e70b2965f5dc8c18ff4753d417074ec4ad7deca29ff597a6e5d0cfca4bf325609596678febea5ac2f5ea24 DIST genpatches-4.4-107.experimental.tar.xz 87776 BLAKE2B b239fcc9ee1d0344a9fac8b6ae8e712bdf97df7547a2d3d1d6b39ea23f50d8836ae8fac3bfffcc401b3af52dd333b2b2b1e1626fb739da608d247be5fc67dbf3 SHA512 49e0cbc980cfafc7992d92e0bd2dd07d594ec39b9ba0bae27dd915eaffbd78c5af6d3d47847a98ee9a619447b3b220faf0c44484dc99088609ff8053f3c5d907 DIST genpatches-4.4-107.extras.tar.xz 16468 BLAKE2B 1ece602969ead12faab3e0e5d5703a75c737a18efe873d5bdda71ff134387f5760a76105262270543b4a0e882a9b5434905b3846bd68cc3af5bc1b0383122cd2 SHA512 0843f4cc2cb2b3219f7e1343d68062a9c86f08c51c67a801f82c7685c8c0eb92ea32841a8a6d4bb8da9fc9882eeb965bc66317d7c14e7a5ffbb58214f962dc35 @@ -82,36 +37,9 @@ DIST genpatches-4.4-108.extras.tar.xz 16444 BLAKE2B e5779b1707eeedc2c79f8280b995 DIST genpatches-4.4-91.base.tar.xz 1428436 BLAKE2B 4b706e9682e883dd1954632efe5ec161347432a6260c353e160b8591f8377e6d1e1768acd2e3e72237e3ea6b7104137e3504e3f290fb12b0dabf662b0fb034c1 SHA512 cdddd25be04b33558f7ebcee66df992aae38f29181474ebed82958d4d50639097b4a82eaf256d7b3576bfcd0cd3fe7682956e1d2cdbdb912d47fe86205d9b554 DIST genpatches-4.4-91.experimental.tar.xz 87760 BLAKE2B d8a165fb3708192a12e826a713e896ca83785da084c9a9aeaae909473c598669867fa303636d762facd2d7bc1a857da3ba0d994ee62d008dc17955dd84181942 SHA512 0bbc83e076d45da1d0258bfd7f6acf6170e99891a9a857b2552f3a0fcefff4f318a8c5c8779591b0bb654760f905530de18723f2ba960618eae59a1b7219c28f DIST genpatches-4.4-91.extras.tar.xz 16468 BLAKE2B b99298cd9e57a2b8a0619495df0450373c9f5c14ff2398d76534c7167f3a563c05e67f9aff80ff97a474ae7a8cb298a4ffbc5eab25d79075aac5cc01964c3e9d SHA512 229922945fcb882a0cb7dcba8bac9de51683690462a8df59e181a03d702fcb1c9b54078c5434624b4a197c481f0bb9b73dca58456ef5a5884a30bfd3644dfd6d -DIST genpatches-4.4-99.base.tar.xz 1507732 BLAKE2B 90f6b0dbf7f7a2dc54c47e6722bc0af102cebaf9d9f0c5c5cc455b5689753589ea7e0a1dce831508bd1213c3e94919daf42a8b454b5cd03c17b7524bd6ee94b1 SHA512 fe1cc9fa965fc42d647898fed34323988c6a4b38a747568f6710293d0aedbb865aaa50821100b8c240f7ad8864bde44de3953c3ebab5147c5334bc4aa423dfa5 -DIST genpatches-4.4-99.experimental.tar.xz 87760 BLAKE2B aa8cb76c724cb2eeb7e3144eeb970539c3db2a4f611c8068708e4d71bca2243999b470351a9b8e76f48046fa65750223f87d2a99eed4fdf8d0e4895beb2465c3 SHA512 40f7f034dd40802adf2270ca5482c8db1a63533a552346dbecbfd4ae925430b50e712cf9fda3fe1c5993215fe4342c86bbd75d6f31c7e75913fc6623c9fec228 -DIST genpatches-4.4-99.extras.tar.xz 16468 BLAKE2B ff25bf4ca04c5095afed263988b697595eeff2823c87bc44b58bbfcbf241de3f6d77d239019f9ade8248b84a5ab5c072e5c042b861a6daf3dcb156f40980a39d SHA512 cce5dd2620edcd13892fe3de55f098c2cd080591a47f08310c3925cf9776c33ff6547792f7c8cfe130ed0c54cef4ea7544e2a28e6c1a37f9d89d6959db56b024 DIST genpatches-4.9-51.base.tar.xz 1001928 BLAKE2B be8a1a304f634b40dba1daa56922473c25fc57cedca73401bc1a142674832bb797f805f883aecc56a4b17fd63dae6aebe42f7c642739e8c5704f130b6675dfde SHA512 2ab0efa23c556547bd223f066acbebe250346064a3588ee866871e36e3b5b5533ca7a3add6a62b53339acf89dfc8539c42b3877b5a2055ca7e20bc25c5657ca5 DIST genpatches-4.9-51.experimental.tar.xz 106416 BLAKE2B 483d57d8e19a135130e7084238c304e07ddf04e51dba8aa705566d4be3cf3a3b21a1f8a4ed49a7b2b06bc5b70f820788bc22e42ece8e6eb5d3ea3597eaf31289 SHA512 af7a00b9a3200a50341b9af607fbef362ead2e4f5ca35d58eec505de490c03d6366ab4645e35bbddd6903ac75396413d2902b6a9fc7e2c9d0d1d1254620cfdb3 DIST genpatches-4.9-51.extras.tar.xz 17356 BLAKE2B 03160cc66db43d543f4bbd3171741cc36ecdd1d3088a143144e8725d1a8452fbb3743dbbd196ba387875cd0eb4fd966821fc9d3b3269a6848d2fda650da5ccbe SHA512 e05c44a5ad1b68afb04647a86efc6f67e03515861e670e39f960c0a02b87fbcb71194efa6773259ee2be5c8362794a5bb6512e876784d5a521d8890865b3ba0e -DIST genpatches-4.9-61.base.tar.xz 1158552 BLAKE2B 88297a1b9f10db6a6dbc1eb5f5cf24db3161560133700d9d43ece24a7ed67876a734117b75e72da7cb6d4211c90e46c9fd1b0b61417d1540b1e2fd9147bc48d6 SHA512 dac7ef5bac6a116c813e614861be3304fb21d5fc004fb6e8d1cb7f05cfc7c4384dfafc8d8482efa737d4cbaaf110701a1c8ed23116aaac394b7ae3a38ac7c785 -DIST genpatches-4.9-61.experimental.tar.xz 106392 BLAKE2B 0d3617879407a74e7266288503bc644c49383ccac7a6c4685250014f7f6df33403118b677acca8ff944eac2b366a65e2865922c825e2c94133f8bd40fa9ce358 SHA512 5dc9e00964aa44a782dffb447b13fca58f234627882cef0009c53f747bf633ec9138462cf58b12f288545e2af5a33cfb2adec49b3cd1a0da96d7967e1eeb116f -DIST genpatches-4.9-61.extras.tar.xz 17352 BLAKE2B e084d1482e62de3375401f45e9d4c158a5cd5f5e60f880963609cffa2096704d4588179ba7de73f739848f2b901b347f580282f89637476bdf46d107a54c91d5 SHA512 b1acc2fe16a07d8927f5b2c21f982fde4dda608d9e80db8cd6c60739887d84a86792d39f8975920276987880ab344a58ef493816061f926c27cd7b059bcf5552 -DIST genpatches-4.9-62.base.tar.xz 1165604 BLAKE2B 09bd68db3628c20ac9622887e7cf7c88424bfd46a1bdbf8557f75b2a72c5c178eecfa3a7735bdba14cc0cbcd0e91a38d32eeb34a30be43ef5f8be4db71087d5d SHA512 6fec6da3e943b18235427d1df588aa3ffd5337c3239d1525f8cbb812ae2f250ba1b358b29ff80d08cc6f8f44e554e9c88c0500594a65f24ea6abce47f136a26b -DIST genpatches-4.9-62.experimental.tar.xz 106392 BLAKE2B 2c1957e8d90094c264616c54a34ca77faf7b8b4bb85d1c803c14ea6779dd8b320ff4bd0445eca3d539a60210d64990596863e29a6d4fea7d81f87210987cc6a0 SHA512 c1134056fa2be38f70e6fc3315fc7ba396d36f03d6cc3a58b453558b242dd1902fad06dbe64454fba1f25d3bd4c856c76cb74d525b016f276e990704e6a80ace -DIST genpatches-4.9-62.extras.tar.xz 17356 BLAKE2B a75b67cc024606cfe50cd2b9722ebe3f03d77da12cb37c8e9f471137c9fdfc1b282dde179b50822999262247572f90495f0805ecea5bd94941c50f4ec43ed8f8 SHA512 0e37dcdb94a7c1cc9f55de24c90eb07f2c6c5c63044d68f862e3562913bc53cd0882d8ef48e164eab5c3e201d5e9cb50145f38f59729bad9ed79f9a8b3a8bbbb -DIST genpatches-4.9-63.base.tar.xz 1183404 BLAKE2B 4e49c39b91a86ec1d7cb0bdf24c9cb9c66bbd3fbf9847c1d2246e98618f49f57b4702699fddad6595003b146f35b2b4416ac788410d4dd5076342ae470834c65 SHA512 cb8e7ee1e8cf88e08bad0ec7078667f8cb044a5369a7bda6db68846ac56696d888125527b3dc0d4b5fc90bc072cbd31a75c327c6317036ba697ffa235c1c074e -DIST genpatches-4.9-63.experimental.tar.xz 106440 BLAKE2B ece4f2c9cba523a9eb44a59a4ae8f3bbfcba22660f9143fb2ba23ddbafd6468459b1a70cafc373145a33c07d0a881c4d1b4f3a262e3ddd59b39deb17a58d95d3 SHA512 3c03fadd3a532cf0db5e3b7a319f8ffa6a96e3d304f31cf017baba5766da4af619daacb08749ec12bf8d62ce7439d2087de05b07f42ae0a41d81540f130a615a -DIST genpatches-4.9-63.extras.tar.xz 17348 BLAKE2B 613eef1455b723fa71d79d9df0c71f29cc7e1507ae0e2ac588e1410576d18d1320107d37c9f462477adb62c6f8c3460b557b11d6235c47d5ef2e85f2bcaa0940 SHA512 26e91da7d56177e7d0ec5c0c58e1acdddb99432978551a60cd48b58800c6f286054fbfabb87cf15b56ac4b7102c12f2c3edc2865f8fecce89e7eb0e7191ef1fa -DIST genpatches-4.9-64.base.tar.xz 1203336 BLAKE2B 318c3a751192626875fb0c2f9168b5ce0af9b3825b458d05511570e1d091b76ed9e3abb2bbd1df0b215d8d81c146df27bd4d2caf72aef160cc230773ee04c4f9 SHA512 34bfbd0f72570d6f50b6d22b10dc2aa742b9554e467cbe82fad8c9fb463baaaaf7cad9acb46a4f65f44c3d720af539fa5923647afb144363110ec0cc3928bf65 -DIST genpatches-4.9-64.experimental.tar.xz 106388 BLAKE2B 5e6f5dfcb6062af4e7bb8310e2018138d70e92f91dcb900280c4e6c909a0f97c79ce658d4df08b6886bec6ec3012b14468e1235dfe64b10af49abf2a09306f12 SHA512 9ba6da1ae2a618b5c766a1b9cabb459d5e3296643ede83fc9a2eb3991030abcd37652e1cdcfa9f1756f42b386b2fccdfd498ccd6e7b54f87e7c953cd05faa8a7 -DIST genpatches-4.9-64.extras.tar.xz 17356 BLAKE2B 0832648e3c54edece9cf4d1cdaf9f8c3bb7d68430367ae30bf14bb87e165856c3ec1abec4621378245b4e7fcd47efb4ea02846cd52952dcc06ee4a9de1e75f11 SHA512 2788478d0f659ab53b9fb5569cb6286b7db457520b2257db19ba8b9e2ef08be7e20e1901fe6d09069da09c8504507b2c1ea8ef3483ea5fda5272902ad49c18fe -DIST genpatches-4.9-65.base.tar.xz 1214800 BLAKE2B c96065b56d5467506fa62e14ab0887e2ca8cca54f356f9bd600ef6f8fd344d55fcddb0dcbe018302b51096c5d0026e870032467504a5e5ae14606b2d6dd0ce3a SHA512 7610c1ea5d98ffb5d7f1f036c6dd9d67dac5edc64d5e161f551e3091f295a2c5c1e8f4c0be02450c6c50baa65435b127d0c57c7118184d59377c13ecf6b9880e -DIST genpatches-4.9-65.experimental.tar.xz 106380 BLAKE2B ab340f99943fd160d3180be21cbc0f736816888d96af6f8e23faf05701576450e00736e734e129d9b5daa8fcb61e5fa1478191b1600573f64008428f1f9ba3f8 SHA512 6463eda4311ea2e47233076970a196fc6a55f79791c9e776b77ad54e326c9dfcdad1befb677323befec068bfe4740b137b7af82118920ddc6241c002c7040466 -DIST genpatches-4.9-65.extras.tar.xz 17352 BLAKE2B fa70933a00c725c6f5514529d37cfcc27730cd719f0b86c981e3b538ba822ba32d1d64b7801e092eb20fc7058a876b33cc87dbb9e9b8332db60455dda3ea580b SHA512 ced79ee5bd932605f3c183b19acd8a4b38a0119bcb74908e5949f37060479a3bb7b69dd0081f38e23aff2c572778d59939def79fab02b4026e6c496e1c19b8ba -DIST genpatches-4.9-66.base.tar.xz 1230840 BLAKE2B 18b0dafafa5789b8ff3dcf0b04043bcf9ec36c4024de9b0a2acdadd8caa62ef5a2449a66274cd7f884e671bedecfa1d689e6c0bfea460a14d338d964f2cb5c94 SHA512 b0a3ad38f32e4ddaf591977144ff7d292822433ee87c0af3adf5b6493feda8f9e3f9d49a7c1813529cb24ae4f83b434f7e75513ba068a2fafed4039a1383e8b1 -DIST genpatches-4.9-66.experimental.tar.xz 106396 BLAKE2B d194ac6b8374707be1445458a5ee26f47154adf11e87668a5a0487cca0e7e42ebf365df3910ec66729954cab9de4ce7711679e311bcfe7a22566e3e4085a282a SHA512 efe86fb3f0e29e62919cf4c175405fefa0f9a3a6d9fa02bb98a922a513c1a3672ca059058004cd023509b87499772a0b634db0d8595d7d947652813c03dee341 -DIST genpatches-4.9-66.extras.tar.xz 17348 BLAKE2B 979895fd39c5c51a7a6aec25594247b8b8d980aa7ec79e293e9d963cb2769e7e6a4272590ebea381446c0d8689cdb4bf6c689827db1cf1f72122954cbadee26d SHA512 d16849e39d0fae50deb3aba0824020a7a64f1c4f566ab8bf0e90a8adb21fe94c06191651315f3607ede253dd6369cddec142d51438cd5bfdfe686a3af27bef0f -DIST genpatches-4.9-67.base.tar.xz 1234920 BLAKE2B f0d33a73b4565b4dc52443af1197d4707cbc2678c787d52ac08ac355ae0bb95fe8affec304ba68fc72c1ce4e9a9af403770da1b0dc6393e251a722feb1896d67 SHA512 837b32b66b046e7de0927b39fe049f5d556a053cb49c53e1214da31d1e6a18604edd0204ee9d1d7cf873908f06d9808c500f4c8b597f6c974a0a07daa0d9f7f4 -DIST genpatches-4.9-67.experimental.tar.xz 106376 BLAKE2B 8dfc71899c2cab0235d1ec697ba8b6b127b9563dec410275e7af97f1bf6a54965e17e11747e8aaebd621194db4c160987279a550a1291da4af3928c4511d3fdc SHA512 7d536a0e5feae1045cf820840b50f0d8ff28c0e255d45c09ff80692c681aa287ccad3fb5336d3597aa99e599c73a750ff408e945366acfb9f1e23dc0b691eed3 -DIST genpatches-4.9-67.extras.tar.xz 17352 BLAKE2B c56b8e7483fc9f44fcaf9303136143932f6abaa27e92be5cc4c1bf946b208a56247dc34e205dfb355d6664e5666858213f7b11853660e832f8bee49f5bed3265 SHA512 500793184ddaad5efabf43dabee89fecbadab3a3a2c1d3c6e9ccddf3099f42fab3b3714f711a1ee640aeb0dd1a3b52728a5b11a9f6f8f20bbe83362e82592141 -DIST genpatches-4.9-68.base.tar.xz 1266744 BLAKE2B 287306aeecbab6cf9b9c08440ee333e729d0af555fec354400c54e407a1c3b8a723ea95c28b7d3c13fe37f4c7fb78c273eec8d6a68f31b68ec24ba45a374bef7 SHA512 4ba94ae3f592cdc466ab58e4bba9781fee915df4994beb6c9dec4efd3622b180cf0d145de585ec9a7361ed2ec636910a42b449d937dca50983bd7f13494edd16 -DIST genpatches-4.9-68.experimental.tar.xz 106380 BLAKE2B e360ddf86cc6db981937c188ccd5106754c7533ec01e6e4d4c9dcef72092b11c4d9accf0389414c3f20032977e010d29344f1014f490e9e13cc51b59d1f59d1b SHA512 000567fef478babbe86b706bc9532756bf42f2c2e09aa3f4e39f7fff8d90fd9dfe65929fb1b9473031d6529ce4ea4a9a8dd8bb7dc615a58f5157ccb2ad4b9249 -DIST genpatches-4.9-68.extras.tar.xz 17352 BLAKE2B 215a823f33f6d5cccbfd9597ae123a885abaf1bd2deef215b1f4c76dbd0652c4160152b96b62cfaa7523899f49263a48d49c9bfc43cab3fd44ca3aabadb54605 SHA512 549e8fc65d62b5197ffd047b7c281c183d267a7d93dbe4c46fe19c161fa84db9a00db9e4cf254431303dbfc8652dc360aa53af8057ab5a433fcc98dbc3748c9f DIST genpatches-4.9-69.base.tar.xz 1274148 BLAKE2B 732076c76dc8c5077ea804065c86e3c384004b484d661c60a5534964fe94a07ea86e6cec9e47d1484ace04a22123f88ac9a511e90998da948869c266f3b2c3be SHA512 5db83495c9b9757822df7a3733a29cb897163ce51bbb143fdfd31d42f9e5fab73dcd5c4ef18fa0c502838359ad3d9b9c9de625041042119df46f68d847eb26e6 DIST genpatches-4.9-69.experimental.tar.xz 106392 BLAKE2B a8025d5b3c4a86240beaca7237f8876d9690a6029dfbed72ad86b4e64ae69103717b034d3071a13d70e966ded9bd5847f40c9a81003380b0e0c6530dc0f404a6 SHA512 b91c383adb79de67fca53d4c729cd449973544d5d0c9c03cbd4fb2eeab37db4c018d460e15c985a8bd63ce6294dad160ad44dd9cfaf860a35e911b4a31594291 DIST genpatches-4.9-69.extras.tar.xz 17352 BLAKE2B e9a8c063812acf2155ebd6241e6061ab40328194c3a158feb8e53d4dc464b011184892ad8a0f240ef8cd8e5e1569981999fc46fda9d23b8e8ce9e1a05d8a7109 SHA512 5d48f1dc65bd352fe77793f3e8f5b3f689582aaa649a423b62ffc4d4e84113d6cb305d60bc09d37c191c46daf85e5021b27b4c7097b10a7df0aa5335d5e8116c diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.13.10.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.13.10.ebuild deleted file mode 100644 index f3862eadebc8..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.13.10.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="12" - -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.13.11.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.13.11.ebuild deleted file mode 100644 index 7d7786e4edb2..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.13.11.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="13" - -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.13.12.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.13.12.ebuild deleted file mode 100644 index 59284e8edba7..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.13.12.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="14" - -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.13.13.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.13.13.ebuild deleted file mode 100644 index 920163f95fd1..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.13.13.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="15" - -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.13.14.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.13.14.ebuild deleted file mode 100644 index 15a2975f3470..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.13.14.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="17" - -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.14.1.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.14.1.ebuild deleted file mode 100644 index 2d6aa240323f..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.14.1.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="2" - -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.14.2.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.14.2.ebuild deleted file mode 100644 index 7a185d552213..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.14.2.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="3" - -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.14.3.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.14.3.ebuild deleted file mode 100644 index a0358dd6019d..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.14.3.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="4" - -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.100.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.4.100.ebuild deleted file mode 100644 index 978e3ebc3dda..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.100.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="104" - -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.102.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.4.102.ebuild deleted file mode 100644 index 218a48af1333..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.102.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="105" - -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.103.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.4.103.ebuild deleted file mode 100644 index e574769a62ae..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.103.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="106" - -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.95.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.4.95.ebuild deleted file mode 100644 index e39168383808..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.95.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="99" - -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.96.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.4.96.ebuild deleted file mode 100644 index 56464bd14340..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.96.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="100" - -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.97.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.4.97.ebuild deleted file mode 100644 index 33638e55c73c..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.97.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="101" - -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.98.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.4.98.ebuild deleted file mode 100644 index 25811dab84c6..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.98.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="102" - -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.99.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.4.99.ebuild deleted file mode 100644 index 66c2ff700102..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.99.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="103" - -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.9.59.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.9.59.ebuild deleted file mode 100644 index e53afa2c7ba3..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.59.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="61" - -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.9.60.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.9.60.ebuild deleted file mode 100644 index 8f0e66d90443..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.60.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="62" - -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.9.61.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.9.61.ebuild deleted file mode 100644 index 037b8f4202f0..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.61.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="63" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" -IUSE="experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.9.62.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.9.62.ebuild deleted file mode 100644 index e8daa0732648..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.62.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="64" - -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.9.63.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.9.63.ebuild deleted file mode 100644 index 2324f13e9e72..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.63.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="65" - -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.9.64.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.9.64.ebuild deleted file mode 100644 index 0a9bccad99e0..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.64.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="66" - -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.9.65.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.9.65.ebuild deleted file mode 100644 index e506df733d04..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.65.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="67" - -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.9.66.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.9.66.ebuild deleted file mode 100644 index a0ffb54e1e59..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.66.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="68" - -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/www-client/Manifest.gz b/www-client/Manifest.gz index e260cbbb8bde..6319df7220d3 100644 Binary files a/www-client/Manifest.gz and b/www-client/Manifest.gz differ diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest index c2f39a1c3115..453ec015328b 100644 --- a/www-client/firefox/Manifest +++ b/www-client/firefox/Manifest @@ -184,7 +184,7 @@ DIST firefox-52.4.0esr-xh.xpi 441172 BLAKE2B b5b9fda7e7e1a0f4ad0b99e840649e2ede4 DIST firefox-52.4.0esr-zh-CN.xpi 461694 BLAKE2B d4e1430b926e8166296a33c4f0ae33da91465b2b5ea18c489a8d6aeab704d1268ff28a5d7524270125ffae927d3c47703d137f8e5dc2efe8e47b2fc96ef4e503 SHA512 9a194a185893b44bd5f6b4edb9b0aaffa552ec7e4b876e575482d7b2d46a7855f4350094861ae135a5066e9eaac93451f088a825e10f89b333dc4e7f269b153b DIST firefox-52.4.0esr-zh-TW.xpi 472534 BLAKE2B c2e8bdd83d4fcf2b7ed2a84d311dad467cbe3338a50152f714cb55292824dc142a40248a61c6b0303961ecb49ca8914c1696d0877ce3d1e2e0d2e50c56e5292f SHA512 32dfc07a61f88306f44c94197a9720442a62d69136f7f533a5d9224865ad40b220c7f2cc7d7b713127db50968c119eeadb376a94857555e96cf2af54066da6a6 DIST firefox-52.4.0esr.source.tar.xz 212285560 BLAKE2B e52d425134eba5d5f5f67e7a9868c9c8236230df7fd30cbc45c64dce176c00f5ed94178a183fc97f3a6eb9db1844222a0e1c61930cbfe68c36328da68dfdc33b SHA512 be3be7f9dbf4bd0344d5d76f26d1a5090bb012154d25833d5cd58e5e707c080515b42ed751e1f7e58b15b96939d7da634cafb6e8aa9bb1627ff420836b802183 -DIST firefox-52.5-patches-01.tar.xz 15660 BLAKE2B a6d217057e3ebf8b06ecbee03d88f9154a1336475e6ea9fe3659f5a798c2b4e217edd63d8cdda6602431df5858020a620be22a60e63c2f4033f005abd19e8326 SHA512 8cc8bf42dbb916d820b22a59cba2ecc89922b791a18184eaf380657ab44836832038420b00de6d662c5ab046d80854ca6226635c7dcdc3be0e5db7030ecfe757 +DIST firefox-52.5-patches-02.tar.xz 15084 BLAKE2B 538dd61dbb7b290add4782b323a62f9ab4dbc57326a9a085710d207752118c504eb030a8741c1eed2e281c8d18e5453210b1905d71439250caa588137bbc37d0 SHA512 b80f9acaf49226cd5c2864714826c5b0e7e918e94c31ec81521b90c47edbb88ea85faa34fc22791efefbcd3867ddc413c563de58ca0f8ce21e10a3858899efce DIST firefox-52.5.2esr-ach.xpi 427640 BLAKE2B e15767842d78a4de50744a2467214dc84c22877d6bab70cdc02dfd61f3123816f3f40eaf42a00be594b416715b2863a3c7579fffc16bca1a0320ae53fe3200bd SHA512 520f8f9a694430a0d85dc840bf2654c186ab9df7eed2a4d5b18e5937038983f70d9feb78a12a187cc49b0cd035465ff6dd9f732b1de9eedc931e3a5c21f53432 DIST firefox-52.5.2esr-af.xpi 436823 BLAKE2B 6fe0d2f9bea490f0f8833518462ebc1959775abad57030035e6bb0f331905a6950a4e648b5725bf24668703692fbab1563a3b87557c6c0a100e71deda1d8d1e5 SHA512 c6fbe8a9e98b888f60c528d58b5947eb7538c387457132aa2c9877ea5bec8c10fb575674f4fe8eb41e20f028fb52c55155276c106aa4a7641055c3dd4c08e66d DIST firefox-52.5.2esr-an.xpi 445142 BLAKE2B bc77e8cd79f8859a78cb2cda679c2e34c1b94cb5b7348653ecbee71ceefc32abd761650ee34f3110525afab0ab855299e287cbf3151003c3872121980128e90a SHA512 36f795f4a2c3c9bacd83e9ad975ac8cf9e867e32d81e4749ba659e7ab82ff15cee70504769f0258a9a28fbd1544e28797ab7b746e5c317a34731d64c075c2014 diff --git a/www-client/firefox/firefox-52.5.2.ebuild b/www-client/firefox/firefox-52.5.2.ebuild index 7ecf62a0ee52..134401170dd8 100644 --- a/www-client/firefox/firefox-52.5.2.ebuild +++ b/www-client/firefox/firefox-52.5.2.ebuild @@ -24,7 +24,7 @@ if [[ ${MOZ_ESR} == 1 ]]; then fi # Patch version -PATCH="${PN}-52.5-patches-01" +PATCH="${PN}-52.5-patches-02" MOZ_HTTP_URI="https://archive.mozilla.org/pub/${PN}/releases" MOZCONFIG_OPTIONAL_GTK2ONLY=1 diff --git a/www-client/vivaldi/Manifest b/www-client/vivaldi/Manifest index bf8a98b72da2..9782b43a44e7 100644 --- a/www-client/vivaldi/Manifest +++ b/www-client/vivaldi/Manifest @@ -1,3 +1,6 @@ DIST vivaldi-1.13.1008.34_p1-amd64.deb 49259224 BLAKE2B 32756c71b42942c087dc563688225ed9013d8de3da3e788b5aba62ad25d08237e2a6583d50379f0a9a3d2ab1258250adca4d302fec563a2d63f04c92a51a6349 SHA512 4d26ee227a11eecbb32062dd66de2ac64d94f7d523c83dc815ed5125b0f0ea86cc52a7877777d5df4135eb5755693b1772cc56b18d799d70dc46558826278b68 DIST vivaldi-1.13.1008.34_p1-armhf.deb 45154158 BLAKE2B b77e8c8d6cdfedf8f69edfdafbb7199aed4d3753934c1196f2a1b90bf137bd91dde8e2ff58b2fd4afd0317a0a8443ad5dd568d5e505bbf5b6fc0da2926b4eddc SHA512 f47f2d26e8045af9ba680129feca765cf3f9dc7ea76930071e9688ef50aa78a482b40ba5747fb4470d30520177bda371ec79e5a210a93dcf2e49251425001c6d DIST vivaldi-1.13.1008.34_p1-i386.deb 50147426 BLAKE2B b595c78e85a8a1bfe08554a7e85db7969ffa798488b053a5254bf819f82f015033a98793696a293e2080a8d1dafb30cdcd9ad30a6ae7717b95ee7bc4e5613643 SHA512 450f0983ff753fb64fe9c588f151e9a6b5cd04f4c2fd03a41e8a1af28ac3db0088a3a408eacc9394f2dee589381d03037d06601d8d5a50274b867a3b708206ef +DIST vivaldi-1.13.1008.36_p1-amd64.deb 49264956 BLAKE2B c262a9e5bf247f69b57def5ebf3422ab82c1d6f1a9a580499ceff95abe1bd14c2ca507bbe4686bd33c6503d7817aa30665660017a4c07578a2c169e8bd955551 SHA512 0a4c51a347a9936a695a815fd303d93a650c967bcc40dde56dc3a278436a38f39643080dff25f702c2acd4338eef79db4e15474c95fb65248c358fd1c346ce62 +DIST vivaldi-1.13.1008.36_p1-armhf.deb 45159082 BLAKE2B a5b2efa5dca3a9a65ee872f793279e5f44cd7c0c3d28310265cbd7241c5bae387b51d5f54070381ed25b634444336273b3a0cdaaf2c9c15d858d6681b875e221 SHA512 b04cc01713c535d8d5efbc11567e900d9f2dbaadec8885082f5bee770093cc024b089d34fc11906cc67171065b1ac2e7f514bbffce9fbfe673dd13b83f4dfc40 +DIST vivaldi-1.13.1008.36_p1-i386.deb 50137690 BLAKE2B 4e4e36bfd830076a5236d5a1a5711672f0235862f74186dcf9e5c1ed43b8727051fe86dd119afb3fc6043309844eddd888daa563c6276b1fff5ccd200f6b77de SHA512 abf2d654678c8194dc6a5ef7a0b856ba81320c90648268ffcd05aed9407053dfc99ce359a6ecfc0f32455fdb60cd76003819a9c900ee51e03baed409685f8af2 diff --git a/www-client/vivaldi/vivaldi-1.13.1008.36_p1.ebuild b/www-client/vivaldi/vivaldi-1.13.1008.36_p1.ebuild new file mode 100644 index 000000000000..2ac2dc21f15b --- /dev/null +++ b/www-client/vivaldi/vivaldi-1.13.1008.36_p1.ebuild @@ -0,0 +1,129 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 +CHROMIUM_LANGS=" + am ar bg bn ca cs da de el en-GB en-US es es-419 et fa fi fil fr gu he hi + hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl sr sv + sw ta te th tr uk vi zh-CN zh-TW +" +inherit chromium-2 eutils gnome2-utils multilib unpacker toolchain-funcs xdg-utils + +#VIVALDI_BRANCH="snapshot" + +VIVALDI_PN="${PN}-${VIVALDI_BRANCH:-stable}" +VIVALDI_BIN="${PN}${VIVALDI_BRANCH/snapshot/-snapshot}" +VIVALDI_HOME="opt/${VIVALDI_BIN}" +DESCRIPTION="A new browser for our friends" +HOMEPAGE="http://vivaldi.com/" +VIVALDI_BASE_URI="https://downloads.vivaldi.com/${VIVALDI_BRANCH:-stable}/${VIVALDI_PN}_${PV/_p/-}_" +SRC_URI=" + amd64? ( ${VIVALDI_BASE_URI}amd64.deb -> ${P}-amd64.deb ) + arm? ( ${VIVALDI_BASE_URI}armhf.deb -> ${P}-armhf.deb ) + x86? ( ${VIVALDI_BASE_URI}i386.deb -> ${P}-i386.deb ) +" + +LICENSE="Vivaldi" +SLOT="0" +KEYWORDS="-* ~amd64 ~arm ~x86" +RESTRICT="bindist mirror" + +DEPEND=" + virtual/libiconv +" +RDEPEND=" + dev-libs/expat + dev-libs/glib:2 + dev-libs/nspr + dev-libs/nss + >=dev-libs/openssl-1.0.1:0 + gnome-base/gconf:2 + media-libs/alsa-lib + media-libs/fontconfig + media-libs/freetype + net-misc/curl + net-print/cups + sys-apps/dbus + sys-libs/libcap + x11-libs/cairo + x11-libs/gdk-pixbuf + x11-libs/gtk+:2 + 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/pango[X] +" +QA_PREBUILT="*" +S=${WORKDIR} + +src_unpack() { + unpack_deb ${A} +} + +src_prepare() { + iconv -c -t UTF-8 usr/share/applications/${VIVALDI_PN}.desktop > "${T}"/${VIVALDI_PN}.desktop || die + mv "${T}"/${VIVALDI_PN}.desktop usr/share/applications/${VIVALDI_PN}.desktop || die + + sed -i \ + -e "s|${VIVALDI_BIN}|${PN}|g" \ + usr/share/applications/${VIVALDI_PN}.desktop \ + usr/share/xfce4/helpers/${VIVALDI_BIN}.desktop || die + + mv usr/share/doc/${VIVALDI_PN} usr/share/doc/${PF} || die + chmod 0755 usr/share/doc/${PF} || die + + rm \ + _gpgbuilder \ + etc/cron.daily/${VIVALDI_BIN} \ + ${VIVALDI_HOME}/libwidevinecdm.so \ + || die + rmdir \ + etc/cron.daily/ \ + etc/ \ + || die + + local c d + for d in 16 22 24 32 48 64 128 256; do + mkdir -p usr/share/icons/hicolor/${d}x${d}/apps || die + cp \ + ${VIVALDI_HOME}/product_logo_${d}.png \ + usr/share/icons/hicolor/${d}x${d}/apps/vivaldi.png || die + done + + pushd "${VIVALDI_HOME}/locales" > /dev/null || die + chromium_remove_language_paks + popd > /dev/null || die + + epatch "${FILESDIR}"/${PN}-1.13.1008.32_p1-libffmpeg.patch + + epatch_user +} + +src_install() { + mv * "${D}" || die + dosym /${VIVALDI_HOME}/${PN} /usr/bin/${PN} + + fperms 4711 /${VIVALDI_HOME}/${PN}-sandbox +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postrm() { + gnome2_icon_cache_update + xdg_desktop_database_update +} + +pkg_postinst() { + gnome2_icon_cache_update + xdg_desktop_database_update +}