diff --git a/Manifest.files.gz b/Manifest.files.gz index ee0b5ae653cc..dc26d49b7e0a 100644 Binary files a/Manifest.files.gz and b/Manifest.files.gz differ diff --git a/app-admin/Manifest.gz b/app-admin/Manifest.gz index 87c63bc33b6b..e96bed0eb7dc 100644 Binary files a/app-admin/Manifest.gz and b/app-admin/Manifest.gz differ diff --git a/app-admin/ansible-lint/ansible-lint-4.1.0.ebuild b/app-admin/ansible-lint/ansible-lint-4.1.0.ebuild index 46715fcb9b42..39a6d153b5de 100644 --- a/app-admin/ansible-lint/ansible-lint-4.1.0.ebuild +++ b/app-admin/ansible-lint/ansible-lint-4.1.0.ebuild @@ -9,8 +9,8 @@ PYTHON_COMPAT=( python3_{6,7} ) inherit distutils-r1 DESCRIPTION="Checks ansible playbooks for practices and behaviour that can be improved" -HOMEPAGE="https://github.com/ansible/ansible-lint" -SRC_URI="https://github.com/ansible/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +HOMEPAGE="https://github.com/ansible-community/ansible-lint" +SRC_URI="https://github.com/ansible-community/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" diff --git a/app-admin/ansible-lint/metadata.xml b/app-admin/ansible-lint/metadata.xml index c7b18bf539b8..84931168ac35 100644 --- a/app-admin/ansible-lint/metadata.xml +++ b/app-admin/ansible-lint/metadata.xml @@ -1,13 +1,13 @@ - - chainsaw@gentoo.org - Tony Vroon - - - ansible-lint - willthames/ansible-lint - https://github.com/willthames/ansible-lint/issues - + + chainsaw@gentoo.org + Tony Vroon + + + ansible-lint + ansible-community/ansible-lint + https://github.com/ansible-community/ansible-lint/issues + diff --git a/app-crypt/Manifest.gz b/app-crypt/Manifest.gz index f1241ffab3c7..621c59cc77db 100644 Binary files a/app-crypt/Manifest.gz and b/app-crypt/Manifest.gz differ diff --git a/app-crypt/acme/metadata.xml b/app-crypt/acme/metadata.xml index d0f0d1620b50..4f4e4466f8aa 100644 --- a/app-crypt/acme/metadata.xml +++ b/app-crypt/acme/metadata.xml @@ -7,6 +7,6 @@ acme - letsencrypt/letsencrypt + certbot/certbot diff --git a/app-editors/Manifest.gz b/app-editors/Manifest.gz index 6ba0eed642de..4369199bf9fd 100644 Binary files a/app-editors/Manifest.gz and b/app-editors/Manifest.gz differ diff --git a/app-editors/bluefish/Manifest b/app-editors/bluefish/Manifest index d87d4ad06be9..ce9637090136 100644 --- a/app-editors/bluefish/Manifest +++ b/app-editors/bluefish/Manifest @@ -1 +1,2 @@ DIST bluefish-2.2.10.tar.bz2 4159964 BLAKE2B 94210df4f9cf0abb46fa26612e1b64550f5970c72584b683779f5bcaf921a8925c6275c647125f73990e99a0175e3c92c0cc286590fbd08e938c6fd1d8c32cef SHA512 ddfad4c595d371dfd7ca5551c1771c2d82dbffcc90acda31bbd2a048730e24e2d1e37fbe847e5005d96acefdf5f38cb93785d23817e59624ecd7ea10bfbc3aeb +DIST bluefish-2.2.12.tar.bz2 4180228 BLAKE2B 9e05a4618c37951da6a669e9bd4e0dd7e9993ea764dd467f875039b28cdc6d71ae70d1a87df7f0c63f850ebbff6ceeb8550d1d036bab32b7435f362d5b137147 SHA512 f0eb6496d371db8a9b4aee33ddf67e5e87bcc86ff283704cac115be7f00609b1ccbd47ff2d8f8b0bc30f234a339069cc1f7cb1f8809d97f94f0b0e09e4f16754 diff --git a/app-editors/bluefish/bluefish-2.2.12.ebuild b/app-editors/bluefish/bluefish-2.2.12.ebuild new file mode 100644 index 000000000000..9b1dfeae212d --- /dev/null +++ b/app-editors/bluefish/bluefish-2.2.12.ebuild @@ -0,0 +1,103 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) + +inherit autotools python-single-r1 xdg + +MY_P=${P/_/-} + +DESCRIPTION="A GTK HTML editor for the experienced web designer or programmer" +HOMEPAGE="http://bluefish.openoffice.nl/" +SRC_URI="https://www.bennewitz.com/bluefish/stable/source/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +SLOT="0" +IUSE="+gtk3 gucharmap nls python spell" +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" + +RDEPEND=" + sys-libs/zlib + !gtk3? ( x11-libs/gtk+:2 ) + gtk3? ( + x11-libs/gtk+:3 + gucharmap? ( gnome-extra/gucharmap:2.90 ) + ) + python? ( ${PYTHON_DEPS} ) + spell? ( >=app-text/enchant-1.4:0 )" +DEPEND="${RDEPEND} + x11-libs/pango" +BDEPEND=">=dev-libs/glib-2.24:2 + dev-libs/libxml2:2 + virtual/pkgconfig + nls? ( + sys-devel/gettext + dev-util/intltool + )" + +S="${WORKDIR}/${MY_P}" + +# there actually is just some broken manpage checkup -> not bother +RESTRICT="test" + +pkg_setup() { + if ! use gtk3 && use gucharmap ; then + ewarn "gucharmap USE flag requires the gtk3 USE flag being enabled." + ewarn "Disabling charmap plugin." + fi + + use python && python-single-r1_pkg_setup +} + +PATCHES=( + "${FILESDIR}/${PN}-2.2.9-charmap_configure.patch" +) + +# eautoreconf seems to no longer kill translation files. +src_prepare() { + default + eautoreconf + sed -i 's:gzip -n $< -c:gzip -n -c $<:' data/bflib/Makefile.* || die "Cannot fix makefile" +} + +src_configure() { + econf \ + --disable-update-databases \ + --disable-xml-catalog-update \ + --with-freedesktop_org-appdata="${EPREFIX}"/usr/share/metainfo \ + $(use_with !gtk3 gtk2) \ + $(usex gtk3 "$(use_with gucharmap charmap)" '--without-charmap') \ + $(use_enable nls) \ + $(use_enable spell spell-check) \ + $(use_enable python) +} + +src_install() { + default + find "${ED}" -name '*.la' -delete || die +} + +pkg_postinst() { + xdg_pkg_postinst + einfo "Adding XML catalog entries..." + /usr/bin/xmlcatalog --noout \ + --add 'public' 'Bluefish/DTD/Bflang' 'bflang.dtd' \ + --add 'system' 'http://bluefish.openoffice.nl/DTD/bflang.dtd' 'bflang.dtd' \ + --add 'rewriteURI' 'http://bluefish.openoffice.nl/DTD' '/usr/share/xml/bluefish-unstable' \ + /etc/xml/catalog \ + || ewarn "Failed to add XML catalog entries." +} + +pkg_postrm() { + xdg_pkg_postrm + einfo "Removing XML catalog entries..." + /usr/bin/xmlcatalog --noout \ + --del 'Bluefish/DTD/Bflang' \ + --del 'http://bluefish.openoffice.nl/DTD/bflang.dtd' \ + --del 'http://bluefish.openoffice.nl/DTD' \ + /etc/xml/catalog \ + || ewarn "Failed to remove XML catalog entries." +} diff --git a/app-emulation/Manifest.gz b/app-emulation/Manifest.gz index 15f87858df71..5d3a6d235c15 100644 Binary files a/app-emulation/Manifest.gz and b/app-emulation/Manifest.gz differ diff --git a/app-emulation/docker-compose/metadata.xml b/app-emulation/docker-compose/metadata.xml index e8aeb1e23f1e..a501de3afddc 100644 --- a/app-emulation/docker-compose/metadata.xml +++ b/app-emulation/docker-compose/metadata.xml @@ -7,5 +7,6 @@ docker-compose + docker/compose diff --git a/app-emulation/glean/metadata.xml b/app-emulation/glean/metadata.xml index 5f29d506900e..04eb5e5e3c1b 100644 --- a/app-emulation/glean/metadata.xml +++ b/app-emulation/glean/metadata.xml @@ -14,6 +14,5 @@ glean - openstack-dev/glean diff --git a/app-emulation/qemu/files/qemu-5.2.0-cleaner-werror.patch b/app-emulation/qemu/files/qemu-5.2.0-cleaner-werror.patch new file mode 100644 index 000000000000..33115f1df480 --- /dev/null +++ b/app-emulation/qemu/files/qemu-5.2.0-cleaner-werror.patch @@ -0,0 +1,40 @@ +-Wall -Wextra compains about unused arguments, +causes safe-stack to be mis-detected. +--- a/configure ++++ b/configure +@@ -2293,7 +2293,7 @@ fi + cat > $TMPC << EOF + #include + #include +-int main(int argc, char *argv[]) { ++int main(void) { + return printf("%zu", SIZE_MAX); + } + EOF +@@ -4911,7 +4911,7 @@ fi + + if test "$safe_stack" = "yes"; then + cat > $TMPC << EOF +-int main(int argc, char *argv[]) ++int main(void) + { + #if ! __has_feature(safe_stack) + #error SafeStack Disabled +@@ -4933,7 +4933,7 @@ EOF + fi + else + cat > $TMPC << EOF +-int main(int argc, char *argv[]) ++int main(void) + { + #if defined(__has_feature) + #if __has_feature(safe_stack) +@@ -5283,7 +5283,7 @@ static const int Z = 1; + #define TAUT(X) ((X) == Z) + #define PAREN(X, Y) (X == Y) + #define ID(X) (X) +-int main(int argc, char *argv[]) ++int main(void) + { + int x = 0, y = 0; + x = ID(x); diff --git a/app-emulation/qemu/qemu-5.2.0.ebuild b/app-emulation/qemu/qemu-5.2.0.ebuild index 154a8d685191..ebb2803247ec 100644 --- a/app-emulation/qemu/qemu-5.2.0.ebuild +++ b/app-emulation/qemu/qemu-5.2.0.ebuild @@ -223,6 +223,7 @@ RDEPEND="${CDEPEND} PATCHES=( "${FILESDIR}"/${PN}-2.11.1-capstone_include_path.patch + "${FILESDIR}"/${PN}-5.2.0-cleaner-werror.patch ) QA_PREBUILT=" diff --git a/app-misc/Manifest.gz b/app-misc/Manifest.gz index c4a8fa1765df..edfd2520b4d0 100644 Binary files a/app-misc/Manifest.gz and b/app-misc/Manifest.gz differ diff --git a/app-misc/OpenRGB/Manifest b/app-misc/OpenRGB/Manifest index be8a7c453931..c2ca31416fa9 100644 --- a/app-misc/OpenRGB/Manifest +++ b/app-misc/OpenRGB/Manifest @@ -1 +1,2 @@ DIST OpenRGB-release_0.4.tar.bz2 2195819 BLAKE2B 6416e143707e5ae48d0f26d205e1cc27571299d7d4b8483d18cc03db237d71ebc3574973fc1540dacc24662c536888e575e89db417e52dc9672d412fe41c540b SHA512 9ecdf0a0aec5916b1c705c1ad0bd567f46f9b0a4409211cb195ec7a4bfbc95c80bde13798839d23e867ed613cb34c6e9629da4aac942490f58ca9528f5f0a8bd +DIST OpenRGB-release_0.5.tar.bz2 24183948 BLAKE2B c3e6eaab2224f97287a454375486cdacc6814f35fe6752271293d30110d066998d95a901224929cdec7f57a3983fa9d8f5dc488a2ccb6d128df36fac6bc4582a SHA512 d0bd69de94e7e94b9972c07851602d8437b4485d02e83e2fe84f21292acbeef32624ec82d5cb79de85a4dfec35431c469b124b0cc41cf1f741e6e52803dd82eb diff --git a/app-misc/OpenRGB/OpenRGB-0.5.ebuild b/app-misc/OpenRGB/OpenRGB-0.5.ebuild new file mode 100644 index 000000000000..6c5d8e23cd0c --- /dev/null +++ b/app-misc/OpenRGB/OpenRGB-0.5.ebuild @@ -0,0 +1,53 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit qmake-utils + +if [[ ${PV} == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI=${EGIT_REPO_URI:-"https://gitlab.com/CalcProgrammer1/OpenRGB"} +else + SRC_URI="https://gitlab.com/CalcProgrammer1/OpenRGB/-/archive/release_${PV}/OpenRGB-release_${PV}.tar.bz2" + S="${WORKDIR}/OpenRGB-release_${PV}" + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="Open source RGB lighting control that doesn't depend on manufacturer software" +HOMEPAGE="https://gitlab.com/CalcProgrammer1/OpenRGB/" +LICENSE="GPL-2" +SLOT="0" + +RDEPEND=" + dev-libs/hidapi:= + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + virtual/libusb:1 +" +DEPEND=" + ${RDEPEND} + dev-cpp/nlohmann_json +" +BDEPEND=" + virtual/pkgconfig +" + +src_prepare() { + default + rm -r dependencies/{hidapi,libusb,json}* || die + if [[ ${PV} != *9999* ]]; then + eapply "${FILESDIR}/OpenRGB-0.5-build-system.patch" + fi +} + +src_configure() { + eqmake5 INCLUDEPATH+="${ESYSROOT}/usr/include/nlohmann" +} + +src_install() { + emake INSTALL_ROOT="${ED}" install + + dodoc README.md OpenRGB.patch +} diff --git a/app-misc/OpenRGB/OpenRGB-9999.ebuild b/app-misc/OpenRGB/OpenRGB-9999.ebuild index 1499b76f7273..6c5d8e23cd0c 100644 --- a/app-misc/OpenRGB/OpenRGB-9999.ebuild +++ b/app-misc/OpenRGB/OpenRGB-9999.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit qmake-utils udev +inherit qmake-utils if [[ ${PV} == *9999* ]]; then inherit git-r3 @@ -18,7 +18,6 @@ DESCRIPTION="Open source RGB lighting control that doesn't depend on manufacture HOMEPAGE="https://gitlab.com/CalcProgrammer1/OpenRGB/" LICENSE="GPL-2" SLOT="0" -IUSE="udev" RDEPEND=" dev-libs/hidapi:= @@ -39,7 +38,7 @@ src_prepare() { default rm -r dependencies/{hidapi,libusb,json}* || die if [[ ${PV} != *9999* ]]; then - eapply "${FILESDIR}/OpenRGB-0.2-build-system.patch" + eapply "${FILESDIR}/OpenRGB-0.5-build-system.patch" fi } @@ -51,8 +50,4 @@ src_install() { emake INSTALL_ROOT="${ED}" install dodoc README.md OpenRGB.patch - - if use udev; then - udev_dorules 60-openrgb.rules - fi } diff --git a/app-misc/OpenRGB/files/OpenRGB-0.5-build-system.patch b/app-misc/OpenRGB/files/OpenRGB-0.5-build-system.patch new file mode 100644 index 000000000000..fe805988af5d --- /dev/null +++ b/app-misc/OpenRGB/files/OpenRGB-0.5-build-system.patch @@ -0,0 +1,13 @@ +diff --git a/OpenRGB.pro b/OpenRGB.pro +index 91e0079..7f279dd 100644 +--- a/OpenRGB.pro ++++ b/OpenRGB.pro +@@ -26,8 +26,5 @@ TEMPLATE = app + win32:BUILDDATE = $$system(date /t) + unix:BUILDDATE = $$system(date -R -d "@${SOURCE_DATE_EPOCH:-$(date +%s)}") +-GIT_COMMIT_ID = $$system(git --git-dir $$_PRO_FILE_PWD_/.git --work-tree $$_PRO_FILE_PWD_ rev-parse HEAD) +-GIT_COMMIT_DATE = $$system(git --git-dir $$_PRO_FILE_PWD_/.git --work-tree $$_PRO_FILE_PWD_ show -s --format=%ci HEAD) +-GIT_BRANCH = $$system(git --git-dir $$_PRO_FILE_PWD_/.git --work-tree $$_PRO_FILE_PWD_ rev-parse --abbrev-ref HEAD) + + DEFINES += \ + VERSION_STRING=\\"\"\"$$VERSION\\"\"\" \ diff --git a/app-misc/lirc/lirc-0.10.1-r4.ebuild b/app-misc/lirc/lirc-0.10.1-r4.ebuild index ba338c6f35ee..05b01aec1097 100644 --- a/app-misc/lirc/lirc-0.10.1-r4.ebuild +++ b/app-misc/lirc/lirc-0.10.1-r4.ebuild @@ -22,7 +22,7 @@ fi LICENSE="GPL-2+" SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86" +KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 x86" IUSE="audio +devinput doc ftdi gtk inputlirc static-libs systemd +uinput usb X" REQUIRED_USE=" diff --git a/app-misc/mc/mc-4.8.25.ebuild b/app-misc/mc/mc-4.8.25.ebuild index 925284808f49..ec006d89b634 100644 --- a/app-misc/mc/mc-4.8.25.ebuild +++ b/app-misc/mc/mc-4.8.25.ebuild @@ -13,7 +13,7 @@ SRC_URI="http://ftp.midnight-commander.org/${MY_P}.tar.xz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris" IUSE="+edit gpm nls samba sftp +slang spell test unicode X +xdg" REQUIRED_USE="spell? ( edit )" diff --git a/app-shells/Manifest.gz b/app-shells/Manifest.gz index 7686faf69120..c829737f1fa3 100644 Binary files a/app-shells/Manifest.gz and b/app-shells/Manifest.gz differ diff --git a/app-shells/mksh/mksh-59.ebuild b/app-shells/mksh/mksh-59.ebuild index 49b54d78db49..9ba431410c43 100644 --- a/app-shells/mksh/mksh-59.ebuild +++ b/app-shells/mksh/mksh-59.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} == *9999 ]] ; then ECVS_AUTH="ext" else SRC_URI="https://www.mirbsd.org/MirOS/dist/mir/mksh/${PN}-R${PV}.tgz" - KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux" + KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux" fi DESCRIPTION="MirBSD Korn Shell" diff --git a/app-text/Manifest.gz b/app-text/Manifest.gz index f14d469992e7..3c5cee0b22de 100644 Binary files a/app-text/Manifest.gz and b/app-text/Manifest.gz differ diff --git a/app-text/capyt/metadata.xml b/app-text/capyt/metadata.xml index 6b0a0fb3a729..60660574b441 100644 --- a/app-text/capyt/metadata.xml +++ b/app-text/capyt/metadata.xml @@ -1,8 +1,12 @@ - - juippis@gentoo.org - Joonas Niilola - + + juippis@gentoo.org + Joonas Niilola + + + capyt + lbatalha/capyt + diff --git a/app-text/htmlmin/metadata.xml b/app-text/htmlmin/metadata.xml index 2b2dd5ca9914..86d2c7f7283a 100644 --- a/app-text/htmlmin/metadata.xml +++ b/app-text/htmlmin/metadata.xml @@ -11,5 +11,6 @@ htmlmin + mankyd/htmlmin diff --git a/app-text/libgepub/libgepub-0.6.0.ebuild b/app-text/libgepub/libgepub-0.6.0.ebuild index c8eae9e5f272..f2b3935ddcb1 100644 --- a/app-text/libgepub/libgepub-0.6.0.ebuild +++ b/app-text/libgepub/libgepub-0.6.0.ebuild @@ -10,7 +10,7 @@ HOMEPAGE="https://git.gnome.org/browse/libgepub" LICENSE="LGPL-2+" SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86" +KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~sparc x86" IUSE="+introspection" RDEPEND=" diff --git a/app-text/mandoc/Manifest b/app-text/mandoc/Manifest index 5245af498122..f44b4b353ca7 100644 --- a/app-text/mandoc/Manifest +++ b/app-text/mandoc/Manifest @@ -1,2 +1 @@ -DIST mandoc-1.14.4.tar.gz 627229 BLAKE2B 43a561d4254e8bcd090891937582d7ee40cda70dcafbbe456f24c539f17f452081f324a90eae69f1025dab3760581d564fef3365e82204350d535f4809c36283 SHA512 c68390711a739284ad9a61364f3fea76c0c48c02b4830d6326b07c4188d099e3720ae3b91fc3b083269381b417b7e3f3647d13a54ed2548f8c2f94122f8a7d97 DIST mandoc-1.14.5.tar.gz 651846 BLAKE2B 27aaf97e7226e989b33861d2a255304bb64a7cd43ca026568f4b044035241c3315a0d73673b023d9ca5b80575b8c584889832bbd86b80aaa49bb785b37559367 SHA512 848f290847f3095757f25647e6d73eb7044018b145bf6f9dc8b5db164b1421911efdc5b3b9022ec3a2c5af9687a84d5acedee810f2bd2f7caaa9242dadb2cc52 diff --git a/app-text/mandoc/files/mandoc-1.14.5-r1-www-install.patch b/app-text/mandoc/files/mandoc-1.14.5-r1-www-install.patch new file mode 100644 index 000000000000..2395f1ce66b7 --- /dev/null +++ b/app-text/mandoc/files/mandoc-1.14.5-r1-www-install.patch @@ -0,0 +1,19 @@ +diff --git a/Makefile b/Makefile +index f4e2954..191c7e2 100644 +--- a/Makefile ++++ b/Makefile +@@ -535,9 +535,11 @@ soelim: $(SOELIM_OBJS) + # --- maintainer targets --- + + www-install: www +- $(INSTALL_DATA) mandoc.css $(HTDOCDIR) +- $(INSTALL_DATA) $(WWW_MANS) $(HTDOCDIR)/man +- $(INSTALL_DATA) $(WWW_INCS) $(HTDOCDIR)/includes ++ mkdir -p $(DESTDIR)$(HTDOCDIR)/man ++ mkdir -p $(DESTDIR)$(HTDOCDIR)/includes ++ $(INSTALL_DATA) mandoc.css $(DESTDIR)$(HTDOCDIR) ++ $(INSTALL_DATA) $(WWW_MANS) $(DESTDIR)$(HTDOCDIR)/man ++ $(INSTALL_DATA) $(WWW_INCS) $(DESTDIR)$(HTDOCDIR)/includes + + depend: config.h + mkdep -f Makefile.depend $(CFLAGS) $(SRCS) diff --git a/app-text/mandoc/files/mandoc.cron-r0 b/app-text/mandoc/files/mandoc.cron-r0 new file mode 100644 index 000000000000..785564901765 --- /dev/null +++ b/app-text/mandoc/files/mandoc.cron-r0 @@ -0,0 +1,6 @@ +#!/bin/sh + +# need MANPATH +. /etc/profile.env + +exec nice makewhatis -T utf8 2>/dev/null diff --git a/app-text/mandoc/mandoc-1.14.4.ebuild b/app-text/mandoc/mandoc-1.14.4.ebuild deleted file mode 100644 index b42f184fedde..000000000000 --- a/app-text/mandoc/mandoc-1.14.4.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -inherit multilib toolchain-funcs - -DESCRIPTION="Suite of tools compiling mdoc and man" -HOMEPAGE="https://mdocml.bsd.lv/" -SRC_URI="https://mdocml.bsd.lv/snapshots/${P}.tar.gz" - -LICENSE="ISC" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="static" - -LIB_DEPEND="sys-libs/zlib[static-libs(+)]" -RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )" -DEPEND="${RDEPEND} - static? ( ${LIB_DEPEND} )" - -src_prepare() { - default - - # The db-install change is to support parallel installs. - sed -i \ - -e '/ar rs/s:ar:$(AR):' \ - -e '/^db-install:/s:$: base-install:' \ - Makefile || die - - cat <<-EOF > "configure.local" - PREFIX="${EPREFIX}/usr" - BINDIR="${EPREFIX}/usr/bin" - SBINDIR="${EPREFIX}/usr/sbin" - LIBDIR="${EPREFIX}/usr/$(get_libdir)" - MANDIR="${EPREFIX}/usr/share/man" - INCLUDEDIR="${EPREFIX}/usr/include/mandoc" - EXAMPLEDIR="${EPREFIX}/usr/share/examples/mandoc" - MANPATH_DEFAULT="${EPREFIX}/usr/man:${EPREFIX}/usr/share/man:${EPREFIX}/usr/local/man:${EPREFIX}/usr/local/share/man" - - BINM_MAN=mman - BINM_SOELIM=msoelim - BINM_APROPOS=mapropos - BINM_WHATIS=mwhatis - BINM_MAKEWHATIS=mmakewhatis - MANM_MAN=mandoc_man - MANM_MDOC=mandoc_mdoc - MANM_ROFF=mandoc_roff - MANM_EQN=mandoc_eqn - MANM_TBL=mandoc_tbl - MANM_MANCONF=mman.conf - - CFLAGS="${CFLAGS} ${CPPFLAGS}" - LDFLAGS="${LDFLAGS} $(usex static -static '')" - AR="$(tc-getAR)" - CC="$(tc-getCC)" - # The STATIC variable is only used by man.cgi. - STATIC= - EOF -} diff --git a/app-text/mandoc/mandoc-1.14.5-r1.ebuild b/app-text/mandoc/mandoc-1.14.5-r1.ebuild new file mode 100644 index 000000000000..f138ef991ac3 --- /dev/null +++ b/app-text/mandoc/mandoc-1.14.5-r1.ebuild @@ -0,0 +1,118 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="Suite of tools compiling mdoc and man" +HOMEPAGE="https://mdocml.bsd.lv/" +SRC_URI="https://mdocml.bsd.lv/snapshots/${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~x86" +IUSE="cgi system-man" + +RDEPEND="sys-libs/zlib + system-man? ( !sys-apps/man-db ) +" +DEPEND="${RDEPEND} + cgi? ( sys-libs/zlib[static-libs] ) +" +BDEPEND=" + cgi? ( app-text/highlight ) +" + +PATCHES=( "${FILESDIR}"/${PN}-1.14.5-r1-www-install.patch ) + +pkg_pretend() { + if use system-man ; then + # only support uncompressed and gzip + [[ -n ${PORTAGE_COMPRESS+unset} ]] && \ + [[ "${PORTAGE_COMPRESS}" == "gzip" || "${PORTAGE_COMPRESS}" == "" ]] || \ + ewarn "only PORTAGE_COMPRESS=gzip or '' is supported, man pages will not be indexed" + fi +} + +src_prepare() { + default + + # The db-install change is to support parallel installs. + sed -i \ + -e '/ar rs/s:ar:$(AR):' \ + -e '/^db-install:/s:$: base-install:' \ + Makefile || die + + # make-4.3 doesn't like the CC line (bug #706024) + # and "echo -n" is not portable + sed \ + -e "s@^\(CC=\).*\$@\1\"$(tc-getCC)\"@" \ + -e 's@echo -n@printf@g' \ + -i configure || die + + cat <<-EOF > "configure.local" + PREFIX="${EPREFIX}/usr" + BINDIR="${EPREFIX}/usr/bin" + SBINDIR="${EPREFIX}/usr/sbin" + LIBDIR="${EPREFIX}/usr/$(get_libdir)" + MANDIR="${EPREFIX}/usr/share/man" + INCLUDEDIR="${EPREFIX}/usr/include/mandoc" + EXAMPLEDIR="${EPREFIX}/usr/share/examples/mandoc" + MANPATH_DEFAULT="${EPREFIX}/usr/man:${EPREFIX}/usr/share/man:${EPREFIX}/usr/local/man:${EPREFIX}/usr/local/share/man" + + CFLAGS="${CFLAGS} ${CPPFLAGS}" + LDFLAGS="${LDFLAGS}" + AR="$(tc-getAR)" + CC="$(tc-getCC)" + # The STATIC variable is only used by man.cgi. + STATIC= + + # conflicts with sys-apps/groff + BINM_SOELIM=msoelim + MANM_ROFF=mandoc_roff + # conflicts with sys-apps/man-pages + MANM_MAN=mandoc_man + + # fix utf-8 locale on musl + $(usex elibc_musl UTF8_LOCALE=C.UTF-8 '') + EOF + use system-man || cat <<-EOF >> "configure.local" + BINM_MAN=mman + BINM_APROPOS=mapropos + BINM_WHATIS=mwhatis + BINM_MAKEWHATIS=mmakewhatis + MANM_MDOC=mandoc_mdoc + MANM_EQN=mandoc_eqn + MANM_TBL=mandoc_tbl + MANM_MANCONF=mman.conf + EOF + if use cgi; then + cp cgi.h{.example,} || die + fi + if [[ -n "${MANDOC_CGI_H}" ]]; then + cp "${MANDOC_CGI_H}" cgi.h || die + fi +} + +src_compile() { + default + use cgi && emake man.cgi +} + +src_install() { + emake DESTDIR="${D}" install + use cgi && emake DESTDIR="${D}" cgi-install www-install + + if use system-man ; then + exeinto /etc/cron.daily + newexe "${FILESDIR}"/mandoc.cron-r0 mandoc + fi +} + +pkg_postinst() { + if use system-man ; then + elog "Generating mandoc database" + makewhatis || die + fi +} diff --git a/app-text/mandoc/metadata.xml b/app-text/mandoc/metadata.xml index aebca33be179..814b35c62403 100644 --- a/app-text/mandoc/metadata.xml +++ b/app-text/mandoc/metadata.xml @@ -4,4 +4,8 @@ base-system@gentoo.org + + build man.cgi web plugin for viewing man pages + set as the default man provider + diff --git a/app-text/poppler/Manifest b/app-text/poppler/Manifest index 20f58da4096d..0693f2d1cf21 100644 --- a/app-text/poppler/Manifest +++ b/app-text/poppler/Manifest @@ -1,2 +1,3 @@ DIST poppler-20.11.0.tar.xz 1648432 BLAKE2B 373464ba60ed84863b40eca2e4f99ebc1625ea06f68a1621165675cf46e70713b649f90630049d15c5c2bc59bd0befb437a4039b47e17509d4fcc4fed8586d53 SHA512 c8237e931ef20d939656e2600453fffb12a2beeafb273782b2069aec6e5915d8cc85136982b7eaf5956af30ce00da2faf84d86ffab47f725447dfbb9d6ffe335 DIST poppler-20.12.0.tar.xz 1659844 BLAKE2B 48e35f092ef29b5e9e2e20f1ade3759b0cdbb13ea843adacaf076407654fa52bcc2f42f8f89e72e7d8c717fde72771d43a6a855b0204d52ce450f2593899d3d5 SHA512 8c035847cf5a0763f02ccea45a8f1f563d94847620354c3c1621b05081600a99e207eadbc87398ed40e0d105c5439826130eb49058fed3abb60f5e4642321a0e +DIST poppler-20.12.1.tar.xz 1660164 BLAKE2B b96198be824dad6bde3ed89cbd05ebae001914c253d1b95321088ee209c73134efbb7f0044aa5d20c07d35b2460f5d17171810f36b873d2542e4bc93f423273f SHA512 a7ede8b11ce73c724fc54bc1e522ecfedaff65a08265c5faee4645765f1d6670a35abf67e57bdebacfd01b2071f1c532a04b9e302939a500fea9185f6e8226d0 diff --git a/app-text/poppler/files/poppler-20.12.1-qt5-deps.patch b/app-text/poppler/files/poppler-20.12.1-qt5-deps.patch new file mode 100644 index 000000000000..234be8222146 --- /dev/null +++ b/app-text/poppler/files/poppler-20.12.1-qt5-deps.patch @@ -0,0 +1,49 @@ +From e5927c7250afd6b715a9de520851b26e41b7f422 Mon Sep 17 00:00:00 2001 +From: Andreas Sturmlechner +Date: Wed, 9 Dec 2020 01:28:25 +0100 +Subject: [PATCH] Move Qt5 test dependencies into test dir + +Signed-off-by: Andreas Sturmlechner +--- + CMakeLists.txt | 6 ++---- + qt5/CMakeLists.txt | 10 ++++++++-- + 2 files changed, 10 insertions(+), 6 deletions(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 1573249a..ab91d537 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -157,10 +157,8 @@ if (ENABLE_QT5) + find_package(Qt5Core 5.5) # Update QT_DISABLE_DEPRECATED_BEFORE in qt5/CMakeLists.txt when increasing this + find_package(Qt5Gui) + find_package(Qt5Xml) +- find_package(Qt5Widgets) +- find_package(Qt5Test) +- if (NOT (Qt5Core_FOUND AND Qt5Gui_FOUND AND Qt5Xml_FOUND AND Qt5Widgets_FOUND AND Qt5Test_FOUND)) +- message("-- Package Qt5Core or Qt5Gui or Qt5Xml or Qt5Widgets or Qt5Test not found") ++ if (NOT (Qt5Core_FOUND AND Qt5Gui_FOUND AND Qt5Xml_FOUND)) ++ message("-- Package Qt5Core or Qt5Gui or Qt5Xml not found") + set(ENABLE_QT5 OFF) + endif() + endif() +diff --git a/qt5/CMakeLists.txt b/qt5/CMakeLists.txt +index 58b42f5e..e3b26cc2 100644 +--- a/qt5/CMakeLists.txt ++++ b/qt5/CMakeLists.txt +@@ -9,5 +9,11 @@ add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050500) + add_definitions(-DQT_NO_DEPRECATED_WARNINGS) + + add_subdirectory(src) +-add_subdirectory(tests) +-add_subdirectory(demos) ++ ++if(BUILD_QT5_TESTS) ++ find_package(Qt5Widgets REQUIRED) ++ find_package(Qt5Test REQUIRED) ++ ++ add_subdirectory(tests) ++ add_subdirectory(demos) ++endif() +-- +2.29.2 + diff --git a/app-text/poppler/poppler-20.12.1.ebuild b/app-text/poppler/poppler-20.12.1.ebuild new file mode 100644 index 000000000000..9a3ae26fd3c9 --- /dev/null +++ b/app-text/poppler/poppler-20.12.1.ebuild @@ -0,0 +1,122 @@ +# Copyright 2005-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake toolchain-funcs xdg-utils + +if [[ ${PV} == *9999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://anongit.freedesktop.org/git/poppler/poppler.git" + SLOT="0/9999" +else + SRC_URI="https://poppler.freedesktop.org/${P}.tar.xz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + SLOT="0/105" # CHECK THIS WHEN BUMPING!!! SUBSLOT IS libpoppler.so SOVERSION +fi + +DESCRIPTION="PDF rendering library based on the xpdf-3.0 code base" +HOMEPAGE="https://poppler.freedesktop.org/" + +LICENSE="GPL-2" +IUSE="cairo cjk curl +cxx debug doc +introspection +jpeg +jpeg2k +lcms nss png qt5 tiff +utils" + +# No test data provided +RESTRICT="test" + +BDEPEND=" + dev-util/glib-utils + virtual/pkgconfig +" +DEPEND=" + media-libs/fontconfig + media-libs/freetype + sys-libs/zlib + cairo? ( + dev-libs/glib:2 + x11-libs/cairo + introspection? ( dev-libs/gobject-introspection:= ) + ) + curl? ( net-misc/curl ) + jpeg? ( virtual/jpeg:0 ) + jpeg2k? ( >=media-libs/openjpeg-2.3.0-r1:2= ) + lcms? ( media-libs/lcms:2 ) + nss? ( >=dev-libs/nss-3.19:0 ) + png? ( media-libs/libpng:0= ) + qt5? ( + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtxml:5 + ) + tiff? ( media-libs/tiff:0 ) +" +RDEPEND="${DEPEND} + cjk? ( app-text/poppler-data ) +" + +DOCS=( AUTHORS NEWS README.md README-XPDF ) + +PATCHES=( + "${FILESDIR}/${PN}-20.12.1-qt5-deps.patch" + "${FILESDIR}/${PN}-20.12.0-respect-cflags.patch" + "${FILESDIR}/${PN}-0.57.0-disable-internal-jpx.patch" +) + +src_prepare() { + cmake_src_prepare + + # Clang doesn't grok this flag, the configure nicely tests that, but + # cmake just uses it, so remove it if we use clang + if [[ ${CC} == clang ]] ; then + sed -e 's/-fno-check-new//' -i cmake/modules/PopplerMacros.cmake || die + fi + + if ! grep -Fq 'cmake_policy(SET CMP0002 OLD)' CMakeLists.txt ; then + sed -e '/^cmake_minimum_required/acmake_policy(SET CMP0002 OLD)' \ + -i CMakeLists.txt || die + else + einfo "policy(SET CMP0002 OLD) - workaround can be removed" + fi +} + +src_configure() { + xdg_environment_reset + local mycmakeargs=( + -DBUILD_GTK_TESTS=OFF + -DBUILD_QT5_TESTS=OFF + -DBUILD_CPP_TESTS=OFF + -DRUN_GPERF_IF_PRESENT=OFF + -DENABLE_SPLASH=ON + -DENABLE_ZLIB=ON + -DENABLE_ZLIB_UNCOMPRESS=OFF + -DENABLE_UNSTABLE_API_ABI_HEADERS=ON + -DUSE_FLOAT=OFF + -DWITH_Cairo=$(usex cairo) + -DENABLE_LIBCURL=$(usex curl) + -DENABLE_CPP=$(usex cxx) + -DWITH_JPEG=$(usex jpeg) + -DENABLE_DCTDECODER=$(usex jpeg libjpeg none) + -DENABLE_LIBOPENJPEG=$(usex jpeg2k openjpeg2 none) + -DENABLE_CMS=$(usex lcms lcms2 none) + -DWITH_NSS3=$(usex nss) + -DWITH_PNG=$(usex png) + $(cmake_use_find_package qt5 Qt5Core) + -DWITH_TIFF=$(usex tiff) + -DENABLE_UTILS=$(usex utils) + -DENABLE_QT6=OFF + ) + use cairo && mycmakeargs+=( -DWITH_GObjectIntrospection=$(usex introspection) ) + + cmake_src_configure +} + +src_install() { + cmake_src_install + + # live version doesn't provide html documentation + if use cairo && use doc && [[ ${PV} != *9999* ]]; then + # For now install gtk-doc there + insinto /usr/share/gtk-doc/html/poppler + doins -r "${S}"/glib/reference/html/* + fi +} diff --git a/dev-cpp/Manifest.gz b/dev-cpp/Manifest.gz index a5aba5c3ea49..b76cfb752dae 100644 Binary files a/dev-cpp/Manifest.gz and b/dev-cpp/Manifest.gz differ diff --git a/dev-cpp/nlohmann_json/nlohmann_json-3.9.1.ebuild b/dev-cpp/nlohmann_json/nlohmann_json-3.9.1.ebuild index cbfe14e3ebfb..c040d31592de 100644 --- a/dev-cpp/nlohmann_json/nlohmann_json-3.9.1.ebuild +++ b/dev-cpp/nlohmann_json/nlohmann_json-3.9.1.ebuild @@ -13,7 +13,7 @@ S="${WORKDIR}/json-${PV}" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 x86" +KEYWORDS="~amd64 ~arm64 ppc ppc64 x86" IUSE="doc test" #RESTRICT="!test? ( test )" # Need to report failing tests upstream diff --git a/dev-embedded/Manifest.gz b/dev-embedded/Manifest.gz index bc58cb004558..3b64e2582528 100644 Binary files a/dev-embedded/Manifest.gz and b/dev-embedded/Manifest.gz differ diff --git a/dev-embedded/esptool/esptool-3.0.ebuild b/dev-embedded/esptool/esptool-3.0.ebuild index d66949a64efa..917cbb15e6ee 100644 --- a/dev-embedded/esptool/esptool-3.0.ebuild +++ b/dev-embedded/esptool/esptool-3.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/espressif/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-embedded/nodemcu-uploader/metadata.xml b/dev-embedded/nodemcu-uploader/metadata.xml index 0423add12b6a..e10bca727d5e 100644 --- a/dev-embedded/nodemcu-uploader/metadata.xml +++ b/dev-embedded/nodemcu-uploader/metadata.xml @@ -7,5 +7,6 @@ nodemcu-uploader + kmpm/nodemcu-uploader diff --git a/dev-lang/Manifest.gz b/dev-lang/Manifest.gz index b649b9b6ac0d..bc6669030649 100644 Binary files a/dev-lang/Manifest.gz and b/dev-lang/Manifest.gz differ diff --git a/dev-lang/php/php-7.3.25.ebuild b/dev-lang/php/php-7.3.25.ebuild index a29e8ad92308..c77f83e285f4 100644 --- a/dev-lang/php/php-7.3.25.ebuild +++ b/dev-lang/php/php-7.3.25.ebuild @@ -19,7 +19,7 @@ LICENSE="PHP-3.01 unicode? ( BSD-2 LGPL-2.1 )" SLOT="$(ver_cut 1-2)" -KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" S="${WORKDIR}/${PN}-${MY_PV}" diff --git a/dev-lang/php/php-7.4.13.ebuild b/dev-lang/php/php-7.4.13.ebuild index 48460b25f65a..7df313533ce8 100644 --- a/dev-lang/php/php-7.4.13.ebuild +++ b/dev-lang/php/php-7.4.13.ebuild @@ -21,7 +21,7 @@ LICENSE="PHP-3.01 unicode? ( BSD-2 LGPL-2.1 )" SLOT="$(ver_cut 1-2)" -KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" S="${WORKDIR}/${PN}-${MY_PV}" diff --git a/dev-lang/python-exec/python-exec-2.4.6-r2.ebuild b/dev-lang/python-exec/python-exec-2.4.6-r2.ebuild index 9bd729c8519e..3a975edc8d59 100644 --- a/dev-lang/python-exec/python-exec-2.4.6-r2.ebuild +++ b/dev-lang/python-exec/python-exec-2.4.6-r2.ebuild @@ -21,7 +21,7 @@ src_configure() { local pyimpls=() i EPYTHON for i in "${_PYTHON_ALL_IMPLS[@]}"; do if use "python_targets_${i}"; then - python_export "${i}" EPYTHON + _python_export "${i}" EPYTHON pyimpls+=( "${EPYTHON}" ) fi done diff --git a/dev-lang/python-exec/python-exec-2.4.6-r3.ebuild b/dev-lang/python-exec/python-exec-2.4.6-r3.ebuild index d049c3fb76dc..6869fd24d057 100644 --- a/dev-lang/python-exec/python-exec-2.4.6-r3.ebuild +++ b/dev-lang/python-exec/python-exec-2.4.6-r3.ebuild @@ -21,7 +21,7 @@ src_configure() { local pyimpls=() i EPYTHON for i in "${_PYTHON_ALL_IMPLS[@]}"; do if use "python_targets_${i}"; then - python_export "${i}" EPYTHON + _python_export "${i}" EPYTHON pyimpls+=( "${EPYTHON}" ) fi done diff --git a/dev-lang/swi-prolog/Manifest b/dev-lang/swi-prolog/Manifest index c6c0a547138b..925e578e8eb0 100644 --- a/dev-lang/swi-prolog/Manifest +++ b/dev-lang/swi-prolog/Manifest @@ -1,3 +1,5 @@ DIST swipl-8.2.1.tar.gz 10969688 BLAKE2B 754678d9683999b681e62321423df01c4d28ac0aefb5b836134790112a76a2710cc3b433d381f4b11756727037cada026a2778445fe533f51a5543332ca86e82 SHA512 b49fa0832b4bad3b48256c97538172a06e7a4c50b55823dad345360f98055f0702e7a10fb2bfdb636e3fd99557bcb243cfccbaccb7546cb2afd13335f1c09db8 +DIST swipl-8.2.2.tar.gz 11002077 BLAKE2B 581c3ea83d2440cbe2454ba12ea2752bec9fda926f3afef6e36de1bbf70b43b34931ad768335bb15809a3d76959c7eec7dd3ad54a0a4085ad8ba34075dd3f4d9 SHA512 fb77cfd58932dc35c3d808899c1f493ffb22a58f56fe364ce0c0b48b8cabdd204d4f920346c39f696fadd9ee8335e163a8eb8d0a770c2835d803f030c1f3f878 +DIST swipl-8.3.10.tar.gz 11095901 BLAKE2B ff695f3a9ed77b8062c8e19fe0f099b3fe1a2ed84beacd965f133d2fa4c2b873ce95d0af6a71a9c5f8c8033b6026e72585ad36dbd7537cb90c5bd98bf852cff7 SHA512 f34e53df42ba3cfdce6be96a2c5dba9ecd0a938f1df9824522c852d8d1b7e42e1de96cebd7c988d9e9091a12cfc791f3916e198e8bb08e8798fc8b196c48058d DIST swipl-8.3.8.tar.gz 11029755 BLAKE2B 7b97ed8b6cb391bf87eb6d7561b7f1f5d86dfe54b233dabd77c46b9c9f51148e9623e6d474be77ae1c004885895da9d2a9acf20dc4cd9697df500a2682294a8c SHA512 80b2e1a9e9d435b5ab061773a389b66eda2089dcc5ac617869532d5bd4fdd84e842c294e0e2d81f24330842ad58af1e66e54baa0cf91115db4808959331ca444 DIST swipl-8.3.9.tar.gz 11066799 BLAKE2B c891fd19ddeab5c21eaf3418d13714adb47d2d0ff29f00edd46eaded37637779cf325a9a93e9e902cabfb278d5e90b37de335f54667341d31373b1a8affb78b2 SHA512 b4b12b6337b4f92e9a1503189601be7aa574882d420558d167e1c90b257b69d2e64de2aae7aa6074d6ee51bae2eda4ed40c8a977e651c7c7eb5c084fd674769a diff --git a/dev-lang/swi-prolog/swi-prolog-8.2.2.ebuild b/dev-lang/swi-prolog/swi-prolog-8.2.2.ebuild new file mode 100644 index 000000000000..236f4baaec6a --- /dev/null +++ b/dev-lang/swi-prolog/swi-prolog-8.2.2.ebuild @@ -0,0 +1,104 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake-utils eutils flag-o-matic multilib + +PATCHSET_VER="0" + +DESCRIPTION="versatile implementation of the Prolog programming language" +HOMEPAGE="https://www.swi-prolog.org/" +SRC_URI="https://www.swi-prolog.org/download/stable/src/swipl-${PV}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="archive berkdb debug doc +gmp java +libedit libressl minimal odbc pcre qt5 readline ssl test uuid X yaml" +RESTRICT="!test? ( test )" + +RDEPEND="sys-libs/ncurses:= + sys-libs/zlib + archive? ( app-arch/libarchive ) + berkdb? ( >=sys-libs/db-4:= ) + odbc? ( dev-db/unixODBC ) + pcre? ( dev-libs/libpcre ) + readline? ( sys-libs/readline:= ) + libedit? ( dev-libs/libedit ) + gmp? ( dev-libs/gmp:0 ) + ssl? ( + !libressl? ( dev-libs/openssl:0 ) + libressl? ( dev-libs/libressl ) + ) + java? ( >=virtual/jdk-1.7:= ) + uuid? ( dev-libs/ossp-uuid ) + qt5? ( + dev-qt/qtwidgets:5 + dev-qt/qtgui:5 + ) + X? ( + virtual/jpeg:0 + x11-libs/libX11 + x11-libs/libXft + x11-libs/libXinerama + x11-libs/libXpm + x11-libs/libXt + x11-libs/libICE + x11-libs/libSM ) + yaml? ( dev-libs/libyaml )" + +DEPEND="${RDEPEND} + X? ( x11-base/xorg-proto ) + java? ( test? ( =dev-java/junit-3.8* ) )" + +S="${WORKDIR}/swipl-${PV}" +BUILD_DIR="${S}/build" +CMAKE_USE_DIR="${S}" + +src_prepare() { + if [[ -d "${WORKDIR}"/${PV} ]] ; then + eapply "${WORKDIR}"/${PV} + fi + eapply_user + + sed -i -e "s|\(SWIPL_INSTALL_PREFIX\) lib/.*)|\1 $(get_libdir)/swipl)|" CMakeLists.txt || die + sed -i -e "s|\(SWIPL_INSTALL_CMAKE_CONFIG_DIR\) lib/|\1 $(get_libdir)/|" CMakeLists.txt || die + + cmake-utils_src_prepare +} + +src_configure() { + append-flags -fno-strict-aliasing + use debug && append-flags -DO_DEBUG + + mycmakeargs=( + -DSWIPL_INSTALL_PREFIX=$(get_libdir)/swipl + -DUSE_GMP=$(usex gmp) + -DINSTALL_DOCUMENTATION=$(use doc && usex archive) + -DSWIPL_PACKAGES_BASIC=$(usex !minimal) + -DSWIPL_PACKAGES_ARCHIVE=$(usex archive) + -DSWIPL_PACKAGES_ODBC=$(usex odbc) + -DSWIPL_PACKAGES_BDB=$(usex berkdb) + -DSWIPL_PACKAGES_PCRE=$(usex pcre) + -DSWIPL_PACKAGES_YAML=$(usex yaml) + -DSWIPL_PACKAGES_SSL=$(usex ssl) + -DSWIPL_PACKAGES_JAVA=$(usex java) + -DSWIPL_PACKAGES_QT=$(usex qt5) + -DSWIPL_PACKAGES_X=$(usex X) + -DSWIPL_PACKAGES_TERM=$(if use libedit || use readline; then echo yes; else echo no; fi) + ) + + cmake-utils_src_configure +} + +src_compile() { + XDG_CONFIG_DIRS="${HOME}" \ + XDG_DATA_DIRS="${HOME}" \ + cmake-utils_src_compile +} + +src_test() { + USE_PUBLIC_NETWORK_TESTS=false \ + USE_ODBC_TESTS=false \ + cmake-utils_src_test -V +} diff --git a/dev-lang/swi-prolog/swi-prolog-8.3.10.ebuild b/dev-lang/swi-prolog/swi-prolog-8.3.10.ebuild new file mode 100644 index 000000000000..50482b3b3270 --- /dev/null +++ b/dev-lang/swi-prolog/swi-prolog-8.3.10.ebuild @@ -0,0 +1,104 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake-utils eutils flag-o-matic multilib + +PATCHSET_VER="0" + +DESCRIPTION="versatile implementation of the Prolog programming language" +HOMEPAGE="http://www.swi-prolog.org/" +SRC_URI="http://www.swi-prolog.org/download/devel/src/swipl-${PV}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="archive berkdb debug doc +gmp java +libedit libressl minimal odbc pcre qt5 readline ssl test uuid X yaml" +RESTRICT="!test? ( test )" + +RDEPEND="sys-libs/ncurses:= + sys-libs/zlib + archive? ( app-arch/libarchive ) + berkdb? ( >=sys-libs/db-4:= ) + odbc? ( dev-db/unixODBC ) + pcre? ( dev-libs/libpcre ) + readline? ( sys-libs/readline:= ) + libedit? ( dev-libs/libedit ) + gmp? ( dev-libs/gmp:0 ) + ssl? ( + !libressl? ( dev-libs/openssl:0 ) + libressl? ( dev-libs/libressl ) + ) + java? ( >=virtual/jdk-1.7:= ) + uuid? ( dev-libs/ossp-uuid ) + qt5? ( + dev-qt/qtwidgets:5 + dev-qt/qtgui:5 + ) + X? ( + virtual/jpeg:0 + x11-libs/libX11 + x11-libs/libXft + x11-libs/libXinerama + x11-libs/libXpm + x11-libs/libXt + x11-libs/libICE + x11-libs/libSM ) + yaml? ( dev-libs/libyaml )" + +DEPEND="${RDEPEND} + X? ( x11-base/xorg-proto ) + java? ( test? ( =dev-java/junit-3.8* ) )" + +S="${WORKDIR}/swipl-${PV}" +BUILD_DIR="${S}/build" +CMAKE_USE_DIR="${S}" + +src_prepare() { + if [[ -d "${WORKDIR}"/${PV} ]] ; then + eapply "${WORKDIR}"/${PV} + fi + eapply_user + + sed -i -e "s|\(SWIPL_INSTALL_PREFIX\) lib/.*)|\1 $(get_libdir)/swipl)|" CMakeLists.txt || die + sed -i -e "s|\(SWIPL_INSTALL_CMAKE_CONFIG_DIR\) lib/|\1 $(get_libdir)/|" CMakeLists.txt || die + + cmake-utils_src_prepare +} + +src_configure() { + append-flags -fno-strict-aliasing + use debug && append-flags -DO_DEBUG + + mycmakeargs=( + -DSWIPL_INSTALL_PREFIX=$(get_libdir)/swipl + -DUSE_GMP=$(usex gmp) + -DINSTALL_DOCUMENTATION=$(use doc && usex archive) + -DSWIPL_PACKAGES_BASIC=$(usex !minimal) + -DSWIPL_PACKAGES_ARCHIVE=$(usex archive) + -DSWIPL_PACKAGES_ODBC=$(usex odbc) + -DSWIPL_PACKAGES_BDB=$(usex berkdb) + -DSWIPL_PACKAGES_PCRE=$(usex pcre) + -DSWIPL_PACKAGES_YAML=$(usex yaml) + -DSWIPL_PACKAGES_SSL=$(usex ssl) + -DSWIPL_PACKAGES_JAVA=$(usex java) + -DSWIPL_PACKAGES_QT=$(usex qt5) + -DSWIPL_PACKAGES_X=$(usex X) + -DSWIPL_PACKAGES_TERM=$(if use libedit || use readline; then echo yes; else echo no; fi) + ) + + cmake-utils_src_configure +} + +src_compile() { + XDG_CONFIG_DIRS="${HOME}" \ + XDG_DATA_DIRS="${HOME}" \ + cmake-utils_src_compile +} + +src_test() { + USE_PUBLIC_NETWORK_TESTS=false \ + USE_ODBC_TESTS=false \ + cmake-utils_src_test -V +} diff --git a/dev-libs/Manifest.gz b/dev-libs/Manifest.gz index 856ac077d63c..a02c8b8823b1 100644 Binary files a/dev-libs/Manifest.gz and b/dev-libs/Manifest.gz differ diff --git a/dev-libs/elfutils/elfutils-0.182.ebuild b/dev-libs/elfutils/elfutils-0.182.ebuild index 68be535a8605..96be6b7bd236 100644 --- a/dev-libs/elfutils/elfutils-0.182.ebuild +++ b/dev-libs/elfutils/elfutils-0.182.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://sourceware.org/elfutils/ftp/${PV}/${P}.tar.bz2" LICENSE="|| ( GPL-2+ LGPL-3+ ) utils? ( GPL-3+ )" SLOT="0" -KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" IUSE="bzip2 lzma nls static-libs test +threads +utils valgrind zstd" RDEPEND=">=sys-libs/zlib-1.2.8-r1[static-libs?,${MULTILIB_USEDEP}] diff --git a/dev-libs/inih/Manifest b/dev-libs/inih/Manifest index cbef149096ed..c1568bd6205f 100644 --- a/dev-libs/inih/Manifest +++ b/dev-libs/inih/Manifest @@ -1 +1,2 @@ DIST inih-51.tar.gz 16258 BLAKE2B 91a5aee6e0ecadf949fbf0b58bd2596bcb985c76fc9000a671d65cb5325c51dbb8bd945ccd7721b72dafafd11c70a9c84ad910768d0fc479e5491db8b7aacbd8 SHA512 eb2f58979d93e51a09326e6c187828643887ac1a239d4b12205567c7d87a671c9c49ca99db376c031d366bc680e579c30dcea9f3eb130ec802597411b2cb3cf4 +DIST inih-52.tar.gz 16808 BLAKE2B 12d4078ad7b6a4013ea77239c486fb7b5e9165252d4a67ee57d60fc72a98f15ca537b610c7b22841cc660e46bb424aa5c9b7ed1cf2462600a2aa58d40447ba90 SHA512 14c0d0dbd78efc99bec8df12067107d130eef8b124e0616f7d83dc4e14530b57f0c8fcf0b8862d425b5a0b84d6c6a6bff7b3c852c9b2e2364ef56c8f64a1f339 diff --git a/dev-libs/inih/inih-52.ebuild b/dev-libs/inih/inih-52.ebuild new file mode 100644 index 000000000000..643c90ef2a42 --- /dev/null +++ b/dev-libs/inih/inih-52.ebuild @@ -0,0 +1,43 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit meson multilib-minimal + +DESCRIPTION="inih (INI not invented here) simple .INI file parser" +HOMEPAGE="https://github.com/benhoyt/inih" + +SRC_URI="https://github.com/benhoyt/inih/archive/r${PV}.tar.gz -> ${P}.tar.gz" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" + +LICENSE="BSD" +SLOT="0" + +S="${WORKDIR}/inih-r${PV}" + +multilib_src_configure() { + local emesonargs=( + -Ddefault_library=shared + -Ddistro_install=true + -Dwith_INIReader=true + ) + + meson_src_configure +} + +multilib_src_compile() { + meson_src_compile +} + +multilib_src_install() { + meson_src_install +} + +multilib_src_install_all() { + local DOCS=( + LICENSE.txt + README.md + ) + einstalldocs +} diff --git a/dev-libs/inih/metadata.xml b/dev-libs/inih/metadata.xml index 9aa6590570ff..6d0bdb811ca7 100644 --- a/dev-libs/inih/metadata.xml +++ b/dev-libs/inih/metadata.xml @@ -1,14 +1,14 @@ + + base-system@gentoo.org + Gentoo Base System + hurikhan77+bgo@gmail.com Kai Krakow - - proxy-maint@gentoo.org - Proxy Maintainers - https://github.com/benhoyt/inih/issues benhoyt/inih diff --git a/dev-libs/libressl/libressl-3.1.5.ebuild b/dev-libs/libressl/libressl-3.1.5.ebuild index 1df45e25a730..a925dfee996e 100644 --- a/dev-libs/libressl/libressl-3.1.5.ebuild +++ b/dev-libs/libressl/libressl-3.1.5.ebuild @@ -14,7 +14,7 @@ LICENSE="ISC openssl" # we'll try to use the max of either. However, if either change between # versions, we have to change the subslot to trigger rebuild of consumers. SLOT="0/48" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="+asm static-libs test" RESTRICT="!test? ( test )" REQUIRED_USE="test? ( static-libs )" diff --git a/dev-libs/libusb/Manifest b/dev-libs/libusb/Manifest index e3eef8d11747..12381aa27ff1 100644 --- a/dev-libs/libusb/Manifest +++ b/dev-libs/libusb/Manifest @@ -1,4 +1,2 @@ -DIST libusb-1.0.19.tar.bz2 521496 BLAKE2B 9f38dcb8f053019511dc2eed93772183c5487917794abd2839e981924bf05e39aba5cee4fb9a366b78e4d265fb16a921fb64c9a083323993ce21543d37073720 SHA512 f42f0187bfec16ebabad64efef7a7651ee85dcf2af1b7cbe543b7de615f9c6432f7eea5fcc6b23335591dcad287c905eb9bd56199cc5d3b47435027ad678f2c1 -DIST libusb-1.0.21.tar.bz2 607417 BLAKE2B c76352a19f416ad27b8940e99f38878e248cdbc04ef97752f8c8468ab0391869ab611197e3e143d69e0e23563da59f1691c14fce72958fdf28ebf10dd8c1521b SHA512 015ca07bdb559aa40af5db1302ab0b1c8a30d593699fe2f3c9f45162673dc7b608cecc58d60fde8f3bde2a68370794a045e8efa48fc55402eece11261e525762 -DIST libusb-1.0.22.tar.bz2 598833 BLAKE2B 38d01c1dd1837434c24008151a27cdfb2b2e9aab30fe95e4403bad613a0147a13b9b029814e15520bcfc2c181b00e3c5cc1ffdc3a586a604190bf441d3c89318 SHA512 2a93ba48bb66b9775838c16d74f7269348d9bc163f94ccf2842d1108d95a41cf79f8c8065233bea410fb94261a462dbb08ecfa1a9b6d3ddf4a5980e6043f74f4 DIST libusb-1.0.23.tar.bz2 602860 BLAKE2B 4eaf8cce0047b85c3057c67b53769739c50a39c4d34e94659b030fb11f02309f9217e93d35d78f699c55256346cf8b14827c8ddf495caeeacc522c51f473abc2 SHA512 73430ad31dd405e76a9c6c55086961003989c44964e2735b5076f9ca849e3f6fe71d10a66b74b111f0c34a0d2cb744b9ca105863c552123fce4ec0bbdd2ec15b +DIST libusb-1.0.24.tar.bz2 606593 BLAKE2B f6188b5af1225cf8b6d1486b6efcf48e837ee4f2e3592adab3ae6aae0a74a67aa54f40f0dd547f951a194d40954f2ee33acf741d2eee0b8449ce64f2edcf1018 SHA512 5aea36a530aaa15c6dd656d0ed3ce204522c9946d8d39ffbb290dab4a98cda388a2598da4995123d1032324056090bd429e702459626d3e8d7daeebc4e7ff3dc diff --git a/dev-libs/libusb/libusb-1.0.19-r1.ebuild b/dev-libs/libusb/libusb-1.0.19-r1.ebuild deleted file mode 100644 index 3aa756f257a5..000000000000 --- a/dev-libs/libusb/libusb-1.0.19-r1.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit multilib-minimal toolchain-funcs usr-ldscript - -DESCRIPTION="Userspace access to USB devices" -HOMEPAGE="https://libusb.info/ https://github.com/libusb/libusb" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" - -LICENSE="LGPL-2.1" -SLOT="1" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" -IUSE="debug doc examples static-libs test udev" -RESTRICT="!test? ( test )" - -RDEPEND="udev? ( >=virtual/libudev-208:=[${MULTILIB_USEDEP},static-libs(-)?] )" -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen ) - !udev? ( virtual/os-headers )" - -multilib_src_configure() { - ECONF_SOURCE=${S} \ - econf \ - $(use_enable static-libs static) \ - $(use_enable udev) \ - $(use_enable debug debug-log) \ - $(use_enable test tests-build) -} - -multilib_src_compile() { - emake - - if multilib_is_native_abi; then - use doc && emake -C doc docs - fi -} - -multilib_src_test() { - emake check - - # noinst_PROGRAMS from tests/Makefile.am - tests/stress || die -} - -multilib_src_install() { - emake DESTDIR="${D}" install - - if multilib_is_native_abi; then - gen_usr_ldscript -a usb-1.0 - - use doc && dohtml doc/html/* - fi -} - -multilib_src_install_all() { - find "${ED}" -name '*.la' -delete || die - - dodoc AUTHORS ChangeLog NEWS PORTING README TODO - - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins examples/*.{c,h} - insinto /usr/share/doc/${PF}/examples/getopt - doins examples/getopt/*.{c,h} - fi -} diff --git a/dev-libs/libusb/libusb-1.0.21-r1.ebuild b/dev-libs/libusb/libusb-1.0.21-r1.ebuild deleted file mode 100644 index 09e8498e73f1..000000000000 --- a/dev-libs/libusb/libusb-1.0.21-r1.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit multilib-minimal toolchain-funcs usr-ldscript - -DESCRIPTION="Userspace access to USB devices" -HOMEPAGE="https://libusb.info/ https://github.com/libusb/libusb" -SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.bz2" - -LICENSE="LGPL-2.1" -SLOT="1" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" -IUSE="debug doc examples static-libs test udev" -RESTRICT="!test? ( test )" - -RDEPEND="udev? ( >=virtual/libudev-208:=[${MULTILIB_USEDEP},static-libs(-)?] )" -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen ) - !udev? ( virtual/os-headers )" - -multilib_src_configure() { - ECONF_SOURCE=${S} \ - econf \ - $(use_enable static-libs static) \ - $(use_enable udev) \ - $(use_enable debug debug-log) \ - $(use_enable test tests-build) -} - -multilib_src_compile() { - emake - - if multilib_is_native_abi; then - use doc && emake -C doc docs - fi -} - -multilib_src_test() { - emake check - - # noinst_PROGRAMS from tests/Makefile.am - tests/stress || die -} - -multilib_src_install() { - emake DESTDIR="${D}" install - - if multilib_is_native_abi; then - gen_usr_ldscript -a usb-1.0 - - use doc && dohtml doc/html/* - fi -} - -multilib_src_install_all() { - find "${ED}" -name '*.la' -delete || die - - dodoc AUTHORS ChangeLog NEWS PORTING README TODO - - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins examples/*.{c,h} - insinto /usr/share/doc/${PF}/examples/getopt - doins examples/getopt/*.{c,h} - fi -} diff --git a/dev-libs/libusb/libusb-1.0.23-r1.ebuild b/dev-libs/libusb/libusb-1.0.23-r1.ebuild index 565cbb6a7d73..283daa606605 100644 --- a/dev-libs/libusb/libusb-1.0.23-r1.ebuild +++ b/dev-libs/libusb/libusb-1.0.23-r1.ebuild @@ -60,9 +60,9 @@ multilib_src_install_all() { dodoc AUTHORS ChangeLog NEWS PORTING README TODO if use examples; then - insinto /usr/share/doc/${PF}/examples - doins examples/*.{c,h} - insinto /usr/share/doc/${PF}/examples/getopt - doins examples/getopt/*.{c,h} + docinto examples + dodoc examples/*.{c,h} + docinto examples/getopt + dodoc examples/getopt/*.{c,h} fi } diff --git a/dev-libs/libusb/libusb-1.0.22.ebuild b/dev-libs/libusb/libusb-1.0.24.ebuild similarity index 66% rename from dev-libs/libusb/libusb-1.0.22.ebuild rename to dev-libs/libusb/libusb-1.0.24.ebuild index 8627f3050dad..f7e9ec91ac72 100644 --- a/dev-libs/libusb/libusb-1.0.22.ebuild +++ b/dev-libs/libusb/libusb-1.0.24.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 -inherit ltprune toolchain-funcs multilib-minimal usr-ldscript +EAPI=7 +inherit toolchain-funcs multilib-minimal usr-ldscript DESCRIPTION="Userspace access to USB devices" HOMEPAGE="https://libusb.info/ https://github.com/libusb/libusb" @@ -10,22 +10,23 @@ SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.bz2" LICENSE="LGPL-2.1" SLOT="1" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="debug doc examples static-libs test udev" RESTRICT="!test? ( test )" RDEPEND="udev? ( >=virtual/libudev-208:=[${MULTILIB_USEDEP},static-libs(-)?] )" DEPEND="${RDEPEND} - doc? ( app-doc/doxygen ) !udev? ( virtual/os-headers )" +BDEPEND="doc? ( app-doc/doxygen )" multilib_src_configure() { - ECONF_SOURCE=${S} \ - econf \ - $(use_enable static-libs static) \ - $(use_enable udev) \ - $(use_enable debug debug-log) \ + local myeconfargs=( + $(use_enable static-libs static) + $(use_enable udev) + $(use_enable debug debug-log) $(use_enable test tests-build) + ) + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" } multilib_src_compile() { @@ -54,14 +55,12 @@ multilib_src_install() { } multilib_src_install_all() { - prune_libtool_files + find "${ED}" -type f -name "*.la" -delete || die dodoc AUTHORS ChangeLog NEWS PORTING README TODO if use examples; then - insinto /usr/share/doc/${PF}/examples - doins examples/*.{c,h} - insinto /usr/share/doc/${PF}/examples/getopt - doins examples/getopt/*.{c,h} + docinto examples + dodoc examples/*.{c,h} fi } diff --git a/dev-libs/openssl/openssl-1.1.1i.ebuild b/dev-libs/openssl/openssl-1.1.1i.ebuild index 52fa5d828e31..77fb15f30271 100644 --- a/dev-libs/openssl/openssl-1.1.1i.ebuild +++ b/dev-libs/openssl/openssl-1.1.1i.ebuild @@ -27,7 +27,7 @@ SRC_URI="mirror://openssl/source/${MY_P}.tar.gz LICENSE="openssl" SLOT="0/1.1" # .so version of libssl/libcrypto [[ "${PV}" = *_pre* ]] || \ -KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 ~x86-linux" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x86-linux" IUSE="+asm bindist elibc_musl rfc3779 sctp cpu_flags_x86_sse2 sslv3 static-libs test tls-heartbeat vanilla zlib" RESTRICT="!bindist? ( bindist ) !test? ( test )" diff --git a/dev-libs/zziplib/zziplib-0.13.71_p20201021.ebuild b/dev-libs/zziplib/zziplib-0.13.71_p20201021.ebuild index 5422a0631a72..4f0b2fe07aaf 100644 --- a/dev-libs/zziplib/zziplib-0.13.71_p20201021.ebuild +++ b/dev-libs/zziplib/zziplib-0.13.71_p20201021.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/gdraheim/${PN}/archive/${MY_COMMIT}.tar.gz -> ${P}.t LICENSE="|| ( LGPL-2.1 MPL-1.1 )" SLOT="0/13" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="sdl static-libs" # Tests require internet access diff --git a/dev-perl/Alien-Base-ModuleBuild/Alien-Base-ModuleBuild-1.140.0.ebuild b/dev-perl/Alien-Base-ModuleBuild/Alien-Base-ModuleBuild-1.140.0.ebuild deleted file mode 100644 index 06221aeebc06..000000000000 --- a/dev-perl/Alien-Base-ModuleBuild/Alien-Base-ModuleBuild-1.140.0.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DIST_AUTHOR=PLICEASE -DIST_VERSION=1.14 -inherit perl-module - -DESCRIPTION="A Module::Build subclass for building Alien:: modules and their libraries" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -# Alien-Build for Alien::Base::PkgConfig -RDEPEND=" - >=dev-perl/Alien-Build-1.200.0 - dev-perl/Archive-Extract - >=virtual/perl-Archive-Tar-1.400.0 - >=dev-perl/Capture-Tiny-0.170.0 - >=dev-perl/File-chdir-0.100.500 - >=virtual/perl-HTTP-Tiny-0.44.0 - >=dev-perl/Module-Build-0.400.400 - >=dev-perl/Path-Tiny-0.77.0 - >=virtual/perl-Scalar-List-Utils-1.450.0 - dev-perl/Shell-Config-Generate - dev-perl/Shell-Guess - dev-perl/Sort-Versions - >=virtual/perl-Text-ParseWords-3.260.0 - dev-perl/URI - virtual/perl-parent - dev-perl/HTML-Parser - virtual/perl-JSON-PP -" -DEPEND=" - dev-perl/Module-Build -" -# Test2-Suite for Test2::Require::Module and Test2::V0 -BDEPEND=" - ${RDEPEND} - test? ( - >=dev-perl/Test2-Suite-0.0.60 - ) -" diff --git a/dev-perl/Alien-Base-ModuleBuild/Manifest b/dev-perl/Alien-Base-ModuleBuild/Manifest index ace0d5575108..fe0d077f0127 100644 --- a/dev-perl/Alien-Base-ModuleBuild/Manifest +++ b/dev-perl/Alien-Base-ModuleBuild/Manifest @@ -1,2 +1 @@ -DIST Alien-Base-ModuleBuild-1.14.tar.gz 62072 BLAKE2B 64a94621b36b13ad32861c228e787ca44ae8fbec5f1a2fcd65ade8188c44021dbca45fc7f62aa390d10920f670779511ceb96f214b41c4cce2a6424a0f72b47e SHA512 6fcfb7e5525972d5ca565441717143b036ed9c4079700426df2e96d76a91baeaf103ac406a8fa86dfd820929041525d7bb66c32762258cfb7752fb7634171fbf DIST Alien-Base-ModuleBuild-1.15.tar.gz 63870 BLAKE2B dc89d63c31cfe618db58cc11c17190b8e881efa3b245c5bb81a99f4c4263a621747579ea5313f646b171bf7446261b01aa2eda45b81ee0a6ef6cb16c5c4092d2 SHA512 6aa366c9748c8470abef2597684bdd68edb952ec9e8f36e31741a3376bd96aea7cd62caeea47a5ff0fb205f6d2087a63a20baf4767f87321fd54dda2727e1a70 diff --git a/dev-perl/Alien-Build/Alien-Build-2.280.0.ebuild b/dev-perl/Alien-Build/Alien-Build-2.280.0.ebuild deleted file mode 100644 index 2a7aaf87c327..000000000000 --- a/dev-perl/Alien-Build/Alien-Build-2.280.0.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DIST_AUTHOR=PLICEASE -DIST_VERSION=2.28 -DIST_EXAMPLES=("example/*") -inherit perl-module - -DESCRIPTION="Build external dependencies for use in CPAN" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" -IUSE="test zip" -RESTRICT="!test? ( test )" - -# No, pkgconfig is not suspect, it actually uses it at runtime, and this module -# is somewhat a wrapper for pkgconfig :/ -RDEPEND=" - zip? ( dev-perl/Archive-Zip ) - virtual/perl-Archive-Tar - >=dev-perl/Capture-Tiny-0.170.0 - virtual/perl-ExtUtils-CBuilder - >=virtual/perl-ExtUtils-MakeMaker-6.640.0 - >=virtual/perl-ExtUtils-ParseXS-3.300.0 - >=dev-perl/FFI-CheckLib-0.110.0 - >=dev-perl/File-Which-1.100.0 - dev-perl/File-chdir - virtual/perl-JSON-PP - >=dev-perl/Path-Tiny-0.77.0 - >=virtual/perl-Scalar-List-Utils-1.330.0 - >=virtual/perl-Test-Simple-1.302.96 - >=virtual/perl-Text-ParseWords-3.260.0 - virtual/pkgconfig -" -BDEPEND="${RDEPEND} - test? ( - dev-perl/Devel-Hide - >=dev-perl/Test2-Suite-0.0.60 - ) -" diff --git a/dev-perl/Alien-Build/Alien-Build-2.290.0.ebuild b/dev-perl/Alien-Build/Alien-Build-2.290.0.ebuild deleted file mode 100644 index 8abba72db046..000000000000 --- a/dev-perl/Alien-Build/Alien-Build-2.290.0.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DIST_AUTHOR=PLICEASE -DIST_VERSION=2.29 -DIST_EXAMPLES=("example/*") -inherit perl-module - -DESCRIPTION="Build external dependencies for use in CPAN" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" -IUSE="minimal test zip" -RESTRICT="!test? ( test )" - -# No, pkgconfig is not suspect, it actually uses it at runtime, and this module -# is somewhat a wrapper for pkgconfig :/ -RDEPEND=" - zip? ( dev-perl/Archive-Zip ) - virtual/perl-Archive-Tar - >=dev-perl/Capture-Tiny-0.170.0 - virtual/perl-ExtUtils-CBuilder - >=virtual/perl-ExtUtils-MakeMaker-6.640.0 - >=virtual/perl-ExtUtils-ParseXS-3.300.0 - >=dev-perl/FFI-CheckLib-0.110.0 - >=dev-perl/File-Which-1.100.0 - dev-perl/File-chdir - virtual/perl-JSON-PP - >=dev-perl/Path-Tiny-0.77.0 - >=virtual/perl-Scalar-List-Utils-1.330.0 - >=virtual/perl-Test-Simple-1.302.96 - >=virtual/perl-Text-ParseWords-3.260.0 - virtual/pkgconfig -" -BDEPEND="${RDEPEND} - test? ( - dev-perl/Devel-Hide - >=dev-perl/Test2-Suite-0.0.60 - !minimal? ( - dev-perl/Alien-Base-ModuleBuild - dev-perl/Sort-Versions - ) - ) -" -src_prepare() { - unset LD - [[ -n "${CCLD}" ]] && export LD="${CCLD}" - perl-module_src_prepare -} diff --git a/dev-perl/Alien-Build/Manifest b/dev-perl/Alien-Build/Manifest index a82fa9dd6e77..804363a03833 100644 --- a/dev-perl/Alien-Build/Manifest +++ b/dev-perl/Alien-Build/Manifest @@ -1,5 +1,3 @@ DIST Alien-Build-2.23.tar.gz 310744 BLAKE2B 3bf3ce08be1e508a5eb695cc3ee71ccb70230c3fa0feb3e4378bbba35b7429ab3b852692ea4492e9aa80fdb962ef1fef7e82b654bbf8e8ca2428aa8f999944b8 SHA512 78a9b710dde488ce0852266340104f7b540e94ea58e8715d27e1e303a67956f862110bbd305119ac08fe9c5a20c0e5cc6fa5b6982abf830910f2d3a1ed9963fa -DIST Alien-Build-2.28.tar.gz 314626 BLAKE2B c37bf00f937a1390ba3e35b1a26b676d72b20e0849cbad954e54c04693f1d677aa225be790cd4c68a7df3042c4b2759f8d3a097cbf8480170f1e93327876f765 SHA512 3fe1b0536bce723b925345dad2993b4d8a128d873476ab307d4f06d5ee6ac28f96f07a85345deda2af6cee2f4305f4ff7886ca97bf2ffe1ff05a7e1098784966 -DIST Alien-Build-2.29.tar.gz 313997 BLAKE2B 2a72d07efa899f5d2314db5fffadfbc304db4105dcca1f0f30557d4bbe292c902deca3d064f7909fc84cf9df9f88c6eb6d3b51225ad6d8ccae0cd1e7dbf52ba0 SHA512 7e6ad1695fcfc9ff98764e77a87014a6617c0e27f427d26f70a7fe0daa379963f73fe16e9993de87540e71070e696345bec41fc21c0e7003a144d94413a8522d DIST Alien-Build-2.32.tar.gz 327696 BLAKE2B 9f0f2d31f6d3b2660ae4001ce1285bdf0a4eab6f542ad7e9165652302c645b5444e75aae65de2c24d79eb293615fd00fc61691d4db76be13dc8d48466a93a7ba SHA512 5c9c66076c7c6f30535401aea588a85ca51282df74f1bb4f4b21bff1aaea0d74220b278a123a00adc74c21a1aa528966db01a77f4783bd8aeea894fe97349d43 DIST Alien-Build-2.33.tar.gz 328283 BLAKE2B 2b793a65fdf08bb767cf96fd4e8eac2d56a7db46d15c87815c30247e26a2ce9bc44f5cf0f3ccf3c335e43b58182539a2b9858013fa32b37fc53c7c7a789e1219 SHA512 a3ce1f15480ef3bec902d7833651d618f0e8676b36ab65f034eb0699a44cc8376aeb2e32f1dac97f7c499aacd2f6464f21d3edc4b00301e8bef4235f9f4fd572 diff --git a/dev-perl/BZ-Client/BZ-Client-4.400.200.ebuild b/dev-perl/BZ-Client/BZ-Client-4.400.200.ebuild deleted file mode 100644 index 7942e5f1e9a4..000000000000 --- a/dev-perl/BZ-Client/BZ-Client-4.400.200.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DIST_AUTHOR=DJZORT -DIST_VERSION=4.4002 -DIST_EXAMPLES=("eg/*") -inherit perl-module - -DESCRIPTION="A client for the Bugzilla web services API." - -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-perl/DateTime-Format-ISO8601 - dev-perl/DateTime-Format-Strptime - dev-perl/DateTime-TimeZone - virtual/perl-Encode - virtual/perl-File-Spec - dev-perl/HTTP-CookieJar - virtual/perl-HTTP-Tiny - virtual/perl-MIME-Base64 - dev-perl/URI - dev-perl/XML-Parser - dev-perl/XML-Writer - virtual/perl-parent -" -DEPEND="${RDEPEND} - >=dev-perl/Module-Build-0.280.0 - virtual/perl-ExtUtils-MakeMaker - test? ( - >=virtual/perl-CPAN-Meta-2.120.900 - dev-perl/Clone - virtual/perl-Data-Dumper - dev-perl/DateTime - dev-perl/IO-Socket-SSL - dev-perl/Test-RequiresInternet - virtual/perl-Test-Simple - dev-perl/Text-Password-Pronounceable - ) -" - -src_test() { - has network ${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}} && export TEST_AUTHOR=1 - perl_rm_files t/author-* t/release-* - perl-module_src_test -} diff --git a/dev-perl/BZ-Client/Manifest b/dev-perl/BZ-Client/Manifest index 24108cace5e9..f69988498d56 100644 --- a/dev-perl/BZ-Client/Manifest +++ b/dev-perl/BZ-Client/Manifest @@ -1,2 +1 @@ -DIST BZ-Client-4.4002.tar.gz 83998 BLAKE2B 8e18709a8996d036cf64a3f3dd735ed1c0bce00b0ef4e1e930f2d6c09c14fd02b28c92803c98c8d17c27f6287ee03b4b0f9c28df800ed57988d16a1bef570dc9 SHA512 7027554b423c114396d338a6f477f5f8c36077735e3586ee293ce1a4beed189479b9c33554f8af1532e096b5b3b9a0720efbe4390392ebd503af70ce2ec3844d DIST BZ-Client-4.4003.tar.gz 85579 BLAKE2B d9310fd594d3a0a19ee9e08b047efbc89ee36e1d0c8a25f79f9dd3f4de661f7cfd1de27d1017a6cabcb356362b27ba2c9cc5c908dc43c6e43b52b7eeb16e3b15 SHA512 d4b8bb4de96ca40f37f0ab6576095341cd3c7be41d6d4bdfd88f7b25de8ce77130a1736ea4e577f57186191cee2eeff6131fe107a0cb56e9439f4258fb560432 diff --git a/dev-perl/BerkeleyDB/BerkeleyDB-0.630.0-r2.ebuild b/dev-perl/BerkeleyDB/BerkeleyDB-0.630.0-r2.ebuild deleted file mode 100644 index 8a644c1a2e6f..000000000000 --- a/dev-perl/BerkeleyDB/BerkeleyDB-0.630.0-r2.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DIST_AUTHOR=PMQS -DIST_VERSION=0.63 -inherit perl-module db-use multilib - -DESCRIPTION="This module provides Berkeley DB interface for Perl" - -SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" - -# Install DB_File if you want older support. BerkleyDB no longer -# supports less than 2.0. - -RDEPEND=" - >=sys-libs/db-2.0:= - "${S}"/config.in || die "Can't write config.in" - - perl-module_src_prepare -} -src_compile() { - mymake=( - "OPTIMIZE=${CFLAGS}" - ) - perl-module_src_compile -} diff --git a/dev-perl/BerkeleyDB/Manifest b/dev-perl/BerkeleyDB/Manifest index 7932e263230a..53bbe9454e6a 100644 --- a/dev-perl/BerkeleyDB/Manifest +++ b/dev-perl/BerkeleyDB/Manifest @@ -1,3 +1,2 @@ DIST BerkeleyDB-0.55.tar.gz 203318 BLAKE2B 65118bacdb7b597a7f006a341916b21cd4b4d4602e56854fc4d04aa53f995365b4da44ea95a6e0472f5540f74eab46b83c56bb1c9cf8a51779260a6f4746ddd5 SHA512 a9bee92b0168918eaf6fb38b7b66005cfbb360ce89a9ae9feeb022e3d27fa7e627412b5c19233840571ed60568729d4bd83d279f84a0c7db921b8eed9f73afea -DIST BerkeleyDB-0.63.tar.gz 208324 BLAKE2B e13f9e4a7993a09ff60378cf19c7baba925850b1996873727f7659787111a9b437b022653329e18e94dead7c29ff0da9ee79d3a67adf2afcc8cdaa02d689c127 SHA512 43edf4eb3650e7b03dfc45ead834ea766d458cf3bc9b6405646142ad0ab223bdb3267815be5a92ddbf3958e5507d39f193d749d9ff6fe83a3beb9e02e8f6c66b DIST BerkeleyDB-0.64.tar.gz 259656 BLAKE2B 5136c632a7385a7d7866b59b75ba32d3bcd6fc660d7c1d54edba868db831bee2ce5162117d7941793cda1e31b22fa17d624a84ae377348d8dc2c5255016bf714 SHA512 368f89bb12e209ed6f0d1367875739813bfec85f4c10f0ffd7260d5be97bbd758af517133977f1e8f43c1d9b04d6b5dd9696ae1de1d544d9682b1f6bacfe3e85 diff --git a/dev-perl/CGI/CGI-4.500.0.ebuild b/dev-perl/CGI/CGI-4.500.0.ebuild deleted file mode 100644 index b6385de63a0b..000000000000 --- a/dev-perl/CGI/CGI-4.500.0.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DIST_AUTHOR=LEEJO -DIST_VERSION=4.50 -DIST_EXAMPLES=("examples/*") -inherit perl-module - -DESCRIPTION="Simple Common Gateway Interface Class" -LICENSE="Artistic-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - virtual/perl-Carp - virtual/perl-Encode - virtual/perl-Exporter - >=virtual/perl-File-Spec-0.820.0 - >=virtual/perl-File-Temp-0.170.0 - >=dev-perl/HTML-Parser-3.690.0 - virtual/perl-if - >=virtual/perl-parent-0.225.0 -" -BDEPEND="${RDEPEND} - virtual/perl-ExtUtils-MakeMaker - test? ( - virtual/perl-IO - >=dev-perl/Test-Deep-0.110.0 - dev-perl/Test-NoWarnings - >=virtual/perl-Test-Simple-0.980.0 - >=dev-perl/Test-Warn-0.300.0 - ) -" -PERL_RM_FILES=( "t/compiles_pod.t" "t/changes.t" ) diff --git a/dev-perl/CGI/Manifest b/dev-perl/CGI/Manifest index 55cf9dee5a74..43f570de860e 100644 --- a/dev-perl/CGI/Manifest +++ b/dev-perl/CGI/Manifest @@ -1,3 +1,2 @@ DIST CGI-4.47.tar.gz 204940 BLAKE2B fa0c4492b19543061403ff65be0d304fe166ece4cdfdb19c9c55de391001add2c03bd4c99019ddeae1b2fc70009a5419de8baa7159548f237351572d11c9c004 SHA512 1f46c15071254a691781a93cfdaed62da01486bb32d68ef6999ad1aa6f8b631452fad4aa95fdf8ce63a7314023853f01fddfb9aabf3f49460d174d118136822d -DIST CGI-4.50.tar.gz 205316 BLAKE2B 7b6fe005545e2a3f9a0218f4bb3fc7f6acea879c87118675f72db5f7db78b0bd84788493199e94d2bfadcd07650dfed72c85d0db69ba1210bd3b372e19fb2cab SHA512 c8f898404ef8fb341ea741229939748b82ca94b231591b67f29ca2f06cfbab363653753289a795a2eb0b0a145eafc8e8a303e92fd90795071b123e0fb8cb79c6 DIST CGI-4.51.tar.gz 205366 BLAKE2B 1fd76c82610ad1b017f19bd055bbf4a533f96e385891c53832a7e43f4c8d5fc74ed81a6e86e4e44443ce666bf30a7354b06f808d2c68e65c0fea75b2ce5fb7b8 SHA512 1ff69bf78c346142f0355e816fae18c69eb57504c2fc06738f2d26b97adee7cee1df2b4b2246ae72532e769a613aea6d6f7027956066a0c12354658e62a98e5d diff --git a/dev-perl/CPAN-Perl-Releases/CPAN-Perl-Releases-5.202.8.200.ebuild b/dev-perl/CPAN-Perl-Releases/CPAN-Perl-Releases-5.202.8.200.ebuild deleted file mode 100644 index aa5a3fef128f..000000000000 --- a/dev-perl/CPAN-Perl-Releases/CPAN-Perl-Releases-5.202.8.200.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DIST_AUTHOR=BINGOS -DIST_VERSION=5.20200820 -inherit perl-module - -DESCRIPTION="Mapping Perl releases on CPAN to the location of the tarballs" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -BDEPEND=" - virtual/perl-ExtUtils-MakeMaker - test? ( - virtual/perl-File-Spec - virtual/perl-IO - >=virtual/perl-Test-Simple-0.470.0 - ) -" -PERL_RM_FILES=( "t/author-pod-coverage.t" "t/author-pod-syntax.t" ) diff --git a/dev-perl/CPAN-Perl-Releases/Manifest b/dev-perl/CPAN-Perl-Releases/Manifest index bdab0ee26eb4..807299b180e5 100644 --- a/dev-perl/CPAN-Perl-Releases/Manifest +++ b/dev-perl/CPAN-Perl-Releases/Manifest @@ -1,3 +1,2 @@ DIST CPAN-Perl-Releases-5.20200428.tar.gz 23709 BLAKE2B 0ef30b30e482884d6a18d78402a7ead872ff8a0100723921e8b1e39d851af7c2dc432d5033b7524afa44cfdca87fdd8d8d9f5cc70d88df723a8bbd2962571079 SHA512 44ea58bd29d3db8715c92a1d1e5953a5a185669a08d5f01bd36a695ef8687c9fcf08a399a2d52a84c214f0b4dceaf829030fc17d29b6663bc50f9abb89378c9b -DIST CPAN-Perl-Releases-5.20200820.tar.gz 23732 BLAKE2B 2064dfd1260e990361c9f7bf9ad43c579e01480c994c6e2d654a9d9e262b1fbad77bf809e0bc58d8e6e92f889af6564e3d95f783bbc5833bae7faa90bb73b3d4 SHA512 1fbfdf32cc261803a435825320672736a906e8d4dc1997e8c424931c04fd686e162cf368bf9ed7d9c4cefc2140569357fe8e30c10733f8a7694a56aec16d5d22 DIST CPAN-Perl-Releases-5.20200920.tar.gz 23596 BLAKE2B abb354f1ff2f0e761223a2df39513abd10b9c409522b2f006ab8469db4d54df90d5dbed13496a907e3cb087a0a5bb01174ecd7ef3ee9d4be9614c4df1a1c3d50 SHA512 b6d28721e3941fba74eb3a377b9d25a896865b9b3aebc7ee476cebf894db999de79bcbad9091d5763c2e82594c9d5cc5c4dfae075d0525f085d7a5026f1db31a diff --git a/dev-perl/Config-AutoConf/Config-AutoConf-0.318.0.ebuild b/dev-perl/Config-AutoConf/Config-AutoConf-0.318.0.ebuild deleted file mode 100644 index f9e0bd5971af..000000000000 --- a/dev-perl/Config-AutoConf/Config-AutoConf-0.318.0.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DIST_AUTHOR=REHSACK -DIST_VERSION=0.318 - -inherit perl-module - -DESCRIPTION="A module to implement some of AutoConf macros in pure perl" - -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-perl/Capture-Tiny - virtual/perl-Carp - virtual/perl-Exporter - >=virtual/perl-ExtUtils-CBuilder-0.280.220 - dev-perl/File-Slurper - virtual/perl-File-Spec - virtual/perl-File-Temp - >=virtual/perl-Scalar-List-Utils-1.180.0 - virtual/perl-Text-ParseWords -" -BDEPEND="${RDEPEND} - virtual/perl-ExtUtils-MakeMaker - test? ( >=virtual/perl-Test-Simple-0.900.0 ) -" diff --git a/dev-perl/Config-AutoConf/Manifest b/dev-perl/Config-AutoConf/Manifest index c4647872da47..b6069eaa0cd4 100644 --- a/dev-perl/Config-AutoConf/Manifest +++ b/dev-perl/Config-AutoConf/Manifest @@ -1,3 +1,2 @@ DIST Config-AutoConf-0.315.tar.gz 49738 BLAKE2B e1fe0be1c113a66583d4db40c81c74bd7f1884155c1f0da180546c2c26a2bb4b496ab4f8fce9f5a5cf4e22a15ace8fae8f2bf51e5a4cb662e8a58d5a9e83a808 SHA512 ab52d4d19ede25b1f7030b461b931f5cd5bc5f0af50a584a015b367ff2085b2e58826f079290a22194f50ef063c2ba8b469ced913e4c306f788ef28efa41f2e1 -DIST Config-AutoConf-0.318.tar.gz 51016 BLAKE2B 816c74e2abc3087b5a89327e462092b6cd11005545510adc76c11ad84348a8f7f8b1fe7af37d10b79769d80ca35f44791b16658dbe4aca128b831898c26d009d SHA512 b125fb1c708a518a251695450ae4208d84c7b0de7e34081e22659bf2b93699868f14867d824805e1162fa99d8e15ed1072caf503d20b3c2cf0e27642b4213077 DIST Config-AutoConf-0.319.tar.gz 52118 BLAKE2B 8c0596a22d7accab0366f33f4f72315356abb61ccc3c0c816651724fc21a091607c48b4bb69b5441771795c432376e0811ecaa799b3b7b38b05d6cbdae80c29c SHA512 156b40e9728f9b02530cb490b31a0d439414ab5c4b43a216f7f649c23f62462a441923dc02d22735fcd44a70a5314fc8e9465047261f0e61a2013c05ff69a3bd diff --git a/dev-perl/Cpanel-JSON-XS/Cpanel-JSON-XS-4.230.0.ebuild b/dev-perl/Cpanel-JSON-XS/Cpanel-JSON-XS-4.230.0.ebuild deleted file mode 100644 index f07651db958f..000000000000 --- a/dev-perl/Cpanel-JSON-XS/Cpanel-JSON-XS-4.230.0.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DIST_AUTHOR=RURBAN -DIST_VERSION=4.23 -DIST_EXAMPLES=("eg/*") -inherit perl-module - -DESCRIPTION="cPanel fork of JSON::XS, fast and correct serializing" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=virtual/perl-Math-BigInt-1.160.0 - virtual/perl-Carp - >=virtual/perl-Encode-1.980.100 - virtual/perl-Exporter - virtual/perl-XSLoader - >=virtual/perl-podlators-2.80.0 -" -BDEPEND="${RDEPEND} - virtual/perl-ExtUtils-MakeMaker - test? ( - virtual/perl-Data-Dumper - virtual/perl-Test - virtual/perl-Test-Simple - virtual/perl-Time-Piece - ) -" -src_compile() { - mymake=( - "OPTIMIZE=${CFLAGS}" - ) - perl-module_src_compile -} -src_test() { - ewarn "Comprehensive testing may require manual installation of dependencies" - ewarn " See: https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/${CATEGORY}/${PN}#Tests" - perl-module_src_test -} -pkg_postinst() { - ewarn "This package provides 'cpanel_json_xs' in PATH, which includes optional features" - ewarn "otherwise not automatically made available yet. If you desire to use these," - ewarn "please consult:" - ewarn " https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/${CATEGORY}/${PN}#Optional_Features" -} diff --git a/dev-perl/Cpanel-JSON-XS/Manifest b/dev-perl/Cpanel-JSON-XS/Manifest index 1929fcf3d558..6a84a41bf90b 100644 --- a/dev-perl/Cpanel-JSON-XS/Manifest +++ b/dev-perl/Cpanel-JSON-XS/Manifest @@ -1,3 +1,2 @@ DIST Cpanel-JSON-XS-4.19.tar.gz 251461 BLAKE2B fa22192d017fc41327e71b84f47e3939765b0c48586cc31876f744c2a51a93b36f6d41b8c9f92bba04875123604efe3fed6a486839dbfb39623cb2a4a4064087 SHA512 c67b62e8f95900cb3626357cfa9976f1553f84ffd10a977d47839ca3b317014473c3a6e48f6680478b89bbdc2ac177b22441ad5e49e7e8eb0344ef14a3c52b10 -DIST Cpanel-JSON-XS-4.23.tar.gz 253594 BLAKE2B e9cb66c58015f6b83f00f588e9afc7c360182b67ceffcb90a76c2ebb1ad922250a5f2cec1049a79aea03789248d89669b4c787017bfdb6710f8576ab1e5b2948 SHA512 1c0d70ff85a2217c2b326c8002766e237966e0fcdac447fbb5108a5ba98b2771db17731853f2f7bedf85c337c7f6e18333c2c235830a17e152e7838bd168d0f9 DIST Cpanel-JSON-XS-4.24.tar.gz 254008 BLAKE2B 4449d0d562388c547ab26e87048b49d2e77e7508c8bc2c4db4af562ecfed768452cea1daca60e8ce59ed464b9d4ceca17d73326a16bec3e3a6d42bd6e13df7fe SHA512 311746bd6d686f758db4507c1219675b262205a8d798662b8f5521d3f9c7d76678580a30e26281b461647763d552cb76fdbbcf4aa1737dc7c7416364179741bb diff --git a/dev-perl/Crypt-Rijndael/Crypt-Rijndael-1.140.0-r1.ebuild b/dev-perl/Crypt-Rijndael/Crypt-Rijndael-1.140.0-r1.ebuild deleted file mode 100644 index 26733862f2ff..000000000000 --- a/dev-perl/Crypt-Rijndael/Crypt-Rijndael-1.140.0-r1.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DIST_AUTHOR=LEONT -DIST_VERSION=1.14 -inherit perl-module - -DESCRIPTION="Crypt::CBC compliant Rijndael encryption module" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="test" -RESTRICT="!test? ( test )" - -DEPEND=" - virtual/perl-ExtUtils-MakeMaker - test? ( - virtual/perl-Test-Simple - ) -" -src_compile() { - mymake=( - "OPTIMIZE=${CFLAGS}" - ) - perl-module_src_compile -} diff --git a/dev-perl/Curses/Curses-1.360.0-r1.ebuild b/dev-perl/Curses/Curses-1.360.0-r1.ebuild deleted file mode 100644 index 684145194e60..000000000000 --- a/dev-perl/Curses/Curses-1.360.0-r1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DIST_AUTHOR=GIRAFFED -DIST_VERSION=1.36 -DIST_EXAMPLES=("demo" "demo2" "demo.form" "demo.menu" "demo.panel" "gdc") -inherit perl-module - -DESCRIPTION="Curses interface modules for Perl" - -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~sparc-solaris ~x86-solaris" -IUSE="+unicode test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >=sys-libs/ncurses-5:0=[unicode?] - virtual/perl-Data-Dumper -" -DEPEND=" - >=sys-libs/ncurses-5:0=[unicode?] -" -BDEPEND="${RDEPEND} - virtual/perl-ExtUtils-MakeMaker - test? ( virtual/perl-Test-Simple ) -" - -src_configure() { - myconf="${myconf} FORMS PANELS MENUS" - mydoc=HISTORY - export CURSES_LIBTYPE="$(usex unicode ncursesw ncurses)" - local nc_tool="${CURSES_LIBTYPE}$(has_version 'sys-libs/ncurses:0/6' && echo 6 || echo 5)-config" - export CURSES_LDFLAGS=$( ${nc_tool} --libs ) - export CURSES_CFLAGS=$( ${nc_tool} --cflags ) - perl-module_src_configure - if ! use unicode ; then - sed -i 's::"/usr/include/form.h":' "${S}"/c-config.h || die - fi -} -src_compile() { - mymake=( - "OPTIMIZE=${CFLAGS}" - ) - perl-module_src_compile -} diff --git a/dev-perl/File-Copy-Recursive/File-Copy-Recursive-0.450.0.ebuild b/dev-perl/File-Copy-Recursive/File-Copy-Recursive-0.450.0.ebuild index 18953368ea78..78b2b02395cd 100644 --- a/dev-perl/File-Copy-Recursive/File-Copy-Recursive-0.450.0.ebuild +++ b/dev-perl/File-Copy-Recursive/File-Copy-Recursive-0.450.0.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="uses File::Copy to recursively copy dirs" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-perl/Manifest.gz b/dev-perl/Manifest.gz index 70455042dac1..42de45898a95 100644 Binary files a/dev-perl/Manifest.gz and b/dev-perl/Manifest.gz differ diff --git a/dev-perl/Test-File/Test-File-1.443.0.ebuild b/dev-perl/Test-File/Test-File-1.443.0.ebuild index a706cb1d3cad..7ae75ee7bfc2 100644 --- a/dev-perl/Test-File/Test-File-1.443.0.ebuild +++ b/dev-perl/Test-File/Test-File-1.443.0.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Test file attributes" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-perl/Test-utf8/Test-utf8-1.10.0.ebuild b/dev-perl/Test-utf8/Test-utf8-1.10.0.ebuild index 602385db5c06..6659cd6e6c63 100644 --- a/dev-perl/Test-utf8/Test-utf8-1.10.0.ebuild +++ b/dev-perl/Test-utf8/Test-utf8-1.10.0.ebuild @@ -10,7 +10,7 @@ inherit perl-module DESCRIPTION="Handy utf8 tests" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" IUSE="" RDEPEND=" diff --git a/dev-python/BitVector/metadata.xml b/dev-python/BitVector/metadata.xml index a2dbc076e2da..f9728c70b431 100644 --- a/dev-python/BitVector/metadata.xml +++ b/dev-python/BitVector/metadata.xml @@ -9,4 +9,7 @@ python@gentoo.org Python + + BitVector + diff --git a/dev-python/Manifest.gz b/dev-python/Manifest.gz index 4ab8c3694cab..54c50b846b0d 100644 Binary files a/dev-python/Manifest.gz and b/dev-python/Manifest.gz differ diff --git a/dev-python/PyGithub/metadata.xml b/dev-python/PyGithub/metadata.xml index 5a8ef9e1446a..584579126618 100644 --- a/dev-python/PyGithub/metadata.xml +++ b/dev-python/PyGithub/metadata.xml @@ -1,16 +1,17 @@ - - mgorny@gentoo.org - Michał Górny - - - python@gentoo.org - Python - - - - PyGithub/PyGithub - + + mgorny@gentoo.org + Michał Górny + + + python@gentoo.org + Python + + + + PyGithub/PyGithub + PyGithub + diff --git a/dev-python/PyRSS2Gen/metadata.xml b/dev-python/PyRSS2Gen/metadata.xml index a32d600f949d..a05bcf23516e 100644 --- a/dev-python/PyRSS2Gen/metadata.xml +++ b/dev-python/PyRSS2Gen/metadata.xml @@ -5,4 +5,7 @@ whissi@gentoo.org Thomas Deutschmann + + PyRSS2Gen + diff --git a/dev-python/PyUtilib/metadata.xml b/dev-python/PyUtilib/metadata.xml index 2541628cf9a8..bebb51bfe316 100644 --- a/dev-python/PyUtilib/metadata.xml +++ b/dev-python/PyUtilib/metadata.xml @@ -1,11 +1,14 @@ - - python@gentoo.org - - - chutzpah@gentoo.org - Patrick McLean - + + python@gentoo.org + + + chutzpah@gentoo.org + Patrick McLean + + + PyUtilib + diff --git a/dev-python/absl-py/metadata.xml b/dev-python/absl-py/metadata.xml index 56c13a3fb082..c3e51968a4b5 100644 --- a/dev-python/absl-py/metadata.xml +++ b/dev-python/absl-py/metadata.xml @@ -12,5 +12,6 @@ abseil/abseil-py + absl-py diff --git a/dev-python/aiofiles/metadata.xml b/dev-python/aiofiles/metadata.xml index 83d73c6d0c04..f316a59679fe 100644 --- a/dev-python/aiofiles/metadata.xml +++ b/dev-python/aiofiles/metadata.xml @@ -12,5 +12,6 @@ Tinche/aiofiles https://github.com/Tinche/aiofiles/issues + aiofiles diff --git a/dev-python/aiohttp-cors/aiohttp-cors-0.7.0-r1.ebuild b/dev-python/aiohttp-cors/aiohttp-cors-0.7.0-r1.ebuild index 2d7d613638cc..53239d103a16 100644 --- a/dev-python/aiohttp-cors/aiohttp-cors-0.7.0-r1.ebuild +++ b/dev-python/aiohttp-cors/aiohttp-cors-0.7.0-r1.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/aio-libs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86" RDEPEND=">=dev-python/aiohttp-1.1.1[${PYTHON_USEDEP}]" BDEPEND=" diff --git a/dev-python/aiohttp-cors/metadata.xml b/dev-python/aiohttp-cors/metadata.xml index a00e54b3e81f..7e698af58c38 100644 --- a/dev-python/aiohttp-cors/metadata.xml +++ b/dev-python/aiohttp-cors/metadata.xml @@ -11,5 +11,6 @@ aio-libs/aiohttp-cors + aiohttp_cors diff --git a/dev-python/aiohttp/aiohttp-3.7.1-r1.ebuild b/dev-python/aiohttp/aiohttp-3.7.1-r1.ebuild index 2f981beb814e..f34cfded7a1e 100644 --- a/dev-python/aiohttp/aiohttp-3.7.1-r1.ebuild +++ b/dev-python/aiohttp/aiohttp-3.7.1-r1.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86" RDEPEND=" >=dev-python/async_timeout-3.0.0[${PYTHON_USEDEP}] diff --git a/dev-python/alagitpull/metadata.xml b/dev-python/alagitpull/metadata.xml index a50ee0d43329..0fee98a872c8 100644 --- a/dev-python/alagitpull/metadata.xml +++ b/dev-python/alagitpull/metadata.xml @@ -1,9 +1,12 @@ - - chutzpah@gentoo.org - Patrick McLean - - + + chutzpah@gentoo.org + Patrick McLean + + + + alagitpull + diff --git a/dev-python/ansi2html/metadata.xml b/dev-python/ansi2html/metadata.xml index 5ea83a06dfa1..a805a61f7f9d 100644 --- a/dev-python/ansi2html/metadata.xml +++ b/dev-python/ansi2html/metadata.xml @@ -1,13 +1,13 @@ - - sping@gentoo.org - Sebastian Pipping - - - - ansi2html - ralphbean/ansi2html - + + sping@gentoo.org + Sebastian Pipping + + + + ansi2html + pycontribs/ansi2html + diff --git a/dev-python/anyqt/metadata.xml b/dev-python/anyqt/metadata.xml index f728eac91cc9..faf1290a5463 100644 --- a/dev-python/anyqt/metadata.xml +++ b/dev-python/anyqt/metadata.xml @@ -1,7 +1,10 @@ - + amynka@gentoo.org + + AnyQt + diff --git a/dev-python/apsw/metadata.xml b/dev-python/apsw/metadata.xml index bd25419f6171..061ddc25aaa7 100644 --- a/dev-python/apsw/metadata.xml +++ b/dev-python/apsw/metadata.xml @@ -1,17 +1,18 @@ - - python@gentoo.org - Python - - - APSW provides an SQLite 3 wrapper that provides the thinnest layer over SQLite 3 possible. - Everything you can do from the C API to SQLite 3, you can do from Python. - Although APSW looks vaguely similar to the DBAPI, it is not compliant with that API and instead - works the way SQLite 3 does. - - - rogerbinns/apsw - + + python@gentoo.org + Python + + + APSW provides an SQLite 3 wrapper that provides the thinnest layer over SQLite 3 possible. + Everything you can do from the C API to SQLite 3, you can do from Python. + Although APSW looks vaguely similar to the DBAPI, it is not compliant with that API and instead + works the way SQLite 3 does. + + + rogerbinns/apsw + apsw + diff --git a/dev-python/argparse-manpage/metadata.xml b/dev-python/argparse-manpage/metadata.xml index cee379b15409..ad3003519fc0 100644 --- a/dev-python/argparse-manpage/metadata.xml +++ b/dev-python/argparse-manpage/metadata.xml @@ -5,4 +5,8 @@ chutzpah@gentoo.org Patrick McLean + + argparse-manpage + praiskup/argparse-manpage + diff --git a/dev-python/arpeggio/metadata.xml b/dev-python/arpeggio/metadata.xml index 9b80d3de4f9c..832012f48b8b 100644 --- a/dev-python/arpeggio/metadata.xml +++ b/dev-python/arpeggio/metadata.xml @@ -7,6 +7,6 @@ Arpeggio - igordejanovic/Arpeggio + textX/Arpeggio diff --git a/dev-python/asgiref/metadata.xml b/dev-python/asgiref/metadata.xml index 4c43a15ce6f4..c8bf84bc495f 100644 --- a/dev-python/asgiref/metadata.xml +++ b/dev-python/asgiref/metadata.xml @@ -6,4 +6,8 @@ Python + + asgiref + django/asgiref + diff --git a/dev-python/asn1crypto/metadata.xml b/dev-python/asn1crypto/metadata.xml index 2dfa57bc0fb6..94d6d17f750b 100644 --- a/dev-python/asn1crypto/metadata.xml +++ b/dev-python/asn1crypto/metadata.xml @@ -1,12 +1,12 @@ - - python@gentoo.org - Python - - - cryptography - pyca/cryptography - + + python@gentoo.org + Python + + + asn1crypto + wbond/asn1crypto + diff --git a/dev-python/asteval/metadata.xml b/dev-python/asteval/metadata.xml index 020b40648ee8..15763d8b08c7 100644 --- a/dev-python/asteval/metadata.xml +++ b/dev-python/asteval/metadata.xml @@ -4,4 +4,7 @@ pacho@gentoo.org + + asteval + diff --git a/dev-python/asttokens/metadata.xml b/dev-python/asttokens/metadata.xml index 266e3f19ca59..be6b2431adb7 100644 --- a/dev-python/asttokens/metadata.xml +++ b/dev-python/asttokens/metadata.xml @@ -4,4 +4,8 @@ python@gentoo.org + + asttokens + gristlabs/asttokens + diff --git a/dev-python/astunparse/metadata.xml b/dev-python/astunparse/metadata.xml index c36c37139fad..3450c7499fed 100644 --- a/dev-python/astunparse/metadata.xml +++ b/dev-python/astunparse/metadata.xml @@ -5,4 +5,7 @@ williamh@gentoo.org William Hubbs + + astunparse + diff --git a/dev-python/async_timeout/async_timeout-3.0.1.ebuild b/dev-python/async_timeout/async_timeout-3.0.1.ebuild index f0b58a1475f4..ee351a5af79e 100644 --- a/dev-python/async_timeout/async_timeout-3.0.1.ebuild +++ b/dev-python/async_timeout/async_timeout-3.0.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~x64-macos" IUSE="test" RESTRICT="!test? ( test )" S=${WORKDIR}/${MY_P} diff --git a/dev-python/async_timeout/metadata.xml b/dev-python/async_timeout/metadata.xml index 50d0852ebd22..83850f5c20f5 100644 --- a/dev-python/async_timeout/metadata.xml +++ b/dev-python/async_timeout/metadata.xml @@ -9,7 +9,7 @@ - async_timeout - aio-libs/async_timeout + async-timeout + aio-libs/async-timeout diff --git a/dev-python/authheaders/metadata.xml b/dev-python/authheaders/metadata.xml index 3ee70120def4..d7a8404dd952 100644 --- a/dev-python/authheaders/metadata.xml +++ b/dev-python/authheaders/metadata.xml @@ -8,4 +8,7 @@ prometheanfire@gentoo.org Matthew Thode + + authheaders + diff --git a/dev-python/autobahn/metadata.xml b/dev-python/autobahn/metadata.xml index 72fb58a68e09..acd99bea73d5 100644 --- a/dev-python/autobahn/metadata.xml +++ b/dev-python/autobahn/metadata.xml @@ -11,6 +11,6 @@ autobahn - crossbar/autobahn + crossbario/autobahn-python diff --git a/dev-python/backports-os/backports-os-0.1.1.ebuild b/dev-python/backports-os/backports-os-0.1.1.ebuild index ddb578ca2545..b7480cb7421c 100644 --- a/dev-python/backports-os/backports-os-0.1.1.ebuild +++ b/dev-python/backports-os/backports-os-0.1.1.ebuild @@ -7,8 +7,8 @@ PYTHON_COMPAT=( python3_{6,7} ) inherit distutils-r1 DESCRIPTION="Backport of new features in Python's os module" -HOMEPAGE="https://github.com/pjdelport/backports.os" -SRC_URI="https://github.com/pjdelport/backports.os/archive/v${PV}.tar.gz -> ${P}.tar.gz" +HOMEPAGE="https://github.com/PiDelport/backports.os" +SRC_URI="https://github.com/PiDelport/backports.os/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="PYTHON" SLOT="0" diff --git a/dev-python/backports-os/metadata.xml b/dev-python/backports-os/metadata.xml index 3da97a9953cc..5f0a9236cf18 100644 --- a/dev-python/backports-os/metadata.xml +++ b/dev-python/backports-os/metadata.xml @@ -5,4 +5,7 @@ pacho@gentoo.org Pacho Ramos + + backports.os + diff --git a/dev-python/backports-zoneinfo/metadata.xml b/dev-python/backports-zoneinfo/metadata.xml index 266e3f19ca59..e70c1de18f01 100644 --- a/dev-python/backports-zoneinfo/metadata.xml +++ b/dev-python/backports-zoneinfo/metadata.xml @@ -4,4 +4,7 @@ python@gentoo.org + + backports.zoneinfo + diff --git a/dev-python/backports/metadata.xml b/dev-python/backports/metadata.xml index e24dd86faa2a..6c49200e959f 100644 --- a/dev-python/backports/metadata.xml +++ b/dev-python/backports/metadata.xml @@ -1,8 +1,11 @@ - - python@gentoo.org - Python - + + python@gentoo.org + Python + + + backports + diff --git a/dev-python/bandit/metadata.xml b/dev-python/bandit/metadata.xml index 40f27867ff32..3a9cff4a6b50 100644 --- a/dev-python/bandit/metadata.xml +++ b/dev-python/bandit/metadata.xml @@ -10,5 +10,6 @@ bandit + PyCQA/bandit diff --git a/dev-python/betamax-matchers/metadata.xml b/dev-python/betamax-matchers/metadata.xml index 352b038b3bc2..41aba4e40747 100644 --- a/dev-python/betamax-matchers/metadata.xml +++ b/dev-python/betamax-matchers/metadata.xml @@ -7,4 +7,7 @@ python@gentoo.org + + betamax-matchers + diff --git a/dev-python/betamax/metadata.xml b/dev-python/betamax/metadata.xml index e59516686a44..4e5aae36e564 100644 --- a/dev-python/betamax/metadata.xml +++ b/dev-python/betamax/metadata.xml @@ -5,4 +5,7 @@ python@gentoo.org + + betamax + diff --git a/dev-python/bibtexparser/metadata.xml b/dev-python/bibtexparser/metadata.xml index 30d601c0f423..049a994b028c 100644 --- a/dev-python/bibtexparser/metadata.xml +++ b/dev-python/bibtexparser/metadata.xml @@ -7,5 +7,6 @@ sciunto-org/python-bibtexparser + bibtexparser diff --git a/dev-python/binaryornot/binaryornot-0.4.4-r1.ebuild b/dev-python/binaryornot/binaryornot-0.4.4-r1.ebuild index fc09c2b9e1bf..e9e9025051c2 100644 --- a/dev-python/binaryornot/binaryornot-0.4.4-r1.ebuild +++ b/dev-python/binaryornot/binaryornot-0.4.4-r1.ebuild @@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_{6,7,8} ) inherit distutils-r1 DESCRIPTION="Ultra-lightweight pure Python package to guess whether a file is binary or text" -HOMEPAGE="https://github.com/audreyr/binaryornot" +HOMEPAGE="https://github.com/audreyfeldroy/binaryornot" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" diff --git a/dev-python/binaryornot/metadata.xml b/dev-python/binaryornot/metadata.xml index 64d17e0e40e9..c1195b45b79b 100644 --- a/dev-python/binaryornot/metadata.xml +++ b/dev-python/binaryornot/metadata.xml @@ -1,4 +1,4 @@ - + @@ -6,6 +6,7 @@ Python - audreyr/binaryornot + audreyfeldroy/binaryornot + binaryornot diff --git a/dev-python/bitstring/bitstring-3.1.7.ebuild b/dev-python/bitstring/bitstring-3.1.7.ebuild index c7ce7fb6625f..56ae0bd5517a 100644 --- a/dev-python/bitstring/bitstring-3.1.7.ebuild +++ b/dev-python/bitstring/bitstring-3.1.7.ebuild @@ -15,7 +15,7 @@ S=${WORKDIR}/${PN}-${P} LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 ~arm64 x86" +KEYWORDS="amd64 ~arm ~arm64 x86" distutils_enable_tests unittest diff --git a/dev-python/bitstring/metadata.xml b/dev-python/bitstring/metadata.xml index 1248de8cc91f..816bbf70b81f 100644 --- a/dev-python/bitstring/metadata.xml +++ b/dev-python/bitstring/metadata.xml @@ -18,5 +18,6 @@ python-bitstring scott-griffiths/bitstring + bitstring diff --git a/dev-python/black/black-20.8_beta1.ebuild b/dev-python/black/black-20.8_beta1.ebuild index b508eafc855c..89826ef42d58 100644 --- a/dev-python/black/black-20.8_beta1.ebuild +++ b/dev-python/black/black-20.8_beta1.ebuild @@ -17,7 +17,7 @@ S="${WORKDIR}/${MY_P}" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~x64-macos" IUSE="test" # bug #754201 RESTRICT="test" diff --git a/dev-python/black/metadata.xml b/dev-python/black/metadata.xml index 56cae167d372..e9851f2e412e 100644 --- a/dev-python/black/metadata.xml +++ b/dev-python/black/metadata.xml @@ -1,8 +1,11 @@ - - chutzpah@gentoo.org - Patrick McLean - + + chutzpah@gentoo.org + Patrick McLean + + + black + diff --git a/dev-python/bluelet/metadata.xml b/dev-python/bluelet/metadata.xml index f40580bfc18e..f536dab566d1 100644 --- a/dev-python/bluelet/metadata.xml +++ b/dev-python/bluelet/metadata.xml @@ -16,5 +16,6 @@ In this way, it is similar to the Greenlet green-threads library and its associa sampsyo/bluelet + bluelet diff --git a/dev-python/blurb/metadata.xml b/dev-python/blurb/metadata.xml index a68165db0ed5..7c2d3fa75752 100644 --- a/dev-python/blurb/metadata.xml +++ b/dev-python/blurb/metadata.xml @@ -1,23 +1,26 @@ - - python@gentoo.org - - - chutzpah@gentoo.org - Patrick McLean - - - blurb is a tool designed to rid CPython core development of the scourge of - Misc/NEWS conflicts. + + python@gentoo.org + + + chutzpah@gentoo.org + Patrick McLean + + + blurb is a tool designed to rid CPython core development of the scourge of + Misc/NEWS conflicts. - The core concept: split Misc/NEWS into many separate files that, when - concatenated back together in sorted order, reconstitute the original - Misc/NEWS file. After that, Misc/NEWS could be deleted from the CPython - repo and thereafter rendered on demand (e.g. when building a release). - When checking in a change to CPython, the checkin process will write - out a new file that sorts into the correct place, using a filename - unlikely to have a merge conflict. - + The core concept: split Misc/NEWS into many separate files that, when + concatenated back together in sorted order, reconstitute the original + Misc/NEWS file. After that, Misc/NEWS could be deleted from the CPython + repo and thereafter rendered on demand (e.g. when building a release). + When checking in a change to CPython, the checkin process will write + out a new file that sorts into the correct place, using a filename + unlikely to have a merge conflict. + + + blurb + diff --git a/dev-python/booleanOperations/metadata.xml b/dev-python/booleanOperations/metadata.xml index 3da97a9953cc..53c77afd462a 100644 --- a/dev-python/booleanOperations/metadata.xml +++ b/dev-python/booleanOperations/metadata.xml @@ -5,4 +5,7 @@ pacho@gentoo.org Pacho Ramos + + booleanOperations + diff --git a/dev-python/boto3/metadata.xml b/dev-python/boto3/metadata.xml index 54ceb365c5f1..fc2e23c4ec36 100644 --- a/dev-python/boto3/metadata.xml +++ b/dev-python/boto3/metadata.xml @@ -20,5 +20,6 @@ boto/boto3 + boto3 diff --git a/dev-python/breathe/breathe-4.22.1.ebuild b/dev-python/breathe/breathe-4.22.1.ebuild index 47e8e11f3e19..f82c38d1d5e6 100644 --- a/dev-python/breathe/breathe-4.22.1.ebuild +++ b/dev-python/breathe/breathe-4.22.1.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" RDEPEND=" app-doc/doxygen diff --git a/dev-python/brotlicffi/brotlicffi-0.8.0.ebuild b/dev-python/brotlicffi/brotlicffi-0.8.0.ebuild index f9a6472794c6..5dbd99180383 100644 --- a/dev-python/brotlicffi/brotlicffi-0.8.0.ebuild +++ b/dev-python/brotlicffi/brotlicffi-0.8.0.ebuild @@ -11,7 +11,9 @@ inherit distutils-r1 BROTLI_BUNDLED_COMMIT="46c1a881b41bb638c76247558aa04b1591af3aa7" DESCRIPTION="Python binding to the Brotli library" -HOMEPAGE="https://github.com/python-hyper/brotlipy/ https://pypi.python.org/pypi/brotlipy" +HOMEPAGE=" + https://github.com/python-hyper/brotlicffi/ + https://pypi.org/project/brotlicffi/" SRC_URI=" https://github.com/python-hyper/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz diff --git a/dev-python/brotlicffi/metadata.xml b/dev-python/brotlicffi/metadata.xml index 7f4f33c6dbc9..0ca2bbfddadc 100644 --- a/dev-python/brotlicffi/metadata.xml +++ b/dev-python/brotlicffi/metadata.xml @@ -5,4 +5,8 @@ python@gentoo.org Python + + brotlicffi + python-hyper/brotlicffi + diff --git a/dev-python/brotlipy/metadata.xml b/dev-python/brotlipy/metadata.xml index 7f4f33c6dbc9..56e99b52ee7f 100644 --- a/dev-python/brotlipy/metadata.xml +++ b/dev-python/brotlipy/metadata.xml @@ -5,4 +5,8 @@ python@gentoo.org Python + + brotlipy + python-hyper/brotlipy + diff --git a/dev-python/brython/metadata.xml b/dev-python/brython/metadata.xml index 36e30a512a19..f2bfcdca5681 100644 --- a/dev-python/brython/metadata.xml +++ b/dev-python/brython/metadata.xml @@ -1,11 +1,12 @@ - + - - monsieurp@gentoo.org - Patrice Clement - - - brython-dev/brython - + + monsieurp@gentoo.org + Patrice Clement + + + brython-dev/brython + brython + diff --git a/dev-python/cairocffi/cairocffi-1.2.0.ebuild b/dev-python/cairocffi/cairocffi-1.2.0.ebuild index 86345d9700dd..904fb171ce2d 100644 --- a/dev-python/cairocffi/cairocffi-1.2.0.ebuild +++ b/dev-python/cairocffi/cairocffi-1.2.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~arm arm64 ~ppc ~ppc64 x86" +KEYWORDS="~amd64 ~arm arm64 ~ppc ppc64 x86" RDEPEND=" $(python_gen_cond_dep ' diff --git a/dev-python/cangjie/metadata.xml b/dev-python/cangjie/metadata.xml index 5249303a03c1..765da01d5bfd 100644 --- a/dev-python/cangjie/metadata.xml +++ b/dev-python/cangjie/metadata.xml @@ -7,5 +7,6 @@ Cangjians/pycangjie + CangJie diff --git a/dev-python/capturer/metadata.xml b/dev-python/capturer/metadata.xml index 42593b5baca9..b622882856d8 100644 --- a/dev-python/capturer/metadata.xml +++ b/dev-python/capturer/metadata.xml @@ -1,12 +1,12 @@ - - python@gentoo.org - Python - - - coloredlogs - xolox/python-coloredlogs - + + python@gentoo.org + Python + + + capturer + xolox/python-capturer + diff --git a/dev-python/casttube/metadata.xml b/dev-python/casttube/metadata.xml index 3ee70120def4..3672312509f4 100644 --- a/dev-python/casttube/metadata.xml +++ b/dev-python/casttube/metadata.xml @@ -8,4 +8,7 @@ prometheanfire@gentoo.org Matthew Thode + + casttube + diff --git a/dev-python/catkin_pkg/metadata.xml b/dev-python/catkin_pkg/metadata.xml index 23a932120133..3be7e345ed20 100644 --- a/dev-python/catkin_pkg/metadata.xml +++ b/dev-python/catkin_pkg/metadata.xml @@ -7,5 +7,6 @@ ros-infrastructure/catkin_pkg + catkin-pkg diff --git a/dev-python/cbor2/metadata.xml b/dev-python/cbor2/metadata.xml index 77d7b556b447..b7664ff5cbae 100644 --- a/dev-python/cbor2/metadata.xml +++ b/dev-python/cbor2/metadata.xml @@ -10,13 +10,13 @@ bolson@bolson.org Brian Olson - cbor - bodhisnarkva/cbor + cbor2 + agronholm/cbor2 This library provides encoding and decoding for the Concise Binary Object Representation (CBOR) (RFC 7049) serialization format. It is implemented in pure python with an optional C backend and is compatible -with versions 2.7 through to 3.8. On cPython>=3.3 cbor2 can use a built in C +with versions 2.7 through to 3.8. On cPython>=3.3 cbor2 can use a built in C module for performance similar to how pickle wraps the _pickle C module in the Python Standard Library. diff --git a/dev-python/cgroup-utils/metadata.xml b/dev-python/cgroup-utils/metadata.xml index e4905993c028..6e335f41f8cf 100644 --- a/dev-python/cgroup-utils/metadata.xml +++ b/dev-python/cgroup-utils/metadata.xml @@ -1,15 +1,16 @@ - - blueness@gentoo.org - Anthony G. Basile - - - python@gentoo.org - Python - - - peo3/cgroup-utils - + + blueness@gentoo.org + Anthony G. Basile + + + python@gentoo.org + Python + + + peo3/cgroup-utils + cgroup-utils + diff --git a/dev-python/chameleon/metadata.xml b/dev-python/chameleon/metadata.xml index e56e490aa9a4..8c59eb99923a 100644 --- a/dev-python/chameleon/metadata.xml +++ b/dev-python/chameleon/metadata.xml @@ -8,5 +8,6 @@ Chameleon + malthe/chameleon diff --git a/dev-python/citeproc-py/citeproc-py-0.4.0-r1.ebuild b/dev-python/citeproc-py/citeproc-py-0.4.0-r1.ebuild index 0077a97d0547..88e0adc0c2e9 100644 --- a/dev-python/citeproc-py/citeproc-py-0.4.0-r1.ebuild +++ b/dev-python/citeproc-py/citeproc-py-0.4.0-r1.ebuild @@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 DESCRIPTION="Yet another Python CSL Processor" -HOMEPAGE="https://pypi.python.org/pypi/citeproc-py" +HOMEPAGE="https://pypi.org/project/citeproc-py/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD-2" diff --git a/dev-python/citeproc-py/metadata.xml b/dev-python/citeproc-py/metadata.xml index 4ad4957cfd25..f2c00bc183fe 100644 --- a/dev-python/citeproc-py/metadata.xml +++ b/dev-python/citeproc-py/metadata.xml @@ -11,5 +11,6 @@ brechtm/citeproc-py + citeproc-py diff --git a/dev-python/cjkwrap/metadata.xml b/dev-python/cjkwrap/metadata.xml index 6b0a0fb3a729..07822b67318e 100644 --- a/dev-python/cjkwrap/metadata.xml +++ b/dev-python/cjkwrap/metadata.xml @@ -1,8 +1,11 @@ - - juippis@gentoo.org - Joonas Niilola - + + juippis@gentoo.org + Joonas Niilola + + + CJKwrap + diff --git a/dev-python/cli_helpers/metadata.xml b/dev-python/cli_helpers/metadata.xml index ad9e3e04b43d..b7e9e25a0511 100644 --- a/dev-python/cli_helpers/metadata.xml +++ b/dev-python/cli_helpers/metadata.xml @@ -10,5 +10,6 @@ dbcli/cli_helpers + cli-helpers diff --git a/dev-python/click-default-group/metadata.xml b/dev-python/click-default-group/metadata.xml index 3fbe64efde32..fd2518ed0546 100644 --- a/dev-python/click-default-group/metadata.xml +++ b/dev-python/click-default-group/metadata.xml @@ -7,5 +7,6 @@ click-default-group + click-contrib/click-default-group diff --git a/dev-python/click-plugins/metadata.xml b/dev-python/click-plugins/metadata.xml index 9cd89183f850..6adfac23640b 100644 --- a/dev-python/click-plugins/metadata.xml +++ b/dev-python/click-plugins/metadata.xml @@ -1,8 +1,9 @@ - - - click-plugins - + + + click-plugins + click-contrib/click-plugins + diff --git a/dev-python/cliff/metadata.xml b/dev-python/cliff/metadata.xml index 75edbe394a4f..6b802a7a609f 100644 --- a/dev-python/cliff/metadata.xml +++ b/dev-python/cliff/metadata.xml @@ -1,22 +1,23 @@ - - prometheanfire@gentoo.org - Matthew Thode - - - python@gentoo.org - Python - - - Cliff is a framework for building command line programs. - It uses setuptools entry points to provide subcommands, - output formatters, and other extensions. - - - - cliff - dreamhost/cliff - + + prometheanfire@gentoo.org + Matthew Thode + + + python@gentoo.org + Python + + + Cliff is a framework for building command line programs. + It uses setuptools entry points to provide subcommands, + output formatters, and other extensions. + + + + cliff + dreamhost/cliff + openstack/cliff + diff --git a/dev-python/clint/clint-0.5.1-r3.ebuild b/dev-python/clint/clint-0.5.1-r3.ebuild index f985c3f2fb2f..530a51074740 100644 --- a/dev-python/clint/clint-0.5.1-r3.ebuild +++ b/dev-python/clint/clint-0.5.1-r3.ebuild @@ -8,8 +8,8 @@ PYTHON_COMPAT=( pypy3 python3_{6,7,8,9} ) inherit distutils-r1 DESCRIPTION="Python Command-line Application Tools" -HOMEPAGE="https://github.com/kennethreitz/clint" -SRC_URI="https://github.com/kennethreitz/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +HOMEPAGE="https://github.com/kennethreitz-archive/clint" +SRC_URI="https://github.com/kennethreitz-archive/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="ISC" SLOT="0" diff --git a/dev-python/clint/metadata.xml b/dev-python/clint/metadata.xml index 7ae38406c025..efb3f4fc03ee 100644 --- a/dev-python/clint/metadata.xml +++ b/dev-python/clint/metadata.xml @@ -3,6 +3,7 @@ - kennethreitz/clint + kennethreitz-archive/clint + clint diff --git a/dev-python/cloudpickle/metadata.xml b/dev-python/cloudpickle/metadata.xml index cc58bd679721..38fc6e1d8818 100644 --- a/dev-python/cloudpickle/metadata.xml +++ b/dev-python/cloudpickle/metadata.xml @@ -1,12 +1,13 @@ - - python@gentoo.org - Python - - - - cloudpickle - + + python@gentoo.org + Python + + + + cloudpickle + cloudpipe/cloudpickle + diff --git a/dev-python/colorclass/metadata.xml b/dev-python/colorclass/metadata.xml index e59516686a44..a9434e20d624 100644 --- a/dev-python/colorclass/metadata.xml +++ b/dev-python/colorclass/metadata.xml @@ -5,4 +5,8 @@ python@gentoo.org + + colorclass + Robpol86/colorclass + diff --git a/dev-python/confuse/metadata.xml b/dev-python/confuse/metadata.xml index 30a66ee8e064..0f6926bfc340 100644 --- a/dev-python/confuse/metadata.xml +++ b/dev-python/confuse/metadata.xml @@ -16,5 +16,6 @@ beetbox/confuse + confuse diff --git a/dev-python/consonance/metadata.xml b/dev-python/consonance/metadata.xml index 185f266d7db9..c701381ea1c2 100644 --- a/dev-python/consonance/metadata.xml +++ b/dev-python/consonance/metadata.xml @@ -13,5 +13,6 @@ https://github.com/tgalal/consonance/issues tgalal/consonance + consonance diff --git a/dev-python/coreapi/metadata.xml b/dev-python/coreapi/metadata.xml index c36c37139fad..dcf00dccb5e5 100644 --- a/dev-python/coreapi/metadata.xml +++ b/dev-python/coreapi/metadata.xml @@ -5,4 +5,7 @@ williamh@gentoo.org William Hubbs + + coreapi + diff --git a/dev-python/coreschema/metadata.xml b/dev-python/coreschema/metadata.xml index c36c37139fad..187eee7c7894 100644 --- a/dev-python/coreschema/metadata.xml +++ b/dev-python/coreschema/metadata.xml @@ -5,4 +5,7 @@ williamh@gentoo.org William Hubbs + + coreschema + diff --git a/dev-python/crcmod/metadata.xml b/dev-python/crcmod/metadata.xml index 1ca4db946408..4ce1ace987ca 100644 --- a/dev-python/crcmod/metadata.xml +++ b/dev-python/crcmod/metadata.xml @@ -13,5 +13,6 @@ crcmod + crcmod diff --git a/dev-python/cryptography/Manifest b/dev-python/cryptography/Manifest index bae04ba5930a..1914b61c708f 100644 --- a/dev-python/cryptography/Manifest +++ b/dev-python/cryptography/Manifest @@ -1,4 +1,6 @@ DIST cryptography-3.2.1.tar.gz 540994 BLAKE2B 667f09ac81423ecdc84c8646f0d02ee3a2955f55d35623e59c07696810a93c47332f7f8d877918eeeb6581d8e02bde3b70aae8e9d32be7ffbc8011e5e7e382a9 SHA512 e3f1806693c24aadc3ef0df374ce1845760e87ad7c243226b75e80820b50bdc0760e4bb5f6ce26d62a6d23736b3109f72cd30b52ae2a36b26ec5656ec96c6175 DIST cryptography-3.2.tar.gz 540815 BLAKE2B be4edd5d4cd9564e8622284ff9b1d3a7cc7d6e46cfa790d8e1cfa1ce389c5d628e39b056dc5cba3b94ab3fa45603df73a7b4ebd9d1c70fc88c457780f6616311 SHA512 0096e6408b5868cc0b5e6f67945e4200bb943a00ac803546048fa4d332f81af4a224b2d67b911ee8da1ad086120935d7d557fc70a739ecffb22f408ee9b8d09e +DIST cryptography-3.3.1.tar.gz 539756 BLAKE2B a3eb52d756565ae83d9f2e06045be1d3439a2464b633a9a168101796a448d7c7531e8247862f7996d04500347d32dcebf6b1352e9c9f2e4f0d8008d4bbd000dc SHA512 62192fe0fd3bb8844ccc0056ab72a42b038db2a4ecb0928543c520b85e1de93066dab0d604acf23d37395d68172b9618f81c6022a59ec49725bc1862096d15d1 DIST cryptography_vectors-3.2.1.tar.gz 35168164 BLAKE2B 77af3be0dbd7393da7cd59600086041b78fe20339018a637fc1cf3600c7cd08cf2e565c79ccb47f4719a4b0f01cf2ab2db00c025805443b333dd7fdf3aa835a7 SHA512 44ff756a6ece9700f7657f8ba92417e95bf273cf500f1dab2141de5b2af6e61840d65c37b766abd752c76025ead1550bfc7b7340ce5774c75fd0bb8ac768cdd8 DIST cryptography_vectors-3.2.tar.gz 35168065 BLAKE2B ebd915eee9b91bd61445bcb442d3052972b1463132b8e63343832baa27c25566e22ca9f50c9d4ea73cb12185f9228144eaac4bf5cc68a3bd79f347fe2d021adc SHA512 bb0d00c8a66fd328ef38b0008519856a14d35b6fd634a6f67ea5530775d36538fbd326326c3f0cd962b1a008c21f2aded4d733f97bc12577679ed8be67b858bc +DIST cryptography_vectors-3.3.1.tar.gz 35168171 BLAKE2B 72cf5d79773a728c16847e3e62f8ce444526c051d7562467446d3e59c66064568fdfcbfb1fd35419fd79079ff9a02a2f3a97f870f7adef6cc9a0fd23b4edf514 SHA512 a102535bd3cf72118106ca7268d5a9921738d41f81247940c550961d61cb0d1869095b7891c39e8dc15816f7d38230622846747b4b7a3f226f09306cf86220bd diff --git a/dev-python/cryptography/cryptography-3.3.1.ebuild b/dev-python/cryptography/cryptography-3.3.1.ebuild new file mode 100644 index 000000000000..bde114eb1121 --- /dev/null +++ b/dev-python/cryptography/cryptography-3.3.1.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} pypy3 ) +PYTHON_REQ_USE="threads(+)" + +inherit distutils-r1 multiprocessing + +VEC_P=cryptography_vectors-${PV} +DESCRIPTION="Library providing cryptographic recipes and primitives" +HOMEPAGE="https://github.com/pyca/cryptography/ https://pypi.org/project/cryptography/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz + test? ( mirror://pypi/c/cryptography_vectors/${VEC_P}.tar.gz )" + +LICENSE="|| ( Apache-2.0 BSD )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" +IUSE="libressl idna" + +RDEPEND=" + >=dev-python/six-1.4.1[${PYTHON_USEDEP}] + idna? ( >=dev-python/idna-2.1[${PYTHON_USEDEP}] ) + $(python_gen_cond_dep ' + >=dev-python/cffi-1.8:=[${PYTHON_USEDEP}] + ' 'python*') + " +BDEPEND=" + test? ( + >=dev-python/hypothesis-1.11.4[${PYTHON_USEDEP}] + dev-python/iso8601[${PYTHON_USEDEP}] + dev-python/pretend[${PYTHON_USEDEP}] + dev-python/pyasn1-modules[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] + dev-python/pytest-xdist[${PYTHON_USEDEP}] + )" + +distutils_enable_tests pytest + +DEPEND=" + !libressl? ( >=dev-libs/openssl-1.0.2o-r6:0= ) + libressl? ( >=dev-libs/libressl-2.9.1:0= ) + " +RDEPEND+=${DEPEND} + +DOCS=( AUTHORS.rst CONTRIBUTING.rst README.rst ) + +src_prepare() { + default + + # work around availability macros not supported in GCC (yet) + if [[ ${CHOST} == *-darwin* ]] ; then + local darwinok=0 + if [[ ${CHOST##*-darwin} -ge 16 ]] ; then + darwinok=1 + fi + sed -i -e 's/__builtin_available(macOS 10\.12, \*)/'"${darwinok}"'/' \ + src/_cffi_src/openssl/src/osrandom_engine.c || die + fi +} + +python_test() { + local -x PYTHONPATH=${PYTHONPATH}:${WORKDIR}/${VEC_P} + pytest -vv -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")" || + die "Tests fail with ${EPYTHON}" +} diff --git a/dev-python/css-parser/metadata.xml b/dev-python/css-parser/metadata.xml index 4409159ffa70..96600ef2547c 100644 --- a/dev-python/css-parser/metadata.xml +++ b/dev-python/css-parser/metadata.xml @@ -1,10 +1,11 @@ - - zmedico@gentoo.org - - - ebook-utils/css-parser - + + zmedico@gentoo.org + + + ebook-utils/css-parser + css-parser + diff --git a/dev-python/cssselect/metadata.xml b/dev-python/cssselect/metadata.xml index 56773600370c..534bff56c2a2 100644 --- a/dev-python/cssselect/metadata.xml +++ b/dev-python/cssselect/metadata.xml @@ -1,12 +1,13 @@ - - python@gentoo.org - Python - - - - cssselect - + + python@gentoo.org + Python + + + + cssselect + scrapy/cssselect + diff --git a/dev-python/cssselect2/metadata.xml b/dev-python/cssselect2/metadata.xml index d621f28c28f5..c6a21dbbcc3e 100644 --- a/dev-python/cssselect2/metadata.xml +++ b/dev-python/cssselect2/metadata.xml @@ -1,12 +1,13 @@ - - python@gentoo.org - Python - - - - cssselect2 - + + python@gentoo.org + Python + + + + cssselect2 + Kozea/cssselect2 + diff --git a/dev-python/csv23/metadata.xml b/dev-python/csv23/metadata.xml index e59516686a44..b49d8f544761 100644 --- a/dev-python/csv23/metadata.xml +++ b/dev-python/csv23/metadata.xml @@ -5,4 +5,8 @@ python@gentoo.org + + csv23 + xflr6/csv23 + diff --git a/dev-python/ctypescrypto/metadata.xml b/dev-python/ctypescrypto/metadata.xml index db19a33dccc6..aa7795ba5ec7 100644 --- a/dev-python/ctypescrypto/metadata.xml +++ b/dev-python/ctypescrypto/metadata.xml @@ -10,5 +10,8 @@ Build with support for GOST Message Authentication Code - + + + ctypescrypto + diff --git a/dev-python/ctypesgen/metadata.xml b/dev-python/ctypesgen/metadata.xml index 64f7f4e7715f..9d0eeacbd604 100644 --- a/dev-python/ctypesgen/metadata.xml +++ b/dev-python/ctypesgen/metadata.xml @@ -7,5 +7,6 @@ davidjamesca/ctypesgen + ctypesgen diff --git a/dev-python/cvxopt/metadata.xml b/dev-python/cvxopt/metadata.xml index 73822eb2153b..d8071e3a6fbe 100644 --- a/dev-python/cvxopt/metadata.xml +++ b/dev-python/cvxopt/metadata.xml @@ -1,23 +1,24 @@ - - sci-mathematics@gentoo.org - Gentoo Mathematics Project - - - CVXOPT is a software for convex optimization based on - the Python programming language. Its main purpose is to make the - development of software for convex optimization applications - straightforward. - - - Use interior point library - sci-libs/dsdp - Use GNU Linear Programming Kit - sci-mathematics/glpk - - - cvxopt/cvxopt - + + sci-mathematics@gentoo.org + Gentoo Mathematics Project + + + CVXOPT is a software for convex optimization based on + the Python programming language. Its main purpose is to make the + development of software for convex optimization applications + straightforward. + + + Use interior point library + sci-libs/dsdp + Use GNU Linear Programming Kit + sci-mathematics/glpk + + + cvxopt/cvxopt + cvxopt + diff --git a/dev-python/cython/metadata.xml b/dev-python/cython/metadata.xml index 6fed3f622bc9..e9decf14f92e 100644 --- a/dev-python/cython/metadata.xml +++ b/dev-python/cython/metadata.xml @@ -1,16 +1,17 @@ - + - - python@gentoo.org - Python - - - Cython is a language that makes writing C extensions for the Python - language as easy as Python itself. It's based on Pyrex, but supports - more cutting edge functionality and optimizations. - - - Cython - + + python@gentoo.org + Python + + + Cython is a language that makes writing C extensions for the Python + language as easy as Python itself. It's based on Pyrex, but supports + more cutting edge functionality and optimizations. + + + Cython + cython/cython + diff --git a/dev-python/dataclasses/metadata.xml b/dev-python/dataclasses/metadata.xml index 266e3f19ca59..74a8b3e369b1 100644 --- a/dev-python/dataclasses/metadata.xml +++ b/dev-python/dataclasses/metadata.xml @@ -4,4 +4,8 @@ python@gentoo.org + + dataclasses + ericvsmith/dataclasses + diff --git a/dev-python/dbus-python/metadata.xml b/dev-python/dbus-python/metadata.xml index 5bb287759c58..7f2598156160 100644 --- a/dev-python/dbus-python/metadata.xml +++ b/dev-python/dbus-python/metadata.xml @@ -1,11 +1,14 @@ - - freedesktop-bugs@gentoo.org - - - python@gentoo.org - Python - + + freedesktop-bugs@gentoo.org + + + python@gentoo.org + Python + + + dbus-python + diff --git a/dev-python/dbusmock/metadata.xml b/dev-python/dbusmock/metadata.xml index 996e7cacd217..598247402a90 100644 --- a/dev-python/dbusmock/metadata.xml +++ b/dev-python/dbusmock/metadata.xml @@ -5,4 +5,7 @@ gnome@gentoo.org Gentoo GNOME Desktop + + python-dbusmock + diff --git a/dev-python/dbutils/dbutils-1.3.ebuild b/dev-python/dbutils/dbutils-1.3.ebuild index 40b10864236c..197c5d0c0d57 100644 --- a/dev-python/dbutils/dbutils-1.3.ebuild +++ b/dev-python/dbutils/dbutils-1.3.ebuild @@ -13,8 +13,8 @@ MY_P="${MY_PN}-${PV}" DESCRIPTION="Database connections for multi-threaded environments" HOMEPAGE=" - https://cito.github.io/DBUtils/ - https://github.com/Cito/DBUtils + https://webwareforpython.github.io/DBUtils/ + https://github.com/WebwareForPython/DBUtils/ https://pypi.org/project/DBUtils/ " SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_P}.tar.gz" diff --git a/dev-python/dbutils/dbutils-2.0.ebuild b/dev-python/dbutils/dbutils-2.0.ebuild index 13bce71b251b..d230f6c0ea6d 100644 --- a/dev-python/dbutils/dbutils-2.0.ebuild +++ b/dev-python/dbutils/dbutils-2.0.ebuild @@ -13,8 +13,8 @@ MY_P="${MY_PN}-${PV}" DESCRIPTION="Database connections for multi-threaded environments" HOMEPAGE=" - https://cito.github.io/DBUtils/ - https://github.com/Cito/DBUtils + https://webwareforpython.github.io/DBUtils/ + https://github.com/WebwareForPython/DBUtils/ https://pypi.org/project/DBUtils/ " SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_P}.tar.gz" diff --git a/dev-python/dbutils/metadata.xml b/dev-python/dbutils/metadata.xml index a24feb91917f..5f3a181b8872 100644 --- a/dev-python/dbutils/metadata.xml +++ b/dev-python/dbutils/metadata.xml @@ -1,21 +1,22 @@ - - lssndrbarbieri@gmail.com - Alessandro Barbieri - - - proxy-maint@gentoo.org - Proxy Maintainers - - -DBUtils is a suite of tools providing solid, persistent and pooled connections -to a database that can be used in all kinds of multi-threaded environments -like Webware for Python or other web application servers. The suite supports -DB-API 2 compliant database interfaces and the classic PyGreSQL interface. - - - Cito/DBUtils - + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + proxy-maint@gentoo.org + Proxy Maintainers + + + DBUtils is a suite of tools providing solid, persistent and pooled connections + to a database that can be used in all kinds of multi-threaded environments + like Webware for Python or other web application servers. The suite supports + DB-API 2 compliant database interfaces and the classic PyGreSQL interface. + + + WebwareForPython/DBUtils + DBUtils + diff --git a/dev-python/defcon/defcon-0.6.0-r1.ebuild b/dev-python/defcon/defcon-0.6.0-r1.ebuild index 3eca22298852..ebb2602ca1d1 100644 --- a/dev-python/defcon/defcon-0.6.0-r1.ebuild +++ b/dev-python/defcon/defcon-0.6.0-r1.ebuild @@ -7,8 +7,8 @@ PYTHON_COMPAT=( python3_{6,7,8} ) inherit distutils-r1 DESCRIPTION="A set of UFO based objects for use in font editing applications" -HOMEPAGE="https://github.com/typesupply/defcon" -SRC_URI="https://github.com/typesupply/defcon/archive/${PV}.tar.gz -> ${P}.tar.gz" +HOMEPAGE="https://github.com/robotools/defcon" +SRC_URI="https://github.com/robotools/defcon/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" diff --git a/dev-python/defcon/metadata.xml b/dev-python/defcon/metadata.xml index 3da97a9953cc..cce07bdefb95 100644 --- a/dev-python/defcon/metadata.xml +++ b/dev-python/defcon/metadata.xml @@ -5,4 +5,8 @@ pacho@gentoo.org Pacho Ramos + + robotools/defcon + defcon + diff --git a/dev-python/deprecated/metadata.xml b/dev-python/deprecated/metadata.xml index e59516686a44..9e1c60a102ff 100644 --- a/dev-python/deprecated/metadata.xml +++ b/dev-python/deprecated/metadata.xml @@ -5,4 +5,7 @@ python@gentoo.org + + Deprecated + diff --git a/dev-python/dill/dill-0.3.3.ebuild b/dev-python/dill/dill-0.3.3.ebuild index 32554341e099..a568aa3b45b3 100644 --- a/dev-python/dill/dill-0.3.3.ebuild +++ b/dev-python/dill/dill-0.3.3.ebuild @@ -16,7 +16,7 @@ S=${WORKDIR}/${PN}-${P} LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~amd64 ~arm64 ppc ~x86 ~amd64-linux ~x86-linux" python_test() { local fail= t diff --git a/dev-python/dissononce/metadata.xml b/dev-python/dissononce/metadata.xml index 394038dd3ab6..71c2d8b79b80 100644 --- a/dev-python/dissononce/metadata.xml +++ b/dev-python/dissononce/metadata.xml @@ -14,5 +14,6 @@ https://github.com/tgalal/dissononce/issues tgalal/dissononce + dissononce diff --git a/dev-python/distlib/metadata.xml b/dev-python/distlib/metadata.xml index 266e3f19ca59..f04c184a6cad 100644 --- a/dev-python/distlib/metadata.xml +++ b/dev-python/distlib/metadata.xml @@ -4,4 +4,7 @@ python@gentoo.org + + distlib + diff --git a/dev-python/dj-database-url/metadata.xml b/dev-python/dj-database-url/metadata.xml index 85f9085eb45c..66c1e8881de1 100644 --- a/dev-python/dj-database-url/metadata.xml +++ b/dev-python/dj-database-url/metadata.xml @@ -1,13 +1,13 @@ - - python@gentoo.org - Python - - - - kennethreitz/dj-database-url - dj-database-url - + + python@gentoo.org + Python + + + + dj-database-url + jacobian/dj-database-url + diff --git a/dev-python/django-cacheops/metadata.xml b/dev-python/django-cacheops/metadata.xml index 5d3d9dc0e2ac..17ae2620bcce 100644 --- a/dev-python/django-cacheops/metadata.xml +++ b/dev-python/django-cacheops/metadata.xml @@ -8,4 +8,7 @@ williamh@gentoo.org William Hubbs + + django-cacheops + diff --git a/dev-python/django-cors-headers/django-cors-headers-3.2.1.ebuild b/dev-python/django-cors-headers/django-cors-headers-3.2.1.ebuild index 77307b63a59f..f2f932695177 100644 --- a/dev-python/django-cors-headers/django-cors-headers-3.2.1.ebuild +++ b/dev-python/django-cors-headers/django-cors-headers-3.2.1.ebuild @@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_6 python3_7 ) inherit distutils-r1 DESCRIPTION="Django App that adds CORS (Cross-Origin Resource Sharing) headers to responses" -HOMEPAGE="https://github.com/ottoyiu/django-cors-headers" +HOMEPAGE="https://github.com/adamchainz/django-cors-headers" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" diff --git a/dev-python/django-cors-headers/metadata.xml b/dev-python/django-cors-headers/metadata.xml index c36c37139fad..5080a409e510 100644 --- a/dev-python/django-cors-headers/metadata.xml +++ b/dev-python/django-cors-headers/metadata.xml @@ -5,4 +5,8 @@ williamh@gentoo.org William Hubbs + + adamchainz/django-cors-headers + django-cors-headers + diff --git a/dev-python/django-debug-toolbar/django-debug-toolbar-3.1.ebuild b/dev-python/django-debug-toolbar/django-debug-toolbar-3.1.ebuild index 5f9abc451510..e0aa5296f38e 100644 --- a/dev-python/django-debug-toolbar/django-debug-toolbar-3.1.ebuild +++ b/dev-python/django-debug-toolbar/django-debug-toolbar-3.1.ebuild @@ -10,8 +10,8 @@ inherit distutils-r1 DESCRIPTION="A configurable set of panels that display debug information" HOMEPAGE=" https://pypi.org/project/django-debug-toolbar/ - https://github.com/django-debug-toolbar/django-debug-toolbar/" -SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + https://github.com/jazzband/django-debug-toolbar/" +SRC_URI="https://github.com/jazzband/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" SLOT="0" LICENSE="BSD" diff --git a/dev-python/django-debug-toolbar/metadata.xml b/dev-python/django-debug-toolbar/metadata.xml index c3f31e955609..77f1654b40b6 100644 --- a/dev-python/django-debug-toolbar/metadata.xml +++ b/dev-python/django-debug-toolbar/metadata.xml @@ -1,11 +1,12 @@ - - python@gentoo.org - Python - - - django-debug-toolbar/django-debug-toolbar - + + python@gentoo.org + Python + + + jazzband/django-debug-toolbar + django-debug-toolbar + diff --git a/dev-python/django-extensions/metadata.xml b/dev-python/django-extensions/metadata.xml index 8bd0580ba2e8..c7d9d99dfedf 100644 --- a/dev-python/django-extensions/metadata.xml +++ b/dev-python/django-extensions/metadata.xml @@ -6,5 +6,6 @@ django-extensions + django-extensions/django-extensions diff --git a/dev-python/django-filter/metadata.xml b/dev-python/django-filter/metadata.xml index c36c37139fad..94af350f2260 100644 --- a/dev-python/django-filter/metadata.xml +++ b/dev-python/django-filter/metadata.xml @@ -5,4 +5,7 @@ williamh@gentoo.org William Hubbs + + django-filter + diff --git a/dev-python/django-gravatar2/metadata.xml b/dev-python/django-gravatar2/metadata.xml index ce6b295c28a4..04e8636b56bd 100644 --- a/dev-python/django-gravatar2/metadata.xml +++ b/dev-python/django-gravatar2/metadata.xml @@ -6,5 +6,6 @@ django-gravatar2 + twaddington/django-gravatar diff --git a/dev-python/django-js-asset/metadata.xml b/dev-python/django-js-asset/metadata.xml index c36c37139fad..1aca95d47fd8 100644 --- a/dev-python/django-js-asset/metadata.xml +++ b/dev-python/django-js-asset/metadata.xml @@ -5,4 +5,7 @@ williamh@gentoo.org William Hubbs + + django-js-asset + diff --git a/dev-python/django-mptt/metadata.xml b/dev-python/django-mptt/metadata.xml index c36c37139fad..515395136cd5 100644 --- a/dev-python/django-mptt/metadata.xml +++ b/dev-python/django-mptt/metadata.xml @@ -5,4 +5,7 @@ williamh@gentoo.org William Hubbs + + django-mptt + diff --git a/dev-python/django-pglocks/metadata.xml b/dev-python/django-pglocks/metadata.xml index c36c37139fad..00fa937a6b35 100644 --- a/dev-python/django-pglocks/metadata.xml +++ b/dev-python/django-pglocks/metadata.xml @@ -5,4 +5,7 @@ williamh@gentoo.org William Hubbs + + django-pglocks + diff --git a/dev-python/django-prometheus/metadata.xml b/dev-python/django-prometheus/metadata.xml index c36c37139fad..b4bca3123fc1 100644 --- a/dev-python/django-prometheus/metadata.xml +++ b/dev-python/django-prometheus/metadata.xml @@ -5,4 +5,7 @@ williamh@gentoo.org William Hubbs + + django-prometheus + diff --git a/dev-python/django-redis/django-redis-4.10.0.ebuild b/dev-python/django-redis/django-redis-4.10.0.ebuild index cdd13fa9c909..58ee6c87a0cd 100644 --- a/dev-python/django-redis/django-redis-4.10.0.ebuild +++ b/dev-python/django-redis/django-redis-4.10.0.ebuild @@ -7,8 +7,8 @@ PYTHON_COMPAT=( python3_{7,8} ) inherit distutils-r1 -DESCRIPTION="Full featured redis cache backend for Django." -HOMEPAGE="https://github.com/niwinz/django-redis" +DESCRIPTION="Full featured redis cache backend for Django" +HOMEPAGE="https://github.com/jazzband/django-redis/" SRC_URI="mirror://pypi/${PN:0:1}"/${PN}/${P}.tar.gz LICENSE="BSD" diff --git a/dev-python/django-redis/metadata.xml b/dev-python/django-redis/metadata.xml index c36c37139fad..e093c7994dc6 100644 --- a/dev-python/django-redis/metadata.xml +++ b/dev-python/django-redis/metadata.xml @@ -5,4 +5,8 @@ williamh@gentoo.org William Hubbs + + jazzband/django-redis + django-redis + diff --git a/dev-python/django-rq/metadata.xml b/dev-python/django-rq/metadata.xml index c36c37139fad..14eafe988a39 100644 --- a/dev-python/django-rq/metadata.xml +++ b/dev-python/django-rq/metadata.xml @@ -5,4 +5,7 @@ williamh@gentoo.org William Hubbs + + django-rq + diff --git a/dev-python/django-sortedm2m/metadata.xml b/dev-python/django-sortedm2m/metadata.xml index 4f0804843856..c0a692f6f379 100644 --- a/dev-python/django-sortedm2m/metadata.xml +++ b/dev-python/django-sortedm2m/metadata.xml @@ -1,11 +1,12 @@ - - python@gentoo.org - Python - - - django-sortedm2m - + + python@gentoo.org + Python + + + django-sortedm2m + jazzband/django-sortedm2m + diff --git a/dev-python/django-taggit-serializer/metadata.xml b/dev-python/django-taggit-serializer/metadata.xml index c36c37139fad..c9b586832afd 100644 --- a/dev-python/django-taggit-serializer/metadata.xml +++ b/dev-python/django-taggit-serializer/metadata.xml @@ -5,4 +5,7 @@ williamh@gentoo.org William Hubbs + + django-taggit-serializer + diff --git a/dev-python/django-taggit/metadata.xml b/dev-python/django-taggit/metadata.xml index c36c37139fad..5cbf891ae812 100644 --- a/dev-python/django-taggit/metadata.xml +++ b/dev-python/django-taggit/metadata.xml @@ -5,4 +5,7 @@ williamh@gentoo.org William Hubbs + + django-taggit + diff --git a/dev-python/django-timezone-field/metadata.xml b/dev-python/django-timezone-field/metadata.xml index c36c37139fad..46a2959005e1 100644 --- a/dev-python/django-timezone-field/metadata.xml +++ b/dev-python/django-timezone-field/metadata.xml @@ -5,4 +5,7 @@ williamh@gentoo.org William Hubbs + + django-timezone-field + diff --git a/dev-python/django_polymorphic/metadata.xml b/dev-python/django_polymorphic/metadata.xml index 0e637b8f044f..6e9f777e1ed6 100644 --- a/dev-python/django_polymorphic/metadata.xml +++ b/dev-python/django_polymorphic/metadata.xml @@ -1,11 +1,11 @@ - - python@gentoo.org - Python - - - django_polymorphic - + + python@gentoo.org + Python + + + django-polymorphic + diff --git a/dev-python/djangorestframework/metadata.xml b/dev-python/djangorestframework/metadata.xml index c36c37139fad..6650f6a06ae6 100644 --- a/dev-python/djangorestframework/metadata.xml +++ b/dev-python/djangorestframework/metadata.xml @@ -5,4 +5,7 @@ williamh@gentoo.org William Hubbs + + djangorestframework + diff --git a/dev-python/dns-lexicon/metadata.xml b/dev-python/dns-lexicon/metadata.xml index f3de5f693ed8..1f03a671c07d 100644 --- a/dev-python/dns-lexicon/metadata.xml +++ b/dev-python/dns-lexicon/metadata.xml @@ -1,8 +1,11 @@ - - patrick@gentoo.org - Patrick Lauer - + + patrick@gentoo.org + Patrick Lauer + + + dns-lexicon + diff --git a/dev-python/docker-py/metadata.xml b/dev-python/docker-py/metadata.xml index 9862fd2de429..da5cbb29397f 100644 --- a/dev-python/docker-py/metadata.xml +++ b/dev-python/docker-py/metadata.xml @@ -1,12 +1,13 @@ - - python@gentoo.org - - - - docker/docker-py - https://github.com/docker/docker-py/issues - + + python@gentoo.org + + + + docker/docker-py + https://github.com/docker/docker-py/issues + docker-py + diff --git a/dev-python/dockerpty/metadata.xml b/dev-python/dockerpty/metadata.xml index a46f63a01b20..3546f36224a9 100644 --- a/dev-python/dockerpty/metadata.xml +++ b/dev-python/dockerpty/metadata.xml @@ -4,5 +4,6 @@ d11wtq/dockerpty + dockerpty diff --git a/dev-python/docutils-glep/metadata.xml b/dev-python/docutils-glep/metadata.xml index 3136117dc036..15e6fc74668c 100644 --- a/dev-python/docutils-glep/metadata.xml +++ b/dev-python/docutils-glep/metadata.xml @@ -10,4 +10,7 @@ Python + + docutils-glep + diff --git a/dev-python/docutils/docutils-0.16-r1.ebuild b/dev-python/docutils/docutils-0.16-r1.ebuild index 1e418f79f501..d650f51f93f8 100644 --- a/dev-python/docutils/docutils-0.16-r1.ebuild +++ b/dev-python/docutils/docutils-0.16-r1.ebuild @@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 ) inherit distutils-r1 DESCRIPTION="Python Documentation Utilities" -HOMEPAGE="https://docutils.sourceforge.net/ https://pypi.org/project/docutils/" +HOMEPAGE="https://docutils.sourceforge.io/ https://pypi.org/project/docutils/" #SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" diff --git a/dev-python/docutils/metadata.xml b/dev-python/docutils/metadata.xml index bf89c00057a7..dba061c24c9b 100644 --- a/dev-python/docutils/metadata.xml +++ b/dev-python/docutils/metadata.xml @@ -8,5 +8,6 @@ docutils + docutils diff --git a/dev-python/doublex-expects/metadata.xml b/dev-python/doublex-expects/metadata.xml index 2a41f4498fe9..30114c42b2c0 100644 --- a/dev-python/doublex-expects/metadata.xml +++ b/dev-python/doublex-expects/metadata.xml @@ -4,5 +4,6 @@ jaimegildesagredo/doublex-expects + doublex-expects diff --git a/dev-python/drf-yasg/metadata.xml b/dev-python/drf-yasg/metadata.xml index d162bd623caf..4a091e4f1cf4 100644 --- a/dev-python/drf-yasg/metadata.xml +++ b/dev-python/drf-yasg/metadata.xml @@ -10,4 +10,7 @@ Enable swagger spec validation using swagger-spec-validator + + drf-yasg + diff --git a/dev-python/duecredit/metadata.xml b/dev-python/duecredit/metadata.xml index 4da5669f0f1e..91a1ddc68208 100644 --- a/dev-python/duecredit/metadata.xml +++ b/dev-python/duecredit/metadata.xml @@ -11,5 +11,6 @@ duecredit/duecredit + duecredit diff --git a/dev-python/easyprocess/metadata.xml b/dev-python/easyprocess/metadata.xml index d22e99d73577..987795a65110 100644 --- a/dev-python/easyprocess/metadata.xml +++ b/dev-python/easyprocess/metadata.xml @@ -9,4 +9,7 @@ proxy-maint@gentoo.org Proxy Maintainers + + EasyProcess + diff --git a/dev-python/ebuildtester/metadata.xml b/dev-python/ebuildtester/metadata.xml index 3622a638273e..17fead7d2c14 100644 --- a/dev-python/ebuildtester/metadata.xml +++ b/dev-python/ebuildtester/metadata.xml @@ -4,4 +4,7 @@ nicolasbock@gentoo.org + + ebuildtester + diff --git a/dev-python/editorconfig-core-py/metadata.xml b/dev-python/editorconfig-core-py/metadata.xml index 53919fa69295..3a66b57dd848 100644 --- a/dev-python/editorconfig-core-py/metadata.xml +++ b/dev-python/editorconfig-core-py/metadata.xml @@ -1,4 +1,4 @@ - + @@ -15,5 +15,6 @@ editorconfig/editorconfig-core-test + EditorConfig diff --git a/dev-python/elasticsearch-curator/elasticsearch-curator-5.8.1-r1.ebuild b/dev-python/elasticsearch-curator/elasticsearch-curator-5.8.1-r1.ebuild index 06dbb51b1e7b..faa31514609d 100644 --- a/dev-python/elasticsearch-curator/elasticsearch-curator-5.8.1-r1.ebuild +++ b/dev-python/elasticsearch-curator/elasticsearch-curator-5.8.1-r1.ebuild @@ -11,8 +11,8 @@ ES_VERSION="7.3.2" inherit distutils-r1 DESCRIPTION="Tending time-series indices in Elasticsearch" -HOMEPAGE="https://github.com/elasticsearch/curator" -SRC_URI="https://github.com/elasticsearch/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz +HOMEPAGE="https://github.com/elastic/curator" +SRC_URI="https://github.com/elastic/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz test? ( https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-${ES_VERSION}-linux-x86_64.tar.gz )" LICENSE="Apache-2.0" diff --git a/dev-python/elasticsearch-curator/metadata.xml b/dev-python/elasticsearch-curator/metadata.xml index a85fcc9d3062..31ed8d596996 100644 --- a/dev-python/elasticsearch-curator/metadata.xml +++ b/dev-python/elasticsearch-curator/metadata.xml @@ -1,8 +1,9 @@ - - - elasticsearch/curator - + + + elastic/curator + elasticsearch-curator + diff --git a/dev-python/elasticsearch-py/elasticsearch-py-7.7.0.ebuild b/dev-python/elasticsearch-py/elasticsearch-py-7.7.0.ebuild index 338d6fcaddea..2cae049bcf61 100644 --- a/dev-python/elasticsearch-py/elasticsearch-py-7.7.0.ebuild +++ b/dev-python/elasticsearch-py/elasticsearch-py-7.7.0.ebuild @@ -12,7 +12,7 @@ inherit distutils-r1 MY_PN=${PN/-py/} DESCRIPTION="Official Python low-level client for Elasticsearch" HOMEPAGE="https://github.com/elastic/elasticsearch-py" -SRC_URI="https://github.com/elasticsearch/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz +SRC_URI="https://github.com/elastic/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz test? ( https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-${ES_VERSION}-no-jdk-linux-x86_64.tar.gz )" LICENSE="Apache-2.0" diff --git a/dev-python/elasticsearch-py/metadata.xml b/dev-python/elasticsearch-py/metadata.xml index cf25f2e714e1..ae9502a12af9 100644 --- a/dev-python/elasticsearch-py/metadata.xml +++ b/dev-python/elasticsearch-py/metadata.xml @@ -1,15 +1,16 @@ - - erkiferenc@gmail.com - Ferenc Erki - - - proxy-maint@gentoo.org - Proxy Maintainers - - - elasticsearch/elasticsearch-py - + + erkiferenc@gmail.com + Ferenc Erki + + + proxy-maint@gentoo.org + Proxy Maintainers + + + elastic/elasticsearch-py + elasticsearch7 + diff --git a/dev-python/elementpath/metadata.xml b/dev-python/elementpath/metadata.xml index e59516686a44..75682625977c 100644 --- a/dev-python/elementpath/metadata.xml +++ b/dev-python/elementpath/metadata.xml @@ -5,4 +5,8 @@ python@gentoo.org + + elementpath + sissaschool/elementpath + diff --git a/dev-python/empy/metadata.xml b/dev-python/empy/metadata.xml index 4c43a15ce6f4..a0ad39881470 100644 --- a/dev-python/empy/metadata.xml +++ b/dev-python/empy/metadata.xml @@ -6,4 +6,7 @@ Python + + empy + diff --git a/dev-python/entrypoint2/metadata.xml b/dev-python/entrypoint2/metadata.xml index c12ae293d46d..ba153c9918fe 100644 --- a/dev-python/entrypoint2/metadata.xml +++ b/dev-python/entrypoint2/metadata.xml @@ -10,4 +10,7 @@ Proxy Maintainers + + entrypoint2 + diff --git a/dev-python/entrypoints/metadata.xml b/dev-python/entrypoints/metadata.xml index 843ca0b4843a..8d61c9733361 100644 --- a/dev-python/entrypoints/metadata.xml +++ b/dev-python/entrypoints/metadata.xml @@ -1,22 +1,23 @@ - - sci@gentoo.org - Gentoo Science Project - - - python@gentoo.org - Python - - - - Entry points are a way for Python packages to advertise objects with - some common interface. The most common examples are console_scripts - entry points, which define shell commands by identifying a Python - function to run. - - - takluyver/testpath - + + sci@gentoo.org + Gentoo Science Project + + + python@gentoo.org + Python + + + + Entry points are a way for Python packages to advertise objects with + some common interface. The most common examples are console_scripts + entry points, which define shell commands by identifying a Python + function to run. + + + takluyver/entrypoints + entrypoints + diff --git a/dev-python/exam/metadata.xml b/dev-python/exam/metadata.xml index e782094b1d21..d79043f73e5b 100644 --- a/dev-python/exam/metadata.xml +++ b/dev-python/exam/metadata.xml @@ -1,28 +1,29 @@ - - lssndrbarbieri@gmail.com - Alessandro Barbieri - - - proxy-maint@gentoo.org - Proxy Maintainers - - - fluxx/exam - - + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + proxy-maint@gentoo.org + Proxy Maintainers + + + fluxx/exam + exam + + Exam is a Python toolkit for writing better tests. It aims to remove a lot of the boiler plate testing code one often writes, while still following Python conventions and adhering to the unit testing interface. Aside from the obvious "does the code work?", writings tests has many additional goals and benefits: - If written semantically, reading tests can help demonstrate how the code is supposed to work to other developers. - If quick running, tests provide feedback during development that your changes are working or not having an adverse side effects. - If they're easy to write correctly, developers will write more tests and they will be of a higher quality. + If written semantically, reading tests can help demonstrate how the code is supposed to work to other developers. + If quick running, tests provide feedback during development that your changes are working or not having an adverse side effects. + If they're easy to write correctly, developers will write more tests and they will be of a higher quality. Unfortunately, the common pattern for writing Python unit tests tends to not offer any of these advantages. Often times results in inefficient and unnecessarily obtuse testing code. Additionally, common uses of the mock library can often result in repetitive boiler-plate code or inefficiency during test runs. exam aims to improve the state of Python test writing by providing a toolkit of useful functionality to make writing quick, correct and useful tests and as painless as possible. - + diff --git a/dev-python/executing/metadata.xml b/dev-python/executing/metadata.xml index 266e3f19ca59..9117f7343c32 100644 --- a/dev-python/executing/metadata.xml +++ b/dev-python/executing/metadata.xml @@ -4,4 +4,8 @@ python@gentoo.org + + executing + alexmojaki/executing + diff --git a/dev-python/eyeD3/metadata.xml b/dev-python/eyeD3/metadata.xml index d0913ee5d1cb..0f50ed7380ba 100644 --- a/dev-python/eyeD3/metadata.xml +++ b/dev-python/eyeD3/metadata.xml @@ -5,8 +5,11 @@ sound@gentoo.org Gentoo Sound project - + python@gentoo.org Python + + eyeD3 + diff --git a/dev-python/fakeredis/metadata.xml b/dev-python/fakeredis/metadata.xml index e59516686a44..dfb478e2ea05 100644 --- a/dev-python/fakeredis/metadata.xml +++ b/dev-python/fakeredis/metadata.xml @@ -5,4 +5,8 @@ python@gentoo.org + + fakeredis + jamesls/fakeredis + diff --git a/dev-python/falcon/falcon-2.0.0.ebuild b/dev-python/falcon/falcon-2.0.0.ebuild index 398eac5b72bd..1c9ee79bb282 100644 --- a/dev-python/falcon/falcon-2.0.0.ebuild +++ b/dev-python/falcon/falcon-2.0.0.ebuild @@ -8,8 +8,8 @@ PYTHON_COMPAT=( python3_{6,7,8} ) inherit distutils-r1 DESCRIPTION="A supersonic micro-framework for building cloud APIs" -HOMEPAGE="http://falconframework.org/ https://pypi.org/project/falcon/" -SRC_URI="https://github.com/racker/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +HOMEPAGE="https://falconframework.org/ https://pypi.org/project/falcon/" +SRC_URI="https://github.com/falconry/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" diff --git a/dev-python/falcon/metadata.xml b/dev-python/falcon/metadata.xml index 690e2fa0f23b..d7035d2605e0 100644 --- a/dev-python/falcon/metadata.xml +++ b/dev-python/falcon/metadata.xml @@ -1,14 +1,15 @@ - - rafaelmartins@gentoo.org - Rafael G. Martins - - - Build cython-based python modules - - - racker/falcon - + + rafaelmartins@gentoo.org + Rafael G. Martins + + + Build cython-based python modules + + + falconry/falcon + falcon + diff --git a/dev-python/fastjsonschema/metadata.xml b/dev-python/fastjsonschema/metadata.xml index 266e3f19ca59..b22752a68952 100644 --- a/dev-python/fastjsonschema/metadata.xml +++ b/dev-python/fastjsonschema/metadata.xml @@ -4,4 +4,7 @@ python@gentoo.org + + fastjsonschema + diff --git a/dev-python/fido2/metadata.xml b/dev-python/fido2/metadata.xml index c9ccdc3b158b..3ebed6d78bfc 100644 --- a/dev-python/fido2/metadata.xml +++ b/dev-python/fido2/metadata.xml @@ -1,17 +1,18 @@ - - gokturk@gentoo.org - Göktürk Yüksek - - - fido2 provides library functionality for communicating with a FIDO - device over USB as well as verifying attestation and assertion - signatures. - - - - Yubico/python-fido2 - + + gokturk@gentoo.org + Göktürk Yüksek + + + fido2 provides library functionality for communicating with a FIDO + device over USB as well as verifying attestation and assertion + signatures. + + + + Yubico/python-fido2 + fido2 + diff --git a/dev-python/fields/metadata.xml b/dev-python/fields/metadata.xml index 4391ab4e39cb..bad4b18882fe 100644 --- a/dev-python/fields/metadata.xml +++ b/dev-python/fields/metadata.xml @@ -1,12 +1,13 @@ - + - - python@gentoo.org - Python - - - - ionelmc/python-fields - + + python@gentoo.org + Python + + + + ionelmc/python-fields + fields + diff --git a/dev-python/findimports/metadata.xml b/dev-python/findimports/metadata.xml index 0319eec4c8be..7f668de4daab 100644 --- a/dev-python/findimports/metadata.xml +++ b/dev-python/findimports/metadata.xml @@ -5,4 +5,7 @@ mgorny@gentoo.org Michał Górny + + findimports + diff --git a/dev-python/fitsio/metadata.xml b/dev-python/fitsio/metadata.xml index b7f5bc4ce9ac..c8e0769187f5 100644 --- a/dev-python/fitsio/metadata.xml +++ b/dev-python/fitsio/metadata.xml @@ -1,21 +1,22 @@ - - sci-astronomy@gentoo.org - Gentoo Astronomy Project - - - Fitsio provides an easy to use object-oriented API including - providing a Numpy interface to FITS files read from CFITSIO. It - allows direct access to the columns of a FITS binary table which can - be useful for reading large fits files. Compared to astropy.io.fits, - this package is closer to the underlying cfitsio library. - Fitsio also exposes a microlanguage (implemented in CFITSIO) for - making efficient SQL-like queries of tables (single tables only - though–no joins or anything like that). - - - esheldon/fitsio - + + sci-astronomy@gentoo.org + Gentoo Astronomy Project + + + Fitsio provides an easy to use object-oriented API including + providing a Numpy interface to FITS files read from CFITSIO. It + allows direct access to the columns of a FITS binary table which can + be useful for reading large fits files. Compared to astropy.io.fits, + this package is closer to the underlying cfitsio library. + Fitsio also exposes a microlanguage (implemented in CFITSIO) for + making efficient SQL-like queries of tables (single tables only + though–no joins or anything like that). + + + esheldon/fitsio + fitsio + diff --git a/dev-python/flask-assets/metadata.xml b/dev-python/flask-assets/metadata.xml index 4e3e70575758..804f01c4ec05 100644 --- a/dev-python/flask-assets/metadata.xml +++ b/dev-python/flask-assets/metadata.xml @@ -11,5 +11,6 @@ miracle2k/flask-assets + Flask-Assets diff --git a/dev-python/flask-compress/flask-compress-1.8.0.ebuild b/dev-python/flask-compress/flask-compress-1.8.0.ebuild index 7d2ac7db7239..ca8fa5f18516 100644 --- a/dev-python/flask-compress/flask-compress-1.8.0.ebuild +++ b/dev-python/flask-compress/flask-compress-1.8.0.ebuild @@ -11,7 +11,7 @@ MY_PN="Flask-Compress" MY_P="${MY_PN}-${PV}" DESCRIPTION="Compress responses in your Flask app with gzip" -HOMEPAGE="https://pypi.org/project/Flask-Compress" +HOMEPAGE="https://pypi.org/project/Flask-Compress/" SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" S="${WORKDIR}/${MY_P}" diff --git a/dev-python/flask-compress/metadata.xml b/dev-python/flask-compress/metadata.xml index 7a15dcf1edb8..99b352b321bc 100644 --- a/dev-python/flask-compress/metadata.xml +++ b/dev-python/flask-compress/metadata.xml @@ -11,6 +11,6 @@ - Flask-Gravatar + Flask-Compress diff --git a/dev-python/flask-gravatar/metadata.xml b/dev-python/flask-gravatar/metadata.xml index 09014f03117e..8ecbf7deefaf 100644 --- a/dev-python/flask-gravatar/metadata.xml +++ b/dev-python/flask-gravatar/metadata.xml @@ -11,5 +11,6 @@ Flask-Gravatar + zzzsochi/Flask-Gravatar diff --git a/dev-python/flask-htmlmin/metadata.xml b/dev-python/flask-htmlmin/metadata.xml index ab9923f6c014..8d354fc00558 100644 --- a/dev-python/flask-htmlmin/metadata.xml +++ b/dev-python/flask-htmlmin/metadata.xml @@ -12,5 +12,6 @@ Flask-HTMLmin + hamidfzm/Flask-HTMLmin diff --git a/dev-python/flask-paginate/metadata.xml b/dev-python/flask-paginate/metadata.xml index 35a30be0a275..e0b79d552b46 100644 --- a/dev-python/flask-paginate/metadata.xml +++ b/dev-python/flask-paginate/metadata.xml @@ -1,19 +1,20 @@ - - proxy-maint@gentoo.org - Proxy Maintainers - - - davidroman96@gmail.com - David Roman - - - python@gentoo.org - Python - - - lixxu/flask-paginate - + + proxy-maint@gentoo.org + Proxy Maintainers + + + davidroman96@gmail.com + David Roman + + + python@gentoo.org + Python + + + lixxu/flask-paginate + flask-paginate + diff --git a/dev-python/flask-paranoid/metadata.xml b/dev-python/flask-paranoid/metadata.xml index 9b4a931e5d0c..c80422b6af14 100644 --- a/dev-python/flask-paranoid/metadata.xml +++ b/dev-python/flask-paranoid/metadata.xml @@ -11,5 +11,6 @@ Flask-Paranoid + miguelgrinberg/flask-paranoid diff --git a/dev-python/flask-restful/flask-restful-0.3.8.ebuild b/dev-python/flask-restful/flask-restful-0.3.8.ebuild index f991e3e9ba38..e5302ef6d2c2 100644 --- a/dev-python/flask-restful/flask-restful-0.3.8.ebuild +++ b/dev-python/flask-restful/flask-restful-0.3.8.ebuild @@ -7,8 +7,10 @@ PYTHON_COMPAT=( python3_{6,7,8} ) inherit distutils-r1 DESCRIPTION="Simple framework for creating REST APIs" -HOMEPAGE="https://flask-restful.readthedocs.io/en/latest/ https://github.com/twilio/flask-restful/" -SRC_URI="https://github.com/twilio/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +HOMEPAGE=" + https://flask-restful.readthedocs.io/en/latest/ + https://github.com/flask-restful/flask-restful/" +SRC_URI="https://github.com/flask-restful/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0" diff --git a/dev-python/flask-restful/metadata.xml b/dev-python/flask-restful/metadata.xml index ee91a7f4854b..a1a006d5411b 100644 --- a/dev-python/flask-restful/metadata.xml +++ b/dev-python/flask-restful/metadata.xml @@ -7,6 +7,7 @@ - twilio/flask-restful + flask-restful/flask-restful + Flask-RESTful diff --git a/dev-python/flask-security/metadata.xml b/dev-python/flask-security/metadata.xml index bd009040dd29..1ce44ccf1cd0 100644 --- a/dev-python/flask-security/metadata.xml +++ b/dev-python/flask-security/metadata.xml @@ -7,6 +7,7 @@ - Flask-Security + Flask-Security-Too + Flask-Middleware/flask-security diff --git a/dev-python/flask/metadata.xml b/dev-python/flask/metadata.xml index 5226bafc3906..47e65a882e09 100644 --- a/dev-python/flask/metadata.xml +++ b/dev-python/flask/metadata.xml @@ -8,6 +8,6 @@ Flask - mitsuhiko/flask + pallets/flask diff --git a/dev-python/flatbuffers/metadata.xml b/dev-python/flatbuffers/metadata.xml index 9b133105c87f..fc134ec05d45 100644 --- a/dev-python/flatbuffers/metadata.xml +++ b/dev-python/flatbuffers/metadata.xml @@ -1,11 +1,12 @@ - - dolsen@gentoo.org - Brian Dolbec - - - flatbuffers - + + dolsen@gentoo.org + Brian Dolbec + + + flatbuffers + google/flatbuffers + diff --git a/dev-python/fleep/metadata.xml b/dev-python/fleep/metadata.xml index c8ab1000c5be..9e666fde3716 100644 --- a/dev-python/fleep/metadata.xml +++ b/dev-python/fleep/metadata.xml @@ -8,4 +8,7 @@ zerochaos@gentoo.org Rick Farina + + fleep + diff --git a/dev-python/flufl-bounce/metadata.xml b/dev-python/flufl-bounce/metadata.xml index 3ee70120def4..dc01cb742b0d 100644 --- a/dev-python/flufl-bounce/metadata.xml +++ b/dev-python/flufl-bounce/metadata.xml @@ -8,4 +8,7 @@ prometheanfire@gentoo.org Matthew Thode + + flufl.bounce + diff --git a/dev-python/flufl-i18n/metadata.xml b/dev-python/flufl-i18n/metadata.xml index 3ee70120def4..043b994e6a22 100644 --- a/dev-python/flufl-i18n/metadata.xml +++ b/dev-python/flufl-i18n/metadata.xml @@ -8,4 +8,7 @@ prometheanfire@gentoo.org Matthew Thode + + flufl.i18n + diff --git a/dev-python/flufl-lock/metadata.xml b/dev-python/flufl-lock/metadata.xml index 3ee70120def4..24259133e15d 100644 --- a/dev-python/flufl-lock/metadata.xml +++ b/dev-python/flufl-lock/metadata.xml @@ -8,4 +8,7 @@ prometheanfire@gentoo.org Matthew Thode + + flufl.lock + diff --git a/dev-python/fonttools/metadata.xml b/dev-python/fonttools/metadata.xml index c5af3a50bbc8..2abce01d1b35 100644 --- a/dev-python/fonttools/metadata.xml +++ b/dev-python/fonttools/metadata.xml @@ -12,5 +12,6 @@ fonttools/fonttools + fonttools diff --git a/dev-python/fsspec/metadata.xml b/dev-python/fsspec/metadata.xml index e59516686a44..824c1c73b55a 100644 --- a/dev-python/fsspec/metadata.xml +++ b/dev-python/fsspec/metadata.xml @@ -5,4 +5,8 @@ python@gentoo.org + + fsspec + intake/filesystem_spec + diff --git a/dev-python/funcy/metadata.xml b/dev-python/funcy/metadata.xml index d0e866f244f8..4484fa7a80e4 100644 --- a/dev-python/funcy/metadata.xml +++ b/dev-python/funcy/metadata.xml @@ -5,4 +5,7 @@ tupone@gentoo.org Tupone Alfredo + + funcy + diff --git a/dev-python/fuse-python/metadata.xml b/dev-python/fuse-python/metadata.xml index 514528075df9..eed99a0e5ab6 100644 --- a/dev-python/fuse-python/metadata.xml +++ b/dev-python/fuse-python/metadata.xml @@ -4,5 +4,6 @@ fuse + fuse-python diff --git a/dev-python/fusepy/metadata.xml b/dev-python/fusepy/metadata.xml index de0f4f2e6208..d8c85ddcc34e 100644 --- a/dev-python/fusepy/metadata.xml +++ b/dev-python/fusepy/metadata.xml @@ -11,5 +11,6 @@ fusepy/fusepy + fusepy diff --git a/dev-python/gast/metadata.xml b/dev-python/gast/metadata.xml index ca8e3611427a..6ffee76e7ef4 100644 --- a/dev-python/gast/metadata.xml +++ b/dev-python/gast/metadata.xml @@ -8,4 +8,7 @@ A generic AST to represent Python2 and Python3's Abstract Syntax Tree(AST). GAST provides a compatibility layer between the AST of various Python versions, as produced by ast.parse from the standard ast module. + + gast + diff --git a/dev-python/genshi/metadata.xml b/dev-python/genshi/metadata.xml index ec3c387df89f..026887751ec3 100644 --- a/dev-python/genshi/metadata.xml +++ b/dev-python/genshi/metadata.xml @@ -1,9 +1,12 @@ - - python@gentoo.org - Python - - + + python@gentoo.org + Python + + + + Genshi + diff --git a/dev-python/genson/genson-1.1.0.ebuild b/dev-python/genson/genson-1.1.0.ebuild index df79e572b36c..25bf67b797ee 100644 --- a/dev-python/genson/genson-1.1.0.ebuild +++ b/dev-python/genson/genson-1.1.0.ebuild @@ -10,7 +10,7 @@ DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 DESCRIPTION="GenSON is a powerful, user-friendly JSON Schema generator built in Python" -HOMEPAGE="https://pypi.org/project/genson https://github.com/wolverdude/genson" +HOMEPAGE="https://pypi.org/project/genson/ https://github.com/wolverdude/GenSON/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" diff --git a/dev-python/github3/metadata.xml b/dev-python/github3/metadata.xml index 556e313bfbe8..820467f62456 100644 --- a/dev-python/github3/metadata.xml +++ b/dev-python/github3/metadata.xml @@ -1,4 +1,4 @@ - + @@ -14,5 +14,6 @@ sigmavirus24/github3.py + github3.py diff --git a/dev-python/google-api-core/metadata.xml b/dev-python/google-api-core/metadata.xml index a50ee0d43329..8d2a3f04ef20 100644 --- a/dev-python/google-api-core/metadata.xml +++ b/dev-python/google-api-core/metadata.xml @@ -1,9 +1,12 @@ - - chutzpah@gentoo.org - Patrick McLean - - + + chutzpah@gentoo.org + Patrick McLean + + + + google-api-core + diff --git a/dev-python/google-api-python-client/google-api-python-client-1.8.3-r1.ebuild b/dev-python/google-api-python-client/google-api-python-client-1.8.3-r1.ebuild index ed2b459505d0..b38bf33e28e4 100644 --- a/dev-python/google-api-python-client/google-api-python-client-1.8.3-r1.ebuild +++ b/dev-python/google-api-python-client/google-api-python-client-1.8.3-r1.ebuild @@ -8,8 +8,8 @@ PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 DESCRIPTION="Google API Client for Python" -HOMEPAGE="https://github.com/google/google-api-python-client" -SRC_URI="https://github.com/google/google-api-python-client/archive/v${PV}.tar.gz -> ${P}.tar.gz" +HOMEPAGE="https://github.com/googleapis/google-api-python-client" +SRC_URI="https://github.com/googleapis/google-api-python-client/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" diff --git a/dev-python/google-api-python-client/metadata.xml b/dev-python/google-api-python-client/metadata.xml index 702c609a9e1c..17035ff1c96a 100644 --- a/dev-python/google-api-python-client/metadata.xml +++ b/dev-python/google-api-python-client/metadata.xml @@ -1,12 +1,13 @@ - - robbat2@gentoo.org - Robin H. Johnson - - - - google/google-api-python-client - + + robbat2@gentoo.org + Robin H. Johnson + + + + googleapis/google-api-python-client + google-api-python-client + diff --git a/dev-python/google-apitools/metadata.xml b/dev-python/google-apitools/metadata.xml index 8caccea78d85..4293947c613c 100644 --- a/dev-python/google-apitools/metadata.xml +++ b/dev-python/google-apitools/metadata.xml @@ -1,11 +1,12 @@ - - python@gentoo.org - Python - - - google/apitools - + + python@gentoo.org + Python + + + google/apitools + google-apitools + diff --git a/dev-python/google-auth-oauthlib/metadata.xml b/dev-python/google-auth-oauthlib/metadata.xml index 28caf6379e33..8b0a33ec2229 100644 --- a/dev-python/google-auth-oauthlib/metadata.xml +++ b/dev-python/google-auth-oauthlib/metadata.xml @@ -1,15 +1,16 @@ - - andreacerisara@gmail.com - Andrea Cerisara - - - proxy-maint@gentoo.org - Proxy Maintainers - - - google-auth-oauthlib - + + andreacerisara@gmail.com + Andrea Cerisara + + + proxy-maint@gentoo.org + Proxy Maintainers + + + google-auth-oauthlib + googleapis/google-auth-library-python-oauthlib + diff --git a/dev-python/google-pasta/metadata.xml b/dev-python/google-pasta/metadata.xml index 76f45cdee0f4..84a9c1465ee6 100644 --- a/dev-python/google-pasta/metadata.xml +++ b/dev-python/google-pasta/metadata.xml @@ -5,4 +5,7 @@ perfinion@gentoo.org Jason Zaman + + google-pasta + diff --git a/dev-python/googleapis-common-protos/metadata.xml b/dev-python/googleapis-common-protos/metadata.xml index a50ee0d43329..5d6bf1704c98 100644 --- a/dev-python/googleapis-common-protos/metadata.xml +++ b/dev-python/googleapis-common-protos/metadata.xml @@ -1,9 +1,12 @@ - - chutzpah@gentoo.org - Patrick McLean - - + + chutzpah@gentoo.org + Patrick McLean + + + + googleapis-common-protos + diff --git a/dev-python/graph-tool/metadata.xml b/dev-python/graph-tool/metadata.xml index 9718da9a7a91..693dc1a8e746 100644 --- a/dev-python/graph-tool/metadata.xml +++ b/dev-python/graph-tool/metadata.xml @@ -9,4 +9,7 @@ chr@chymera.eu Horea Christian + + graph-tool + diff --git a/dev-python/greenstalk/greenstalk-1.0.1.ebuild b/dev-python/greenstalk/greenstalk-1.0.1.ebuild index 411e09a24d64..5893528dd00a 100644 --- a/dev-python/greenstalk/greenstalk-1.0.1.ebuild +++ b/dev-python/greenstalk/greenstalk-1.0.1.ebuild @@ -7,8 +7,8 @@ PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 DESCRIPTION="A Python 3 client for the beanstalkd work queue" -HOMEPAGE="https://greenstalk.readthedocs.io/ https://github.com/mayhewj/greenstalk" -SRC_URI="https://github.com/mayhewj/greenstalk/archive/v${PV}.tar.gz -> ${P}.tar.gz" +HOMEPAGE="https://greenstalk.readthedocs.io/ https://github.com/justinmayhew/greenstalk" +SRC_URI="https://github.com/justinmayhew/greenstalk/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" diff --git a/dev-python/greenstalk/metadata.xml b/dev-python/greenstalk/metadata.xml index 1c4b1a9121ed..ee3916a8ff89 100644 --- a/dev-python/greenstalk/metadata.xml +++ b/dev-python/greenstalk/metadata.xml @@ -1,8 +1,9 @@ - - - mayhewj/greenstalk - + + + greenstalk + justinmayhew/greenstalk + diff --git a/dev-python/gsd/metadata.xml b/dev-python/gsd/metadata.xml index b68a232b6ca7..99d3a572301c 100644 --- a/dev-python/gsd/metadata.xml +++ b/dev-python/gsd/metadata.xml @@ -9,4 +9,7 @@ alexxy@gentoo.org Alexey Shvetsov + + gsd + diff --git a/dev-python/gst-python/metadata.xml b/dev-python/gst-python/metadata.xml index af143d8096cb..42b76fdc5c1b 100644 --- a/dev-python/gst-python/metadata.xml +++ b/dev-python/gst-python/metadata.xml @@ -1,8 +1,8 @@ - - gstreamer@gentoo.org - GStreamer package maintainers - + + gstreamer@gentoo.org + GStreamer package maintainers + diff --git a/dev-python/h11/h11-0.11.0.ebuild b/dev-python/h11/h11-0.11.0.ebuild index f61bd104ce99..daca33b59cec 100644 --- a/dev-python/h11/h11-0.11.0.ebuild +++ b/dev-python/h11/h11-0.11.0.ebuild @@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_{6,7,8,9} ) inherit distutils-r1 DESCRIPTION="A pure-Python implementation of HTTP/1.1 inspired by hyper-h2" -HOMEPAGE="https://github.com/python-hyper/h11 https://pypi.python.org/pypi/h11" +HOMEPAGE="https://github.com/python-hyper/h11/ https://pypi.org/project/h11/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" diff --git a/dev-python/h11/metadata.xml b/dev-python/h11/metadata.xml index 7f4f33c6dbc9..ecb8704c96cd 100644 --- a/dev-python/h11/metadata.xml +++ b/dev-python/h11/metadata.xml @@ -5,4 +5,8 @@ python@gentoo.org Python + + h11 + python-hyper/h11 + diff --git a/dev-python/hcloud-python/metadata.xml b/dev-python/hcloud-python/metadata.xml index 7520bcc3afb8..31093cd149cb 100644 --- a/dev-python/hcloud-python/metadata.xml +++ b/dev-python/hcloud-python/metadata.xml @@ -1,11 +1,12 @@ - - ago@gentoo.org - Agostino Sarubbo - - - hetznercloud/hcloud-python - + + ago@gentoo.org + Agostino Sarubbo + + + hetznercloud/hcloud-python + hcloud + diff --git a/dev-python/helpdev/metadata.xml b/dev-python/helpdev/metadata.xml index dd0bd9c021f6..27e26cd85d06 100644 --- a/dev-python/helpdev/metadata.xml +++ b/dev-python/helpdev/metadata.xml @@ -1,13 +1,15 @@ - - - andrewammerlaan@riseup.net - Andrew Ammerlaan - - - proxy-maint@gentoo.org - Proxy Maintainers - + + andrewammerlaan@riseup.net + Andrew Ammerlaan + + + proxy-maint@gentoo.org + Proxy Maintainers + + + helpdev + diff --git a/dev-python/httmock/metadata.xml b/dev-python/httmock/metadata.xml index 459fa77374fb..c9f398947158 100644 --- a/dev-python/httmock/metadata.xml +++ b/dev-python/httmock/metadata.xml @@ -4,5 +4,6 @@ patrys/httmock + httmock diff --git a/dev-python/httpbin/metadata.xml b/dev-python/httpbin/metadata.xml index 0c31c1889018..0ca90e9907ed 100644 --- a/dev-python/httpbin/metadata.xml +++ b/dev-python/httpbin/metadata.xml @@ -1,17 +1,13 @@ - - python@gentoo.org - Python - - - - httpbin - - httpbin@runscope.com - Runscope - - Runscope/httpbin - + + python@gentoo.org + Python + + + + httpbin + postmanlabs/httpbin + diff --git a/dev-python/httpstat/metadata.xml b/dev-python/httpstat/metadata.xml index 2dcc864feab4..6a6902f9156c 100644 --- a/dev-python/httpstat/metadata.xml +++ b/dev-python/httpstat/metadata.xml @@ -8,5 +8,6 @@ https://github.com/reorx/httpstat/issues reorx/httpstat + httpstat diff --git a/dev-python/humanfriendly/humanfriendly-8.2.ebuild b/dev-python/humanfriendly/humanfriendly-8.2.ebuild index a918f9d2b315..1eaf2ac1e2e7 100644 --- a/dev-python/humanfriendly/humanfriendly-8.2.ebuild +++ b/dev-python/humanfriendly/humanfriendly-8.2.ebuild @@ -11,9 +11,9 @@ DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 DESCRIPTION="Human friendly output for text interfaces using Python" -HOMEPAGE="https://pypi.org/project/humanfriendly - https://github.com/xolox/python-humanfriendly - https://humanfriendly.readthedocs.org" +HOMEPAGE="https://pypi.org/project/humanfriendly/ + https://github.com/xolox/python-humanfriendly/ + https://humanfriendly.readthedocs.io/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" SLOT="0" diff --git a/dev-python/humanfriendly/metadata.xml b/dev-python/humanfriendly/metadata.xml index 10691287e903..963d1abe79b3 100644 --- a/dev-python/humanfriendly/metadata.xml +++ b/dev-python/humanfriendly/metadata.xml @@ -1,11 +1,12 @@ - - python@gentoo.org - Python - - - humanfriendly - + + python@gentoo.org + Python + + + humanfriendly + xolox/python-humanfriendly + diff --git a/dev-python/hyperframe/metadata.xml b/dev-python/hyperframe/metadata.xml index 3734e16b4ba4..0e12dd0b6e31 100644 --- a/dev-python/hyperframe/metadata.xml +++ b/dev-python/hyperframe/metadata.xml @@ -11,6 +11,7 @@ Cory Benfield hyperframe + python-hyper/hyperframe This library contains the HTTP/2 framing code used in the diff --git a/dev-python/hyperlink/metadata.xml b/dev-python/hyperlink/metadata.xml index 1650d8471c01..cec9c78c27cf 100644 --- a/dev-python/hyperlink/metadata.xml +++ b/dev-python/hyperlink/metadata.xml @@ -11,7 +11,8 @@ mahmoud@hatnote.com Mahmoud Hashemi - hyperframe + hyperlink + python-hyper/hyperlink The humble, but powerful, URL runs everything around us. diff --git a/dev-python/hypothesis/Manifest b/dev-python/hypothesis/Manifest index ed01c31dacef..56ee4a0bf079 100644 --- a/dev-python/hypothesis/Manifest +++ b/dev-python/hypothesis/Manifest @@ -6,3 +6,4 @@ DIST hypothesis-python-5.41.5.tar.gz 9098660 BLAKE2B 6caa742d34a3a2aeb6c6fdec3f8 DIST hypothesis-python-5.43.0.tar.gz 9103047 BLAKE2B c9c8262fb32dfdb48b52ad11cd18f907d488802f1af04d7677e260abf24598afd5f89bf3f1a42c919460d5ea48b1d6979da5215ef9877260c601b133076bbd05 SHA512 129760a9c58f264e25c403fcacf9e1ab41267faee637856230341a91d6965a6c2fd05b9a8a12b6977377f8abc26ed7151384ad08195b03ddf62e8445b216eacf DIST hypothesis-python-5.43.1.tar.gz 9103292 BLAKE2B aa718b98c7a0e16322cbde38f0768e5ccf6716e2cd08aa97b5ed4d36c7ed9565e5ccba76443d74d253adff557918400ec384ee39c630523a31356c80dce15622 SHA512 428a7f1cfb379ebb3d3bea01727ad1633d2e591bea00de15d7967856af8b1aaa9371d278e51be9a0a902adaeff63215a2e87205309f058e371f6ad331737a11f DIST hypothesis-python-5.43.2.tar.gz 9103806 BLAKE2B 7ef4bfdcd12782a3445d5094ab5111b305743c1c11afd33f3f615e6fd863192cff37c9df7b42052a83d55ee16d570adfb08f1e1c610697f2c2a3295cf09528fa SHA512 c348568f00ce66c6cb53398a7f9b471ffa686cb9c4a4180ac00ba0edae76404c0a7e182f5df8a3c0738b9379f79bfb4b89fdb94bfe3529313a9a3c243a2658ae +DIST hypothesis-python-5.43.3.tar.gz 9103991 BLAKE2B e374edf17571c33e48dc8d259db2fb23b9cc358f56189ebd60f3e9141ade7759eede1bdbd91d924f144a20b1ea0b7ec19817559b7f82a90f026ac101a7feeabd SHA512 392fb794fc5ba06acd1e465cf1500f742d8b056148540778f1ec9c5065be66c0f514f0fa6872337869079636c71235d51d4c6722a63b03037b689edd6f09809f diff --git a/dev-python/hypothesis/hypothesis-5.41.1.ebuild b/dev-python/hypothesis/hypothesis-5.41.1.ebuild index a18c69ab7a35..dcca3c3635dc 100644 --- a/dev-python/hypothesis/hypothesis-5.41.1.ebuild +++ b/dev-python/hypothesis/hypothesis-5.41.1.ebuild @@ -16,7 +16,7 @@ S="${WORKDIR}/${PN}-${PN}-python-${PV}/${PN}-python" LICENSE="MPL-2.0" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~ia64 ppc ppc64 ~riscv sparc x86" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86" IUSE="cli test" RESTRICT="!test? ( test )" diff --git a/dev-python/hypothesis/hypothesis-5.43.3.ebuild b/dev-python/hypothesis/hypothesis-5.43.3.ebuild new file mode 100644 index 000000000000..7cd8e4bcc527 --- /dev/null +++ b/dev-python/hypothesis/hypothesis-5.43.3.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS=rdepend +PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 ) +PYTHON_REQ_USE="threads(+),sqlite" + +inherit distutils-r1 eutils multiprocessing optfeature + +DESCRIPTION="A library for property based testing" +HOMEPAGE="https://github.com/HypothesisWorks/hypothesis https://pypi.org/project/hypothesis/" +SRC_URI="https://github.com/HypothesisWorks/${PN}/archive/${PN}-python-${PV}.tar.gz" +S="${WORKDIR}/${PN}-${PN}-python-${PV}/${PN}-python" + +LICENSE="MPL-2.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos" +IUSE="cli test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-python/attrs-19.2.0[${PYTHON_USEDEP}] + >=dev-python/sortedcontainers-2.1.0[${PYTHON_USEDEP}] + cli? ( + $(python_gen_cond_dep ' + dev-python/black[${PYTHON_USEDEP}] + dev-python/click[${PYTHON_USEDEP}] + ' python3_{6..9}) + ) +" +BDEPEND=" + test? ( + ${RDEPEND} + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pexpect[${PYTHON_USEDEP}] + >=dev-python/pytest-5.3.5[${PYTHON_USEDEP}] + dev-python/pytest-xdist[${PYTHON_USEDEP}] + !!prometheanfire@gentoo.org Matthew Thode + + ifaddr + diff --git a/dev-python/imageio/metadata.xml b/dev-python/imageio/metadata.xml index a698d92e5532..47a765c2f283 100644 --- a/dev-python/imageio/metadata.xml +++ b/dev-python/imageio/metadata.xml @@ -17,5 +17,6 @@ imageio/imageio + imageio diff --git a/dev-python/imapclient/metadata.xml b/dev-python/imapclient/metadata.xml index 918bf0e26c80..810750331cb1 100644 --- a/dev-python/imapclient/metadata.xml +++ b/dev-python/imapclient/metadata.xml @@ -7,5 +7,6 @@ IMAPClient + mjs/imapclient diff --git a/dev-python/iniconfig/metadata.xml b/dev-python/iniconfig/metadata.xml index 266e3f19ca59..7b11afae1bb5 100644 --- a/dev-python/iniconfig/metadata.xml +++ b/dev-python/iniconfig/metadata.xml @@ -4,4 +4,7 @@ python@gentoo.org + + iniconfig + diff --git a/dev-python/ioflo/metadata.xml b/dev-python/ioflo/metadata.xml index 3273120e4e7c..e648c6f51e34 100644 --- a/dev-python/ioflo/metadata.xml +++ b/dev-python/ioflo/metadata.xml @@ -1,15 +1,16 @@ - - chutzpah@gentoo.org - Patrick McLean - - - python@gentoo.org - Python - - - ioflo/ioflo - + + chutzpah@gentoo.org + Patrick McLean + + + python@gentoo.org + Python + + + ioflo/ioflo + ioflo + diff --git a/dev-python/itypes/itypes-1.1.0.ebuild b/dev-python/itypes/itypes-1.1.0.ebuild index 49a1f431da60..77145fda65bf 100644 --- a/dev-python/itypes/itypes-1.1.0.ebuild +++ b/dev-python/itypes/itypes-1.1.0.ebuild @@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 DESCRIPTION="basic immutable container types for python" -HOMEPAGE="https://github.com/tomchristie/itypes" +HOMEPAGE="https://github.com/PavanTatikonda/itypes" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" diff --git a/dev-python/itypes/metadata.xml b/dev-python/itypes/metadata.xml index c36c37139fad..7b8ffca6831b 100644 --- a/dev-python/itypes/metadata.xml +++ b/dev-python/itypes/metadata.xml @@ -5,4 +5,8 @@ williamh@gentoo.org William Hubbs + + PavanTatikonda/itypes + itypes + diff --git a/dev-python/jaraco-context/metadata.xml b/dev-python/jaraco-context/metadata.xml index 7f4f33c6dbc9..1450a0c4f114 100644 --- a/dev-python/jaraco-context/metadata.xml +++ b/dev-python/jaraco-context/metadata.xml @@ -5,4 +5,7 @@ python@gentoo.org Python + + jaraco.context + diff --git a/dev-python/jsonext/metadata.xml b/dev-python/jsonext/metadata.xml index 3ee70120def4..909536b074ce 100644 --- a/dev-python/jsonext/metadata.xml +++ b/dev-python/jsonext/metadata.xml @@ -8,4 +8,7 @@ prometheanfire@gentoo.org Matthew Thode + + jsonext + diff --git a/dev-python/jsonrpclib/metadata.xml b/dev-python/jsonrpclib/metadata.xml index 1c7bba27c5da..db4bd215b0a9 100644 --- a/dev-python/jsonrpclib/metadata.xml +++ b/dev-python/jsonrpclib/metadata.xml @@ -1,16 +1,17 @@ - - blueness@gentoo.org - Anthony G. Basile - - - python@gentoo.org - Python - - - - tcalmant/jsonrpclib - + + blueness@gentoo.org + Anthony G. Basile + + + python@gentoo.org + Python + + + + tcalmant/jsonrpclib + jsonrpclib + diff --git a/dev-python/junit-xml/metadata.xml b/dev-python/junit-xml/metadata.xml index 266e3f19ca59..ec10daf2a6bc 100644 --- a/dev-python/junit-xml/metadata.xml +++ b/dev-python/junit-xml/metadata.xml @@ -4,4 +4,8 @@ python@gentoo.org + + junit-xml + kyrus/python-junit-xml + diff --git a/dev-python/jupyterlab_pygments/metadata.xml b/dev-python/jupyterlab_pygments/metadata.xml index f97ba7497b13..704b86b0536a 100644 --- a/dev-python/jupyterlab_pygments/metadata.xml +++ b/dev-python/jupyterlab_pygments/metadata.xml @@ -1,12 +1,13 @@ - - python@gentoo.org - Python - - - - jupyterlab/jupyterlab_pygments - + + python@gentoo.org + Python + + + + jupyterlab/jupyterlab_pygments + jupyterlab-pygments + diff --git a/dev-python/kaptan/metadata.xml b/dev-python/kaptan/metadata.xml index 56cae167d372..c0014ed738bb 100644 --- a/dev-python/kaptan/metadata.xml +++ b/dev-python/kaptan/metadata.xml @@ -1,8 +1,11 @@ - - chutzpah@gentoo.org - Patrick McLean - + + chutzpah@gentoo.org + Patrick McLean + + + kaptan + diff --git a/dev-python/kconfiglib/metadata.xml b/dev-python/kconfiglib/metadata.xml index 1e8fb02d3209..58a75ad63532 100644 --- a/dev-python/kconfiglib/metadata.xml +++ b/dev-python/kconfiglib/metadata.xml @@ -1,8 +1,9 @@ - + ulfalizer/Kconfiglib + kconfiglib diff --git a/dev-python/latexcodec/latexcodec-2.0.0.ebuild b/dev-python/latexcodec/latexcodec-2.0.0.ebuild index d3f8bec601bf..eb517529d165 100644 --- a/dev-python/latexcodec/latexcodec-2.0.0.ebuild +++ b/dev-python/latexcodec/latexcodec-2.0.0.ebuild @@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_{6,7,8} ) inherit distutils-r1 DESCRIPTION="Lexer and codec to work with LaTeX code in Python" -HOMEPAGE="https://github.com/mcmtroffaes/latexcodec/ https://pypi.org/project/pybtex/" +HOMEPAGE="https://github.com/mcmtroffaes/latexcodec/ https://pypi.org/project/latexcodec/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" diff --git a/dev-python/lazr-config/metadata.xml b/dev-python/lazr-config/metadata.xml index 3ee70120def4..6edd3801988f 100644 --- a/dev-python/lazr-config/metadata.xml +++ b/dev-python/lazr-config/metadata.xml @@ -8,4 +8,7 @@ prometheanfire@gentoo.org Matthew Thode + + lazr.config + diff --git a/dev-python/lazr-delegates/lazr-delegates-2.0.4.ebuild b/dev-python/lazr-delegates/lazr-delegates-2.0.4.ebuild index 26ee52990e7c..6fd425e7e89a 100644 --- a/dev-python/lazr-delegates/lazr-delegates-2.0.4.ebuild +++ b/dev-python/lazr-delegates/lazr-delegates-2.0.4.ebuild @@ -10,7 +10,7 @@ inherit distutils-r1 MY_PN=${PN/-/.} DESCRIPTION="Easily write objects that delegate behavior" -HOMEPAGE="https://code.launchpad.net/lazr.deletages" +HOMEPAGE="https://code.launchpad.net/lazr.delegates" SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz" S="${WORKDIR}/${MY_PN}-${PV}" diff --git a/dev-python/lazr-delegates/metadata.xml b/dev-python/lazr-delegates/metadata.xml index 3ee70120def4..ca82a0d0b4a9 100644 --- a/dev-python/lazr-delegates/metadata.xml +++ b/dev-python/lazr-delegates/metadata.xml @@ -8,4 +8,7 @@ prometheanfire@gentoo.org Matthew Thode + + lazr.delegates + diff --git a/dev-python/lcdproc/metadata.xml b/dev-python/lcdproc/metadata.xml index e62d5c1a6a04..7be5fe20082d 100644 --- a/dev-python/lcdproc/metadata.xml +++ b/dev-python/lcdproc/metadata.xml @@ -12,5 +12,6 @@ https://github.com/jinglemansweep/lcdproc/issues jinglemansweep/lcdproc + lcdproc diff --git a/dev-python/liblarch/metadata.xml b/dev-python/liblarch/metadata.xml index e9c1e606613c..85f6916eb38f 100644 --- a/dev-python/liblarch/metadata.xml +++ b/dev-python/liblarch/metadata.xml @@ -10,6 +10,6 @@ Liblarch supports multiple views of one data structure and complex filtering. That way, you have a clear separation between your data themselves (Model) and how they are displayed (View). - liblarch/liblarch + getting-things-gnome/liblarch diff --git a/dev-python/libpy_simdjson/metadata.xml b/dev-python/libpy_simdjson/metadata.xml index cee379b15409..a2b84c6311a1 100644 --- a/dev-python/libpy_simdjson/metadata.xml +++ b/dev-python/libpy_simdjson/metadata.xml @@ -5,4 +5,7 @@ chutzpah@gentoo.org Patrick McLean + + libpy-simdjson + diff --git a/dev-python/libsass/metadata.xml b/dev-python/libsass/metadata.xml index dd0bd9c021f6..2bcd0001e9b1 100644 --- a/dev-python/libsass/metadata.xml +++ b/dev-python/libsass/metadata.xml @@ -1,13 +1,15 @@ - - - andrewammerlaan@riseup.net - Andrew Ammerlaan - - - proxy-maint@gentoo.org - Proxy Maintainers - + + andrewammerlaan@riseup.net + Andrew Ammerlaan + + + proxy-maint@gentoo.org + Proxy Maintainers + + + libsass + diff --git a/dev-python/libtmux/metadata.xml b/dev-python/libtmux/metadata.xml index 56cae167d372..f8886f632e52 100644 --- a/dev-python/libtmux/metadata.xml +++ b/dev-python/libtmux/metadata.xml @@ -1,8 +1,11 @@ - - chutzpah@gentoo.org - Patrick McLean - + + chutzpah@gentoo.org + Patrick McLean + + + libtmux + diff --git a/dev-python/lit/metadata.xml b/dev-python/lit/metadata.xml index 89c4bdb96049..9f9e9cb580d9 100644 --- a/dev-python/lit/metadata.xml +++ b/dev-python/lit/metadata.xml @@ -4,4 +4,7 @@ llvm@gentoo.org + + lit + diff --git a/dev-python/livereload/metadata.xml b/dev-python/livereload/metadata.xml index 5a0914daffe9..21b4756a086d 100644 --- a/dev-python/livereload/metadata.xml +++ b/dev-python/livereload/metadata.xml @@ -11,5 +11,6 @@ lepture/python-livereload + livereload diff --git a/dev-python/lmfit/metadata.xml b/dev-python/lmfit/metadata.xml index 020b40648ee8..3b1d3048e0a5 100644 --- a/dev-python/lmfit/metadata.xml +++ b/dev-python/lmfit/metadata.xml @@ -4,4 +4,7 @@ pacho@gentoo.org + + lmfit + diff --git a/dev-python/logbook/metadata.xml b/dev-python/logbook/metadata.xml index 8490647c2fb9..afcd9f5e9ebe 100644 --- a/dev-python/logbook/metadata.xml +++ b/dev-python/logbook/metadata.xml @@ -1,16 +1,16 @@ - - a.zuber@gmx.ch - Andreas Zuber - - - proxy-maint@gentoo.org - Proxy Maintainers - - - Logbook - mitsuhiko/logbook - + + a.zuber@gmx.ch + Andreas Zuber + + + proxy-maint@gentoo.org + Proxy Maintainers + + + Logbook + getlogbook/logbook + diff --git a/dev-python/loky/metadata.xml b/dev-python/loky/metadata.xml index 266e3f19ca59..d826a22b20c5 100644 --- a/dev-python/loky/metadata.xml +++ b/dev-python/loky/metadata.xml @@ -4,4 +4,7 @@ python@gentoo.org + + loky + diff --git a/dev-python/lunr/metadata.xml b/dev-python/lunr/metadata.xml index 5a0914daffe9..749310d9a909 100644 --- a/dev-python/lunr/metadata.xml +++ b/dev-python/lunr/metadata.xml @@ -11,5 +11,6 @@ lepture/python-livereload + lunr diff --git a/dev-python/lxml/metadata.xml b/dev-python/lxml/metadata.xml index ed72c69d7530..d041f72bd36a 100644 --- a/dev-python/lxml/metadata.xml +++ b/dev-python/lxml/metadata.xml @@ -1,11 +1,12 @@ - - python@gentoo.org - Python - - - lxml - + + python@gentoo.org + Python + + + lxml + lxml/lxml + diff --git a/dev-python/lz4/metadata.xml b/dev-python/lz4/metadata.xml index 503d76895130..8ec21efc87d1 100644 --- a/dev-python/lz4/metadata.xml +++ b/dev-python/lz4/metadata.xml @@ -1,15 +1,15 @@ - - prometheanfire@gentoo.org - - - python@gentoo.org - Python - - - lz4 - steeve/python-lz4 - + + prometheanfire@gentoo.org + + + python@gentoo.org + Python + + + lz4 + python-lz4/python-lz4 + diff --git a/dev-python/mako/metadata.xml b/dev-python/mako/metadata.xml index cadb6a16b5ab..28fadba7c330 100644 --- a/dev-python/mako/metadata.xml +++ b/dev-python/mako/metadata.xml @@ -1,14 +1,14 @@ - - python@gentoo.org - Python - - - - mako - sqlalchemy/mako - https://github.com/sqlalchemy/mako/issues - + + python@gentoo.org + Python + + + + Mako + sqlalchemy/mako + https://github.com/sqlalchemy/mako/issues + diff --git a/dev-python/mando/mando-0.6.4.ebuild b/dev-python/mando/mando-0.6.4.ebuild index 6beb7fda2860..bb31bb9e4bd4 100644 --- a/dev-python/mando/mando-0.6.4.ebuild +++ b/dev-python/mando/mando-0.6.4.ebuild @@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_{6,7,8} ) inherit distutils-r1 DESCRIPTION="Create Python CLI apps with little to no effort at all!" -HOMEPAGE="https://mando.readthedocs.org/ https://github.com/rubik/mando" +HOMEPAGE="https://mando.readthedocs.io/ https://github.com/rubik/mando/" SRC_URI="https://github.com/rubik/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" diff --git a/dev-python/mando/metadata.xml b/dev-python/mando/metadata.xml index 90a9955a56b1..ca797ab51e36 100644 --- a/dev-python/mando/metadata.xml +++ b/dev-python/mando/metadata.xml @@ -4,5 +4,6 @@ rubik/mando + mando diff --git a/dev-python/markdown/metadata.xml b/dev-python/markdown/metadata.xml index 367b46477ac9..c0df0fb62a2f 100644 --- a/dev-python/markdown/metadata.xml +++ b/dev-python/markdown/metadata.xml @@ -1,13 +1,13 @@ - - python@gentoo.org - Python - - - - Markdown - waylan/Python-Markdown - + + python@gentoo.org + Python + + + + Markdown + Python-Markdown/markdown + diff --git a/dev-python/markdown2/markdown2-2.3.10.ebuild b/dev-python/markdown2/markdown2-2.3.10.ebuild index 6cbc3ac52606..eb5e7f9d0eb3 100644 --- a/dev-python/markdown2/markdown2-2.3.10.ebuild +++ b/dev-python/markdown2/markdown2-2.3.10.ebuild @@ -13,7 +13,7 @@ HOMEPAGE="https://github.com/trentm/python-markdown2" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~amd64 ppc sparc ~x86 ~amd64-linux ~x86-linux" RDEPEND="dev-python/pygments[${PYTHON_USEDEP}]" diff --git a/dev-python/matterhook/metadata.xml b/dev-python/matterhook/metadata.xml index 4c76899f3eeb..95c54986ef29 100644 --- a/dev-python/matterhook/metadata.xml +++ b/dev-python/matterhook/metadata.xml @@ -1,11 +1,12 @@ - - ultrabug@gentoo.org - - - - numberly/matterhook - + + ultrabug@gentoo.org + + + + numberly/matterhook + matterhook + diff --git a/dev-python/mdx_gh_links/metadata.xml b/dev-python/mdx_gh_links/metadata.xml index d22e99d73577..ffb6095beaa8 100644 --- a/dev-python/mdx_gh_links/metadata.xml +++ b/dev-python/mdx_gh_links/metadata.xml @@ -9,4 +9,7 @@ proxy-maint@gentoo.org Proxy Maintainers + + mdx_gh_links + diff --git a/dev-python/mecab-python/metadata.xml b/dev-python/mecab-python/metadata.xml index 82adca0f7b81..0f7251470f3a 100644 --- a/dev-python/mecab-python/metadata.xml +++ b/dev-python/mecab-python/metadata.xml @@ -9,5 +9,6 @@ taku910/mecab mecab mecab + mecab-python diff --git a/dev-python/mechanize/metadata.xml b/dev-python/mechanize/metadata.xml index cc33db8a685e..b5b7f28a7b62 100644 --- a/dev-python/mechanize/metadata.xml +++ b/dev-python/mechanize/metadata.xml @@ -1,21 +1,22 @@ - - python@gentoo.org - Python - - - mechanize is a Python module for static programmatic web browsing in - Python, after Andy Lester's Perl module WWW::Mechanize. With the Browser - subclass any url can be opened - not just http - and UserAgentBase - offers easy dynamic configuration of user-agent features like protocol, - cookie, redirection and robots.txt handling. Other functionalities - include easy HTML form filling using ClientForm interface, convenient - link parsing and following, browser history with .back() and .reload() - methods and automatic handling of HTTP-Equiv and Refresh. - - - wwwsearch - + + python@gentoo.org + Python + + + mechanize is a Python module for static programmatic web browsing in + Python, after Andy Lester's Perl module WWW::Mechanize. With the Browser + subclass any url can be opened - not just http - and UserAgentBase + offers easy dynamic configuration of user-agent features like protocol, + cookie, redirection and robots.txt handling. Other functionalities + include easy HTML form filling using ClientForm interface, convenient + link parsing and following, browser history with .back() and .reload() + methods and automatic handling of HTTP-Equiv and Refresh. + + + wwwsearch + mechanize + diff --git a/dev-python/mediafile/metadata.xml b/dev-python/mediafile/metadata.xml index 994b84bcc45d..d1864821cd5f 100644 --- a/dev-python/mediafile/metadata.xml +++ b/dev-python/mediafile/metadata.xml @@ -11,5 +11,6 @@ beetbox/mediafile + mediafile diff --git a/dev-python/micawber/metadata.xml b/dev-python/micawber/metadata.xml index 740d13d52312..51ec6ca51d93 100644 --- a/dev-python/micawber/metadata.xml +++ b/dev-python/micawber/metadata.xml @@ -1,11 +1,12 @@ - - python@gentoo.org - Python - - - coleifer/micawber - + + python@gentoo.org + Python + + + coleifer/micawber + micawber + diff --git a/dev-python/mimerender/metadata.xml b/dev-python/mimerender/metadata.xml index 14833db55be2..9aee8e0d5516 100644 --- a/dev-python/mimerender/metadata.xml +++ b/dev-python/mimerender/metadata.xml @@ -7,5 +7,6 @@ mimerender + martinblech/mimerender diff --git a/dev-python/miniupnpc/metadata.xml b/dev-python/miniupnpc/metadata.xml index 998965a402cd..54d17516bff8 100644 --- a/dev-python/miniupnpc/metadata.xml +++ b/dev-python/miniupnpc/metadata.xml @@ -1,8 +1,11 @@ - - mgorny@gentoo.org - Michał Górny - + + mgorny@gentoo.org + Michał Górny + + + miniupnpc + diff --git a/dev-python/mkdocs-bootstrap/metadata.xml b/dev-python/mkdocs-bootstrap/metadata.xml index dffd79f75c7e..6e06cfa5f1f8 100644 --- a/dev-python/mkdocs-bootstrap/metadata.xml +++ b/dev-python/mkdocs-bootstrap/metadata.xml @@ -1,4 +1,4 @@ - + @@ -11,5 +11,6 @@ mkdocs-bootstrap + mkdocs/mkdocs-bootstrap diff --git a/dev-python/mkdocs-bootswatch/metadata.xml b/dev-python/mkdocs-bootswatch/metadata.xml index 7255a4f3bc43..af2e042302e1 100644 --- a/dev-python/mkdocs-bootswatch/metadata.xml +++ b/dev-python/mkdocs-bootswatch/metadata.xml @@ -1,4 +1,4 @@ - + @@ -11,5 +11,6 @@ mkdocs-bootswatch + mkdocs/mkdocs-bootswatch diff --git a/dev-python/mkdocs/metadata.xml b/dev-python/mkdocs/metadata.xml index 5d57d454ac2f..8284d44ebea4 100644 --- a/dev-python/mkdocs/metadata.xml +++ b/dev-python/mkdocs/metadata.xml @@ -10,6 +10,7 @@ Proxy Maintainers - tomchristie/mkdocs + mkdocs/mkdocs + mkdocs diff --git a/dev-python/mmtf-python/metadata.xml b/dev-python/mmtf-python/metadata.xml index e4904232b6f2..8c129ea8bb2e 100644 --- a/dev-python/mmtf-python/metadata.xml +++ b/dev-python/mmtf-python/metadata.xml @@ -11,5 +11,6 @@ rcsb/mmtf-python + mmtf-python diff --git a/dev-python/mongoengine/metadata.xml b/dev-python/mongoengine/metadata.xml index f96ee66ae8b3..1fa49211b39d 100644 --- a/dev-python/mongoengine/metadata.xml +++ b/dev-python/mongoengine/metadata.xml @@ -1,11 +1,12 @@ - - python@gentoo.org - Python - - - MongoEngine/mongoengine - + + python@gentoo.org + Python + + + MongoEngine/mongoengine + mongoengine + diff --git a/dev-python/moviepy/metadata.xml b/dev-python/moviepy/metadata.xml index 2d8df5034830..3168f6c9453e 100644 --- a/dev-python/moviepy/metadata.xml +++ b/dev-python/moviepy/metadata.xml @@ -17,5 +17,6 @@ Zulko/moviepy + moviepy diff --git a/dev-python/mpdlcd/metadata.xml b/dev-python/mpdlcd/metadata.xml index 47a1342d704b..cf6906910be0 100644 --- a/dev-python/mpdlcd/metadata.xml +++ b/dev-python/mpdlcd/metadata.xml @@ -15,5 +15,6 @@ https://github.com/rbarrois/mpdlcd/issues rbarrois/mpdlcd + mpdlcd diff --git a/dev-python/msgpack/metadata.xml b/dev-python/msgpack/metadata.xml index aef3152754b4..fde6cfdeaac7 100644 --- a/dev-python/msgpack/metadata.xml +++ b/dev-python/msgpack/metadata.xml @@ -1,18 +1,18 @@ - - python@gentoo.org - Python - - - msgpack-python - msgpack/msgpack-python - - - - Compiles native "C" extensions (speedups, instead of using python - fallback code). - - + + python@gentoo.org + Python + + + msgpack/msgpack-python + msgpack + + + + Compiles native "C" extensions (speedups, instead of using python + fallback code). + + diff --git a/dev-python/mss/metadata.xml b/dev-python/mss/metadata.xml index d22e99d73577..33e44966d1b3 100644 --- a/dev-python/mss/metadata.xml +++ b/dev-python/mss/metadata.xml @@ -9,4 +9,7 @@ proxy-maint@gentoo.org Proxy Maintainers + + mss + diff --git a/dev-python/multidict/metadata.xml b/dev-python/multidict/metadata.xml index 3d66a95ddcf0..73a1bb0ceb7f 100644 --- a/dev-python/multidict/metadata.xml +++ b/dev-python/multidict/metadata.xml @@ -1,4 +1,4 @@ - + @@ -11,5 +11,6 @@ aio-libs/multidict + multidict diff --git a/dev-python/mygpoclient/metadata.xml b/dev-python/mygpoclient/metadata.xml index 920281b72fbe..20e1365b4c74 100644 --- a/dev-python/mygpoclient/metadata.xml +++ b/dev-python/mygpoclient/metadata.xml @@ -1,12 +1,15 @@ - - sound@gentoo.org - Gentoo Sound project - - - python@gentoo.org - Python - + + sound@gentoo.org + Gentoo Sound project + + + python@gentoo.org + Python + + + mygpoclient + diff --git a/dev-python/mypy_extensions/metadata.xml b/dev-python/mypy_extensions/metadata.xml index ddbd57b96d8e..bcdc78cd8238 100644 --- a/dev-python/mypy_extensions/metadata.xml +++ b/dev-python/mypy_extensions/metadata.xml @@ -7,6 +7,7 @@ - python/mypy_extesions + python/mypy_extensions + mypy-extensions diff --git a/dev-python/mysql-connector-python/metadata.xml b/dev-python/mysql-connector-python/metadata.xml index 5487ad62c5e1..e0ade4ef344e 100644 --- a/dev-python/mysql-connector-python/metadata.xml +++ b/dev-python/mysql-connector-python/metadata.xml @@ -1,12 +1,15 @@ - - mysql-bugs@gentoo.org - MySQL - - - python@gentoo.org - Python - + + mysql-bugs@gentoo.org + MySQL + + + python@gentoo.org + Python + + + mysql-connector-python + diff --git a/dev-python/neovim-remote/metadata.xml b/dev-python/neovim-remote/metadata.xml index 0c432dd1d7b2..847453aa122f 100644 --- a/dev-python/neovim-remote/metadata.xml +++ b/dev-python/neovim-remote/metadata.xml @@ -9,4 +9,7 @@ proxy-maint@gentoo.org Proxy Maintainers + + neovim-remote + diff --git a/dev-python/nltk/metadata.xml b/dev-python/nltk/metadata.xml index 7cfca4fc39ac..6562cf1e955a 100644 --- a/dev-python/nltk/metadata.xml +++ b/dev-python/nltk/metadata.xml @@ -1,13 +1,13 @@ - - python@gentoo.org - Python - - - nltk - nltk - + + python@gentoo.org + Python + + + nltk + nltk + nltk/nltk + - diff --git a/dev-python/nnpy/metadata.xml b/dev-python/nnpy/metadata.xml index aa31df7c4341..4ae30afb0f71 100644 --- a/dev-python/nnpy/metadata.xml +++ b/dev-python/nnpy/metadata.xml @@ -1,4 +1,4 @@ - + @@ -7,5 +7,6 @@ nanomsg/nnpy + nnpy diff --git a/dev-python/node-semver/metadata.xml b/dev-python/node-semver/metadata.xml index b3e552861741..94f09142203f 100644 --- a/dev-python/node-semver/metadata.xml +++ b/dev-python/node-semver/metadata.xml @@ -15,7 +15,6 @@ node-semver - podhmo/python-semver - https://github.com/podhmo/python-semver/issues + npm/node-semver diff --git a/dev-python/nodeenv/metadata.xml b/dev-python/nodeenv/metadata.xml index 8df7ead50ee9..bdb9e7f72df4 100644 --- a/dev-python/nodeenv/metadata.xml +++ b/dev-python/nodeenv/metadata.xml @@ -1,11 +1,12 @@ - - monsieurp@gentoo.org - Patrice Clement - - - ekalinin/nodeenv - + + monsieurp@gentoo.org + Patrice Clement + + + ekalinin/nodeenv + nodeenv + diff --git a/dev-python/nose2/metadata.xml b/dev-python/nose2/metadata.xml index 684f51f49353..507e890c359f 100644 --- a/dev-python/nose2/metadata.xml +++ b/dev-python/nose2/metadata.xml @@ -1,8 +1,9 @@ - + nose-devs/nose2 + nose2 diff --git a/dev-python/nototools/nototools-0.2.13.ebuild b/dev-python/nototools/nototools-0.2.13.ebuild index b48bf9dfb3da..fe9dc691005d 100644 --- a/dev-python/nototools/nototools-0.2.13.ebuild +++ b/dev-python/nototools/nototools-0.2.13.ebuild @@ -12,7 +12,7 @@ MY_PN="notofonttools" MY_P="${MY_PN}-${PV}" DESCRIPTION="Noto fonts support tools and scripts plus web site generation" -HOMEPAGE="https://github.com/googlei18n/nototools" +HOMEPAGE="https://github.com/googlefonts/nototools" #SRC_URI="https://github.com/googlefonts/nototools/archive/v${PV}.tar.gz -> ${P}.tar.gz" SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz" diff --git a/dev-python/ntlm-auth/metadata.xml b/dev-python/ntlm-auth/metadata.xml index 68bde49cc71f..779742f9d395 100644 --- a/dev-python/ntlm-auth/metadata.xml +++ b/dev-python/ntlm-auth/metadata.xml @@ -11,5 +11,6 @@ ntlm-auth + jborean93/ntlm-auth diff --git a/dev-python/nuitka/metadata.xml b/dev-python/nuitka/metadata.xml index 50c557ea4749..1fe2db787345 100644 --- a/dev-python/nuitka/metadata.xml +++ b/dev-python/nuitka/metadata.xml @@ -1,21 +1,22 @@ - - Oz Tiram - oz.tiram@gmail.com - - - proxy-maint@gentoo.org - Proxy Maintainers - - - Python compiler with full language support and CPython compatibility - This Python compiler achieves full language compatibility and compiles Python - code into compiled objects that are not second class at all. Instead they can - be used in the same way as pure Python objects. - - - Nuitka/Nuitka - + + Oz Tiram + oz.tiram@gmail.com + + + proxy-maint@gentoo.org + Proxy Maintainers + + + Python compiler with full language support and CPython compatibility + This Python compiler achieves full language compatibility and compiles Python + code into compiled objects that are not second class at all. Instead they can + be used in the same way as pure Python objects. + + + Nuitka/Nuitka + Nuitka + diff --git a/dev-python/numpy/numpy-1.19.4.ebuild b/dev-python/numpy/numpy-1.19.4.ebuild index c9b4392b079b..e18320d1bf13 100644 --- a/dev-python/numpy/numpy-1.19.4.ebuild +++ b/dev-python/numpy/numpy-1.19.4.ebuild @@ -24,7 +24,7 @@ SRC_URI=" )" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="doc lapack" RDEPEND=" diff --git a/dev-python/oauth2client/metadata.xml b/dev-python/oauth2client/metadata.xml index 84013d57af40..28ef25289206 100644 --- a/dev-python/oauth2client/metadata.xml +++ b/dev-python/oauth2client/metadata.xml @@ -1,12 +1,13 @@ - - python@gentoo.org - Python - - - - googleapis/oauth2client - + + python@gentoo.org + Python + + + + googleapis/oauth2client + oauth2client + diff --git a/dev-python/oauthlib/metadata.xml b/dev-python/oauthlib/metadata.xml index ce755adad218..22ae9fda5336 100644 --- a/dev-python/oauthlib/metadata.xml +++ b/dev-python/oauthlib/metadata.xml @@ -1,12 +1,12 @@ - - python@gentoo.org - Python - - - oauthlib - oauthlib/oauthlib - + + python@gentoo.org + Python + + + oauthlib + oauthlib/oauthlib + diff --git a/dev-python/oauthlib/oauthlib-3.1.0.ebuild b/dev-python/oauthlib/oauthlib-3.1.0.ebuild index 45791c624a97..e702e83304a2 100644 --- a/dev-python/oauthlib/oauthlib-3.1.0.ebuild +++ b/dev-python/oauthlib/oauthlib-3.1.0.ebuild @@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_{6,7,8} ) inherit distutils-r1 DESCRIPTION="Spec-compliant and thorough implementation of the OAuth request-signing logic" -HOMEPAGE="https://github.com/ioauthlib/oauthlib https://pypi.org/project/oauthlib/" +HOMEPAGE="https://github.com/oauthlib/oauthlib https://pypi.org/project/oauthlib/" SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" diff --git a/dev-python/odfpy/metadata.xml b/dev-python/odfpy/metadata.xml index eb4477be8452..f952ae688764 100644 --- a/dev-python/odfpy/metadata.xml +++ b/dev-python/odfpy/metadata.xml @@ -7,5 +7,6 @@ odfpy + eea/odfpy diff --git a/dev-python/opt-einsum/metadata.xml b/dev-python/opt-einsum/metadata.xml index 93afd7bb77ad..92050163befe 100644 --- a/dev-python/opt-einsum/metadata.xml +++ b/dev-python/opt-einsum/metadata.xml @@ -8,4 +8,7 @@ Optimizing einsum functions in NumPy, Tensorflow, Dask, and more with contraction order optimization. + + opt-einsum + diff --git a/dev-python/os-diskconfig-python-novaclient-ext/metadata.xml b/dev-python/os-diskconfig-python-novaclient-ext/metadata.xml index 23ac45501758..34927faa5730 100644 --- a/dev-python/os-diskconfig-python-novaclient-ext/metadata.xml +++ b/dev-python/os-diskconfig-python-novaclient-ext/metadata.xml @@ -1,12 +1,12 @@ - - prometheanfire@gentoo.org - Matthew Thode - - - os_diskconfig_python_novaclient_ext - rackspace/os_diskconfig_python_novaclient_ext - + + prometheanfire@gentoo.org + Matthew Thode + + + os_diskconfig_python_novaclient_ext + rackerlabs/os_diskconfig_python_novaclient_ext + diff --git a/dev-python/oslo-rootwrap/oslo-rootwrap-6.2.0.ebuild b/dev-python/oslo-rootwrap/oslo-rootwrap-6.2.0.ebuild index 5f1b470af9ed..9c2d8066199e 100644 --- a/dev-python/oslo-rootwrap/oslo-rootwrap-6.2.0.ebuild +++ b/dev-python/oslo-rootwrap/oslo-rootwrap-6.2.0.ebuild @@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_{7,8} ) inherit distutils-r1 DESCRIPTION="Allows fine filtering of shell commands to run as root from OpenStack services" -HOMEPAGE="https://pypi.org/project/oslo.config/" +HOMEPAGE="https://pypi.org/project/oslo.rootwrap/" SRC_URI="mirror://pypi/${PN:0:1}/oslo.rootwrap/oslo.rootwrap-${PV}.tar.gz" S="${WORKDIR}/oslo.rootwrap-${PV}" diff --git a/dev-python/osrf_pycommon/metadata.xml b/dev-python/osrf_pycommon/metadata.xml index b48cc9c2c50e..e726c5a74008 100644 --- a/dev-python/osrf_pycommon/metadata.xml +++ b/dev-python/osrf_pycommon/metadata.xml @@ -7,5 +7,6 @@ osrf/osrf_pycommon + osrf-pycommon diff --git a/dev-python/ovsdbapp/metadata.xml b/dev-python/ovsdbapp/metadata.xml index 631e40d11e7e..fcfaa55e7514 100644 --- a/dev-python/ovsdbapp/metadata.xml +++ b/dev-python/ovsdbapp/metadata.xml @@ -9,4 +9,7 @@ Matthew Thode + + ovsdbapp + diff --git a/dev-python/owslib/metadata.xml b/dev-python/owslib/metadata.xml index 01e0addb55f2..8d25693e1f30 100644 --- a/dev-python/owslib/metadata.xml +++ b/dev-python/owslib/metadata.xml @@ -11,5 +11,6 @@ geopython/OWSLib + OWSLib diff --git a/dev-python/owslib/owslib-0.20.0.ebuild b/dev-python/owslib/owslib-0.20.0.ebuild index b34690b142dc..7349839b7ad3 100644 --- a/dev-python/owslib/owslib-0.20.0.ebuild +++ b/dev-python/owslib/owslib-0.20.0.ebuild @@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_{7,8,9} ) inherit distutils-r1 DESCRIPTION="Library for client programming with Open Geospatial Consortium web service" -HOMEPAGE="https://geopython.github.io/OWSLib" +HOMEPAGE="https://geopython.github.io/OWSLib/" SRC_URI="https://github.com/geopython/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" S="${WORKDIR}/OWSLib-${PV}" diff --git a/dev-python/paho-mqtt/metadata.xml b/dev-python/paho-mqtt/metadata.xml index d09bbcbb0d9c..21bd771b3389 100644 --- a/dev-python/paho-mqtt/metadata.xml +++ b/dev-python/paho-mqtt/metadata.xml @@ -1,4 +1,4 @@ - + @@ -7,5 +7,6 @@ eclipse/paho.mqtt.python + paho-mqtt diff --git a/dev-python/pallets-sphinx-themes/metadata.xml b/dev-python/pallets-sphinx-themes/metadata.xml index 8c8ac13155bf..5181bb3dd815 100644 --- a/dev-python/pallets-sphinx-themes/metadata.xml +++ b/dev-python/pallets-sphinx-themes/metadata.xml @@ -7,5 +7,6 @@ Pallets-Sphinx-Themes + pallets/pallets-sphinx-themes diff --git a/dev-python/parameterized/metadata.xml b/dev-python/parameterized/metadata.xml index f728eac91cc9..d0639ce03a36 100644 --- a/dev-python/parameterized/metadata.xml +++ b/dev-python/parameterized/metadata.xml @@ -1,7 +1,10 @@ - + amynka@gentoo.org + + parameterized + diff --git a/dev-python/parameterized/parameterized-0.7.4.ebuild b/dev-python/parameterized/parameterized-0.7.4.ebuild index 3a9214d03bf5..0cfdd6a297cc 100644 --- a/dev-python/parameterized/parameterized-0.7.4.ebuild +++ b/dev-python/parameterized/parameterized-0.7.4.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~sparc x86" BDEPEND=" test? ( diff --git a/dev-python/parametrized/metadata.xml b/dev-python/parametrized/metadata.xml index f728eac91cc9..4ee04ac6121b 100644 --- a/dev-python/parametrized/metadata.xml +++ b/dev-python/parametrized/metadata.xml @@ -1,7 +1,10 @@ - + amynka@gentoo.org + + parametrized + diff --git a/dev-python/parver/metadata.xml b/dev-python/parver/metadata.xml index 5e56e5f88b96..30d7ff25a6fc 100644 --- a/dev-python/parver/metadata.xml +++ b/dev-python/parver/metadata.xml @@ -10,5 +10,6 @@ RazerM/parver https://parver.readthedocs.io/en/latest/ https://github.com/RazerM/parver/issues + parver diff --git a/dev-python/path-py/metadata.xml b/dev-python/path-py/metadata.xml index ca5305593200..f7c4a269b621 100644 --- a/dev-python/path-py/metadata.xml +++ b/dev-python/path-py/metadata.xml @@ -1,13 +1,13 @@ - - python@gentoo.org - Python - - - - path.py - jaraco/path.py - + + python@gentoo.org + Python + + + + path + jaraco/path + diff --git a/dev-python/pebble/metadata.xml b/dev-python/pebble/metadata.xml index 266e3f19ca59..a85b840f9d1d 100644 --- a/dev-python/pebble/metadata.xml +++ b/dev-python/pebble/metadata.xml @@ -4,4 +4,8 @@ python@gentoo.org + + Pebble + noxdafox/pebble + diff --git a/dev-python/peewee/metadata.xml b/dev-python/peewee/metadata.xml index 739a565c3106..a16d70d51adc 100644 --- a/dev-python/peewee/metadata.xml +++ b/dev-python/peewee/metadata.xml @@ -1,11 +1,12 @@ - - python@gentoo.org - Python - - - coleifer/peewee - + + python@gentoo.org + Python + + + coleifer/peewee + peewee + diff --git a/dev-python/pelican-minify/metadata.xml b/dev-python/pelican-minify/metadata.xml index 3ee70120def4..a1db0cd41474 100644 --- a/dev-python/pelican-minify/metadata.xml +++ b/dev-python/pelican-minify/metadata.xml @@ -8,4 +8,7 @@ prometheanfire@gentoo.org Matthew Thode + + pelican-minify + diff --git a/dev-python/pep8/metadata.xml b/dev-python/pep8/metadata.xml index 5a52c4a85bad..2eb1288b3c1e 100644 --- a/dev-python/pep8/metadata.xml +++ b/dev-python/pep8/metadata.xml @@ -8,6 +8,6 @@ pep8 - jcrocholl/pep8 + PyCQA/pycodestyle diff --git a/dev-python/pep8/pep8-1.7.1.ebuild b/dev-python/pep8/pep8-1.7.1.ebuild index b8c60182e655..82e6438930b1 100644 --- a/dev-python/pep8/pep8-1.7.1.ebuild +++ b/dev-python/pep8/pep8-1.7.1.ebuild @@ -9,7 +9,7 @@ PYTHON_COMPAT=( python3_{6,7,8} pypy3 ) inherit distutils-r1 DESCRIPTION="Python style guide checker" -HOMEPAGE="https://github.com/PyCQA/pep8 https://pypi.org/project/pep8/" +HOMEPAGE="https://github.com/PyCQA/pycodestyle/ https://pypi.org/project/pep8/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" diff --git a/dev-python/pew/metadata.xml b/dev-python/pew/metadata.xml index ad399639de19..04d8b5b9b5f6 100644 --- a/dev-python/pew/metadata.xml +++ b/dev-python/pew/metadata.xml @@ -1,15 +1,16 @@ - - python@gentoo.org - Python - - - pew - - berdario+pypi@gmail.com - Dario Bertini - - + + python@gentoo.org + Python + + + pew + + berdario+pypi@gmail.com + Dario Bertini + + berdario/pew + diff --git a/dev-python/pgspecial/metadata.xml b/dev-python/pgspecial/metadata.xml index 8b85d401f4e9..b02c554129ab 100644 --- a/dev-python/pgspecial/metadata.xml +++ b/dev-python/pgspecial/metadata.xml @@ -1,20 +1,21 @@ - - andreacerisara@gmail.com - Andrea Cerisara - - - proxy-maint@gentoo.org - Proxy Maintainers - - - PGSpecial provides an API to execute meta-commands - (AKA "special", or "backslash commands") on PostgreSQL. - - - - dbcli/pgspecial - + + andreacerisara@gmail.com + Andrea Cerisara + + + proxy-maint@gentoo.org + Proxy Maintainers + + + PGSpecial provides an API to execute meta-commands + (AKA "special", or "backslash commands") on PostgreSQL. + + + + dbcli/pgspecial + pgspecial + diff --git a/dev-python/piexif/metadata.xml b/dev-python/piexif/metadata.xml index 82b7b7953794..ca0382cd67ba 100644 --- a/dev-python/piexif/metadata.xml +++ b/dev-python/piexif/metadata.xml @@ -4,4 +4,8 @@ sping@gentoo.org + + piexif + hMatoba/Piexif + diff --git a/dev-python/pipenv/metadata.xml b/dev-python/pipenv/metadata.xml index 912ba1f0a50b..cc9727b55cdf 100644 --- a/dev-python/pipenv/metadata.xml +++ b/dev-python/pipenv/metadata.xml @@ -1,19 +1,20 @@ - - oz.tiram@gmail.com - Oz Tiram - - - proxy-maint@gentoo.org - Proxy Maintainers - - - pipenv - - distutils-sig@python.org - Python Packaging Authority - - + + oz.tiram@gmail.com + Oz Tiram + + + proxy-maint@gentoo.org + Proxy Maintainers + + + + distutils-sig@python.org + Python Packaging Authority + + pipenv + pypa/pipenv + diff --git a/dev-python/pluggy/metadata.xml b/dev-python/pluggy/metadata.xml index 972236293061..9ebf29414a3d 100644 --- a/dev-python/pluggy/metadata.xml +++ b/dev-python/pluggy/metadata.xml @@ -1,15 +1,16 @@ - - python@gentoo.org - Python - - - pluggy - - holger@merlinux.eu - Holger Krekel - - + + python@gentoo.org + Python + + + + holger@merlinux.eu + Holger Krekel + + pluggy + pytest-dev/pluggy + diff --git a/dev-python/pluginbase/metadata.xml b/dev-python/pluginbase/metadata.xml index 0610970f98a5..30a59affa3be 100644 --- a/dev-python/pluginbase/metadata.xml +++ b/dev-python/pluginbase/metadata.xml @@ -1,12 +1,12 @@ - - python@gentoo.org - Python - - - pluginbase - mitsuhijo/pluginbase - + + python@gentoo.org + Python + + + pluginbase + mitsuhiko/pluginbase + diff --git a/dev-python/plyr/metadata.xml b/dev-python/plyr/metadata.xml index 1a1144b87cb3..c5c2e533b6cb 100644 --- a/dev-python/plyr/metadata.xml +++ b/dev-python/plyr/metadata.xml @@ -4,8 +4,9 @@ python@gentoo.org Python - + sahib/python-glyr + plyr diff --git a/dev-python/pocketlint/metadata.xml b/dev-python/pocketlint/metadata.xml index 3b45e273367a..3a2291f0bf12 100644 --- a/dev-python/pocketlint/metadata.xml +++ b/dev-python/pocketlint/metadata.xml @@ -1,11 +1,12 @@ - - polynomial-c@gentoo.org - Lars Wendler - - - rhinstaller/pocketlint - + + polynomial-c@gentoo.org + Lars Wendler + + + rhinstaller/pocketlint + pocketlint + diff --git a/dev-python/podcastparser/metadata.xml b/dev-python/podcastparser/metadata.xml index 39626a990be5..9330487cd7fb 100644 --- a/dev-python/podcastparser/metadata.xml +++ b/dev-python/podcastparser/metadata.xml @@ -1,8 +1,11 @@ - - sound@gentoo.org - Gentoo Sound project - + + sound@gentoo.org + Gentoo Sound project + + + podcastparser + diff --git a/dev-python/polygon/metadata.xml b/dev-python/polygon/metadata.xml index 9bc334c95381..d7d0469c0a7a 100644 --- a/dev-python/polygon/metadata.xml +++ b/dev-python/polygon/metadata.xml @@ -10,4 +10,7 @@ Python bindings for gpc, the General Polygon Clipping Library by Alan Murta and some extensions written in C and pure Python. + + Polygon + diff --git a/dev-python/pony/metadata.xml b/dev-python/pony/metadata.xml index 266e3f19ca59..08494c170d29 100644 --- a/dev-python/pony/metadata.xml +++ b/dev-python/pony/metadata.xml @@ -4,4 +4,7 @@ python@gentoo.org + + pony + diff --git a/dev-python/process-tests/metadata.xml b/dev-python/process-tests/metadata.xml index 4c43a15ce6f4..8ed34db5de4e 100644 --- a/dev-python/process-tests/metadata.xml +++ b/dev-python/process-tests/metadata.xml @@ -6,4 +6,8 @@ Python + + process-tests + ionelmc/python-process-tests + diff --git a/dev-python/prometheus_client/metadata.xml b/dev-python/prometheus_client/metadata.xml index fda0ec1e5910..61e60a89a845 100644 --- a/dev-python/prometheus_client/metadata.xml +++ b/dev-python/prometheus_client/metadata.xml @@ -1,11 +1,12 @@ - - python@gentoo.org - Python - - - prometheus/client_python - + + python@gentoo.org + Python + + + prometheus/client_python + prometheus-client + diff --git a/dev-python/prometheus_client/prometheus_client-0.9.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.9.0.ebuild index 173bdca64c55..bc359363a551 100644 --- a/dev-python/prometheus_client/prometheus_client-0.9.0.ebuild +++ b/dev-python/prometheus_client/prometheus_client-0.9.0.ebuild @@ -7,8 +7,8 @@ PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 DESCRIPTION="Python client for the Prometheus monitoring system" -HOMEPAGE="https://pypi.org/project/prometheus_client/ - https://github.com/prometheus/client_python" +HOMEPAGE="https://pypi.org/project/prometheus-client/ + https://github.com/prometheus/client_python/" SRC_URI="https://github.com/prometheus/client_python/archive/v${PV}.tar.gz -> ${P}.tar.gz" S="${WORKDIR}/client_python-${PV}" diff --git a/dev-python/psycopg/psycopg-2.8.6-r1.ebuild b/dev-python/psycopg/psycopg-2.8.6-r1.ebuild index 95cc55f299a2..38933e37a6aa 100644 --- a/dev-python/psycopg/psycopg-2.8.6-r1.ebuild +++ b/dev-python/psycopg/psycopg-2.8.6-r1.ebuild @@ -17,7 +17,7 @@ S=${WORKDIR}/${MY_P} LICENSE="LGPL-3+" SLOT="2" -KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" +KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" IUSE="debug test" RESTRICT="!test? ( test )" diff --git a/dev-python/publicsuffix/metadata.xml b/dev-python/publicsuffix/metadata.xml index 1de14ee2fdcd..c604e58d98ff 100644 --- a/dev-python/publicsuffix/metadata.xml +++ b/dev-python/publicsuffix/metadata.xml @@ -11,4 +11,7 @@ This module allows you to get the public suffix of a domain name using the Public Suffix List from http://publicsuffix.org + + publicsuffix + diff --git a/dev-python/pure-sasl/metadata.xml b/dev-python/pure-sasl/metadata.xml index 3743220e59f3..c36b85044fde 100644 --- a/dev-python/pure-sasl/metadata.xml +++ b/dev-python/pure-sasl/metadata.xml @@ -1,7 +1,10 @@ - - python@gentoo.org - + + python@gentoo.org + + + pure-sasl + diff --git a/dev-python/pweave/metadata.xml b/dev-python/pweave/metadata.xml index 8fc11184ab00..4e2e050964db 100644 --- a/dev-python/pweave/metadata.xml +++ b/dev-python/pweave/metadata.xml @@ -1,4 +1,4 @@ - + @@ -9,4 +9,7 @@ proxy-maint@gentoo.org Proxy Maintainers + + Pweave + diff --git a/dev-python/pweave/pweave-0.30.3-r1.ebuild b/dev-python/pweave/pweave-0.30.3-r1.ebuild index 90ab32fb6192..03a16a520ecf 100644 --- a/dev-python/pweave/pweave-0.30.3-r1.ebuild +++ b/dev-python/pweave/pweave-0.30.3-r1.ebuild @@ -13,7 +13,7 @@ MY_PN="Pweave" MY_P="${MY_PN}-${PV}" DESCRIPTION="Scientific report generator and literate programming tool" -HOMEPAGE="http://mpastell.com/pweave +HOMEPAGE="http://mpastell.com/pweave/ https://github.com/mpastell/Pweave" SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz" diff --git a/dev-python/py-gfm/metadata.xml b/dev-python/py-gfm/metadata.xml index 06b7854e3cea..cab7531a2b41 100644 --- a/dev-python/py-gfm/metadata.xml +++ b/dev-python/py-gfm/metadata.xml @@ -1,11 +1,12 @@ - - python@gentoo.org - Python - - - google/py-gfm - + + python@gentoo.org + Python + + + Zopieux/py-gfm + py-gfm + diff --git a/dev-python/pyFFTW/metadata.xml b/dev-python/pyFFTW/metadata.xml index 5898470d0c54..946e1a15f19c 100644 --- a/dev-python/pyFFTW/metadata.xml +++ b/dev-python/pyFFTW/metadata.xml @@ -11,5 +11,6 @@ pyFFTW/pyFFTW + pyFFTW diff --git a/dev-python/pyalsa/metadata.xml b/dev-python/pyalsa/metadata.xml index 924dc07b5c11..18a797f3b558 100644 --- a/dev-python/pyalsa/metadata.xml +++ b/dev-python/pyalsa/metadata.xml @@ -1,12 +1,15 @@ - - alsa-bugs@gentoo.org - Gentoo ALSA Project - - - python@gentoo.org - Python - + + alsa-bugs@gentoo.org + Gentoo ALSA Project + + + python@gentoo.org + Python + + + pyalsa + diff --git a/dev-python/pyasn1-modules/metadata.xml b/dev-python/pyasn1-modules/metadata.xml index 6b1047bfd28e..c99daf45cd50 100644 --- a/dev-python/pyasn1-modules/metadata.xml +++ b/dev-python/pyasn1-modules/metadata.xml @@ -1,13 +1,13 @@ - - python@gentoo.org - Python - - - - pyasn1-modules - pyasn1 - + + python@gentoo.org + Python + + + + pyasn1-modules + etingof/pyasn1-modules + diff --git a/dev-python/pyasn1-modules/pyasn1-modules-0.2.8-r1.ebuild b/dev-python/pyasn1-modules/pyasn1-modules-0.2.8-r1.ebuild index 1e11ec9f6bb2..7b25a41bee45 100644 --- a/dev-python/pyasn1-modules/pyasn1-modules-0.2.8-r1.ebuild +++ b/dev-python/pyasn1-modules/pyasn1-modules-0.2.8-r1.ebuild @@ -8,7 +8,9 @@ PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 ) inherit distutils-r1 DESCRIPTION="pyasn1 modules" -HOMEPAGE="http://snmplabs.com/pyasn1/ https://github.com/etingof/pyasn1-modules/" +HOMEPAGE=" + https://pypi.org/project/pyasn1-modules/ + https://github.com/etingof/pyasn1-modules/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD-2" diff --git a/dev-python/pyasn1/metadata.xml b/dev-python/pyasn1/metadata.xml index f0c3d55a771d..4d0b9f3334a4 100644 --- a/dev-python/pyasn1/metadata.xml +++ b/dev-python/pyasn1/metadata.xml @@ -8,7 +8,6 @@ pyasn1 - pyasn1 etingof/pyasn1 diff --git a/dev-python/pyasn1/pyasn1-0.4.8-r1.ebuild b/dev-python/pyasn1/pyasn1-0.4.8-r1.ebuild index 02ba13cbe924..3e16da33263a 100644 --- a/dev-python/pyasn1/pyasn1-0.4.8-r1.ebuild +++ b/dev-python/pyasn1/pyasn1-0.4.8-r1.ebuild @@ -8,7 +8,9 @@ PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 ) inherit distutils-r1 DESCRIPTION="ASN.1 library for Python" -HOMEPAGE="http://snmplabs.com/pyasn1/" +HOMEPAGE=" + https://pypi.org/project/pyasn1/ + https://github.com/etingof/pyasn1/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD-2" diff --git a/dev-python/pybind11/metadata.xml b/dev-python/pybind11/metadata.xml index 025838642020..d0a4da3cd941 100644 --- a/dev-python/pybind11/metadata.xml +++ b/dev-python/pybind11/metadata.xml @@ -9,4 +9,7 @@ python@gentoo.org Python + + pybind11 + diff --git a/dev-python/pybluez/metadata.xml b/dev-python/pybluez/metadata.xml index 7ab1c610c038..e778701ea42e 100644 --- a/dev-python/pybluez/metadata.xml +++ b/dev-python/pybluez/metadata.xml @@ -1,4 +1,4 @@ - + @@ -6,7 +6,7 @@ developers to use system bluetooth resources. It works on machines running the GNU/Linux operating system and the bluez bluetooth stack. - karulis/pybluez PyBluez + pybluez/pybluez diff --git a/dev-python/pycairo/metadata.xml b/dev-python/pycairo/metadata.xml index e24dd86faa2a..91515b4585e2 100644 --- a/dev-python/pycairo/metadata.xml +++ b/dev-python/pycairo/metadata.xml @@ -1,8 +1,11 @@ - - python@gentoo.org - Python - + + python@gentoo.org + Python + + + pycairo + diff --git a/dev-python/pycapnp/metadata.xml b/dev-python/pycapnp/metadata.xml index b488f8a61dd2..697bbb7ab941 100644 --- a/dev-python/pycapnp/metadata.xml +++ b/dev-python/pycapnp/metadata.xml @@ -1,16 +1,17 @@ - - aballier@gentoo.org - Alexis Ballier - Python team can take the package if they wish. - - - python@gentoo.org - Python - - - pycapnp - + + aballier@gentoo.org + Alexis Ballier + Python team can take the package if they wish. + + + python@gentoo.org + Python + + + pycapnp + capnproto/pycapnp + diff --git a/dev-python/pychm/metadata.xml b/dev-python/pychm/metadata.xml index 5c6fd6400c88..25e51a49d0b0 100644 --- a/dev-python/pychm/metadata.xml +++ b/dev-python/pychm/metadata.xml @@ -18,5 +18,6 @@ Chmパッケージは、C言語ライブラリChmのAPI実装とそれに幾つ gnochm + pychm diff --git a/dev-python/pychromecast/metadata.xml b/dev-python/pychromecast/metadata.xml index 3ee70120def4..fe07d432644d 100644 --- a/dev-python/pychromecast/metadata.xml +++ b/dev-python/pychromecast/metadata.xml @@ -8,4 +8,7 @@ prometheanfire@gentoo.org Matthew Thode + + PyChromecast + diff --git a/dev-python/pychroot/metadata.xml b/dev-python/pychroot/metadata.xml index 8b229e4daffa..73e906b8f91a 100644 --- a/dev-python/pychroot/metadata.xml +++ b/dev-python/pychroot/metadata.xml @@ -1,8 +1,9 @@ - - - pkgcore/pychroot - + + + pkgcore/pychroot + pychroot + diff --git a/dev-python/pyclipper/metadata.xml b/dev-python/pyclipper/metadata.xml index 3da97a9953cc..935afa4da897 100644 --- a/dev-python/pyclipper/metadata.xml +++ b/dev-python/pyclipper/metadata.xml @@ -5,4 +5,7 @@ pacho@gentoo.org Pacho Ramos + + pyclipper + diff --git a/dev-python/pycollada/metadata.xml b/dev-python/pycollada/metadata.xml index e0cc39c32687..d6b750a874e2 100644 --- a/dev-python/pycollada/metadata.xml +++ b/dev-python/pycollada/metadata.xml @@ -1,20 +1,21 @@ - - waebbl@gmail.com - Bernd Waibel - - - proxy-maint@gentoo.org - Proxy Maintainers - - + + waebbl@gmail.com + Bernd Waibel + + + proxy-maint@gentoo.org + Proxy Maintainers + + A python module for creating, editing and loading COLLADA, which is a COLLAborative Design Activity for establishing an interchange file format for interactive 3D applications. - - pycollada/pycollada - + + pycollada/pycollada + pycollada + diff --git a/dev-python/pycollada/pycollada-0.7.1.ebuild b/dev-python/pycollada/pycollada-0.7.1.ebuild index 034743cccba5..09a5b6a47e87 100644 --- a/dev-python/pycollada/pycollada-0.7.1.ebuild +++ b/dev-python/pycollada/pycollada-0.7.1.ebuild @@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_{6,7,8} ) inherit distutils-r1 DESCRIPTION="Python library for reading and writing COLLADA documents" -HOMEPAGE="https://pycollada.readthedocs.org/" +HOMEPAGE="https://pycollada.readthedocs.io/" SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" diff --git a/dev-python/pycryptodome/metadata.xml b/dev-python/pycryptodome/metadata.xml index 265b2611eed7..8d3def3bc0f3 100644 --- a/dev-python/pycryptodome/metadata.xml +++ b/dev-python/pycryptodome/metadata.xml @@ -1,4 +1,4 @@ - + @@ -7,5 +7,6 @@ Legrandin/pycryptodome + pycryptodome diff --git a/dev-python/pycryptodome/pycryptodome-3.9.9.ebuild b/dev-python/pycryptodome/pycryptodome-3.9.9.ebuild index bbb4c4aebfc8..b35a9b4ba643 100644 --- a/dev-python/pycryptodome/pycryptodome-3.9.9.ebuild +++ b/dev-python/pycryptodome/pycryptodome-3.9.9.ebuild @@ -18,7 +18,7 @@ SRC_URI=" LICENSE="BSD-2 Unlicense" SLOT="0" -KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" DEPEND=" diff --git a/dev-python/pycryptodomex/metadata.xml b/dev-python/pycryptodomex/metadata.xml index ff92fe1587b7..0bcccd6fc1e2 100644 --- a/dev-python/pycryptodomex/metadata.xml +++ b/dev-python/pycryptodomex/metadata.xml @@ -1,4 +1,4 @@ - + @@ -11,5 +11,6 @@ Legrandin/pycryptodome + pycryptodomex diff --git a/dev-python/pycxx/metadata.xml b/dev-python/pycxx/metadata.xml index 9c3186ce5bea..7ca375770784 100644 --- a/dev-python/pycxx/metadata.xml +++ b/dev-python/pycxx/metadata.xml @@ -11,5 +11,6 @@ cxx + pycxx diff --git a/dev-python/pydata-sphinx-theme/metadata.xml b/dev-python/pydata-sphinx-theme/metadata.xml index d22e99d73577..001562f7e06e 100644 --- a/dev-python/pydata-sphinx-theme/metadata.xml +++ b/dev-python/pydata-sphinx-theme/metadata.xml @@ -9,4 +9,7 @@ proxy-maint@gentoo.org Proxy Maintainers + + pydata-sphinx-theme + diff --git a/dev-python/pyenchant/metadata.xml b/dev-python/pyenchant/metadata.xml index c20386bc1a12..dfd77f62379b 100644 --- a/dev-python/pyenchant/metadata.xml +++ b/dev-python/pyenchant/metadata.xml @@ -16,6 +16,6 @@ pyenchant pyenchant - rfk/pyenchant + pyenchant/pyenchant diff --git a/dev-python/pyfltk/metadata.xml b/dev-python/pyfltk/metadata.xml index f25f3f8d681b..c912ec01839e 100644 --- a/dev-python/pyfltk/metadata.xml +++ b/dev-python/pyfltk/metadata.xml @@ -11,5 +11,6 @@ pyfltk + pyFltk diff --git a/dev-python/pygame_sdl2/metadata.xml b/dev-python/pygame_sdl2/metadata.xml index 88d1d1b3d9f8..33951f65a614 100644 --- a/dev-python/pygame_sdl2/metadata.xml +++ b/dev-python/pygame_sdl2/metadata.xml @@ -7,5 +7,6 @@ renpy/pygame_sdl2 + pygame_sdl2 diff --git a/dev-python/pygobject/metadata.xml b/dev-python/pygobject/metadata.xml index a958cbef81b9..255ad1b9c7cb 100644 --- a/dev-python/pygobject/metadata.xml +++ b/dev-python/pygobject/metadata.xml @@ -23,4 +23,7 @@ library it is instantly available as a Python API without the need for intermediate Python glue. + + PyGObject + diff --git a/dev-python/pygpgme/metadata.xml b/dev-python/pygpgme/metadata.xml index e655296bf6aa..4ed7c399c83a 100644 --- a/dev-python/pygpgme/metadata.xml +++ b/dev-python/pygpgme/metadata.xml @@ -13,5 +13,6 @@ pygpgme + pygpgme diff --git a/dev-python/pyh2o/metadata.xml b/dev-python/pyh2o/metadata.xml index 175983e000a5..4b9474c07b4c 100644 --- a/dev-python/pyh2o/metadata.xml +++ b/dev-python/pyh2o/metadata.xml @@ -1,16 +1,17 @@ - - mgorny@gentoo.org - Michał Górny - - - - mgorny@gentoo.org - Michał Górny - - https://github.com/mgorny/pyh2o/issues/ - mgorny/pyh2o - + + mgorny@gentoo.org + Michał Górny + + + + mgorny@gentoo.org + Michał Górny + + https://github.com/mgorny/pyh2o/issues/ + mgorny/pyh2o + pyh2o + diff --git a/dev-python/pyinotify/metadata.xml b/dev-python/pyinotify/metadata.xml index 7f4f33c6dbc9..4c5bab5fe104 100644 --- a/dev-python/pyinotify/metadata.xml +++ b/dev-python/pyinotify/metadata.xml @@ -5,4 +5,8 @@ python@gentoo.org Python + + pyinotify + seb-m/pyinotify + diff --git a/dev-python/pyinotify/pyinotify-0.9.6.ebuild b/dev-python/pyinotify/pyinotify-0.9.6.ebuild index 0fad415c410c..6f1cc0f92141 100644 --- a/dev-python/pyinotify/pyinotify-0.9.6.ebuild +++ b/dev-python/pyinotify/pyinotify-0.9.6.ebuild @@ -10,10 +10,9 @@ inherit distutils-r1 DESCRIPTION="Python module used for monitoring filesystems events" HOMEPAGE=" - http://trac.dbzteam.org/pyinotify https://pypi.org/project/pyinotify/ https://github.com/seb-m/pyinotify/" -SRC_URI="http://seb.dbzteam.org/pub/pyinotify/releases/${P}.tar.gz" +SRC_URI="https://seb.dbzteam.org/pub/pyinotify/releases/${P}.tar.gz" LICENSE="MIT" SLOT="0" diff --git a/dev-python/pykerberos/metadata.xml b/dev-python/pykerberos/metadata.xml index 856e0e9fd9ca..85ecc1c2fa99 100644 --- a/dev-python/pykerberos/metadata.xml +++ b/dev-python/pykerberos/metadata.xml @@ -10,6 +10,7 @@ Python - pykerberos + kerberos + apple/ccs-pykerberos diff --git a/dev-python/pykerberos/pykerberos-1.3.0-r1.ebuild b/dev-python/pykerberos/pykerberos-1.3.0-r1.ebuild index 0d5435a1f31d..797119545a5b 100644 --- a/dev-python/pykerberos/pykerberos-1.3.0-r1.ebuild +++ b/dev-python/pykerberos/pykerberos-1.3.0-r1.ebuild @@ -10,7 +10,7 @@ inherit distutils-r1 MY_P=PyKerberos-${PV} DESCRIPTION="A high-level Python wrapper for Kerberos/GSSAPI operations" HOMEPAGE=" - https://trac.calendarserver.org/wiki/PyKerberos + https://www.calendarserver.org/PyKerberos.html https://github.com/apple/ccs-pykerberos/ https://pypi.org/project/kerberos/" SRC_URI=" diff --git a/dev-python/pyls-black/metadata.xml b/dev-python/pyls-black/metadata.xml index 0d4b1e724e4f..01a6beca43a6 100644 --- a/dev-python/pyls-black/metadata.xml +++ b/dev-python/pyls-black/metadata.xml @@ -1,16 +1,16 @@ - + - - pyls-black - spyder-ide/pyls-black - - - andrewammerlaan@riseup.net - Andrew Ammerlaan - - - proxy-maint@gentoo.org - Proxy Maintainers - + + pyls-black + rupert/pyls-black + + + andrewammerlaan@riseup.net + Andrew Ammerlaan + + + proxy-maint@gentoo.org + Proxy Maintainers + diff --git a/dev-python/pymad/metadata.xml b/dev-python/pymad/metadata.xml index e24cb2a46b11..3664c3d28637 100644 --- a/dev-python/pymad/metadata.xml +++ b/dev-python/pymad/metadata.xml @@ -1,11 +1,12 @@ - - python@gentoo.org - Python - - - jaqx0r/pymad - + + python@gentoo.org + Python + + + jaqx0r/pymad + pymad + diff --git a/dev-python/pymetar/metadata.xml b/dev-python/pymetar/metadata.xml index 55440a29c549..c739026bcfd3 100644 --- a/dev-python/pymetar/metadata.xml +++ b/dev-python/pymetar/metadata.xml @@ -1,19 +1,22 @@ - - python@gentoo.org - Python - - + + python@gentoo.org + Python + + This library downloads the weather report for a given station ID (get yours from http://www.nws.noaa.gov/tg/siteloc.shtml), decodes it and provides easy access to all the data found in the report. Documentation and a small example app are inside the tarball. - + このライブラリは指定したステーションID( http://www.nws.noaa.gov/tg/siteloc.shtml で入手)から天気予報結果をダウンロードし、解読し、予報データから検索するのに簡単 なアクセス手段を提供します。ドキュメンテーションと単純なサンプル・アプリケーショ ンはtarballファイルの中です。 + + pymetar + diff --git a/dev-python/pymilter/metadata.xml b/dev-python/pymilter/metadata.xml index c653356fd77b..e2404273484c 100644 --- a/dev-python/pymilter/metadata.xml +++ b/dev-python/pymilter/metadata.xml @@ -18,5 +18,6 @@ sdgathman/pymilter + pymilter diff --git a/dev-python/pymssql/metadata.xml b/dev-python/pymssql/metadata.xml index d8a463ccc80d..5d445274c46d 100644 --- a/dev-python/pymssql/metadata.xml +++ b/dev-python/pymssql/metadata.xml @@ -10,5 +10,6 @@ pymssql + pymssql diff --git a/dev-python/pymssql/pymssql-2.1.3.ebuild b/dev-python/pymssql/pymssql-2.1.3.ebuild index a7756b26df62..57d4d9a497c1 100644 --- a/dev-python/pymssql/pymssql-2.1.3.ebuild +++ b/dev-python/pymssql/pymssql-2.1.3.ebuild @@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_{6,7} ) inherit distutils-r1 DESCRIPTION="Simple MSSQL python extension module" -HOMEPAGE="http://www.pymssql.org/ https://pypi.python.org/pypi/pymssql" +HOMEPAGE="https://www.pymssql.org/ https://pypi.org/project/pymssql/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" diff --git a/dev-python/pymysql/metadata.xml b/dev-python/pymysql/metadata.xml index 1a0959784174..fed09325cd17 100644 --- a/dev-python/pymysql/metadata.xml +++ b/dev-python/pymysql/metadata.xml @@ -1,16 +1,17 @@ - - mysql-bugs@gentoo.org - MySQL - - - python@gentoo.org - Python - - - - PyMySQL/PyMySQL - + + mysql-bugs@gentoo.org + MySQL + + + python@gentoo.org + Python + + + + PyMySQL/PyMySQL + PyMySQL + diff --git a/dev-python/pynput/metadata.xml b/dev-python/pynput/metadata.xml index 2b9b4266ca5b..270fb0722de2 100644 --- a/dev-python/pynput/metadata.xml +++ b/dev-python/pynput/metadata.xml @@ -5,4 +5,7 @@ zerochaos@gentoo.org Rick Farina + + pynput + diff --git a/dev-python/pynvim/metadata.xml b/dev-python/pynvim/metadata.xml index 395eadc1d0a0..b6149ba8600f 100644 --- a/dev-python/pynvim/metadata.xml +++ b/dev-python/pynvim/metadata.xml @@ -1,12 +1,13 @@ - - vim@gentoo.org - Gentoo Vim Project - - - - neovim/python-client - + + vim@gentoo.org + Gentoo Vim Project + + + + neovim/pynvim + pynvim + diff --git a/dev-python/pyopengl_accelerate/metadata.xml b/dev-python/pyopengl_accelerate/metadata.xml index 48cc66f255ed..6611d6a95675 100644 --- a/dev-python/pyopengl_accelerate/metadata.xml +++ b/dev-python/pyopengl_accelerate/metadata.xml @@ -8,5 +8,6 @@ PyOpenGL-accelerate pyopengl + mcfletch/pyopengl diff --git a/dev-python/pyopenssl/metadata.xml b/dev-python/pyopenssl/metadata.xml index 037166d772aa..d5c951e41acc 100644 --- a/dev-python/pyopenssl/metadata.xml +++ b/dev-python/pyopenssl/metadata.xml @@ -10,5 +10,6 @@ pyopenssl pyopenssl cpe:/a:pyopenssl:pyopenssl + pyca/pyopenssl diff --git a/dev-python/pyotp/metadata.xml b/dev-python/pyotp/metadata.xml index 7f4f33c6dbc9..75e6248ea089 100644 --- a/dev-python/pyotp/metadata.xml +++ b/dev-python/pyotp/metadata.xml @@ -5,4 +5,8 @@ python@gentoo.org Python + + pyotp + pyauth/pyotp + diff --git a/dev-python/pyparsing/metadata.xml b/dev-python/pyparsing/metadata.xml index 84f7a71eb750..b4b32c384d20 100644 --- a/dev-python/pyparsing/metadata.xml +++ b/dev-python/pyparsing/metadata.xml @@ -1,20 +1,21 @@ - - python@gentoo.org - Python - - - The pyparsing module is an alternative approach to creating and - executing simple grammars, vs. the traditional lex/yacc approach, or the - use of regular expressions. The pyparsing module provides a library of - classes that client code uses to construct the grammar directly in - Python code. - - - - pyparsing - pyparsing - + + python@gentoo.org + Python + + + The pyparsing module is an alternative approach to creating and + executing simple grammars, vs. the traditional lex/yacc approach, or the + use of regular expressions. The pyparsing module provides a library of + classes that client code uses to construct the grammar directly in + Python code. + + + + pyparsing + pyparsing + pyparsing/pyparsing + diff --git a/dev-python/pyparted/metadata.xml b/dev-python/pyparted/metadata.xml index 00fd17201ac7..84d64a79ce3f 100644 --- a/dev-python/pyparted/metadata.xml +++ b/dev-python/pyparted/metadata.xml @@ -7,5 +7,6 @@ dcantrell/pyparted + pyparted diff --git a/dev-python/pypax/pypax-0.9.5.ebuild b/dev-python/pypax/pypax-0.9.5.ebuild index b005f93fdc7c..bfa8924e39b3 100644 --- a/dev-python/pypax/pypax-0.9.5.ebuild +++ b/dev-python/pypax/pypax-0.9.5.ebuild @@ -19,7 +19,7 @@ fi DESCRIPTION="Python module to get or set either PT_PAX and/or XATTR_PAX flags" HOMEPAGE="https://dev.gentoo.org/~blueness/elfix/ - https://www.gentoo.org/proj/en/hardened/pax-quickstart.xml" + https://wiki.gentoo.org/wiki/Project:Hardened/PaX_Quickstart" LICENSE="GPL-3" SLOT="0" diff --git a/dev-python/pypax/pypax-9999.ebuild b/dev-python/pypax/pypax-9999.ebuild index 16ff1966bb47..138c305d0539 100644 --- a/dev-python/pypax/pypax-9999.ebuild +++ b/dev-python/pypax/pypax-9999.ebuild @@ -19,7 +19,7 @@ fi DESCRIPTION="Python module to get or set either PT_PAX and/or XATTR_PAX flags" HOMEPAGE="https://dev.gentoo.org/~blueness/elfix/ - https://www.gentoo.org/proj/en/hardened/pax-quickstart.xml" + https://wiki.gentoo.org/wiki/Project:Hardened/PaX_Quickstart" LICENSE="GPL-3" SLOT="0" diff --git a/dev-python/pyperclip/metadata.xml b/dev-python/pyperclip/metadata.xml index 631e40d11e7e..c6215a36971f 100644 --- a/dev-python/pyperclip/metadata.xml +++ b/dev-python/pyperclip/metadata.xml @@ -9,4 +9,7 @@ Matthew Thode + + pyperclip + diff --git a/dev-python/pypiserver/metadata.xml b/dev-python/pypiserver/metadata.xml index 0d519d2171f2..445bbcd9043e 100644 --- a/dev-python/pypiserver/metadata.xml +++ b/dev-python/pypiserver/metadata.xml @@ -7,7 +7,7 @@ - pytest-services - pytest-dev/pytest-services + pypiserver + pypiserver/pypiserver diff --git a/dev-python/pyproject2setuppy/metadata.xml b/dev-python/pyproject2setuppy/metadata.xml index 5eeef57d0718..ea440fb3eaae 100644 --- a/dev-python/pyproject2setuppy/metadata.xml +++ b/dev-python/pyproject2setuppy/metadata.xml @@ -9,4 +9,7 @@ python@gentoo.org + + pyproject2setuppy + diff --git a/dev-python/pyqtgraph/metadata.xml b/dev-python/pyqtgraph/metadata.xml index 3f66bf396f36..24bf6bc8bf6d 100644 --- a/dev-python/pyqtgraph/metadata.xml +++ b/dev-python/pyqtgraph/metadata.xml @@ -1,18 +1,19 @@ - - python@gentoo.org - Python - - - PyQtGraph is a pure-python graphics and GUI library built on PyQt and numpy. - It is intended for use in mathematics / scientific / engineering applications. - Despite being written entirely in python, the library is very fast - due to its heavy leverage of numpy for number crunching - and Qt's GraphicsView framework for fast display. - - - pyqtgraph/pyqtgraph - + + python@gentoo.org + Python + + + PyQtGraph is a pure-python graphics and GUI library built on PyQt and numpy. + It is intended for use in mathematics / scientific / engineering applications. + Despite being written entirely in python, the library is very fast + due to its heavy leverage of numpy for number crunching + and Qt's GraphicsView framework for fast display. + + + pyqtgraph/pyqtgraph + pyqtgraph + diff --git a/dev-python/pyre2/metadata.xml b/dev-python/pyre2/metadata.xml index b218af704866..687c852f406d 100644 --- a/dev-python/pyre2/metadata.xml +++ b/dev-python/pyre2/metadata.xml @@ -9,4 +9,7 @@ zmedico@gentoo.org Zac Medico + + pyre2 + diff --git a/dev-python/pyro/metadata.xml b/dev-python/pyro/metadata.xml index 56387a3a05c1..39d1bbcdab85 100644 --- a/dev-python/pyro/metadata.xml +++ b/dev-python/pyro/metadata.xml @@ -1,13 +1,13 @@ - - python@gentoo.org - Python - - - - Pyro - irmen/Pyro4 - + + python@gentoo.org + Python + + + + irmen/Pyro4 + Pyro4 + diff --git a/dev-python/pyscard/metadata.xml b/dev-python/pyscard/metadata.xml index b3070c74f3f6..b59c2155dc3e 100644 --- a/dev-python/pyscard/metadata.xml +++ b/dev-python/pyscard/metadata.xml @@ -7,5 +7,7 @@ pyscard + pyscard + LudovicRousseau/pyscard diff --git a/dev-python/pyscreenshot/metadata.xml b/dev-python/pyscreenshot/metadata.xml index d22e99d73577..b7811ee04d45 100644 --- a/dev-python/pyscreenshot/metadata.xml +++ b/dev-python/pyscreenshot/metadata.xml @@ -9,4 +9,7 @@ proxy-maint@gentoo.org Proxy Maintainers + + pyscreenshot + diff --git a/dev-python/pyside2/metadata.xml b/dev-python/pyside2/metadata.xml index 5d371988e7a7..1af2c2305081 100644 --- a/dev-python/pyside2/metadata.xml +++ b/dev-python/pyside2/metadata.xml @@ -37,4 +37,7 @@ Build QtXml module Build QtXmlPatterns module + + PySide2 + diff --git a/dev-python/pysimdjson/metadata.xml b/dev-python/pysimdjson/metadata.xml index cee379b15409..bbbada85c7ef 100644 --- a/dev-python/pysimdjson/metadata.xml +++ b/dev-python/pysimdjson/metadata.xml @@ -5,4 +5,7 @@ chutzpah@gentoo.org Patrick McLean + + pysimdjson + diff --git a/dev-python/pysmi/metadata.xml b/dev-python/pysmi/metadata.xml index 36420f308fae..6a5f21bdfe8d 100644 --- a/dev-python/pysmi/metadata.xml +++ b/dev-python/pysmi/metadata.xml @@ -1,12 +1,15 @@ - + - - chainsaw@gentoo.org - Tony Vroon - - - python@gentoo.org - Python - + + chainsaw@gentoo.org + Tony Vroon + + + python@gentoo.org + Python + + + pysmi + diff --git a/dev-python/pysnmp-mibs/metadata.xml b/dev-python/pysnmp-mibs/metadata.xml index 37a31ce229ad..11950035509e 100644 --- a/dev-python/pysnmp-mibs/metadata.xml +++ b/dev-python/pysnmp-mibs/metadata.xml @@ -1,33 +1,34 @@ - - python@gentoo.org - Python - - - netmon@gentoo.org - Gentoo network monitoring and analysis project - - -This is a Python implementation of SNMP v.1/v.2c engine. Its general -functionality is to assemble/disassemble SNMP messages from/into -given SNMP Object IDs along with associated values. PySNMP also provides -a few transport methods specific to TCP/IP networking. + + python@gentoo.org + Python + + + netmon@gentoo.org + Gentoo network monitoring and analysis project + + + This is a Python implementation of SNMP v.1/v.2c engine. Its general + functionality is to assemble/disassemble SNMP messages from/into + given SNMP Object IDs along with associated values. PySNMP also provides + a few transport methods specific to TCP/IP networking. -PySNMP is written entirely in Python and is self-sufficient in terms -that it does not rely on any third party tool (it is not a wrapper!). - - -これは SNMP v.1/v.2 エンジンのPython言語での実装です。関連値に沿ったSNMPオブジェ -クトIDから/へSNMPメッセージをアセンブル/ディスアセンブルするのが一般的な機能です -。PySNMPは幾つかのTCP/IPネットワーキングを特定するトランスポート・メソッドも提供 -します。 + PySNMP is written entirely in Python and is self-sufficient in terms + that it does not rely on any third party tool (it is not a wrapper!). + + + これは SNMP v.1/v.2 エンジンのPython言語での実装です。関連値に沿ったSNMPオブジェ + クトIDから/へSNMPメッセージをアセンブル/ディスアセンブルするのが一般的な機能です + 。PySNMPは幾つかのTCP/IPネットワーキングを特定するトランスポート・メソッドも提供 + します。 -PySNMPは全体をPython言語で記述され、どのサードパーティ製ツールも信用しない立場で -自給自足します。(これはラッパー・ツールではありません。) - - - pysnmp-mibs - + PySNMPは全体をPython言語で記述され、どのサードパーティ製ツールも信用しない立場で + 自給自足します。(これはラッパー・ツールではありません。) + + + pysnmp-mibs + etingof/pysnmp-mibs + diff --git a/dev-python/pysnmp-mibs/pysnmp-mibs-0.1.6.ebuild b/dev-python/pysnmp-mibs/pysnmp-mibs-0.1.6.ebuild index 3628f8f012ec..e0649cd103ad 100644 --- a/dev-python/pysnmp-mibs/pysnmp-mibs-0.1.6.ebuild +++ b/dev-python/pysnmp-mibs/pysnmp-mibs-0.1.6.ebuild @@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_{6,7} ) inherit distutils-r1 DESCRIPTION="SNMP framework in Python - MIBs" -HOMEPAGE="http://snmplabs.com/pysnmp/ https://github.com/etingof/pysnmp-mibs" +HOMEPAGE="https://github.com/etingof/pysnmp-mibs" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" diff --git a/dev-python/pysnmp/metadata.xml b/dev-python/pysnmp/metadata.xml index ccc20b0ed3b5..4a0c1e1eca9c 100644 --- a/dev-python/pysnmp/metadata.xml +++ b/dev-python/pysnmp/metadata.xml @@ -1,34 +1,35 @@ - - python@gentoo.org - Python - - - netmon@gentoo.org - Gentoo network monitoring and analysis project - - -This is a Python implementation of SNMP v.1/v.2c engine. Its general -functionality is to assemble/disassemble SNMP messages from/into -given SNMP Object IDs along with associated values. PySNMP also provides -a few transport methods specific to TCP/IP networking. + + python@gentoo.org + Python + + + netmon@gentoo.org + Gentoo network monitoring and analysis project + + + This is a Python implementation of SNMP v.1/v.2c engine. Its general + functionality is to assemble/disassemble SNMP messages from/into + given SNMP Object IDs along with associated values. PySNMP also provides + a few transport methods specific to TCP/IP networking. -PySNMP is written entirely in Python and is self-sufficient in terms -that it does not rely on any third party tool (it is not a wrapper!). - - -これは SNMP v.1/v.2 エンジンのPython言語での実装です。関連値に沿ったSNMPオブジェ -クトIDから/へSNMPメッセージをアセンブル/ディスアセンブルするのが一般的な機能です -。PySNMPは幾つかのTCP/IPネットワーキングを特定するトランスポート・メソッドも提供 -します。 + PySNMP is written entirely in Python and is self-sufficient in terms + that it does not rely on any third party tool (it is not a wrapper!). + + + これは SNMP v.1/v.2 エンジンのPython言語での実装です。関連値に沿ったSNMPオブジェ + クトIDから/へSNMPメッセージをアセンブル/ディスアセンブルするのが一般的な機能です + 。PySNMPは幾つかのTCP/IPネットワーキングを特定するトランスポート・メソッドも提供 + します。 -PySNMPは全体をPython言語で記述され、どのサードパーティ製ツールも信用しない立場で -自給自足します。(これはラッパー・ツールではありません。) - - - pysnmp - pysnmp - + PySNMPは全体をPython言語で記述され、どのサードパーティ製ツールも信用しない立場で + 自給自足します。(これはラッパー・ツールではありません。) + + + pysnmp + pysnmp + etingof/pysnmp + diff --git a/dev-python/pysnmp/pysnmp-4.4.12-r1.ebuild b/dev-python/pysnmp/pysnmp-4.4.12-r1.ebuild index 4464b7b64c02..dc7bea073a0e 100644 --- a/dev-python/pysnmp/pysnmp-4.4.12-r1.ebuild +++ b/dev-python/pysnmp/pysnmp-4.4.12-r1.ebuild @@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_{6,7,8} ) inherit distutils-r1 DESCRIPTION="Python SNMP library" -HOMEPAGE="http://snmplabs.com/pysnmp/ https://pypi.org/project/pysnmp/ https://github.com/etingof/pysnmp" +HOMEPAGE="https://pypi.org/project/pysnmp/ https://github.com/etingof/pysnmp" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" diff --git a/dev-python/pysnmp/pysnmp-999999.ebuild b/dev-python/pysnmp/pysnmp-999999.ebuild index 0141700d6046..06732062fcd4 100644 --- a/dev-python/pysnmp/pysnmp-999999.ebuild +++ b/dev-python/pysnmp/pysnmp-999999.ebuild @@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_{6,7,8} ) inherit distutils-r1 git-r3 DESCRIPTION="Python SNMP library" -HOMEPAGE="http://snmplabs.com/pysnmp/ https://pypi.org/project/pysnmp/ https://github.com/etingof/pysnmp" +HOMEPAGE="https://pypi.org/project/pysnmp/ https://github.com/etingof/pysnmp" EGIT_REPO_URI="https://github.com/etingof/pysnmp" LICENSE="BSD" diff --git a/dev-python/pyspectrum2/metadata.xml b/dev-python/pyspectrum2/metadata.xml index a7931bdfa4ff..76ee416dd5b0 100644 --- a/dev-python/pyspectrum2/metadata.xml +++ b/dev-python/pyspectrum2/metadata.xml @@ -12,5 +12,6 @@ https://github.com/stv0g/pyspectrum2/issues stv0g/pyspectrum2 + pyspectrum2 diff --git a/dev-python/pyspelling/metadata.xml b/dev-python/pyspelling/metadata.xml index e649e6dcff71..6299093ac738 100644 --- a/dev-python/pyspelling/metadata.xml +++ b/dev-python/pyspelling/metadata.xml @@ -1,6 +1,5 @@ - lssndrbarbieri@gmail.com @@ -16,6 +15,7 @@ facelessuser/pyspelling + pyspelling PySpelling is a module to help with automating spell checking in a project with Aspell or @@ -24,5 +24,5 @@ checking tools, and allows you to setup different spelling tasks for different f You can apply specific and different filters and options to each task. PySpelling can also be used in CI environments to fail the build if there are misspelled words. Aspell and Hunspell are very good spell checking tools. Aspell particularly comes with a couple of filters, but the filters are limited in types and aren't extremely flexible. PySpelling was created to work around Aspell's and Hunspell's filtering shortcomings by creating a wrapper around them that could be extended to handle more kinds of file formats and provide more advanced filtering. If you need to filter out specific HTML tags with specific IDs or class names, PySpelling can do it. If you want to scan Python files for docstrings, but also avoid specific content within the docstring, you can do that as well. If PySpelling doesn't have a filter you need, with access to so many available Python modules, you can easily write your own. - + diff --git a/dev-python/pysvg/metadata.xml b/dev-python/pysvg/metadata.xml index 82592044ff10..96ceec4afef8 100644 --- a/dev-python/pysvg/metadata.xml +++ b/dev-python/pysvg/metadata.xml @@ -1,4 +1,4 @@ - + @@ -7,5 +7,6 @@ pysvg-py3 + alorence/pysvg-py3 diff --git a/dev-python/pytest-aiohttp/pytest-aiohttp-0.3.0-r1.ebuild b/dev-python/pytest-aiohttp/pytest-aiohttp-0.3.0-r1.ebuild index 62822f9e1891..6ae2db4d13cd 100644 --- a/dev-python/pytest-aiohttp/pytest-aiohttp-0.3.0-r1.ebuild +++ b/dev-python/pytest-aiohttp/pytest-aiohttp-0.3.0-r1.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~x64-macos" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~x64-macos" IUSE="" RDEPEND=" diff --git a/dev-python/pytest-asyncio/metadata.xml b/dev-python/pytest-asyncio/metadata.xml index e59516686a44..5e0db6fdb595 100644 --- a/dev-python/pytest-asyncio/metadata.xml +++ b/dev-python/pytest-asyncio/metadata.xml @@ -5,4 +5,8 @@ python@gentoo.org + + pytest-asyncio + pytest-dev/pytest-asyncio + diff --git a/dev-python/pytest-datadir/metadata.xml b/dev-python/pytest-datadir/metadata.xml index d22e99d73577..88b19f00ca55 100644 --- a/dev-python/pytest-datadir/metadata.xml +++ b/dev-python/pytest-datadir/metadata.xml @@ -9,4 +9,7 @@ proxy-maint@gentoo.org Proxy Maintainers + + pytest-datadir + diff --git a/dev-python/pytest-describe/metadata.xml b/dev-python/pytest-describe/metadata.xml index 91c491d48379..c9c0229c8f07 100644 --- a/dev-python/pytest-describe/metadata.xml +++ b/dev-python/pytest-describe/metadata.xml @@ -7,6 +7,6 @@ pytest-describe - ropez/pytest-describe + pytest-dev/pytest-describe diff --git a/dev-python/pytest-describe/pytest-describe-1.0.0.ebuild b/dev-python/pytest-describe/pytest-describe-1.0.0.ebuild index 7ff8b6475100..9f3f8b080dee 100644 --- a/dev-python/pytest-describe/pytest-describe-1.0.0.ebuild +++ b/dev-python/pytest-describe/pytest-describe-1.0.0.ebuild @@ -8,8 +8,8 @@ PYTHON_COMPAT=( python3_{6,7,8} ) inherit distutils-r1 DESCRIPTION="Describe-style plugin for pytest" -HOMEPAGE="https://github.com/pytest-dev/pytest-describe - https://pypi.org/project/pytest-describe" +HOMEPAGE="https://github.com/pytest-dev/pytest-describe/ + https://pypi.org/project/pytest-describe/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" diff --git a/dev-python/pytest-faulthandler/metadata.xml b/dev-python/pytest-faulthandler/metadata.xml index d22e99d73577..19f4441aca92 100644 --- a/dev-python/pytest-faulthandler/metadata.xml +++ b/dev-python/pytest-faulthandler/metadata.xml @@ -9,4 +9,7 @@ proxy-maint@gentoo.org Proxy Maintainers + + pytest-faulthandler + diff --git a/dev-python/pytest-flakes/pytest-flakes-4.0.0.ebuild b/dev-python/pytest-flakes/pytest-flakes-4.0.0.ebuild index 9acf63c308af..9fcf898521e1 100644 --- a/dev-python/pytest-flakes/pytest-flakes-4.0.0.ebuild +++ b/dev-python/pytest-flakes/pytest-flakes-4.0.0.ebuild @@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_{6,7} pypy3) inherit distutils-r1 DESCRIPTION="Collection of small Python functions & classes" -HOMEPAGE="https://pypi.org/project/python-utils/" +HOMEPAGE="https://pypi.org/project/pytest-flakes/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" diff --git a/dev-python/pytest-freezegun/metadata.xml b/dev-python/pytest-freezegun/metadata.xml index e59516686a44..57ab8884a1dd 100644 --- a/dev-python/pytest-freezegun/metadata.xml +++ b/dev-python/pytest-freezegun/metadata.xml @@ -5,4 +5,7 @@ python@gentoo.org + + pytest-freezegun + diff --git a/dev-python/pytest-helpers-namespace/metadata.xml b/dev-python/pytest-helpers-namespace/metadata.xml index 366c2631e760..8e6e23408c47 100644 --- a/dev-python/pytest-helpers-namespace/metadata.xml +++ b/dev-python/pytest-helpers-namespace/metadata.xml @@ -8,4 +8,7 @@ chutzpah@gentoo.org Patrick McLean + + pytest-helpers-namespace + diff --git a/dev-python/pytest-lazy-fixture/metadata.xml b/dev-python/pytest-lazy-fixture/metadata.xml index 443a7275aaa5..e4c15cc0a50e 100644 --- a/dev-python/pytest-lazy-fixture/metadata.xml +++ b/dev-python/pytest-lazy-fixture/metadata.xml @@ -1,12 +1,15 @@ - + - - andrewammerlaan@riseup.net - Andrew Ammerlaan - - - proxy-maint@gentoo.org - Proxy Maintainers - + + andrewammerlaan@riseup.net + Andrew Ammerlaan + + + proxy-maint@gentoo.org + Proxy Maintainers + + + pytest-lazy-fixture + diff --git a/dev-python/pytest-ordering/metadata.xml b/dev-python/pytest-ordering/metadata.xml index 48b39a119114..1b77407bcd6f 100644 --- a/dev-python/pytest-ordering/metadata.xml +++ b/dev-python/pytest-ordering/metadata.xml @@ -1,6 +1,5 @@ - andrewammerlaan@riseup.net @@ -11,7 +10,7 @@ Proxy Maintainers - https://github.com/ftobia/pytest-ordering + ftobia/pytest-ordering pytest-ordering diff --git a/dev-python/pytest-ordering/pytest-ordering-0.6.ebuild b/dev-python/pytest-ordering/pytest-ordering-0.6.ebuild index 1d9e0dcfd7fa..e494647a3ece 100644 --- a/dev-python/pytest-ordering/pytest-ordering-0.6.ebuild +++ b/dev-python/pytest-ordering/pytest-ordering-0.6.ebuild @@ -9,8 +9,8 @@ inherit distutils-r1 DESCRIPTION="pytest plugin to run your tests in a specific order" HOMEPAGE=" - https://github.com/ftobia/pytest-ordering - https://pypi.org/project/pytest-ordering + https://github.com/ftobia/pytest-ordering/ + https://pypi.org/project/pytest-ordering/ " SRC_URI="https://github.com/ftobia/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" diff --git a/dev-python/pytest-qt/metadata.xml b/dev-python/pytest-qt/metadata.xml index d22e99d73577..9360bd83723c 100644 --- a/dev-python/pytest-qt/metadata.xml +++ b/dev-python/pytest-qt/metadata.xml @@ -9,4 +9,8 @@ proxy-maint@gentoo.org Proxy Maintainers + + pytest-qt + pytest-dev/pytest-qt + diff --git a/dev-python/pytest-qt/pytest-qt-3.3.0.ebuild b/dev-python/pytest-qt/pytest-qt-3.3.0.ebuild index 31b4f1138986..c5abfdcb1a52 100644 --- a/dev-python/pytest-qt/pytest-qt-3.3.0.ebuild +++ b/dev-python/pytest-qt/pytest-qt-3.3.0.ebuild @@ -8,7 +8,9 @@ PYTHON_COMPAT=( python3_{6,7,8,9} ) inherit distutils-r1 virtualx DESCRIPTION="pytest plugin for PyQt4 or PyQt5 applications" -HOMEPAGE="https://pypi.org/project/pytest-qt https://github.com/pytest-dev/pytest-qt" +HOMEPAGE=" + https://pypi.org/project/pytest-qt/ + https://github.com/pytest-dev/pytest-qt/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" diff --git a/dev-python/pytest-regressions/metadata.xml b/dev-python/pytest-regressions/metadata.xml index c12ae293d46d..1a5123349a91 100644 --- a/dev-python/pytest-regressions/metadata.xml +++ b/dev-python/pytest-regressions/metadata.xml @@ -10,4 +10,7 @@ Proxy Maintainers + + pytest-regressions + diff --git a/dev-python/pytest-salt-factories/metadata.xml b/dev-python/pytest-salt-factories/metadata.xml index cee379b15409..b8b1eaa537d2 100644 --- a/dev-python/pytest-salt-factories/metadata.xml +++ b/dev-python/pytest-salt-factories/metadata.xml @@ -5,4 +5,7 @@ chutzpah@gentoo.org Patrick McLean + + pytest-salt-factories + diff --git a/dev-python/pytest-salt/metadata.xml b/dev-python/pytest-salt/metadata.xml index cee379b15409..e83c48f42424 100644 --- a/dev-python/pytest-salt/metadata.xml +++ b/dev-python/pytest-salt/metadata.xml @@ -5,4 +5,7 @@ chutzpah@gentoo.org Patrick McLean + + pytest-salt + diff --git a/dev-python/pytest-subtesthack/metadata.xml b/dev-python/pytest-subtesthack/metadata.xml index 6979d31debc3..83cea879f32e 100644 --- a/dev-python/pytest-subtesthack/metadata.xml +++ b/dev-python/pytest-subtesthack/metadata.xml @@ -7,5 +7,6 @@ pytest-subtesthack + untitaker/pytest-subtesthack diff --git a/dev-python/pytest-tempdir/metadata.xml b/dev-python/pytest-tempdir/metadata.xml index 56cae167d372..ae2c6b32482d 100644 --- a/dev-python/pytest-tempdir/metadata.xml +++ b/dev-python/pytest-tempdir/metadata.xml @@ -1,8 +1,11 @@ - - chutzpah@gentoo.org - Patrick McLean - + + chutzpah@gentoo.org + Patrick McLean + + + pytest-tempdir + diff --git a/dev-python/pytest-testmon/metadata.xml b/dev-python/pytest-testmon/metadata.xml index c36c37139fad..d04e61e25d72 100644 --- a/dev-python/pytest-testmon/metadata.xml +++ b/dev-python/pytest-testmon/metadata.xml @@ -5,4 +5,7 @@ williamh@gentoo.org William Hubbs + + pytest-testmon + diff --git a/dev-python/pytest-virtualenv/metadata.xml b/dev-python/pytest-virtualenv/metadata.xml index 77058433cb5b..f49150e8b567 100644 --- a/dev-python/pytest-virtualenv/metadata.xml +++ b/dev-python/pytest-virtualenv/metadata.xml @@ -11,7 +11,7 @@ Edward Easton pytest-virtualenv - manahl/pytest-plugins + man-group/pytest-plugins Create a Python virtual environment in your test that cleans up on diff --git a/dev-python/pytest-xdist/metadata.xml b/dev-python/pytest-xdist/metadata.xml index a8cd82139cd3..b6f38e562238 100644 --- a/dev-python/pytest-xdist/metadata.xml +++ b/dev-python/pytest-xdist/metadata.xml @@ -7,8 +7,7 @@ - pxml - metagriffin/pxml - pytest-dev/pytest-xdist + pytest-xdist + pytest-dev/pytest-xdist diff --git a/dev-python/pytest-xvfb/metadata.xml b/dev-python/pytest-xvfb/metadata.xml index d22e99d73577..0181a5d4c842 100644 --- a/dev-python/pytest-xvfb/metadata.xml +++ b/dev-python/pytest-xvfb/metadata.xml @@ -9,4 +9,7 @@ proxy-maint@gentoo.org Proxy Maintainers + + pytest-xvfb + diff --git a/dev-python/python-axolotl-curve25519/metadata.xml b/dev-python/python-axolotl-curve25519/metadata.xml index a516f93c104a..2ca1a23bb1eb 100644 --- a/dev-python/python-axolotl-curve25519/metadata.xml +++ b/dev-python/python-axolotl-curve25519/metadata.xml @@ -16,5 +16,6 @@ https://github.com/tgalal/python-axolotl-curve25519/issues tgalal/python-axolotl-curve25519 + python-axolotl-curve25519 diff --git a/dev-python/python-axolotl/metadata.xml b/dev-python/python-axolotl/metadata.xml index 1c0ab210519b..de730ccdbca8 100644 --- a/dev-python/python-axolotl/metadata.xml +++ b/dev-python/python-axolotl/metadata.xml @@ -17,5 +17,6 @@ https://github.com/tgalal/python-axolotl/issues tgalal/python-axolotl + python-axolotl diff --git a/dev-python/python-blazarclient/metadata.xml b/dev-python/python-blazarclient/metadata.xml index 631e40d11e7e..1d7688d79608 100644 --- a/dev-python/python-blazarclient/metadata.xml +++ b/dev-python/python-blazarclient/metadata.xml @@ -9,4 +9,7 @@ Matthew Thode + + python-blazarclient + diff --git a/dev-python/python-debian/metadata.xml b/dev-python/python-debian/metadata.xml index 76f69654b265..173ad6be66eb 100644 --- a/dev-python/python-debian/metadata.xml +++ b/dev-python/python-debian/metadata.xml @@ -10,4 +10,7 @@ Python + + python-debian + diff --git a/dev-python/python-discid/metadata.xml b/dev-python/python-discid/metadata.xml index 3a7e5f5b29a1..6d4f57f90d9a 100644 --- a/dev-python/python-discid/metadata.xml +++ b/dev-python/python-discid/metadata.xml @@ -1,11 +1,12 @@ - - python@gentoo.org - Python - - - JonnyJD/python-discid - + + python@gentoo.org + Python + + + JonnyJD/python-discid + discid + diff --git a/dev-python/python-dotenv/metadata.xml b/dev-python/python-dotenv/metadata.xml index 7f33f1c07d79..8acffd41cc4d 100644 --- a/dev-python/python-dotenv/metadata.xml +++ b/dev-python/python-dotenv/metadata.xml @@ -1,5 +1,5 @@ - + sping@gentoo.org @@ -9,4 +9,7 @@ python@gentoo.org Gentoo Python Project + + python-dotenv + diff --git a/dev-python/python-efl/metadata.xml b/dev-python/python-efl/metadata.xml index 126f2621e76f..3507c749f452 100644 --- a/dev-python/python-efl/metadata.xml +++ b/dev-python/python-efl/metadata.xml @@ -1,16 +1,19 @@ - - juippis@gentoo.org - Joonas Niilola - - - EFL is a collection of libraries for handling many common tasks a - developer man have such as data structures, communication, - rendering, widgets and more. + + juippis@gentoo.org + Joonas Niilola + + + EFL is a collection of libraries for handling many common tasks a + developer man have such as data structures, communication, + rendering, widgets and more. - PYTHON-EFL are the python bindings for the whole EFL stack (eo, - evas, ecore, edje, emotion, ethumb and elementary) - + PYTHON-EFL are the python bindings for the whole EFL stack (eo, + evas, ecore, edje, emotion, ethumb and elementary) + + + python-efl + diff --git a/dev-python/python-etcd/metadata.xml b/dev-python/python-etcd/metadata.xml index 0d35f613bc0a..6d2b025d35d4 100644 --- a/dev-python/python-etcd/metadata.xml +++ b/dev-python/python-etcd/metadata.xml @@ -1,13 +1,14 @@ - - https://github.com/jplana/python-etcd/issues - https://raw.githubusercontent.com/jplana/python-etcd/master/NEWS.txt - http://python-etcd.readthedocs.org/ - jplana/python-etcd - - - zmedico@gentoo.org - + + https://github.com/jplana/python-etcd/issues + https://raw.githubusercontent.com/jplana/python-etcd/master/NEWS.txt + https://python-etcd.readthedocs.io/ + jplana/python-etcd + python-etcd + + + zmedico@gentoo.org + diff --git a/dev-python/python-etcd/python-etcd-0.4.5-r1.ebuild b/dev-python/python-etcd/python-etcd-0.4.5-r1.ebuild index 863643cc0098..bfe871b2572e 100644 --- a/dev-python/python-etcd/python-etcd-0.4.5-r1.ebuild +++ b/dev-python/python-etcd/python-etcd-0.4.5-r1.ebuild @@ -8,7 +8,9 @@ PYTHON_COMPAT=( python3_{6,7,8} ) inherit distutils-r1 DESCRIPTION="A python client for etcd" -HOMEPAGE="https://github.com/jplana/python-etcd https://pypi.org/project/python-etcd/" +HOMEPAGE=" + https://github.com/jplana/python-etcd/ + https://pypi.org/project/python-etcd/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" diff --git a/dev-python/python-ethtool/metadata.xml b/dev-python/python-ethtool/metadata.xml index 112c4c091ce3..52da32872c98 100644 --- a/dev-python/python-ethtool/metadata.xml +++ b/dev-python/python-ethtool/metadata.xml @@ -10,4 +10,8 @@ changing of Ethernet card settings, such as speed, port, auto-negotiation, and PCI locations. + + ethtool + fedora-python/python-ethtool + diff --git a/dev-python/python-evdev/metadata.xml b/dev-python/python-evdev/metadata.xml index 52c3f63cafa2..3d9deba29f16 100644 --- a/dev-python/python-evdev/metadata.xml +++ b/dev-python/python-evdev/metadata.xml @@ -1,12 +1,15 @@ - - gentoo@aisha.cc - Aisha Tammy - - - proxy-maint@gentoo.org - Proxy Maintainers - + + gentoo@aisha.cc + Aisha Tammy + + + proxy-maint@gentoo.org + Proxy Maintainers + + + evdev + diff --git a/dev-python/python-evdev/python-evdev-1.3.0.ebuild b/dev-python/python-evdev/python-evdev-1.3.0.ebuild index 602a70a3fec3..b35bc7c521d5 100644 --- a/dev-python/python-evdev/python-evdev-1.3.0.ebuild +++ b/dev-python/python-evdev/python-evdev-1.3.0.ebuild @@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_{6,7,8,9} ) inherit distutils-r1 DESCRIPTION="Python library for evdev bindings" -HOMEPAGE="https://python-evdev.readthedocs.org/" +HOMEPAGE="https://python-evdev.readthedocs.io/" SRC_URI="https://github.com/gvalkov/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" diff --git a/dev-python/python-gnupg/metadata.xml b/dev-python/python-gnupg/metadata.xml index a845b0bb7d0c..7760f3346741 100644 --- a/dev-python/python-gnupg/metadata.xml +++ b/dev-python/python-gnupg/metadata.xml @@ -14,5 +14,6 @@ https://bitbucket.org/vinay.sajip/python-gnupg/issues/new vinay.sajip/python-gnupg + python-gnupg diff --git a/dev-python/python-jsonrpc-server/metadata.xml b/dev-python/python-jsonrpc-server/metadata.xml index dd0bd9c021f6..165531b18aa9 100644 --- a/dev-python/python-jsonrpc-server/metadata.xml +++ b/dev-python/python-jsonrpc-server/metadata.xml @@ -1,13 +1,15 @@ - - - andrewammerlaan@riseup.net - Andrew Ammerlaan - - - proxy-maint@gentoo.org - Proxy Maintainers - + + andrewammerlaan@riseup.net + Andrew Ammerlaan + + + proxy-maint@gentoo.org + Proxy Maintainers + + + python-jsonrpc-server + diff --git a/dev-python/python-language-server/metadata.xml b/dev-python/python-language-server/metadata.xml index dd0bd9c021f6..b9fcdf3f618a 100644 --- a/dev-python/python-language-server/metadata.xml +++ b/dev-python/python-language-server/metadata.xml @@ -1,13 +1,15 @@ - - - andrewammerlaan@riseup.net - Andrew Ammerlaan - - - proxy-maint@gentoo.org - Proxy Maintainers - + + andrewammerlaan@riseup.net + Andrew Ammerlaan + + + proxy-maint@gentoo.org + Proxy Maintainers + + + python-language-server + diff --git a/dev-python/python-levenshtein/metadata.xml b/dev-python/python-levenshtein/metadata.xml index fd06134a3ea0..47e2e2b02e9f 100644 --- a/dev-python/python-levenshtein/metadata.xml +++ b/dev-python/python-levenshtein/metadata.xml @@ -1,12 +1,12 @@ - - python@gentoo.org - Python - - - python-Levenshtein - miohtama/python-Levenshtein - + + python@gentoo.org + Python + + + python-Levenshtein + ztane/python-Levenshtein + diff --git a/dev-python/python-lhafile/metadata.xml b/dev-python/python-lhafile/metadata.xml index 69ce0cdcd9cb..3c5764ce5fd0 100644 --- a/dev-python/python-lhafile/metadata.xml +++ b/dev-python/python-lhafile/metadata.xml @@ -7,5 +7,6 @@ FrodeSolheim/python-lhafile + lhafile diff --git a/dev-python/python-libevdev/metadata.xml b/dev-python/python-libevdev/metadata.xml index 3e36bc06aa43..bda7c9f9cb50 100644 --- a/dev-python/python-libevdev/metadata.xml +++ b/dev-python/python-libevdev/metadata.xml @@ -1,8 +1,11 @@ - - x11@gentoo.org - X11 - + + x11@gentoo.org + X11 + + + libevdev + diff --git a/dev-python/python-linux-procfs/python-linux-procfs-0.6.1.ebuild b/dev-python/python-linux-procfs/python-linux-procfs-0.6.1.ebuild index c0a906f2109d..0985efc9d669 100644 --- a/dev-python/python-linux-procfs/python-linux-procfs-0.6.1.ebuild +++ b/dev-python/python-linux-procfs/python-linux-procfs-0.6.1.ebuild @@ -8,7 +8,8 @@ PYTHON_COMPAT=( python3_{6,7} ) inherit distutils-r1 DESCRIPTION="Python classes to extract information from the Linux kernel /proc files" -HOMEPAGE="https://www.kernel.org/pub/scm/libs/python/python-linux-procfs/ +HOMEPAGE=" + https://git.kernel.org/pub/scm/libs/python/python-linux-procfs/ https://kernel.googlesource.com/pub/scm/libs/python/python-linux-procfs/python-linux-procfs/" SRC_URI="https://cdn.kernel.org/pub/software/libs/python/${PN}/${P}.tar.xz" diff --git a/dev-python/python-musicbrainz-ngs/metadata.xml b/dev-python/python-musicbrainz-ngs/metadata.xml index 7495e8fac2c2..fe216de26831 100644 --- a/dev-python/python-musicbrainz-ngs/metadata.xml +++ b/dev-python/python-musicbrainz-ngs/metadata.xml @@ -16,6 +16,7 @@ - alastair/python-musicbrainz-ngs + alastair/python-musicbrainzngs + musicbrainzngs diff --git a/dev-python/python-octaviaclient/metadata.xml b/dev-python/python-octaviaclient/metadata.xml index 631e40d11e7e..1b041d17f9e5 100644 --- a/dev-python/python-octaviaclient/metadata.xml +++ b/dev-python/python-octaviaclient/metadata.xml @@ -9,4 +9,7 @@ Matthew Thode + + python-octaviaclient + diff --git a/dev-python/python-poppler-qt5/metadata.xml b/dev-python/python-poppler-qt5/metadata.xml index 37ebb55340a7..ae83af2b191a 100644 --- a/dev-python/python-poppler-qt5/metadata.xml +++ b/dev-python/python-poppler-qt5/metadata.xml @@ -7,5 +7,6 @@ frescobaldi/python-poppler-qt5 + python-poppler-qt5 diff --git a/dev-python/python-prctl/metadata.xml b/dev-python/python-prctl/metadata.xml index 76184b8b4383..a533d5208975 100644 --- a/dev-python/python-prctl/metadata.xml +++ b/dev-python/python-prctl/metadata.xml @@ -1,11 +1,12 @@ - - python@gentoo.org - Python - - - seveas/python-prctl - + + python@gentoo.org + Python + + + seveas/python-prctl + python-prctl + diff --git a/dev-python/python-sense-hat/metadata.xml b/dev-python/python-sense-hat/metadata.xml index 7c1f9d6b2a82..ae319bb54d44 100644 --- a/dev-python/python-sense-hat/metadata.xml +++ b/dev-python/python-sense-hat/metadata.xml @@ -11,7 +11,8 @@ to the International Space Station. - https://github.com/RPi-Distro/python-sense-hat/issues - RPi-Distro/python-sense-hat + https://github.com/astro-pi/python-sense-hat/issues + astro-pi/python-sense-hat + sense-hat diff --git a/dev-python/python-sense-hat/python-sense-hat-2.2.0-r2.ebuild b/dev-python/python-sense-hat/python-sense-hat-2.2.0-r2.ebuild index eee4918e1a4a..c8187b4e9e73 100644 --- a/dev-python/python-sense-hat/python-sense-hat-2.2.0-r2.ebuild +++ b/dev-python/python-sense-hat/python-sense-hat-2.2.0-r2.ebuild @@ -9,8 +9,8 @@ PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 DESCRIPTION="Raspberry Pi Sense HAT python library" -HOMEPAGE="https://github.com/RPi-Distro/python-sense-hat" -SRC_URI="https://github.com/RPi-Distro/python-sense-hat/archive/v${PV}.tar.gz -> ${P}.tar.gz" +HOMEPAGE="https://github.com/astro-pi/python-sense-hat" +SRC_URI="https://github.com/astro-pi/python-sense-hat/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0" diff --git a/dev-python/python-socks/metadata.xml b/dev-python/python-socks/metadata.xml index 266e3f19ca59..3880302d1883 100644 --- a/dev-python/python-socks/metadata.xml +++ b/dev-python/python-socks/metadata.xml @@ -4,4 +4,8 @@ python@gentoo.org + + python-socks + romis2012/python-socks + diff --git a/dev-python/python-sshpubkeys/metadata.xml b/dev-python/python-sshpubkeys/metadata.xml index c27580a1ca79..c773e85856d7 100644 --- a/dev-python/python-sshpubkeys/metadata.xml +++ b/dev-python/python-sshpubkeys/metadata.xml @@ -1,12 +1,16 @@ - - chutzpah@gentoo.org - Patrick McLean - - - python@gentoo.org - Python - + + chutzpah@gentoo.org + Patrick McLean + + + python@gentoo.org + Python + + + sshpubkeys + ojarva/python-sshpubkeys + diff --git a/dev-python/python-systemd/metadata.xml b/dev-python/python-systemd/metadata.xml index 8986208c5b02..5967660a0932 100644 --- a/dev-python/python-systemd/metadata.xml +++ b/dev-python/python-systemd/metadata.xml @@ -6,5 +6,6 @@ systemd/python-systemd + python-systemd diff --git a/dev-python/python-termstyle/metadata.xml b/dev-python/python-termstyle/metadata.xml index 47400ec692e8..7aceef00ef01 100644 --- a/dev-python/python-termstyle/metadata.xml +++ b/dev-python/python-termstyle/metadata.xml @@ -3,6 +3,7 @@ - gfxmonk/termstyle + timbertson/termstyle + python-termstyle diff --git a/dev-python/python-termstyle/python-termstyle-0.1.10.ebuild b/dev-python/python-termstyle/python-termstyle-0.1.10.ebuild index ff2ecebc98ea..1945a11446e8 100644 --- a/dev-python/python-termstyle/python-termstyle-0.1.10.ebuild +++ b/dev-python/python-termstyle/python-termstyle-0.1.10.ebuild @@ -8,7 +8,7 @@ inherit distutils-r1 DESCRIPTION="console colouring for python" HOMEPAGE="http://gfxmonk.net/dist/0install/python-termstyle.xml" -SRC_URI="https://github.com/gfxmonk/${PN#*-}/archive/${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="https://github.com/timbertson/${PN#*-}/archive/${PV}.tar.gz -> ${P}.tar.gz" S="${WORKDIR}/termstyle-${PV}" LICENSE="BSD" diff --git a/dev-python/python-vitrageclient/metadata.xml b/dev-python/python-vitrageclient/metadata.xml index 631e40d11e7e..a0ee204bec6f 100644 --- a/dev-python/python-vitrageclient/metadata.xml +++ b/dev-python/python-vitrageclient/metadata.xml @@ -9,4 +9,7 @@ Matthew Thode + + python-vitrageclient + diff --git a/dev-python/python-xlib/metadata.xml b/dev-python/python-xlib/metadata.xml index 736c78504618..07efb5b5f76c 100644 --- a/dev-python/python-xlib/metadata.xml +++ b/dev-python/python-xlib/metadata.xml @@ -1,4 +1,4 @@ - + @@ -8,5 +8,6 @@ python-xlib python-xlib/python-xlib + python-xlib diff --git a/dev-python/python-xmlsec/metadata.xml b/dev-python/python-xmlsec/metadata.xml index 56cae167d372..e5523976e0c6 100644 --- a/dev-python/python-xmlsec/metadata.xml +++ b/dev-python/python-xmlsec/metadata.xml @@ -1,8 +1,11 @@ - - chutzpah@gentoo.org - Patrick McLean - + + chutzpah@gentoo.org + Patrick McLean + + + xmlsec + diff --git a/dev-python/python-zipstream/metadata.xml b/dev-python/python-zipstream/metadata.xml index c126b28b8044..58db0beeb90d 100644 --- a/dev-python/python-zipstream/metadata.xml +++ b/dev-python/python-zipstream/metadata.xml @@ -6,6 +6,7 @@ allanlei/python-zipstream + zipstream https://github.com/allanlei/python-zipstream/issues diff --git a/dev-python/python-zunclient/metadata.xml b/dev-python/python-zunclient/metadata.xml index 631e40d11e7e..5e20b098d66a 100644 --- a/dev-python/python-zunclient/metadata.xml +++ b/dev-python/python-zunclient/metadata.xml @@ -9,4 +9,7 @@ Matthew Thode + + python-zunclient + diff --git a/dev-python/python3-openid/metadata.xml b/dev-python/python3-openid/metadata.xml index 4c9521c7cf13..47cdb63bc948 100644 --- a/dev-python/python3-openid/metadata.xml +++ b/dev-python/python3-openid/metadata.xml @@ -6,5 +6,6 @@ python3-openid + necaris/python3-openid diff --git a/dev-python/python3-saml/metadata.xml b/dev-python/python3-saml/metadata.xml index 56cae167d372..9a923ba5ee07 100644 --- a/dev-python/python3-saml/metadata.xml +++ b/dev-python/python3-saml/metadata.xml @@ -1,8 +1,12 @@ - - chutzpah@gentoo.org - Patrick McLean - + + chutzpah@gentoo.org + Patrick McLean + + + python3-saml + onelogin/python3-saml + diff --git a/dev-python/pythonz-bd/metadata.xml b/dev-python/pythonz-bd/metadata.xml index 2d6e2eed10d6..579ffd20c837 100644 --- a/dev-python/pythonz-bd/metadata.xml +++ b/dev-python/pythonz-bd/metadata.xml @@ -1,15 +1,16 @@ - - python@gentoo.org - Python - - - pythonz-bd - - saghul@gmail.com - saghul - - + + python@gentoo.org + Python + + + pythonz-bd + + saghul@gmail.com + saghul + + berdario/pythonz + diff --git a/dev-python/pyvirtualdisplay/metadata.xml b/dev-python/pyvirtualdisplay/metadata.xml index d22e99d73577..a1cade085938 100644 --- a/dev-python/pyvirtualdisplay/metadata.xml +++ b/dev-python/pyvirtualdisplay/metadata.xml @@ -9,4 +9,7 @@ proxy-maint@gentoo.org Proxy Maintainers + + PyVirtualDisplay + diff --git a/dev-python/pyx/metadata.xml b/dev-python/pyx/metadata.xml index f54711af01e2..2561edaa7250 100644 --- a/dev-python/pyx/metadata.xml +++ b/dev-python/pyx/metadata.xml @@ -1,4 +1,4 @@ - + @@ -14,5 +14,6 @@ of these primitives. PyX pyx + pyx-project/pyx diff --git a/dev-python/pyyaml/metadata.xml b/dev-python/pyyaml/metadata.xml index 79464ece48b1..de5a398de7ab 100644 --- a/dev-python/pyyaml/metadata.xml +++ b/dev-python/pyyaml/metadata.xml @@ -1,14 +1,16 @@ - - python@gentoo.org - Python - - - enable support for C implementation using libyaml - - - cpe:/a:pyyaml_project:pyyaml - + + python@gentoo.org + Python + + + enable support for C implementation using libyaml + + + cpe:/a:pyyaml_project:pyyaml + PyYAML + yaml/pyyaml + diff --git a/dev-python/pyzbar/metadata.xml b/dev-python/pyzbar/metadata.xml index 7f4f33c6dbc9..9084ce5b8437 100644 --- a/dev-python/pyzbar/metadata.xml +++ b/dev-python/pyzbar/metadata.xml @@ -5,4 +5,7 @@ python@gentoo.org Python + + pyzbar + diff --git a/dev-python/pyzmq/metadata.xml b/dev-python/pyzmq/metadata.xml index 6c1c2af5565c..10e6ed7c7fa2 100644 --- a/dev-python/pyzmq/metadata.xml +++ b/dev-python/pyzmq/metadata.xml @@ -1,14 +1,15 @@ - - python@gentoo.org - Python - - - pyzmq - - - Enable draft API support - + + python@gentoo.org + Python + + + pyzmq + zeromq/pyzmq + + + Enable draft API support + diff --git a/dev-python/pyzmq/pyzmq-20.0.0.ebuild b/dev-python/pyzmq/pyzmq-20.0.0.ebuild index 6331efd8fcf1..459b6cefd499 100644 --- a/dev-python/pyzmq/pyzmq-20.0.0.ebuild +++ b/dev-python/pyzmq/pyzmq-20.0.0.ebuild @@ -10,7 +10,7 @@ inherit flag-o-matic distutils-r1 toolchain-funcs DESCRIPTION="Lightweight and super-fast messaging library built on top of the ZeroMQ library" HOMEPAGE=" - https://www.zeromq.org/bindings:python + https://zeromq.org/languages/python/ https://pypi.org/project/pyzmq/ https://github.com/zeromq/pyzmq/" SRC_URI=" diff --git a/dev-python/qdarkstyle/metadata.xml b/dev-python/qdarkstyle/metadata.xml index 20ab94177c12..80481fb1e9bc 100644 --- a/dev-python/qdarkstyle/metadata.xml +++ b/dev-python/qdarkstyle/metadata.xml @@ -1,6 +1,5 @@ - andrewammerlaan@riseup.net @@ -10,4 +9,7 @@ proxy-maint@gentoo.org Proxy Maintainers + + QDarkStyle + diff --git a/dev-python/qtsass/metadata.xml b/dev-python/qtsass/metadata.xml index dd0bd9c021f6..a83bd6e4536b 100644 --- a/dev-python/qtsass/metadata.xml +++ b/dev-python/qtsass/metadata.xml @@ -1,13 +1,15 @@ - - - andrewammerlaan@riseup.net - Andrew Ammerlaan - - - proxy-maint@gentoo.org - Proxy Maintainers - + + andrewammerlaan@riseup.net + Andrew Ammerlaan + + + proxy-maint@gentoo.org + Proxy Maintainers + + + qtsass + diff --git a/dev-python/raet/metadata.xml b/dev-python/raet/metadata.xml index c86e60dfed36..e4112b9cafa3 100644 --- a/dev-python/raet/metadata.xml +++ b/dev-python/raet/metadata.xml @@ -1,16 +1,16 @@ - - chutzpah@gentoo.org - Patrick McLean - - - python@gentoo.org - Python - - - raet - saltstack/raet - + + chutzpah@gentoo.org + Patrick McLean + + + python@gentoo.org + Python + + + raet + RaetProtocol/raet + diff --git a/dev-python/random2/metadata.xml b/dev-python/random2/metadata.xml index 13830225acf7..940f80c114b7 100644 --- a/dev-python/random2/metadata.xml +++ b/dev-python/random2/metadata.xml @@ -4,4 +4,7 @@ grozin@gentoo.org + + random2 + diff --git a/dev-python/ratelimit/metadata.xml b/dev-python/ratelimit/metadata.xml index 251874fa1888..655eaa2b6e00 100644 --- a/dev-python/ratelimit/metadata.xml +++ b/dev-python/ratelimit/metadata.xml @@ -15,6 +15,7 @@ Proxy Maintainers - tomasbasham/ratelimit" + tomasbasham/ratelimit + ratelimit diff --git a/dev-python/re-assert/metadata.xml b/dev-python/re-assert/metadata.xml index e59516686a44..2ec36ed8486f 100644 --- a/dev-python/re-assert/metadata.xml +++ b/dev-python/re-assert/metadata.xml @@ -5,4 +5,7 @@ python@gentoo.org + + re-assert + diff --git a/dev-python/readthedocs-sphinx-ext/metadata.xml b/dev-python/readthedocs-sphinx-ext/metadata.xml index ec3c387df89f..9fa0dfd7b6c4 100644 --- a/dev-python/readthedocs-sphinx-ext/metadata.xml +++ b/dev-python/readthedocs-sphinx-ext/metadata.xml @@ -1,9 +1,12 @@ - - python@gentoo.org - Python - - + + python@gentoo.org + Python + + + + readthedocs-sphinx-ext + diff --git a/dev-python/reedsolomon/metadata.xml b/dev-python/reedsolomon/metadata.xml index f4f98f9eb8c3..3c10820d5616 100644 --- a/dev-python/reedsolomon/metadata.xml +++ b/dev-python/reedsolomon/metadata.xml @@ -11,5 +11,6 @@ tomerfiliba/reedsolomon + reedsolo diff --git a/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild b/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild index 70f3dc5d7f7a..fb707b51b17c 100644 --- a/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild +++ b/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/tomerfiliba/${PN}/archive/v${PV}.tar.gz -> ${P}.tar. LICENSE="public-domain" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-python/rencode/metadata.xml b/dev-python/rencode/metadata.xml index 3ca1128740cf..be3b0fc774d0 100644 --- a/dev-python/rencode/metadata.xml +++ b/dev-python/rencode/metadata.xml @@ -11,5 +11,6 @@ pure Python module written by Petru Paler, Connelly Barnes et al. aresch/rencode + rencode diff --git a/dev-python/requests-file/metadata.xml b/dev-python/requests-file/metadata.xml index f3de5f693ed8..fa0421a3d388 100644 --- a/dev-python/requests-file/metadata.xml +++ b/dev-python/requests-file/metadata.xml @@ -1,8 +1,11 @@ - - patrick@gentoo.org - Patrick Lauer - + + patrick@gentoo.org + Patrick Lauer + + + requests-file + diff --git a/dev-python/requests-kerberos/metadata.xml b/dev-python/requests-kerberos/metadata.xml index faa93f153410..713965237730 100644 --- a/dev-python/requests-kerberos/metadata.xml +++ b/dev-python/requests-kerberos/metadata.xml @@ -7,5 +7,6 @@ requests-kerberos + requests/requests-kerberos diff --git a/dev-python/requests-ntlm/metadata.xml b/dev-python/requests-ntlm/metadata.xml index 1183eb4b2ec4..c4a594c35d01 100644 --- a/dev-python/requests-ntlm/metadata.xml +++ b/dev-python/requests-ntlm/metadata.xml @@ -11,5 +11,6 @@ requests_ntlm + requests/requests-ntlm diff --git a/dev-python/requests-oauthlib/metadata.xml b/dev-python/requests-oauthlib/metadata.xml index 58c53b538b89..719241b63845 100644 --- a/dev-python/requests-oauthlib/metadata.xml +++ b/dev-python/requests-oauthlib/metadata.xml @@ -7,5 +7,6 @@ requests/requests-oauthlib + requests-oauthlib diff --git a/dev-python/requests-unixsocket/metadata.xml b/dev-python/requests-unixsocket/metadata.xml index 266e3f19ca59..f39c21389d70 100644 --- a/dev-python/requests-unixsocket/metadata.xml +++ b/dev-python/requests-unixsocket/metadata.xml @@ -4,4 +4,7 @@ python@gentoo.org + + requests-unixsocket + diff --git a/dev-python/resumable-urlretrieve/metadata.xml b/dev-python/resumable-urlretrieve/metadata.xml index d1c3ada71a43..e5d02138b7ff 100644 --- a/dev-python/resumable-urlretrieve/metadata.xml +++ b/dev-python/resumable-urlretrieve/metadata.xml @@ -1,15 +1,16 @@ - - python@gentoo.org - Python - - - resumable-urlretrieve - - berdario+pypi@gmail.com - Dario Bertini - - + + python@gentoo.org + Python + + + resumable-urlretrieve + + berdario+pypi@gmail.com + Dario Bertini + + berdario/resumable-urlretrieve + diff --git a/dev-python/retry-decorator/metadata.xml b/dev-python/retry-decorator/metadata.xml index 3ebcb7e2d26a..6ab5a77f0e10 100644 --- a/dev-python/retry-decorator/metadata.xml +++ b/dev-python/retry-decorator/metadata.xml @@ -1,12 +1,13 @@ - - python@gentoo.org - Python - - - - pnpnpn/retry-decorator - + + python@gentoo.org + Python + + + + pnpnpn/retry-decorator + retry-decorator + diff --git a/dev-python/rjsmin/metadata.xml b/dev-python/rjsmin/metadata.xml index c36c37139fad..18193f228976 100644 --- a/dev-python/rjsmin/metadata.xml +++ b/dev-python/rjsmin/metadata.xml @@ -5,4 +5,7 @@ williamh@gentoo.org William Hubbs + + rjsmin + diff --git a/dev-python/ropemode/metadata.xml b/dev-python/ropemode/metadata.xml index 5aa7fe424b21..f4c065ef69bb 100644 --- a/dev-python/ropemode/metadata.xml +++ b/dev-python/ropemode/metadata.xml @@ -7,5 +7,6 @@ ropemode + python-rope/ropemode diff --git a/dev-python/rply/metadata.xml b/dev-python/rply/metadata.xml index a1678ef4e2d1..2abc747e45c3 100644 --- a/dev-python/rply/metadata.xml +++ b/dev-python/rply/metadata.xml @@ -1,11 +1,12 @@ - - python@gentoo.org - Python - - - alex/rply - + + python@gentoo.org + Python + + + alex/rply + rply + diff --git a/dev-python/rtimulib/metadata.xml b/dev-python/rtimulib/metadata.xml index b25408628426..c14f3cf91a22 100644 --- a/dev-python/rtimulib/metadata.xml +++ b/dev-python/rtimulib/metadata.xml @@ -14,5 +14,6 @@ https://github.com/RPi-Distro/RTIMULib/issues RPi-Distro/RTIMULib + RTIMULib diff --git a/dev-python/sabyenc/metadata.xml b/dev-python/sabyenc/metadata.xml index a32d600f949d..f2342a2b8ac5 100644 --- a/dev-python/sabyenc/metadata.xml +++ b/dev-python/sabyenc/metadata.xml @@ -5,4 +5,7 @@ whissi@gentoo.org Thomas Deutschmann + + sabyenc + diff --git a/dev-python/scikit-build/metadata.xml b/dev-python/scikit-build/metadata.xml index 887a2a30e0ad..c4d4aee28f07 100644 --- a/dev-python/scikit-build/metadata.xml +++ b/dev-python/scikit-build/metadata.xml @@ -1,6 +1,5 @@ - sci@gentoo.org @@ -9,4 +8,7 @@ python@gentoo.org + + scikit-build + diff --git a/dev-python/scripttest/metadata.xml b/dev-python/scripttest/metadata.xml index f8b627581028..01164eae1e4a 100644 --- a/dev-python/scripttest/metadata.xml +++ b/dev-python/scripttest/metadata.xml @@ -6,6 +6,7 @@ Python - ScriptTest + scripttest + pypa/scripttest diff --git a/dev-python/scripttest/scripttest-1.3.0-r1.ebuild b/dev-python/scripttest/scripttest-1.3.0-r1.ebuild index 6f5a87847e1d..ad68f3fadbce 100644 --- a/dev-python/scripttest/scripttest-1.3.0-r1.ebuild +++ b/dev-python/scripttest/scripttest-1.3.0-r1.ebuild @@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 ) inherit distutils-r1 DESCRIPTION="A very small text templating language" -HOMEPAGE="https://pypi.org/project/ScriptTest/ +HOMEPAGE="https://pypi.org/project/scripttest/ https://github.com/pypa/scripttest" # pypi tarball lacks tests SRC_URI="https://github.com/pypa/scripttest/archive/${PV}.tar.gz -> ${P}.tar.gz" diff --git a/dev-python/scrypt/metadata.xml b/dev-python/scrypt/metadata.xml index 2d629947efa3..b7bde18ccf3e 100644 --- a/dev-python/scrypt/metadata.xml +++ b/dev-python/scrypt/metadata.xml @@ -11,6 +11,6 @@ scrypt - mhallin/py-scrypt + holgern/py-scrypt diff --git a/dev-python/semver/metadata.xml b/dev-python/semver/metadata.xml index f6192cec3f7d..8c7126bf22a4 100644 --- a/dev-python/semver/metadata.xml +++ b/dev-python/semver/metadata.xml @@ -6,7 +6,7 @@ Georgy Yakovlev - k-bx/python-semver semver + python-semver/python-semver diff --git a/dev-python/serverfiles/metadata.xml b/dev-python/serverfiles/metadata.xml index 007aaf442ea7..9358a3cc04bb 100644 --- a/dev-python/serverfiles/metadata.xml +++ b/dev-python/serverfiles/metadata.xml @@ -1,7 +1,10 @@ - - amynka@gentoo.org - + + amynka@gentoo.org + + + serverfiles + diff --git a/dev-python/service_identity/metadata.xml b/dev-python/service_identity/metadata.xml index 6bd4e3786bdb..23098200b7d0 100644 --- a/dev-python/service_identity/metadata.xml +++ b/dev-python/service_identity/metadata.xml @@ -1,13 +1,13 @@ - - python@gentoo.org - Python - - - - service_identity - pyca/service_identity - + + python@gentoo.org + Python + + + + service_identity + pyca/service-identity + diff --git a/dev-python/setuptools_scm_git_archive/metadata.xml b/dev-python/setuptools_scm_git_archive/metadata.xml index 1f54352252db..0c29c96341f3 100644 --- a/dev-python/setuptools_scm_git_archive/metadata.xml +++ b/dev-python/setuptools_scm_git_archive/metadata.xml @@ -6,4 +6,7 @@ Pacho Ramos + + setuptools-scm-git-archive + diff --git a/dev-python/sexpdata/metadata.xml b/dev-python/sexpdata/metadata.xml index 3dabd781b02c..624f3f3c1cdb 100644 --- a/dev-python/sexpdata/metadata.xml +++ b/dev-python/sexpdata/metadata.xml @@ -6,6 +6,7 @@ Gentoo Layman team - tkf/sexpdata + jd-boyd/sexpdata + sexpdata diff --git a/dev-python/sexpdata/sexpdata-0.0.3-r1.ebuild b/dev-python/sexpdata/sexpdata-0.0.3-r1.ebuild index a6df09476ee4..ccbc8d50d080 100644 --- a/dev-python/sexpdata/sexpdata-0.0.3-r1.ebuild +++ b/dev-python/sexpdata/sexpdata-0.0.3-r1.ebuild @@ -9,8 +9,8 @@ DISTUTILS_USE_SETUPTOOLS=no inherit distutils-r1 DESCRIPTION="a simple S-expression parser/serializer" -HOMEPAGE="https://github.com/tkf/sexpdata" -SRC_URI="https://github.com/tkf/sexpdata/archive/v${PV}.tar.gz -> ${P}.tar.gz" +HOMEPAGE="https://github.com/jd-boyd/sexpdata" +SRC_URI="https://github.com/jd-boyd/sexpdata/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD-2" SLOT="0" diff --git a/dev-python/sgmllib3k/metadata.xml b/dev-python/sgmllib3k/metadata.xml index 266e3f19ca59..494249786841 100644 --- a/dev-python/sgmllib3k/metadata.xml +++ b/dev-python/sgmllib3k/metadata.xml @@ -4,4 +4,7 @@ python@gentoo.org + + sgmllib3k + diff --git a/dev-python/shiboken2/metadata.xml b/dev-python/shiboken2/metadata.xml index 766f70c1559b..391fe0f6d4f0 100644 --- a/dev-python/shiboken2/metadata.xml +++ b/dev-python/shiboken2/metadata.xml @@ -10,4 +10,7 @@ Implicitly convert passed NumPy arrays to Qt lists Generate "QSurface::VulkanSurface" bindings + + shiboken2 + diff --git a/dev-python/simplebayes/metadata.xml b/dev-python/simplebayes/metadata.xml index 3b9be0dd1edc..50f86acff519 100644 --- a/dev-python/simplebayes/metadata.xml +++ b/dev-python/simplebayes/metadata.xml @@ -13,5 +13,6 @@ This work is heavily inspired by the python "redisbayes" module found here: hickeroar/simplebayes + simplebayes diff --git a/dev-python/simplejson/metadata.xml b/dev-python/simplejson/metadata.xml index a074e88efd6a..b31bccf3c8b2 100644 --- a/dev-python/simplejson/metadata.xml +++ b/dev-python/simplejson/metadata.xml @@ -1,11 +1,12 @@ - - python@gentoo.org - Python - - - simplejson - + + python@gentoo.org + Python + + + simplejson + simplejson/simplejson + diff --git a/dev-python/simplesoapy/metadata.xml b/dev-python/simplesoapy/metadata.xml index 8058136f8538..9ddefc709839 100644 --- a/dev-python/simplesoapy/metadata.xml +++ b/dev-python/simplesoapy/metadata.xml @@ -11,5 +11,6 @@ xmikos/simplesoapy + SimpleSoapy diff --git a/dev-python/simplespectral/metadata.xml b/dev-python/simplespectral/metadata.xml index 3d1f57eeceec..af55c3f1a4ba 100644 --- a/dev-python/simplespectral/metadata.xml +++ b/dev-python/simplespectral/metadata.xml @@ -15,5 +15,6 @@ xmikos/simplespectral + SimpleSpectral diff --git a/dev-python/slimit/metadata.xml b/dev-python/slimit/metadata.xml index 8fcb09c9e9a0..1e181f90851d 100644 --- a/dev-python/slimit/metadata.xml +++ b/dev-python/slimit/metadata.xml @@ -9,4 +9,7 @@ proxy-maint@gentoo.org Gentoo Proxy Maintainers Project + + slimit + diff --git a/dev-python/snaketrace/metadata.xml b/dev-python/snaketrace/metadata.xml index 56cae167d372..a90ecb834b8d 100644 --- a/dev-python/snaketrace/metadata.xml +++ b/dev-python/snaketrace/metadata.xml @@ -1,8 +1,12 @@ - - chutzpah@gentoo.org - Patrick McLean - + + chutzpah@gentoo.org + Patrick McLean + + + snaketrace + dcoles/snaketrace + diff --git a/dev-python/snapshottest/metadata.xml b/dev-python/snapshottest/metadata.xml index 592df77578dc..e779ee6dec6e 100644 --- a/dev-python/snapshottest/metadata.xml +++ b/dev-python/snapshottest/metadata.xml @@ -1,12 +1,12 @@ - - python@gentoo.org - Python - - - sphinxcontrib-httpdomain - birkenfeld/sphinx-contrib - + + python@gentoo.org + Python + + + snapshottest + syrusakbary/snapshottest + diff --git a/dev-python/snowballstemmer/metadata.xml b/dev-python/snowballstemmer/metadata.xml index 707c683d63fc..7ee19263a64f 100644 --- a/dev-python/snowballstemmer/metadata.xml +++ b/dev-python/snowballstemmer/metadata.xml @@ -1,13 +1,13 @@ - - python@gentoo.org - Python - - - - snowballstemmer - shibukawa/snowball_py - + + python@gentoo.org + Python + + + + snowballstemmer + snowballstem/snowball + diff --git a/dev-python/sortedcontainers/metadata.xml b/dev-python/sortedcontainers/metadata.xml index 0aba6fc70323..9757920884fc 100644 --- a/dev-python/sortedcontainers/metadata.xml +++ b/dev-python/sortedcontainers/metadata.xml @@ -1,13 +1,13 @@ - - python@gentoo.org - Python - - - - sortedcontainers - grantjenks/sorted_containers - + + python@gentoo.org + Python + + + + sortedcontainers + grantjenks/python-sortedcontainers + diff --git a/dev-python/soupsieve/Manifest b/dev-python/soupsieve/Manifest index b327b9a013ce..e2fbb2a156dc 100644 --- a/dev-python/soupsieve/Manifest +++ b/dev-python/soupsieve/Manifest @@ -1 +1,2 @@ DIST soupsieve-2.0.1.tar.gz 96436 BLAKE2B 00fe9390569886181d484c5eb3f2a14352c16c3807d4e2eca8b5fe0ff0fdc1ec77fcf6b32885d76f3a085c149848bdeafa1fd2cabdd4fe4742fc175c34aa72c4 SHA512 f4ef4deee81bb31952e1d3216250712f09b425e7a2253e15bd1b38cb74b680e421e7d086a8770737898f6b57867f07f2dd07b8a98108d05e338bce92b274b85f +DIST soupsieve-2.1.0.tar.gz 98150 BLAKE2B 37f6ef00f42d164ef57be88135e8a942166f53a39ed5643d6ae0468916a66be04c79e4e70da6ad38f8adf6fac41cb8bccb7edcfabd7e1a07083ab8a043d5203a SHA512 19cd4ee596d189a001bbaf9f047e6c9eff569e2149ef5424bfe55c9b4325d856c957de87d55510335f748aab322dbb847b06b48931fbdeadbcc3790259c69eb1 diff --git a/dev-python/soupsieve/soupsieve-2.1.0.ebuild b/dev-python/soupsieve/soupsieve-2.1.0.ebuild new file mode 100644 index 000000000000..19bfd18e7a7d --- /dev/null +++ b/dev-python/soupsieve/soupsieve-2.1.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="A modern CSS selector implementation for BeautifulSoup" +HOMEPAGE="https://github.com/facelessuser/soupsieve/ + https://pypi.org/project/soupsieve/" +SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-macos" +IUSE="test" +RESTRICT+=" !test? ( test )" + +BDEPEND="${RDEPEND} + test? ( + dev-python/beautifulsoup[${PYTHON_USEDEP}] + dev-python/lxml[${PYTHON_USEDEP}] + dev-python/html5lib[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest diff --git a/dev-python/sphinx-multiversion/metadata.xml b/dev-python/sphinx-multiversion/metadata.xml index d22e99d73577..624e6919569a 100644 --- a/dev-python/sphinx-multiversion/metadata.xml +++ b/dev-python/sphinx-multiversion/metadata.xml @@ -9,4 +9,7 @@ proxy-maint@gentoo.org Proxy Maintainers + + sphinx-multiversion + diff --git a/dev-python/sphinx-panels/metadata.xml b/dev-python/sphinx-panels/metadata.xml index d22e99d73577..4072be559b5f 100644 --- a/dev-python/sphinx-panels/metadata.xml +++ b/dev-python/sphinx-panels/metadata.xml @@ -9,4 +9,7 @@ proxy-maint@gentoo.org Proxy Maintainers + + sphinx-panels + diff --git a/dev-python/sphinx-py3doc-enhanced-theme/metadata.xml b/dev-python/sphinx-py3doc-enhanced-theme/metadata.xml index 9fd064be82e7..a7f20abd9f52 100644 --- a/dev-python/sphinx-py3doc-enhanced-theme/metadata.xml +++ b/dev-python/sphinx-py3doc-enhanced-theme/metadata.xml @@ -11,7 +11,7 @@ contact@ionelmc.ro Ionel Cristian Mărieș - sphinx-py3doc-enhanced-theme ionelmc/sphinx-py3doc-enhanced-theme + sphinx_py3doc_enhanced_theme diff --git a/dev-python/sphinx-testing/metadata.xml b/dev-python/sphinx-testing/metadata.xml index 605d625f69e7..c837a2647c6d 100644 --- a/dev-python/sphinx-testing/metadata.xml +++ b/dev-python/sphinx-testing/metadata.xml @@ -1,11 +1,12 @@ - + - - python@gentoo.org - Python - - - sphinx-doc/sphinx-testing - + + python@gentoo.org + Python + + + sphinx-doc/sphinx-testing + sphinx-testing + diff --git a/dev-python/sphinx/metadata.xml b/dev-python/sphinx/metadata.xml index 87aa42aee055..9d3a35739700 100644 --- a/dev-python/sphinx/metadata.xml +++ b/dev-python/sphinx/metadata.xml @@ -9,5 +9,6 @@ Sphinx + sphinx-doc/sphinx diff --git a/dev-python/sphinx_rtd_theme/metadata.xml b/dev-python/sphinx_rtd_theme/metadata.xml index 7b5643429d91..d499deefef3c 100644 --- a/dev-python/sphinx_rtd_theme/metadata.xml +++ b/dev-python/sphinx_rtd_theme/metadata.xml @@ -1,13 +1,13 @@ - - python@gentoo.org - Python - - - - sphinx_rtd_theme - snide/sphinx_rtd_theme - + + python@gentoo.org + Python + + + + sphinx-rtd-theme + readthedocs/sphinx_rtd_theme + diff --git a/dev-python/sphinxcontrib-applehelp/metadata.xml b/dev-python/sphinxcontrib-applehelp/metadata.xml index 5f2f3cd24f8e..2a6675d40762 100644 --- a/dev-python/sphinxcontrib-applehelp/metadata.xml +++ b/dev-python/sphinxcontrib-applehelp/metadata.xml @@ -7,5 +7,6 @@ sphinxcontrib-applehelp + sphinx-doc/sphinxcontrib-applehelp diff --git a/dev-python/sphinxcontrib-blockdiag/metadata.xml b/dev-python/sphinxcontrib-blockdiag/metadata.xml index df1f7a5b0aba..3d8642cf24d5 100644 --- a/dev-python/sphinxcontrib-blockdiag/metadata.xml +++ b/dev-python/sphinxcontrib-blockdiag/metadata.xml @@ -10,5 +10,6 @@ Takeshi KOMIYA blockdiag/sphinxcontrib-blockdiag + sphinxcontrib-blockdiag diff --git a/dev-python/sphinxcontrib-devhelp/metadata.xml b/dev-python/sphinxcontrib-devhelp/metadata.xml index 56e1912641fe..17b7460ec211 100644 --- a/dev-python/sphinxcontrib-devhelp/metadata.xml +++ b/dev-python/sphinxcontrib-devhelp/metadata.xml @@ -7,5 +7,6 @@ sphinxcontrib-devhelp + sphinx-doc/sphinxcontrib-devhelp diff --git a/dev-python/sphinxcontrib-htmlhelp/metadata.xml b/dev-python/sphinxcontrib-htmlhelp/metadata.xml index 0cca313393e1..f362420c0513 100644 --- a/dev-python/sphinxcontrib-htmlhelp/metadata.xml +++ b/dev-python/sphinxcontrib-htmlhelp/metadata.xml @@ -7,5 +7,6 @@ sphinxcontrib-htmlhelp + sphinx-doc/sphinxcontrib-htmlhelp diff --git a/dev-python/sphinxcontrib-httpdomain/metadata.xml b/dev-python/sphinxcontrib-httpdomain/metadata.xml index d83bf47b2cee..5a53e8bed968 100644 --- a/dev-python/sphinxcontrib-httpdomain/metadata.xml +++ b/dev-python/sphinxcontrib-httpdomain/metadata.xml @@ -1,13 +1,13 @@ - - python@gentoo.org - Python - - - - sphinxcontrib-httpdomain - birkenfeld/sphinx-contrib - + + python@gentoo.org + Python + + + + sphinxcontrib-httpdomain + sphinx-contrib/httpdomain + diff --git a/dev-python/sphinxcontrib-httpexample/metadata.xml b/dev-python/sphinxcontrib-httpexample/metadata.xml index 39ac3a9a9590..d1cf45af9cef 100644 --- a/dev-python/sphinxcontrib-httpexample/metadata.xml +++ b/dev-python/sphinxcontrib-httpexample/metadata.xml @@ -1,16 +1,19 @@ - - chutzpah@gentoo.org - Patrick McLean - - - williamh@gentoo.org - William Hubbs - - - vpayno+gentoo@gmail.com - Victor Payno - + + chutzpah@gentoo.org + Patrick McLean + + + williamh@gentoo.org + William Hubbs + + + vpayno+gentoo@gmail.com + Victor Payno + + + sphinxcontrib-httpexample + diff --git a/dev-python/sphinxcontrib-jsmath/metadata.xml b/dev-python/sphinxcontrib-jsmath/metadata.xml index a04c6af16897..053654d336bd 100644 --- a/dev-python/sphinxcontrib-jsmath/metadata.xml +++ b/dev-python/sphinxcontrib-jsmath/metadata.xml @@ -7,5 +7,6 @@ sphinxcontrib-jsmath + sphinx-doc/sphinxcontrib-jsmath diff --git a/dev-python/sphinxcontrib-qthelp/metadata.xml b/dev-python/sphinxcontrib-qthelp/metadata.xml index a830ee0b076f..b1a9486a7b7b 100644 --- a/dev-python/sphinxcontrib-qthelp/metadata.xml +++ b/dev-python/sphinxcontrib-qthelp/metadata.xml @@ -7,5 +7,6 @@ sphinxcontrib-qthelp + sphinx-doc/sphinxcontrib-qthelp diff --git a/dev-python/sphinxcontrib-serializinghtml/metadata.xml b/dev-python/sphinxcontrib-serializinghtml/metadata.xml index 147a7c886eae..4d65a01ad697 100644 --- a/dev-python/sphinxcontrib-serializinghtml/metadata.xml +++ b/dev-python/sphinxcontrib-serializinghtml/metadata.xml @@ -8,5 +8,6 @@ sphinxcontrib-serializinghtml + sphinx-doc/sphinxcontrib-serializinghtml diff --git a/dev-python/spur/metadata.xml b/dev-python/spur/metadata.xml index e59516686a44..51b1ef540169 100644 --- a/dev-python/spur/metadata.xml +++ b/dev-python/spur/metadata.xml @@ -5,4 +5,7 @@ python@gentoo.org + + spur + diff --git a/dev-python/spyder-line-profiler/metadata.xml b/dev-python/spyder-line-profiler/metadata.xml index 8fc11184ab00..51c57d3fb52c 100644 --- a/dev-python/spyder-line-profiler/metadata.xml +++ b/dev-python/spyder-line-profiler/metadata.xml @@ -1,4 +1,4 @@ - + @@ -9,4 +9,7 @@ proxy-maint@gentoo.org Proxy Maintainers + + spyder-line-profiler + diff --git a/dev-python/spyder-memory-profiler/metadata.xml b/dev-python/spyder-memory-profiler/metadata.xml index 8fc11184ab00..8d57702fe441 100644 --- a/dev-python/spyder-memory-profiler/metadata.xml +++ b/dev-python/spyder-memory-profiler/metadata.xml @@ -1,4 +1,4 @@ - + @@ -9,4 +9,7 @@ proxy-maint@gentoo.org Proxy Maintainers + + spyder-memory-profiler + diff --git a/dev-python/spyder-notebook/metadata.xml b/dev-python/spyder-notebook/metadata.xml index 8fc11184ab00..21d0219b1ff0 100644 --- a/dev-python/spyder-notebook/metadata.xml +++ b/dev-python/spyder-notebook/metadata.xml @@ -1,4 +1,4 @@ - + @@ -9,4 +9,7 @@ proxy-maint@gentoo.org Proxy Maintainers + + spyder-notebook + diff --git a/dev-python/spyder-terminal/metadata.xml b/dev-python/spyder-terminal/metadata.xml index 8fc11184ab00..07953662c9cf 100644 --- a/dev-python/spyder-terminal/metadata.xml +++ b/dev-python/spyder-terminal/metadata.xml @@ -1,4 +1,4 @@ - + @@ -9,4 +9,7 @@ proxy-maint@gentoo.org Proxy Maintainers + + spyder-terminal + diff --git a/dev-python/spyder-unittest/metadata.xml b/dev-python/spyder-unittest/metadata.xml index 8fc11184ab00..52de5cb4741c 100644 --- a/dev-python/spyder-unittest/metadata.xml +++ b/dev-python/spyder-unittest/metadata.xml @@ -1,4 +1,4 @@ - + @@ -9,4 +9,7 @@ proxy-maint@gentoo.org Proxy Maintainers + + spyder-unittest + diff --git a/dev-python/sshtunnel/metadata.xml b/dev-python/sshtunnel/metadata.xml index 85354d2bff69..ad45e659878f 100644 --- a/dev-python/sshtunnel/metadata.xml +++ b/dev-python/sshtunnel/metadata.xml @@ -6,4 +6,7 @@ Aaron W. Swenson + + sshtunnel + diff --git a/dev-python/stapler/metadata.xml b/dev-python/stapler/metadata.xml index 49cb5cf0b5a9..a9cb07912d62 100644 --- a/dev-python/stapler/metadata.xml +++ b/dev-python/stapler/metadata.xml @@ -7,5 +7,6 @@ hellerbarde/stapler + stapler diff --git a/dev-python/subunit/metadata.xml b/dev-python/subunit/metadata.xml index e42cdff158cf..7bea5be9594d 100644 --- a/dev-python/subunit/metadata.xml +++ b/dev-python/subunit/metadata.xml @@ -11,5 +11,6 @@ subunit + python-subunit diff --git a/dev-python/subvertpy/metadata.xml b/dev-python/subvertpy/metadata.xml index 7f4f33c6dbc9..fce1bcc9def2 100644 --- a/dev-python/subvertpy/metadata.xml +++ b/dev-python/subvertpy/metadata.xml @@ -5,4 +5,7 @@ python@gentoo.org Python + + subvertpy + diff --git a/dev-python/subvertpy/subvertpy-0.10.1.ebuild b/dev-python/subvertpy/subvertpy-0.10.1.ebuild index f5e3b86695a8..ee01baf4ded1 100644 --- a/dev-python/subvertpy/subvertpy-0.10.1.ebuild +++ b/dev-python/subvertpy/subvertpy-0.10.1.ebuild @@ -9,7 +9,9 @@ PYTHON_COMPAT=( python3_{6,7} ) inherit distutils-r1 DESCRIPTION="Alternative Python bindings for Subversion" -HOMEPAGE="https://jelmer.uk/code/subvertpy/ https://pypi.org/project/subvertpy" +HOMEPAGE=" + https://jelmer.uk/code/subvertpy/ + https://pypi.org/project/subvertpy/" SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" LICENSE="|| ( LGPL-2.1 LGPL-3 )" diff --git a/dev-python/svgwrite/metadata.xml b/dev-python/svgwrite/metadata.xml index 7f4f33c6dbc9..833a9c5c9c84 100644 --- a/dev-python/svgwrite/metadata.xml +++ b/dev-python/svgwrite/metadata.xml @@ -5,4 +5,7 @@ python@gentoo.org Python + + svgwrite + diff --git a/dev-python/swagger-spec-validator/metadata.xml b/dev-python/swagger-spec-validator/metadata.xml index c36c37139fad..39003aa1d43a 100644 --- a/dev-python/swagger-spec-validator/metadata.xml +++ b/dev-python/swagger-spec-validator/metadata.xml @@ -5,4 +5,7 @@ williamh@gentoo.org William Hubbs + + swagger-spec-validator + diff --git a/dev-python/symengine/metadata.xml b/dev-python/symengine/metadata.xml index 202e3195339e..7a85ec6adad9 100644 --- a/dev-python/symengine/metadata.xml +++ b/dev-python/symengine/metadata.xml @@ -1,11 +1,12 @@ - + - - sci-mathematics@gentoo.org - Gentoo Mathematics Project - - - symengine/symengine.py - + + sci-mathematics@gentoo.org + Gentoo Mathematics Project + + + symengine/symengine.py + symengine + diff --git a/dev-python/tabulate/metadata.xml b/dev-python/tabulate/metadata.xml index 76f47821e8e1..ef7c61c96043 100644 --- a/dev-python/tabulate/metadata.xml +++ b/dev-python/tabulate/metadata.xml @@ -1,12 +1,13 @@ - - python@gentoo.org - Python - - - - tabulate - + + python@gentoo.org + Python + + + + tabulate + astanin/python-tabulate + diff --git a/dev-python/terminaltables/metadata.xml b/dev-python/terminaltables/metadata.xml index f5489853ade6..8a1353aba591 100644 --- a/dev-python/terminaltables/metadata.xml +++ b/dev-python/terminaltables/metadata.xml @@ -11,5 +11,6 @@ Robpol86/terminaltables + terminaltables diff --git a/dev-python/terminaltables/terminaltables-3.1.0.ebuild b/dev-python/terminaltables/terminaltables-3.1.0.ebuild index e83f63bda5fd..1692c538ddfe 100644 --- a/dev-python/terminaltables/terminaltables-3.1.0.ebuild +++ b/dev-python/terminaltables/terminaltables-3.1.0.ebuild @@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 DESCRIPTION="Generate simple tables in terminals from a nested list of strings" -HOMEPAGE="https://robpol86.github.io/terminaltables" +HOMEPAGE="https://robpol86.github.io/terminaltables/" SRC_URI=" https://github.com/Robpol86/terminaltables/archive/v${PV}.tar.gz -> ${P}.tar.gz" diff --git a/dev-python/terminaltables/terminaltables-9999.ebuild b/dev-python/terminaltables/terminaltables-9999.ebuild index 7bacaa3fb7cd..7bea72ca0659 100644 --- a/dev-python/terminaltables/terminaltables-9999.ebuild +++ b/dev-python/terminaltables/terminaltables-9999.ebuild @@ -8,7 +8,7 @@ EGIT_REPO_URI="https://github.com/Robpol86/${PN}.git" inherit distutils-r1 git-r3 DESCRIPTION="Generate simple tables in terminals from a nested list of strings" -HOMEPAGE="https://robpol86.github.io/terminaltables" +HOMEPAGE="https://robpol86.github.io/terminaltables/" SRC_URI="" LICENSE="MIT" diff --git a/dev-python/test_server/metadata.xml b/dev-python/test_server/metadata.xml index 266e3f19ca59..9b8d050bac1c 100644 --- a/dev-python/test_server/metadata.xml +++ b/dev-python/test_server/metadata.xml @@ -4,4 +4,8 @@ python@gentoo.org + + test-server + lorien/test_server + diff --git a/dev-python/testfixtures/Manifest b/dev-python/testfixtures/Manifest index 4ffa10d0a540..1cb836039d61 100644 --- a/dev-python/testfixtures/Manifest +++ b/dev-python/testfixtures/Manifest @@ -1 +1,2 @@ DIST testfixtures-6.15.0.tar.gz 116119 BLAKE2B cc0e351bd6778393cf061b741d7d593f56bc1b6a3d53d2e34baa006f7edd718c86f1b16c094e42cf116805a5c6652ac6827f71c1ebbb160d48c071317603c151 SHA512 34b9f1b9a5e76c5e20acf9abae2961694817de3822361cd5afc4a405ccdbcf26c617a01fbd8d2d977c2a0bc696232c2363df4a9fb7ba9187e0743cf2a6fe98e1 +DIST testfixtures-6.16.0.tar.gz 120986 BLAKE2B bb17c44091370edca55f1e273f70e454c2e74a152a228f97efba08d605e3a024c64bfc163b3aa50805f038556c76fb754825b16fdf4451760403682c06251c80 SHA512 0c519fa2d2619ad71f6b487456ea1480365aa421c14a9beaeee916e7841bd266be2c95d48c61b64e91554b37d2621358a45b124be6a6d25b3e381f966653c9b8 diff --git a/dev-python/testfixtures/testfixtures-6.16.0.ebuild b/dev-python/testfixtures/testfixtures-6.16.0.ebuild new file mode 100644 index 000000000000..d8efd8340de3 --- /dev/null +++ b/dev-python/testfixtures/testfixtures-6.16.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} ) + +inherit distutils-r1 + +DESCRIPTION="A collection of helpers and mock objects for unit tests and doc tests" +HOMEPAGE="https://pypi.org/project/testfixtures/ https://github.com/Simplistix/testfixtures" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="MIT" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + +BDEPEND=" + test? ( + $(python_gen_impl_dep sqlite) + dev-python/django[${PYTHON_USEDEP}] + dev-python/pytest-django[${PYTHON_USEDEP}] + dev-python/sybil[${PYTHON_USEDEP}] + >=dev-python/twisted-18[${PYTHON_USEDEP}] + dev-python/zope-component[${PYTHON_USEDEP}] + )" + +distutils_enable_sphinx docs +distutils_enable_tests pytest + +python_prepare_all() { + # kill weird way of declaring build deps + sed -e '/build=/d' -i setup.py || die + + distutils-r1_python_prepare_all +} + +python_test() { + PYTHONPATH="." \ + DJANGO_SETTINGS_MODULE=testfixtures.tests.test_django.settings \ + pytest -vv || die "Tests failed with "${EPYTHON} +} diff --git a/dev-python/testpath/metadata.xml b/dev-python/testpath/metadata.xml index 05a85a5849f4..259d00861e4f 100644 --- a/dev-python/testpath/metadata.xml +++ b/dev-python/testpath/metadata.xml @@ -1,22 +1,23 @@ - - sci@gentoo.org - Gentoo Science Project - - - python@gentoo.org - Python - - - - Testpath is a collection of utilities for Python code working with - files and commands. It contains functions to check things on the - filesystem, and tools for mocking system commands and recording - calls to those. - - - jupyter/testpath - + + sci@gentoo.org + Gentoo Science Project + + + python@gentoo.org + Python + + + + Testpath is a collection of utilities for Python code working with + files and commands. It contains functions to check things on the + filesystem, and tools for mocking system commands and recording + calls to those. + + + jupyter/testpath + testpath + diff --git a/dev-python/text-unidecode/metadata.xml b/dev-python/text-unidecode/metadata.xml index 266e3f19ca59..883d10d40985 100644 --- a/dev-python/text-unidecode/metadata.xml +++ b/dev-python/text-unidecode/metadata.xml @@ -4,4 +4,8 @@ python@gentoo.org + + text-unidecode + kmike/text-unidecode + diff --git a/dev-python/texttable/metadata.xml b/dev-python/texttable/metadata.xml index 0c8b76627cee..3f7038e7e9ee 100644 --- a/dev-python/texttable/metadata.xml +++ b/dev-python/texttable/metadata.xml @@ -1,11 +1,12 @@ - - juippis@gentoo.org - Joonas Niilola - - - texttable - + + juippis@gentoo.org + Joonas Niilola + + + texttable + foutaise/texttable + diff --git a/dev-python/threadpoolctl/metadata.xml b/dev-python/threadpoolctl/metadata.xml index ff70d6e6ba19..1e538b750d43 100644 --- a/dev-python/threadpoolctl/metadata.xml +++ b/dev-python/threadpoolctl/metadata.xml @@ -1,12 +1,15 @@ - - python@gentoo.org - - - chutzpah@gentoo.org - Patrick McLean - - + + python@gentoo.org + + + chutzpah@gentoo.org + Patrick McLean + + + + threadpoolctl + diff --git a/dev-python/tld/metadata.xml b/dev-python/tld/metadata.xml index 35285bdc8623..d9bdfc0eb4b3 100644 --- a/dev-python/tld/metadata.xml +++ b/dev-python/tld/metadata.xml @@ -11,5 +11,6 @@ tld + barseghyanartur/tld diff --git a/dev-python/tldextract/metadata.xml b/dev-python/tldextract/metadata.xml index f3de5f693ed8..8c884e55b789 100644 --- a/dev-python/tldextract/metadata.xml +++ b/dev-python/tldextract/metadata.xml @@ -1,8 +1,11 @@ - - patrick@gentoo.org - Patrick Lauer - + + patrick@gentoo.org + Patrick Lauer + + + tldextract + diff --git a/dev-python/toml/metadata.xml b/dev-python/toml/metadata.xml index 85b206a00020..94a222e44902 100644 --- a/dev-python/toml/metadata.xml +++ b/dev-python/toml/metadata.xml @@ -1,12 +1,13 @@ - + - - python@gentoo.org - Python - - - - uiri/toml - + + python@gentoo.org + Python + + + + uiri/toml + toml + diff --git a/dev-python/towncrier/metadata.xml b/dev-python/towncrier/metadata.xml index 580f32722c5c..a30875e52367 100644 --- a/dev-python/towncrier/metadata.xml +++ b/dev-python/towncrier/metadata.xml @@ -7,5 +7,6 @@ towncrier + twisted/towncrier diff --git a/dev-python/towncrier/towncrier-19.2.0.ebuild b/dev-python/towncrier/towncrier-19.2.0.ebuild index 9fafe23de3be..009359b01d9f 100644 --- a/dev-python/towncrier/towncrier-19.2.0.ebuild +++ b/dev-python/towncrier/towncrier-19.2.0.ebuild @@ -8,8 +8,8 @@ PYTHON_COMPAT=( python3_{6,7} ) inherit distutils-r1 DESCRIPTION="Building newsfiles for your project" -HOMEPAGE="https://github.com/hawkowl/towncrier" -SRC_URI="https://github.com/hawkowl/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +HOMEPAGE="https://github.com/twisted/towncrier" +SRC_URI="https://github.com/twisted/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" diff --git a/dev-python/transitions/metadata.xml b/dev-python/transitions/metadata.xml index cb357577f372..bf02683f0971 100644 --- a/dev-python/transitions/metadata.xml +++ b/dev-python/transitions/metadata.xml @@ -15,5 +15,6 @@ https://github.com/pytransitions/transitions/issues pytransitions/transitions + transitions diff --git a/dev-python/translate-toolkit/metadata.xml b/dev-python/translate-toolkit/metadata.xml index d6edf768cd05..7f98f59237bc 100644 --- a/dev-python/translate-toolkit/metadata.xml +++ b/dev-python/translate-toolkit/metadata.xml @@ -15,5 +15,6 @@ translate + translate-toolkit diff --git a/dev-python/tree-sitter/Manifest b/dev-python/tree-sitter/Manifest new file mode 100644 index 000000000000..25671236c3cf --- /dev/null +++ b/dev-python/tree-sitter/Manifest @@ -0,0 +1 @@ +DIST tree_sitter-0.2.0.tar.gz 110387 BLAKE2B 62bd0cac84626738c051a16a6e1d8bf18985850e9c0174794d060e09f289edcf5e6183da28ab3805713b7d55d63c2210cc0e53d022689b46a3770243acf08937 SHA512 1b5c1dd8855de00357b5e8fc9dc3cb826c1cd10bec499b2db26f50fe2249a9848e1641765ee9717c8eae88b8d091f0de79cdfabafdecbe8e666a05f63fefe4ba diff --git a/dev-python/tree-sitter/metadata.xml b/dev-python/tree-sitter/metadata.xml new file mode 100644 index 000000000000..b625d4c3ee51 --- /dev/null +++ b/dev-python/tree-sitter/metadata.xml @@ -0,0 +1,12 @@ + + + + + python@gentoo.org + Python + + + tree-sitter + tree-sitter/py-tree-sitter + + diff --git a/dev-python/tree-sitter/tree-sitter-0.2.0.ebuild b/dev-python/tree-sitter/tree-sitter-0.2.0.ebuild new file mode 100644 index 000000000000..2fed30866a6c --- /dev/null +++ b/dev-python/tree-sitter/tree-sitter-0.2.0.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6..9} ) +DISTUTILS_USE_SETUPTOOLS=bdepend +inherit distutils-r1 + +MY_PN=${PN/-/_} +MY_P=${MY_PN}-${PV} + +DESCRIPTION="Python bindings to the Tree-sitter parsing library" +HOMEPAGE="https://github.com/tree-sitter/py-tree-sitter" +SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +S="${WORKDIR}/${MY_P}" diff --git a/dev-python/trustme/metadata.xml b/dev-python/trustme/metadata.xml index 986c7fe8b64c..9914e7c63b22 100644 --- a/dev-python/trustme/metadata.xml +++ b/dev-python/trustme/metadata.xml @@ -10,4 +10,7 @@ Python + + trustme + diff --git a/dev-python/tvdb_api/metadata.xml b/dev-python/tvdb_api/metadata.xml index 373aacb19057..198c22849457 100644 --- a/dev-python/tvdb_api/metadata.xml +++ b/dev-python/tvdb_api/metadata.xml @@ -1,11 +1,12 @@ - - thev00d00@gentoo.org - Ian Whyman - - - dbr/tvdb_api - + + thev00d00@gentoo.org + Ian Whyman + + + dbr/tvdb_api + tvdb-api + diff --git a/dev-python/typing-extensions/metadata.xml b/dev-python/typing-extensions/metadata.xml index 3dd5571701ad..cbf9134ba14f 100644 --- a/dev-python/typing-extensions/metadata.xml +++ b/dev-python/typing-extensions/metadata.xml @@ -1,4 +1,4 @@ - + @@ -7,6 +7,7 @@ - typing + typing-extensions + python/typing diff --git a/dev-python/typing-extensions/typing-extensions-3.7.4.3.ebuild b/dev-python/typing-extensions/typing-extensions-3.7.4.3.ebuild index 805b1ac01ada..09b22cbdc03d 100644 --- a/dev-python/typing-extensions/typing-extensions-3.7.4.3.ebuild +++ b/dev-python/typing-extensions/typing-extensions-3.7.4.3.ebuild @@ -11,7 +11,9 @@ MY_PN=${PN/-/_} MY_P=${MY_PN}-${PV} DESCRIPTION="Type Hint extensions from Python 3.8 backported" -HOMEPAGE="https://pypi.org/project/typing_extensions/ https://github.com/python/typing" +HOMEPAGE=" + https://pypi.org/project/typing-extensions/ + https://github.com/python/typing/" SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" S=${WORKDIR}/${MY_P} diff --git a/dev-python/ubelt/metadata.xml b/dev-python/ubelt/metadata.xml index ca93985fb0db..692a51ccf094 100644 --- a/dev-python/ubelt/metadata.xml +++ b/dev-python/ubelt/metadata.xml @@ -1,9 +1,11 @@ - sci@gentoo.org Gentoo Science Project + + ubelt + diff --git a/dev-python/uranium/metadata.xml b/dev-python/uranium/metadata.xml index a1111722f75c..0f2925ceea27 100644 --- a/dev-python/uranium/metadata.xml +++ b/dev-python/uranium/metadata.xml @@ -30,5 +30,6 @@ Ultimaker/Uranium + uranium diff --git a/dev-python/urdf_parser_py/metadata.xml b/dev-python/urdf_parser_py/metadata.xml index 9bbf130c48d2..e79c08cb164e 100644 --- a/dev-python/urdf_parser_py/metadata.xml +++ b/dev-python/urdf_parser_py/metadata.xml @@ -1,4 +1,4 @@ - + @@ -7,5 +7,6 @@ ros/urdf_parser_py + urdf-parser-py diff --git a/dev-python/urlgrabber/metadata.xml b/dev-python/urlgrabber/metadata.xml index 61b9e764b90f..96c924d2a326 100644 --- a/dev-python/urlgrabber/metadata.xml +++ b/dev-python/urlgrabber/metadata.xml @@ -1,37 +1,40 @@ - - python@gentoo.org - Python - - - A high-level cross-protocol url-grabber. + + python@gentoo.org + Python + + + A high-level cross-protocol url-grabber. - Using urlgrabber, data can be fetched in three basic ways: + Using urlgrabber, data can be fetched in three basic ways: - urlgrab(url) copy the file to the local filesystem - urlopen(url) open the remote file and return a file object (like urllib2.urlopen) - urlread(url) return the contents of the file as a string + urlgrab(url) copy the file to the local filesystem + urlopen(url) open the remote file and return a file object (like urllib2.urlopen) + urlread(url) return the contents of the file as a string - When using these functions (or methods), urlgrabber supports the following - features: + When using these functions (or methods), urlgrabber supports the following + features: - * identical behavior for http://, ftp://, and file:// urls - * http keepalive - faster downloads of many files by using only a single - connection - * byte ranges - fetch only a portion of the file - * reget - for a urlgrab, resume a partial download - * progress meters - the ability to report download progress automatically, - even when using urlopen! - * throttling - restrict bandwidth usage - * retries - automatically retry a download if it fails. The number of retries - and failure types are configurable. - * authenticated server access for http and ftp - * proxy support - support for authenticated http and ftp proxies - * mirror groups - treat a list of mirrors as a single source, automatically - switching mirrors if there is a failure. - - + * identical behavior for http://, ftp://, and file:// urls + * http keepalive - faster downloads of many files by using only a single + connection + * byte ranges - fetch only a portion of the file + * reget - for a urlgrab, resume a partial download + * progress meters - the ability to report download progress automatically, + even when using urlopen! + * throttling - restrict bandwidth usage + * retries - automatically retry a download if it fails. The number of retries + and failure types are configurable. + * authenticated server access for http and ftp + * proxy support - support for authenticated http and ftp proxies + * mirror groups - treat a list of mirrors as a single source, automatically + switching mirrors if there is a failure. + + + + urlgrabber + diff --git a/dev-python/urllib3/metadata.xml b/dev-python/urllib3/metadata.xml index c5e3b54263ca..7e9d137e62a8 100644 --- a/dev-python/urllib3/metadata.xml +++ b/dev-python/urllib3/metadata.xml @@ -1,17 +1,17 @@ - - python@gentoo.org - Python - - - - Enable support for brotli compression - - - urllib3 - shazow/urllib3 - cpe:/a:urllib3:urllib3 - + + python@gentoo.org + Python + + + + Enable support for brotli compression + + + urllib3 + cpe:/a:urllib3:urllib3 + urllib3/urllib3 + diff --git a/dev-python/urwid/metadata.xml b/dev-python/urwid/metadata.xml index cc6ab1eb0d40..7838b9b6a380 100644 --- a/dev-python/urwid/metadata.xml +++ b/dev-python/urwid/metadata.xml @@ -1,11 +1,11 @@ - - python@gentoo.org - Python - - + + python@gentoo.org + Python + + Urwid is a curses-based user interface library. It includes many features useful for text console application developers including: @@ -21,8 +21,9 @@ useful for text console application developers including: - Buttons, check boxes and radio boxes - Customizable layout for all widgets - Easy interface for creating HTML screen shots - - - urwid - + + + urwid + urwid/urwid + diff --git a/dev-python/urwidtrees/urwidtrees-1.0.3.ebuild b/dev-python/urwidtrees/urwidtrees-1.0.3.ebuild index c435a32a3b0e..2a642fd13a29 100644 --- a/dev-python/urwidtrees/urwidtrees-1.0.3.ebuild +++ b/dev-python/urwidtrees/urwidtrees-1.0.3.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/pazz/urwidtrees/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" RDEPEND=">=dev-python/urwid-1.1.0[${PYTHON_USEDEP}]" diff --git a/dev-python/utidylib/metadata.xml b/dev-python/utidylib/metadata.xml index a9a29c978e98..b3d893285cd1 100644 --- a/dev-python/utidylib/metadata.xml +++ b/dev-python/utidylib/metadata.xml @@ -1,4 +1,4 @@ - + @@ -7,6 +7,6 @@ nijel/utidylib - utidylib + uTidylib diff --git a/dev-python/uvloop/metadata.xml b/dev-python/uvloop/metadata.xml index 046b9f3e8b97..c06cbe222fc1 100644 --- a/dev-python/uvloop/metadata.xml +++ b/dev-python/uvloop/metadata.xml @@ -1,16 +1,16 @@ - - python@gentoo.org - - - uvloop is a fast, drop-in replacement of the built-in asyncio - event loop. uvloop is implemented in Cython and uses libuv under - the hood. - - - uvloop - MagicStack/uvloop - + + python@gentoo.org + + + uvloop is a fast, drop-in replacement of the built-in asyncio + event loop. uvloop is implemented in Cython and uses libuv under + the hood. + + + uvloop + magicstack/uvloop + diff --git a/dev-python/vcstools/metadata.xml b/dev-python/vcstools/metadata.xml index b60fa728c8da..37147c6c9043 100644 --- a/dev-python/vcstools/metadata.xml +++ b/dev-python/vcstools/metadata.xml @@ -7,5 +7,6 @@ vcstools/vcstools + vcstools diff --git a/dev-python/verboselogs/metadata.xml b/dev-python/verboselogs/metadata.xml index 6f9b8643810a..cbd7a3e94639 100644 --- a/dev-python/verboselogs/metadata.xml +++ b/dev-python/verboselogs/metadata.xml @@ -1,11 +1,12 @@ - - python@gentoo.org - Python - - - verboselogs - + + python@gentoo.org + Python + + + verboselogs + xolox/python-verboselogs + diff --git a/dev-python/verboselogs/verboselogs-1.7.ebuild b/dev-python/verboselogs/verboselogs-1.7.ebuild index b4e84ccc0639..f6d9c34aafbd 100644 --- a/dev-python/verboselogs/verboselogs-1.7.ebuild +++ b/dev-python/verboselogs/verboselogs-1.7.ebuild @@ -8,8 +8,8 @@ PYTHON_COMPAT=( pypy3 python3_{6,7,8,9} ) inherit distutils-r1 DESCRIPTION="Verbose logging for Python's logging module" -HOMEPAGE="https://pypi.org/project/verboselogs - https://github.com/xolox/python-verboselogs" +HOMEPAGE="https://pypi.org/project/verboselogs/ + https://github.com/xolox/python-verboselogs/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" SLOT="0" diff --git a/dev-python/vncdotool/metadata.xml b/dev-python/vncdotool/metadata.xml index c12ae293d46d..6bdb075d75c3 100644 --- a/dev-python/vncdotool/metadata.xml +++ b/dev-python/vncdotool/metadata.xml @@ -10,4 +10,7 @@ Proxy Maintainers + + vncdotool + diff --git a/dev-python/vobject/metadata.xml b/dev-python/vobject/metadata.xml index fd720400b6b7..60cfc36e5cf7 100644 --- a/dev-python/vobject/metadata.xml +++ b/dev-python/vobject/metadata.xml @@ -1,4 +1,4 @@ - + @@ -8,5 +8,6 @@ eventable/vobject + vobject diff --git a/dev-python/vpython/metadata.xml b/dev-python/vpython/metadata.xml index 824d6a7836bd..87eed37424eb 100644 --- a/dev-python/vpython/metadata.xml +++ b/dev-python/vpython/metadata.xml @@ -13,4 +13,7 @@ If the code is launched outside a notebook (e.g. from the command line), a browser window will open displaying the scene. + + vpython + diff --git a/dev-python/webassets/metadata.xml b/dev-python/webassets/metadata.xml index 66aeb500eb66..66b566453bb3 100644 --- a/dev-python/webassets/metadata.xml +++ b/dev-python/webassets/metadata.xml @@ -1,11 +1,12 @@ - - python@gentoo.org - Python - - - miracle2k/webassets - + + python@gentoo.org + Python + + + miracle2k/webassets + webassets + diff --git a/dev-python/websockets/metadata.xml b/dev-python/websockets/metadata.xml index a3e93786e383..98f685d013f0 100644 --- a/dev-python/websockets/metadata.xml +++ b/dev-python/websockets/metadata.xml @@ -7,5 +7,6 @@ aaugustin/websockets + websockets diff --git a/dev-python/websockify/metadata.xml b/dev-python/websockify/metadata.xml index 67a4c5863e2b..3f9398bb2f8c 100644 --- a/dev-python/websockify/metadata.xml +++ b/dev-python/websockify/metadata.xml @@ -1,15 +1,16 @@ - - prometheanfire@gentoo.org - Matthew Thode - - - python@gentoo.org - Python - - - kanaka/websockify - + + prometheanfire@gentoo.org + Matthew Thode + + + python@gentoo.org + Python + + + novnc/websockify + websockify + diff --git a/dev-python/websockify/websockify-0.9.0-r1.ebuild b/dev-python/websockify/websockify-0.9.0-r1.ebuild index b1c7fb492170..e870a23be009 100644 --- a/dev-python/websockify/websockify-0.9.0-r1.ebuild +++ b/dev-python/websockify/websockify-0.9.0-r1.ebuild @@ -9,9 +9,9 @@ DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 -SRC_URI="https://github.com/kanaka/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="https://github.com/novnc/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" DESCRIPTION="WebSockets support for any application/server" -HOMEPAGE="https://github.com/kanaka/websockify" +HOMEPAGE="https://github.com/novnc/websockify" LICENSE="LGPL-3" SLOT="0" diff --git a/dev-python/websockify/websockify-0.9.0.ebuild b/dev-python/websockify/websockify-0.9.0.ebuild index 047d8f7e1c67..9c3224c6c4ed 100644 --- a/dev-python/websockify/websockify-0.9.0.ebuild +++ b/dev-python/websockify/websockify-0.9.0.ebuild @@ -6,9 +6,9 @@ PYTHON_COMPAT=( python3_{6,7} ) inherit distutils-r1 -SRC_URI="https://github.com/kanaka/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="https://github.com/novnc/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" DESCRIPTION="WebSockets support for any application/server" -HOMEPAGE="https://github.com/kanaka/websockify" +HOMEPAGE="https://github.com/novnc/websockify" LICENSE="LGPL-3" SLOT="0" diff --git a/dev-python/werkzeug/metadata.xml b/dev-python/werkzeug/metadata.xml index c576c012fd48..5c23b5b59f19 100644 --- a/dev-python/werkzeug/metadata.xml +++ b/dev-python/werkzeug/metadata.xml @@ -1,11 +1,12 @@ - - python@gentoo.org - Python - - - Werkzeug - + + python@gentoo.org + Python + + + Werkzeug + pallets/werkzeug + diff --git a/dev-python/whichcraft/metadata.xml b/dev-python/whichcraft/metadata.xml index 63dfb8da6a90..d854c649cfed 100644 --- a/dev-python/whichcraft/metadata.xml +++ b/dev-python/whichcraft/metadata.xml @@ -1,4 +1,4 @@ - + @@ -6,6 +6,7 @@ Python - pydanny/whichcraft + cookiecutter/whichcraft + whichcraft diff --git a/dev-python/whichcraft/whichcraft-0.6.1.ebuild b/dev-python/whichcraft/whichcraft-0.6.1.ebuild index ba94ca599d3e..1dce34c398a5 100644 --- a/dev-python/whichcraft/whichcraft-0.6.1.ebuild +++ b/dev-python/whichcraft/whichcraft-0.6.1.ebuild @@ -8,8 +8,8 @@ PYTHON_COMPAT=( python3_{6,7,8} ) inherit distutils-r1 DESCRIPTION="Cross-platform cross-python shutil.which functionality" -HOMEPAGE="https://github.com/pydanny/whichcraft" -SRC_URI="https://github.com/pydanny/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +HOMEPAGE="https://github.com/cookiecutter/whichcraft" +SRC_URI="https://github.com/cookiecutter/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0" diff --git a/dev-python/ws4py/metadata.xml b/dev-python/ws4py/metadata.xml index cb991999cfd6..b9be7d64e187 100644 --- a/dev-python/ws4py/metadata.xml +++ b/dev-python/ws4py/metadata.xml @@ -1,15 +1,16 @@ - - whissi@gentoo.org - Thomas Deutschmann - - - Install client modules - Install server modules - - - Lawouach/WebSocket-for-Python - + + whissi@gentoo.org + Thomas Deutschmann + + + Install client modules + Install server modules + + + Lawouach/WebSocket-for-Python + ws4py + diff --git a/dev-python/wsproto/metadata.xml b/dev-python/wsproto/metadata.xml index c86be9415a41..787fac6ee143 100644 --- a/dev-python/wsproto/metadata.xml +++ b/dev-python/wsproto/metadata.xml @@ -7,8 +7,8 @@ python-hyper/wsproto + wsproto https://wsproto.readthedocs.io/en/latest/ https://github.com/python-hyper/wsproto/issues - diff --git a/dev-python/wsproto/wsproto-1.0.0.ebuild b/dev-python/wsproto/wsproto-1.0.0.ebuild index 642751d07b50..7ca2977395d4 100644 --- a/dev-python/wsproto/wsproto-1.0.0.ebuild +++ b/dev-python/wsproto/wsproto-1.0.0.ebuild @@ -8,7 +8,9 @@ PYTHON_COMPAT=( python3_{7,8,9} ) inherit distutils-r1 DESCRIPTION="WebSockets state-machine based protocol implementation" -HOMEPAGE="https://github.com/python-hyper/wsproto https://pypi.python.org/pypi/wsproto" +HOMEPAGE=" + https://github.com/python-hyper/wsproto/ + https://pypi.org/project/wsproto/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" diff --git a/dev-python/wurlitzer/metadata.xml b/dev-python/wurlitzer/metadata.xml index dd0bd9c021f6..6371903dc20a 100644 --- a/dev-python/wurlitzer/metadata.xml +++ b/dev-python/wurlitzer/metadata.xml @@ -1,13 +1,16 @@ - - - andrewammerlaan@riseup.net - Andrew Ammerlaan - - - proxy-maint@gentoo.org - Proxy Maintainers - + + andrewammerlaan@riseup.net + Andrew Ammerlaan + + + proxy-maint@gentoo.org + Proxy Maintainers + + + wurlitzer + minrk/wurlitzer + diff --git a/dev-python/wurlitzer/wurlitzer-2.0.1.ebuild b/dev-python/wurlitzer/wurlitzer-2.0.1.ebuild index b639486f7a03..479e70ee0a38 100644 --- a/dev-python/wurlitzer/wurlitzer-2.0.1.ebuild +++ b/dev-python/wurlitzer/wurlitzer-2.0.1.ebuild @@ -8,7 +8,9 @@ PYTHON_COMPAT=( python3_{6,7,8,9} ) inherit distutils-r1 DESCRIPTION="Capture C-level stdout/stderr in Python" -HOMEPAGE="https://github.com/minrk/wurlitzer https://pypi.org/project/wurlitzer" +HOMEPAGE=" + https://github.com/minrk/wurlitzer/ + https://pypi.org/project/wurlitzer/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" diff --git a/dev-python/wxpython/metadata.xml b/dev-python/wxpython/metadata.xml index 0796b4162e00..6efec25372fb 100644 --- a/dev-python/wxpython/metadata.xml +++ b/dev-python/wxpython/metadata.xml @@ -11,5 +11,6 @@ wxWidgets/Phoenix + wxPython diff --git a/dev-python/xdoctest/metadata.xml b/dev-python/xdoctest/metadata.xml index ca93985fb0db..c4ab9400881e 100644 --- a/dev-python/xdoctest/metadata.xml +++ b/dev-python/xdoctest/metadata.xml @@ -1,9 +1,11 @@ - sci@gentoo.org Gentoo Science Project + + xdoctest + diff --git a/dev-python/xxhash/metadata.xml b/dev-python/xxhash/metadata.xml index da5553da7dc9..6d246345d389 100644 --- a/dev-python/xxhash/metadata.xml +++ b/dev-python/xxhash/metadata.xml @@ -1,12 +1,12 @@ - - 3dprint@gentoo.org - Gentoo 3D Printer Project - - - mikedh/trimesh - xxhash - + + 3dprint@gentoo.org + Gentoo 3D Printer Project + + + xxhash + ifduyue/python-xxhash + diff --git a/dev-python/yapf/metadata.xml b/dev-python/yapf/metadata.xml index 01578e600b81..602784a7a255 100644 --- a/dev-python/yapf/metadata.xml +++ b/dev-python/yapf/metadata.xml @@ -1,11 +1,11 @@ - + chr@chymera.eu Horea Christian - + proxy-maint@gentoo.org Proxy Maintainers @@ -15,4 +15,7 @@ formatting that conforms to the style guide, even if the original code didn't violate the style guide. + + yapf + diff --git a/dev-python/yapsy/metadata.xml b/dev-python/yapsy/metadata.xml index 59dcad63b3ad..e34e857fd2eb 100644 --- a/dev-python/yapsy/metadata.xml +++ b/dev-python/yapsy/metadata.xml @@ -11,5 +11,6 @@ yapsy + Yapsy diff --git a/dev-python/yaswfp/metadata.xml b/dev-python/yaswfp/metadata.xml index cb2c1dd76282..c2588c30bcaa 100644 --- a/dev-python/yaswfp/metadata.xml +++ b/dev-python/yaswfp/metadata.xml @@ -11,5 +11,6 @@ yaswfp + facundobatista/yaswfp diff --git a/dev-python/zVMCloudConnector/metadata.xml b/dev-python/zVMCloudConnector/metadata.xml index f0b577005701..4b9db07e2990 100644 --- a/dev-python/zVMCloudConnector/metadata.xml +++ b/dev-python/zVMCloudConnector/metadata.xml @@ -11,4 +11,7 @@ z/VM cloud connector is a development sdk for manage z/VM. It provides a set of APIs to operate z/VM including guest, image, network, volume etc. + + zVMCloudConnector + diff --git a/dev-python/zc-lockfile/metadata.xml b/dev-python/zc-lockfile/metadata.xml index 9f8e145958a9..a0536cb67925 100644 --- a/dev-python/zc-lockfile/metadata.xml +++ b/dev-python/zc-lockfile/metadata.xml @@ -9,4 +9,7 @@ python@gentoo.org Python + + zc.lockfile + diff --git a/dev-python/zconfig/metadata.xml b/dev-python/zconfig/metadata.xml index c2d543f28177..ed502c98fcf9 100644 --- a/dev-python/zconfig/metadata.xml +++ b/dev-python/zconfig/metadata.xml @@ -1,20 +1,21 @@ - - lssndrbarbieri@gmail.com - Alessandro Barbieri - - - proxy-maint@gentoo.org - Proxy Maintainers - - - zopefoundation/ZConfig - - + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + proxy-maint@gentoo.org + Proxy Maintainers + + + zopefoundation/ZConfig + ZConfig + + ZConfig is a configuration library intended for general use. It supports a hierarchical schema-driven configuration model that allows a schema to specify data conversion routines written in Python. ZConfig’s model is very different from the model supported by the ConfigParser module found in Python’s standard library, and is more suitable to configuration-intensive applications. ZConfig schema are written in an XML-based language and are able to “import” schema components provided by Python packages. Since components are able to bind to conversion functions provided by Python code in the package (or elsewhere), configuration objects can be arbitrarily complex, with values that have been verified against arbitrary constraints. This makes it easy for applications to separate configuration support from configuration loading even with configuration data being defined and consumed by a wide range of separate packages. - + diff --git a/dev-python/zconfig/zconfig-3.5.0.ebuild b/dev-python/zconfig/zconfig-3.5.0.ebuild index 8e47fe2dcdc1..83eb4344a6fb 100644 --- a/dev-python/zconfig/zconfig-3.5.0.ebuild +++ b/dev-python/zconfig/zconfig-3.5.0.ebuild @@ -12,7 +12,7 @@ MY_PN="ZConfig" MY_P="${MY_PN}-${PV}" DESCRIPTION="A configuration library supporting a hierarchical schema-driven configuration model" -HOMEPAGE="https://pypi.python.org/pypi/ZConfig" +HOMEPAGE="https://pypi.org/project/ZConfig/" SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="ZPL" diff --git a/dev-python/zxcvbn/metadata.xml b/dev-python/zxcvbn/metadata.xml index 266e3f19ca59..7f590bf4c960 100644 --- a/dev-python/zxcvbn/metadata.xml +++ b/dev-python/zxcvbn/metadata.xml @@ -4,4 +4,7 @@ python@gentoo.org + + zxcvbn + diff --git a/dev-ruby/Manifest.gz b/dev-ruby/Manifest.gz index 93ce6d15e056..57e15a6fb1c3 100644 Binary files a/dev-ruby/Manifest.gz and b/dev-ruby/Manifest.gz differ diff --git a/dev-ruby/actionpack/actionpack-5.2.4.4.ebuild b/dev-ruby/actionpack/actionpack-5.2.4.4.ebuild index c90f763ca990..82275986ee8f 100644 --- a/dev-ruby/actionpack/actionpack-5.2.4.4.ebuild +++ b/dev-ruby/actionpack/actionpack-5.2.4.4.ebuild @@ -21,7 +21,7 @@ SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> rails-${PV}.tgz LICENSE="MIT" SLOT="$(ver_cut 1-2)" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux" IUSE="" RUBY_S="rails-${PV}/${PN}" diff --git a/dev-ruby/actionview/actionview-5.2.4.4.ebuild b/dev-ruby/actionview/actionview-5.2.4.4.ebuild index e9beb5d5a203..619bae85ca3b 100644 --- a/dev-ruby/actionview/actionview-5.2.4.4.ebuild +++ b/dev-ruby/actionview/actionview-5.2.4.4.ebuild @@ -23,7 +23,7 @@ SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> rails-${PV}.tgz LICENSE="MIT" SLOT="$(ver_cut 1-2)" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux" IUSE="" RUBY_S="rails-${PV}/${PN}" diff --git a/dev-ruby/activemodel/activemodel-5.2.4.4.ebuild b/dev-ruby/activemodel/activemodel-5.2.4.4.ebuild index 2f56044a1591..7a9cd885fe20 100644 --- a/dev-ruby/activemodel/activemodel-5.2.4.4.ebuild +++ b/dev-ruby/activemodel/activemodel-5.2.4.4.ebuild @@ -21,7 +21,7 @@ SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> rails-${PV}.tgz LICENSE="MIT" SLOT="$(ver_cut 1-2)" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux" IUSE="" RUBY_S="rails-${PV}/${PN}" diff --git a/dev-ruby/activesupport/activesupport-5.2.4.4.ebuild b/dev-ruby/activesupport/activesupport-5.2.4.4.ebuild index d7716eddc9c5..d3a60061e699 100644 --- a/dev-ruby/activesupport/activesupport-5.2.4.4.ebuild +++ b/dev-ruby/activesupport/activesupport-5.2.4.4.ebuild @@ -21,7 +21,7 @@ SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> rails-${PV}.tgz LICENSE="MIT" SLOT="$(ver_cut 1-2)" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" RUBY_S="rails-${PV}/${PN}" diff --git a/dev-ruby/bundler/Manifest b/dev-ruby/bundler/Manifest index 3404608d5fdc..61ed97dba6b9 100644 --- a/dev-ruby/bundler/Manifest +++ b/dev-ruby/bundler/Manifest @@ -1,2 +1,3 @@ DIST bundler-1.17.3.gem 364032 BLAKE2B 81e097156a593e4ec85a2353aa6c62143d9aad120c22c5f76423c6c5f4e4d33206c8ef41c64e54ea53eb610a0d865beba19d3c033e8f65913564963319bb523f SHA512 658de4228bc12fa5ca6ce335f76fff773f64da9f3d12f5097b4fd28d4c4f4d2a5bf12dce761b3d95432c5ea6a5aafae895df87c26660a4567db8b682aff48c02 DIST bundler-2.1.4.gem 396800 BLAKE2B f770bd63255df09a20160369dc64e8923e996fb5ea4c11ee763d9a88e5fba142277ccd677861e3c0494b99a36261d5e7bdfb9c40c2abb76322061542f95b8505 SHA512 6c870061a78e17d97a9219433c7ef8fbf1112de17d0e0f3d8b6db1a518318528e3803184278412aabe65008e93f451ffa59465062856918ef488f9438399eff6 +DIST bundler-2.2.0.gem 400896 BLAKE2B a9d67d052bc6b7b8c09a6dbc249e348209a6a02bb3a43f9dbef29c3dce651974a4c9bde200085632cc7f4fb0957aae42a7cbaae28c8cab91986dacf1f52f1deb SHA512 bbee12a30362d1dfd8a7de4258d6623d08df91a38ba1e869f9a5878871d8fd145221f8eaa99fcb72e0c1404c9c31df37a5a1dbf4a94610cb3381566cc6c45516 diff --git a/dev-ruby/bundler/bundler-2.2.0.ebuild b/dev-ruby/bundler/bundler-2.2.0.ebuild new file mode 100644 index 000000000000..831e415cdc5f --- /dev/null +++ b/dev-ruby/bundler/bundler-2.2.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +USE_RUBY="ruby25 ruby26 ruby27" + +# The specs require a number of gems to be installed in a temporary +# directory, but this requires network access. They also don't work +# when run with a path that contains "-". +RUBY_FAKEGEM_RECIPE_TEST="none" + +# No documentation task +RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md" + +RUBY_FAKEGEM_BINDIR="exe" + +RUBY_FAKEGEM_EXTRAINSTALL="man" + +inherit ruby-fakegem + +DESCRIPTION="An easy way to vendor gem dependencies" +HOMEPAGE="https://github.com/carlhuda/bundler" + +LICENSE="MIT" +SLOT="$(ver_cut 1)" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="+doc test" + +ruby_add_rdepend virtual/rubygems + +RDEPEND+=" dev-vcs/git !=dev-ruby/minitest-4:0 + dev-ruby/rdoc + )" + +all_ruby_prepare() { + + mkdir -p lib/rubygems/defaults || die + cp "${FILESDIR}/gentoo-defaults.rb" lib/rubygems/defaults/operating_system.rb || die + + eprefixify lib/rubygems/defaults/operating_system.rb + + # Disable broken tests when changing default values: + sed -i -e '/test_default_path/,/^ end/ s:^:#:' test/rubygems/test_gem.rb || die + + # Skip tests for default gems that all fail + sed -i -e '/test_default_gems_use_full_paths/,/^ end/ s:^:#:' test/rubygems/test_gem.rb || die + sed -i -e '/test_execute_ignore_default_gem_verbose/,/^ end/ s:^:#:' test/rubygems/test_gem_commands_cleanup_command.rb || die + sed -i -e '/test_execute_default_gem/,/^ end/ s:^:#:' test/rubygems/test_gem_commands_contents_command.rb test/rubygems/test_gem_commands_pristine_command.rb || die + sed -i -e '/test_execute_\(default_details\|show_default_gems\)/,/^ end/ s:^:#:' test/rubygems/test_gem_commands_query_command.rb || die + sed -i -e '/test_execute_all/,/^ end/ s:^:#:' test/rubygems/test_gem_commands_uninstall_command.rb || die + sed -i -e '/\(test_default_gem\|test_check_executable_overwrite\|test_require_works_after_cleanup\)/,/^ end/ s:^:#:' \ + test/rubygems/test_{gem_installer,require}.rb || die + sed -i -e '/test_\(load_default_gem\|default_spec_stub\)/,/^ end/ s:^:#:' test/rubygems/test_gem_specification.rb || die + sed -i -e '/test_uninstall_default_gem/,/^ end/ s:^:#:' test/rubygems/test_gem_uninstaller.rb || die + rm -f test/rubygems/test_gem_indexer.rb || die + sed -i -e '/test_\(require_when_gem_defined\|realworld_default_gem\)/,/^ end/ s:^:#:' test/rubygems/test_require.rb || die + rm -f test/rubygems/test_gem_commands_setup_command.rb || die + + # Avoid tests playing tricks with ruby engine that don't seem to + # work for us. + rm test/rubygems/test_gem_request_set_gem_dependency_api.rb || die + + # Avoid test requiring network access + sed -i -e '/test_download_to_cache/askip "requires network access"' test/rubygems/test_gem_remote_fetcher.rb || die + # Avoid test requiring obsolete TLS versions + sed -i -e '/test_do_not_allow_invalid_client_cert_auth_connection/askip "requires obsolete TLSv1"' test/rubygems/test_gem_remote_fetcher.rb || die + + # Avoid test requiring file system permission changes + sed -i -e '/test_traverse_parents_does_not_crash_on_permissions_error/,/^ end/ s:^:#:' test/rubygems/test_gem_util.rb || die +} + +each_ruby_compile() { + # Not really a build but... + sed -i -e 's:#!.*:#!'"${RUBY}"':' bin/gem +} + +each_ruby_test() { + # Unset RUBYOPT to avoid interferences, bug #158455 et. al. + #unset RUBYOPT + + if [[ "${EUID}" -ne "0" ]]; then + RUBYLIB="$(pwd)/lib${RUBYLIB+:${RUBYLIB}}" ${RUBY} --disable-gems -I.:lib:test:bundler/lib \ + -e 'require "rubygems"; gem "minitest", "~>4.0"; Dir["test/**/test_*.rb"].each { |tu| require tu }' || die "tests failed" + else + ewarn "The userpriv feature must be enabled to run tests, bug 408951." + eerror "Testsuite will not be run." + fi +} + +each_ruby_install() { + # Unset RUBYOPT to avoid interferences, bug #158455 et. al. + unset RUBYOPT + export RUBYLIB="$(pwd)/lib${RUBYLIB+:${RUBYLIB}}" + + pushd lib &>/dev/null + doruby -r * + popd &>/dev/null + + local sld=$(ruby_rbconfig_value 'sitelibdir') + insinto "${sld#${EPREFIX}}" # bug #320813 + newins "${FILESDIR}/auto_gem.rb.ruby19" auto_gem.rb + + newbin bin/gem $(basename ${RUBY} | sed -e 's:ruby:gem:' || die) +} + +all_ruby_install() { + dodoc History.txt README.md + + if use server; then + newinitd "${FILESDIR}/init.d-gem_server2" gem_server + newconfd "${FILESDIR}/conf.d-gem_server" gem_server + fi +} + +pkg_postinst() { + if [[ ! -n $(readlink "${ROOT}"usr/bin/gem) ]] ; then + eselect ruby set $(eselect --brief --colour=no ruby show | head -n1) + fi + + ewarn + ewarn "To switch between available Ruby profiles, execute as root:" + ewarn "\teselect ruby set ruby(23|24|...)" + ewarn +} diff --git a/dev-ruby/rubygems/rubygems-3.0.4-r1.ebuild b/dev-ruby/rubygems/rubygems-3.0.4-r1.ebuild deleted file mode 100644 index 35ab109bb28d..000000000000 --- a/dev-ruby/rubygems/rubygems-3.0.4-r1.ebuild +++ /dev/null @@ -1,93 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -USE_RUBY="ruby24 ruby25 ruby26" - -inherit ruby-ng prefix - -DESCRIPTION="Centralized Ruby extension management system" -HOMEPAGE="https://rubygems.org/" -LICENSE="GPL-2 || ( Ruby MIT )" - -SRC_URI="https://rubygems.org/rubygems/${P}.tgz" - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -SLOT="0" -IUSE="server test" -RESTRICT="!test? ( test )" - -PDEPEND="server? ( =dev-ruby/builder-3* )" - -ruby_add_bdepend " - test? ( - dev-ruby/json - dev-ruby/minitest:5 - dev-ruby/rdoc - )" - -all_ruby_prepare() { - - mkdir -p lib/rubygems/defaults || die - cp "${FILESDIR}/gentoo-defaults-3.rb" lib/rubygems/defaults/operating_system.rb || die - - eprefixify lib/rubygems/defaults/operating_system.rb - - # Disable broken tests when changing default values: - sed -i -e '/test_default_path/,/^ end/ s:^:#:' test/rubygems/test_gem.rb || die -} - -each_ruby_compile() { - # Not really a build but... - sed -i -e 's:#!.*:#!'"${RUBY}"':' bin/gem -} - -each_ruby_test() { - # Unset RUBYOPT to avoid interferences, bug #158455 et. al. - #unset RUBYOPT - - if [[ "${EUID}" -ne "0" ]]; then - RUBYLIB="$(pwd)/lib${RUBYLIB+:${RUBYLIB}}" ${RUBY} --disable-gems -I.:lib:test:bundler/lib \ - -e 'require "rubygems"; gem "minitest", "~>5.0"; Dir["test/**/test_*.rb"].each { |tu| require tu }' || die "tests failed" - else - ewarn "The userpriv feature must be enabled to run tests, bug 408951." - eerror "Testsuite will not be run." - fi -} - -each_ruby_install() { - # Unset RUBYOPT to avoid interferences, bug #158455 et. al. - unset RUBYOPT - export RUBYLIB="$(pwd)/lib${RUBYLIB+:${RUBYLIB}}" - - pushd lib &>/dev/null - doruby -r * - popd &>/dev/null - - local sld=$(ruby_rbconfig_value 'sitelibdir') - insinto "${sld#${EPREFIX}}" # bug #320813 - newins "${FILESDIR}/auto_gem.rb.ruby19" auto_gem.rb - - newbin bin/gem $(basename ${RUBY} | sed -e 's:ruby:gem:') -} - -all_ruby_install() { - dodoc History.txt README.md - - if use server; then - newinitd "${FILESDIR}/init.d-gem_server2" gem_server - newconfd "${FILESDIR}/conf.d-gem_server" gem_server - fi -} - -pkg_postinst() { - if [[ ! -n $(readlink "${ROOT}"usr/bin/gem) ]] ; then - eselect ruby set $(eselect --brief --colour=no ruby show | head -n1) - fi - - ewarn - ewarn "To switch between available Ruby profiles, execute as root:" - ewarn "\teselect ruby set ruby(23|24|...)" - ewarn -} diff --git a/dev-ruby/rubygems/rubygems-3.0.6.ebuild b/dev-ruby/rubygems/rubygems-3.0.9.ebuild similarity index 94% rename from dev-ruby/rubygems/rubygems-3.0.6.ebuild rename to dev-ruby/rubygems/rubygems-3.0.9.ebuild index bbd9d9d9b186..239ef3fa3eff 100644 --- a/dev-ruby/rubygems/rubygems-3.0.6.ebuild +++ b/dev-ruby/rubygems/rubygems-3.0.9.ebuild @@ -20,6 +20,8 @@ RESTRICT="!test? ( test )" PDEPEND="server? ( =dev-ruby/builder-3* )" +ruby_add_depend "virtual/ruby-ssl" + ruby_add_bdepend " test? ( dev-ruby/json @@ -36,6 +38,7 @@ all_ruby_prepare() { # Disable broken tests when changing default values: sed -i -e '/test_default_path/,/^ end/ s:^:#:' test/rubygems/test_gem.rb || die + sed -i -e '/test_env_shebang_flag/askip' test/rubygems/test_gem_commands_setup_command.rb || die } each_ruby_compile() { diff --git a/dev-ruby/rubygems/rubygems-3.1.3.ebuild b/dev-ruby/rubygems/rubygems-3.1.5.ebuild similarity index 98% rename from dev-ruby/rubygems/rubygems-3.1.3.ebuild rename to dev-ruby/rubygems/rubygems-3.1.5.ebuild index 54e32ae28236..83d91f198951 100644 --- a/dev-ruby/rubygems/rubygems-3.1.3.ebuild +++ b/dev-ruby/rubygems/rubygems-3.1.5.ebuild @@ -3,7 +3,7 @@ EAPI=7 -USE_RUBY="ruby24 ruby25 ruby26 ruby27" +USE_RUBY="ruby25 ruby26 ruby27" inherit ruby-ng prefix diff --git a/dev-ruby/rubygems/rubygems-3.1.2.ebuild b/dev-ruby/rubygems/rubygems-3.2.0.ebuild similarity index 95% rename from dev-ruby/rubygems/rubygems-3.1.2.ebuild rename to dev-ruby/rubygems/rubygems-3.2.0.ebuild index 54e32ae28236..000adfc00ba2 100644 --- a/dev-ruby/rubygems/rubygems-3.1.2.ebuild +++ b/dev-ruby/rubygems/rubygems-3.2.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -USE_RUBY="ruby24 ruby25 ruby26 ruby27" +USE_RUBY="ruby25 ruby26 ruby27" inherit ruby-ng prefix @@ -40,7 +40,7 @@ all_ruby_prepare() { # Disable broken tests when changing default values: sed -i -e '/test_default_path/,/^ end/ s:^:#:' test/rubygems/test_gem.rb || die # Avoid test that won't work as json is also installed as plain ruby code - sed -i -e '/test_realworld_default_gem/askip "gentoo"' test/rubygems/test_require.rb || die + sed -i -e '/test_realworld_\(\|upgraded_\)default_gem/askip "gentoo"' test/rubygems/test_require.rb || die # Update manifest after changing files to avoid a test failure if use test; then diff --git a/dev-util/Manifest.gz b/dev-util/Manifest.gz index 40df12b83665..75874058d003 100644 Binary files a/dev-util/Manifest.gz and b/dev-util/Manifest.gz differ diff --git a/dev-util/debugedit/Manifest b/dev-util/debugedit/Manifest index f75fa034aa90..b462aca4af10 100644 --- a/dev-util/debugedit/Manifest +++ b/dev-util/debugedit/Manifest @@ -1 +1,2 @@ DIST rpm-4.16.0.tar.bz2 4341683 BLAKE2B 5161e5dcc6d9a1f1d4b8e44740fb368050b808fd9e8b8276fb17b530a4642e1b9ad104b5a30c0071215aef7f823eeab10988dd41f73af1c52d575529c374b5eb SHA512 177119c3ac3d48980db55bb4ba0fdbb2a911968e5efc690bfa8cc343f850fc90531cc0dee6dd8e45d2b14f0d951ced35bd8893d24011b7f270745d281ddf4e3d +DIST rpm-4.16.1.tar.bz2 4348973 BLAKE2B 5f415099ed5b4f3425c1cbd02476c3066ef51e8efbe09829c0c7d9732cfdeed76ab0c5eed113a1b007d35bf5d5fb1c60543b7ef23319ba0f63550d598e98dcdd SHA512 cbce8381e7a0bdaf2c7529d0ac91fda15e663db7a76b02652d53327ebcd7d5b6b6154d5e88feeda87f71727a036e7a2afcd57c7dcddef610e32957b9e430d367 diff --git a/dev-util/debugedit/debugedit-4.16.1.ebuild b/dev-util/debugedit/debugedit-4.16.1.ebuild new file mode 100644 index 000000000000..d2c338794406 --- /dev/null +++ b/dev-util/debugedit/debugedit-4.16.1.ebuild @@ -0,0 +1,91 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit flag-o-matic + +MY_P=rpm-${PV} +DESCRIPTION="Stand-alone debugedit from RPM" +HOMEPAGE="https://rpm.org + https://github.com/rpm-software-management/rpm" +SRC_URI="http://ftp.rpm.org/releases/rpm-$(ver_cut 1-2).x/${MY_P}.tar.bz2" + +LICENSE="GPL-2+ LGPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND=" + sys-libs/zlib:= + >=dev-libs/popt-1.7 + >=dev-libs/elfutils-0.176-r1 + dev-libs/nss +" +DEPEND="${RDEPEND} + virtual/pkgconfig +" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + eapply_user + + # cheat it into believing we're bundling db + mkdir -p db/dist || die + touch db/dist/configure || die + chmod +x db/dist/configure || die + echo 'install:' > db3/Makefile || die + + # TODO: why do we need to do this? + mkdir rpm || die + find -name '*.h' -exec cp {} rpm/ ';' || die +} + +src_configure() { + append-cppflags -I"${EPREFIX}/usr/include/nss" -I"${EPREFIX}/usr/include/nspr" + local myconf=( + # force linking to static librpmio + --disable-shared + + # disable linking compression libraries + ac_cv_header_bzlib_h=no + ac_cv_header_lzma_h=no + --disable-zstd + + # fake some libraries we don't use + ac_cv_header_magic_h=yes + ac_cv_lib_magic_magic_open=yes + + # use nss as crypto provider + --with-crypto=nss + + # disable other stuff irrelevant to debugedit + --disable-bdb + --disable-nls + --disable-plugins + --disable-python + --without-acl + --without-archive + --without-cap + --without-external-db + --without-hackingdocs + --without-lua + --without-selinux + ) + econf "${myconf[@]}" +} + +src_compile() { + emake -C misc + emake -C rpmio + emake debugedit +} + +src_test() { + : +} + +src_install() { + dobin debugedit +} diff --git a/dev-util/glslang/glslang-10.11.0.0_pre20200924.ebuild b/dev-util/glslang/glslang-10.11.0.0_pre20200924.ebuild index ce77aaad4c98..9cdeed43912d 100644 --- a/dev-util/glslang/glslang-10.11.0.0_pre20200924.ebuild +++ b/dev-util/glslang/glslang-10.11.0.0_pre20200924.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} == *9999* ]]; then else SNAPSHOT_COMMIT="bacaef3237c515e40d1a24722be48c0a0b30f75f" SRC_URI="https://github.com/KhronosGroup/${PN}/archive/${SNAPSHOT_COMMIT}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 ~riscv x86" + KEYWORDS="~amd64 arm arm64 ~ppc ppc64 ~riscv x86" S="${WORKDIR}/${PN}-${SNAPSHOT_COMMIT}" fi diff --git a/dev-util/pkgcheck/pkgcheck-9999.ebuild b/dev-util/pkgcheck/pkgcheck-9999.ebuild index 506d48fd9206..ae82d9f6d150 100644 --- a/dev-util/pkgcheck/pkgcheck-9999.ebuild +++ b/dev-util/pkgcheck/pkgcheck-9999.ebuild @@ -17,7 +17,7 @@ fi DESCRIPTION="pkgcore-based QA utility for ebuild repos" HOMEPAGE="https://github.com/pkgcore/pkgcheck" -LICENSE="BSD" +LICENSE="BSD MIT" SLOT="0" IUSE="test" RESTRICT="!test? ( test )" @@ -35,6 +35,7 @@ RDEPEND+=" dev-python/chardet[${PYTHON_USEDEP}] dev-python/lxml[${PYTHON_USEDEP}] dev-python/pathspec[${PYTHON_USEDEP}] + dev-python/tree-sitter[${PYTHON_USEDEP}] " DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}] diff --git a/dev-util/spirv-headers/spirv-headers-1.5.4.ebuild b/dev-util/spirv-headers/spirv-headers-1.5.4.ebuild index 6bca08986646..d9ba70c80794 100644 --- a/dev-util/spirv-headers/spirv-headers-1.5.4.ebuild +++ b/dev-util/spirv-headers/spirv-headers-1.5.4.ebuild @@ -12,6 +12,6 @@ SRC_URI="https://github.com/KhronosGroup/SPIRV-Headers/archive/${EGIT_COMMIT}.ta LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 ~riscv x86" +KEYWORDS="~amd64 arm arm64 ~ppc ppc64 ~riscv x86" S="${WORKDIR}/SPIRV-Headers-${EGIT_COMMIT}" diff --git a/dev-util/spirv-tools/spirv-tools-2020.5_pre20201107.ebuild b/dev-util/spirv-tools/spirv-tools-2020.5_pre20201107.ebuild index dec0eb24a041..7921c01f46cd 100644 --- a/dev-util/spirv-tools/spirv-tools-2020.5_pre20201107.ebuild +++ b/dev-util/spirv-tools/spirv-tools-2020.5_pre20201107.ebuild @@ -14,7 +14,7 @@ if [[ ${PV} == *9999* ]]; then else EGIT_COMMIT="a61d07a72763c1eb200de0a2c316703643a0d1d9" SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 ~riscv x86" + KEYWORDS="~amd64 arm arm64 ~ppc ppc64 ~riscv x86" S="${WORKDIR}"/${MY_PN}-${EGIT_COMMIT} fi diff --git a/dev-util/vulkan-headers/vulkan-headers-1.2.154.ebuild b/dev-util/vulkan-headers/vulkan-headers-1.2.154.ebuild index 64a98c61a559..79af58fcdc70 100644 --- a/dev-util/vulkan-headers/vulkan-headers-1.2.154.ebuild +++ b/dev-util/vulkan-headers/vulkan-headers-1.2.154.ebuild @@ -11,7 +11,7 @@ if [[ ${PV} == *9999* ]]; then inherit git-r3 else SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 ~riscv x86" + KEYWORDS="~amd64 arm arm64 ~ppc ppc64 ~riscv x86" S="${WORKDIR}"/${MY_PN}-${PV} fi diff --git a/games-emulation/Manifest.gz b/games-emulation/Manifest.gz index 8fc84f6a253f..ad5a6a909330 100644 Binary files a/games-emulation/Manifest.gz and b/games-emulation/Manifest.gz differ diff --git a/games-emulation/ppsspp/metadata.xml b/games-emulation/ppsspp/metadata.xml index 734835063341..d19785f0a0cc 100644 --- a/games-emulation/ppsspp/metadata.xml +++ b/games-emulation/ppsspp/metadata.xml @@ -10,6 +10,7 @@ Proxy Maintainers + Enable interfacing with a locally running Discord desktop client Use the system-wide media-video/ffmpeg instead of bundled diff --git a/games-emulation/ppsspp/ppsspp-1.10.3.ebuild b/games-emulation/ppsspp/ppsspp-1.10.3.ebuild index 41b2ef1ee03e..c2d256e9a4fc 100644 --- a/games-emulation/ppsspp/ppsspp-1.10.3.ebuild +++ b/games-emulation/ppsspp/ppsspp-1.10.3.ebuild @@ -12,18 +12,18 @@ SRC_URI=" https://github.com/KhronosGroup/SPIRV-Cross/archive/a1f7c8dc8ea2f94443951ee27003bffa562c1f13.tar.gz -> ${P}-ext_SPIRV-Cross.tar.gz https://github.com/Kingcom/armips/archive/7885552b208493a6a0f21663770c446c3ba65576.tar.gz -> ${P}-ext_armips.tar.gz https://github.com/Tencent/rapidjson/archive/73063f5002612c6bf64fe24f851cd5cc0d83eef9.tar.gz -> ${P}-ext_rapidjson.tar.gz - https://github.com/discordapp/discord-rpc/archive/3d3ae7129d17643bc706da0a2eea85aafd10ab3a.tar.gz -> ${P}-ext_discord-rpc.tar.gz https://github.com/hrydgard/glslang/archive/d0850f875ec392a130ccf00018dab458b546f27c.tar.gz -> ${P}-ext_glslang.tar.gz https://github.com/hrydgard/ppsspp-freetype/archive/cbea79dc8fef4d9210e2bac7e7b9b5ff3388197a.tar.gz -> ${P}-ext_native_tools_prebuilt.tar.gz https://github.com/hrydgard/ppsspp-lang/archive/fd6f5bc01afb419eacca538b425c01eb2a055393.tar.gz -> ${P}-assets_lang.tar.gz !system-ffmpeg? ( https://github.com/hrydgard/ppsspp-ffmpeg/archive/d3e695286cce346274192c214c00f021c00cd575.tar.gz -> ${P}-ffmpeg.tar.gz ) + discord? ( https://github.com/discordapp/discord-rpc/archive/3d3ae7129d17643bc706da0a2eea85aafd10ab3a.tar.gz -> ${P}-ext_discord-rpc.tar.gz ) " RESTRICT="test" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64" -IUSE="qt5 sdl +system-ffmpeg" +IUSE="discord qt5 sdl +system-ffmpeg" REQUIRED_USE="!qt5? ( sdl )" RDEPEND=" @@ -57,14 +57,12 @@ src_unpack() { assets_lang ext_SPIRV-Cross ext_armips - ext_discord-rpc ext_glslang ext_native_tools_prebuilt ext_rapidjson ) - if ! use system-ffmpeg; then - list+=( ffmpeg ) - fi + ! use system-ffmpeg && list+=( ffmpeg ) + use discord && list+=( ext_discord-rpc ) for i in "${list[@]}"; do tar xf "${DISTDIR}/${P}-${i}.tar.gz" --strip-components 1 -C "${i//_//}" || die "Failed to unpack ${P}-${i}.tar.gz" done @@ -82,6 +80,7 @@ src_configure() { local mycmakeargs=( $(cmake_use_find_package sdl SDL2) -DHEADLESS=true + -DUSE_DISCORD=$(usex discord) -DUSE_SYSTEM_FFMPEG=$(usex system-ffmpeg) -DUSE_SYSTEM_LIBZIP=ON -DUSE_SYSTEM_SNAPPY=ON diff --git a/games-roguelike/Manifest.gz b/games-roguelike/Manifest.gz index e3c8cd57da69..54c845455e56 100644 Binary files a/games-roguelike/Manifest.gz and b/games-roguelike/Manifest.gz differ diff --git a/games-roguelike/stone-soup/stone-soup-0.25.1-r100.ebuild b/games-roguelike/stone-soup/stone-soup-0.25.1-r100.ebuild index 984eb6860bc9..58a9e530e1a1 100644 --- a/games-roguelike/stone-soup/stone-soup-0.25.1-r100.ebuild +++ b/games-roguelike/stone-soup/stone-soup-0.25.1-r100.ebuild @@ -9,7 +9,7 @@ EAPI=7 LUA_COMPAT=( lua5-{1..3} ) PYTHON_COMPAT=( python3_{6,7,8,9} ) VIRTUALX_REQUIRED="manual" -inherit desktop distutils-r1 eutils lua-single xdg-utils toolchain-funcs +inherit desktop python-any-r1 eutils lua-single xdg-utils toolchain-funcs MY_P="stone_soup-${PV}" DESCRIPTION="Role-playing roguelike game of exploration and treasure-hunting in dungeons" @@ -54,7 +54,8 @@ RDEPEND=" DEPEND="${RDEPEND} app-arch/unzip dev-lang/perl - dev-python/pyyaml[${PYTHON_USEDEP}] + ${PYTHON_DEPS} + $(python_gen_any_dep 'dev-python/pyyaml[${PYTHON_USEDEP}]') sys-devel/flex tiles? ( sys-libs/ncurses:0 @@ -70,8 +71,14 @@ PATCHES=( "${FILESDIR}"/rltiles-ldflags-libs.patch ) +python_check_deps() { + has_version "dev-python/pyyaml[${PYTHON_USEDEP}]" +} + pkg_setup() { + python-any-r1_pkg_setup + if use !ncurses && use !tiles ; then ewarn "Neither ncurses nor tiles frontend" ewarn "selected, choosing ncurses only." @@ -83,6 +90,11 @@ pkg_setup() { fi } +src_prepare() { + default + python_fix_shebang "${S}/util/species-gen.py" +} + src_compile() { # Insurance that we're not using bundled lib sources diff --git a/games-roguelike/stone-soup/stone-soup-0.25.1.ebuild b/games-roguelike/stone-soup/stone-soup-0.25.1.ebuild index f478d555a48e..69379b34c524 100644 --- a/games-roguelike/stone-soup/stone-soup-0.25.1.ebuild +++ b/games-roguelike/stone-soup/stone-soup-0.25.1.ebuild @@ -8,7 +8,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{6,7,8,9} ) VIRTUALX_REQUIRED="manual" -inherit desktop distutils-r1 eutils xdg-utils toolchain-funcs +inherit desktop python-any-r1 eutils xdg-utils toolchain-funcs MY_P="stone_soup-${PV}" DESCRIPTION="Role-playing roguelike game of exploration and treasure-hunting in dungeons" @@ -53,7 +53,8 @@ RDEPEND=" DEPEND="${RDEPEND} app-arch/unzip dev-lang/perl - dev-python/pyyaml[${PYTHON_USEDEP}] + ${PYTHON_DEPS} + $(python_gen_any_dep 'dev-python/pyyaml[${PYTHON_USEDEP}]') sys-devel/flex tiles? ( sys-libs/ncurses:0 @@ -69,8 +70,14 @@ PATCHES=( "${FILESDIR}"/rltiles-ldflags-libs.patch ) +python_check_deps() { + has_version "dev-python/pyyaml[${PYTHON_USEDEP}]" +} + pkg_setup() { + python-any-r1_pkg_setup + if use !ncurses && use !tiles ; then ewarn "Neither ncurses nor tiles frontend" ewarn "selected, choosing ncurses only." @@ -82,6 +89,11 @@ pkg_setup() { fi } +src_prepare() { + default + python_fix_shebang "${S}/util/species-gen.py" +} + src_compile() { # Insurance that we're not using bundled lib sources diff --git a/games-util/Manifest.gz b/games-util/Manifest.gz index 970fda11ce70..2b70a04f8219 100644 Binary files a/games-util/Manifest.gz and b/games-util/Manifest.gz differ diff --git a/games-util/pyfa/Manifest b/games-util/pyfa/Manifest index 99bf8dd2ef45..2525a451acd5 100644 --- a/games-util/pyfa/Manifest +++ b/games-util/pyfa/Manifest @@ -1,2 +1,2 @@ -DIST pyfa-2.31.0.tar.gz 28138681 BLAKE2B a183fa073a34f0db1264aae980e36e28e90374153e372bcb14cf3a0c3e3c1ff95084f8c23a9710a169671d12ec830e3203d1eb072d1dfc1d9c1095e0422bccfb SHA512 813ca3f7f43b08ceceb1e607ddbc2ff0b47836823dde91787da2c3905fd9af2fdddfa582ec867dd4311f14f4180cc8ec993a49f0ed62b6ce68d4eed6060c3c5b DIST pyfa-2.32.0.tar.gz 28170873 BLAKE2B 92839a83067f3699dfcf85a6e479c16a80e18f375f402654dd2b1207497bfba639e717d3ff205cc682a8cbf3cefd37990c7d6dccf46e9dbf23bfd416c58eba81 SHA512 998a1055a5d68cdf61603ecac503db24a8ea344cd388acc7f1f04aafe54b22db059461619c1a1d93b807dc64c779a158b6b2d5066412d6ffc3df0a858de83b0e +DIST pyfa-2.33.0.tar.gz 28872031 BLAKE2B fe7fad57e43a8efc78f828d0ff81788147fa64ef02a20a71d6fef8ab0130d39b5ebffc18d58a774a61d805b8d0e570cbedb0b8fa536c8c71e61102fb6d093998 SHA512 bfa4e41b387e9f23aeae41a4884a0492316cc6e51841243ef56dc733edab10e6c9609ca7918d4de9fcd052b4da8f8048ce7578d164ad98237b53cb05f7c168d8 diff --git a/games-util/pyfa/pyfa-2.31.0.ebuild b/games-util/pyfa/pyfa-2.33.0.ebuild similarity index 96% rename from games-util/pyfa/pyfa-2.31.0.ebuild rename to games-util/pyfa/pyfa-2.33.0.ebuild index 50ffcdd37c25..45cf9b4ed504 100644 --- a/games-util/pyfa/pyfa-2.31.0.ebuild +++ b/games-util/pyfa/pyfa-2.33.0.ebuild @@ -3,7 +3,7 @@ EAPI="7" -PYTHON_COMPAT=( python3_{6,7,8} ) +PYTHON_COMPAT=( python3_{6..9} ) PYTHON_REQ_USE="sqlite" inherit desktop edos2unix python-single-r1 xdg @@ -38,6 +38,7 @@ RDEPEND="${DEPEND} $(python_gen_cond_dep ' >=dev-python/beautifulsoup-4.6.0[${PYTHON_MULTI_USEDEP}] >=dev-python/markdown2-2.3.5[${PYTHON_MULTI_USEDEP}] + >=dev-python/numpy-1.19.2[${PYTHON_MULTI_USEDEP}] >=dev-python/packaging-16.8[${PYTHON_MULTI_USEDEP}] dev-python/python-dateutil[${PYTHON_MULTI_USEDEP}] >=dev-python/requests-2.0.0[${PYTHON_MULTI_USEDEP}] diff --git a/games-util/pyfa/pyfa-9999.ebuild b/games-util/pyfa/pyfa-9999.ebuild index 025d566549c3..45cf9b4ed504 100644 --- a/games-util/pyfa/pyfa-9999.ebuild +++ b/games-util/pyfa/pyfa-9999.ebuild @@ -3,7 +3,7 @@ EAPI="7" -PYTHON_COMPAT=( python3_{6,7,8} ) +PYTHON_COMPAT=( python3_{6..9} ) PYTHON_REQ_USE="sqlite" inherit desktop edos2unix python-single-r1 xdg diff --git a/gui-libs/Manifest.gz b/gui-libs/Manifest.gz index eeb0afa9667f..37dac3903d19 100644 Binary files a/gui-libs/Manifest.gz and b/gui-libs/Manifest.gz differ diff --git a/gui-libs/wlroots/wlroots-0.12.0.ebuild b/gui-libs/wlroots/wlroots-0.12.0.ebuild index fe45e5af7e13..3223c05606d2 100644 --- a/gui-libs/wlroots/wlroots-0.12.0.ebuild +++ b/gui-libs/wlroots/wlroots-0.12.0.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then inherit git-r3 else SRC_URI="https://github.com/swaywm/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" + KEYWORDS="amd64 arm64 ~ppc64 x86" fi LICENSE="MIT" diff --git a/gui-wm/Manifest.gz b/gui-wm/Manifest.gz index 815492300205..5bfad0aac963 100644 Binary files a/gui-wm/Manifest.gz and b/gui-wm/Manifest.gz differ diff --git a/gui-wm/sway/sway-1.5.1.ebuild b/gui-wm/sway/sway-1.5.1.ebuild index ffac4374950d..d7f2f7059d3e 100644 --- a/gui-wm/sway/sway-1.5.1.ebuild +++ b/gui-wm/sway/sway-1.5.1.ebuild @@ -14,7 +14,7 @@ if [[ ${PV} == 9999 ]]; then else MY_PV=${PV/_rc/-rc} SRC_URI="https://github.com/swaywm/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" + KEYWORDS="amd64 arm64 ~ppc64 x86" S="${WORKDIR}/${PN}-${MY_PV}" fi diff --git a/media-fonts/Manifest.gz b/media-fonts/Manifest.gz index 47b11f04f177..eed98db8e565 100644 Binary files a/media-fonts/Manifest.gz and b/media-fonts/Manifest.gz differ diff --git a/media-fonts/jetbrains-mono/Manifest b/media-fonts/jetbrains-mono/Manifest index 61f1cacee0a9..eae2a074589b 100644 --- a/media-fonts/jetbrains-mono/Manifest +++ b/media-fonts/jetbrains-mono/Manifest @@ -1 +1,2 @@ DIST jetbrains-mono-2.001.zip 8351990 BLAKE2B cd0eff80f78752ddcd8b7c227dd530057d6e7533ad6b343f403e810f5cf8c6e32c09d503f40336bd926a6ee14b07b5fb8eae7efaaebf37c2e367a5fc9b288e46 SHA512 c47c257b01c50aa77561132993ef07f0b9f244e5040da7a8945c7d9dcdf740e89cd1a130bb81d7caa63d3a579ec74e4af9840c36b6d62601c094b33fdb5e4bb2 +DIST jetbrains-mono-2.210.zip 2664665 BLAKE2B 02e719b7d03d88df6098445dbc1b17735250184b60ba748ba83903b4ad4f59ac3a67cb472e7b6e10ef8351a8ab2ccf0d2188a39003ec8a9cd61f432b0bdb2af4 SHA512 1e0d98b7e8b3f6e115d7a5f3e519483b9d6b2c3e56b55916f4d6dce83f9f1e65303db2d7c44b35de8a7cb25f37d478f0975c874f2a21d44eb1be915be389b408 diff --git a/media-fonts/jetbrains-mono/jetbrains-mono-2.210.ebuild b/media-fonts/jetbrains-mono/jetbrains-mono-2.210.ebuild new file mode 100644 index 000000000000..5304e7053647 --- /dev/null +++ b/media-fonts/jetbrains-mono/jetbrains-mono-2.210.ebuild @@ -0,0 +1,19 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit font + +DESCRIPTION="A free and open-source typeface for developers" +HOMEPAGE="https://www.jetbrains.com/lp/mono/" +SRC_URI="https://github.com/JetBrains/JetBrainsMono/releases/download/v${PV}/JetBrainsMono-${PV}.zip -> ${P}.zip" + +LICENSE="OFL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND="app-arch/unzip" + +S="${WORKDIR}/fonts/ttf" +FONT_SUFFIX="ttf" diff --git a/media-libs/Manifest.gz b/media-libs/Manifest.gz index 39d967042cac..c136d1c7bd9d 100644 Binary files a/media-libs/Manifest.gz and b/media-libs/Manifest.gz differ diff --git a/media-libs/osl/Manifest b/media-libs/osl/Manifest index 1b6d5ed44f26..db1eb09c70c0 100644 --- a/media-libs/osl/Manifest +++ b/media-libs/osl/Manifest @@ -1,3 +1,2 @@ -DIST osl-1.10.10.tar.gz 13549066 BLAKE2B d91360d4cde0e8f70e01aa5cbf14bd6dc30be47ba96d4f2206adb75ef8f14af6af43b00f025cbf9b9c03cfcf117380ee9bb0a93129c314b249151cd97135757b SHA512 10371d9aefa786fefbae15cb9c71d7360bd903a36734840f7d0a960a615d48096b7170596bd934d10579b33d8f8398fc0e00471a10cd517c1a4a601169b2ca13 DIST osl-1.10.13.tar.gz 13551733 BLAKE2B 63b687ec46bd5334a7d0c00cfa5bf5243003e16adf2637fba648a75f98c10103c7c4b5fa1d091ab43b0929f85523b0fa79589eca56686490ee61c48069593767 SHA512 bc39fcf80878160807e35c52654a2993a7d33b3ab2fbf567ec50d0b23636a19064830afab5734f1e39276c77e843bbfe1d6b10a64fd4ebe69b17c8faa5378201 DIST osl-1.11.9.0.tar.gz 14137334 BLAKE2B db68cb77d6af56e711b897371a4fe9386bf1a62625f9fa04012e9ec22346933fe3b0112301a8ad17ac6dd9c01c2a8e00c6d6e557d947870fd39bb3dec1443fd8 SHA512 f93bce0b29ff2da022372d81f2709c7db68e011c07c346b679c4b5ce05425f7eda8904779d7ea460817639e6be78a8c77272d71a3ffa8b068cfaab7572eb2e65 diff --git a/media-libs/osl/osl-1.10.10.ebuild b/media-libs/osl/osl-1.10.10.ebuild deleted file mode 100644 index 1b2d7c3168e0..000000000000 --- a/media-libs/osl/osl-1.10.10.ebuild +++ /dev/null @@ -1,86 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit cmake llvm toolchain-funcs - -# check this on updates -LLVM_MAX_SLOT=9 - -DESCRIPTION="Advanced shading language for production GI renderers" -HOMEPAGE="http://opensource.imageworks.com/?p=osl" -SRC_URI="https://github.com/imageworks/OpenShadingLanguage/archive/Release-${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~x86" - -X86_CPU_FEATURES=( - sse2:sse2 sse3:sse3 ssse3:ssse3 sse4_1:sse4.1 sse4_2:sse4.2 - avx:avx avx2:avx2 avx512f:avx512f f16c:f16c -) -CPU_FEATURES=( ${X86_CPU_FEATURES[@]/#/cpu_flags_x86_} ) - -IUSE="doc partio qt5 test ${CPU_FEATURES[@]%:*}" - -RDEPEND=" - dev-libs/boost:= - dev-libs/pugixml - media-libs/openexr:= - media-libs/openimageio:= - updateGrips(); - } }, - #ifdef OMR -- { { "show-omr" }, [](ScoreView* cv, const QByteArray&) { -+ { { "show-omr" }, [&](ScoreView* cv, const QByteArray&) { - if (cv->score()->masterScore()->omr()) { - showOmr(!_score->masterScore()->showOmr()); - } diff --git a/media-sound/musescore/musescore-9999.ebuild b/media-sound/musescore/musescore-9999.ebuild index f9ce6bb051be..42039a19c047 100644 --- a/media-sound/musescore/musescore-9999.ebuild +++ b/media-sound/musescore/musescore-9999.ebuild @@ -60,11 +60,6 @@ DEPEND=" " RDEPEND="${DEPEND}" -PATCHES=( - "${FILESDIR}/${PN}-3.0.1-man-pages.patch" - "${FILESDIR}/${P}-lambda-capture-this.patch" -) - src_unpack() { if [[ ${PV} == "9999" ]]; then git-r3_src_unpack diff --git a/media-tv/Manifest.gz b/media-tv/Manifest.gz index 042456e21ad4..ea5ae42e51c4 100644 Binary files a/media-tv/Manifest.gz and b/media-tv/Manifest.gz differ diff --git a/media-tv/mythtv/Manifest b/media-tv/mythtv/Manifest index 261a47d69a27..e2859fa32422 100644 --- a/media-tv/mythtv/Manifest +++ b/media-tv/mythtv/Manifest @@ -1,3 +1 @@ -DIST mythtv-30.0_p20190808-cast_constants_to_short.patch 24201 BLAKE2B d76e519666914f6c9a510fb0aec493e361e857f51e56bd7d120657f350b0bf5da329a89eb58c9789f8f030c6d08bfe0171750690b76d8c2add807942aa686d59 SHA512 c2724ad248222ac4190412cf68e54ee0b265fdde128996e68a2e178e6debe0180c23f9c7d1878466f9a5689fab8172370c6b31c90aa9a096fb5919ec6e8960fe -DIST mythtv-30.0_p20190808.tar.gz 101208060 BLAKE2B af8966dd6353fc514c9a95083f28e8b7b19f16e1bd5a4f7590a946c306bf16a09f0028c76da975e423136834f8f06d7f2a570b43957ef4ae5e42ee241b579f0a SHA512 c02371c0b2162556e40a560a0fd9cb121f46f2ccedbc2ca74cd03aa9caf2b7ea4bbaa09ae6320eb782f932190f449e7fdd274a6d6ba9676e5fd9b7f5432632a2 DIST mythtv-31.0.tar.gz 102552136 BLAKE2B b09b41230eb2cae19d770c3cc59151863e0a56e95a86627473d52613e62f0acf3bd0c4bb37afb340ab874c222899f9d3c219ded470785d27960db9b39d784ceb SHA512 d53817231409934ef37d12739c38cf6936f04f816b0ba1c9738ce99b5b4ff387c70b683ccd84f649ff2f74992b2158829f5f1d1ffe06c8768da1922b90439f6e diff --git a/media-tv/mythtv/files/mythtv-29.1-Fix_create_webbrowser_window.patch b/media-tv/mythtv/files/mythtv-29.1-Fix_create_webbrowser_window.patch deleted file mode 100644 index 168c23379423..000000000000 --- a/media-tv/mythtv/files/mythtv-29.1-Fix_create_webbrowser_window.patch +++ /dev/null @@ -1,61 +0,0 @@ -Index: mythtv/libs/libmythui/mythuiwebbrowser.cpp -Mythtv bug #13544 -=================================================================== ---- a/libs/libmythui/mythuiwebbrowser.cpp -+++ b/libs/libmythui/mythuiwebbrowser.cpp -@@ -873,4 +873,8 @@ - void MythUIWebBrowser::Init(void) - { -+ // only do the initialisation for widgets not being stored in the global object store -+ if (parent() == GetGlobalObjectStore()) -+ return; -+ - if (m_initialized) - return; -@@ -1128,4 +1132,7 @@ - void MythUIWebBrowser::SetActive(bool active) - { -+ if (!m_browser) -+ return; -+ - if (m_active == active) - return; -@@ -1326,4 +1333,7 @@ - void MythUIWebBrowser::Scroll(int dx, int dy) - { -+ if (!m_browser) -+ return; -+ - QPoint startPos = m_browser->page()->currentFrame()->scrollPosition(); - QPoint endPos = startPos + QPoint(dx, dy); -@@ -1435,4 +1445,7 @@ - void MythUIWebBrowser::UpdateScrollBars(void) - { -+ if (!m_browser) -+ return; -+ - QPoint position = m_browser->page()->currentFrame()->scrollPosition(); - if (m_verticalScrollbar) -@@ -1461,5 +1474,5 @@ - UpdateScrollBars(); - -- if (!m_image) -+ if (!m_image || !m_browser) - return; - -@@ -1480,4 +1493,7 @@ - void MythUIWebBrowser::Pulse(void) - { -+ if (!m_browser) -+ return; -+ - if (m_scrollAnimation.IsActive() && - m_destinationScrollPos != -@@ -1522,4 +1538,7 @@ - bool MythUIWebBrowser::keyPressEvent(QKeyEvent *event) - { -+ if (!m_browser) -+ return false; -+ - QStringList actions; - bool handled = false; diff --git a/media-tv/mythtv/files/mythtv-30.0_p20190808-Fix_Dereferencing_type-punned_pointer.patch b/media-tv/mythtv/files/mythtv-30.0_p20190808-Fix_Dereferencing_type-punned_pointer.patch deleted file mode 100644 index bc0751c887c3..000000000000 --- a/media-tv/mythtv/files/mythtv-30.0_p20190808-Fix_Dereferencing_type-punned_pointer.patch +++ /dev/null @@ -1,34 +0,0 @@ ---- a/libs/libmythfreemheg/Programs.cpp -+++ b/libs/libmythfreemheg/Programs.cpp -@@ -232,7 +232,10 @@ void MHResidentProgram::CallProgram(bool fIsFork, const MHObjectRef &success, co - for (int i = 0; i < format.Size(); i++) - { - unsigned char ch = format.GetAt(i); -- char buffer[5]; // Largest text is 4 chars for a year + null terminator -+ // Largest text is 4 chars for a year + null terminator -+ // But... adding a constant to the value might be 5 chars + null terminator -+ // Using 6 gets rid of compiler warning -+ char buffer[6]; - - if (ch == '%') - { -@@ -249,16 +252,16 @@ void MHResidentProgram::CallProgram(bool fIsFork, const MHObjectRef &success, co - switch (ch) - { - case 'Y': -- sprintf(buffer, "%04d", timeStr->tm_year + 1900); -+ sprintf(buffer, "%04d", (unsigned short)(timeStr->tm_year + 1900)); - break; - case 'y': - sprintf(buffer, "%02d", timeStr->tm_year % 100); - break; - case 'X': -- sprintf(buffer, "%02d", timeStr->tm_mon + 1); -+ sprintf(buffer, "%02d", (unsigned short)(timeStr->tm_mon + 1)); - break; - case 'x': -- sprintf(buffer, "%1d", timeStr->tm_mon + 1); -+ sprintf(buffer, "%1d", (unsigned short)(timeStr->tm_mon + 1)); - break; - case 'D': - sprintf(buffer, "%02d", timeStr->tm_mday); diff --git a/media-tv/mythtv/files/mythtv-30.0_p20190808-Fix_unitialized_variables.patch b/media-tv/mythtv/files/mythtv-30.0_p20190808-Fix_unitialized_variables.patch deleted file mode 100644 index db296242515c..000000000000 --- a/media-tv/mythtv/files/mythtv-30.0_p20190808-Fix_unitialized_variables.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- a/libs/libmythtv/eitfixup.cpp -+++ b/libs/libmythtv/eitfixup.cpp -@@ -842,7 +842,7 @@ void EITFixUp::SetUKSubtitle(DBEventEIT &event) const - void EITFixUp::FixUK(DBEventEIT &event) const - { - int position1; -- int position2; -+ int position2 = 0; - QString strFull; - - bool isMovie = event.m_category.startsWith("Movie",Qt::CaseInsensitive) || ---- a/libs/libmythui/mythuitext.cpp -+++ b/libs/libmythui/mythuitext.cpp -@@ -1058,7 +1058,7 @@ int MythUIText::MoveCursor(int lines) - int lineCount = 0; - int currPos = 0; - int layoutStartPos = 0; -- int xPos; -+ int xPos = 0; - - for (int x = 0; x < m_Layouts.count(); x++) - { diff --git a/media-tv/mythtv/metadata.xml b/media-tv/mythtv/metadata.xml index 24e993307ee8..0de2e5e50fa6 100644 --- a/media-tv/mythtv/metadata.xml +++ b/media-tv/mythtv/metadata.xml @@ -34,7 +34,6 @@ Use Ubuntu mythtfrontend wrapper Enable h265 encoding using x265 Support media-tv/xmltv TV listing - not used by Schedules Direct] - External XNVCtrl support using Nvidia proprietary driver MythTV/mythtv diff --git a/media-tv/mythtv/mythtv-30.0_p20190808-r3.ebuild b/media-tv/mythtv/mythtv-30.0_p20190808-r3.ebuild deleted file mode 100644 index 4809398bba76..000000000000 --- a/media-tv/mythtv/mythtv-30.0_p20190808-r3.ebuild +++ /dev/null @@ -1,432 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python2_7 ) - -BACKPORTS="5cde0578d84926171b20c8f7e95a101e9b0b9457" # August 8, 2019 - -MY_P=${P%_p*} -MY_PV=${PV%_p*} - -inherit eutils flag-o-matic python-single-r1 qmake-utils readme.gentoo-r1 systemd user-info vcs-snapshot - -MYTHTV_BRANCH="fixes/${P%.*}" - -DESCRIPTION="Open Source DVR and media center hub" -HOMEPAGE="https://www.mythtv.org" -SRC_URI="https://github.com/MythTV/mythtv/archive/${BACKPORTS}.tar.gz -> ${P}.tar.gz - https://dev.gentoo.org/~juippis/distfiles/tmp/mythtv-30.0_p20190808-cast_constants_to_short.patch" - -LICENSE="GPL-2+" -KEYWORDS="~amd64 ~x86" -SLOT="0/${PV}" - -IUSE_INPUT_DEVICES="input_devices_joystick" -IUSE_VIDEO_CAPTURE_DEVICES="v4l ivtv ieee1394 hdpvr hdhomerun vbox ceton" -IUSE="alsa altivec asi autostart bluray cdda cdr cec debug dvd dvb egl exif fftw jack java - +lame lcd libass lirc +opengl oss perl pulseaudio python raw systemd vaapi vdpau vpx - +wrapper x264 x265 +xml xmltv xnvctrl +xvid +X zeroconf - ${IUSE_INPUT_DEVICES} ${IUSE_VIDEO_CAPTURE_DEVICES}" -REQUIRED_USE=" - python? ( ${PYTHON_REQUIRED_USE} ) - bluray? ( xml ) - cdr? ( cdda ) -" -COMMON_DEPEND=" - acct-user/mythtv - dev-libs/glib:2 - dev-libs/lzo - dev-qt/qtcore:5 - dev-qt/qtdbus:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - opengl? ( dev-qt/qtopengl:5 ) - dev-qt/qtscript:5 - dev-qt/qtsql:5[mysql] - dev-qt/qtwebkit:5 - dev-qt/qtwidgets:5 - dev-qt/qtxml:5 - media-gfx/exiv2:= - media-libs/freetype:2 - media-libs/libsamplerate - media-libs/taglib - lame? ( >=media-sound/lame-3.93.1 ) - sys-libs/zlib - opengl? ( virtual/opengl ) - X? ( - x11-libs/libX11:= - x11-libs/libXext:= - x11-libs/libXinerama:= - x11-libs/libXrandr:= - x11-libs/libXv:= - x11-libs/libXxf86vm:= - x11-misc/wmctrl:= - ) - alsa? ( >=media-libs/alsa-lib-1.0.24 ) - bluray? ( - media-libs/libbluray:=[java?] - dev-libs/libcdio:= - sys-fs/udisks:2 - ) - cec? ( dev-libs/libcec ) - dvd? ( - dev-libs/libcdio:= - sys-fs/udisks:2 - ) - egl? ( media-libs/mesa[egl] ) - fftw? ( sci-libs/fftw:3.0=[threads] ) - hdhomerun? ( media-libs/libhdhomerun ) - ieee1394? ( - >=media-libs/libiec61883-1.0.0 - >=sys-libs/libavc1394-0.5.3 - >=sys-libs/libraw1394-1.2.0 - ) - jack? ( media-sound/jack-audio-connection-kit ) - java? ( dev-java/ant-core ) - lcd? ( app-misc/lcdproc ) - libass? ( >=media-libs/libass-0.9.11:= ) - lirc? ( app-misc/lirc ) - perl? ( - >=dev-perl/libwww-perl-5 - dev-perl/DBD-mysql - dev-perl/HTTP-Message - dev-perl/IO-Socket-INET6 - dev-perl/LWP-Protocol-https - dev-perl/Net-UPnP - ) - pulseaudio? ( media-sound/pulseaudio ) - systemd? ( sys-apps/systemd:= ) - vaapi? ( x11-libs/libva:=[opengl] ) - vdpau? ( x11-libs/libvdpau ) - vpx? ( =media-libs/x264-0.0.20111220:= ) - x265? ( media-libs/x265 ) - xml? ( >=dev-libs/libxml2-2.6.0 ) - xvid? ( >=media-libs/xvid-1.1.0 ) - zeroconf? ( - dev-libs/openssl:0= - net-dns/avahi[mdnsresponder-compat] - ) -" -RDEPEND="${COMMON_DEPEND} - python? ( - ${PYTHON_DEPS} - $(python_gen_cond_dep ' - dev-python/lxml[${PYTHON_MULTI_USEDEP}] - dev-python/mysqlclient[${PYTHON_MULTI_USEDEP}] - dev-python/urlgrabber[${PYTHON_MULTI_USEDEP}] - dev-python/future[${PYTHON_MULTI_USEDEP}] - dev-python/requests-cache[${PYTHON_MULTI_USEDEP}] - ') - ) - media-fonts/corefonts - media-fonts/dejavu - media-fonts/liberation-fonts - x11-apps/xinit - autostart? ( - net-dialup/mingetty - x11-apps/xset - x11-wm/evilwm - ) - dvd? ( media-libs/libdvdcss ) - xmltv? ( >=media-tv/xmltv-0.5.43 ) -" -DEPEND=" - ${COMMON_DEPEND} - dev-lang/yasm - x11-base/xorg-proto -" - -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}/${P}-respect_LDFLAGS.patch" - "${DISTDIR}/${P}-cast_constants_to_short.patch" - "${FILESDIR}/${P}-Fix_Dereferencing_type-punned_pointer.patch" - "${FILESDIR}/${P}-Fix_unitialized_variables.patch" - "${FILESDIR}/${PN}-29.1-Fix_create_webbrowser_window.patch" - "${FILESDIR}/${PN}-31.0-Include_QPainterPath.patch" -) - -# mythtv and mythplugins are separate builds in the github mythtv project -S="${WORKDIR}/${P}/mythtv" - -DISABLE_AUTOFORMATTING="yes" -DOC_CONTENTS=" -If a MYSQL server is installed, a mythtv MySQL user and mythconverg database -is created if it does not already exist. -You will be prompted for your MySQL root password. - -A mythtv user is maintained by acct-user/mythtv. An existing mythtv user -may be modified to the configuration defined by acct-user/mythtv. -An existing mythtv user may be changed which may alter some functionality. -If it breaks mythtv you may need to (choose one): - * Restore the original mythtv user - * Create custom acct-user/mythtv overlay for your system - * Fix you system to use mythtv as daemon only -Failure to emerge acct-user/mythtv indicates that the existing mythtv user -is customized and not changed. Corrective action (choose one): - * Ignore emerge failure - * Create custom acct-user/mythtv overlay for your system - * Fix you system to use mythtv as daemon only - * Delete existing user and try again (dangerous) - -Mythtv is updated to use correct FHS/Gentoo policy paths. -Updating mythtv installations may report: - * mythtv is in use, cannot update home - * There was an error when attempting to update the home directory for mythtv - * Please update it manually on your system (as root): - * usermod -d "/var/lib/mythtv" "mythtv" -This can be ignored. The previous default was "/home/mythtv". -Use caution if you change the home directory. - -To have this machine operate as recording host for MythTV, -mythbackend must be running. Run the following: -rc-update add mythbackend default - -Your recordings folder must be owned 'mythtv'. e.g. -chown -R mythtv /var/lib/mythtv - -Want mythfrontend to start automatically? -Set USE=autostart. Details can be found at: -https://dev.gentoo.org/~cardoe/mythtv/autostart.html - -Note that the systemd unit now restarts by default and logs -to journald via the console at the notice verbosity. -" - -pkg_setup() { - use python && python-single-r1_pkg_setup - # The acct-user/mythtv package creates/manages the user 'mythtv' -} - -src_prepare() { - default - - # Perl bits need to go into vender_perl and not site_perl - sed -e "s:pure_install:pure_install INSTALLDIRS=vendor:" \ - -i "${S}"/bindings/perl/Makefile || die "Cannot convert site_perl to vendor_perl!" - - # Fix up the version info since we are using the fixes/${PV} branch - echo "SOURCE_VERSION=\"v${MY_PV}\"" > "${S}"/VERSION - echo "BRANCH=\"${MYTHTV_BRANCH}\"" >> "${S}"/VERSION - echo "SOURCE_VERSION=\"${BACKPORTS}\"" > "${S}"/EXPORTED_VERSION - echo "BRANCH=\"${MYTHTV_BRANCH}\"" >> "${S}"/EXPORTED_VERSION - - echo "setting.extra -= -ldconfig" >> "${S}"/programs/mythfrontend/mythfrontend.pro -} - -src_configure() { - local -a myconf - - # Setup paths - myconf+=(--prefix="${EPREFIX}"/usr) - myconf+=(--libdir="${EPREFIX}"/usr/$(get_libdir)) - myconf+=(--libdir-name=$(get_libdir)) - myconf+=(--mandir="${EPREFIX}"/usr/share/man) - - if use debug; then - myconf+=(--compile-type=debug) - myconf+=(--disable-stripping) # FIXME: does not disable for all files, only for some - myconf+=(--enable-valgrind) # disables timeouts for valgrind memory debugging - else - myconf+=(--compile-type=release) - fi - - # Build boosters - has ccache "${FEATURES}" || myconf+=(--disable-ccache) - has distcc "${FEATURES}" || myconf+=(--disable-distcc) - - # CPU settings - # Mythtv's configure is borrowed from ffmpeg, - # Bug #172723 - # Try to get cpu type based on CFLAGS. - # We need to do this so that features of that CPU will be better used - # If they contain an unknown CPU it will not hurt since ffmpeg's configure - # will just ignore it. - for i in $(get-flag march) $(get-flag mcpu) $(get-flag mtune) ; do - [ "${i}" = "native" ] && i="host" # bug #273421 - myconf+=(--cpu="${i}") - break - done - myconf+=($(use_enable altivec)) - - # Sound Output Support - myconf+=( - $(use_enable oss audio-oss) - $(use_enable alsa audio-alsa) - $(use_enable jack audio-jack) - $(use_enable pulseaudio audio-pulseoutput) - ) - - # Input Support - myconf+=( - $(use_enable lirc) - $(use_enable input_devices_joystick joystick-menu) - $(use_enable cec libcec) - $(use_enable ieee1394 firewire) - $(use_enable hdhomerun) - $(use_enable vbox) - $(use_enable ceton) - $(use_enable v4l v4l2) - $(use_enable ivtv) - $(use_enable hdpvr) - $(use_enable dvb) - $(use_enable asi) - ) - - # Video Output Support - myconf+=( - $(use_enable X x11) - $(use_enable xnvctrl) - $(use_enable X xrandr) - $(use_enable X xv) - ) - - # Hardware accellerators - myconf+=( - $(use_enable vdpau) - $(use_enable vaapi) - $(use_enable vaapi vaapi2) - $(use_enable opengl opengl-video) - $(use_enable opengl opengl-themepainter) - $(use_enable libass) - ) - - # System tools - myconf+=( - $(use_enable systemd systemd_notify) - $(use_enable systemd systemd_journal) - $(use_enable xml libxml2) - $(use_enable zeroconf libdns-sd) - ) - - # Bindings - if use perl && use python; then - myconf+=(--with-bindings=perl,python) - elif use perl; then - myconf+=(--without-bindings=python) - myconf+=(--with-bindings=perl) - elif use python; then - myconf+=(--without-bindings=perl) - myconf+=(--with-bindings=python) - else - myconf+=(--without-bindings=perl,python) - fi - use python && myconf+=(--python="${EPYTHON}") - myconf+=($(use_enable java bdjava)) - - # External codec library options (used for mythffmpeg and streaming transcode) - # lame is required for some broadcasts for silence detection of commercials - # default enable in IUSE with +lame - myconf+=( - $(use_enable lame libmp3lame) - $(use_enable xvid libxvid) - $(use_enable x264 libx264) - $(use_enable x265 libx265) - $(use_enable vpx libvpx) - ) - - # Clean up DSO load times and other compiler bits - myconf+=(--enable-symbol-visibility) - myconf+=(--enable-pic) - - if tc-is-cross-compiler ; then - myconf+=(--enable-cross-compile --arch=$(tc-arch-kernel)) - myconf+=(--cross-prefix="${CHOST}"-) - fi - - myconf+=($(use_enable bluray libbluray_external)) - - # econf sets these options that are not handled by configure: - # --build --host --infodir --localstatedir --sysconfdir - - einfo "Running ./configure ${myconf[@]} - THIS MAY TAKE A WHILE." - ./configure \ - --prefix="${EPREFIX}/usr" \ - --cc="$(tc-getCC)" \ - --cxx="$(tc-getCXX)" \ - --ar="$(tc-getAR)" \ - --optflags="${CFLAGS}" \ - --extra-cflags="${CFLAGS}" \ - --extra-cxxflags="${CXXFLAGS}" \ - --extra-ldflags="${LDFLAGS}" \ - --qmake=$(qt5_get_bindir)/qmake \ - "${myconf[@]}" -} - -src_install() { - emake STRIP="true" INSTALL_ROOT="${D}" install - use python && python_optimize # does all packages by default - dodoc AUTHORS UPGRADING README - readme.gentoo_create_doc - - insinto /usr/share/mythtv/database - doins database/* - - newinitd "${FILESDIR}"/mythbackend.init-r2 mythbackend - newconfd "${FILESDIR}"/mythbackend.conf-r1 mythbackend - if use systemd; then - systemd_newunit "${FILESDIR}"/mythbackend.service-28 mythbackend.service - fi - - dodoc keys.txt - - keepdir /etc/mythtv - fowners -R mythtv /etc/mythtv - keepdir /var/log/mythtv - fowners -R mythtv /var/log/mythtv - - insinto /etc/logrotate.d - newins "${FILESDIR}"/mythtv.logrotate.d-r4 mythtv - - insinto /usr/share/mythtv/contrib - # Ensure we don't install scripts needing the perl bindings (bug #516968) - use perl || find contrib/ -name '*.pl' -exec rm -f {} \; - # Ensure we don't install scripts needing the python bindings (bug #516968) - use python || find contrib/ -name '*.py' -exec rm -f {} \; - doins -r contrib/* - - # Install our mythfrontend wrapper which is similar to Mythbuntu's - if use wrapper; then - mv "${ED}/usr/bin/mythfrontend" "${ED}/usr/bin/mythfrontend.real" || die "Failed to install mythfrontend.real" - newbin "${FILESDIR}"/mythfrontend.wrapper mythfrontend - newconfd "${FILESDIR}"/mythfrontend.conf mythfrontend - fi - - if use autostart; then - echo CONFIG_PROTECT=\"$(egethome mythtv)\" > "${T}"/95mythtv - doenvd "${T}"/95mythtv - - insinto $(egethome mythtv) - newins "${FILESDIR}"/bash_profile .bash_profile - newins "${FILESDIR}"/xinitrc-r1 .xinitrc - fi - - # Make Python files executable but not files named "__init__.py" - find "${ED}/usr/share/mythtv" -type f -name '*.py' -exec expr \( {} : '.*__init__.py' \) = 0 \; \ - -exec chmod a+x {} \; || die "Failed to make python file $(basename ${file}) executable" - - # Ensure that Python scripts are executed by Python 2 - use python && python_fix_shebang "${ED}/usr/share/mythtv" - - # Make shell & perl scripts executable - find "${ED}" -type f \( -name '*.sh' -o -name '*.pl' \) -exec chmod a+x {} \; || die "Failed to make script executable" -} - -pkg_postinst() { - readme.gentoo_print_elog -} - -pkg_info() { - return -} - -pkg_config() { - if [[ -e "${EROOT}"/usr/bin/mysql ]]; then - "${EROOT}"/usr/bin/mysql -u root -p < "${EROOT}"/usr/share/mythtv/database/mc.sql - fi -} diff --git a/media-tv/mythtv/mythtv-31.0-r3.ebuild b/media-tv/mythtv/mythtv-31.0-r4.ebuild similarity index 98% rename from media-tv/mythtv/mythtv-31.0-r3.ebuild rename to media-tv/mythtv/mythtv-31.0-r4.ebuild index b45f36f1ae77..1a3a406636bb 100644 --- a/media-tv/mythtv/mythtv-31.0-r3.ebuild +++ b/media-tv/mythtv/mythtv-31.0-r4.ebuild @@ -105,7 +105,6 @@ RDEPEND=" xml? ( dev-libs/libxml2:2 ) xmltv? ( dev-perl/XML-LibXML - dev-qt/qtwebkit:5 media-tv/xmltv ) xvid? ( media-libs/xvid ) @@ -162,6 +161,8 @@ S="${WORKDIR}/${P}/mythtv" DISABLE_AUTOFORMATTING="yes" DOC_CONTENTS=" +Suppport for Python 2.7 has been removed. + If a MYSQL server is installed, a mythtv MySQL user and mythconverg database is created if it does not already exist. You will be prompted for your MySQL root password. @@ -200,9 +201,6 @@ chown -R mythtv /var/lib/mythtv Want mythfrontend to start automatically? Set USE=autostart. Details can be found at: https://dev.gentoo.org/~cardoe/mythtv/autostart.html - -Note that the systemd unit now restarts by default and logs -to journald via the console at the notice verbosity. " pkg_setup() { diff --git a/metadata/Manifest.gz b/metadata/Manifest.gz index cc442fa4b9af..327f45d56455 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 d1952f4ca9fc..1038d196b30e 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Fri, 11 Dec 2020 05:08:28 +0000 +Sat, 12 Dec 2020 08:38:31 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index d1952f4ca9fc..3ea7e3ff6b67 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Fri, 11 Dec 2020 05:08:28 +0000 +Sat, 12 Dec 2020 08:38:32 +0000 diff --git a/metadata/md5-cache/Manifest.gz b/metadata/md5-cache/Manifest.gz index 3ee7e03cc1d8..a6766856f59e 100644 Binary files a/metadata/md5-cache/Manifest.gz and b/metadata/md5-cache/Manifest.gz differ diff --git a/metadata/md5-cache/app-admin/Manifest.gz b/metadata/md5-cache/app-admin/Manifest.gz index b43b1621cd4f..b05e0ae49585 100644 Binary files a/metadata/md5-cache/app-admin/Manifest.gz and b/metadata/md5-cache/app-admin/Manifest.gz differ diff --git a/metadata/md5-cache/app-admin/ansible-lint-4.1.0 b/metadata/md5-cache/app-admin/ansible-lint-4.1.0 index 6bf7c0431ba1..295fdb7a6693 100644 --- a/metadata/md5-cache/app-admin/ansible-lint-4.1.0 +++ b/metadata/md5-cache/app-admin/ansible-lint-4.1.0 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=dev-python/ruamel-yaml[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/setuptools[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/setuptools_scm[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/setuptools_scm_git_archive[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] test? ( dev-python/flake8[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/nose[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/wheel[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) app-admin/ansible[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pyyaml[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] DESCRIPTION=Checks ansible playbooks for practices and behaviour that can be improved EAPI=7 -HOMEPAGE=https://github.com/ansible/ansible-lint +HOMEPAGE=https://github.com/ansible-community/ansible-lint IUSE=test python_targets_python3_6 python_targets_python3_7 KEYWORDS=~amd64 LICENSE=MIT @@ -11,6 +11,6 @@ RDEPEND=app-admin/ansible[python_targets_python3_6(-)?,python_targets_python3_7( REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/ansible/ansible-lint/archive/v4.1.0.tar.gz -> ansible-lint-4.1.0.tar.gz +SRC_URI=https://github.com/ansible-community/ansible-lint/archive/v4.1.0.tar.gz -> ansible-lint-4.1.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=c5a5d6ae97d865e9611ddb47e71ab483 +_md5_=5ddd7769a216c4a5b4cb2ec2af4efe46 diff --git a/metadata/md5-cache/app-editors/Manifest.gz b/metadata/md5-cache/app-editors/Manifest.gz index a1500c767a06..191718416e6c 100644 Binary files a/metadata/md5-cache/app-editors/Manifest.gz and b/metadata/md5-cache/app-editors/Manifest.gz differ diff --git a/metadata/md5-cache/app-editors/bluefish-2.2.12 b/metadata/md5-cache/app-editors/bluefish-2.2.12 new file mode 100644 index 000000000000..df6efba715a3 --- /dev/null +++ b/metadata/md5-cache/app-editors/bluefish-2.2.12 @@ -0,0 +1,16 @@ +BDEPEND=>=dev-libs/glib-2.24:2 dev-libs/libxml2:2 virtual/pkgconfig nls? ( sys-devel/gettext dev-util/intltool ) >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEFINED_PHASES=configure install postinst postrm preinst prepare setup +DEPEND=sys-libs/zlib !gtk3? ( x11-libs/gtk+:2 ) gtk3? ( x11-libs/gtk+:3 gucharmap? ( gnome-extra/gucharmap:2.90 ) ) python? ( python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) spell? ( >=app-text/enchant-1.4:0 ) x11-libs/pango dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=A GTK HTML editor for the experienced web designer or programmer +EAPI=7 +HOMEPAGE=http://bluefish.openoffice.nl/ +IUSE=+gtk3 gucharmap nls python spell python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 +KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=sys-libs/zlib !gtk3? ( x11-libs/gtk+:2 ) gtk3? ( x11-libs/gtk+:3 gucharmap? ( gnome-extra/gucharmap:2.90 ) ) python? ( python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) spell? ( >=app-text/enchant-1.4:0 ) +REQUIRED_USE=python? ( ^^ ( python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) ) +RESTRICT=test +SLOT=0 +SRC_URI=https://www.bennewitz.com/bluefish/stable/source/bluefish-2.2.12.tar.bz2 +_eclasses_=autotools 3ec5e49b810b2571ca9c6d76f55867bb libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=e5e38e4b7f27c2026663c588e242516e diff --git a/metadata/md5-cache/app-emulation/Manifest.gz b/metadata/md5-cache/app-emulation/Manifest.gz index de9c2a58cf06..4f865ca23c13 100644 Binary files a/metadata/md5-cache/app-emulation/Manifest.gz and b/metadata/md5-cache/app-emulation/Manifest.gz differ diff --git a/metadata/md5-cache/app-emulation/qemu-5.2.0 b/metadata/md5-cache/app-emulation/qemu-5.2.0 index aba16edd41d7..43bdf24bd6ad 100644 --- a/metadata/md5-cache/app-emulation/qemu-5.2.0 +++ b/metadata/md5-cache/app-emulation/qemu-5.2.0 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://download.qemu.org/qemu-5.2.0.tar.xz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e fcaps da689a8e04bbbb3518888ff668fee45b l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e pax-utils a41d1fd1c111289ffa04490de6ee79d7 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=2fb45e981a02e3ad6c3f24fc9cab38a0 +_md5_=5e602803304a15c84f219e6ac92c42e6 diff --git a/metadata/md5-cache/app-misc/Manifest.gz b/metadata/md5-cache/app-misc/Manifest.gz index 869a791184aa..02fad52e7e91 100644 Binary files a/metadata/md5-cache/app-misc/Manifest.gz and b/metadata/md5-cache/app-misc/Manifest.gz differ diff --git a/metadata/md5-cache/app-misc/OpenRGB-0.5 b/metadata/md5-cache/app-misc/OpenRGB-0.5 new file mode 100644 index 000000000000..0211fc80b65c --- /dev/null +++ b/metadata/md5-cache/app-misc/OpenRGB-0.5 @@ -0,0 +1,13 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=configure install prepare +DEPEND=dev-libs/hidapi:= dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 virtual/libusb:1 dev-cpp/nlohmann_json +DESCRIPTION=Open source RGB lighting control that doesn't depend on manufacturer software +EAPI=7 +HOMEPAGE=https://gitlab.com/CalcProgrammer1/OpenRGB/ +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=dev-libs/hidapi:= dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 virtual/libusb:1 +SLOT=0 +SRC_URI=https://gitlab.com/CalcProgrammer1/OpenRGB/-/archive/release_0.5/OpenRGB-release_0.5.tar.bz2 +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib d410501a125f99ffb560b0c523cd3d1e qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=e97182581959c93217b2abc1263bbb04 diff --git a/metadata/md5-cache/app-misc/OpenRGB-9999 b/metadata/md5-cache/app-misc/OpenRGB-9999 index 390f0225718c..0eba3abd836b 100644 --- a/metadata/md5-cache/app-misc/OpenRGB-9999 +++ b/metadata/md5-cache/app-misc/OpenRGB-9999 @@ -1,13 +1,12 @@ -BDEPEND=virtual/pkgconfig virtual/pkgconfig >=dev-vcs/git-1.8.2.1[curl] +BDEPEND=virtual/pkgconfig >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=configure install prepare unpack DEPEND=dev-libs/hidapi:= dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 virtual/libusb:1 dev-cpp/nlohmann_json DESCRIPTION=Open source RGB lighting control that doesn't depend on manufacturer software EAPI=7 HOMEPAGE=https://gitlab.com/CalcProgrammer1/OpenRGB/ -IUSE=udev LICENSE=GPL-2 PROPERTIES=live RDEPEND=dev-libs/hidapi:= dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 virtual/libusb:1 SLOT=0 -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 git-r3 3e7ec3d6619213460c85e2aa48398441 multilib d410501a125f99ffb560b0c523cd3d1e qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 -_md5_=cc4a66f62c218d92db9361ffccd21622 +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 git-r3 3e7ec3d6619213460c85e2aa48398441 multilib d410501a125f99ffb560b0c523cd3d1e qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=e97182581959c93217b2abc1263bbb04 diff --git a/metadata/md5-cache/app-misc/lirc-0.10.1-r4 b/metadata/md5-cache/app-misc/lirc-0.10.1-r4 index 6eeec6aeb189..a89a47f4e351 100644 --- a/metadata/md5-cache/app-misc/lirc-0.10.1-r4 +++ b/metadata/md5-cache/app-misc/lirc-0.10.1-r4 @@ -5,11 +5,11 @@ DESCRIPTION=decode and send infra-red signals of many commonly used remote contr EAPI=7 HOMEPAGE=https://www.lirc.org/ IUSE=audio +devinput doc ftdi gtk inputlirc static-libs systemd +uinput usb X kernel_linux python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 -KEYWORDS=amd64 ~arm ~arm64 ~ppc ~ppc64 x86 +KEYWORDS=amd64 ~arm ~arm64 ppc ppc64 x86 LICENSE=GPL-2+ RDEPEND=python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) audio? ( >media-libs/portaudio-18 media-libs/alsa-lib ) python_single_target_python3_6? ( dev-python/pyyaml[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/pyyaml[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/pyyaml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pyyaml[python_targets_python3_9(-)] ) ftdi? ( dev-embedded/libftdi:0 ) systemd? ( sys-apps/systemd ) usb? ( virtual/libusb:0 ) X? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 ) gtk? ( x11-libs/vte[introspection] python_single_target_python3_6? ( dev-python/pygobject[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/pygobject[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/pygobject[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pygobject[python_targets_python3_9(-)] ) ) inputlirc? ( app-misc/inputlircd ) REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) gtk? ( X ) SLOT=0 SRC_URI=mirror://sourceforge/lirc/lirc-0.10.1.tar.bz2 _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib d410501a125f99ffb560b0c523cd3d1e python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=6e1aca8acf75eee804613e436a9bd9d0 +_md5_=c664ddbe5c7163760bb7e10a23fbf2d3 diff --git a/metadata/md5-cache/app-misc/mc-4.8.25 b/metadata/md5-cache/app-misc/mc-4.8.25 index 0e82fc533ef6..34d8383a5f8e 100644 --- a/metadata/md5-cache/app-misc/mc-4.8.25 +++ b/metadata/md5-cache/app-misc/mc-4.8.25 @@ -4,7 +4,7 @@ DESCRIPTION=GNU Midnight Commander is a text based file manager EAPI=7 HOMEPAGE=https://www.midnight-commander.org IUSE=+edit gpm nls samba sftp +slang spell test unicode X +xdg -KEYWORDS=~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris LICENSE=GPL-3 RDEPEND=>=dev-libs/glib-2.26.0:2 gpm? ( sys-libs/gpm ) kernel_linux? ( sys-fs/e2fsprogs ) samba? ( net-fs/samba ) sftp? ( net-libs/libssh2 ) slang? ( >=sys-libs/slang-2 ) !slang? ( sys-libs/ncurses:0=[unicode?] ) spell? ( app-text/aspell ) X? ( x11-libs/libX11 x11-libs/libICE x11-libs/libXau x11-libs/libXdmcp x11-libs/libSM ) REQUIRED_USE=spell? ( edit ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=http://ftp.midnight-commander.org/mc-4.8.25.tar.xz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=85c5c05b2aac063ebc77d9f01ec8b6f6 +_md5_=48d9c2d7d490b75fde24fd6a52e5cbd4 diff --git a/metadata/md5-cache/app-shells/Manifest.gz b/metadata/md5-cache/app-shells/Manifest.gz index 1460d06a3bdb..975d3b4908c8 100644 Binary files a/metadata/md5-cache/app-shells/Manifest.gz and b/metadata/md5-cache/app-shells/Manifest.gz differ diff --git a/metadata/md5-cache/app-shells/mksh-59 b/metadata/md5-cache/app-shells/mksh-59 index 8eb4339f5df5..bd71c2bfaaa8 100644 --- a/metadata/md5-cache/app-shells/mksh-59 +++ b/metadata/md5-cache/app-shells/mksh-59 @@ -4,10 +4,10 @@ DESCRIPTION=MirBSD Korn Shell EAPI=7 HOMEPAGE=http://mirbsd.de/mksh IUSE=lksh static test -KEYWORDS=~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux LICENSE=BSD RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.mirbsd.org/MirOS/dist/mir/mksh/mksh-R59.tgz _eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=21ab86b8725811a6d229402d1c9e5485 +_md5_=a2f0114fc6a9860adfb189808cf416eb diff --git a/metadata/md5-cache/app-text/Manifest.gz b/metadata/md5-cache/app-text/Manifest.gz index 48fcfa1ef71b..66cfd8ad24eb 100644 Binary files a/metadata/md5-cache/app-text/Manifest.gz and b/metadata/md5-cache/app-text/Manifest.gz differ diff --git a/metadata/md5-cache/app-text/libgepub-0.6.0 b/metadata/md5-cache/app-text/libgepub-0.6.0 index 35e2d44da396..76ca4e00dee1 100644 --- a/metadata/md5-cache/app-text/libgepub-0.6.0 +++ b/metadata/md5-cache/app-text/libgepub-0.6.0 @@ -4,10 +4,10 @@ DESCRIPTION=GObject based library for handling and rendering epub documents EAPI=6 HOMEPAGE=https://git.gnome.org/browse/libgepub IUSE=+introspection -KEYWORDS=amd64 ~arm ~arm64 ~ppc64 x86 +KEYWORDS=amd64 ~arm ~arm64 ~ppc64 ~sparc x86 LICENSE=LGPL-2+ RDEPEND=app-arch/libarchive dev-libs/glib:2 dev-libs/libxml2 net-libs/libsoup:2.4 net-libs/webkit-gtk:4 x11-libs/gtk+:3 introspection? ( >=dev-libs/gobject-introspection-1.30:= ) SLOT=0 SRC_URI=mirror://gnome/sources/libgepub/0.6/libgepub-0.6.0.tar.xz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 gnome.org 532d56d07b9eace4831aaa817d2b756a meson 71d293a701d6362387e1214da368c848 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb versionator d3fb3ba33acc3bbbdc4d7970227c100d xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=5e0557d786347cf437f1963067b9c605 +_md5_=9b4ca7f83a0b9f617222ef876cd5c975 diff --git a/metadata/md5-cache/app-text/mandoc-1.14.4 b/metadata/md5-cache/app-text/mandoc-1.14.4 deleted file mode 100644 index 790264773fec..000000000000 --- a/metadata/md5-cache/app-text/mandoc-1.14.4 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=prepare -DEPEND=!static? ( sys-libs/zlib ) static? ( sys-libs/zlib[static-libs(+)] ) -DESCRIPTION=Suite of tools compiling mdoc and man -EAPI=6 -HOMEPAGE=https://mdocml.bsd.lv/ -IUSE=static -KEYWORDS=~amd64 ~x86 -LICENSE=ISC -RDEPEND=!static? ( sys-libs/zlib ) -SLOT=0 -SRC_URI=https://mdocml.bsd.lv/snapshots/mandoc-1.14.4.tar.gz -_eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=f6d26c20751a0c01561ab9acc3047047 diff --git a/metadata/md5-cache/app-text/mandoc-1.14.5-r1 b/metadata/md5-cache/app-text/mandoc-1.14.5-r1 new file mode 100644 index 000000000000..f865a84ebd0d --- /dev/null +++ b/metadata/md5-cache/app-text/mandoc-1.14.5-r1 @@ -0,0 +1,14 @@ +BDEPEND=cgi? ( app-text/highlight ) +DEFINED_PHASES=compile install postinst prepare pretend +DEPEND=sys-libs/zlib system-man? ( !sys-apps/man-db ) cgi? ( sys-libs/zlib[static-libs] ) +DESCRIPTION=Suite of tools compiling mdoc and man +EAPI=7 +HOMEPAGE=https://mdocml.bsd.lv/ +IUSE=cgi system-man +KEYWORDS=~amd64 ~ppc64 ~x86 +LICENSE=ISC +RDEPEND=sys-libs/zlib system-man? ( !sys-apps/man-db ) +SLOT=0 +SRC_URI=https://mdocml.bsd.lv/snapshots/mandoc-1.14.5.tar.gz +_eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=62564f419af227e34d6907db6811218a diff --git a/metadata/md5-cache/app-text/poppler-20.12.1 b/metadata/md5-cache/app-text/poppler-20.12.1 new file mode 100644 index 000000000000..628a410a5c47 --- /dev/null +++ b/metadata/md5-cache/app-text/poppler-20.12.1 @@ -0,0 +1,15 @@ +BDEPEND=dev-util/glib-utils virtual/pkgconfig dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install prepare test +DEPEND=media-libs/fontconfig media-libs/freetype sys-libs/zlib cairo? ( dev-libs/glib:2 x11-libs/cairo introspection? ( dev-libs/gobject-introspection:= ) ) curl? ( net-misc/curl ) jpeg? ( virtual/jpeg:0 ) jpeg2k? ( >=media-libs/openjpeg-2.3.0-r1:2= ) lcms? ( media-libs/lcms:2 ) nss? ( >=dev-libs/nss-3.19:0 ) png? ( media-libs/libpng:0= ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtxml:5 ) tiff? ( media-libs/tiff:0 ) +DESCRIPTION=PDF rendering library based on the xpdf-3.0 code base +EAPI=7 +HOMEPAGE=https://poppler.freedesktop.org/ +IUSE=cairo cjk curl +cxx debug doc +introspection +jpeg +jpeg2k +lcms nss png qt5 tiff +utils +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=GPL-2 +RDEPEND=media-libs/fontconfig media-libs/freetype sys-libs/zlib cairo? ( dev-libs/glib:2 x11-libs/cairo introspection? ( dev-libs/gobject-introspection:= ) ) curl? ( net-misc/curl ) jpeg? ( virtual/jpeg:0 ) jpeg2k? ( >=media-libs/openjpeg-2.3.0-r1:2= ) lcms? ( media-libs/lcms:2 ) nss? ( >=dev-libs/nss-3.19:0 ) png? ( media-libs/libpng:0= ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtxml:5 ) tiff? ( media-libs/tiff:0 ) cjk? ( app-text/poppler-data ) +RESTRICT=test +SLOT=0/105 +SRC_URI=https://poppler.freedesktop.org/poppler-20.12.1.tar.xz +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=857b1b4cb2d335a45620e093ce78f94c diff --git a/metadata/md5-cache/dev-cpp/Manifest.gz b/metadata/md5-cache/dev-cpp/Manifest.gz index b7d0e8acca62..ffb78cdf8a62 100644 Binary files a/metadata/md5-cache/dev-cpp/Manifest.gz and b/metadata/md5-cache/dev-cpp/Manifest.gz differ diff --git a/metadata/md5-cache/dev-cpp/nlohmann_json-3.9.1 b/metadata/md5-cache/dev-cpp/nlohmann_json-3.9.1 index 02ca6034a99d..73b083fe1610 100644 --- a/metadata/md5-cache/dev-cpp/nlohmann_json-3.9.1 +++ b/metadata/md5-cache/dev-cpp/nlohmann_json-3.9.1 @@ -5,10 +5,10 @@ DESCRIPTION=JSON for Modern C++ EAPI=7 HOMEPAGE=https://github.com/nlohmann/json https://nlohmann.github.io/json/ IUSE=doc test -KEYWORDS=~amd64 ~arm64 ~ppc ~ppc64 x86 +KEYWORDS=~amd64 ~arm64 ppc ppc64 x86 LICENSE=MIT RESTRICT=test SLOT=0 SRC_URI=https://github.com/nlohmann/json/archive/v3.9.1.tar.gz -> nlohmann_json-3.9.1.tar.gz test? ( https://github.com/nlohmann/json_test_data/archive/v3.0.0.tar.gz -> nlohmann_json-3.9.1-testdata.tar.gz ) _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=7895288369fdfef33965d6626f982d31 +_md5_=72ca6091188061941db0255ebee7e73b diff --git a/metadata/md5-cache/dev-embedded/Manifest.gz b/metadata/md5-cache/dev-embedded/Manifest.gz index 86faf52388c2..4837e6baf202 100644 Binary files a/metadata/md5-cache/dev-embedded/Manifest.gz and b/metadata/md5-cache/dev-embedded/Manifest.gz differ diff --git a/metadata/md5-cache/dev-embedded/esptool-3.0 b/metadata/md5-cache/dev-embedded/esptool-3.0 index 08751edb5913..93b3e9da8365 100644 --- a/metadata/md5-cache/dev-embedded/esptool-3.0 +++ b/metadata/md5-cache/dev-embedded/esptool-3.0 @@ -4,7 +4,7 @@ DESCRIPTION=Utility to communicate with the ROM bootloader in Espressif ESP8266 EAPI=7 HOMEPAGE=https://github.com/espressif/esptool IUSE=test python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 LICENSE=GPL-2+ RDEPEND=python_single_target_python3_6? ( dev-python/bitstring[python_targets_python3_6(-)] dev-python/cryptography[python_targets_python3_6(-)] >=dev-python/ecdsa-0.16.0[python_targets_python3_6(-)] dev-python/pyserial[python_targets_python3_6(-)] dev-python/reedsolomon[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/bitstring[python_targets_python3_7(-)] dev-python/cryptography[python_targets_python3_7(-)] >=dev-python/ecdsa-0.16.0[python_targets_python3_7(-)] dev-python/pyserial[python_targets_python3_7(-)] dev-python/reedsolomon[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/bitstring[python_targets_python3_8(-)] dev-python/cryptography[python_targets_python3_8(-)] >=dev-python/ecdsa-0.16.0[python_targets_python3_8(-)] dev-python/pyserial[python_targets_python3_8(-)] dev-python/reedsolomon[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/bitstring[python_targets_python3_9(-)] dev-python/cryptography[python_targets_python3_9(-)] >=dev-python/ecdsa-0.16.0[python_targets_python3_9(-)] dev-python/pyserial[python_targets_python3_9(-)] dev-python/reedsolomon[python_targets_python3_9(-)] ) python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/espressif/esptool/archive/v3.0.tar.gz -> esptool-3.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=51988cbc7ffb566978519094f99ada36 +_md5_=765393463ad3881c842a8411a71f1eb3 diff --git a/metadata/md5-cache/dev-lang/Manifest.gz b/metadata/md5-cache/dev-lang/Manifest.gz index de12d54e2e55..e87b3a9486a4 100644 Binary files a/metadata/md5-cache/dev-lang/Manifest.gz and b/metadata/md5-cache/dev-lang/Manifest.gz differ diff --git a/metadata/md5-cache/dev-lang/php-7.3.25 b/metadata/md5-cache/dev-lang/php-7.3.25 index 502e4c953f63..ca00844e126d 100644 --- a/metadata/md5-cache/dev-lang/php-7.3.25 +++ b/metadata/md5-cache/dev-lang/php-7.3.25 @@ -5,7 +5,7 @@ DESCRIPTION=The PHP language runtime engine EAPI=7 HOMEPAGE=https://www.php.net/ IUSE=embed +cli cgi fpm apache2 phpdbg threads acl argon2 bcmath berkdb bzip2 calendar cdb cjk coverage +ctype curl debug enchant exif +fileinfo +filter firebird +flatfile ftp gd gdbm gmp +hash +iconv imap inifile intl iodbc ipv6 +json kerberos ldap ldap-sasl libedit libressl lmdb mhash mssql mysql mysqli nls oci8-instant-client odbc +opcache pcntl pdo +phar +posix postgres qdbm readline recode selinux +session session-mm sharedmem +simplexml snmp soap sockets sodium spell sqlite ssl sysvipc systemd test tidy +tokenizer tokyocabinet truetype unicode wddx webp +xml xmlreader xmlwriter xmlrpc xpm xslt zip zip-encryption zlib -KEYWORDS=~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos +KEYWORDS=~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos LICENSE=PHP-3.01 BSD Zend-2.0 bcmath? ( LGPL-2.1+ ) fpm? ( BSD-2 ) gd? ( gd ) unicode? ( BSD-2 LGPL-2.1 ) RDEPEND=>=app-eselect/eselect-php-0.9.1[apache2?,fpm?] >=dev-libs/libpcre2-10.30[unicode] fpm? ( acl? ( sys-apps/acl ) ) apache2? ( www-servers/apache[apache2_modules_unixd(+),threads=] ) argon2? ( app-crypt/argon2:= ) berkdb? ( || ( sys-libs/db:5.3 sys-libs/db:5.1 sys-libs/db:4.8 sys-libs/db:4.7 sys-libs/db:4.6 sys-libs/db:4.5 ) ) bzip2? ( app-arch/bzip2:0= ) cdb? ( || ( dev-db/cdb dev-db/tinycdb ) ) coverage? ( dev-util/lcov ) curl? ( >=net-misc/curl-7.10.5 ) enchant? ( =virtual/jpeg-0-r3:0 media-libs/libpng:0= >=sys-libs/zlib-1.2.0.4 ) gdbm? ( >=sys-libs/gdbm-1.8.0:0= ) gmp? ( dev-libs/gmp:0= ) iconv? ( virtual/libiconv ) imap? ( >=virtual/imap-c-client-2[kerberos=,ssl=] ) intl? ( dev-libs/icu:= ) iodbc? ( dev-db/libiodbc ) kerberos? ( virtual/krb5 ) ldap? ( >=net-nds/openldap-1.2.11 ) ldap-sasl? ( dev-libs/cyrus-sasl >=net-nds/openldap-1.2.11 ) libedit? ( dev-libs/libedit ) lmdb? ( dev-db/lmdb:= ) mssql? ( dev-db/freetds[mssql] ) nls? ( sys-devel/gettext ) oci8-instant-client? ( dev-db/oracle-instantclient-basic ) odbc? ( >=dev-db/unixODBC-1.8.13 ) postgres? ( dev-db/postgresql:* ) qdbm? ( dev-db/qdbm ) readline? ( sys-libs/readline:0= ) recode? ( app-text/recode ) session-mm? ( dev-libs/mm ) simplexml? ( >=dev-libs/libxml2-2.6.8 ) snmp? ( >=net-analyzer/net-snmp-5.2 ) soap? ( >=dev-libs/libxml2-2.6.8 ) sodium? ( dev-libs/libsodium:= ) spell? ( >=app-text/aspell-0.50 ) sqlite? ( >=dev-db/sqlite-3.7.6.3 ) ssl? ( !libressl? ( >=dev-libs/openssl-1.0.1:0= ) libressl? ( dev-libs/libressl:0= ) ) tidy? ( || ( app-text/tidy-html5 app-text/htmltidy ) ) tokyocabinet? ( dev-db/tokyocabinet ) truetype? ( =media-libs/freetype-2* ) unicode? ( dev-libs/oniguruma:= ) wddx? ( >=dev-libs/libxml2-2.6.8 ) webp? ( media-libs/libwebp:0= ) xml? ( >=dev-libs/libxml2-2.6.8 ) xmlrpc? ( >=dev-libs/libxml2-2.6.8 virtual/libiconv ) xmlreader? ( >=dev-libs/libxml2-2.6.8 ) xmlwriter? ( >=dev-libs/libxml2-2.6.8 ) xpm? ( x11-libs/libXpm ) xslt? ( dev-libs/libxslt >=dev-libs/libxml2-2.6.8 ) zip? ( >=sys-libs/zlib-1.2.0.4:0= ) zip-encryption? ( >=dev-libs/libzip-1.2.0:= ) zlib? ( >=sys-libs/zlib-1.2.0.4:0= ) virtual/mta fpm? ( selinux? ( sec-policy/selinux-phpfpm ) systemd? ( sys-apps/systemd ) ) REQUIRED_USE=|| ( cli cgi fpm apache2 embed phpdbg ) cli? ( ^^ ( readline libedit ) ) truetype? ( gd zlib ) webp? ( gd zlib ) cjk? ( gd zlib ) exif? ( gd zlib ) xpm? ( gd zlib ) gd? ( zlib ) simplexml? ( xml ) soap? ( xml ) wddx? ( xml ) xmlrpc? ( || ( xml iconv ) ) xmlreader? ( xml ) xslt? ( xml ) ldap-sasl? ( ldap ) mhash? ( hash ) phar? ( hash ) qdbm? ( !gdbm ) readline? ( !libedit ) recode? ( !imap !mysqli !mysql ) session-mm? ( session !threads ) mysql? ( || ( mysqli pdo ) ) zip-encryption? ( zip ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=7.3 SRC_URI=https://www.php.net/distributions/php-7.3.25.tar.xz _eclasses_=autotools 3ec5e49b810b2571ca9c6d76f55867bb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=f32261b4a68efa75948dbb867ac5669f +_md5_=d721a0cdbd876077215b1abc5df02db7 diff --git a/metadata/md5-cache/dev-lang/php-7.4.13 b/metadata/md5-cache/dev-lang/php-7.4.13 index 9b3339727efb..e9db00be87b0 100644 --- a/metadata/md5-cache/dev-lang/php-7.4.13 +++ b/metadata/md5-cache/dev-lang/php-7.4.13 @@ -5,7 +5,7 @@ DESCRIPTION=The PHP language runtime engine EAPI=7 HOMEPAGE=https://www.php.net/ IUSE=embed +cli cgi fpm apache2 phpdbg threads acl argon2 bcmath berkdb bzip2 calendar cdb cjk coverage +ctype curl debug enchant exif ffi +fileinfo +filter firebird +flatfile ftp gd gdbm gmp +iconv imap inifile intl iodbc ipv6 +json kerberos ldap ldap-sasl libedit libressl lmdb mhash mssql mysql mysqli nls oci8-instant-client odbc +opcache pcntl pdo +phar +posix postgres qdbm readline selinux +session session-mm sharedmem +simplexml snmp soap sockets sodium spell sqlite ssl sysvipc systemd test tidy +tokenizer tokyocabinet truetype unicode webp +xml xmlreader xmlwriter xmlrpc xpm xslt zip zlib -KEYWORDS=~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos +KEYWORDS=~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos LICENSE=PHP-3.01 BSD Zend-2.0 bcmath? ( LGPL-2.1+ ) fpm? ( BSD-2 ) gd? ( gd ) unicode? ( BSD-2 LGPL-2.1 ) RDEPEND=>=app-eselect/eselect-php-0.9.1[apache2?,fpm?] >=dev-libs/libpcre2-10.30[unicode] fpm? ( acl? ( sys-apps/acl ) ) apache2? ( www-servers/apache[apache2_modules_unixd(+),threads=] ) argon2? ( app-crypt/argon2:= ) berkdb? ( || ( sys-libs/db:5.3 sys-libs/db:5.1 sys-libs/db:4.8 sys-libs/db:4.7 sys-libs/db:4.6 sys-libs/db:4.5 ) ) bzip2? ( app-arch/bzip2:0= ) cdb? ( || ( dev-db/cdb dev-db/tinycdb ) ) coverage? ( dev-util/lcov ) curl? ( >=net-misc/curl-7.10.5 ) enchant? ( =dev-libs/libffi-3.0.11 ) firebird? ( dev-db/firebird ) gd? ( >=virtual/jpeg-0-r3:0 media-libs/libpng:0= ) gdbm? ( >=sys-libs/gdbm-1.8.0:0= ) gmp? ( dev-libs/gmp:0= ) iconv? ( virtual/libiconv ) imap? ( >=virtual/imap-c-client-2[kerberos=,ssl=] ) intl? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( >=net-nds/openldap-1.2.11 ) ldap-sasl? ( dev-libs/cyrus-sasl ) libedit? ( dev-libs/libedit ) lmdb? ( dev-db/lmdb:= ) mssql? ( dev-db/freetds[mssql] ) nls? ( sys-devel/gettext ) oci8-instant-client? ( dev-db/oracle-instantclient-basic ) odbc? ( iodbc? ( dev-db/libiodbc ) !iodbc? ( >=dev-db/unixODBC-1.8.13 ) ) postgres? ( dev-db/postgresql:* ) qdbm? ( dev-db/qdbm ) readline? ( sys-libs/readline:0= ) session-mm? ( dev-libs/mm ) snmp? ( >=net-analyzer/net-snmp-5.2 ) sodium? ( dev-libs/libsodium:= ) spell? ( >=app-text/aspell-0.50 ) sqlite? ( >=dev-db/sqlite-3.7.6.3 ) ssl? ( !libressl? ( >=dev-libs/openssl-1.0.1:0= ) libressl? ( dev-libs/libressl:0= ) ) tidy? ( || ( app-text/tidy-html5 app-text/htmltidy ) ) tokyocabinet? ( dev-db/tokyocabinet ) truetype? ( =media-libs/freetype-2* ) unicode? ( dev-libs/oniguruma:= ) webp? ( media-libs/libwebp:0= ) xml? ( >=dev-libs/libxml2-2.7.6 ) xpm? ( x11-libs/libXpm ) xslt? ( dev-libs/libxslt ) zip? ( >=dev-libs/libzip-1.2.0:= ) zlib? ( >=sys-libs/zlib-1.2.0.4:0= ) virtual/mta fpm? ( selinux? ( sec-policy/selinux-phpfpm ) systemd? ( sys-apps/systemd ) ) REQUIRED_USE=|| ( cli cgi fpm apache2 embed phpdbg ) cli? ( ^^ ( readline libedit ) ) !cli? ( ?? ( readline libedit ) ) truetype? ( gd zlib ) webp? ( gd zlib ) cjk? ( gd zlib ) exif? ( gd zlib ) xpm? ( gd zlib ) gd? ( zlib ) simplexml? ( xml ) soap? ( xml ) xmlrpc? ( xml iconv ) xmlreader? ( xml ) xmlwriter? ( xml ) xslt? ( xml ) ldap-sasl? ( ldap ) qdbm? ( !gdbm ) session-mm? ( session !threads ) mysql? ( || ( mysqli pdo ) ) firebird? ( pdo ) mssql? ( pdo ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=7.4 SRC_URI=https://www.php.net/distributions/php-7.4.13.tar.xz _eclasses_=autotools 3ec5e49b810b2571ca9c6d76f55867bb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=92ac48a49271990eb6c62800d24ae48d +_md5_=df625844e280b1eb7150402e863da51f diff --git a/metadata/md5-cache/dev-lang/python-exec-2.4.6-r2 b/metadata/md5-cache/dev-lang/python-exec-2.4.6-r2 index 9464707a416c..f18521d5808f 100644 --- a/metadata/md5-cache/dev-lang/python-exec-2.4.6-r2 +++ b/metadata/md5-cache/dev-lang/python-exec-2.4.6-r2 @@ -9,4 +9,4 @@ RDEPEND=!<=dev-lang/python-2.7.18-r3:2.7 SLOT=2 SRC_URI=https://github.com/mgorny/python-exec/releases/download/v2.4.6/python-exec-2.4.6.tar.bz2 _eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=2c5bb4b3deb35684b965f9f83e2486c2 +_md5_=645a4ddbc8510388abb7d48b126d5343 diff --git a/metadata/md5-cache/dev-lang/python-exec-2.4.6-r3 b/metadata/md5-cache/dev-lang/python-exec-2.4.6-r3 index 7c86fc7ea1d9..c5c869ca4ca8 100644 --- a/metadata/md5-cache/dev-lang/python-exec-2.4.6-r3 +++ b/metadata/md5-cache/dev-lang/python-exec-2.4.6-r3 @@ -9,4 +9,4 @@ RDEPEND=!<=dev-lang/python-2.7.18-r3:2.7 SLOT=2 SRC_URI=https://github.com/mgorny/python-exec/releases/download/v2.4.6/python-exec-2.4.6.tar.bz2 _eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=6ab8016f90754398f5dea001bf9b3638 +_md5_=49a06385d1adfebc778bc9761d2ac40e diff --git a/metadata/md5-cache/dev-lang/swi-prolog-8.2.2 b/metadata/md5-cache/dev-lang/swi-prolog-8.2.2 new file mode 100644 index 000000000000..1c4e638e9268 --- /dev/null +++ b/metadata/md5-cache/dev-lang/swi-prolog-8.2.2 @@ -0,0 +1,15 @@ +BDEPEND=dev-util/ninja >=dev-util/cmake-3.9.6 +DEFINED_PHASES=compile configure install prepare test +DEPEND=sys-libs/ncurses:= sys-libs/zlib archive? ( app-arch/libarchive ) berkdb? ( >=sys-libs/db-4:= ) odbc? ( dev-db/unixODBC ) pcre? ( dev-libs/libpcre ) readline? ( sys-libs/readline:= ) libedit? ( dev-libs/libedit ) gmp? ( dev-libs/gmp:0 ) ssl? ( !libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) ) java? ( >=virtual/jdk-1.7:= ) uuid? ( dev-libs/ossp-uuid ) qt5? ( dev-qt/qtwidgets:5 dev-qt/qtgui:5 ) X? ( virtual/jpeg:0 x11-libs/libX11 x11-libs/libXft x11-libs/libXinerama x11-libs/libXpm x11-libs/libXt x11-libs/libICE x11-libs/libSM ) yaml? ( dev-libs/libyaml ) X? ( x11-base/xorg-proto ) java? ( test? ( =dev-java/junit-3.8* ) ) +DESCRIPTION=versatile implementation of the Prolog programming language +EAPI=7 +HOMEPAGE=https://www.swi-prolog.org/ +IUSE=archive berkdb debug doc +gmp java +libedit libressl minimal odbc pcre qt5 readline ssl test uuid X yaml +KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos +LICENSE=BSD-2 +RDEPEND=sys-libs/ncurses:= sys-libs/zlib archive? ( app-arch/libarchive ) berkdb? ( >=sys-libs/db-4:= ) odbc? ( dev-db/unixODBC ) pcre? ( dev-libs/libpcre ) readline? ( sys-libs/readline:= ) libedit? ( dev-libs/libedit ) gmp? ( dev-libs/gmp:0 ) ssl? ( !libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) ) java? ( >=virtual/jdk-1.7:= ) uuid? ( dev-libs/ossp-uuid ) qt5? ( dev-qt/qtwidgets:5 dev-qt/qtgui:5 ) X? ( virtual/jpeg:0 x11-libs/libX11 x11-libs/libXft x11-libs/libXinerama x11-libs/libXpm x11-libs/libXt x11-libs/libICE x11-libs/libSM ) yaml? ( dev-libs/libyaml ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://www.swi-prolog.org/download/stable/src/swipl-8.2.2.tar.gz +_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=72e3ddd3ae7a27847cb41388021c6320 diff --git a/metadata/md5-cache/dev-lang/swi-prolog-8.3.10 b/metadata/md5-cache/dev-lang/swi-prolog-8.3.10 new file mode 100644 index 000000000000..88e2a48d3c73 --- /dev/null +++ b/metadata/md5-cache/dev-lang/swi-prolog-8.3.10 @@ -0,0 +1,15 @@ +BDEPEND=dev-util/ninja >=dev-util/cmake-3.9.6 +DEFINED_PHASES=compile configure install prepare test +DEPEND=sys-libs/ncurses:= sys-libs/zlib archive? ( app-arch/libarchive ) berkdb? ( >=sys-libs/db-4:= ) odbc? ( dev-db/unixODBC ) pcre? ( dev-libs/libpcre ) readline? ( sys-libs/readline:= ) libedit? ( dev-libs/libedit ) gmp? ( dev-libs/gmp:0 ) ssl? ( !libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) ) java? ( >=virtual/jdk-1.7:= ) uuid? ( dev-libs/ossp-uuid ) qt5? ( dev-qt/qtwidgets:5 dev-qt/qtgui:5 ) X? ( virtual/jpeg:0 x11-libs/libX11 x11-libs/libXft x11-libs/libXinerama x11-libs/libXpm x11-libs/libXt x11-libs/libICE x11-libs/libSM ) yaml? ( dev-libs/libyaml ) X? ( x11-base/xorg-proto ) java? ( test? ( =dev-java/junit-3.8* ) ) +DESCRIPTION=versatile implementation of the Prolog programming language +EAPI=7 +HOMEPAGE=http://www.swi-prolog.org/ +IUSE=archive berkdb debug doc +gmp java +libedit libressl minimal odbc pcre qt5 readline ssl test uuid X yaml +KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos +LICENSE=BSD-2 +RDEPEND=sys-libs/ncurses:= sys-libs/zlib archive? ( app-arch/libarchive ) berkdb? ( >=sys-libs/db-4:= ) odbc? ( dev-db/unixODBC ) pcre? ( dev-libs/libpcre ) readline? ( sys-libs/readline:= ) libedit? ( dev-libs/libedit ) gmp? ( dev-libs/gmp:0 ) ssl? ( !libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) ) java? ( >=virtual/jdk-1.7:= ) uuid? ( dev-libs/ossp-uuid ) qt5? ( dev-qt/qtwidgets:5 dev-qt/qtgui:5 ) X? ( virtual/jpeg:0 x11-libs/libX11 x11-libs/libXft x11-libs/libXinerama x11-libs/libXpm x11-libs/libXt x11-libs/libICE x11-libs/libSM ) yaml? ( dev-libs/libyaml ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=http://www.swi-prolog.org/download/devel/src/swipl-8.3.10.tar.gz +_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=5e37cd8c1a0c40e7e383ec79e32c2329 diff --git a/metadata/md5-cache/dev-libs/Manifest.gz b/metadata/md5-cache/dev-libs/Manifest.gz index f251f35d55ae..2a7ce269aa8c 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/elfutils-0.182 b/metadata/md5-cache/dev-libs/elfutils-0.182 index 12f795bb715f..2ae34db80d14 100644 --- a/metadata/md5-cache/dev-libs/elfutils-0.182 +++ b/metadata/md5-cache/dev-libs/elfutils-0.182 @@ -5,11 +5,11 @@ DESCRIPTION=Libraries/utilities to handle ELF objects (drop in replacement for l EAPI=7 HOMEPAGE=http://elfutils.org/ IUSE=bzip2 lzma nls static-libs test +threads +utils valgrind zstd abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux LICENSE=|| ( GPL-2+ LGPL-3+ ) utils? ( GPL-3+ ) RDEPEND=>=sys-libs/zlib-1.2.8-r1[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] bzip2? ( >=app-arch/bzip2-1.0.6-r4[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) lzma? ( >=app-arch/xz-utils-5.0.5-r1[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) zstd? ( app-arch/zstd:=[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !dev-libs/libelf RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://sourceware.org/elfutils/ftp/0.182/elfutils-0.182.tar.bz2 _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=53561b7664bf87aa21a8c2b9de044e0f +_md5_=7c03de146d85894028efbac6d972c217 diff --git a/metadata/md5-cache/dev-libs/inih-52 b/metadata/md5-cache/dev-libs/inih-52 new file mode 100644 index 000000000000..5ac02eb368fd --- /dev/null +++ b/metadata/md5-cache/dev-libs/inih-52 @@ -0,0 +1,12 @@ +BDEPEND=>=dev-util/meson-0.54.0 >=dev-util/ninja-1.8.2 +DEFINED_PHASES=compile configure install test +DESCRIPTION=inih (INI not invented here) simple .INI file parser +EAPI=7 +HOMEPAGE=https://github.com/benhoyt/inih +IUSE=abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=BSD +SLOT=0 +SRC_URI=https://github.com/benhoyt/inih/archive/r52.tar.gz -> inih-52.tar.gz +_eclasses_=meson 71d293a701d6362387e1214da368c848 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=5f9cdb7785d39149a7d368c24ff8d0e4 diff --git a/metadata/md5-cache/dev-libs/libressl-3.1.5 b/metadata/md5-cache/dev-libs/libressl-3.1.5 index d7a9e3a7be6d..b96926c35f63 100644 --- a/metadata/md5-cache/dev-libs/libressl-3.1.5 +++ b/metadata/md5-cache/dev-libs/libressl-3.1.5 @@ -5,7 +5,7 @@ DESCRIPTION=Free version of the SSL/TLS protocol forked from OpenSSL EAPI=7 HOMEPAGE=https://www.libressl.org/ IUSE=+asm static-libs test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=ISC openssl PDEPEND=app-misc/ca-certificates RDEPEND=!dev-libs/openssl:0 @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0/48 SRC_URI=https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.1.5.tar.gz _eclasses_=libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=87420a8e985d9389b93df897ae203f49 +_md5_=57d51984d09b6c628a0b8702f59500ff diff --git a/metadata/md5-cache/dev-libs/libusb-1.0.19-r1 b/metadata/md5-cache/dev-libs/libusb-1.0.19-r1 deleted file mode 100644 index 7cdd57822245..000000000000 --- a/metadata/md5-cache/dev-libs/libusb-1.0.19-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install test -DEPEND=udev? ( >=virtual/libudev-208:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,static-libs(-)?] ) doc? ( app-doc/doxygen ) !udev? ( virtual/os-headers ) -DESCRIPTION=Userspace access to USB devices -EAPI=6 -HOMEPAGE=https://libusb.info/ https://github.com/libusb/libusb -IUSE=debug doc examples static-libs test udev abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 split-usr -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos -LICENSE=LGPL-2.1 -RDEPEND=udev? ( >=virtual/libudev-208:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,static-libs(-)?] ) -RESTRICT=!test? ( test ) -SLOT=1 -SRC_URI=mirror://sourceforge/libusb/libusb-1.0.19.tar.bz2 -_eclasses_=multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb usr-ldscript 7c918d239d0f9098867d0c8e33348fc9 -_md5_=e8c8ab84d9437f7898fbc8a2f2fb90cd diff --git a/metadata/md5-cache/dev-libs/libusb-1.0.22 b/metadata/md5-cache/dev-libs/libusb-1.0.22 deleted file mode 100644 index 30c76a40d075..000000000000 --- a/metadata/md5-cache/dev-libs/libusb-1.0.22 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install test -DEPEND=udev? ( >=virtual/libudev-208:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,static-libs(-)?] ) doc? ( app-doc/doxygen ) !udev? ( virtual/os-headers ) -DESCRIPTION=Userspace access to USB devices -EAPI=6 -HOMEPAGE=https://libusb.info/ https://github.com/libusb/libusb -IUSE=debug doc examples static-libs test udev abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 split-usr -KEYWORDS=~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos -LICENSE=LGPL-2.1 -RDEPEND=udev? ( >=virtual/libudev-208:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,static-libs(-)?] ) -RESTRICT=!test? ( test ) -SLOT=1 -SRC_URI=https://github.com/libusb/libusb/releases/download/v1.0.22/libusb-1.0.22.tar.bz2 -_eclasses_=ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb usr-ldscript 7c918d239d0f9098867d0c8e33348fc9 -_md5_=89c6f4534f3c91895122564e0ff5cf02 diff --git a/metadata/md5-cache/dev-libs/libusb-1.0.23-r1 b/metadata/md5-cache/dev-libs/libusb-1.0.23-r1 index 667fe4138b6e..10780dfd7103 100644 --- a/metadata/md5-cache/dev-libs/libusb-1.0.23-r1 +++ b/metadata/md5-cache/dev-libs/libusb-1.0.23-r1 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=1 SRC_URI=https://github.com/libusb/libusb/releases/download/v1.0.23/libusb-1.0.23.tar.bz2 _eclasses_=multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb usr-ldscript 7c918d239d0f9098867d0c8e33348fc9 -_md5_=b87ffb0a05afb7aa965027846f9eff0d +_md5_=d84787e5f647220dfd088fb7a751e568 diff --git a/metadata/md5-cache/dev-libs/libusb-1.0.21-r1 b/metadata/md5-cache/dev-libs/libusb-1.0.24 similarity index 74% rename from metadata/md5-cache/dev-libs/libusb-1.0.21-r1 rename to metadata/md5-cache/dev-libs/libusb-1.0.24 index 8d7c75dab4bf..93283e296d42 100644 --- a/metadata/md5-cache/dev-libs/libusb-1.0.21-r1 +++ b/metadata/md5-cache/dev-libs/libusb-1.0.24 @@ -1,14 +1,15 @@ +BDEPEND=doc? ( app-doc/doxygen ) DEFINED_PHASES=compile configure install test -DEPEND=udev? ( >=virtual/libudev-208:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,static-libs(-)?] ) doc? ( app-doc/doxygen ) !udev? ( virtual/os-headers ) +DEPEND=udev? ( >=virtual/libudev-208:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,static-libs(-)?] ) !udev? ( virtual/os-headers ) DESCRIPTION=Userspace access to USB devices -EAPI=6 +EAPI=7 HOMEPAGE=https://libusb.info/ https://github.com/libusb/libusb IUSE=debug doc examples static-libs test udev abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 split-usr -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos LICENSE=LGPL-2.1 RDEPEND=udev? ( >=virtual/libudev-208:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?,static-libs(-)?] ) RESTRICT=!test? ( test ) SLOT=1 -SRC_URI=https://github.com/libusb/libusb/releases/download/v1.0.21/libusb-1.0.21.tar.bz2 +SRC_URI=https://github.com/libusb/libusb/releases/download/v1.0.24/libusb-1.0.24.tar.bz2 _eclasses_=multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb usr-ldscript 7c918d239d0f9098867d0c8e33348fc9 -_md5_=fdc9540d36fa40c8b22e79f29eadcfa0 +_md5_=83f7303726bdb642113052a12c1c4aee diff --git a/metadata/md5-cache/dev-libs/openssl-1.1.1i b/metadata/md5-cache/dev-libs/openssl-1.1.1i index 2a942c49fe03..83722f7a724d 100644 --- a/metadata/md5-cache/dev-libs/openssl-1.1.1i +++ b/metadata/md5-cache/dev-libs/openssl-1.1.1i @@ -5,7 +5,7 @@ DESCRIPTION=full-strength general purpose cryptography library (including SSL an EAPI=7 HOMEPAGE=https://www.openssl.org/ IUSE=+asm bindist elibc_musl rfc3779 sctp cpu_flags_x86_sse2 sslv3 static-libs test tls-heartbeat vanilla zlib abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 ~x86-linux +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x86-linux LICENSE=openssl PDEPEND=app-misc/ca-certificates RDEPEND=>=app-misc/c_rehash-1.7-r1 zlib? ( >=sys-libs/zlib-1.2.8-r1[static-libs(+)?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !=media-libs/libsdl-1.2.6 ) SLOT=0/13 SRC_URI=https://github.com/gdraheim/zziplib/archive/3921fc43bca7283f126bfb2e47ec7e7e24b5a5ea.tar.gz -> zziplib-0.13.71_p20201021.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=beae718611ba5c11a97dee89b8477ad9 +_md5_=4dfd2de5d71d036c03ab514ac8115332 diff --git a/metadata/md5-cache/dev-perl/Alien-Base-ModuleBuild-1.140.0 b/metadata/md5-cache/dev-perl/Alien-Base-ModuleBuild-1.140.0 deleted file mode 100644 index b8e235ee3efa..000000000000 --- a/metadata/md5-cache/dev-perl/Alien-Base-ModuleBuild-1.140.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=dev-perl/Alien-Build-1.200.0 dev-perl/Archive-Extract >=virtual/perl-Archive-Tar-1.400.0 >=dev-perl/Capture-Tiny-0.170.0 >=dev-perl/File-chdir-0.100.500 >=virtual/perl-HTTP-Tiny-0.44.0 >=dev-perl/Module-Build-0.400.400 >=dev-perl/Path-Tiny-0.77.0 >=virtual/perl-Scalar-List-Utils-1.450.0 dev-perl/Shell-Config-Generate dev-perl/Shell-Guess dev-perl/Sort-Versions >=virtual/perl-Text-ParseWords-3.260.0 dev-perl/URI virtual/perl-parent dev-perl/HTML-Parser virtual/perl-JSON-PP test? ( >=dev-perl/Test2-Suite-0.0.60 ) dev-lang/perl -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-perl/Module-Build dev-lang/perl -DESCRIPTION=A Module::Build subclass for building Alien:: modules and their libraries -EAPI=7 -HOMEPAGE=https://metacpan.org/release/Alien-Base-ModuleBuild -IUSE=test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=>=dev-perl/Alien-Build-1.200.0 dev-perl/Archive-Extract >=virtual/perl-Archive-Tar-1.400.0 >=dev-perl/Capture-Tiny-0.170.0 >=dev-perl/File-chdir-0.100.500 >=virtual/perl-HTTP-Tiny-0.44.0 >=dev-perl/Module-Build-0.400.400 >=dev-perl/Path-Tiny-0.77.0 >=virtual/perl-Scalar-List-Utils-1.450.0 dev-perl/Shell-Config-Generate dev-perl/Shell-Guess dev-perl/Sort-Versions >=virtual/perl-Text-ParseWords-3.260.0 dev-perl/URI virtual/perl-parent dev-perl/HTML-Parser virtual/perl-JSON-PP dev-lang/perl:= -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://cpan/authors/id/P/PL/PLICEASE/Alien-Base-ModuleBuild-1.14.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b perl-module 97206c028d9bdc9f248e022ac5c9fc83 -_md5_=ca74fd52c8b69eca7549321d08997ab6 diff --git a/metadata/md5-cache/dev-perl/Alien-Build-2.280.0 b/metadata/md5-cache/dev-perl/Alien-Build-2.280.0 deleted file mode 100644 index 6e6d014f7c35..000000000000 --- a/metadata/md5-cache/dev-perl/Alien-Build-2.280.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=zip? ( dev-perl/Archive-Zip ) virtual/perl-Archive-Tar >=dev-perl/Capture-Tiny-0.170.0 virtual/perl-ExtUtils-CBuilder >=virtual/perl-ExtUtils-MakeMaker-6.640.0 >=virtual/perl-ExtUtils-ParseXS-3.300.0 >=dev-perl/FFI-CheckLib-0.110.0 >=dev-perl/File-Which-1.100.0 dev-perl/File-chdir virtual/perl-JSON-PP >=dev-perl/Path-Tiny-0.77.0 >=virtual/perl-Scalar-List-Utils-1.330.0 >=virtual/perl-Test-Simple-1.302.96 >=virtual/perl-Text-ParseWords-3.260.0 virtual/pkgconfig test? ( dev-perl/Devel-Hide >=dev-perl/Test2-Suite-0.0.60 ) dev-lang/perl -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-lang/perl -DESCRIPTION=Build external dependencies for use in CPAN -EAPI=7 -HOMEPAGE=https://metacpan.org/release/Alien-Build -IUSE=test zip examples -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=zip? ( dev-perl/Archive-Zip ) virtual/perl-Archive-Tar >=dev-perl/Capture-Tiny-0.170.0 virtual/perl-ExtUtils-CBuilder >=virtual/perl-ExtUtils-MakeMaker-6.640.0 >=virtual/perl-ExtUtils-ParseXS-3.300.0 >=dev-perl/FFI-CheckLib-0.110.0 >=dev-perl/File-Which-1.100.0 dev-perl/File-chdir virtual/perl-JSON-PP >=dev-perl/Path-Tiny-0.77.0 >=virtual/perl-Scalar-List-Utils-1.330.0 >=virtual/perl-Test-Simple-1.302.96 >=virtual/perl-Text-ParseWords-3.260.0 virtual/pkgconfig dev-lang/perl:= -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://cpan/authors/id/P/PL/PLICEASE/Alien-Build-2.28.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b perl-module 97206c028d9bdc9f248e022ac5c9fc83 -_md5_=dc9c3c21584a2e6596f7dd8d2f3eaf75 diff --git a/metadata/md5-cache/dev-perl/Alien-Build-2.290.0 b/metadata/md5-cache/dev-perl/Alien-Build-2.290.0 deleted file mode 100644 index 1693819d5b90..000000000000 --- a/metadata/md5-cache/dev-perl/Alien-Build-2.290.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=zip? ( dev-perl/Archive-Zip ) virtual/perl-Archive-Tar >=dev-perl/Capture-Tiny-0.170.0 virtual/perl-ExtUtils-CBuilder >=virtual/perl-ExtUtils-MakeMaker-6.640.0 >=virtual/perl-ExtUtils-ParseXS-3.300.0 >=dev-perl/FFI-CheckLib-0.110.0 >=dev-perl/File-Which-1.100.0 dev-perl/File-chdir virtual/perl-JSON-PP >=dev-perl/Path-Tiny-0.77.0 >=virtual/perl-Scalar-List-Utils-1.330.0 >=virtual/perl-Test-Simple-1.302.96 >=virtual/perl-Text-ParseWords-3.260.0 virtual/pkgconfig test? ( dev-perl/Devel-Hide >=dev-perl/Test2-Suite-0.0.60 !minimal? ( dev-perl/Alien-Base-ModuleBuild dev-perl/Sort-Versions ) ) dev-lang/perl -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-lang/perl -DESCRIPTION=Build external dependencies for use in CPAN -EAPI=7 -HOMEPAGE=https://metacpan.org/release/Alien-Build -IUSE=minimal test zip examples -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=zip? ( dev-perl/Archive-Zip ) virtual/perl-Archive-Tar >=dev-perl/Capture-Tiny-0.170.0 virtual/perl-ExtUtils-CBuilder >=virtual/perl-ExtUtils-MakeMaker-6.640.0 >=virtual/perl-ExtUtils-ParseXS-3.300.0 >=dev-perl/FFI-CheckLib-0.110.0 >=dev-perl/File-Which-1.100.0 dev-perl/File-chdir virtual/perl-JSON-PP >=dev-perl/Path-Tiny-0.77.0 >=virtual/perl-Scalar-List-Utils-1.330.0 >=virtual/perl-Test-Simple-1.302.96 >=virtual/perl-Text-ParseWords-3.260.0 virtual/pkgconfig dev-lang/perl:= -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://cpan/authors/id/P/PL/PLICEASE/Alien-Build-2.29.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b perl-module 97206c028d9bdc9f248e022ac5c9fc83 -_md5_=b7f7a1b1486d72e2b02522f55b301803 diff --git a/metadata/md5-cache/dev-perl/BZ-Client-4.400.200 b/metadata/md5-cache/dev-perl/BZ-Client-4.400.200 deleted file mode 100644 index 41dd6511eeda..000000000000 --- a/metadata/md5-cache/dev-perl/BZ-Client-4.400.200 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-perl/DateTime-Format-ISO8601 dev-perl/DateTime-Format-Strptime dev-perl/DateTime-TimeZone virtual/perl-Encode virtual/perl-File-Spec dev-perl/HTTP-CookieJar virtual/perl-HTTP-Tiny virtual/perl-MIME-Base64 dev-perl/URI dev-perl/XML-Parser dev-perl/XML-Writer virtual/perl-parent >=dev-perl/Module-Build-0.280.0 virtual/perl-ExtUtils-MakeMaker test? ( >=virtual/perl-CPAN-Meta-2.120.900 dev-perl/Clone virtual/perl-Data-Dumper dev-perl/DateTime dev-perl/IO-Socket-SSL dev-perl/Test-RequiresInternet virtual/perl-Test-Simple dev-perl/Text-Password-Pronounceable ) dev-lang/perl -DESCRIPTION=A client for the Bugzilla web services API. -EAPI=6 -HOMEPAGE=https://metacpan.org/release/BZ-Client -IUSE=test examples -KEYWORDS=~amd64 ~x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-perl/DateTime-Format-ISO8601 dev-perl/DateTime-Format-Strptime dev-perl/DateTime-TimeZone virtual/perl-Encode virtual/perl-File-Spec dev-perl/HTTP-CookieJar virtual/perl-HTTP-Tiny virtual/perl-MIME-Base64 dev-perl/URI dev-perl/XML-Parser dev-perl/XML-Writer virtual/perl-parent dev-lang/perl:= -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://cpan/authors/id/D/DJ/DJZORT/BZ-Client-4.4002.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b perl-module 97206c028d9bdc9f248e022ac5c9fc83 -_md5_=13189fc6195d56c62a327c986ecbf7da diff --git a/metadata/md5-cache/dev-perl/BerkeleyDB-0.630.0-r2 b/metadata/md5-cache/dev-perl/BerkeleyDB-0.630.0-r2 deleted file mode 100644 index bdcf96fd6576..000000000000 --- a/metadata/md5-cache/dev-perl/BerkeleyDB-0.630.0-r2 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=>=sys-libs/db-2.0:= =sys-libs/db-2.0:= =sys-libs/db-2.0:= =virtual/perl-File-Spec-0.820.0 >=virtual/perl-File-Temp-0.170.0 >=dev-perl/HTML-Parser-3.690.0 virtual/perl-if >=virtual/perl-parent-0.225.0 virtual/perl-ExtUtils-MakeMaker test? ( virtual/perl-IO >=dev-perl/Test-Deep-0.110.0 dev-perl/Test-NoWarnings >=virtual/perl-Test-Simple-0.980.0 >=dev-perl/Test-Warn-0.300.0 ) dev-lang/perl -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-lang/perl -DESCRIPTION=Simple Common Gateway Interface Class -EAPI=7 -HOMEPAGE=https://metacpan.org/release/CGI -IUSE=test examples -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=Artistic-2 -RDEPEND=virtual/perl-Carp virtual/perl-Encode virtual/perl-Exporter >=virtual/perl-File-Spec-0.820.0 >=virtual/perl-File-Temp-0.170.0 >=dev-perl/HTML-Parser-3.690.0 virtual/perl-if >=virtual/perl-parent-0.225.0 dev-lang/perl:= -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://cpan/authors/id/L/LE/LEEJO/CGI-4.50.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b perl-module 97206c028d9bdc9f248e022ac5c9fc83 -_md5_=2d9d4aa0b37db80e96b2ac3a05aae5fd diff --git a/metadata/md5-cache/dev-perl/CPAN-Perl-Releases-5.202.8.200 b/metadata/md5-cache/dev-perl/CPAN-Perl-Releases-5.202.8.200 deleted file mode 100644 index a1688bcd684c..000000000000 --- a/metadata/md5-cache/dev-perl/CPAN-Perl-Releases-5.202.8.200 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/perl-ExtUtils-MakeMaker test? ( virtual/perl-File-Spec virtual/perl-IO >=virtual/perl-Test-Simple-0.470.0 ) dev-lang/perl -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-lang/perl -DESCRIPTION=Mapping Perl releases on CPAN to the location of the tarballs -EAPI=7 -HOMEPAGE=https://metacpan.org/release/CPAN-Perl-Releases -IUSE=test -KEYWORDS=~amd64 ~x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-lang/perl:= -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://cpan/authors/id/B/BI/BINGOS/CPAN-Perl-Releases-5.20200820.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b perl-module 97206c028d9bdc9f248e022ac5c9fc83 -_md5_=ff7e754d27d1223f7e664d76b6c2d712 diff --git a/metadata/md5-cache/dev-perl/Config-AutoConf-0.318.0 b/metadata/md5-cache/dev-perl/Config-AutoConf-0.318.0 deleted file mode 100644 index be11a64b4d05..000000000000 --- a/metadata/md5-cache/dev-perl/Config-AutoConf-0.318.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-perl/Capture-Tiny virtual/perl-Carp virtual/perl-Exporter >=virtual/perl-ExtUtils-CBuilder-0.280.220 dev-perl/File-Slurper virtual/perl-File-Spec virtual/perl-File-Temp >=virtual/perl-Scalar-List-Utils-1.180.0 virtual/perl-Text-ParseWords virtual/perl-ExtUtils-MakeMaker test? ( >=virtual/perl-Test-Simple-0.900.0 ) dev-lang/perl -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-lang/perl -DESCRIPTION=A module to implement some of AutoConf macros in pure perl -EAPI=7 -HOMEPAGE=https://metacpan.org/release/Config-AutoConf -IUSE=test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=dev-perl/Capture-Tiny virtual/perl-Carp virtual/perl-Exporter >=virtual/perl-ExtUtils-CBuilder-0.280.220 dev-perl/File-Slurper virtual/perl-File-Spec virtual/perl-File-Temp >=virtual/perl-Scalar-List-Utils-1.180.0 virtual/perl-Text-ParseWords dev-lang/perl:= -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://cpan/authors/id/R/RE/REHSACK/Config-AutoConf-0.318.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b perl-module 97206c028d9bdc9f248e022ac5c9fc83 -_md5_=1302661c19f3ba443c848461c8616418 diff --git a/metadata/md5-cache/dev-perl/Cpanel-JSON-XS-4.230.0 b/metadata/md5-cache/dev-perl/Cpanel-JSON-XS-4.230.0 deleted file mode 100644 index 29b42df4dd58..000000000000 --- a/metadata/md5-cache/dev-perl/Cpanel-JSON-XS-4.230.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=virtual/perl-Math-BigInt-1.160.0 virtual/perl-Carp >=virtual/perl-Encode-1.980.100 virtual/perl-Exporter virtual/perl-XSLoader >=virtual/perl-podlators-2.80.0 virtual/perl-ExtUtils-MakeMaker test? ( virtual/perl-Data-Dumper virtual/perl-Test virtual/perl-Test-Simple virtual/perl-Time-Piece ) dev-lang/perl -DEFINED_PHASES=compile configure install postinst prepare test -DEPEND=dev-lang/perl -DESCRIPTION=cPanel fork of JSON::XS, fast and correct serializing -EAPI=7 -HOMEPAGE=https://metacpan.org/release/Cpanel-JSON-XS -IUSE=test examples -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=>=virtual/perl-Math-BigInt-1.160.0 virtual/perl-Carp >=virtual/perl-Encode-1.980.100 virtual/perl-Exporter virtual/perl-XSLoader >=virtual/perl-podlators-2.80.0 dev-lang/perl:= -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://cpan/authors/id/R/RU/RURBAN/Cpanel-JSON-XS-4.23.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b perl-module 97206c028d9bdc9f248e022ac5c9fc83 -_md5_=7ba9067a93a4e1f58318da79361606e2 diff --git a/metadata/md5-cache/dev-perl/Crypt-Rijndael-1.140.0-r1 b/metadata/md5-cache/dev-perl/Crypt-Rijndael-1.140.0-r1 deleted file mode 100644 index fea621aec577..000000000000 --- a/metadata/md5-cache/dev-perl/Crypt-Rijndael-1.140.0-r1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=dev-lang/perl -DEFINED_PHASES=compile configure install prepare test -DEPEND=virtual/perl-ExtUtils-MakeMaker test? ( virtual/perl-Test-Simple ) dev-lang/perl -DESCRIPTION=Crypt::CBC compliant Rijndael encryption module -EAPI=7 -HOMEPAGE=https://metacpan.org/release/Crypt-Rijndael -IUSE=test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris -LICENSE=LGPL-3 -RDEPEND=dev-lang/perl:= -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://cpan/authors/id/L/LE/LEONT/Crypt-Rijndael-1.14.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b perl-module 97206c028d9bdc9f248e022ac5c9fc83 -_md5_=270223edc33c67380021ab4d2fa807f9 diff --git a/metadata/md5-cache/dev-perl/Curses-1.360.0-r1 b/metadata/md5-cache/dev-perl/Curses-1.360.0-r1 deleted file mode 100644 index 6e9b6ce764fd..000000000000 --- a/metadata/md5-cache/dev-perl/Curses-1.360.0-r1 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=>=sys-libs/ncurses-5:0=[unicode?] virtual/perl-Data-Dumper virtual/perl-ExtUtils-MakeMaker test? ( virtual/perl-Test-Simple ) dev-lang/perl -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=sys-libs/ncurses-5:0=[unicode?] dev-lang/perl -DESCRIPTION=Curses interface modules for Perl -EAPI=7 -HOMEPAGE=https://metacpan.org/release/Curses -IUSE=+unicode test examples -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~sparc-solaris ~x86-solaris -LICENSE=|| ( Artistic GPL-1+ ) -RDEPEND=>=sys-libs/ncurses-5:0=[unicode?] virtual/perl-Data-Dumper dev-lang/perl:= -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://cpan/authors/id/G/GI/GIRAFFED/Curses-1.36.tar.gz -_eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b perl-module 97206c028d9bdc9f248e022ac5c9fc83 -_md5_=3aa32c7d9cf9f42a1988231534999bf8 diff --git a/metadata/md5-cache/dev-perl/File-Copy-Recursive-0.450.0 b/metadata/md5-cache/dev-perl/File-Copy-Recursive-0.450.0 index ede289d63a44..c1b94715791f 100644 --- a/metadata/md5-cache/dev-perl/File-Copy-Recursive-0.450.0 +++ b/metadata/md5-cache/dev-perl/File-Copy-Recursive-0.450.0 @@ -5,11 +5,11 @@ DESCRIPTION=uses File::Copy to recursively copy dirs EAPI=7 HOMEPAGE=https://metacpan.org/release/File-Copy-Recursive IUSE=test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=virtual/perl-File-Spec dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/D/DM/DMUEY/File-Copy-Recursive-0.45.tar.gz _eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b perl-module 97206c028d9bdc9f248e022ac5c9fc83 -_md5_=6389f6fcf006bf65f43356ecfa710163 +_md5_=1790fc4f5e748fa87d4e92f67e090bf9 diff --git a/metadata/md5-cache/dev-perl/Manifest.gz b/metadata/md5-cache/dev-perl/Manifest.gz index 16bda80297fc..2554b0cef541 100644 Binary files a/metadata/md5-cache/dev-perl/Manifest.gz and b/metadata/md5-cache/dev-perl/Manifest.gz differ diff --git a/metadata/md5-cache/dev-perl/Test-File-1.443.0 b/metadata/md5-cache/dev-perl/Test-File-1.443.0 index d92734aa9587..9b21db31335e 100644 --- a/metadata/md5-cache/dev-perl/Test-File-1.443.0 +++ b/metadata/md5-cache/dev-perl/Test-File-1.443.0 @@ -4,11 +4,11 @@ DESCRIPTION=Test file attributes EAPI=6 HOMEPAGE=https://metacpan.org/release/Test-File IUSE=test -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://cpan/authors/id/B/BD/BDFOY/Test-File-1.443.tar.gz _eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b perl-module 97206c028d9bdc9f248e022ac5c9fc83 -_md5_=62113be89cddf5308ad89e502e2e05c3 +_md5_=86dc2445d7a97b1628dcf6255169eb13 diff --git a/metadata/md5-cache/dev-perl/Test-utf8-1.10.0 b/metadata/md5-cache/dev-perl/Test-utf8-1.10.0 index fedda8c97a1a..50caa8c58ff7 100644 --- a/metadata/md5-cache/dev-perl/Test-utf8-1.10.0 +++ b/metadata/md5-cache/dev-perl/Test-utf8-1.10.0 @@ -3,10 +3,10 @@ DEPEND=virtual/perl-ExtUtils-MakeMaker dev-lang/perl DESCRIPTION=Handy utf8 tests EAPI=6 HOMEPAGE=https://metacpan.org/release/Test-utf8 -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos LICENSE=|| ( Artistic GPL-1+ ) RDEPEND=dev-lang/perl:= SLOT=0 SRC_URI=mirror://cpan/authors/id/M/MA/MARKF/Test-utf8-1.01.tar.gz _eclasses_=multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b perl-module 97206c028d9bdc9f248e022ac5c9fc83 -_md5_=bb2de1c2a8017ea26b170a445763c9c1 +_md5_=54f1518978b0b64ff86c286de8bc0d3f diff --git a/metadata/md5-cache/dev-python/Manifest.gz b/metadata/md5-cache/dev-python/Manifest.gz index 8cd3516bd506..ad1fc4d34cb8 100644 Binary files a/metadata/md5-cache/dev-python/Manifest.gz and b/metadata/md5-cache/dev-python/Manifest.gz differ diff --git a/metadata/md5-cache/dev-python/aiohttp-3.7.1-r1 b/metadata/md5-cache/dev-python/aiohttp-3.7.1-r1 index 762d7b4a90cb..f702130f9eaf 100644 --- a/metadata/md5-cache/dev-python/aiohttp-3.7.1-r1 +++ b/metadata/md5-cache/dev-python/aiohttp-3.7.1-r1 @@ -4,7 +4,7 @@ DESCRIPTION=http client/server for asyncio EAPI=7 HOMEPAGE=https://pypi.org/project/aiohttp/ IUSE=test doc python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/async_timeout-3.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/attrs-17.3.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/chardet[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/multidict-4.5.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/yarl-1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_6? ( dev-python/idna-ssl[python_targets_python3_6(-)?,-python_single_target_python3_6(-)] ) dev-python/typing-extensions[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/a/aiohttp/aiohttp-3.7.1.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=82ac1f94c2954ab3c91e2fe5c26c259c +_md5_=c4bc2413fa26eb96b87a877b2baec6c6 diff --git a/metadata/md5-cache/dev-python/aiohttp-cors-0.7.0-r1 b/metadata/md5-cache/dev-python/aiohttp-cors-0.7.0-r1 index 307267ab9d98..96578fe67e18 100644 --- a/metadata/md5-cache/dev-python/aiohttp-cors-0.7.0-r1 +++ b/metadata/md5-cache/dev-python/aiohttp-cors-0.7.0-r1 @@ -4,7 +4,7 @@ DESCRIPTION=Implements CORS support for aiohttp asyncio-powered asynchronous HTT EAPI=7 HOMEPAGE=https://github.com/aio-libs/aiohttp-cors IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/aiohttp-1.1.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/aio-libs/aiohttp-cors/archive/v0.7.0.tar.gz -> aiohttp-cors-0.7.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=50a150b0da7ea058fd10de550af31e8d +_md5_=badf267a4825f44f4f1c138a2244efd3 diff --git a/metadata/md5-cache/dev-python/async_timeout-3.0.1 b/metadata/md5-cache/dev-python/async_timeout-3.0.1 index d7622640d83a..a8306318fd01 100644 --- a/metadata/md5-cache/dev-python/async_timeout-3.0.1 +++ b/metadata/md5-cache/dev-python/async_timeout-3.0.1 @@ -5,7 +5,7 @@ DESCRIPTION=Timeout context manager for asyncio programs EAPI=7 HOMEPAGE=https://github.com/aio-libs/async-timeout IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~x64-macos +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~x64-macos LICENSE=Apache-2.0 RDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/a/async_timeout/async-timeout-3.0.1.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=1eba73522f760e2c8b9d9b45975ae1e8 +_md5_=e0e36331074e767e54a32e2ce462aaf5 diff --git a/metadata/md5-cache/dev-python/backports-os-0.1.1 b/metadata/md5-cache/dev-python/backports-os-0.1.1 index aa9b43e97b72..8db9eca33832 100644 --- a/metadata/md5-cache/dev-python/backports-os-0.1.1 +++ b/metadata/md5-cache/dev-python/backports-os-0.1.1 @@ -2,13 +2,13 @@ BDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3 DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Backport of new features in Python's os module EAPI=7 -HOMEPAGE=https://github.com/pjdelport/backports.os +HOMEPAGE=https://github.com/PiDelport/backports.os IUSE=python_targets_python3_6 python_targets_python3_7 KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86 LICENSE=PYTHON RDEPEND=dev-python/backports[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/future[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/setuptools_scm[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 ) SLOT=0 -SRC_URI=https://github.com/pjdelport/backports.os/archive/v0.1.1.tar.gz -> backports-os-0.1.1.tar.gz +SRC_URI=https://github.com/PiDelport/backports.os/archive/v0.1.1.tar.gz -> backports-os-0.1.1.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=0b97035845c26bbf4e3617e47b43631b +_md5_=02563301ed2c2ba9b1ad972dab4cffb6 diff --git a/metadata/md5-cache/dev-python/binaryornot-0.4.4-r1 b/metadata/md5-cache/dev-python/binaryornot-0.4.4-r1 index fa393001d55e..1a15d460ae90 100644 --- a/metadata/md5-cache/dev-python/binaryornot-0.4.4-r1 +++ b/metadata/md5-cache/dev-python/binaryornot-0.4.4-r1 @@ -2,7 +2,7 @@ BDEPEND=test? ( dev-python/hypothesis[python_targets_python3_6(-)?,python_target DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Ultra-lightweight pure Python package to guess whether a file is binary or text EAPI=7 -HOMEPAGE=https://github.com/audreyr/binaryornot +HOMEPAGE=https://github.com/audreyfeldroy/binaryornot IUSE=test doc python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=amd64 ~x86 LICENSE=BSD @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/b/binaryornot/binaryornot-0.4.4.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=78a6e9e51ef6bec917d5ea7595a1826d +_md5_=ea43add4d162f7839769d6a7709a174e diff --git a/metadata/md5-cache/dev-python/bitstring-3.1.7 b/metadata/md5-cache/dev-python/bitstring-3.1.7 index 2528c1b25e5c..234007eff820 100644 --- a/metadata/md5-cache/dev-python/bitstring-3.1.7 +++ b/metadata/md5-cache/dev-python/bitstring-3.1.7 @@ -4,11 +4,11 @@ DESCRIPTION=A pure Python module for creation and analysis of binary data EAPI=7 HOMEPAGE=https://github.com/scott-griffiths/bitstring IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=amd64 ~arm64 x86 +KEYWORDS=amd64 ~arm ~arm64 x86 LICENSE=MIT RDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) SLOT=0 SRC_URI=https://github.com/scott-griffiths/bitstring/archive/bitstring-3.1.7.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=f0d12dd5c19fc88f5242bca5033f55b6 +_md5_=21edfd231dc3526f938ba6a61cdb2792 diff --git a/metadata/md5-cache/dev-python/black-20.8_beta1 b/metadata/md5-cache/dev-python/black-20.8_beta1 index 83747d7eca4a..7b386d3e96e1 100644 --- a/metadata/md5-cache/dev-python/black-20.8_beta1 +++ b/metadata/md5-cache/dev-python/black-20.8_beta1 @@ -4,7 +4,7 @@ DESCRIPTION=The uncompromising Python code formatter EAPI=7 HOMEPAGE=https://black.readthedocs.io/en/stable/ https://github.com/psf/black IUSE=test test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~x64-macos +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~x64-macos LICENSE=MIT RDEPEND=>=dev-python/click-7.1.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/appdirs[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/toml-0.10.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/typed-ast[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/regex[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pathspec[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/typing-extensions-3.7.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/mypy_extensions-0.4.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_6? ( dev-python/dataclasses[python_targets_python3_6(-)?,-python_single_target_python3_6(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=https://github.com/psf/black/archive/20.8b1.tar.gz -> black-20.8b1.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 optfeature 6c9aa35fc16df43d7142ef2660e00e25 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=eaf26fe4865348c677b7b5a75b1f378c +_md5_=f7324902128bb604a680c35bab9c9ade diff --git a/metadata/md5-cache/dev-python/breathe-4.22.1 b/metadata/md5-cache/dev-python/breathe-4.22.1 index ed8e195dcba5..830c50b9f595 100644 --- a/metadata/md5-cache/dev-python/breathe-4.22.1 +++ b/metadata/md5-cache/dev-python/breathe-4.22.1 @@ -4,11 +4,11 @@ DESCRIPTION=Sphinx Doxygen renderer EAPI=7 HOMEPAGE=https://breathe.readthedocs.io/en/latest/ IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux LICENSE=BSD RDEPEND=app-doc/doxygen dev-python/docutils[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/sphinx[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-texlive/texlive-bibtexextra dev-texlive/texlive-fontsextra dev-texlive/texlive-fontutils dev-texlive/texlive-latex dev-texlive/texlive-latexextra python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) SLOT=0 SRC_URI=mirror://pypi/b/breathe/breathe-4.22.1.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=8167b9b28b6999e036e8dc6823fee35f +_md5_=e9bc18a6df40eed0cf2fee86718d0d26 diff --git a/metadata/md5-cache/dev-python/brotlicffi-0.8.0 b/metadata/md5-cache/dev-python/brotlicffi-0.8.0 index 47929689e307..208e959d6b84 100644 --- a/metadata/md5-cache/dev-python/brotlicffi-0.8.0 +++ b/metadata/md5-cache/dev-python/brotlicffi-0.8.0 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test unpack DEPEND=test? ( dev-python/hypothesis[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) DESCRIPTION=Python binding to the Brotli library EAPI=7 -HOMEPAGE=https://github.com/python-hyper/brotlipy/ https://pypi.python.org/pypi/brotlipy +HOMEPAGE=https://github.com/python-hyper/brotlicffi/ https://pypi.org/project/brotlicffi/ IUSE=test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos LICENSE=MIT @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/python-hyper/brotlicffi/archive/v0.8.0.tar.gz -> brotlicffi-0.8.0.gh.tar.gz test? ( https://github.com/google/brotli/archive/46c1a881b41bb638c76247558aa04b1591af3aa7.tar.gz -> brotli-46c1a881b41bb638c76247558aa04b1591af3aa7.tar.gz ) _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=50b26c0baa3bf8a1eaaf54690a93c1dd +_md5_=8f3acf306690ee59f3a0ead8903e45ff diff --git a/metadata/md5-cache/dev-python/cairocffi-1.2.0 b/metadata/md5-cache/dev-python/cairocffi-1.2.0 index b79a3860c871..58f363d2a732 100644 --- a/metadata/md5-cache/dev-python/cairocffi-1.2.0 +++ b/metadata/md5-cache/dev-python/cairocffi-1.2.0 @@ -4,7 +4,7 @@ DESCRIPTION=CFFI-based drop-in replacement for Pycairo EAPI=7 HOMEPAGE=https://github.com/Kozea/cairocffi IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 test -KEYWORDS=~amd64 ~arm arm64 ~ppc ~ppc64 x86 +KEYWORDS=~amd64 ~arm arm64 ~ppc ppc64 x86 LICENSE=BSD RDEPEND=python_targets_python3_6? ( >=dev-python/cffi-1.1.0:=[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_7? ( >=dev-python/cffi-1.1.0:=[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_8? ( >=dev-python/cffi-1.1.0:=[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_9? ( >=dev-python/cffi-1.1.0:=[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) >=dev-python/xcffib-0.3.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] x11-libs/cairo:0=[X,xcb(+)] x11-libs/gdk-pixbuf[jpeg] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://pypi/c/cairocffi/cairocffi-1.2.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f -_md5_=c685889e53816f926e331cdb23a6ce21 +_md5_=8c1bb219fdbbfa636b0f447e119cbe22 diff --git a/metadata/md5-cache/dev-python/citeproc-py-0.4.0-r1 b/metadata/md5-cache/dev-python/citeproc-py-0.4.0-r1 index c9abee7decb5..84ee23f19376 100644 --- a/metadata/md5-cache/dev-python/citeproc-py-0.4.0-r1 +++ b/metadata/md5-cache/dev-python/citeproc-py-0.4.0-r1 @@ -2,7 +2,7 @@ BDEPEND=app-text/rnc2rng[python_targets_python3_6(-)?,python_targets_python3_7(- DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Yet another Python CSL Processor EAPI=7 -HOMEPAGE=https://pypi.python.org/pypi/citeproc-py +HOMEPAGE=https://pypi.org/project/citeproc-py/ IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 ~x86 LICENSE=BSD-2 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targe SLOT=0 SRC_URI=mirror://pypi/c/citeproc-py/citeproc-py-0.4.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=2555e399b1a5adfaa27fbbded189e0d0 +_md5_=299e3c8099661d302b7a7d4e9c724da3 diff --git a/metadata/md5-cache/dev-python/clint-0.5.1-r3 b/metadata/md5-cache/dev-python/clint-0.5.1-r3 index 623f7e4d9a2f..51ec64c7b47a 100644 --- a/metadata/md5-cache/dev-python/clint-0.5.1-r3 +++ b/metadata/md5-cache/dev-python/clint-0.5.1-r3 @@ -2,7 +2,7 @@ BDEPEND=doc? ( dev-python/sphinx ) test? ( >=dev-python/pytest-4.5.0[python_targ DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Python Command-line Application Tools EAPI=7 -HOMEPAGE=https://github.com/kennethreitz/clint +HOMEPAGE=https://github.com/kennethreitz-archive/clint IUSE=examples doc test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=amd64 arm64 ~x86 LICENSE=ISC @@ -10,6 +10,6 @@ RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_pyt REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/kennethreitz/clint/archive/v0.5.1.tar.gz -> clint-0.5.1.tar.gz +SRC_URI=https://github.com/kennethreitz-archive/clint/archive/v0.5.1.tar.gz -> clint-0.5.1.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=d1e9a3b4e516596cca3acf26aa9a130c +_md5_=ba3747f606ce19f97f661c5936848727 diff --git a/metadata/md5-cache/dev-python/cryptography-3.3.1 b/metadata/md5-cache/dev-python/cryptography-3.3.1 new file mode 100644 index 000000000000..fe283a0fa36b --- /dev/null +++ b/metadata/md5-cache/dev-python/cryptography-3.3.1 @@ -0,0 +1,16 @@ +BDEPEND=test? ( >=dev-python/hypothesis-1.11.4[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/iso8601[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pretend[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pyasn1-modules[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pytz[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pytest-xdist[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) test? ( >=dev-python/six-1.4.1[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] idna? ( >=dev-python/idna-2.1[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_6? ( >=dev-python/cffi-1.8:=[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_7? ( >=dev-python/cffi-1.8:=[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_8? ( >=dev-python/cffi-1.8:=[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_9? ( >=dev-python/cffi-1.8:=[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DEPEND=!libressl? ( >=dev-libs/openssl-1.0.2o-r6:0= ) libressl? ( >=dev-libs/libressl-2.9.1:0= ) +DESCRIPTION=Library providing cryptographic recipes and primitives +EAPI=7 +HOMEPAGE=https://github.com/pyca/cryptography/ https://pypi.org/project/cryptography/ +IUSE=libressl idna test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris +LICENSE=|| ( Apache-2.0 BSD ) +RDEPEND=>=dev-python/six-1.4.1[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] idna? ( >=dev-python/idna-2.1[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_6? ( >=dev-python/cffi-1.8:=[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_7? ( >=dev-python/cffi-1.8:=[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_8? ( >=dev-python/cffi-1.8:=[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_9? ( >=dev-python/cffi-1.8:=[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) !libressl? ( >=dev-libs/openssl-1.0.2o-r6:0= ) libressl? ( >=dev-libs/libressl-2.9.1:0= ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/c/cryptography/cryptography-3.3.1.tar.gz test? ( mirror://pypi/c/cryptography_vectors/cryptography_vectors-3.3.1.tar.gz ) +_eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=981f00510b52eb86471199bf5ef734b0 diff --git a/metadata/md5-cache/dev-python/dbutils-1.3 b/metadata/md5-cache/dev-python/dbutils-1.3 index 93c7c2ce4b65..9240ddd52cea 100644 --- a/metadata/md5-cache/dev-python/dbutils-1.3 +++ b/metadata/md5-cache/dev-python/dbutils-1.3 @@ -2,7 +2,7 @@ BDEPEND=test? ( >=dev-python/nose-1.3.7-r4[python_targets_python3_6(-)?,python_t DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Database connections for multi-threaded environments EAPI=7 -HOMEPAGE=https://cito.github.io/DBUtils/ https://github.com/Cito/DBUtils https://pypi.org/project/DBUtils/ +HOMEPAGE=https://webwareforpython.github.io/DBUtils/ https://github.com/WebwareForPython/DBUtils/ https://pypi.org/project/DBUtils/ IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=~amd64 LICENSE=OSL-2.0 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/d/dbutils/DBUtils-1.3.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=c0825cfd6215b9ca8cc2d13632bbf569 +_md5_=44500e74e420c87f9c5cfb52ee145a97 diff --git a/metadata/md5-cache/dev-python/dbutils-2.0 b/metadata/md5-cache/dev-python/dbutils-2.0 index 729d9f43a6c9..09b34a512f6e 100644 --- a/metadata/md5-cache/dev-python/dbutils-2.0 +++ b/metadata/md5-cache/dev-python/dbutils-2.0 @@ -2,7 +2,7 @@ BDEPEND=test? ( >=dev-python/nose-1.3.7-r4[python_targets_python3_6(-)?,python_t DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Database connections for multi-threaded environments EAPI=7 -HOMEPAGE=https://cito.github.io/DBUtils/ https://github.com/Cito/DBUtils https://pypi.org/project/DBUtils/ +HOMEPAGE=https://webwareforpython.github.io/DBUtils/ https://github.com/WebwareForPython/DBUtils/ https://pypi.org/project/DBUtils/ IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 LICENSE=OSL-2.0 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/d/dbutils/DBUtils-2.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=f43dd9741938eefb0094a5d7e71faec2 +_md5_=f25da8994e8c48578be504aa5b14e3b9 diff --git a/metadata/md5-cache/dev-python/defcon-0.6.0-r1 b/metadata/md5-cache/dev-python/defcon-0.6.0-r1 index 7b5d5b5e0281..3312848a140f 100644 --- a/metadata/md5-cache/dev-python/defcon-0.6.0-r1 +++ b/metadata/md5-cache/dev-python/defcon-0.6.0-r1 @@ -2,7 +2,7 @@ BDEPEND=test? ( dev-python/fs[python_targets_python3_6(-)?,python_targets_python DEFINED_PHASES=compile configure install prepare test DESCRIPTION=A set of UFO based objects for use in font editing applications EAPI=7 -HOMEPAGE=https://github.com/typesupply/defcon +HOMEPAGE=https://github.com/robotools/defcon IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=amd64 ~arm arm64 ~ppc64 x86 LICENSE=MIT @@ -10,6 +10,6 @@ RDEPEND=>=dev-python/fonttools-3.31.0[python_targets_python3_6(-)?,python_target REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/typesupply/defcon/archive/0.6.0.tar.gz -> defcon-0.6.0.tar.gz +SRC_URI=https://github.com/robotools/defcon/archive/0.6.0.tar.gz -> defcon-0.6.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=3742c4ea8593e424bdff3f16a4ff19fe +_md5_=3859cd0dd7517cde4c283d362a228c9d diff --git a/metadata/md5-cache/dev-python/dill-0.3.3 b/metadata/md5-cache/dev-python/dill-0.3.3 index 49d9116a25da..87e147d2f052 100644 --- a/metadata/md5-cache/dev-python/dill-0.3.3 +++ b/metadata/md5-cache/dev-python/dill-0.3.3 @@ -4,11 +4,11 @@ DESCRIPTION=Serialize all of python (almost) EAPI=7 HOMEPAGE=https://pypi.org/project/dill/ IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm64 ~ppc ~x86 ~amd64-linux ~x86-linux +KEYWORDS=~amd64 ~arm64 ppc ~x86 ~amd64-linux ~x86-linux LICENSE=BSD RDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) SLOT=0 SRC_URI=https://github.com/uqfoundation/dill/archive/dill-0.3.3.tar.gz -> dill-0.3.3.gh.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=8e2caf75028547dd3eea8002e56c1f71 +_md5_=87a0575b40ac2a13083f8c6ba2559c89 diff --git a/metadata/md5-cache/dev-python/django-cors-headers-3.2.1 b/metadata/md5-cache/dev-python/django-cors-headers-3.2.1 index b4f002a1aebb..28b0027c4de5 100644 --- a/metadata/md5-cache/dev-python/django-cors-headers-3.2.1 +++ b/metadata/md5-cache/dev-python/django-cors-headers-3.2.1 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=>=dev-python/django-1.11[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/setuptools[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] DESCRIPTION=Django App that adds CORS (Cross-Origin Resource Sharing) headers to responses EAPI=7 -HOMEPAGE=https://github.com/ottoyiu/django-cors-headers +HOMEPAGE=https://github.com/adamchainz/django-cors-headers IUSE=python_targets_python3_6 python_targets_python3_7 KEYWORDS=~amd64 LICENSE=MIT @@ -12,4 +12,4 @@ REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 ) SLOT=0 SRC_URI=mirror://pypi/d/django-cors-headers/django-cors-headers-3.2.1.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=fe61d64a30c71b2934f0763a0b715925 +_md5_=d0ef872b9d3e1286a23d87ada9253581 diff --git a/metadata/md5-cache/dev-python/django-debug-toolbar-3.1 b/metadata/md5-cache/dev-python/django-debug-toolbar-3.1 index f4586141cbb6..18f6823a66a0 100644 --- a/metadata/md5-cache/dev-python/django-debug-toolbar-3.1 +++ b/metadata/md5-cache/dev-python/django-debug-toolbar-3.1 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=test? ( python_targets_python3_6? ( dev-lang/python:3.6[sqlite] ) python_targets_python3_7? ( dev-lang/python:3.7[sqlite] ) python_targets_python3_8? ( dev-lang/python:3.8[sqlite] ) python_targets_python3_9? ( dev-lang/python:3.9[sqlite] ) >=dev-python/django-1.11[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/sqlparse-0.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) DESCRIPTION=A configurable set of panels that display debug information EAPI=7 -HOMEPAGE=https://pypi.org/project/django-debug-toolbar/ https://github.com/django-debug-toolbar/django-debug-toolbar/ +HOMEPAGE=https://pypi.org/project/django-debug-toolbar/ https://github.com/jazzband/django-debug-toolbar/ IUSE=doc examples test doc python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 ~x86 LICENSE=BSD @@ -11,6 +11,6 @@ RDEPEND=>=dev-python/django-1.11[python_targets_python3_6(-)?,python_targets_pyt REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/django-debug-toolbar/django-debug-toolbar/archive/3.1.tar.gz -> django-debug-toolbar-3.1.tar.gz +SRC_URI=https://github.com/jazzband/django-debug-toolbar/archive/3.1.tar.gz -> django-debug-toolbar-3.1.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=de444ae24fe438db75117b53b2cd2180 +_md5_=bf1a69853bfa63bdb0b45608f4f13a0a diff --git a/metadata/md5-cache/dev-python/django-redis-4.10.0 b/metadata/md5-cache/dev-python/django-redis-4.10.0 index 710dd98081a9..06e2ec90bd25 100644 --- a/metadata/md5-cache/dev-python/django-redis-4.10.0 +++ b/metadata/md5-cache/dev-python/django-redis-4.10.0 @@ -1,9 +1,9 @@ BDEPEND=python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] DEFINED_PHASES=compile configure install prepare test DEPEND=>=dev-python/django-1.11[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/redis-py-2.10.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] -DESCRIPTION=Full featured redis cache backend for Django. +DESCRIPTION=Full featured redis cache backend for Django EAPI=7 -HOMEPAGE=https://github.com/niwinz/django-redis +HOMEPAGE=https://github.com/jazzband/django-redis/ IUSE=python_targets_python3_7 python_targets_python3_8 KEYWORDS=~amd64 LICENSE=BSD @@ -12,4 +12,4 @@ REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 ) SLOT=0 SRC_URI=mirror://pypi/d/django-redis/django-redis-4.10.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=6c6ea3bfed79e91487ae32024a6f3869 +_md5_=1d5938d5302bc9ae32e203a548676fce diff --git a/metadata/md5-cache/dev-python/docutils-0.16-r1 b/metadata/md5-cache/dev-python/docutils-0.16-r1 index 85b4dfab4092..8e1cb19c2bfb 100644 --- a/metadata/md5-cache/dev-python/docutils-0.16-r1 +++ b/metadata/md5-cache/dev-python/docutils-0.16-r1 @@ -2,7 +2,7 @@ BDEPEND=dev-python/setuptools[python_targets_pypy3(-)?,python_targets_python3_6( DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Python Documentation Utilities EAPI=7 -HOMEPAGE=https://docutils.sourceforge.net/ https://pypi.org/project/docutils/ +HOMEPAGE=https://docutils.sourceforge.io/ https://pypi.org/project/docutils/ IUSE=python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 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=BSD-2 GPL-3 public-domain @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_p SLOT=0 SRC_URI=mirror://pypi/d/docutils/docutils-0.16.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=37bc1cebd848bce100aa6ef5bbba3661 +_md5_=25178454bf2b0b5c440d33bccbf18afb diff --git a/metadata/md5-cache/dev-python/elasticsearch-curator-5.8.1-r1 b/metadata/md5-cache/dev-python/elasticsearch-curator-5.8.1-r1 index 83a9f00261d4..1905342588c3 100644 --- a/metadata/md5-cache/dev-python/elasticsearch-curator-5.8.1-r1 +++ b/metadata/md5-cache/dev-python/elasticsearch-curator-5.8.1-r1 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install postinst prepare test DEPEND=dev-python/setuptools[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/six-1.11.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/sphinx dev-python/pyyaml[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] test? ( >=dev-python/elasticsearch-py-7.0.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] =dev-python/click-6.7[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] =dev-python/certifi-2019.9.11[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/requests-2.20.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/urllib3-1.24.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] =dev-python/voluptuous-0.9.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] virtual/jre dev-python/mock[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/nose[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) DESCRIPTION=Tending time-series indices in Elasticsearch EAPI=7 -HOMEPAGE=https://github.com/elasticsearch/curator +HOMEPAGE=https://github.com/elastic/curator IUSE=doc test python_targets_python3_6 python_targets_python3_7 KEYWORDS=amd64 x86 LICENSE=Apache-2.0 @@ -11,6 +11,6 @@ RDEPEND=>=dev-python/elasticsearch-py-7.0.4[python_targets_python3_6(-)?,python_ REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 ) RESTRICT=test SLOT=0 -SRC_URI=https://github.com/elasticsearch/curator/archive/v5.8.1.tar.gz -> elasticsearch-curator-5.8.1.tar.gz test? ( https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.3.2-linux-x86_64.tar.gz ) +SRC_URI=https://github.com/elastic/curator/archive/v5.8.1.tar.gz -> elasticsearch-curator-5.8.1.tar.gz test? ( https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.3.2-linux-x86_64.tar.gz ) _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=0021a3472fc444edac2007b98ae680c8 +_md5_=2c97cc66fdeb2ee701acc100941400d7 diff --git a/metadata/md5-cache/dev-python/elasticsearch-py-7.7.0 b/metadata/md5-cache/dev-python/elasticsearch-py-7.7.0 index 516ad121d0ae..2317f423ec09 100644 --- a/metadata/md5-cache/dev-python/elasticsearch-py-7.7.0 +++ b/metadata/md5-cache/dev-python/elasticsearch-py-7.7.0 @@ -11,6 +11,6 @@ RDEPEND=dev-python/certifi[python_targets_python3_6(-)?,python_targets_python3_7 REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) RESTRICT=test SLOT=0 -SRC_URI=https://github.com/elasticsearch/elasticsearch-py/archive/7.7.0.tar.gz -> elasticsearch-py-7.7.0.tar.gz test? ( https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-7.7.0-no-jdk-linux-x86_64.tar.gz ) +SRC_URI=https://github.com/elastic/elasticsearch-py/archive/7.7.0.tar.gz -> elasticsearch-py-7.7.0.tar.gz test? ( https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-7.7.0-no-jdk-linux-x86_64.tar.gz ) _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=9d9a27dcbb6f24d978a37cedf6d670dd +_md5_=990d3d4b75abf8c3b5652728f9e263ee diff --git a/metadata/md5-cache/dev-python/falcon-2.0.0 b/metadata/md5-cache/dev-python/falcon-2.0.0 index bcd1a246fe48..95accf1c389b 100644 --- a/metadata/md5-cache/dev-python/falcon-2.0.0 +++ b/metadata/md5-cache/dev-python/falcon-2.0.0 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/python-mimeparse[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] cython? ( dev-python/cython[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) dev-python/setuptools[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] DESCRIPTION=A supersonic micro-framework for building cloud APIs EAPI=7 -HOMEPAGE=http://falconframework.org/ https://pypi.org/project/falcon/ +HOMEPAGE=https://falconframework.org/ https://pypi.org/project/falcon/ IUSE=+cython python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=~amd64 ~x86 LICENSE=Apache-2.0 @@ -11,6 +11,6 @@ RDEPEND=dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)? REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) RESTRICT=test SLOT=0 -SRC_URI=https://github.com/racker/falcon/archive/2.0.0.tar.gz -> falcon-2.0.0.tar.gz +SRC_URI=https://github.com/falconry/falcon/archive/2.0.0.tar.gz -> falcon-2.0.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=899650e7b88fdb5b0100d7088123f4b4 +_md5_=10b2e53645952f945ecf5a544b2d359d diff --git a/metadata/md5-cache/dev-python/flask-compress-1.8.0 b/metadata/md5-cache/dev-python/flask-compress-1.8.0 index 8fefa69e7e40..36cc16d43891 100644 --- a/metadata/md5-cache/dev-python/flask-compress-1.8.0 +++ b/metadata/md5-cache/dev-python/flask-compress-1.8.0 @@ -2,7 +2,7 @@ BDEPEND=test? ( app-arch/brotli[python,python_targets_python3_6(-)?,python_targe DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Compress responses in your Flask app with gzip EAPI=7 -HOMEPAGE=https://pypi.org/project/Flask-Compress +HOMEPAGE=https://pypi.org/project/Flask-Compress/ IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=~amd64 x86 LICENSE=MIT @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-Compress/Flask-Compress-1.8.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=7ea713bca9d32384eaacd60beb4f934b +_md5_=95fb419af3bae9fe5b6d71eada1ec891 diff --git a/metadata/md5-cache/dev-python/flask-restful-0.3.8 b/metadata/md5-cache/dev-python/flask-restful-0.3.8 index 474d886d29f2..f1dd27e4a3a9 100644 --- a/metadata/md5-cache/dev-python/flask-restful-0.3.8 +++ b/metadata/md5-cache/dev-python/flask-restful-0.3.8 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=test? ( dev-python/mock[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) DESCRIPTION=Simple framework for creating REST APIs EAPI=7 -HOMEPAGE=https://flask-restful.readthedocs.io/en/latest/ https://github.com/twilio/flask-restful/ +HOMEPAGE=https://flask-restful.readthedocs.io/en/latest/ https://github.com/flask-restful/flask-restful/ IUSE=examples doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=amd64 ~arm64 x86 LICENSE=BSD @@ -11,6 +11,6 @@ RDEPEND=>=dev-python/aniso8601-0.82[python_targets_python3_6(-)?,python_targets_ REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/twilio/flask-restful/archive/0.3.8.tar.gz -> flask-restful-0.3.8.tar.gz +SRC_URI=https://github.com/flask-restful/flask-restful/archive/0.3.8.tar.gz -> flask-restful-0.3.8.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=0149313166576fbfe35289a5ea9b73fb +_md5_=f555ed2aa6a05a3425ec8ea6a75a171f diff --git a/metadata/md5-cache/dev-python/genson-1.1.0 b/metadata/md5-cache/dev-python/genson-1.1.0 index 4d5e4840384d..7f20ad387cd0 100644 --- a/metadata/md5-cache/dev-python/genson-1.1.0 +++ b/metadata/md5-cache/dev-python/genson-1.1.0 @@ -2,7 +2,7 @@ BDEPEND=test? ( dev-python/jsonschema[python_targets_python3_6(-)?,python_target DEFINED_PHASES=compile configure install prepare test DESCRIPTION=GenSON is a powerful, user-friendly JSON Schema generator built in Python EAPI=7 -HOMEPAGE=https://pypi.org/project/genson https://github.com/wolverdude/genson +HOMEPAGE=https://pypi.org/project/genson/ https://github.com/wolverdude/GenSON/ IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 ~x86 LICENSE=MIT @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/g/genson/genson-1.1.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=2fe52e95e80fc9f7e8180de731159d9d +_md5_=cbca7826953388f289e8d31cdcbc9b11 diff --git a/metadata/md5-cache/dev-python/google-api-python-client-1.8.3-r1 b/metadata/md5-cache/dev-python/google-api-python-client-1.8.3-r1 index 157033023a9b..ff61170a71f6 100644 --- a/metadata/md5-cache/dev-python/google-api-python-client-1.8.3-r1 +++ b/metadata/md5-cache/dev-python/google-api-python-client-1.8.3-r1 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=dev-python/chardet[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/httplib2-0.9.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] =dev-python/google-auth-1.4.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/google-auth-httplib2-0.0.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/uritemplate-3.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] =dev-python/six-1.6.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] google-api-python-client-1.8.3.tar.gz +SRC_URI=https://github.com/googleapis/google-api-python-client/archive/v1.8.3.tar.gz -> google-api-python-client-1.8.3.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=4026f205f0ebd2ba02f3b7d3fd3cfe88 +_md5_=5cc49f04ddbe3b24b272850ab71d8169 diff --git a/metadata/md5-cache/dev-python/greenstalk-1.0.1 b/metadata/md5-cache/dev-python/greenstalk-1.0.1 index 0cc11a2ed1cc..16f90089eb47 100644 --- a/metadata/md5-cache/dev-python/greenstalk-1.0.1 +++ b/metadata/md5-cache/dev-python/greenstalk-1.0.1 @@ -2,7 +2,7 @@ BDEPEND=test? ( app-misc/beanstalkd ) test? ( >=dev-python/pytest-4.5.0[python_t DEFINED_PHASES=compile configure install prepare test DESCRIPTION=A Python 3 client for the beanstalkd work queue EAPI=7 -HOMEPAGE=https://greenstalk.readthedocs.io/ https://github.com/mayhewj/greenstalk +HOMEPAGE=https://greenstalk.readthedocs.io/ https://github.com/justinmayhew/greenstalk IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 ~x86 LICENSE=MIT @@ -10,6 +10,6 @@ RDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3 REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/mayhewj/greenstalk/archive/v1.0.1.tar.gz -> greenstalk-1.0.1.tar.gz +SRC_URI=https://github.com/justinmayhew/greenstalk/archive/v1.0.1.tar.gz -> greenstalk-1.0.1.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=88bd3c49e98511498d7a59e5fd8751d9 +_md5_=5644123f72b777380412ddf305ad0db2 diff --git a/metadata/md5-cache/dev-python/h11-0.11.0 b/metadata/md5-cache/dev-python/h11-0.11.0 index e109f0b7001d..f7e02c73a8da 100644 --- a/metadata/md5-cache/dev-python/h11-0.11.0 +++ b/metadata/md5-cache/dev-python/h11-0.11.0 @@ -2,7 +2,7 @@ BDEPEND=test? ( >=dev-python/pytest-4.5.0[python_targets_python3_6(-)?,python_ta DEFINED_PHASES=compile configure install prepare test DESCRIPTION=A pure-Python implementation of HTTP/1.1 inspired by hyper-h2 EAPI=7 -HOMEPAGE=https://github.com/python-hyper/h11 https://pypi.python.org/pypi/h11 +HOMEPAGE=https://github.com/python-hyper/h11/ https://pypi.org/project/h11/ IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 ~x86 LICENSE=MIT @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/h/h11/h11-0.11.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=3ccbe67e0c428f09f3a62fd6db5be53a +_md5_=f4a1ebb7c956fac3695a39922443ac14 diff --git a/metadata/md5-cache/dev-python/humanfriendly-8.2 b/metadata/md5-cache/dev-python/humanfriendly-8.2 index a727b6f9a649..52671ba460d3 100644 --- a/metadata/md5-cache/dev-python/humanfriendly-8.2 +++ b/metadata/md5-cache/dev-python/humanfriendly-8.2 @@ -2,7 +2,7 @@ BDEPEND=test? ( dev-python/capturer[python_targets_pypy3(-)?,python_targets_pyth DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Human friendly output for text interfaces using Python EAPI=7 -HOMEPAGE=https://pypi.org/project/humanfriendly https://github.com/xolox/python-humanfriendly https://humanfriendly.readthedocs.org +HOMEPAGE=https://pypi.org/project/humanfriendly/ https://github.com/xolox/python-humanfriendly/ https://humanfriendly.readthedocs.io/ IUSE=test doc python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 ~arm ~x86 ~amd64-linux ~x86-linux LICENSE=MIT @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/h/humanfriendly/humanfriendly-8.2.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=eb0db93c6970468184f457b73d8e4604 +_md5_=51bbf19f490e74d2867d4c3fcb33d5f0 diff --git a/metadata/md5-cache/dev-python/hypothesis-5.41.1 b/metadata/md5-cache/dev-python/hypothesis-5.41.1 index 8aba72867770..0ae3b45cd6d5 100644 --- a/metadata/md5-cache/dev-python/hypothesis-5.41.1 +++ b/metadata/md5-cache/dev-python/hypothesis-5.41.1 @@ -4,7 +4,7 @@ DESCRIPTION=A library for property based testing EAPI=7 HOMEPAGE=https://github.com/HypothesisWorks/hypothesis https://pypi.org/project/hypothesis/ IUSE=cli test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha amd64 arm arm64 ~ia64 ppc ppc64 ~riscv sparc x86 +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86 LICENSE=MPL-2.0 RDEPEND=>=dev-python/attrs-19.2.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/sortedcontainers-2.1.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] cli? ( python_targets_python3_6? ( dev-python/black[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/click[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_7? ( dev-python/black[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/click[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_8? ( dev-python/black[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/click[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_9? ( dev-python/black[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/click[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+),sqlite] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+),sqlite] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+),sqlite] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+),sqlite] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+),sqlite] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-5.41.1.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 optfeature 6c9aa35fc16df43d7142ef2660e00e25 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=bf0d71523dd0d39361384b8f4511451d +_md5_=4eb38e7d04378f1ec492d5933ad92a1d diff --git a/metadata/md5-cache/dev-python/hypothesis-5.43.3 b/metadata/md5-cache/dev-python/hypothesis-5.43.3 new file mode 100644 index 000000000000..dfd74721705e --- /dev/null +++ b/metadata/md5-cache/dev-python/hypothesis-5.43.3 @@ -0,0 +1,15 @@ +BDEPEND=test? ( >=dev-python/attrs-19.2.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/sortedcontainers-2.1.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] cli? ( python_targets_python3_6? ( dev-python/black[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/click[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_7? ( dev-python/black[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/click[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_8? ( dev-python/black[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/click[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_9? ( dev-python/black[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/click[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) ) dev-python/mock[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pexpect[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pytest-5.3.5[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pytest-xdist[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] !!=dev-python/pypy3-7.3.0:0=[threads(+),sqlite] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+),sqlite] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+),sqlite] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+),sqlite] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+),sqlite] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install postinst prepare test +DESCRIPTION=A library for property based testing +EAPI=7 +HOMEPAGE=https://github.com/HypothesisWorks/hypothesis https://pypi.org/project/hypothesis/ +IUSE=cli test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos +LICENSE=MPL-2.0 +RDEPEND=>=dev-python/attrs-19.2.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/sortedcontainers-2.1.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] cli? ( python_targets_python3_6? ( dev-python/black[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/click[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_7? ( dev-python/black[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/click[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_8? ( dev-python/black[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/click[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_9? ( dev-python/black[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/click[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+),sqlite] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+),sqlite] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+),sqlite] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+),sqlite] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+),sqlite] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-5.43.3.tar.gz +_eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 optfeature 6c9aa35fc16df43d7142ef2660e00e25 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=763ab15b706893c9e7445e0fde3c7c8f diff --git a/metadata/md5-cache/dev-python/idna-ssl-1.1.0-r1 b/metadata/md5-cache/dev-python/idna-ssl-1.1.0-r1 index 6033474a4d2b..bfb503223aee 100644 --- a/metadata/md5-cache/dev-python/idna-ssl-1.1.0-r1 +++ b/metadata/md5-cache/dev-python/idna-ssl-1.1.0-r1 @@ -4,7 +4,7 @@ DESCRIPTION=Patch ssl.match_hostname for Unicode(idna) domains support EAPI=7 HOMEPAGE=https://github.com/aio-libs/idna-ssl https://pypi.org/project/idna_ssl/ IUSE=test python_targets_python3_6 python_targets_python3_7 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86 LICENSE=MIT RDEPEND=dev-python/idna[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/aio-libs/idna-ssl/archive/v1.1.0.tar.gz -> idna-ssl-1.1.0.gh.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=4432bd8c9481ec77054abad4e33ed249 +_md5_=4813c1031a58d4acc8aad26afd085a8b diff --git a/metadata/md5-cache/dev-python/itypes-1.1.0 b/metadata/md5-cache/dev-python/itypes-1.1.0 index 9f6833e47842..0e0a7eddc9d5 100644 --- a/metadata/md5-cache/dev-python/itypes-1.1.0 +++ b/metadata/md5-cache/dev-python/itypes-1.1.0 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=dev-python/setuptools[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] DESCRIPTION=basic immutable container types for python EAPI=7 -HOMEPAGE=https://github.com/tomchristie/itypes +HOMEPAGE=https://github.com/PavanTatikonda/itypes IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 LICENSE=BSD @@ -12,4 +12,4 @@ REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targe SLOT=0 SRC_URI=mirror://pypi/i/itypes/itypes-1.1.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=a2bf08048215d54cc8c5642f59f19277 +_md5_=698f7265579cb188dc707f26271fc664 diff --git a/metadata/md5-cache/dev-python/latexcodec-2.0.0 b/metadata/md5-cache/dev-python/latexcodec-2.0.0 index 9ce7c96fe4a3..314038b19e9a 100644 --- a/metadata/md5-cache/dev-python/latexcodec-2.0.0 +++ b/metadata/md5-cache/dev-python/latexcodec-2.0.0 @@ -2,7 +2,7 @@ BDEPEND=test? ( dev-python/six[python_targets_python3_6(-)?,python_targets_pytho DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Lexer and codec to work with LaTeX code in Python EAPI=7 -HOMEPAGE=https://github.com/mcmtroffaes/latexcodec/ https://pypi.org/project/pybtex/ +HOMEPAGE=https://github.com/mcmtroffaes/latexcodec/ https://pypi.org/project/latexcodec/ IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=~amd64 ~x86 LICENSE=MIT @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/l/latexcodec/latexcodec-2.0.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=fbfe2b61408eaf0e35a228f941944009 +_md5_=54f91767adc28fd51b9c97d88a22cb11 diff --git a/metadata/md5-cache/dev-python/lazr-delegates-2.0.4 b/metadata/md5-cache/dev-python/lazr-delegates-2.0.4 index c6d7fd13152a..768b210e0aa8 100644 --- a/metadata/md5-cache/dev-python/lazr-delegates-2.0.4 +++ b/metadata/md5-cache/dev-python/lazr-delegates-2.0.4 @@ -2,7 +2,7 @@ BDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3 DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Easily write objects that delegate behavior EAPI=7 -HOMEPAGE=https://code.launchpad.net/lazr.deletages +HOMEPAGE=https://code.launchpad.net/lazr.delegates IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=~amd64 ~x86 LICENSE=Apache-2.0 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targe SLOT=0 SRC_URI=mirror://pypi/l/lazr.delegates/lazr.delegates-2.0.4.tar.gz -> lazr-delegates-2.0.4.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=dac42d4cbff42577647583cf134ce298 +_md5_=4694c84466160ef068c91b1c6810a781 diff --git a/metadata/md5-cache/dev-python/mando-0.6.4 b/metadata/md5-cache/dev-python/mando-0.6.4 index 1d0d1ad385eb..5c4073641bdd 100644 --- a/metadata/md5-cache/dev-python/mando-0.6.4 +++ b/metadata/md5-cache/dev-python/mando-0.6.4 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=dev-python/setuptools[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] doc? ( dev-python/sphinx[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) test? ( dev-python/pytest[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/coverage[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/tox[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) DESCRIPTION=Create Python CLI apps with little to no effort at all! EAPI=7 -HOMEPAGE=https://mando.readthedocs.org/ https://github.com/rubik/mando +HOMEPAGE=https://mando.readthedocs.io/ https://github.com/rubik/mando/ IUSE=doc examples test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=~amd64 ~x86 LICENSE=MIT @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/rubik/mando/archive/v0.6.4.tar.gz -> mando-0.6.4.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=96455e2f8bb751d4862773148343beb8 +_md5_=2f1175b7d97882d2faa223910899b657 diff --git a/metadata/md5-cache/dev-python/markdown2-2.3.10 b/metadata/md5-cache/dev-python/markdown2-2.3.10 index eb7d20b57de2..002e49c5dc07 100644 --- a/metadata/md5-cache/dev-python/markdown2-2.3.10 +++ b/metadata/md5-cache/dev-python/markdown2-2.3.10 @@ -4,7 +4,7 @@ DESCRIPTION=Python Markdown language reimplementation EAPI=7 HOMEPAGE=https://github.com/trentm/python-markdown2 IUSE=test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux +KEYWORDS=~amd64 ppc sparc ~x86 ~amd64-linux ~x86-linux LICENSE=MIT RDEPEND=dev-python/pygments[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/m/markdown2/markdown2-2.3.10.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=796eb233f05516568c2bf41a9590abdf +_md5_=18df7cc58a6aab2730da105168dab9e5 diff --git a/metadata/md5-cache/dev-python/nototools-0.2.13 b/metadata/md5-cache/dev-python/nototools-0.2.13 index ce3b8c645fbe..ebc358a92dc4 100644 --- a/metadata/md5-cache/dev-python/nototools-0.2.13 +++ b/metadata/md5-cache/dev-python/nototools-0.2.13 @@ -2,7 +2,7 @@ BDEPEND=test? ( media-gfx/scour >=dev-python/booleanOperations-0.7.0[python_targ DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Noto fonts support tools and scripts plus web site generation EAPI=7 -HOMEPAGE=https://github.com/googlei18n/nototools +HOMEPAGE=https://github.com/googlefonts/nototools IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 LICENSE=Apache-2.0 OFL-1.1 @@ -12,4 +12,4 @@ RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=mirror://pypi/n/notofonttools/notofonttools-0.2.13.tar.gz -> nototools-0.2.13.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=7a0a5a43679e86e7ab4a03f141d8005f +_md5_=cb4c218ff6e0a5e273af31a3fc989c41 diff --git a/metadata/md5-cache/dev-python/numpy-1.19.4 b/metadata/md5-cache/dev-python/numpy-1.19.4 index 91ede7a031bb..9ce5c2e579d5 100644 --- a/metadata/md5-cache/dev-python/numpy-1.19.4 +++ b/metadata/md5-cache/dev-python/numpy-1.19.4 @@ -5,7 +5,7 @@ DESCRIPTION=Fast array and numerical python library EAPI=7 HOMEPAGE=https://www.numpy.org IUSE=doc lapack test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=BSD RDEPEND=lapack? ( >=virtual/cblas-3.8 >=virtual/lapack-3.8 ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] lapack? ( virtual/fortran ) REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/n/numpy/numpy-1.19.4.zip doc? ( https://numpy.org/doc/1.16/numpy-html.zip -> numpy-html-1.16.4.zip https://numpy.org/doc/1.16/numpy-ref.pdf -> numpy-ref-1.16.4.pdf https://numpy.org/doc/1.16/numpy-user.pdf -> numpy-user-1.16.4.pdf ) _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 fortran-2 b4796813ccda91c9c0d3463fc90aa969 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=54b2fb1c338659e12405faf141bcd867 +_md5_=d7eb8d182977496868152c2632b47ba0 diff --git a/metadata/md5-cache/dev-python/oauthlib-3.1.0 b/metadata/md5-cache/dev-python/oauthlib-3.1.0 index 2ad19cc3d0d0..a8943709af3a 100644 --- a/metadata/md5-cache/dev-python/oauthlib-3.1.0 +++ b/metadata/md5-cache/dev-python/oauthlib-3.1.0 @@ -2,7 +2,7 @@ BDEPEND=test? ( dev-python/mock[python_targets_python3_6(-)?,python_targets_pyth DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Spec-compliant and thorough implementation of the OAuth request-signing logic EAPI=7 -HOMEPAGE=https://github.com/ioauthlib/oauthlib https://pypi.org/project/oauthlib/ +HOMEPAGE=https://github.com/oauthlib/oauthlib https://pypi.org/project/oauthlib/ IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=amd64 ~arm arm64 x86 LICENSE=BSD @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/o/oauthlib/oauthlib-3.1.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=29a173796b29cb09556b6920f63a0a30 +_md5_=4509927c85b0b577c14a0f3e5d4a91a5 diff --git a/metadata/md5-cache/dev-python/oslo-rootwrap-6.2.0 b/metadata/md5-cache/dev-python/oslo-rootwrap-6.2.0 index 902bb12e42a0..9a7d9b64150c 100644 --- a/metadata/md5-cache/dev-python/oslo-rootwrap-6.2.0 +++ b/metadata/md5-cache/dev-python/oslo-rootwrap-6.2.0 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=>=dev-python/pbr-2.0.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] !~dev-python/pbr-2.1.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] DESCRIPTION=Allows fine filtering of shell commands to run as root from OpenStack services EAPI=7 -HOMEPAGE=https://pypi.org/project/oslo.config/ +HOMEPAGE=https://pypi.org/project/oslo.rootwrap/ IUSE=python_targets_python3_7 python_targets_python3_8 KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 @@ -12,4 +12,4 @@ REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 ) SLOT=0 SRC_URI=mirror://pypi/o/oslo.rootwrap/oslo.rootwrap-6.2.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=d36e80a7607917c342efb4b09968e5b7 +_md5_=77c2a43a487c26b8a23279b3fc7267d9 diff --git a/metadata/md5-cache/dev-python/owslib-0.20.0 b/metadata/md5-cache/dev-python/owslib-0.20.0 index 413c5c7f7f06..94a3d3029852 100644 --- a/metadata/md5-cache/dev-python/owslib-0.20.0 +++ b/metadata/md5-cache/dev-python/owslib-0.20.0 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=dev-python/setuptools[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] test? ( dev-python/pillow[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pytest[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) DESCRIPTION=Library for client programming with Open Geospatial Consortium web service EAPI=7 -HOMEPAGE=https://geopython.github.io/OWSLib +HOMEPAGE=https://geopython.github.io/OWSLib/ IUSE=test python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=amd64 x86 LICENSE=BSD @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://github.com/geopython/owslib/archive/0.20.0.tar.gz -> owslib-0.20.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=af201eac9666b2c6a30ec370ebd0564e +_md5_=1b28ea2778074f4514fbf1614be20b52 diff --git a/metadata/md5-cache/dev-python/parameterized-0.7.4 b/metadata/md5-cache/dev-python/parameterized-0.7.4 index 219e34bc1e85..8a22b990f30b 100644 --- a/metadata/md5-cache/dev-python/parameterized-0.7.4 +++ b/metadata/md5-cache/dev-python/parameterized-0.7.4 @@ -4,7 +4,7 @@ DESCRIPTION=Parameterized testing with any Python test framework EAPI=7 HOMEPAGE=https://github.com/wolever/parameterized IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha amd64 ~arm ~arm64 x86 +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~sparc x86 LICENSE=BSD RDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/p/parameterized/parameterized-0.7.4.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=33cada5d5f85434f925883be80e7ed7d +_md5_=160a9316885c955a803706896c466211 diff --git a/metadata/md5-cache/dev-python/pep8-1.7.1 b/metadata/md5-cache/dev-python/pep8-1.7.1 index 4cbb62c2361c..b30bde75f742 100644 --- a/metadata/md5-cache/dev-python/pep8-1.7.1 +++ b/metadata/md5-cache/dev-python/pep8-1.7.1 @@ -2,7 +2,7 @@ BDEPEND=doc? ( || ( ( dev-lang/python:3.8 dev-python/sphinx[python_targets_pytho DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Python style guide checker EAPI=7 -HOMEPAGE=https://github.com/PyCQA/pep8 https://pypi.org/project/pep8/ +HOMEPAGE=https://github.com/PyCQA/pycodestyle/ https://pypi.org/project/pep8/ IUSE=doc test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=~alpha amd64 arm ~arm64 hppa ~ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/p/pep8/pep8-1.7.1.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=1fa68703d0d4638209362bdb045fe352 +_md5_=860d10a18c6c68c804874aebd518e380 diff --git a/metadata/md5-cache/dev-python/prometheus_client-0.9.0 b/metadata/md5-cache/dev-python/prometheus_client-0.9.0 index 91d31d3b1d16..b125b6a56231 100644 --- a/metadata/md5-cache/dev-python/prometheus_client-0.9.0 +++ b/metadata/md5-cache/dev-python/prometheus_client-0.9.0 @@ -2,7 +2,7 @@ BDEPEND=test? ( dev-python/twisted[python_targets_python3_6(-)?,python_targets_p DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Python client for the Prometheus monitoring system EAPI=7 -HOMEPAGE=https://pypi.org/project/prometheus_client/ https://github.com/prometheus/client_python +HOMEPAGE=https://pypi.org/project/prometheus-client/ https://github.com/prometheus/client_python/ IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 ~arm64 ~x86 LICENSE=Apache-2.0 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/prometheus/client_python/archive/v0.9.0.tar.gz -> prometheus_client-0.9.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=3e43eae9d74e8d0fdef8a7b0335c718c +_md5_=c5aa57f2595f0daaf1dcfb751ea6ddb5 diff --git a/metadata/md5-cache/dev-python/psycopg-2.8.6-r1 b/metadata/md5-cache/dev-python/psycopg-2.8.6-r1 index 368d07e052da..7f5a851b9679 100644 --- a/metadata/md5-cache/dev-python/psycopg-2.8.6-r1 +++ b/metadata/md5-cache/dev-python/psycopg-2.8.6-r1 @@ -5,7 +5,7 @@ DESCRIPTION=PostgreSQL database adapter for Python EAPI=7 HOMEPAGE=https://www.psycopg.org https://pypi.org/project/psycopg2/ IUSE=debug test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha ~amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris +KEYWORDS=~alpha ~amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris LICENSE=LGPL-3+ RDEPEND=>=dev-db/postgresql-8.1:* python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=2 SRC_URI=mirror://pypi/p/psycopg2/psycopg2-2.8.6.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=cca1751ba1494243d539fdb99a477d2d +_md5_=d0d0bc3b3688b25739c9a4bb274e7d50 diff --git a/metadata/md5-cache/dev-python/pweave-0.30.3-r1 b/metadata/md5-cache/dev-python/pweave-0.30.3-r1 index 7eadd0b4190f..501d27fb9de2 100644 --- a/metadata/md5-cache/dev-python/pweave-0.30.3-r1 +++ b/metadata/md5-cache/dev-python/pweave-0.30.3-r1 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=test? ( dev-python/coverage[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/matplotlib[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/nose[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/notebook[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/scipy[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) DESCRIPTION=Scientific report generator and literate programming tool EAPI=7 -HOMEPAGE=http://mpastell.com/pweave https://github.com/mpastell/Pweave +HOMEPAGE=http://mpastell.com/pweave/ https://github.com/mpastell/Pweave IUSE=examples doc test python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 ~x86 LICENSE=BSD @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/P/Pweave/Pweave-0.30.3.tar.gz -> pweave-0.30.3.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=72c72d781e92ba936182063faf5ba388 +_md5_=264d80a7b9dfbc0ef9f6fa0c5956bc0a diff --git a/metadata/md5-cache/dev-python/pyasn1-0.4.8-r1 b/metadata/md5-cache/dev-python/pyasn1-0.4.8-r1 index 862417f1ad7d..0a3b1b53c2e3 100644 --- a/metadata/md5-cache/dev-python/pyasn1-0.4.8-r1 +++ b/metadata/md5-cache/dev-python/pyasn1-0.4.8-r1 @@ -2,7 +2,7 @@ BDEPEND=doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_pytho DEFINED_PHASES=compile configure install prepare test DESCRIPTION=ASN.1 library for Python EAPI=7 -HOMEPAGE=http://snmplabs.com/pyasn1/ +HOMEPAGE=https://pypi.org/project/pyasn1/ https://github.com/etingof/pyasn1/ IUSE=doc doc python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos ~x86-macos LICENSE=BSD-2 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_p SLOT=0 SRC_URI=mirror://pypi/p/pyasn1/pyasn1-0.4.8.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=1c9a6e29c485dbd8677fcff60906a57d +_md5_=ac02b6ab555274a8ad4199deb4073290 diff --git a/metadata/md5-cache/dev-python/pyasn1-modules-0.2.8-r1 b/metadata/md5-cache/dev-python/pyasn1-modules-0.2.8-r1 index 662ce85e043a..015b9659ee10 100644 --- a/metadata/md5-cache/dev-python/pyasn1-modules-0.2.8-r1 +++ b/metadata/md5-cache/dev-python/pyasn1-modules-0.2.8-r1 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=>=dev-python/pyasn1-0.4.6[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] test? ( dev-python/pytest[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) DESCRIPTION=pyasn1 modules EAPI=7 -HOMEPAGE=http://snmplabs.com/pyasn1/ https://github.com/etingof/pyasn1-modules/ +HOMEPAGE=https://pypi.org/project/pyasn1-modules/ https://github.com/etingof/pyasn1-modules/ IUSE=test test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos LICENSE=BSD-2 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://pypi/p/pyasn1-modules/pyasn1-modules-0.2.8.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=565e2732ddce95df3257fda2ac272cbe +_md5_=8ac73187e0c56af2946a4cd5e944fbe1 diff --git a/metadata/md5-cache/dev-python/pycollada-0.7.1 b/metadata/md5-cache/dev-python/pycollada-0.7.1 index 7a73a6d95fcf..6ca41e381420 100644 --- a/metadata/md5-cache/dev-python/pycollada-0.7.1 +++ b/metadata/md5-cache/dev-python/pycollada-0.7.1 @@ -2,7 +2,7 @@ BDEPEND=doc? ( || ( ( dev-lang/python:3.8 dev-python/sphinx[python_targets_pytho DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Python library for reading and writing COLLADA documents EAPI=7 -HOMEPAGE=https://pycollada.readthedocs.org/ +HOMEPAGE=https://pycollada.readthedocs.io/ IUSE=examples doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=~amd64 ~x86 LICENSE=BSD @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pycollada/pycollada/archive/v0.7.1.tar.gz -> pycollada-0.7.1.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=5a4e5f77027c7dbff542a9d2186a4cd5 +_md5_=2160884b66edf5298836a823d1dd9c54 diff --git a/metadata/md5-cache/dev-python/pycryptodome-3.9.9 b/metadata/md5-cache/dev-python/pycryptodome-3.9.9 index ef3e4fc861e7..28a7b4837918 100644 --- a/metadata/md5-cache/dev-python/pycryptodome-3.9.9 +++ b/metadata/md5-cache/dev-python/pycryptodome-3.9.9 @@ -5,7 +5,7 @@ DESCRIPTION=A self-contained cryptographic library for Python EAPI=7 HOMEPAGE=https://www.pycryptodome.org https://github.com/Legrandin/pycryptodome/ https://pypi.org/project/pycryptodome/ IUSE=test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=BSD-2 Unlicense RDEPEND=dev-libs/gmp:0 virtual/python-cffi[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] !dev-python/pycrypto python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Legrandin/pycryptodome/archive/v3.9.9.tar.gz -> pycryptodome-3.9.9.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=243af2b0daf77a9145e8e94df889e97b +_md5_=2aa35792cc7b309d7578a90c635a0b70 diff --git a/metadata/md5-cache/dev-python/pyinotify-0.9.6 b/metadata/md5-cache/dev-python/pyinotify-0.9.6 index b6bbf8aab150..f71b81ffc00f 100644 --- a/metadata/md5-cache/dev-python/pyinotify-0.9.6 +++ b/metadata/md5-cache/dev-python/pyinotify-0.9.6 @@ -2,13 +2,13 @@ BDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+)] ) python DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Python module used for monitoring filesystems events EAPI=7 -HOMEPAGE=http://trac.dbzteam.org/pyinotify https://pypi.org/project/pyinotify/ https://github.com/seb-m/pyinotify/ +HOMEPAGE=https://pypi.org/project/pyinotify/ https://github.com/seb-m/pyinotify/ IUSE=examples python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv s390 sparc x86 ~amd64-linux ~x86-linux LICENSE=MIT RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) SLOT=0 -SRC_URI=http://seb.dbzteam.org/pub/pyinotify/releases/pyinotify-0.9.6.tar.gz +SRC_URI=https://seb.dbzteam.org/pub/pyinotify/releases/pyinotify-0.9.6.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=d76cd046ba82406548bf114606171153 +_md5_=24f71e948449e94279ce3e84336342c6 diff --git a/metadata/md5-cache/dev-python/pykerberos-1.3.0-r1 b/metadata/md5-cache/dev-python/pykerberos-1.3.0-r1 index 5b0c2ed41e8d..b55dc9b509b0 100644 --- a/metadata/md5-cache/dev-python/pykerberos-1.3.0-r1 +++ b/metadata/md5-cache/dev-python/pykerberos-1.3.0-r1 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=app-crypt/mit-krb5 DESCRIPTION=A high-level Python wrapper for Kerberos/GSSAPI operations EAPI=7 -HOMEPAGE=https://trac.calendarserver.org/wiki/PyKerberos https://github.com/apple/ccs-pykerberos/ https://pypi.org/project/kerberos/ +HOMEPAGE=https://www.calendarserver.org/PyKerberos.html https://github.com/apple/ccs-pykerberos/ https://pypi.org/project/kerberos/ IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=amd64 ~arm arm64 ~hppa ~ppc64 x86 LICENSE=Apache-2.0 @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://github.com/apple/ccs-pykerberos/archive/PyKerberos-1.3.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=0d5e4a685310498d0ef2d27d1fdb5d1a +_md5_=86020368b93ca8a20bcb678bcf00f44e diff --git a/metadata/md5-cache/dev-python/pymssql-2.1.3 b/metadata/md5-cache/dev-python/pymssql-2.1.3 index 72c7e761fde0..67b44b5c01e2 100644 --- a/metadata/md5-cache/dev-python/pymssql-2.1.3 +++ b/metadata/md5-cache/dev-python/pymssql-2.1.3 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=>=dev-db/freetds-0.63[mssql] dev-python/cython[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/setuptools[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] test? ( dev-python/pytest[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/unittest2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) DESCRIPTION=Simple MSSQL python extension module EAPI=7 -HOMEPAGE=http://www.pymssql.org/ https://pypi.python.org/pypi/pymssql +HOMEPAGE=https://www.pymssql.org/ https://pypi.org/project/pymssql/ IUSE=test python_targets_python3_6 python_targets_python3_7 KEYWORDS=~alpha amd64 ~hppa ~ia64 ppc ppc64 ~s390 sparc x86 LICENSE=LGPL-2.1 @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/pymssql/pymssql-2.1.3.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=38a10176d7804c012a5315798fe03b84 +_md5_=19df82f477577b4c4316872f5285462f diff --git a/metadata/md5-cache/dev-python/pypax-0.9.5 b/metadata/md5-cache/dev-python/pypax-0.9.5 index c915022a6663..c0f550610e99 100644 --- a/metadata/md5-cache/dev-python/pypax-0.9.5 +++ b/metadata/md5-cache/dev-python/pypax-0.9.5 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=dev-python/setuptools[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ptpax? ( dev-libs/elfutils ) xtpax? ( sys-apps/attr ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] DESCRIPTION=Python module to get or set either PT_PAX and/or XATTR_PAX flags EAPI=6 -HOMEPAGE=https://dev.gentoo.org/~blueness/elfix/ https://www.gentoo.org/proj/en/hardened/pax-quickstart.xml +HOMEPAGE=https://dev.gentoo.org/~blueness/elfix/ https://wiki.gentoo.org/wiki/Project:Hardened/PaX_Quickstart IUSE=+ptpax +xtpax python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 sparc x86 LICENSE=GPL-3 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( ptpax xtpax ) || ( python_targets_python3_6 python_targets_pyt SLOT=0 SRC_URI=https://dev.gentoo.org/~blueness/elfix/elfix-0.9.5.tar.gz _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 6492ae184ebb9d8124e5e0b23db93433 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=53003bdda6b19ad9168d7fe99ccc1732 +_md5_=22aeea9eae88ce1439c076ca5b61f7e9 diff --git a/metadata/md5-cache/dev-python/pypax-9999 b/metadata/md5-cache/dev-python/pypax-9999 index 75b926cb3d7e..1b291c2e4239 100644 --- a/metadata/md5-cache/dev-python/pypax-9999 +++ b/metadata/md5-cache/dev-python/pypax-9999 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install prepare test unpack DEPEND=dev-python/setuptools[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ptpax? ( dev-libs/elfutils ) xtpax? ( sys-apps/attr ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-vcs/git-1.8.2.1[curl] DESCRIPTION=Python module to get or set either PT_PAX and/or XATTR_PAX flags EAPI=6 -HOMEPAGE=https://dev.gentoo.org/~blueness/elfix/ https://www.gentoo.org/proj/en/hardened/pax-quickstart.xml +HOMEPAGE=https://dev.gentoo.org/~blueness/elfix/ https://wiki.gentoo.org/wiki/Project:Hardened/PaX_Quickstart IUSE=+ptpax +xtpax python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 LICENSE=GPL-3 PROPERTIES=live @@ -10,4 +10,4 @@ RDEPEND=ptpax? ( dev-libs/elfutils ) xtpax? ( sys-apps/attr ) python_targets_pyt REQUIRED_USE=|| ( ptpax xtpax ) || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) SLOT=0 _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 6492ae184ebb9d8124e5e0b23db93433 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d194828d4fb3772ffd388780218e7dc2 +_md5_=4a12a75fb6e479d6f812781a90700217 diff --git a/metadata/md5-cache/dev-python/pysnmp-4.4.12-r1 b/metadata/md5-cache/dev-python/pysnmp-4.4.12-r1 index 1d1f157bdc56..81135555dd51 100644 --- a/metadata/md5-cache/dev-python/pysnmp-4.4.12-r1 +++ b/metadata/md5-cache/dev-python/pysnmp-4.4.12-r1 @@ -2,7 +2,7 @@ BDEPEND=doc? ( || ( ( dev-lang/python:3.8 dev-python/sphinx[python_targets_pytho DEFINED_PHASES=compile configure install postinst prepare test DESCRIPTION=Python SNMP library EAPI=7 -HOMEPAGE=http://snmplabs.com/pysnmp/ https://pypi.org/project/pysnmp/ https://github.com/etingof/pysnmp +HOMEPAGE=https://pypi.org/project/pysnmp/ https://github.com/etingof/pysnmp IUSE=doc examples doc python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=amd64 ~arm ~ia64 ppc ~sparc x86 LICENSE=BSD @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targe SLOT=0 SRC_URI=mirror://pypi/p/pysnmp/pysnmp-4.4.12.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=965ffab68378fcb53a8495a1e5560188 +_md5_=24b55e8ae06c7f50dc64c293c55df548 diff --git a/metadata/md5-cache/dev-python/pysnmp-999999 b/metadata/md5-cache/dev-python/pysnmp-999999 index 3a89a2e4622b..807789932b4e 100644 --- a/metadata/md5-cache/dev-python/pysnmp-999999 +++ b/metadata/md5-cache/dev-python/pysnmp-999999 @@ -2,7 +2,7 @@ BDEPEND=doc? ( || ( ( dev-lang/python:3.8 dev-python/sphinx[python_targets_pytho DEFINED_PHASES=compile configure install postinst prepare test unpack DESCRIPTION=Python SNMP library EAPI=7 -HOMEPAGE=http://snmplabs.com/pysnmp/ https://pypi.org/project/pysnmp/ https://github.com/etingof/pysnmp +HOMEPAGE=https://pypi.org/project/pysnmp/ https://github.com/etingof/pysnmp IUSE=doc examples doc python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 LICENSE=BSD PROPERTIES=live @@ -10,4 +10,4 @@ RDEPEND=>=dev-python/pyasn1-0.2.3[python_targets_python3_6(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) SLOT=0 _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 git-r3 3e7ec3d6619213460c85e2aa48398441 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=69567e495f5d268012082f16edb7f5f7 +_md5_=eebc5e5b6e90f06c80ed416a60c349b2 diff --git a/metadata/md5-cache/dev-python/pysnmp-mibs-0.1.6 b/metadata/md5-cache/dev-python/pysnmp-mibs-0.1.6 index cdd051329a0c..c9d6ae54f427 100644 --- a/metadata/md5-cache/dev-python/pysnmp-mibs-0.1.6 +++ b/metadata/md5-cache/dev-python/pysnmp-mibs-0.1.6 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=>=dev-python/pysnmp-4.2.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] DESCRIPTION=SNMP framework in Python - MIBs EAPI=6 -HOMEPAGE=http://snmplabs.com/pysnmp/ https://github.com/etingof/pysnmp-mibs +HOMEPAGE=https://github.com/etingof/pysnmp-mibs IUSE=python_targets_python3_6 python_targets_python3_7 KEYWORDS=~amd64 ~x86 LICENSE=BSD @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pysnmp-mibs/pysnmp-mibs-0.1.6.tar.gz _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 6492ae184ebb9d8124e5e0b23db93433 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=54c2ed2f599ce3be97f249de59c198ed +_md5_=ba2a28f55e5d8ba5ce3e5d26b69a15cf diff --git a/metadata/md5-cache/dev-python/pytest-aiohttp-0.3.0-r1 b/metadata/md5-cache/dev-python/pytest-aiohttp-0.3.0-r1 index 09854094d944..54fa174c2bcf 100644 --- a/metadata/md5-cache/dev-python/pytest-aiohttp-0.3.0-r1 +++ b/metadata/md5-cache/dev-python/pytest-aiohttp-0.3.0-r1 @@ -4,11 +4,11 @@ DESCRIPTION=pytest plugin for aiohttp support EAPI=7 HOMEPAGE=https://github.com/aio-libs/pytest-aiohttp/ IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~x64-macos +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~x64-macos LICENSE=Apache-2.0 RDEPEND=>=dev-python/pytest-5.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/aiohttp-0.22.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) SLOT=0 SRC_URI=mirror://pypi/p/pytest-aiohttp/pytest-aiohttp-0.3.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=881f0e424a10b8b0b368b5a9663c3dbc +_md5_=7fe005d2db707d08de0cfb119f77857f diff --git a/metadata/md5-cache/dev-python/pytest-describe-1.0.0 b/metadata/md5-cache/dev-python/pytest-describe-1.0.0 index 96a271c57c29..3eb8139a884c 100644 --- a/metadata/md5-cache/dev-python/pytest-describe-1.0.0 +++ b/metadata/md5-cache/dev-python/pytest-describe-1.0.0 @@ -2,7 +2,7 @@ BDEPEND=test? ( >=dev-python/pytest-2.6.0[python_targets_python3_6(-)?,python_ta DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Describe-style plugin for pytest EAPI=7 -HOMEPAGE=https://github.com/pytest-dev/pytest-describe https://pypi.org/project/pytest-describe +HOMEPAGE=https://github.com/pytest-dev/pytest-describe/ https://pypi.org/project/pytest-describe/ IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=MIT @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/p/pytest-describe/pytest-describe-1.0.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=33a64ea955467bdb50e02b3d0e83e2e1 +_md5_=9cb6cb89779e0a553da9a6604a63bad6 diff --git a/metadata/md5-cache/dev-python/pytest-flakes-4.0.0 b/metadata/md5-cache/dev-python/pytest-flakes-4.0.0 index 4b9c1704a2ad..1f130f71a1a0 100644 --- a/metadata/md5-cache/dev-python/pytest-flakes-4.0.0 +++ b/metadata/md5-cache/dev-python/pytest-flakes-4.0.0 @@ -2,7 +2,7 @@ BDEPEND=dev-python/setuptools[python_targets_pypy3(-)?,python_targets_python3_6( DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Collection of small Python functions & classes EAPI=7 -HOMEPAGE=https://pypi.org/project/python-utils/ +HOMEPAGE=https://pypi.org/project/pytest-flakes/ IUSE=doc test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 KEYWORDS=~amd64 LICENSE=BSD @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/p/pytest-flakes/pytest-flakes-4.0.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=6101e745b40fedf110ee6905c7a4721d +_md5_=cc44825b088657d578e17561eaef9065 diff --git a/metadata/md5-cache/dev-python/pytest-ordering-0.6 b/metadata/md5-cache/dev-python/pytest-ordering-0.6 index 5553e4f65eff..8c93f0fa949c 100644 --- a/metadata/md5-cache/dev-python/pytest-ordering-0.6 +++ b/metadata/md5-cache/dev-python/pytest-ordering-0.6 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=test? ( dev-python/pytest-ordering[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) DESCRIPTION=pytest plugin to run your tests in a specific order EAPI=7 -HOMEPAGE=https://github.com/ftobia/pytest-ordering https://pypi.org/project/pytest-ordering +HOMEPAGE=https://github.com/ftobia/pytest-ordering/ https://pypi.org/project/pytest-ordering/ IUSE=test doc python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=amd64 x86 LICENSE=MIT @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ftobia/pytest-ordering/archive/0.6.tar.gz -> pytest-ordering-0.6.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=ccd154d46c3b867ece74ea7c0a824a89 +_md5_=0690a5ada90e6b5aecc30dade6edfdae diff --git a/metadata/md5-cache/dev-python/pytest-qt-3.3.0 b/metadata/md5-cache/dev-python/pytest-qt-3.3.0 index 7f9c1f82c88f..ccf5a4f2a6a0 100644 --- a/metadata/md5-cache/dev-python/pytest-qt-3.3.0 +++ b/metadata/md5-cache/dev-python/pytest-qt-3.3.0 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=dev-python/QtPy[gui,testlib,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] DESCRIPTION=pytest plugin for PyQt4 or PyQt5 applications EAPI=7 -HOMEPAGE=https://pypi.org/project/pytest-qt https://github.com/pytest-dev/pytest-qt +HOMEPAGE=https://pypi.org/project/pytest-qt/ https://github.com/pytest-dev/pytest-qt/ IUSE=test doc python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 test KEYWORDS=amd64 x86 LICENSE=MIT @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://pypi/p/pytest-qt/pytest-qt-3.3.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f -_md5_=d4f73c9bd57a8cf3ed6dfbb25146c5f5 +_md5_=9139c937f7c68278dd4882ef972af5ca diff --git a/metadata/md5-cache/dev-python/python-etcd-0.4.5-r1 b/metadata/md5-cache/dev-python/python-etcd-0.4.5-r1 index 37d8c46d166d..2a629a3c0263 100644 --- a/metadata/md5-cache/dev-python/python-etcd-0.4.5-r1 +++ b/metadata/md5-cache/dev-python/python-etcd-0.4.5-r1 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=dev-python/dnspython[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/pyopenssl-0.14[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/urllib3-1.7.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] test? ( dev-db/etcd dev-python/mock[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/nose[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] DESCRIPTION=A python client for etcd EAPI=6 -HOMEPAGE=https://github.com/jplana/python-etcd https://pypi.org/project/python-etcd/ +HOMEPAGE=https://github.com/jplana/python-etcd/ https://pypi.org/project/python-etcd/ IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=~amd64 LICENSE=MIT @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/python-etcd/python-etcd-0.4.5.tar.gz _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 6492ae184ebb9d8124e5e0b23db93433 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=3cf1130603a3819aa6fc7ec50533868a +_md5_=66b9faec97818730ea6af97840b1bc97 diff --git a/metadata/md5-cache/dev-python/python-evdev-1.3.0 b/metadata/md5-cache/dev-python/python-evdev-1.3.0 index 4ee59e233533..e0b8f868a16d 100644 --- a/metadata/md5-cache/dev-python/python-evdev-1.3.0 +++ b/metadata/md5-cache/dev-python/python-evdev-1.3.0 @@ -2,7 +2,7 @@ BDEPEND=test? ( >=dev-python/pytest-4.5.0[python_targets_python3_6(-)?,python_ta DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Python library for evdev bindings EAPI=7 -HOMEPAGE=https://python-evdev.readthedocs.org/ +HOMEPAGE=https://python-evdev.readthedocs.io/ IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=amd64 ~arm ~x86 LICENSE=BSD @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/gvalkov/python-evdev/archive/v1.3.0.tar.gz -> python-evdev-1.3.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=376b654110b372fdf8d7cb51a9197cec +_md5_=832360ca1a81af362be52006179a9875 diff --git a/metadata/md5-cache/dev-python/python-linux-procfs-0.6.1 b/metadata/md5-cache/dev-python/python-linux-procfs-0.6.1 index 0e22284ca830..7e2afbb7e19e 100644 --- a/metadata/md5-cache/dev-python/python-linux-procfs-0.6.1 +++ b/metadata/md5-cache/dev-python/python-linux-procfs-0.6.1 @@ -2,7 +2,7 @@ BDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3 DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Python classes to extract information from the Linux kernel /proc files EAPI=7 -HOMEPAGE=https://www.kernel.org/pub/scm/libs/python/python-linux-procfs/ https://kernel.googlesource.com/pub/scm/libs/python/python-linux-procfs/python-linux-procfs/ +HOMEPAGE=https://git.kernel.org/pub/scm/libs/python/python-linux-procfs/ https://kernel.googlesource.com/pub/scm/libs/python/python-linux-procfs/python-linux-procfs/ IUSE=python_targets_python3_6 python_targets_python3_7 KEYWORDS=~amd64 LICENSE=GPL-2 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 ) SLOT=0 SRC_URI=https://cdn.kernel.org/pub/software/libs/python/python-linux-procfs/python-linux-procfs-0.6.1.tar.xz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=0675dbf5d990287289acb5daf05454b2 +_md5_=f472a244c5f0548e21040415a368ec15 diff --git a/metadata/md5-cache/dev-python/python-sense-hat-2.2.0-r2 b/metadata/md5-cache/dev-python/python-sense-hat-2.2.0-r2 index 89e257d26e6f..5feabac81e01 100644 --- a/metadata/md5-cache/dev-python/python-sense-hat-2.2.0-r2 +++ b/metadata/md5-cache/dev-python/python-sense-hat-2.2.0-r2 @@ -3,13 +3,13 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=dev-python/numpy[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pillow[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/rtimulib[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] DESCRIPTION=Raspberry Pi Sense HAT python library EAPI=7 -HOMEPAGE=https://github.com/RPi-Distro/python-sense-hat +HOMEPAGE=https://github.com/astro-pi/python-sense-hat IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=arm arm64 LICENSE=BSD RDEPEND=dev-python/numpy[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pillow[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/rtimulib[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) SLOT=0 -SRC_URI=https://github.com/RPi-Distro/python-sense-hat/archive/v2.2.0.tar.gz -> python-sense-hat-2.2.0.tar.gz +SRC_URI=https://github.com/astro-pi/python-sense-hat/archive/v2.2.0.tar.gz -> python-sense-hat-2.2.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=95e9897e3872a6633aed72b19c397771 +_md5_=c9192db00456ccb3daf3d479f62e1d7e diff --git a/metadata/md5-cache/dev-python/python-termstyle-0.1.10 b/metadata/md5-cache/dev-python/python-termstyle-0.1.10 index 4461d4186ba4..16f904327319 100644 --- a/metadata/md5-cache/dev-python/python-termstyle-0.1.10 +++ b/metadata/md5-cache/dev-python/python-termstyle-0.1.10 @@ -10,6 +10,6 @@ LICENSE=BSD RDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 ) SLOT=0 -SRC_URI=https://github.com/gfxmonk/termstyle/archive/0.1.10.tar.gz -> python-termstyle-0.1.10.tar.gz +SRC_URI=https://github.com/timbertson/termstyle/archive/0.1.10.tar.gz -> python-termstyle-0.1.10.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=0c8dbadf0c258a8eaac8d6511a7ea5e7 +_md5_=8a7731aa3660012eea8aa55bec380206 diff --git a/metadata/md5-cache/dev-python/pyzmq-20.0.0 b/metadata/md5-cache/dev-python/pyzmq-20.0.0 index 9498897ea46e..3c6f86cc2c73 100644 --- a/metadata/md5-cache/dev-python/pyzmq-20.0.0 +++ b/metadata/md5-cache/dev-python/pyzmq-20.0.0 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=>=net-libs/zeromq-4.2.2-r2:=[drafts] DESCRIPTION=Lightweight and super-fast messaging library built on top of the ZeroMQ library EAPI=7 -HOMEPAGE=https://www.zeromq.org/bindings:python https://pypi.org/project/pyzmq/ https://github.com/zeromq/pyzmq/ +HOMEPAGE=https://zeromq.org/languages/python/ https://pypi.org/project/pyzmq/ https://github.com/zeromq/pyzmq/ IUSE=+draft test doc python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos LICENSE=LGPL-3 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/zeromq/pyzmq/archive/v20.0.0.tar.gz -> pyzmq-20.0.0.gh.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=016c4c3cbfe1678e447f9026b3312837 +_md5_=05caeddfcefa7425ad08f952ae1bcd94 diff --git a/metadata/md5-cache/dev-python/reedsolomon-1.5.4 b/metadata/md5-cache/dev-python/reedsolomon-1.5.4 index 855ece76aee6..8fbb20b15a6c 100644 --- a/metadata/md5-cache/dev-python/reedsolomon-1.5.4 +++ b/metadata/md5-cache/dev-python/reedsolomon-1.5.4 @@ -4,7 +4,7 @@ DESCRIPTION=Pure-Python Reed Solomon encoder/decoder EAPI=7 HOMEPAGE=https://github.com/tomerfiliba/reedsolomon https://pypi.org/project/reedsolo/ IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 LICENSE=public-domain RDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/tomerfiliba/reedsolomon/archive/v1.5.4.tar.gz -> reedsolomon-1.5.4.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=96987a03b3dafe758dbf78d46302b65d +_md5_=6d1cc823e910974d2c2ae7d7ec6e849c diff --git a/metadata/md5-cache/dev-python/scripttest-1.3.0-r1 b/metadata/md5-cache/dev-python/scripttest-1.3.0-r1 index 72063358ae80..b699e530510f 100644 --- a/metadata/md5-cache/dev-python/scripttest-1.3.0-r1 +++ b/metadata/md5-cache/dev-python/scripttest-1.3.0-r1 @@ -2,7 +2,7 @@ BDEPEND=test? ( >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_target DEFINED_PHASES=compile configure install prepare test DESCRIPTION=A very small text templating language EAPI=7 -HOMEPAGE=https://pypi.org/project/ScriptTest/ https://github.com/pypa/scripttest +HOMEPAGE=https://pypi.org/project/scripttest/ https://github.com/pypa/scripttest IUSE=test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~x64-macos LICENSE=MIT @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pypa/scripttest/archive/1.3.0.tar.gz -> scripttest-1.3.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=62e24a26937447306033a7e0fb5aceea +_md5_=2a7fd9515a8a73a7945c03983ac4559f diff --git a/metadata/md5-cache/dev-python/sexpdata-0.0.3-r1 b/metadata/md5-cache/dev-python/sexpdata-0.0.3-r1 index 02a0cb235f4e..028eabc54aa4 100644 --- a/metadata/md5-cache/dev-python/sexpdata-0.0.3-r1 +++ b/metadata/md5-cache/dev-python/sexpdata-0.0.3-r1 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=test? ( dev-python/nose[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] DESCRIPTION=a simple S-expression parser/serializer EAPI=6 -HOMEPAGE=https://github.com/tkf/sexpdata +HOMEPAGE=https://github.com/jd-boyd/sexpdata IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=~amd64 ~ppc ~x86 LICENSE=BSD-2 @@ -10,6 +10,6 @@ RDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3 REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/tkf/sexpdata/archive/v0.0.3.tar.gz -> sexpdata-0.0.3.tar.gz +SRC_URI=https://github.com/jd-boyd/sexpdata/archive/v0.0.3.tar.gz -> sexpdata-0.0.3.tar.gz _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 6492ae184ebb9d8124e5e0b23db93433 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=e9261def2ceb4bdee45a98841cae4787 +_md5_=6a078a76c8150ddbad9d7eb5a2084294 diff --git a/metadata/md5-cache/dev-python/soupsieve-2.1.0 b/metadata/md5-cache/dev-python/soupsieve-2.1.0 new file mode 100644 index 000000000000..d4abb0c59e66 --- /dev/null +++ b/metadata/md5-cache/dev-python/soupsieve-2.1.0 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/beautifulsoup[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/lxml[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/html5lib[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) test? ( >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=A modern CSS selector implementation for BeautifulSoup +EAPI=7 +HOMEPAGE=https://github.com/facelessuser/soupsieve/ https://pypi.org/project/soupsieve/ +IUSE=test test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-macos +LICENSE=MIT +RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/facelessuser/soupsieve/archive/2.1.0.tar.gz -> soupsieve-2.1.0.tar.gz +_eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=4d7d831e98c3b1ca0a14f311042ed0a9 diff --git a/metadata/md5-cache/dev-python/subvertpy-0.10.1 b/metadata/md5-cache/dev-python/subvertpy-0.10.1 index a0c13280c5d2..44dc048aa10f 100644 --- a/metadata/md5-cache/dev-python/subvertpy-0.10.1 +++ b/metadata/md5-cache/dev-python/subvertpy-0.10.1 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=>=dev-vcs/subversion-1.4 dev-libs/apr-util python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] DESCRIPTION=Alternative Python bindings for Subversion EAPI=6 -HOMEPAGE=https://jelmer.uk/code/subvertpy/ https://pypi.org/project/subvertpy +HOMEPAGE=https://jelmer.uk/code/subvertpy/ https://pypi.org/project/subvertpy/ IUSE=python_targets_python3_6 python_targets_python3_7 KEYWORDS=amd64 x86 LICENSE=|| ( LGPL-2.1 LGPL-3 ) @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 ) SLOT=0 SRC_URI=mirror://pypi/s/subvertpy/subvertpy-0.10.1.tar.gz _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 6492ae184ebb9d8124e5e0b23db93433 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d958a699aca998329d0cb57bad2b62a5 +_md5_=d6c5d34514e6b5a103862984bad82051 diff --git a/metadata/md5-cache/dev-python/terminaltables-3.1.0 b/metadata/md5-cache/dev-python/terminaltables-3.1.0 index c6984c409cbb..3f506c9f0900 100644 --- a/metadata/md5-cache/dev-python/terminaltables-3.1.0 +++ b/metadata/md5-cache/dev-python/terminaltables-3.1.0 @@ -2,7 +2,7 @@ BDEPEND=test? ( dev-python/colorama[python_targets_python3_6(-)?,python_targets_ DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Generate simple tables in terminals from a nested list of strings EAPI=7 -HOMEPAGE=https://robpol86.github.io/terminaltables +HOMEPAGE=https://robpol86.github.io/terminaltables/ IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=amd64 x86 LICENSE=MIT @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/Robpol86/terminaltables/archive/v3.1.0.tar.gz -> terminaltables-3.1.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=6395714e4bdfeb74ce06357eccd37018 +_md5_=6842dc160b6db7d0300928fa5de856f5 diff --git a/metadata/md5-cache/dev-python/terminaltables-9999 b/metadata/md5-cache/dev-python/terminaltables-9999 index e41fceed1301..91d5da155461 100644 --- a/metadata/md5-cache/dev-python/terminaltables-9999 +++ b/metadata/md5-cache/dev-python/terminaltables-9999 @@ -2,7 +2,7 @@ BDEPEND=test? ( dev-python/colorama[python_targets_python3_6(-)?,python_targets_ DEFINED_PHASES=compile configure install prepare test unpack DESCRIPTION=Generate simple tables in terminals from a nested list of strings EAPI=7 -HOMEPAGE=https://robpol86.github.io/terminaltables +HOMEPAGE=https://robpol86.github.io/terminaltables/ IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 LICENSE=MIT PROPERTIES=live @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targe RESTRICT=!test? ( test ) SLOT=0 _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 git-r3 3e7ec3d6619213460c85e2aa48398441 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=6b0c81992071f7c747f8882ca5891418 +_md5_=30b36900ae6d061aa2e1d298848a2849 diff --git a/metadata/md5-cache/dev-python/testfixtures-6.16.0 b/metadata/md5-cache/dev-python/testfixtures-6.16.0 new file mode 100644 index 000000000000..1d375f70c452 --- /dev/null +++ b/metadata/md5-cache/dev-python/testfixtures-6.16.0 @@ -0,0 +1,15 @@ +BDEPEND=test? ( python_targets_python3_6? ( dev-lang/python:3.6[sqlite] ) python_targets_python3_7? ( dev-lang/python:3.7[sqlite] ) python_targets_python3_8? ( dev-lang/python:3.8[sqlite] ) python_targets_python3_9? ( dev-lang/python:3.9[sqlite] ) dev-python/django[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pytest-django[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/sybil[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/twisted-18[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/zope-component[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-),python_single_target_python3_8(+)] ) ( dev-lang/python:3.7 dev-python/sphinx[python_targets_python3_7(-),python_single_target_python3_7(+)] ) ( dev-lang/python:3.6 dev-python/sphinx[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( >=dev-python/pytest-4.5.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=A collection of helpers and mock objects for unit tests and doc tests +EAPI=7 +HOMEPAGE=https://pypi.org/project/testfixtures/ https://github.com/Simplistix/testfixtures +IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +LICENSE=MIT +RDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/t/testfixtures/testfixtures-6.16.0.tar.gz +_eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=e7d82cd7a36d06587d9c3ae40282ad8f diff --git a/metadata/md5-cache/dev-python/towncrier-19.2.0 b/metadata/md5-cache/dev-python/towncrier-19.2.0 index 83abfb285e10..f82c4b1c5a66 100644 --- a/metadata/md5-cache/dev-python/towncrier-19.2.0 +++ b/metadata/md5-cache/dev-python/towncrier-19.2.0 @@ -2,7 +2,7 @@ BDEPEND=test? ( dev-vcs/git >=dev-python/twisted-16.0.0[python_targets_python3_6 DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Building newsfiles for your project EAPI=7 -HOMEPAGE=https://github.com/hawkowl/towncrier +HOMEPAGE=https://github.com/twisted/towncrier IUSE=test python_targets_python3_6 python_targets_python3_7 KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~x64-macos LICENSE=MIT @@ -10,6 +10,6 @@ RDEPEND=dev-python/click[python_targets_python3_6(-)?,python_targets_python3_7(- REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/hawkowl/towncrier/archive/19.2.0.tar.gz -> towncrier-19.2.0.tar.gz +SRC_URI=https://github.com/twisted/towncrier/archive/19.2.0.tar.gz -> towncrier-19.2.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=33f80ef544c302475595f594c996b2fb +_md5_=fb44f515b8ed2ca3d89dea08243a90cb diff --git a/metadata/md5-cache/dev-python/tree-sitter-0.2.0 b/metadata/md5-cache/dev-python/tree-sitter-0.2.0 new file mode 100644 index 000000000000..aa42d2311bbc --- /dev/null +++ b/metadata/md5-cache/dev-python/tree-sitter-0.2.0 @@ -0,0 +1,14 @@ +BDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Python bindings to the Tree-sitter parsing library +EAPI=7 +HOMEPAGE=https://github.com/tree-sitter/py-tree-sitter +IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +SLOT=0 +SRC_URI=mirror://pypi/t/tree_sitter/tree_sitter-0.2.0.tar.gz +_eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=3307a942d326b2da0ced077266e5f860 diff --git a/metadata/md5-cache/dev-python/typing-extensions-3.7.4.3 b/metadata/md5-cache/dev-python/typing-extensions-3.7.4.3 index aa3ceda68e97..21683bfae6a0 100644 --- a/metadata/md5-cache/dev-python/typing-extensions-3.7.4.3 +++ b/metadata/md5-cache/dev-python/typing-extensions-3.7.4.3 @@ -2,7 +2,7 @@ BDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_pyt DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Type Hint extensions from Python 3.8 backported EAPI=7 -HOMEPAGE=https://pypi.org/project/typing_extensions/ https://github.com/python/typing +HOMEPAGE=https://pypi.org/project/typing-extensions/ https://github.com/python/typing/ IUSE=python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris LICENSE=PSF-2 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_p SLOT=0 SRC_URI=mirror://pypi/t/typing_extensions/typing_extensions-3.7.4.3.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=7aba822cd552f4f02aea580063501b27 +_md5_=6c65c42f68c2837e20351d35e7dd0975 diff --git a/metadata/md5-cache/dev-python/urwidtrees-1.0.3 b/metadata/md5-cache/dev-python/urwidtrees-1.0.3 index ef0a48ca149b..8b014f6af2c7 100644 --- a/metadata/md5-cache/dev-python/urwidtrees-1.0.3 +++ b/metadata/md5-cache/dev-python/urwidtrees-1.0.3 @@ -4,11 +4,11 @@ DESCRIPTION=Tree widgets for urwid EAPI=7 HOMEPAGE=https://github.com/pazz/urwidtrees IUSE=doc python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=GPL-3 RDEPEND=>=dev-python/urwid-1.1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) SLOT=0 SRC_URI=https://github.com/pazz/urwidtrees/archive/1.0.3.tar.gz -> urwidtrees-1.0.3.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=dcb61c12ca315e19bc2d57e90d30051a +_md5_=8d78fd0ef0264be3a58bc5cd83630675 diff --git a/metadata/md5-cache/dev-python/verboselogs-1.7 b/metadata/md5-cache/dev-python/verboselogs-1.7 index e9f4d790898b..01ca0d771912 100644 --- a/metadata/md5-cache/dev-python/verboselogs-1.7 +++ b/metadata/md5-cache/dev-python/verboselogs-1.7 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=test? ( dev-python/mock[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) DESCRIPTION=Verbose logging for Python's logging module EAPI=7 -HOMEPAGE=https://pypi.org/project/verboselogs https://github.com/xolox/python-verboselogs +HOMEPAGE=https://pypi.org/project/verboselogs/ https://github.com/xolox/python-verboselogs/ IUSE=doc test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 ~arm ~x86 ~amd64-linux ~x86-linux LICENSE=MIT @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/v/verboselogs/verboselogs-1.7.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=e36e8e6beda62e905925f283104e68af +_md5_=ff272893cfd22588c45501069c74902a diff --git a/metadata/md5-cache/dev-python/websockify-0.9.0 b/metadata/md5-cache/dev-python/websockify-0.9.0 index f550f23bd3da..cde25a2ac942 100644 --- a/metadata/md5-cache/dev-python/websockify-0.9.0 +++ b/metadata/md5-cache/dev-python/websockify-0.9.0 @@ -3,13 +3,13 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=dev-python/setuptools[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] DESCRIPTION=WebSockets support for any application/server EAPI=7 -HOMEPAGE=https://github.com/kanaka/websockify +HOMEPAGE=https://github.com/novnc/websockify IUSE=python_targets_python3_6 python_targets_python3_7 KEYWORDS=amd64 ~arm64 x86 LICENSE=LGPL-3 RDEPEND=dev-python/numpy[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 ) SLOT=0 -SRC_URI=https://github.com/kanaka/websockify/archive/v0.9.0.tar.gz -> websockify-0.9.0.tar.gz +SRC_URI=https://github.com/novnc/websockify/archive/v0.9.0.tar.gz -> websockify-0.9.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=72f6667de98015010c7685e8849958ba +_md5_=8c495a5b2c395d16072eacf1ae8409f5 diff --git a/metadata/md5-cache/dev-python/websockify-0.9.0-r1 b/metadata/md5-cache/dev-python/websockify-0.9.0-r1 index afc27486be25..ab04556d9e2e 100644 --- a/metadata/md5-cache/dev-python/websockify-0.9.0-r1 +++ b/metadata/md5-cache/dev-python/websockify-0.9.0-r1 @@ -2,7 +2,7 @@ BDEPEND=test? ( dev-python/jwcrypto[python_targets_python3_6(-)?,python_targets_ DEFINED_PHASES=compile configure install prepare test DESCRIPTION=WebSockets support for any application/server EAPI=7 -HOMEPAGE=https://github.com/kanaka/websockify +HOMEPAGE=https://github.com/novnc/websockify IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=amd64 ~arm64 x86 LICENSE=LGPL-3 @@ -10,6 +10,6 @@ RDEPEND=dev-python/numpy[python_targets_python3_6(-)?,python_targets_python3_7(- REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/kanaka/websockify/archive/v0.9.0.tar.gz -> websockify-0.9.0.tar.gz +SRC_URI=https://github.com/novnc/websockify/archive/v0.9.0.tar.gz -> websockify-0.9.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=9d52899d93e69c98e2e491af7e761a30 +_md5_=70229cc8d5a2083c9e26f30d3d2d2a7a diff --git a/metadata/md5-cache/dev-python/whichcraft-0.6.1 b/metadata/md5-cache/dev-python/whichcraft-0.6.1 index 1ae5b41bb7a0..6a477010d53b 100644 --- a/metadata/md5-cache/dev-python/whichcraft-0.6.1 +++ b/metadata/md5-cache/dev-python/whichcraft-0.6.1 @@ -2,7 +2,7 @@ BDEPEND=test? ( >=dev-python/pytest-4.5.0[python_targets_python3_6(-)?,python_ta DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Cross-platform cross-python shutil.which functionality EAPI=7 -HOMEPAGE=https://github.com/pydanny/whichcraft +HOMEPAGE=https://github.com/cookiecutter/whichcraft IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=amd64 LICENSE=BSD @@ -10,6 +10,6 @@ RDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3 REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/pydanny/whichcraft/archive/0.6.1.tar.gz -> whichcraft-0.6.1.tar.gz +SRC_URI=https://github.com/cookiecutter/whichcraft/archive/0.6.1.tar.gz -> whichcraft-0.6.1.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=32c73e6751ff3bfc526ad2e9e6518add +_md5_=0f923f7000c88eabe65fbccfcb9f55fb diff --git a/metadata/md5-cache/dev-python/wsproto-1.0.0 b/metadata/md5-cache/dev-python/wsproto-1.0.0 index 9098ef129ee7..417b2d7d4651 100644 --- a/metadata/md5-cache/dev-python/wsproto-1.0.0 +++ b/metadata/md5-cache/dev-python/wsproto-1.0.0 @@ -2,7 +2,7 @@ BDEPEND=test? ( >=dev-python/h11-0.9[python_targets_python3_7(-)?,python_targets DEFINED_PHASES=compile configure install prepare test DESCRIPTION=WebSockets state-machine based protocol implementation EAPI=7 -HOMEPAGE=https://github.com/python-hyper/wsproto https://pypi.python.org/pypi/wsproto +HOMEPAGE=https://github.com/python-hyper/wsproto/ https://pypi.org/project/wsproto/ IUSE=test python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 ~x86 LICENSE=MIT @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/w/wsproto/wsproto-1.0.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=84248c58a57d12c51b4b35f2e5771ba9 +_md5_=b6e52b91d604b1f793fbb292d75fbaad diff --git a/metadata/md5-cache/dev-python/wurlitzer-2.0.1 b/metadata/md5-cache/dev-python/wurlitzer-2.0.1 index d2cdc21030c1..60e4cdb3dda5 100644 --- a/metadata/md5-cache/dev-python/wurlitzer-2.0.1 +++ b/metadata/md5-cache/dev-python/wurlitzer-2.0.1 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=test? ( dev-python/mock[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) DESCRIPTION=Capture C-level stdout/stderr in Python EAPI=7 -HOMEPAGE=https://github.com/minrk/wurlitzer https://pypi.org/project/wurlitzer +HOMEPAGE=https://github.com/minrk/wurlitzer/ https://pypi.org/project/wurlitzer/ IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=amd64 x86 LICENSE=MIT @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/w/wurlitzer/wurlitzer-2.0.1.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=63f60abbdecaf2afe31233c3afa7b464 +_md5_=ad19d913e9f087494ffb751b74d0f201 diff --git a/metadata/md5-cache/dev-python/zconfig-3.5.0 b/metadata/md5-cache/dev-python/zconfig-3.5.0 index c88494918668..6958ca34e259 100644 --- a/metadata/md5-cache/dev-python/zconfig-3.5.0 +++ b/metadata/md5-cache/dev-python/zconfig-3.5.0 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=test? ( dev-python/docutils[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/manuel[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/zope-exceptions[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/zope-interface[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/zope-testrunner[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) DESCRIPTION=A configuration library supporting a hierarchical schema-driven configuration model EAPI=7 -HOMEPAGE=https://pypi.python.org/pypi/ZConfig +HOMEPAGE=https://pypi.org/project/ZConfig/ IUSE=test doc python_targets_python3_6 python_targets_python3_7 KEYWORDS=~amd64 LICENSE=ZPL @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://pypi/Z/ZConfig/ZConfig-3.5.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=dcd2ece0940025feebea961e418af8cd +_md5_=c36ce3e5011854ca808250416890c9ae diff --git a/metadata/md5-cache/dev-ruby/Manifest.gz b/metadata/md5-cache/dev-ruby/Manifest.gz index f3efa94707d9..0731fe7103f3 100644 Binary files a/metadata/md5-cache/dev-ruby/Manifest.gz and b/metadata/md5-cache/dev-ruby/Manifest.gz differ diff --git a/metadata/md5-cache/dev-ruby/actionpack-5.2.4.4 b/metadata/md5-cache/dev-ruby/actionpack-5.2.4.4 index c1324e02fa73..f442cd264854 100644 --- a/metadata/md5-cache/dev-ruby/actionpack-5.2.4.4 +++ b/metadata/md5-cache/dev-ruby/actionpack-5.2.4.4 @@ -4,7 +4,7 @@ DESCRIPTION=Eases web-request routing, handling, and response EAPI=6 HOMEPAGE=https://github.com/rails/rails IUSE=test ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux +KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux LICENSE=MIT RDEPEND=ruby_targets_ruby25? ( ~dev-ruby/activesupport-5.2.4.4[ruby_targets_ruby25(-)] ~dev-ruby/actionview-5.2.4.4[ruby_targets_ruby25(-)] || ( dev-ruby/rack:2.2[ruby_targets_ruby25(-)] dev-ruby/rack:2.1[ruby_targets_ruby25(-)] >=dev-ruby/rack-2.0.8:2.0[ruby_targets_ruby25(-)] ) >=dev-ruby/rack-test-0.6.3:*[ruby_targets_ruby25(-)] >=dev-ruby/rails-html-sanitizer-1.0.2:1[ruby_targets_ruby25(-)] dev-ruby/rails-dom-testing:2[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( ~dev-ruby/activesupport-5.2.4.4[ruby_targets_ruby26(-)] ~dev-ruby/actionview-5.2.4.4[ruby_targets_ruby26(-)] || ( dev-ruby/rack:2.2[ruby_targets_ruby26(-)] dev-ruby/rack:2.1[ruby_targets_ruby26(-)] >=dev-ruby/rack-2.0.8:2.0[ruby_targets_ruby26(-)] ) >=dev-ruby/rack-test-0.6.3:*[ruby_targets_ruby26(-)] >=dev-ruby/rails-html-sanitizer-1.0.2:1[ruby_targets_ruby26(-)] dev-ruby/rails-dom-testing:2[ruby_targets_ruby26(-)] ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.4.tar.gz -> rails-5.2.4.4.tgz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib d410501a125f99ffb560b0c523cd3d1e ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=81cdb66a1cdc91c541a93229b98aeb43 +_md5_=88f7ffe7839ccd6e085a3b26e34bdb33 diff --git a/metadata/md5-cache/dev-ruby/actionview-5.2.4.4 b/metadata/md5-cache/dev-ruby/actionview-5.2.4.4 index 0c2d9d80719a..93e96e35c00f 100644 --- a/metadata/md5-cache/dev-ruby/actionview-5.2.4.4 +++ b/metadata/md5-cache/dev-ruby/actionview-5.2.4.4 @@ -4,7 +4,7 @@ DESCRIPTION=Simple, battle-tested conventions and helpers for building web pages EAPI=6 HOMEPAGE=https://github.com/rails/rails/ IUSE=test ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux +KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux LICENSE=MIT RDEPEND=ruby_targets_ruby25? ( ~dev-ruby/activesupport-5.2.4.4[ruby_targets_ruby25(-)] >=dev-ruby/builder-3.1:*[ruby_targets_ruby25(-)] =dev-ruby/builder-3*:*[ruby_targets_ruby25(-)] >=dev-ruby/erubi-1.4:0[ruby_targets_ruby25(-)] >=dev-ruby/rails-html-sanitizer-1.0.3:1[ruby_targets_ruby25(-)] dev-ruby/rails-dom-testing:2[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( ~dev-ruby/activesupport-5.2.4.4[ruby_targets_ruby26(-)] >=dev-ruby/builder-3.1:*[ruby_targets_ruby26(-)] =dev-ruby/builder-3*:*[ruby_targets_ruby26(-)] >=dev-ruby/erubi-1.4:0[ruby_targets_ruby26(-)] >=dev-ruby/rails-html-sanitizer-1.0.3:1[ruby_targets_ruby26(-)] dev-ruby/rails-dom-testing:2[ruby_targets_ruby26(-)] ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.4.tar.gz -> rails-5.2.4.4.tgz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib d410501a125f99ffb560b0c523cd3d1e ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=3123547ba2916a1acd92adc7b949bcd1 +_md5_=5807e48edb77d4d1bc893a3c00b527b2 diff --git a/metadata/md5-cache/dev-ruby/activemodel-5.2.4.4 b/metadata/md5-cache/dev-ruby/activemodel-5.2.4.4 index e9c0a3c14b7e..130b0927c764 100644 --- a/metadata/md5-cache/dev-ruby/activemodel-5.2.4.4 +++ b/metadata/md5-cache/dev-ruby/activemodel-5.2.4.4 @@ -4,7 +4,7 @@ DESCRIPTION=Toolkit for building modeling frameworks like Active Record and Acti EAPI=6 HOMEPAGE=https://github.com/rails/rails IUSE=test ruby_targets_ruby25 ruby_targets_ruby26 test test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux +KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux LICENSE=MIT RDEPEND=ruby_targets_ruby25? ( ~dev-ruby/activesupport-5.2.4.4:*[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( ~dev-ruby/activesupport-5.2.4.4:*[ruby_targets_ruby26(-)] ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.4.tar.gz -> rails-5.2.4.4.tgz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib d410501a125f99ffb560b0c523cd3d1e ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=a4ee6cf536d6c6f049da51e7a956854c +_md5_=a2b349a02af3541458aad98b4f70c40a diff --git a/metadata/md5-cache/dev-ruby/activesupport-5.2.4.4 b/metadata/md5-cache/dev-ruby/activesupport-5.2.4.4 index 6cf4998b0c62..f51339227694 100644 --- a/metadata/md5-cache/dev-ruby/activesupport-5.2.4.4 +++ b/metadata/md5-cache/dev-ruby/activesupport-5.2.4.4 @@ -4,7 +4,7 @@ DESCRIPTION=Utility Classes and Extension to the Standard Library EAPI=6 HOMEPAGE=https://github.com/rails/rails IUSE=test ruby_targets_ruby25 ruby_targets_ruby26 test test -KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby25? ( >=dev-ruby/concurrent-ruby-1.0.2:1[ruby_targets_ruby25(-)] dev-ruby/i18n:1[ruby_targets_ruby25(-)] >=dev-ruby/tzinfo-1.1:1[ruby_targets_ruby25(-)] >=dev-ruby/minitest-5.1:5[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/concurrent-ruby-1.0.2:1[ruby_targets_ruby26(-)] dev-ruby/i18n:1[ruby_targets_ruby26(-)] >=dev-ruby/tzinfo-1.1:1[ruby_targets_ruby26(-)] >=dev-ruby/minitest-5.1:5[ruby_targets_ruby26(-)] ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.4.tar.gz -> rails-5.2.4.4.tgz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib d410501a125f99ffb560b0c523cd3d1e ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=717543ef26c006a3032700422a6ffeae +_md5_=acdd49b267e600f06f53aa2af8bf5ae9 diff --git a/metadata/md5-cache/dev-ruby/bundler-2.2.0 b/metadata/md5-cache/dev-ruby/bundler-2.2.0 new file mode 100644 index 000000000000..b14f8bc1fdbb --- /dev/null +++ b/metadata/md5-cache/dev-ruby/bundler-2.2.0 @@ -0,0 +1,16 @@ +BDEPEND=test? ( ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] !!dev-ruby/psych[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] !!dev-ruby/psych[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] !!dev-ruby/psych[ruby_targets_ruby27(-)] ) test? ( ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +DESCRIPTION=An easy way to vendor gem dependencies +EAPI=7 +HOMEPAGE=https://github.com/carlhuda/bundler +IUSE=+doc test test ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=MIT +RDEPEND=ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) dev-vcs/git !=app-eselect/eselect-rails-0.24 ruby_targets_ruby25? ( ~dev-ruby/activesupport-5.2.4.4[ruby_targets_ruby25(-)] ~dev-ruby/actionpack-5.2.4.4[ruby_targets_ruby25(-)] || ( dev-ruby/thor:1[ruby_targets_ruby25(-)] >=dev-ruby/thor-0.18.1:0[ruby_targets_ruby25(-)] ) >=dev-ruby/rake-0.8.7[ruby_targets_ruby25(-)] dev-ruby/method_source[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( ~dev-ruby/activesupport-5.2.4.4[ruby_targets_ruby26(-)] ~dev-ruby/actionpack-5.2.4.4[ruby_targets_ruby26(-)] || ( dev-ruby/thor:1[ruby_targets_ruby26(-)] >=dev-ruby/thor-0.18.1:0[ruby_targets_ruby26(-)] ) >=dev-ruby/rake-0.8.7[ruby_targets_ruby26(-)] dev-ruby/method_source[ruby_targets_ruby26(-)] ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) @@ -12,4 +12,4 @@ RESTRICT=test !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.4.tar.gz -> rails-5.2.4.4.tgz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib d410501a125f99ffb560b0c523cd3d1e ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=556b7cfd5a3490b6a47b01cdfd9c922e +_md5_=7450e81ef7b10a97768123f84db7d904 diff --git a/metadata/md5-cache/dev-ruby/rubygems-3.0.4-r1 b/metadata/md5-cache/dev-ruby/rubygems-2.7.11 similarity index 52% rename from metadata/md5-cache/dev-ruby/rubygems-3.0.4-r1 rename to metadata/md5-cache/dev-ruby/rubygems-2.7.11 index 285f1b8a1b1a..899b01e53d26 100644 --- a/metadata/md5-cache/dev-ruby/rubygems-3.0.4-r1 +++ b/metadata/md5-cache/dev-ruby/rubygems-2.7.11 @@ -1,16 +1,16 @@ DEFINED_PHASES=compile configure install postinst prepare setup test unpack -DEPEND=ruby_targets_ruby25? ( test? ( dev-ruby/json[ruby_targets_ruby25(-)] dev-ruby/minitest:5[ruby_targets_ruby25(-)] dev-ruby/rdoc[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/json[ruby_targets_ruby26(-)] dev-ruby/minitest:5[ruby_targets_ruby26(-)] dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) +DEPEND=ruby_targets_ruby25? ( test? ( dev-ruby/json[ruby_targets_ruby25(-)] >=dev-ruby/minitest-4:0[ruby_targets_ruby25(-)] dev-ruby/rdoc[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) DESCRIPTION=Centralized Ruby extension management system EAPI=6 HOMEPAGE=https://rubygems.org/ -IUSE=server test ruby_targets_ruby25 ruby_targets_ruby26 +IUSE=server test ruby_targets_ruby25 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 || ( Ruby MIT ) -PDEPEND=server? ( =dev-ruby/builder-3* ) -RDEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) -REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) +PDEPEND=server? ( >=dev-ruby/builder-2.1 ) +RDEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) +REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://rubygems.org/rubygems/rubygems-3.0.4.tgz +SRC_URI=https://rubygems.org/rubygems/rubygems-2.7.11.tgz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib d410501a125f99ffb560b0c523cd3d1e prefix c2993e4c430c1ee24f278983d6189501 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=8ff0c75f32211b3121de0752986fd23b +_md5_=17aed39e05629fdb4035dc6009dcb8fd diff --git a/metadata/md5-cache/dev-ruby/rubygems-3.0.6 b/metadata/md5-cache/dev-ruby/rubygems-3.0.9 similarity index 80% rename from metadata/md5-cache/dev-ruby/rubygems-3.0.6 rename to metadata/md5-cache/dev-ruby/rubygems-3.0.9 index 49b887f3238c..57af2926b2a6 100644 --- a/metadata/md5-cache/dev-ruby/rubygems-3.0.6 +++ b/metadata/md5-cache/dev-ruby/rubygems-3.0.9 @@ -1,6 +1,6 @@ BDEPEND=ruby_targets_ruby25? ( test? ( dev-ruby/json[ruby_targets_ruby25(-)] dev-ruby/minitest:5[ruby_targets_ruby25(-)] dev-ruby/rdoc[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/json[ruby_targets_ruby26(-)] dev-ruby/minitest:5[ruby_targets_ruby26(-)] dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) DEFINED_PHASES=compile configure install postinst prepare setup test unpack -DEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) +DEPEND=ruby_targets_ruby25? ( virtual/ruby-ssl[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/ruby-ssl[ruby_targets_ruby26(-)] ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) DESCRIPTION=Centralized Ruby extension management system EAPI=7 HOMEPAGE=https://rubygems.org/ @@ -12,6 +12,6 @@ RDEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-la REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://rubygems.org/rubygems/rubygems-3.0.6.tgz +SRC_URI=https://rubygems.org/rubygems/rubygems-3.0.9.tgz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib d410501a125f99ffb560b0c523cd3d1e prefix c2993e4c430c1ee24f278983d6189501 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=d161152c4f542ec216fc0d8dd9264ed3 +_md5_=42af30811586d28a319a5962c2ba9ca6 diff --git a/metadata/md5-cache/dev-ruby/rubygems-3.1.2 b/metadata/md5-cache/dev-ruby/rubygems-3.1.5 similarity index 95% rename from metadata/md5-cache/dev-ruby/rubygems-3.1.2 rename to metadata/md5-cache/dev-ruby/rubygems-3.1.5 index 30b16e8ea0b2..e0ae84ea0159 100644 --- a/metadata/md5-cache/dev-ruby/rubygems-3.1.2 +++ b/metadata/md5-cache/dev-ruby/rubygems-3.1.5 @@ -12,6 +12,6 @@ RDEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-la REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://rubygems.org/rubygems/rubygems-3.1.2.tgz +SRC_URI=https://rubygems.org/rubygems/rubygems-3.1.5.tgz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib d410501a125f99ffb560b0c523cd3d1e prefix c2993e4c430c1ee24f278983d6189501 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=602b01878c7ac47b34ccef99d9f1aa8c +_md5_=e8ffb74eb29d832ecf230e58e59dfa35 diff --git a/metadata/md5-cache/dev-ruby/rubygems-3.1.3 b/metadata/md5-cache/dev-ruby/rubygems-3.2.0 similarity index 95% rename from metadata/md5-cache/dev-ruby/rubygems-3.1.3 rename to metadata/md5-cache/dev-ruby/rubygems-3.2.0 index 7a85052f77ea..eb21d58731a8 100644 --- a/metadata/md5-cache/dev-ruby/rubygems-3.1.3 +++ b/metadata/md5-cache/dev-ruby/rubygems-3.2.0 @@ -12,6 +12,6 @@ RDEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-la REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://rubygems.org/rubygems/rubygems-3.1.3.tgz +SRC_URI=https://rubygems.org/rubygems/rubygems-3.2.0.tgz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib d410501a125f99ffb560b0c523cd3d1e prefix c2993e4c430c1ee24f278983d6189501 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=602b01878c7ac47b34ccef99d9f1aa8c +_md5_=037a87ef72fdfdb4174032099b20608d diff --git a/metadata/md5-cache/dev-util/Manifest.gz b/metadata/md5-cache/dev-util/Manifest.gz index f73d314b26df..16aa725923d6 100644 Binary files a/metadata/md5-cache/dev-util/Manifest.gz and b/metadata/md5-cache/dev-util/Manifest.gz differ diff --git a/metadata/md5-cache/dev-util/debugedit-4.16.1 b/metadata/md5-cache/dev-util/debugedit-4.16.1 new file mode 100644 index 000000000000..2607428419d8 --- /dev/null +++ b/metadata/md5-cache/dev-util/debugedit-4.16.1 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=sys-libs/zlib:= >=dev-libs/popt-1.7 >=dev-libs/elfutils-0.176-r1 dev-libs/nss virtual/pkgconfig +DESCRIPTION=Stand-alone debugedit from RPM +EAPI=7 +HOMEPAGE=https://rpm.org https://github.com/rpm-software-management/rpm +KEYWORDS=~amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux +LICENSE=GPL-2+ LGPL-2+ +RDEPEND=sys-libs/zlib:= >=dev-libs/popt-1.7 >=dev-libs/elfutils-0.176-r1 dev-libs/nss +SLOT=0 +SRC_URI=http://ftp.rpm.org/releases/rpm-4.16.x/rpm-4.16.1.tar.bz2 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=be47e58e2dd610020eeb080990af99c5 diff --git a/metadata/md5-cache/dev-util/glslang-10.11.0.0_pre20200924 b/metadata/md5-cache/dev-util/glslang-10.11.0.0_pre20200924 index bb9f39c2db41..21a110f6c60b 100644 --- a/metadata/md5-cache/dev-util/glslang-10.11.0.0_pre20200924 +++ b/metadata/md5-cache/dev-util/glslang-10.11.0.0_pre20200924 @@ -4,11 +4,11 @@ DESCRIPTION=Khronos reference front-end for GLSL and ESSL, and sample SPIR-V gen EAPI=7 HOMEPAGE=https://www.khronos.org/opengles/sdk/tools/Reference-Compiler/ https://github.com/KhronosGroup/glslang IUSE=abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~amd64 arm arm64 ~ppc ~ppc64 ~riscv x86 +KEYWORDS=~amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=BSD RDEPEND=! glslang-10.11.0.0_pre20200924.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 cmake-multilib b396704c8c04bb210b7b45dff5c67fea edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=1d4359501d0f79fa25e579a7b981b736 +_md5_=613e8d49cada1d58d52619792b4e95fe diff --git a/metadata/md5-cache/dev-util/pkgcheck-9999 b/metadata/md5-cache/dev-util/pkgcheck-9999 index 79747976c11e..dd60cea41368 100644 --- a/metadata/md5-cache/dev-util/pkgcheck-9999 +++ b/metadata/md5-cache/dev-util/pkgcheck-9999 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst prepare test unpack -DEPEND=~dev-python/snakeoil-9999[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ~sys-apps/pkgcore-9999[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/chardet[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/lxml[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pathspec[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/setuptools[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] test? ( dev-python/pytest[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-vcs/git-1.8.2.1[curl] +DEPEND=~dev-python/snakeoil-9999[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ~sys-apps/pkgcore-9999[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/chardet[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/lxml[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pathspec[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/tree-sitter[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/setuptools[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] test? ( dev-python/pytest[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-vcs/git-1.8.2.1[curl] DESCRIPTION=pkgcore-based QA utility for ebuild repos EAPI=6 HOMEPAGE=https://github.com/pkgcore/pkgcheck IUSE=test python_targets_python3_8 python_targets_python3_9 -LICENSE=BSD +LICENSE=BSD MIT PROPERTIES=live -RDEPEND=~dev-python/snakeoil-9999[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ~sys-apps/pkgcore-9999[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/chardet[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/lxml[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pathspec[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +RDEPEND=~dev-python/snakeoil-9999[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ~sys-apps/pkgcore-9999[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/chardet[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/lxml[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pathspec[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/tree-sitter[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_8 python_targets_python3_9 ) RESTRICT=!test? ( test ) SLOT=0 _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 6492ae184ebb9d8124e5e0b23db93433 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 optfeature 6c9aa35fc16df43d7142ef2660e00e25 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=a33cb9ef120f10ee54750b960ce77175 +_md5_=00eece4c93e0ba731198d707108bae29 diff --git a/metadata/md5-cache/dev-util/spirv-headers-1.5.4 b/metadata/md5-cache/dev-util/spirv-headers-1.5.4 index 6ded2df47565..8c4bc69d625c 100644 --- a/metadata/md5-cache/dev-util/spirv-headers-1.5.4 +++ b/metadata/md5-cache/dev-util/spirv-headers-1.5.4 @@ -3,9 +3,9 @@ DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Machine-readable files for the SPIR-V Registry EAPI=7 HOMEPAGE=https://www.khronos.org/registry/spir-v/ -KEYWORDS=~amd64 arm arm64 ~ppc ~ppc64 ~riscv x86 +KEYWORDS=~amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=MIT SLOT=0 SRC_URI=https://github.com/KhronosGroup/SPIRV-Headers/archive/1.5.4.tar.gz -> spirv-headers-1.5.4.tar.gz _eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=1cdaa418b4aa74a18a1092a4e6e0318d +_md5_=4eb9a95bfea1d6452c2d03f0e66d653c diff --git a/metadata/md5-cache/dev-util/spirv-tools-2020.5_pre20201107 b/metadata/md5-cache/dev-util/spirv-tools-2020.5_pre20201107 index aefc367e5cd9..747a340f4924 100644 --- a/metadata/md5-cache/dev-util/spirv-tools-2020.5_pre20201107 +++ b/metadata/md5-cache/dev-util/spirv-tools-2020.5_pre20201107 @@ -5,10 +5,10 @@ DESCRIPTION=Provides an API and commands for processing SPIR-V modules EAPI=7 HOMEPAGE=https://github.com/KhronosGroup/SPIRV-Tools IUSE=abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~amd64 arm arm64 ~ppc ~ppc64 ~riscv x86 +KEYWORDS=~amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 RESTRICT=test SLOT=0 SRC_URI=https://github.com/KhronosGroup/SPIRV-Tools/archive/a61d07a72763c1eb200de0a2c316703643a0d1d9.tar.gz -> spirv-tools-2020.5_pre20201107.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 cmake-multilib b396704c8c04bb210b7b45dff5c67fea edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=f7fa208302f7365ac808243ee06fe73d +_md5_=c652d4cbfd91ce104ad92e7008343e49 diff --git a/metadata/md5-cache/dev-util/vulkan-headers-1.2.154 b/metadata/md5-cache/dev-util/vulkan-headers-1.2.154 index ab999c7ee830..b9546db30b6a 100644 --- a/metadata/md5-cache/dev-util/vulkan-headers-1.2.154 +++ b/metadata/md5-cache/dev-util/vulkan-headers-1.2.154 @@ -3,9 +3,9 @@ DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Vulkan Header files and API registry EAPI=7 HOMEPAGE=https://github.com/KhronosGroup/Vulkan-Headers -KEYWORDS=~amd64 arm arm64 ~ppc ~ppc64 ~riscv x86 +KEYWORDS=~amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 SLOT=0 SRC_URI=https://github.com/KhronosGroup/Vulkan-Headers/archive/v1.2.154.tar.gz -> vulkan-headers-1.2.154.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=2e3f4b796c42529828a66ffb780d489d +_md5_=48185c84b1cfcdae9121c85f1a723e47 diff --git a/metadata/md5-cache/games-emulation/Manifest.gz b/metadata/md5-cache/games-emulation/Manifest.gz index 46046c973ac0..432a3b1b3c3b 100644 Binary files a/metadata/md5-cache/games-emulation/Manifest.gz and b/metadata/md5-cache/games-emulation/Manifest.gz differ diff --git a/metadata/md5-cache/games-emulation/ppsspp-1.10.3 b/metadata/md5-cache/games-emulation/ppsspp-1.10.3 index ee01435b5538..115e3a5c248d 100644 --- a/metadata/md5-cache/games-emulation/ppsspp-1.10.3 +++ b/metadata/md5-cache/games-emulation/ppsspp-1.10.3 @@ -4,13 +4,13 @@ DEPEND=app-arch/snappy:= dev-libs/libzip:= dev-util/glslang:= media-libs/glew:= DESCRIPTION=A PSP emulator written in C++ EAPI=7 HOMEPAGE=https://www.ppsspp.org/ -IUSE=qt5 sdl +system-ffmpeg +IUSE=discord qt5 sdl +system-ffmpeg KEYWORDS=~amd64 LICENSE=GPL-2 RDEPEND=app-arch/snappy:= dev-libs/libzip:= dev-util/glslang:= media-libs/glew:= sys-libs/zlib:= virtual/opengl sdl? ( media-libs/libsdl2 ) system-ffmpeg? ( media-video/ffmpeg:= ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5[-gles2-only] dev-qt/qtmultimedia:5[-gles2-only] dev-qt/qtopengl:5[-gles2-only] dev-qt/qtwidgets:5[-gles2-only] ) REQUIRED_USE=!qt5? ( sdl ) RESTRICT=test SLOT=0 -SRC_URI=https://github.com/hrydgard/ppsspp/archive/v1.10.3.tar.gz -> ppsspp-1.10.3.tar.gz https://github.com/KhronosGroup/SPIRV-Cross/archive/a1f7c8dc8ea2f94443951ee27003bffa562c1f13.tar.gz -> ppsspp-1.10.3-ext_SPIRV-Cross.tar.gz https://github.com/Kingcom/armips/archive/7885552b208493a6a0f21663770c446c3ba65576.tar.gz -> ppsspp-1.10.3-ext_armips.tar.gz https://github.com/Tencent/rapidjson/archive/73063f5002612c6bf64fe24f851cd5cc0d83eef9.tar.gz -> ppsspp-1.10.3-ext_rapidjson.tar.gz https://github.com/discordapp/discord-rpc/archive/3d3ae7129d17643bc706da0a2eea85aafd10ab3a.tar.gz -> ppsspp-1.10.3-ext_discord-rpc.tar.gz https://github.com/hrydgard/glslang/archive/d0850f875ec392a130ccf00018dab458b546f27c.tar.gz -> ppsspp-1.10.3-ext_glslang.tar.gz https://github.com/hrydgard/ppsspp-freetype/archive/cbea79dc8fef4d9210e2bac7e7b9b5ff3388197a.tar.gz -> ppsspp-1.10.3-ext_native_tools_prebuilt.tar.gz https://github.com/hrydgard/ppsspp-lang/archive/fd6f5bc01afb419eacca538b425c01eb2a055393.tar.gz -> ppsspp-1.10.3-assets_lang.tar.gz !system-ffmpeg? ( https://github.com/hrydgard/ppsspp-ffmpeg/archive/d3e695286cce346274192c214c00f021c00cd575.tar.gz -> ppsspp-1.10.3-ffmpeg.tar.gz ) +SRC_URI=https://github.com/hrydgard/ppsspp/archive/v1.10.3.tar.gz -> ppsspp-1.10.3.tar.gz https://github.com/KhronosGroup/SPIRV-Cross/archive/a1f7c8dc8ea2f94443951ee27003bffa562c1f13.tar.gz -> ppsspp-1.10.3-ext_SPIRV-Cross.tar.gz https://github.com/Kingcom/armips/archive/7885552b208493a6a0f21663770c446c3ba65576.tar.gz -> ppsspp-1.10.3-ext_armips.tar.gz https://github.com/Tencent/rapidjson/archive/73063f5002612c6bf64fe24f851cd5cc0d83eef9.tar.gz -> ppsspp-1.10.3-ext_rapidjson.tar.gz https://github.com/hrydgard/glslang/archive/d0850f875ec392a130ccf00018dab458b546f27c.tar.gz -> ppsspp-1.10.3-ext_glslang.tar.gz https://github.com/hrydgard/ppsspp-freetype/archive/cbea79dc8fef4d9210e2bac7e7b9b5ff3388197a.tar.gz -> ppsspp-1.10.3-ext_native_tools_prebuilt.tar.gz https://github.com/hrydgard/ppsspp-lang/archive/fd6f5bc01afb419eacca538b425c01eb2a055393.tar.gz -> ppsspp-1.10.3-assets_lang.tar.gz !system-ffmpeg? ( https://github.com/hrydgard/ppsspp-ffmpeg/archive/d3e695286cce346274192c214c00f021c00cd575.tar.gz -> ppsspp-1.10.3-ffmpeg.tar.gz ) discord? ( https://github.com/discordapp/discord-rpc/archive/3d3ae7129d17643bc706da0a2eea85aafd10ab3a.tar.gz -> ppsspp-1.10.3-ext_discord-rpc.tar.gz ) _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d9d14d139f67bf03e1153a0216dbd861 +_md5_=f8e5bbadebcb627e8c93fe10967649ea diff --git a/metadata/md5-cache/games-roguelike/Manifest.gz b/metadata/md5-cache/games-roguelike/Manifest.gz index f7d66c640425..6a1471d67c78 100644 Binary files a/metadata/md5-cache/games-roguelike/Manifest.gz and b/metadata/md5-cache/games-roguelike/Manifest.gz differ diff --git a/metadata/md5-cache/games-roguelike/stone-soup-0.25.1 b/metadata/md5-cache/games-roguelike/stone-soup-0.25.1 index 679b78362fa9..dee9a8eac037 100644 --- a/metadata/md5-cache/games-roguelike/stone-soup-0.25.1 +++ b/metadata/md5-cache/games-roguelike/stone-soup-0.25.1 @@ -1,16 +1,14 @@ -BDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -DEFINED_PHASES=compile configure install postinst postrm prepare setup test -DEPEND=dev-db/sqlite:3 =dev-lang/lua-5.1*:0= sys-libs/zlib !ncurses? ( !tiles? ( sys-libs/ncurses:0 ) ) ncurses? ( sys-libs/ncurses:0 ) tiles? ( media-fonts/dejavu media-libs/freetype:2 media-libs/libpng:0 sound? ( media-libs/libsdl2[X,opengl,sound,video] media-libs/sdl2-mixer ) !sound? ( media-libs/libsdl2[X,opengl,video] ) media-libs/sdl2-image[png] virtual/glu virtual/opengl ) app-arch/unzip dev-lang/perl dev-python/pyyaml[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] sys-devel/flex tiles? ( sys-libs/ncurses:0 ) virtual/pkgconfig virtual/yacc +DEFINED_PHASES=compile install postinst postrm prepare setup +DEPEND=dev-db/sqlite:3 =dev-lang/lua-5.1*:0= sys-libs/zlib !ncurses? ( !tiles? ( sys-libs/ncurses:0 ) ) ncurses? ( sys-libs/ncurses:0 ) tiles? ( media-fonts/dejavu media-libs/freetype:2 media-libs/libpng:0 sound? ( media-libs/libsdl2[X,opengl,sound,video] media-libs/sdl2-mixer ) !sound? ( media-libs/libsdl2[X,opengl,video] ) media-libs/sdl2-image[png] virtual/glu virtual/opengl ) app-arch/unzip dev-lang/perl || ( dev-lang/python:3.9 dev-lang/python:3.8 dev-lang/python:3.7 dev-lang/python:3.6 ) || ( ( dev-lang/python:3.9 dev-python/pyyaml[python_targets_python3_9(-),python_single_target_python3_9(+)] ) ( dev-lang/python:3.8 dev-python/pyyaml[python_targets_python3_8(-),python_single_target_python3_8(+)] ) ( dev-lang/python:3.7 dev-python/pyyaml[python_targets_python3_7(-),python_single_target_python3_7(+)] ) ( dev-lang/python:3.6 dev-python/pyyaml[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) sys-devel/flex tiles? ( sys-libs/ncurses:0 ) virtual/pkgconfig virtual/yacc DESCRIPTION=Role-playing roguelike game of exploration and treasure-hunting in dungeons EAPI=7 HOMEPAGE=https://crawl.develz.org -IUSE=debug ncurses sound test +tiles python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +IUSE=debug ncurses sound test +tiles KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 BSD BSD-2 public-domain CC0-1.0 MIT -RDEPEND=dev-db/sqlite:3 =dev-lang/lua-5.1*:0= sys-libs/zlib !ncurses? ( !tiles? ( sys-libs/ncurses:0 ) ) ncurses? ( sys-libs/ncurses:0 ) tiles? ( media-fonts/dejavu media-libs/freetype:2 media-libs/libpng:0 sound? ( media-libs/libsdl2[X,opengl,sound,video] media-libs/sdl2-mixer ) !sound? ( media-libs/libsdl2[X,opengl,video] ) media-libs/sdl2-image[png] virtual/glu virtual/opengl ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RDEPEND=dev-db/sqlite:3 =dev-lang/lua-5.1*:0= sys-libs/zlib !ncurses? ( !tiles? ( sys-libs/ncurses:0 ) ) ncurses? ( sys-libs/ncurses:0 ) tiles? ( media-fonts/dejavu media-libs/freetype:2 media-libs/libpng:0 sound? ( media-libs/libsdl2[X,opengl,sound,video] media-libs/sdl2-mixer ) !sound? ( media-libs/libsdl2[X,opengl,video] ) media-libs/sdl2-image[png] virtual/glu virtual/opengl ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/crawl/crawl/releases/download/0.25.1/stone_soup-0.25.1.zip https://dev.gentoo.org/~hasufell/distfiles/stone-soup.png https://dev.gentoo.org/~hasufell/distfiles/stone-soup.svg -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 6492ae184ebb9d8124e5e0b23db93433 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=29c099acf1450d969e6437006b8b4cbc +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=ee8597f9e2d1438150b9424e5f6af6c9 diff --git a/metadata/md5-cache/games-roguelike/stone-soup-0.25.1-r100 b/metadata/md5-cache/games-roguelike/stone-soup-0.25.1-r100 index 0e209bb6355b..acf361f66777 100644 --- a/metadata/md5-cache/games-roguelike/stone-soup-0.25.1-r100 +++ b/metadata/md5-cache/games-roguelike/stone-soup-0.25.1-r100 @@ -1,16 +1,14 @@ -BDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -DEFINED_PHASES=compile configure install postinst postrm prepare setup test -DEPEND=lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-2? ( dev-lang/lua:5.2 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) dev-db/sqlite:3 sys-libs/zlib !ncurses? ( !tiles? ( sys-libs/ncurses:0 ) ) ncurses? ( sys-libs/ncurses:0 ) tiles? ( media-fonts/dejavu media-libs/freetype:2 media-libs/libpng:0 sound? ( media-libs/libsdl2[X,opengl,sound,video] media-libs/sdl2-mixer ) !sound? ( media-libs/libsdl2[X,opengl,video] ) media-libs/sdl2-image[png] virtual/glu virtual/opengl ) app-arch/unzip dev-lang/perl dev-python/pyyaml[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] sys-devel/flex tiles? ( sys-libs/ncurses:0 ) virtual/pkgconfig virtual/yacc +DEFINED_PHASES=compile install postinst postrm prepare setup +DEPEND=lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-2? ( dev-lang/lua:5.2 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) dev-db/sqlite:3 sys-libs/zlib !ncurses? ( !tiles? ( sys-libs/ncurses:0 ) ) ncurses? ( sys-libs/ncurses:0 ) tiles? ( media-fonts/dejavu media-libs/freetype:2 media-libs/libpng:0 sound? ( media-libs/libsdl2[X,opengl,sound,video] media-libs/sdl2-mixer ) !sound? ( media-libs/libsdl2[X,opengl,video] ) media-libs/sdl2-image[png] virtual/glu virtual/opengl ) app-arch/unzip dev-lang/perl || ( dev-lang/python:3.9 dev-lang/python:3.8 dev-lang/python:3.7 dev-lang/python:3.6 ) || ( ( dev-lang/python:3.9 dev-python/pyyaml[python_targets_python3_9(-),python_single_target_python3_9(+)] ) ( dev-lang/python:3.8 dev-python/pyyaml[python_targets_python3_8(-),python_single_target_python3_8(+)] ) ( dev-lang/python:3.7 dev-python/pyyaml[python_targets_python3_7(-),python_single_target_python3_7(+)] ) ( dev-lang/python:3.6 dev-python/pyyaml[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) sys-devel/flex tiles? ( sys-libs/ncurses:0 ) virtual/pkgconfig virtual/yacc DESCRIPTION=Role-playing roguelike game of exploration and treasure-hunting in dungeons EAPI=7 HOMEPAGE=https://crawl.develz.org -IUSE=debug ncurses sound test +tiles python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 lua_single_target_lua5-1 lua_single_target_lua5-2 lua_single_target_lua5-3 +IUSE=debug ncurses sound test +tiles lua_single_target_lua5-1 lua_single_target_lua5-2 lua_single_target_lua5-3 KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 BSD BSD-2 public-domain CC0-1.0 MIT -RDEPEND=lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-2? ( dev-lang/lua:5.2 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) dev-db/sqlite:3 sys-libs/zlib !ncurses? ( !tiles? ( sys-libs/ncurses:0 ) ) ncurses? ( sys-libs/ncurses:0 ) tiles? ( media-fonts/dejavu media-libs/freetype:2 media-libs/libpng:0 sound? ( media-libs/libsdl2[X,opengl,sound,video] media-libs/sdl2-mixer ) !sound? ( media-libs/libsdl2[X,opengl,video] ) media-libs/sdl2-image[png] virtual/glu virtual/opengl ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RDEPEND=lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-2? ( dev-lang/lua:5.2 ) lua_single_target_lua5-3? ( dev-lang/lua:5.3 ) dev-db/sqlite:3 sys-libs/zlib !ncurses? ( !tiles? ( sys-libs/ncurses:0 ) ) ncurses? ( sys-libs/ncurses:0 ) tiles? ( media-fonts/dejavu media-libs/freetype:2 media-libs/libpng:0 sound? ( media-libs/libsdl2[X,opengl,sound,video] media-libs/sdl2-mixer ) !sound? ( media-libs/libsdl2[X,opengl,video] ) media-libs/sdl2-image[png] virtual/glu virtual/opengl ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/crawl/crawl/releases/download/0.25.1/stone_soup-0.25.1.zip https://dev.gentoo.org/~hasufell/distfiles/stone-soup.png https://dev.gentoo.org/~hasufell/distfiles/stone-soup.svg -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 6492ae184ebb9d8124e5e0b23db93433 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e lua-single f91b5656f00869c220a6e35ae0521c54 lua-utils 661d14f97b7d04273143565853fdfbfe multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=708471ded18280efd2f75edcf150e753 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e lua-single f91b5656f00869c220a6e35ae0521c54 lua-utils 661d14f97b7d04273143565853fdfbfe multilib d410501a125f99ffb560b0c523cd3d1e python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=f3188c6746981a205284c7763a7e7983 diff --git a/metadata/md5-cache/games-util/Manifest.gz b/metadata/md5-cache/games-util/Manifest.gz index 9147b3c1c2d0..6c02ccf2542e 100644 Binary files a/metadata/md5-cache/games-util/Manifest.gz and b/metadata/md5-cache/games-util/Manifest.gz differ diff --git a/metadata/md5-cache/games-util/pyfa-2.31.0 b/metadata/md5-cache/games-util/pyfa-2.31.0 deleted file mode 100644 index d33f4dd9010f..000000000000 --- a/metadata/md5-cache/games-util/pyfa-2.31.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=app-arch/zip -DEFINED_PHASES=install postinst postrm preinst prepare setup -DEPEND=python_single_target_python3_6? ( >=dev-python/cryptography-2.3[python_targets_python3_6(-)] >=dev-python/logbook-1.0.0[python_targets_python3_6(-)] >=dev-python/pyyaml-5.1[python_targets_python3_6(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_6(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_6(-)] ) python_single_target_python3_7? ( >=dev-python/cryptography-2.3[python_targets_python3_7(-)] >=dev-python/logbook-1.0.0[python_targets_python3_7(-)] >=dev-python/pyyaml-5.1[python_targets_python3_7(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_7(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/cryptography-2.3[python_targets_python3_8(-)] >=dev-python/logbook-1.0.0[python_targets_python3_8(-)] >=dev-python/pyyaml-5.1[python_targets_python3_8(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_8(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_8(-)] ) python_single_target_python3_6? ( dev-lang/python:3.6[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=Python Fitting Assistant - a ship fitting application for EVE Online -EAPI=7 -HOMEPAGE=https://github.com/pyfa-org/Pyfa -IUSE=python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3+ all-rights-reserved -RDEPEND=python_single_target_python3_6? ( >=dev-python/cryptography-2.3[python_targets_python3_6(-)] >=dev-python/logbook-1.0.0[python_targets_python3_6(-)] >=dev-python/pyyaml-5.1[python_targets_python3_6(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_6(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_6(-)] ) python_single_target_python3_7? ( >=dev-python/cryptography-2.3[python_targets_python3_7(-)] >=dev-python/logbook-1.0.0[python_targets_python3_7(-)] >=dev-python/pyyaml-5.1[python_targets_python3_7(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_7(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/cryptography-2.3[python_targets_python3_8(-)] >=dev-python/logbook-1.0.0[python_targets_python3_8(-)] >=dev-python/pyyaml-5.1[python_targets_python3_8(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_8(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_8(-)] ) python_single_target_python3_6? ( dev-lang/python:3.6[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_6? ( >=dev-python/beautifulsoup-4.6.0[python_targets_python3_6(-)] >=dev-python/markdown2-2.3.5[python_targets_python3_6(-)] >=dev-python/packaging-16.8[python_targets_python3_6(-)] dev-python/python-dateutil[python_targets_python3_6(-)] >=dev-python/requests-2.0.0[python_targets_python3_6(-)] >=dev-python/roman-2.0.0[python_targets_python3_6(-)] >=dev-python/matplotlib-3.1.2[wxwidgets,python_targets_python3_6(-)] ) python_single_target_python3_7? ( >=dev-python/beautifulsoup-4.6.0[python_targets_python3_7(-)] >=dev-python/markdown2-2.3.5[python_targets_python3_7(-)] >=dev-python/packaging-16.8[python_targets_python3_7(-)] dev-python/python-dateutil[python_targets_python3_7(-)] >=dev-python/requests-2.0.0[python_targets_python3_7(-)] >=dev-python/roman-2.0.0[python_targets_python3_7(-)] >=dev-python/matplotlib-3.1.2[wxwidgets,python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/beautifulsoup-4.6.0[python_targets_python3_8(-)] >=dev-python/markdown2-2.3.5[python_targets_python3_8(-)] >=dev-python/packaging-16.8[python_targets_python3_8(-)] dev-python/python-dateutil[python_targets_python3_8(-)] >=dev-python/requests-2.0.0[python_targets_python3_8(-)] >=dev-python/roman-2.0.0[python_targets_python3_8(-)] >=dev-python/matplotlib-3.1.2[wxwidgets,python_targets_python3_8(-)] ) -REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) -RESTRICT=mirror bindist -SLOT=0 -SRC_URI=https://github.com/pyfa-org/Pyfa/archive/v2.31.0.tar.gz -> pyfa-2.31.0.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 multilib d410501a125f99ffb560b0c523cd3d1e python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=a1d1b06f317ef08b591ff84cbcac5008 diff --git a/metadata/md5-cache/games-util/pyfa-2.33.0 b/metadata/md5-cache/games-util/pyfa-2.33.0 new file mode 100644 index 000000000000..728d97c7b636 --- /dev/null +++ b/metadata/md5-cache/games-util/pyfa-2.33.0 @@ -0,0 +1,16 @@ +BDEPEND=app-arch/zip +DEFINED_PHASES=install postinst postrm preinst prepare setup +DEPEND=python_single_target_python3_6? ( >=dev-python/cryptography-2.3[python_targets_python3_6(-)] >=dev-python/logbook-1.0.0[python_targets_python3_6(-)] >=dev-python/pyyaml-5.1[python_targets_python3_6(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_6(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_6(-)] ) python_single_target_python3_7? ( >=dev-python/cryptography-2.3[python_targets_python3_7(-)] >=dev-python/logbook-1.0.0[python_targets_python3_7(-)] >=dev-python/pyyaml-5.1[python_targets_python3_7(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_7(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/cryptography-2.3[python_targets_python3_8(-)] >=dev-python/logbook-1.0.0[python_targets_python3_8(-)] >=dev-python/pyyaml-5.1[python_targets_python3_8(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_8(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/cryptography-2.3[python_targets_python3_9(-)] >=dev-python/logbook-1.0.0[python_targets_python3_9(-)] >=dev-python/pyyaml-5.1[python_targets_python3_9(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_9(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_9(-)] ) python_single_target_python3_6? ( dev-lang/python:3.6[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Python Fitting Assistant - a ship fitting application for EVE Online +EAPI=7 +HOMEPAGE=https://github.com/pyfa-org/Pyfa +IUSE=python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3+ all-rights-reserved +RDEPEND=python_single_target_python3_6? ( >=dev-python/cryptography-2.3[python_targets_python3_6(-)] >=dev-python/logbook-1.0.0[python_targets_python3_6(-)] >=dev-python/pyyaml-5.1[python_targets_python3_6(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_6(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_6(-)] ) python_single_target_python3_7? ( >=dev-python/cryptography-2.3[python_targets_python3_7(-)] >=dev-python/logbook-1.0.0[python_targets_python3_7(-)] >=dev-python/pyyaml-5.1[python_targets_python3_7(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_7(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/cryptography-2.3[python_targets_python3_8(-)] >=dev-python/logbook-1.0.0[python_targets_python3_8(-)] >=dev-python/pyyaml-5.1[python_targets_python3_8(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_8(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/cryptography-2.3[python_targets_python3_9(-)] >=dev-python/logbook-1.0.0[python_targets_python3_9(-)] >=dev-python/pyyaml-5.1[python_targets_python3_9(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_9(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_9(-)] ) python_single_target_python3_6? ( dev-lang/python:3.6[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_6? ( >=dev-python/beautifulsoup-4.6.0[python_targets_python3_6(-)] >=dev-python/markdown2-2.3.5[python_targets_python3_6(-)] >=dev-python/numpy-1.19.2[python_targets_python3_6(-)] >=dev-python/packaging-16.8[python_targets_python3_6(-)] dev-python/python-dateutil[python_targets_python3_6(-)] >=dev-python/requests-2.0.0[python_targets_python3_6(-)] >=dev-python/roman-2.0.0[python_targets_python3_6(-)] >=dev-python/matplotlib-3.1.2[wxwidgets,python_targets_python3_6(-)] ) python_single_target_python3_7? ( >=dev-python/beautifulsoup-4.6.0[python_targets_python3_7(-)] >=dev-python/markdown2-2.3.5[python_targets_python3_7(-)] >=dev-python/numpy-1.19.2[python_targets_python3_7(-)] >=dev-python/packaging-16.8[python_targets_python3_7(-)] dev-python/python-dateutil[python_targets_python3_7(-)] >=dev-python/requests-2.0.0[python_targets_python3_7(-)] >=dev-python/roman-2.0.0[python_targets_python3_7(-)] >=dev-python/matplotlib-3.1.2[wxwidgets,python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/beautifulsoup-4.6.0[python_targets_python3_8(-)] >=dev-python/markdown2-2.3.5[python_targets_python3_8(-)] >=dev-python/numpy-1.19.2[python_targets_python3_8(-)] >=dev-python/packaging-16.8[python_targets_python3_8(-)] dev-python/python-dateutil[python_targets_python3_8(-)] >=dev-python/requests-2.0.0[python_targets_python3_8(-)] >=dev-python/roman-2.0.0[python_targets_python3_8(-)] >=dev-python/matplotlib-3.1.2[wxwidgets,python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/beautifulsoup-4.6.0[python_targets_python3_9(-)] >=dev-python/markdown2-2.3.5[python_targets_python3_9(-)] >=dev-python/numpy-1.19.2[python_targets_python3_9(-)] >=dev-python/packaging-16.8[python_targets_python3_9(-)] dev-python/python-dateutil[python_targets_python3_9(-)] >=dev-python/requests-2.0.0[python_targets_python3_9(-)] >=dev-python/roman-2.0.0[python_targets_python3_9(-)] >=dev-python/matplotlib-3.1.2[wxwidgets,python_targets_python3_9(-)] ) +REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) +RESTRICT=mirror bindist +SLOT=0 +SRC_URI=https://github.com/pyfa-org/Pyfa/archive/v2.33.0.tar.gz -> pyfa-2.33.0.tar.gz +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 multilib d410501a125f99ffb560b0c523cd3d1e python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=7ace322ca43c3a5a812779595ec0ea11 diff --git a/metadata/md5-cache/games-util/pyfa-9999 b/metadata/md5-cache/games-util/pyfa-9999 index cdfef3188807..cee8d3dde400 100644 --- a/metadata/md5-cache/games-util/pyfa-9999 +++ b/metadata/md5-cache/games-util/pyfa-9999 @@ -1,15 +1,15 @@ BDEPEND=app-arch/zip >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=install postinst postrm preinst prepare setup unpack -DEPEND=python_single_target_python3_6? ( >=dev-python/cryptography-2.3[python_targets_python3_6(-)] >=dev-python/logbook-1.0.0[python_targets_python3_6(-)] >=dev-python/pyyaml-5.1[python_targets_python3_6(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_6(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_6(-)] ) python_single_target_python3_7? ( >=dev-python/cryptography-2.3[python_targets_python3_7(-)] >=dev-python/logbook-1.0.0[python_targets_python3_7(-)] >=dev-python/pyyaml-5.1[python_targets_python3_7(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_7(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/cryptography-2.3[python_targets_python3_8(-)] >=dev-python/logbook-1.0.0[python_targets_python3_8(-)] >=dev-python/pyyaml-5.1[python_targets_python3_8(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_8(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_8(-)] ) python_single_target_python3_6? ( dev-lang/python:3.6[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) dev-util/desktop-file-utils x11-misc/shared-mime-info +DEPEND=python_single_target_python3_6? ( >=dev-python/cryptography-2.3[python_targets_python3_6(-)] >=dev-python/logbook-1.0.0[python_targets_python3_6(-)] >=dev-python/pyyaml-5.1[python_targets_python3_6(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_6(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_6(-)] ) python_single_target_python3_7? ( >=dev-python/cryptography-2.3[python_targets_python3_7(-)] >=dev-python/logbook-1.0.0[python_targets_python3_7(-)] >=dev-python/pyyaml-5.1[python_targets_python3_7(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_7(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/cryptography-2.3[python_targets_python3_8(-)] >=dev-python/logbook-1.0.0[python_targets_python3_8(-)] >=dev-python/pyyaml-5.1[python_targets_python3_8(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_8(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/cryptography-2.3[python_targets_python3_9(-)] >=dev-python/logbook-1.0.0[python_targets_python3_9(-)] >=dev-python/pyyaml-5.1[python_targets_python3_9(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_9(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_9(-)] ) python_single_target_python3_6? ( dev-lang/python:3.6[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) dev-util/desktop-file-utils x11-misc/shared-mime-info DESCRIPTION=Python Fitting Assistant - a ship fitting application for EVE Online EAPI=7 HOMEPAGE=https://github.com/pyfa-org/Pyfa -IUSE=python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 +IUSE=python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 LICENSE=GPL-3+ all-rights-reserved PROPERTIES=live -RDEPEND=python_single_target_python3_6? ( >=dev-python/cryptography-2.3[python_targets_python3_6(-)] >=dev-python/logbook-1.0.0[python_targets_python3_6(-)] >=dev-python/pyyaml-5.1[python_targets_python3_6(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_6(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_6(-)] ) python_single_target_python3_7? ( >=dev-python/cryptography-2.3[python_targets_python3_7(-)] >=dev-python/logbook-1.0.0[python_targets_python3_7(-)] >=dev-python/pyyaml-5.1[python_targets_python3_7(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_7(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/cryptography-2.3[python_targets_python3_8(-)] >=dev-python/logbook-1.0.0[python_targets_python3_8(-)] >=dev-python/pyyaml-5.1[python_targets_python3_8(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_8(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_8(-)] ) python_single_target_python3_6? ( dev-lang/python:3.6[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_6? ( >=dev-python/beautifulsoup-4.6.0[python_targets_python3_6(-)] >=dev-python/markdown2-2.3.5[python_targets_python3_6(-)] >=dev-python/numpy-1.19.2[python_targets_python3_6(-)] >=dev-python/packaging-16.8[python_targets_python3_6(-)] dev-python/python-dateutil[python_targets_python3_6(-)] >=dev-python/requests-2.0.0[python_targets_python3_6(-)] >=dev-python/roman-2.0.0[python_targets_python3_6(-)] >=dev-python/matplotlib-3.1.2[wxwidgets,python_targets_python3_6(-)] ) python_single_target_python3_7? ( >=dev-python/beautifulsoup-4.6.0[python_targets_python3_7(-)] >=dev-python/markdown2-2.3.5[python_targets_python3_7(-)] >=dev-python/numpy-1.19.2[python_targets_python3_7(-)] >=dev-python/packaging-16.8[python_targets_python3_7(-)] dev-python/python-dateutil[python_targets_python3_7(-)] >=dev-python/requests-2.0.0[python_targets_python3_7(-)] >=dev-python/roman-2.0.0[python_targets_python3_7(-)] >=dev-python/matplotlib-3.1.2[wxwidgets,python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/beautifulsoup-4.6.0[python_targets_python3_8(-)] >=dev-python/markdown2-2.3.5[python_targets_python3_8(-)] >=dev-python/numpy-1.19.2[python_targets_python3_8(-)] >=dev-python/packaging-16.8[python_targets_python3_8(-)] dev-python/python-dateutil[python_targets_python3_8(-)] >=dev-python/requests-2.0.0[python_targets_python3_8(-)] >=dev-python/roman-2.0.0[python_targets_python3_8(-)] >=dev-python/matplotlib-3.1.2[wxwidgets,python_targets_python3_8(-)] ) -REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) +RDEPEND=python_single_target_python3_6? ( >=dev-python/cryptography-2.3[python_targets_python3_6(-)] >=dev-python/logbook-1.0.0[python_targets_python3_6(-)] >=dev-python/pyyaml-5.1[python_targets_python3_6(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_6(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_6(-)] ) python_single_target_python3_7? ( >=dev-python/cryptography-2.3[python_targets_python3_7(-)] >=dev-python/logbook-1.0.0[python_targets_python3_7(-)] >=dev-python/pyyaml-5.1[python_targets_python3_7(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_7(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/cryptography-2.3[python_targets_python3_8(-)] >=dev-python/logbook-1.0.0[python_targets_python3_8(-)] >=dev-python/pyyaml-5.1[python_targets_python3_8(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_8(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/cryptography-2.3[python_targets_python3_9(-)] >=dev-python/logbook-1.0.0[python_targets_python3_9(-)] >=dev-python/pyyaml-5.1[python_targets_python3_9(-)] >=dev-python/sqlalchemy-1.3.0[python_targets_python3_9(-)] >=dev-python/wxpython-4.0.6[webkit,python_targets_python3_9(-)] ) python_single_target_python3_6? ( dev-lang/python:3.6[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_6? ( >=dev-python/beautifulsoup-4.6.0[python_targets_python3_6(-)] >=dev-python/markdown2-2.3.5[python_targets_python3_6(-)] >=dev-python/numpy-1.19.2[python_targets_python3_6(-)] >=dev-python/packaging-16.8[python_targets_python3_6(-)] dev-python/python-dateutil[python_targets_python3_6(-)] >=dev-python/requests-2.0.0[python_targets_python3_6(-)] >=dev-python/roman-2.0.0[python_targets_python3_6(-)] >=dev-python/matplotlib-3.1.2[wxwidgets,python_targets_python3_6(-)] ) python_single_target_python3_7? ( >=dev-python/beautifulsoup-4.6.0[python_targets_python3_7(-)] >=dev-python/markdown2-2.3.5[python_targets_python3_7(-)] >=dev-python/numpy-1.19.2[python_targets_python3_7(-)] >=dev-python/packaging-16.8[python_targets_python3_7(-)] dev-python/python-dateutil[python_targets_python3_7(-)] >=dev-python/requests-2.0.0[python_targets_python3_7(-)] >=dev-python/roman-2.0.0[python_targets_python3_7(-)] >=dev-python/matplotlib-3.1.2[wxwidgets,python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/beautifulsoup-4.6.0[python_targets_python3_8(-)] >=dev-python/markdown2-2.3.5[python_targets_python3_8(-)] >=dev-python/numpy-1.19.2[python_targets_python3_8(-)] >=dev-python/packaging-16.8[python_targets_python3_8(-)] dev-python/python-dateutil[python_targets_python3_8(-)] >=dev-python/requests-2.0.0[python_targets_python3_8(-)] >=dev-python/roman-2.0.0[python_targets_python3_8(-)] >=dev-python/matplotlib-3.1.2[wxwidgets,python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/beautifulsoup-4.6.0[python_targets_python3_9(-)] >=dev-python/markdown2-2.3.5[python_targets_python3_9(-)] >=dev-python/numpy-1.19.2[python_targets_python3_9(-)] >=dev-python/packaging-16.8[python_targets_python3_9(-)] dev-python/python-dateutil[python_targets_python3_9(-)] >=dev-python/requests-2.0.0[python_targets_python3_9(-)] >=dev-python/roman-2.0.0[python_targets_python3_9(-)] >=dev-python/matplotlib-3.1.2[wxwidgets,python_targets_python3_9(-)] ) +REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) RESTRICT=mirror bindist SLOT=0 _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 git-r3 3e7ec3d6619213460c85e2aa48398441 multilib d410501a125f99ffb560b0c523cd3d1e python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=8c98bab8b02f4fc88dcbea7dd84603d9 +_md5_=7ace322ca43c3a5a812779595ec0ea11 diff --git a/metadata/md5-cache/gui-libs/Manifest.gz b/metadata/md5-cache/gui-libs/Manifest.gz index 5e1bd7c7c0af..ac5b16404d0d 100644 Binary files a/metadata/md5-cache/gui-libs/Manifest.gz and b/metadata/md5-cache/gui-libs/Manifest.gz differ diff --git a/metadata/md5-cache/gui-libs/wlroots-0.12.0 b/metadata/md5-cache/gui-libs/wlroots-0.12.0 index 0efb979a7edd..c911eb2d3932 100644 --- a/metadata/md5-cache/gui-libs/wlroots-0.12.0 +++ b/metadata/md5-cache/gui-libs/wlroots-0.12.0 @@ -5,11 +5,11 @@ DESCRIPTION=Pluggable, composable, unopinionated modules for building a Wayland EAPI=7 HOMEPAGE=https://github.com/swaywm/wlroots IUSE=elogind icccm seatd systemd x11-backend X +filecaps -KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 +KEYWORDS=amd64 arm64 ~ppc64 x86 LICENSE=MIT RDEPEND=>=dev-libs/libinput-1.9.0:0= >=dev-libs/wayland-1.18.0 >=dev-libs/wayland-protocols-1.17.0 media-libs/mesa[egl,gles2,gbm] virtual/libudev x11-libs/libdrm x11-libs/libxkbcommon x11-libs/pixman elogind? ( >=sys-auth/elogind-237 ) icccm? ( x11-libs/xcb-util-wm ) seatd? ( sys-auth/seatd:= ) systemd? ( >=sys-apps/systemd-237 ) x11-backend? ( x11-libs/libxcb:0= ) X? ( x11-base/xorg-server[wayland] x11-libs/libxcb:0= x11-libs/xcb-util-image ) filecaps? ( sys-libs/libcap ) REQUIRED_USE=?? ( elogind systemd ) SLOT=0/12 SRC_URI=https://github.com/swaywm/wlroots/archive/0.12.0.tar.gz -> wlroots-0.12.0.tar.gz _eclasses_=fcaps da689a8e04bbbb3518888ff668fee45b meson 71d293a701d6362387e1214da368c848 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=c2c4f5868eee2bb4c9281bfb17f54a79 +_md5_=7e49d4856af63b516193a7eebb87a8d3 diff --git a/metadata/md5-cache/gui-wm/Manifest.gz b/metadata/md5-cache/gui-wm/Manifest.gz index c449b27af6cd..b23194868c3f 100644 Binary files a/metadata/md5-cache/gui-wm/Manifest.gz and b/metadata/md5-cache/gui-wm/Manifest.gz differ diff --git a/metadata/md5-cache/gui-wm/sway-1.5.1 b/metadata/md5-cache/gui-wm/sway-1.5.1 index e68c8d4653ec..fcc016dc39b8 100644 --- a/metadata/md5-cache/gui-wm/sway-1.5.1 +++ b/metadata/md5-cache/gui-wm/sway-1.5.1 @@ -5,11 +5,11 @@ DESCRIPTION=i3-compatible Wayland window manager EAPI=7 HOMEPAGE=https://swaywm.org IUSE=elogind fish-completion +man +swaybar +swaybg +swayidle +swaylock +swaymsg +swaynag seatd systemd tray wallpapers X zsh-completion -KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 +KEYWORDS=amd64 arm64 ~ppc64 x86 LICENSE=MIT RDEPEND=x11-misc/xkeyboard-config >=dev-libs/json-c-0.13:0= >=dev-libs/libinput-1.6.0:0= dev-libs/libpcre dev-libs/wayland x11-libs/cairo x11-libs/libxkbcommon x11-libs/pango x11-libs/pixman media-libs/mesa[gles2,libglvnd(+)] elogind? ( >=sys-auth/elogind-239 ) swaybar? ( x11-libs/gdk-pixbuf:2 ) swaybg? ( gui-apps/swaybg ) swayidle? ( gui-apps/swayidle ) swaylock? ( gui-apps/swaylock ) systemd? ( >=sys-apps/systemd-239 ) wallpapers? ( x11-libs/gdk-pixbuf:2[jpeg] ) X? ( x11-libs/libxcb:0= ) =gui-libs/wlroots-0.12.0*:=[elogind=,seatd=,systemd=,X=] REQUIRED_USE=?? ( elogind systemd ) tray? ( || ( elogind systemd ) ) SLOT=0 SRC_URI=https://github.com/swaywm/sway/archive/1.5.1.tar.gz -> sway-1.5.1.tar.gz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e meson 71d293a701d6362387e1214da368c848 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=7010e933f2c29a82af09fa919ab020d2 +_md5_=1f827e0a001022f65d3588567580ba9f diff --git a/metadata/md5-cache/media-fonts/Manifest.gz b/metadata/md5-cache/media-fonts/Manifest.gz index 3d07b6211c6b..11f93f34b373 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/jetbrains-mono-2.210 b/metadata/md5-cache/media-fonts/jetbrains-mono-2.210 new file mode 100644 index 000000000000..3abfd57911dd --- /dev/null +++ b/metadata/md5-cache/media-fonts/jetbrains-mono-2.210 @@ -0,0 +1,13 @@ +BDEPEND=app-arch/unzip +DEFINED_PHASES=install postinst postrm setup +DEPEND=X? ( >=x11-apps/mkfontscale-1.2.0 media-fonts/encodings ) +DESCRIPTION=A free and open-source typeface for developers +EAPI=7 +HOMEPAGE=https://www.jetbrains.com/lp/mono/ +IUSE=X +KEYWORDS=~amd64 ~x86 +LICENSE=OFL-1.1 +SLOT=0 +SRC_URI=https://github.com/JetBrains/JetBrainsMono/releases/download/v2.210/JetBrainsMono-2.210.zip -> jetbrains-mono-2.210.zip +_eclasses_=font dd073b36fe3fd8b868c23bc23209db45 +_md5_=488a8097ee8f85dadf4ae044fef746cd diff --git a/metadata/md5-cache/media-libs/Manifest.gz b/metadata/md5-cache/media-libs/Manifest.gz index ef3272f811d1..3107713c2b6c 100644 Binary files a/metadata/md5-cache/media-libs/Manifest.gz and b/metadata/md5-cache/media-libs/Manifest.gz differ diff --git a/metadata/md5-cache/media-libs/osl-1.10.10 b/metadata/md5-cache/media-libs/osl-1.10.10 deleted file mode 100644 index 3b379bad995c..000000000000 --- a/metadata/md5-cache/media-libs/osl-1.10.10 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=sys-devel/bison sys-devel/flex virtual/pkgconfig dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install prepare setup test -DEPEND=dev-libs/boost:= dev-libs/pugixml media-libs/openexr:= media-libs/openimageio:= osl-1.10.10.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e llvm 21d8c0949a2693d7109cc6a25fabfcaf multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=9e1583e0a52aaa64095325d2bf61c40a diff --git a/metadata/md5-cache/media-libs/osl-1.10.13 b/metadata/md5-cache/media-libs/osl-1.10.13 index 76010ebba9c5..c2070aa51ab3 100644 --- a/metadata/md5-cache/media-libs/osl-1.10.13 +++ b/metadata/md5-cache/media-libs/osl-1.10.13 @@ -5,11 +5,11 @@ DESCRIPTION=Advanced shading language for production GI renderers EAPI=7 HOMEPAGE=http://opensource.imageworks.com/?p=osl https://github.com/imageworks/OpenShadingLanguage IUSE=doc partio qt5 test cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_ssse3 cpu_flags_x86_sse4_1 cpu_flags_x86_sse4_2 cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_avx512f cpu_flags_x86_f16c -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=BSD RDEPEND=dev-libs/boost:= dev-libs/pugixml media-libs/openexr:= media-libs/openimageio:= osl-1.10.13.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e llvm 21d8c0949a2693d7109cc6a25fabfcaf multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=fea6dff394760282737ed60f3090cc56 +_md5_=bb9d3703764d6c42fe38edde2fe90b08 diff --git a/metadata/md5-cache/media-libs/raspberrypi-userland-bin-1.20201022 b/metadata/md5-cache/media-libs/raspberrypi-userland-bin-1.20201022 index ba96b59f3915..0e5ecad37196 100644 --- a/metadata/md5-cache/media-libs/raspberrypi-userland-bin-1.20201022 +++ b/metadata/md5-cache/media-libs/raspberrypi-userland-bin-1.20201022 @@ -3,10 +3,10 @@ DESCRIPTION=Raspberry Pi userspace tools and libraries EAPI=7 HOMEPAGE=https://github.com/raspberrypi/firmware IUSE=+hardfp examples -KEYWORDS=-* ~arm arm64 +KEYWORDS=-* arm LICENSE=BSD GPL-2 raspberrypi-videocore-bin RDEPEND=!media-libs/raspberrypi-userland RESTRICT=binchecks strip SLOT=0 SRC_URI=https://github.com/raspberrypi/firmware/archive/1.20201022.tar.gz -> raspberrypi-firmware-1.20201022.tar.gz -_md5_=1e8bb85311ec21fdb9955d7f45df8249 +_md5_=dfb2c0da7b626ac4244ad2f3170330c4 diff --git a/metadata/md5-cache/media-libs/vulkan-layers-1.2.154 b/metadata/md5-cache/media-libs/vulkan-layers-1.2.154 index fa33c52fdad7..59b0e1b7434b 100644 --- a/metadata/md5-cache/media-libs/vulkan-layers-1.2.154 +++ b/metadata/md5-cache/media-libs/vulkan-layers-1.2.154 @@ -5,9 +5,9 @@ DESCRIPTION=Vulkan Validation Layers EAPI=7 HOMEPAGE=https://github.com/KhronosGroup/Vulkan-ValidationLayers IUSE=wayland X abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~amd64 arm arm64 ~ppc ~ppc64 ~riscv x86 +KEYWORDS=~amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 SLOT=0 SRC_URI=https://github.com/KhronosGroup/Vulkan-ValidationLayers/archive/v1.2.154.tar.gz -> vulkan-layers-1.2.154.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 cmake-multilib b396704c8c04bb210b7b45dff5c67fea edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=a98fec4e165d94429b543a5c21e8e419 +_md5_=ece936975e218cc5b35cbacb31d226f2 diff --git a/metadata/md5-cache/media-libs/vulkan-loader-1.2.154 b/metadata/md5-cache/media-libs/vulkan-loader-1.2.154 index 4f1b058bdbc4..0beede939c18 100644 --- a/metadata/md5-cache/media-libs/vulkan-loader-1.2.154 +++ b/metadata/md5-cache/media-libs/vulkan-loader-1.2.154 @@ -5,10 +5,10 @@ DESCRIPTION=Vulkan Installable Client Driver (ICD) Loader EAPI=7 HOMEPAGE=https://github.com/KhronosGroup/Vulkan-Loader IUSE=layers wayland X abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~amd64 arm arm64 ~ppc ~ppc64 ~riscv x86 +KEYWORDS=~amd64 arm arm64 ~ppc ppc64 ~riscv x86 LICENSE=Apache-2.0 PDEPEND=layers? ( media-libs/vulkan-layers:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) SLOT=0 SRC_URI=https://github.com/KhronosGroup/Vulkan-Loader/archive/v1.2.154.tar.gz -> vulkan-loader-1.2.154.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 cmake-multilib b396704c8c04bb210b7b45dff5c67fea edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=1d16b6f1ede19725e2cb3fbbe86c598d +_md5_=46960ae3ddcf88441111d35e3f42d234 diff --git a/metadata/md5-cache/media-sound/Manifest.gz b/metadata/md5-cache/media-sound/Manifest.gz index 9fe2a504b4a5..35c0ea49ffb6 100644 Binary files a/metadata/md5-cache/media-sound/Manifest.gz and b/metadata/md5-cache/media-sound/Manifest.gz differ diff --git a/metadata/md5-cache/media-sound/musescore-9999 b/metadata/md5-cache/media-sound/musescore-9999 index 5897726e861a..eb0cd87e84d0 100644 --- a/metadata/md5-cache/media-sound/musescore-9999 +++ b/metadata/md5-cache/media-sound/musescore-9999 @@ -12,4 +12,4 @@ REQUIRED_USE=portmidi? ( portaudio ) SLOT=0 SRC_URI=https://dev.gentoo.org/~fordfrog/distfiles/MuseScore_General-0.2.0.tar.bz2 _eclasses_=check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=b4582d5d033ae95ecd8d86c527c6e551 +_md5_=44167e59c5e89ad740bf6122c4a3832e diff --git a/metadata/md5-cache/media-tv/Manifest.gz b/metadata/md5-cache/media-tv/Manifest.gz index 32992afdf4ba..afa214ef71ef 100644 Binary files a/metadata/md5-cache/media-tv/Manifest.gz and b/metadata/md5-cache/media-tv/Manifest.gz differ diff --git a/metadata/md5-cache/media-tv/mythtv-30.0_p20190808-r3 b/metadata/md5-cache/media-tv/mythtv-30.0_p20190808-r3 deleted file mode 100644 index fb490ba1276c..000000000000 --- a/metadata/md5-cache/media-tv/mythtv-30.0_p20190808-r3 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig virtual/pkgconfig -DEFINED_PHASES=config configure info install postinst prepare setup unpack -DEPEND=acct-user/mythtv dev-libs/glib:2 dev-libs/lzo dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 opengl? ( dev-qt/qtopengl:5 ) dev-qt/qtscript:5 dev-qt/qtsql:5[mysql] dev-qt/qtwebkit:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-gfx/exiv2:= media-libs/freetype:2 media-libs/libsamplerate media-libs/taglib lame? ( >=media-sound/lame-3.93.1 ) sys-libs/zlib opengl? ( virtual/opengl ) X? ( x11-libs/libX11:= x11-libs/libXext:= x11-libs/libXinerama:= x11-libs/libXrandr:= x11-libs/libXv:= x11-libs/libXxf86vm:= x11-misc/wmctrl:= ) alsa? ( >=media-libs/alsa-lib-1.0.24 ) bluray? ( media-libs/libbluray:=[java?] dev-libs/libcdio:= sys-fs/udisks:2 ) cec? ( dev-libs/libcec ) dvd? ( dev-libs/libcdio:= sys-fs/udisks:2 ) egl? ( media-libs/mesa[egl] ) fftw? ( sci-libs/fftw:3.0=[threads] ) hdhomerun? ( media-libs/libhdhomerun ) ieee1394? ( >=media-libs/libiec61883-1.0.0 >=sys-libs/libavc1394-0.5.3 >=sys-libs/libraw1394-1.2.0 ) jack? ( media-sound/jack-audio-connection-kit ) java? ( dev-java/ant-core ) lcd? ( app-misc/lcdproc ) libass? ( >=media-libs/libass-0.9.11:= ) lirc? ( app-misc/lirc ) perl? ( >=dev-perl/libwww-perl-5 dev-perl/DBD-mysql dev-perl/HTTP-Message dev-perl/IO-Socket-INET6 dev-perl/LWP-Protocol-https dev-perl/Net-UPnP ) pulseaudio? ( media-sound/pulseaudio ) systemd? ( sys-apps/systemd:= ) vaapi? ( x11-libs/libva:=[opengl] ) vdpau? ( x11-libs/libvdpau ) vpx? ( =media-libs/x264-0.0.20111220:= ) x265? ( media-libs/x265 ) xml? ( >=dev-libs/libxml2-2.6.0 ) xvid? ( >=media-libs/xvid-1.1.0 ) zeroconf? ( dev-libs/openssl:0= net-dns/avahi[mdnsresponder-compat] ) dev-lang/yasm x11-base/xorg-proto -DESCRIPTION=Open Source DVR and media center hub -EAPI=7 -HOMEPAGE=https://www.mythtv.org -IUSE=alsa altivec asi autostart bluray cdda cdr cec debug dvd dvb egl exif fftw jack java +lame lcd libass lirc +opengl oss perl pulseaudio python raw systemd vaapi vdpau vpx +wrapper x264 x265 +xml xmltv xnvctrl +xvid +X zeroconf input_devices_joystick v4l ivtv ieee1394 hdpvr hdhomerun vbox ceton +python_single_target_python2_7 -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND=acct-user/mythtv dev-libs/glib:2 dev-libs/lzo dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 opengl? ( dev-qt/qtopengl:5 ) dev-qt/qtscript:5 dev-qt/qtsql:5[mysql] dev-qt/qtwebkit:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-gfx/exiv2:= media-libs/freetype:2 media-libs/libsamplerate media-libs/taglib lame? ( >=media-sound/lame-3.93.1 ) sys-libs/zlib opengl? ( virtual/opengl ) X? ( x11-libs/libX11:= x11-libs/libXext:= x11-libs/libXinerama:= x11-libs/libXrandr:= x11-libs/libXv:= x11-libs/libXxf86vm:= x11-misc/wmctrl:= ) alsa? ( >=media-libs/alsa-lib-1.0.24 ) bluray? ( media-libs/libbluray:=[java?] dev-libs/libcdio:= sys-fs/udisks:2 ) cec? ( dev-libs/libcec ) dvd? ( dev-libs/libcdio:= sys-fs/udisks:2 ) egl? ( media-libs/mesa[egl] ) fftw? ( sci-libs/fftw:3.0=[threads] ) hdhomerun? ( media-libs/libhdhomerun ) ieee1394? ( >=media-libs/libiec61883-1.0.0 >=sys-libs/libavc1394-0.5.3 >=sys-libs/libraw1394-1.2.0 ) jack? ( media-sound/jack-audio-connection-kit ) java? ( dev-java/ant-core ) lcd? ( app-misc/lcdproc ) libass? ( >=media-libs/libass-0.9.11:= ) lirc? ( app-misc/lirc ) perl? ( >=dev-perl/libwww-perl-5 dev-perl/DBD-mysql dev-perl/HTTP-Message dev-perl/IO-Socket-INET6 dev-perl/LWP-Protocol-https dev-perl/Net-UPnP ) pulseaudio? ( media-sound/pulseaudio ) systemd? ( sys-apps/systemd:= ) vaapi? ( x11-libs/libva:=[opengl] ) vdpau? ( x11-libs/libvdpau ) vpx? ( =media-libs/x264-0.0.20111220:= ) x265? ( media-libs/x265 ) xml? ( >=dev-libs/libxml2-2.6.0 ) xvid? ( >=media-libs/xvid-1.1.0 ) zeroconf? ( dev-libs/openssl:0= net-dns/avahi[mdnsresponder-compat] ) python? ( python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7] ) python_single_target_python2_7? ( dev-python/lxml[python_targets_python2_7(-)] dev-python/mysqlclient[python_targets_python2_7(-)] dev-python/urlgrabber[python_targets_python2_7(-)] dev-python/future[python_targets_python2_7(-)] dev-python/requests-cache[python_targets_python2_7(-)] ) ) media-fonts/corefonts media-fonts/dejavu media-fonts/liberation-fonts x11-apps/xinit autostart? ( net-dialup/mingetty x11-apps/xset x11-wm/evilwm ) dvd? ( media-libs/libdvdcss ) xmltv? ( >=media-tv/xmltv-0.5.43 ) -REQUIRED_USE=python? ( ^^ ( python_single_target_python2_7 ) ) bluray? ( xml ) cdr? ( cdda ) -SLOT=0/30.0_p20190808 -SRC_URI=https://github.com/MythTV/mythtv/archive/5cde0578d84926171b20c8f7e95a101e9b0b9457.tar.gz -> mythtv-30.0_p20190808.tar.gz https://dev.gentoo.org/~juippis/distfiles/tmp/mythtv-30.0_p20190808-cast_constants_to_short.patch -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user-info a2abd4e2f4c3b9b06d64bf1329359a02 vcs-snapshot b1abf460a493fc59ebb25de0df3f09dd wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=c56ea6270e8bb5d86227a7b322cd26e8 diff --git a/metadata/md5-cache/media-tv/mythtv-31.0-r3 b/metadata/md5-cache/media-tv/mythtv-31.0-r4 similarity index 75% rename from metadata/md5-cache/media-tv/mythtv-31.0-r3 rename to metadata/md5-cache/media-tv/mythtv-31.0-r4 index e5cdc6b1dc76..1e098d585a68 100644 --- a/metadata/md5-cache/media-tv/mythtv-31.0-r3 +++ b/metadata/md5-cache/media-tv/mythtv-31.0-r4 @@ -1,15 +1,15 @@ BDEPEND=virtual/pkgconfig opengl? ( virtual/opengl ) python? ( || ( dev-lang/python:3.7 dev-lang/python:3.6 ) ) virtual/pkgconfig DEFINED_PHASES=config configure info install postinst prepare setup -DEPEND=acct-user/mythtv dev-libs/glib:2 dev-libs/lzo dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtscript:5 dev-qt/qtsql:5[mysql] dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-fonts/corefonts media-fonts/dejavu media-fonts/liberation-fonts media-fonts/tex-gyre media-gfx/exiv2:= media-libs/freetype:2 media-libs/libsamplerate media-libs/taglib sys-libs/zlib alsa? ( media-libs/alsa-lib ) autostart? ( net-dialup/mingetty x11-apps/xset x11-wm/evilwm ) bluray? ( dev-libs/libcdio:= media-libs/libbluray:=[java?] sys-fs/udisks:2 ) cec? ( dev-libs/libcec ) dvd? ( dev-libs/libcdio:= media-libs/libdvdcss sys-fs/udisks:2 ) egl? ( media-libs/mesa[egl] ) fftw? ( sci-libs/fftw:3.0=[threads] ) hdhomerun? ( media-libs/libhdhomerun ) ieee1394? ( media-libs/libiec61883 sys-libs/libavc1394 sys-libs/libraw1394 ) jack? ( virtual/jack ) java? ( dev-java/ant-core ) lame? ( media-sound/lame ) lcd? ( app-misc/lcdproc ) libass? ( media-libs/libass:= ) lirc? ( app-misc/lirc ) nvdec? ( x11-drivers/nvidia-drivers ) opengl? ( dev-qt/qtopengl:5 ) pulseaudio? ( media-sound/pulseaudio ) systemd? ( sys-apps/systemd:= ) vaapi? ( x11-libs/libva:=[opengl] ) vdpau? ( x11-libs/libvdpau ) vpx? ( media-libs/libvpx:= ) x264? ( media-libs/x264:= ) X? ( x11-apps/xinit x11-libs/libX11:= x11-libs/libXext:= x11-libs/libXinerama:= x11-libs/libXrandr:= x11-libs/libXv:= x11-libs/libXxf86vm:= x11-misc/wmctrl:= ) x265? ( media-libs/x265 ) xml? ( dev-libs/libxml2:2 ) xmltv? ( dev-perl/XML-LibXML dev-qt/qtwebkit:5 media-tv/xmltv ) xvid? ( media-libs/xvid ) zeroconf? ( dev-libs/openssl:= net-dns/avahi[mdnsresponder-compat] ) dev-lang/yasm x11-base/xorg-proto perl? ( dev-perl/DBD-mysql dev-perl/DBI dev-perl/HTTP-Message dev-perl/IO-Socket-INET6 dev-perl/LWP-Protocol-https dev-perl/Net-UPnP dev-perl/XML-Simple ) python? ( || ( ( dev-lang/python:3.7 dev-python/future[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/lxml[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/mysqlclient[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/requests-cache[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/simplejson[python_targets_python3_7(-),python_single_target_python3_7(+)] ) ( dev-lang/python:3.6 dev-python/future[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/lxml[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/mysqlclient[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/requests-cache[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/simplejson[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) +DEPEND=acct-user/mythtv dev-libs/glib:2 dev-libs/lzo dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtscript:5 dev-qt/qtsql:5[mysql] dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-fonts/corefonts media-fonts/dejavu media-fonts/liberation-fonts media-fonts/tex-gyre media-gfx/exiv2:= media-libs/freetype:2 media-libs/libsamplerate media-libs/taglib sys-libs/zlib alsa? ( media-libs/alsa-lib ) autostart? ( net-dialup/mingetty x11-apps/xset x11-wm/evilwm ) bluray? ( dev-libs/libcdio:= media-libs/libbluray:=[java?] sys-fs/udisks:2 ) cec? ( dev-libs/libcec ) dvd? ( dev-libs/libcdio:= media-libs/libdvdcss sys-fs/udisks:2 ) egl? ( media-libs/mesa[egl] ) fftw? ( sci-libs/fftw:3.0=[threads] ) hdhomerun? ( media-libs/libhdhomerun ) ieee1394? ( media-libs/libiec61883 sys-libs/libavc1394 sys-libs/libraw1394 ) jack? ( virtual/jack ) java? ( dev-java/ant-core ) lame? ( media-sound/lame ) lcd? ( app-misc/lcdproc ) libass? ( media-libs/libass:= ) lirc? ( app-misc/lirc ) nvdec? ( x11-drivers/nvidia-drivers ) opengl? ( dev-qt/qtopengl:5 ) pulseaudio? ( media-sound/pulseaudio ) systemd? ( sys-apps/systemd:= ) vaapi? ( x11-libs/libva:=[opengl] ) vdpau? ( x11-libs/libvdpau ) vpx? ( media-libs/libvpx:= ) x264? ( media-libs/x264:= ) X? ( x11-apps/xinit x11-libs/libX11:= x11-libs/libXext:= x11-libs/libXinerama:= x11-libs/libXrandr:= x11-libs/libXv:= x11-libs/libXxf86vm:= x11-misc/wmctrl:= ) x265? ( media-libs/x265 ) xml? ( dev-libs/libxml2:2 ) xmltv? ( dev-perl/XML-LibXML media-tv/xmltv ) xvid? ( media-libs/xvid ) zeroconf? ( dev-libs/openssl:= net-dns/avahi[mdnsresponder-compat] ) dev-lang/yasm x11-base/xorg-proto perl? ( dev-perl/DBD-mysql dev-perl/DBI dev-perl/HTTP-Message dev-perl/IO-Socket-INET6 dev-perl/LWP-Protocol-https dev-perl/Net-UPnP dev-perl/XML-Simple ) python? ( || ( ( dev-lang/python:3.7 dev-python/future[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/lxml[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/mysqlclient[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/requests-cache[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/simplejson[python_targets_python3_7(-),python_single_target_python3_7(+)] ) ( dev-lang/python:3.6 dev-python/future[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/lxml[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/mysqlclient[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/requests-cache[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/simplejson[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) DESCRIPTION=Open Source DVR and media center hub EAPI=7 HOMEPAGE=https://www.mythtv.org https://github.com/MythTV/mythtv IUSE=alsa altivec asi autostart bluray cdda cdr cec debug dvd dvb egl exif fftw jack java +lame lcd libass lirc nvdec +opengl oss perl pulseaudio python raw systemd vaapi vdpau vpx +wrapper x264 x265 +xml xmltv +xvid +X zeroconf input_devices_joystick v4l ivtv ieee1394 hdpvr hdhomerun vbox ceton KEYWORDS=~amd64 ~x86 LICENSE=GPL-2+ -RDEPEND=acct-user/mythtv dev-libs/glib:2 dev-libs/lzo dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtscript:5 dev-qt/qtsql:5[mysql] dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-fonts/corefonts media-fonts/dejavu media-fonts/liberation-fonts media-fonts/tex-gyre media-gfx/exiv2:= media-libs/freetype:2 media-libs/libsamplerate media-libs/taglib sys-libs/zlib alsa? ( media-libs/alsa-lib ) autostart? ( net-dialup/mingetty x11-apps/xset x11-wm/evilwm ) bluray? ( dev-libs/libcdio:= media-libs/libbluray:=[java?] sys-fs/udisks:2 ) cec? ( dev-libs/libcec ) dvd? ( dev-libs/libcdio:= media-libs/libdvdcss sys-fs/udisks:2 ) egl? ( media-libs/mesa[egl] ) fftw? ( sci-libs/fftw:3.0=[threads] ) hdhomerun? ( media-libs/libhdhomerun ) ieee1394? ( media-libs/libiec61883 sys-libs/libavc1394 sys-libs/libraw1394 ) jack? ( virtual/jack ) java? ( dev-java/ant-core ) lame? ( media-sound/lame ) lcd? ( app-misc/lcdproc ) libass? ( media-libs/libass:= ) lirc? ( app-misc/lirc ) nvdec? ( x11-drivers/nvidia-drivers ) opengl? ( dev-qt/qtopengl:5 ) pulseaudio? ( media-sound/pulseaudio ) systemd? ( sys-apps/systemd:= ) vaapi? ( x11-libs/libva:=[opengl] ) vdpau? ( x11-libs/libvdpau ) vpx? ( media-libs/libvpx:= ) x264? ( media-libs/x264:= ) X? ( x11-apps/xinit x11-libs/libX11:= x11-libs/libXext:= x11-libs/libXinerama:= x11-libs/libXrandr:= x11-libs/libXv:= x11-libs/libXxf86vm:= x11-misc/wmctrl:= ) x265? ( media-libs/x265 ) xml? ( dev-libs/libxml2:2 ) xmltv? ( dev-perl/XML-LibXML dev-qt/qtwebkit:5 media-tv/xmltv ) xvid? ( media-libs/xvid ) zeroconf? ( dev-libs/openssl:= net-dns/avahi[mdnsresponder-compat] ) +RDEPEND=acct-user/mythtv dev-libs/glib:2 dev-libs/lzo dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtscript:5 dev-qt/qtsql:5[mysql] dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-fonts/corefonts media-fonts/dejavu media-fonts/liberation-fonts media-fonts/tex-gyre media-gfx/exiv2:= media-libs/freetype:2 media-libs/libsamplerate media-libs/taglib sys-libs/zlib alsa? ( media-libs/alsa-lib ) autostart? ( net-dialup/mingetty x11-apps/xset x11-wm/evilwm ) bluray? ( dev-libs/libcdio:= media-libs/libbluray:=[java?] sys-fs/udisks:2 ) cec? ( dev-libs/libcec ) dvd? ( dev-libs/libcdio:= media-libs/libdvdcss sys-fs/udisks:2 ) egl? ( media-libs/mesa[egl] ) fftw? ( sci-libs/fftw:3.0=[threads] ) hdhomerun? ( media-libs/libhdhomerun ) ieee1394? ( media-libs/libiec61883 sys-libs/libavc1394 sys-libs/libraw1394 ) jack? ( virtual/jack ) java? ( dev-java/ant-core ) lame? ( media-sound/lame ) lcd? ( app-misc/lcdproc ) libass? ( media-libs/libass:= ) lirc? ( app-misc/lirc ) nvdec? ( x11-drivers/nvidia-drivers ) opengl? ( dev-qt/qtopengl:5 ) pulseaudio? ( media-sound/pulseaudio ) systemd? ( sys-apps/systemd:= ) vaapi? ( x11-libs/libva:=[opengl] ) vdpau? ( x11-libs/libvdpau ) vpx? ( media-libs/libvpx:= ) x264? ( media-libs/x264:= ) X? ( x11-apps/xinit x11-libs/libX11:= x11-libs/libXext:= x11-libs/libXinerama:= x11-libs/libXrandr:= x11-libs/libXv:= x11-libs/libXxf86vm:= x11-misc/wmctrl:= ) x265? ( media-libs/x265 ) xml? ( dev-libs/libxml2:2 ) xmltv? ( dev-perl/XML-LibXML media-tv/xmltv ) xvid? ( media-libs/xvid ) zeroconf? ( dev-libs/openssl:= net-dns/avahi[mdnsresponder-compat] ) REQUIRED_USE=bluray? ( xml ) cdr? ( cdda ) SLOT=0 SRC_URI=https://github.com/MythTV/mythtv/archive/v31.0.tar.gz -> mythtv-31.0.tar.gz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user-info a2abd4e2f4c3b9b06d64bf1329359a02 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=e5a305baebd27f7b297f9b784203f303 +_md5_=a3013ba717b74103ec67305f66cafd4c diff --git a/metadata/md5-cache/net-dns/Manifest.gz b/metadata/md5-cache/net-dns/Manifest.gz index 52511fe4dec7..fd3b01a1f8ab 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/unbound-1.13.0 b/metadata/md5-cache/net-dns/unbound-1.13.0 index 09f7e289bbe6..58cb1e8d28d0 100644 --- a/metadata/md5-cache/net-dns/unbound-1.13.0 +++ b/metadata/md5-cache/net-dns/unbound-1.13.0 @@ -5,7 +5,7 @@ DESCRIPTION=A validating, recursive and caching DNS resolver EAPI=7 HOMEPAGE=https://unbound.net/ https://nlnetlabs.nl/projects/unbound/about/ IUSE=debug dnscrypt dnstap +ecdsa ecs gost +http2 libressl python redis selinux static-libs systemd test threads abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 x86 +KEYWORDS=~alpha ~amd64 arm ~arm64 ~hppa ~mips ~ppc ~ppc64 x86 LICENSE=BSD GPL-2 RDEPEND=acct-group/unbound acct-user/unbound >=dev-libs/expat-2.1.0-r3[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/libevent-2.0.21:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] libressl? ( >=dev-libs/libressl-2.2.4:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) !libressl? ( >=dev-libs/openssl-1.0.1h-r2:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dnscrypt? ( dev-libs/libsodium[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) dnstap? ( dev-libs/fstrm[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/protobuf-c-1.0.2-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ecdsa? ( !libressl? ( dev-libs/openssl:0[-bindist] ) ) http2? ( net-libs/nghttp2 ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) redis? ( dev-libs/hiredis:= ) net-dns/dnssec-root selinux? ( sec-policy/selinux-bind ) net-dns/dnssec-root REQUIRED_USE=python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0/8 SRC_URI=https://nlnetlabs.nl/downloads/unbound/unbound-1.13.0.tar.gz _eclasses_=autotools 3ec5e49b810b2571ca9c6d76f55867bb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=2168c4c0c6e914296b9a665d51d12052 +_md5_=f22db30497cd8f70241ceb0c4e67f8cf diff --git a/metadata/md5-cache/net-im/Manifest.gz b/metadata/md5-cache/net-im/Manifest.gz index 5894a7ee01e1..55526fd9d8a0 100644 Binary files a/metadata/md5-cache/net-im/Manifest.gz and b/metadata/md5-cache/net-im/Manifest.gz differ diff --git a/metadata/md5-cache/net-im/skypeforlinux-8.67.0.87 b/metadata/md5-cache/net-im/skypeforlinux-8.67.0.87 new file mode 100644 index 000000000000..5f58942ba0d3 --- /dev/null +++ b/metadata/md5-cache/net-im/skypeforlinux-8.67.0.87 @@ -0,0 +1,16 @@ +BDEPEND=>=app-arch/rpm2targz-9.0.0.3g +DEFINED_PHASES=install postinst postrm preinst prepare setup unpack +DEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Instant messaging client, with support for audio and video +EAPI=7 +HOMEPAGE=https://www.skype.com/ +IUSE=kernel_linux abi_x86_64 +KEYWORDS=-* ~amd64 +LICENSE=Skype-TOS MIT MIT-with-advertising BSD-1 BSD-2 BSD Apache-2.0 Boost-1.0 ISC CC-BY-SA-3.0 CC0-1.0 openssl ZLIB APSL-2 icu Artistic-2 LGPL-2.1 +RDEPEND=app-crypt/libsecret[abi_x86_64(-)?] dev-libs/atk[abi_x86_64(-)?] dev-libs/expat[abi_x86_64(-)?] dev-libs/glib:2[abi_x86_64(-)?] dev-libs/nspr[abi_x86_64(-)?] dev-libs/nss[abi_x86_64(-)?] media-libs/alsa-lib[abi_x86_64(-)?] media-libs/fontconfig:1.0[abi_x86_64(-)?] media-libs/freetype:2[abi_x86_64(-)?] media-libs/libv4l[abi_x86_64(-)?] net-print/cups[abi_x86_64(-)?] sys-apps/dbus[abi_x86_64(-)?] sys-devel/gcc[cxx] virtual/ttf-fonts x11-libs/cairo[abi_x86_64(-)?] x11-libs/gdk-pixbuf:2[abi_x86_64(-)?] x11-libs/gtk+:3[abi_x86_64(-)?] x11-libs/libX11[abi_x86_64(-)?] x11-libs/libXScrnSaver[abi_x86_64(-)?] x11-libs/libXcomposite[abi_x86_64(-)?] x11-libs/libXcursor[abi_x86_64(-)?] x11-libs/libXdamage[abi_x86_64(-)?] x11-libs/libXext[abi_x86_64(-)?] x11-libs/libXfixes[abi_x86_64(-)?] x11-libs/libXi[abi_x86_64(-)?] x11-libs/libXrandr[abi_x86_64(-)?] x11-libs/libXrender[abi_x86_64(-)?] x11-libs/libXtst[abi_x86_64(-)?] x11-libs/libxcb[abi_x86_64(-)?] x11-libs/libxkbfile[abi_x86_64(-)?] x11-libs/pango[abi_x86_64(-)?] +REQUIRED_USE=|| ( abi_x86_64 ) +RESTRICT=mirror bindist strip +SLOT=0 +SRC_URI=https://repo.skype.com/rpm/stable/skypeforlinux_8.67.0.87-1.x86_64.rpm +_eclasses_=chromium-2 199d6bc7f8b84ac7c00aca900739e570 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 pax-utils a41d1fd1c111289ffa04490de6ee79d7 rpm 760ff223c2c4299b68ea901e24c4cabd toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=1a8f802f06f1c6ed7df1bf48f2d3302f diff --git a/metadata/md5-cache/net-im/zoom-5.4.56259.1207-r1 b/metadata/md5-cache/net-im/zoom-5.4.56259.1207-r2 similarity index 97% rename from metadata/md5-cache/net-im/zoom-5.4.56259.1207-r1 rename to metadata/md5-cache/net-im/zoom-5.4.56259.1207-r2 index add13770cfc9..3d2b3a3d74b1 100644 --- a/metadata/md5-cache/net-im/zoom-5.4.56259.1207-r1 +++ b/metadata/md5-cache/net-im/zoom-5.4.56259.1207-r2 @@ -11,4 +11,4 @@ RESTRICT=mirror bindist strip SLOT=0 SRC_URI=https://zoom.us/client/5.4.56259.1207/zoom_x86_64.tar.xz -> zoom-5.4.56259.1207_x86_64.tar.xz _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi8-dosym cd7d420bb5be5ee079f27239ce76b8f5 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d0ca7f97f8b944c7cfe8b9d3d331816c +_md5_=f419129ae93766c117f18b891d70cb70 diff --git a/metadata/md5-cache/net-libs/Manifest.gz b/metadata/md5-cache/net-libs/Manifest.gz index 7365bc867208..30c1a9551094 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.1-r2 b/metadata/md5-cache/net-libs/ldns-1.7.1-r2 new file mode 100644 index 000000000000..c26c8f677980 --- /dev/null +++ b/metadata/md5-cache/net-libs/ldns-1.7.1-r2 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) 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_s390_32(-)?,abi_s390_64(-)?] ) ) ed25519? ( !libressl? ( >=dev-libs/openssl-1.1.0:0=[-bindist,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) ed448? ( !libressl? ( >=dev-libs/openssl-1.1.1:0=[-bindist,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,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_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_s390_32(-)?,abi_s390_64(-)?] ) python? ( dev-lang/swig ) doc? ( app-doc/doxygen ) +DESCRIPTION=a library with the aim to simplify DNS programming in C +EAPI=6 +HOMEPAGE=http://www.nlnetlabs.nl/projects/ldns/ +IUSE=+dane doc +ecdsa ed25519 ed448 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_s390_32 abi_s390_64 python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-macos ~x64-macos ~x64-solaris +LICENSE=BSD +RDEPEND=python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) 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_s390_32(-)?,abi_s390_64(-)?] ) ) ed25519? ( !libressl? ( >=dev-libs/openssl-1.1.0:0=[-bindist,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) ed448? ( !libressl? ( >=dev-libs/openssl-1.1.1:0=[-bindist,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,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_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_s390_32(-)?,abi_s390_64(-)?] ) +REQUIRED_USE=python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) ) ed25519? ( !libressl ) ed448? ( !libressl ) +RESTRICT=test +SLOT=0/3 +SRC_URI=http://www.nlnetlabs.nl/downloads/ldns/ldns-1.7.1.tar.gz +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=9149909636d23d03dbdc5301a6770ccb diff --git a/metadata/md5-cache/net-libs/nativebiginteger-0.9.45 b/metadata/md5-cache/net-libs/nativebiginteger-0.9.48 similarity index 89% rename from metadata/md5-cache/net-libs/nativebiginteger-0.9.45 rename to metadata/md5-cache/net-libs/nativebiginteger-0.9.48 index eafbd29ab070..eeaee702ac00 100644 --- a/metadata/md5-cache/net-libs/nativebiginteger-0.9.45 +++ b/metadata/md5-cache/net-libs/nativebiginteger-0.9.48 @@ -9,6 +9,6 @@ LICENSE=public-domain RDEPEND=dev-libs/gmp:0= virtual/jdk:1.8 >=dev-java/java-config-2.2.0-r3 RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://download.i2p2.de/releases/0.9.45/i2psource_0.9.45.tar.bz2 +SRC_URI=https://download.i2p2.de/releases/0.9.48/i2psource_0.9.48.tar.bz2 _eclasses_=java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 ec7a89849c84f93e9c6db27812923888 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b58ed39b06d9e5561ed71b3e5f269a4b diff --git a/metadata/md5-cache/net-misc/Manifest.gz b/metadata/md5-cache/net-misc/Manifest.gz index 4698c2e19892..337bf11e11ae 100644 Binary files a/metadata/md5-cache/net-misc/Manifest.gz and b/metadata/md5-cache/net-misc/Manifest.gz differ diff --git a/metadata/md5-cache/net-misc/curl-7.74.0-r1 b/metadata/md5-cache/net-misc/curl-7.74.0-r2 similarity index 99% rename from metadata/md5-cache/net-misc/curl-7.74.0-r1 rename to metadata/md5-cache/net-misc/curl-7.74.0-r2 index 33ed4ce3a0a6..813acc62618e 100644 --- a/metadata/md5-cache/net-misc/curl-7.74.0-r1 +++ b/metadata/md5-cache/net-misc/curl-7.74.0-r2 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://curl.haxx.se/download/curl-7.74.0.tar.xz _eclasses_=autotools 3ec5e49b810b2571ca9c6d76f55867bb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 prefix c2993e4c430c1ee24f278983d6189501 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=cd034c0782d958cc728ce491793768bd +_md5_=5b3d6f1fd555c3eb59111cb7e51a3d82 diff --git a/metadata/md5-cache/net-misc/remmina-1.4.10 b/metadata/md5-cache/net-misc/remmina-1.4.10 new file mode 100644 index 000000000000..656f31735366 --- /dev/null +++ b/metadata/md5-cache/net-misc/remmina-1.4.10 @@ -0,0 +1,14 @@ +BDEPEND=dev-util/intltool virtual/pkgconfig nls? ( sys-devel/gettext ) dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=dev-libs/glib:2 dev-libs/json-glib dev-libs/libsodium:= net-libs/libsoup x11-libs/gdk-pixbuf x11-libs/gtk+:3 x11-libs/libX11 x11-libs/libxkbfile appindicator? ( dev-libs/libappindicator:3 ) crypt? ( dev-libs/libgcrypt:0= ) rdp? ( >=net-misc/freerdp-2.0.0_rc4_p1129[X] =net-dns/avahi-0.8-r2[dbus,gtk] ) dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=A GTK+ RDP, SPICE, VNC, XDMCP and SSH client +EAPI=7 +HOMEPAGE=https://remmina.org/ +IUSE=appindicator crypt cups examples gnome-keyring kwallet libressl nls spice ssh rdp telemetry telepathy vnc webkit zeroconf +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=GPL-2+-with-openssl-exception +RDEPEND=dev-libs/glib:2 dev-libs/json-glib dev-libs/libsodium:= net-libs/libsoup x11-libs/gdk-pixbuf x11-libs/gtk+:3 x11-libs/libX11 x11-libs/libxkbfile appindicator? ( dev-libs/libappindicator:3 ) crypt? ( dev-libs/libgcrypt:0= ) rdp? ( >=net-misc/freerdp-2.0.0_rc4_p1129[X] =net-dns/avahi-0.8-r2[dbus,gtk] ) virtual/freedesktop-icon-theme +SLOT=0 +SRC_URI=https://gitlab.com/Remmina/Remmina/-/archive/v1.4.10/Remmina-v1.4.10.tar.gz +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f optfeature 6c9aa35fc16df43d7142ef2660e00e25 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=3ceb77d2513f0e9d9cfbbf878316f943 diff --git a/metadata/md5-cache/net-vpn/Manifest.gz b/metadata/md5-cache/net-vpn/Manifest.gz index 5a6aae3b09e2..15074f01733f 100644 Binary files a/metadata/md5-cache/net-vpn/Manifest.gz and b/metadata/md5-cache/net-vpn/Manifest.gz differ diff --git a/metadata/md5-cache/net-vpn/i2p-0.9.45 b/metadata/md5-cache/net-vpn/i2p-0.9.45 deleted file mode 100644 index 39b13e51088f..000000000000 --- a/metadata/md5-cache/net-vpn/i2p-0.9.45 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst preinst prepare setup test -DEPEND=dev-java/bcprov:1.50 dev-java/jrobin:0 dev-java/slf4j-api:0 dev-java/tomcat-jstl-impl:0 dev-java/tomcat-jstl-spec:0 dev-java/java-service-wrapper:0 dev-java/commons-logging:0 dev-java/slf4j-simple:0 java-virtuals/servlet-api:3.1 dev-java/eclipse-ecj:* nls? ( >=sys-devel/gettext-0.19 ) virtual/jdk:1.8 test? ( dev-java/ant-junit4:0 dev-java/hamcrest-core:1.3 dev-java/hamcrest-library:1.3 dev-java/junit:4 ) >=dev-java/java-config-2.2.0-r3 >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=A privacy-centric, anonymous network -EAPI=7 -HOMEPAGE=https://geti2p.net -IUSE=nls test elibc_FreeBSD elibc_FreeBSD -KEYWORDS=~amd64 ~x86 -LICENSE=Apache-2.0 Artistic BSD CC-BY-2.5 CC-BY-3.0 CC-BY-SA-3.0 EPL-1.0 GPL-2 GPL-3 LGPL-2.1 LGPL-3 MIT public-domain WTFPL-2 -RDEPEND=dev-java/bcprov:1.50 dev-java/jrobin:0 dev-java/slf4j-api:0 dev-java/tomcat-jstl-impl:0 dev-java/tomcat-jstl-spec:0 dev-java/java-service-wrapper:0 dev-java/commons-logging:0 dev-java/slf4j-simple:0 java-virtuals/servlet-api:3.1 acct-user/i2p acct-group/i2p virtual/jre:1.8 net-libs/nativebiginteger:0 >=dev-java/java-config-2.2.0-r3 -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://download.i2p2.de/releases/0.9.45/i2psource_0.9.45.tar.bz2 -_eclasses_=java-ant-2 8d9cb415f1ca9fc7ebc5a74bacec300c java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 ec7a89849c84f93e9c6db27812923888 multilib d410501a125f99ffb560b0c523cd3d1e systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=927e81b5d9ebd99ca4aad9a66872c045 diff --git a/metadata/md5-cache/net-vpn/i2p-0.9.48 b/metadata/md5-cache/net-vpn/i2p-0.9.48 new file mode 100644 index 000000000000..7e2284c748a1 --- /dev/null +++ b/metadata/md5-cache/net-vpn/i2p-0.9.48 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=compile configure install preinst prepare setup test +DEPEND=dev-java/commons-logging:0 dev-java/java-service-wrapper:0 dev-java/tomcat-servlet-api:4.0 dev-java/eclipse-ecj:* nls? ( >=sys-devel/gettext-0.19 ) virtual/jdk:1.8 test? ( dev-java/ant-junit4:0 dev-java/hamcrest-core:1.3 dev-java/hamcrest-library:1.3 dev-java/junit:4 ) >=dev-java/java-config-2.2.0-r3 >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 +DESCRIPTION=A privacy-centric, anonymous network +EAPI=7 +HOMEPAGE=https://geti2p.net +IUSE=nls test elibc_FreeBSD elibc_FreeBSD +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 Artistic BSD CC-BY-2.5 CC-BY-3.0 CC-BY-SA-3.0 EPL-1.0 GPL-2 GPL-3 LGPL-2.1 LGPL-3 MIT public-domain WTFPL-2 +RDEPEND=dev-java/commons-logging:0 dev-java/java-service-wrapper:0 dev-java/tomcat-servlet-api:4.0 acct-user/i2p acct-group/i2p virtual/jre:1.8 net-libs/nativebiginteger:0 >=dev-java/java-config-2.2.0-r3 +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://download.i2p2.de/releases/0.9.48/i2psource_0.9.48.tar.bz2 +_eclasses_=java-ant-2 8d9cb415f1ca9fc7ebc5a74bacec300c java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 ec7a89849c84f93e9c6db27812923888 multilib d410501a125f99ffb560b0c523cd3d1e systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=93ffb5572c8c4619019cff40203886bd diff --git a/metadata/md5-cache/sci-libs/Manifest.gz b/metadata/md5-cache/sci-libs/Manifest.gz index 2d2748286d30..93c71aa933cd 100644 Binary files a/metadata/md5-cache/sci-libs/Manifest.gz and b/metadata/md5-cache/sci-libs/Manifest.gz differ diff --git a/metadata/md5-cache/sci-libs/taucs-2.2 b/metadata/md5-cache/sci-libs/taucs-2.2-r1 similarity index 79% rename from metadata/md5-cache/sci-libs/taucs-2.2 rename to metadata/md5-cache/sci-libs/taucs-2.2-r1 index 4e645c398204..3604c0fc4b1f 100644 --- a/metadata/md5-cache/sci-libs/taucs-2.2 +++ b/metadata/md5-cache/sci-libs/taucs-2.2-r1 @@ -1,15 +1,15 @@ BDEPEND=virtual/pkgconfig DEFINED_PHASES=compile configure install setup test -DEPEND=virtual/blas virtual/lapack || ( sci-libs/metis sci-libs/parmetis ) cilk? ( dev-lang/cilk ) virtual/fortran +DEPEND=virtual/blas virtual/lapack || ( sci-libs/metis sci-libs/parmetis ) virtual/fortran DESCRIPTION=C library of sparse linear solvers EAPI=7 HOMEPAGE=http://www.tau.ac.il/~stoledo/taucs/ -IUSE=cilk doc +IUSE=doc KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux LICENSE=LGPL-2.1 -RDEPEND=virtual/blas virtual/lapack || ( sci-libs/metis sci-libs/parmetis ) cilk? ( dev-lang/cilk ) virtual/fortran +RDEPEND=virtual/blas virtual/lapack || ( sci-libs/metis sci-libs/parmetis ) virtual/fortran RESTRICT=test SLOT=0 SRC_URI=http://www.tau.ac.il/~stoledo/taucs/2.2/taucs.tgz -> taucs-2.2.tgz _eclasses_=fortran-2 b4796813ccda91c9c0d3463fc90aa969 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=066fcf8bacb934c2e4cbfdc7b609b061 +_md5_=70cb1a13db6d7ab0ae66ad91fe219481 diff --git a/metadata/md5-cache/sys-apps/Manifest.gz b/metadata/md5-cache/sys-apps/Manifest.gz index 541d8b4e47e5..0b223b184026 100644 Binary files a/metadata/md5-cache/sys-apps/Manifest.gz and b/metadata/md5-cache/sys-apps/Manifest.gz differ diff --git a/metadata/md5-cache/sys-apps/hwloc-1.11.10 b/metadata/md5-cache/sys-apps/hwloc-1.11.10 deleted file mode 100644 index 489e69c3a0e0..000000000000 --- a/metadata/md5-cache/sys-apps/hwloc-1.11.10 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=sys-libs/ncurses-5.9-r3:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] cairo? ( >=x11-libs/cairo-1.12.14-r4[X?,svg?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cuda? ( >=dev-util/nvidia-cuda-toolkit-6.5.19-r1 ) gl? ( x11-drivers/nvidia-drivers[static-libs,tools] ) pci? ( >=sys-apps/pciutils-3.3.0-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libpciaccess-0.13.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) plugins? ( dev-libs/libltdl:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) numa? ( >=sys-process/numactl-2.0.10-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xml? ( >=dev-libs/libxml2-2.9.1-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=displays the hardware topology in convenient formats -EAPI=6 -HOMEPAGE=https://www.open-mpi.org/projects/hwloc/ -IUSE=cairo cuda debug gl +numa +pci plugins svg static-libs xml X abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux -LICENSE=BSD -RDEPEND=>=sys-libs/ncurses-5.9-r3:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] cairo? ( >=x11-libs/cairo-1.12.14-r4[X?,svg?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cuda? ( >=dev-util/nvidia-cuda-toolkit-6.5.19-r1 ) gl? ( x11-drivers/nvidia-drivers[static-libs,tools] ) pci? ( >=sys-apps/pciutils-3.3.0-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libpciaccess-0.13.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) plugins? ( dev-libs/libltdl:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) numa? ( >=sys-process/numactl-2.0.10-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xml? ( >=dev-libs/libxml2-2.9.1-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) -SLOT=0/5 -SRC_URI=https://www.open-mpi.org/software/hwloc/v1.11/downloads/hwloc-1.11.10.tar.bz2 -_eclasses_=autotools 3ec5e49b810b2571ca9c6d76f55867bb cuda c2f1b334711bbbf2130f339636dc7515 desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=7251d3bcd8150aea85a1fb2c8d3ae87b diff --git a/metadata/md5-cache/sys-apps/hwloc-1.11.13 b/metadata/md5-cache/sys-apps/hwloc-1.11.13 index f23094857c14..5305a74ceac5 100644 --- a/metadata/md5-cache/sys-apps/hwloc-1.11.13 +++ b/metadata/md5-cache/sys-apps/hwloc-1.11.13 @@ -10,4 +10,4 @@ RDEPEND=>=sys-libs/ncurses-5.9-r3:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-) SLOT=0/5 SRC_URI=https://www.open-mpi.org/software/hwloc/v1.11/downloads/hwloc-1.11.13.tar.bz2 _eclasses_=autotools 3ec5e49b810b2571ca9c6d76f55867bb cuda c2f1b334711bbbf2130f339636dc7515 desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=c6ac5f1bc8fd7655e7372b494d8b027c +_md5_=1eed4316282300d93110aaea2fa3b8e3 diff --git a/metadata/md5-cache/sys-apps/hwloc-1.11.2-r1 b/metadata/md5-cache/sys-apps/hwloc-1.11.2-r1 deleted file mode 100644 index 28d88633d872..000000000000 --- a/metadata/md5-cache/sys-apps/hwloc-1.11.2-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=sys-libs/ncurses-5.9-r3:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] cairo? ( >=x11-libs/cairo-1.12.14-r4[X?,svg?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cuda? ( >=dev-util/nvidia-cuda-toolkit-6.5.19-r1 ) gl? ( x11-drivers/nvidia-drivers[static-libs,tools] ) pci? ( >=sys-apps/pciutils-3.3.0-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libpciaccess-0.13.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) plugins? ( dev-libs/libltdl:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) numa? ( >=sys-process/numactl-2.0.10-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xml? ( >=dev-libs/libxml2-2.9.1-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) virtual/pkgconfig >=app-portage/elt-patches-20170815 -DESCRIPTION=displays the hardware topology in convenient formats -EAPI=5 -HOMEPAGE=https://www.open-mpi.org/projects/hwloc/ -IUSE=cairo cuda debug gl +numa +pci plugins svg static-libs xml X abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 arm hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux -LICENSE=BSD -RDEPEND=>=sys-libs/ncurses-5.9-r3:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] cairo? ( >=x11-libs/cairo-1.12.14-r4[X?,svg?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cuda? ( >=dev-util/nvidia-cuda-toolkit-6.5.19-r1 ) gl? ( x11-drivers/nvidia-drivers[static-libs,tools] ) pci? ( >=sys-apps/pciutils-3.3.0-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libpciaccess-0.13.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) plugins? ( dev-libs/libltdl:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) numa? ( >=sys-process/numactl-2.0.10-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xml? ( >=dev-libs/libxml2-2.9.1-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) -SLOT=0/5 -SRC_URI=https://www.open-mpi.org/software/hwloc/v1.11/downloads/hwloc-1.11.2.tar.bz2 -_eclasses_=autotools 3ec5e49b810b2571ca9c6d76f55867bb autotools-multilib 9c600605e4462da7f90f41008447ba1c autotools-utils 961893b8004e6cf64fbef1cea6ed8bd2 cuda c2f1b334711bbbf2130f339636dc7515 desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=4bb2d4b5127628443ef300554cfbde57 diff --git a/metadata/md5-cache/sys-apps/hwloc-2.0.4 b/metadata/md5-cache/sys-apps/hwloc-2.0.4 deleted file mode 100644 index 8b997b85fb83..000000000000 --- a/metadata/md5-cache/sys-apps/hwloc-2.0.4 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=sys-libs/ncurses-5.9-r3:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] cairo? ( >=x11-libs/cairo-1.12.14-r4[X?,svg?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cuda? ( >=dev-util/nvidia-cuda-toolkit-6.5.19-r1:= ) gl? ( x11-drivers/nvidia-drivers[static-libs,tools] ) pci? ( >=sys-apps/pciutils-3.3.0-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libpciaccess-0.13.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) plugins? ( dev-libs/libltdl:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xml? ( >=dev-libs/libxml2-2.9.1-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=displays the hardware topology in convenient formats -EAPI=6 -HOMEPAGE=https://www.open-mpi.org/projects/hwloc/ -IUSE=cairo cuda debug gl +pci plugins svg static-libs xml X abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux -LICENSE=BSD -RDEPEND=>=sys-libs/ncurses-5.9-r3:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] cairo? ( >=x11-libs/cairo-1.12.14-r4[X?,svg?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cuda? ( >=dev-util/nvidia-cuda-toolkit-6.5.19-r1:= ) gl? ( x11-drivers/nvidia-drivers[static-libs,tools] ) pci? ( >=sys-apps/pciutils-3.3.0-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libpciaccess-0.13.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) plugins? ( dev-libs/libltdl:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xml? ( >=dev-libs/libxml2-2.9.1-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) -SLOT=0/15 -SRC_URI=https://www.open-mpi.org/software/hwloc/v2.0/downloads/hwloc-2.0.4.tar.bz2 -_eclasses_=autotools 3ec5e49b810b2571ca9c6d76f55867bb cuda c2f1b334711bbbf2130f339636dc7515 desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=a35cc74655c18a7b688cccc10ea4865b diff --git a/metadata/md5-cache/sys-apps/hwloc-2.1.0 b/metadata/md5-cache/sys-apps/hwloc-2.1.0 deleted file mode 100644 index 8199f843f6a7..000000000000 --- a/metadata/md5-cache/sys-apps/hwloc-2.1.0 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=sys-libs/ncurses-5.9-r3:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] cairo? ( >=x11-libs/cairo-1.12.14-r4[X?,svg?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cuda? ( >=dev-util/nvidia-cuda-toolkit-6.5.19-r1:= ) gl? ( x11-drivers/nvidia-drivers[static-libs,tools] ) libudev? ( virtual/libudev ) netloc? ( !sys-apps/netloc ) pci? ( >=sys-apps/pciutils-3.3.0-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libpciaccess-0.13.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) plugins? ( dev-libs/libltdl:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xml? ( >=dev-libs/libxml2-2.9.1-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) virtual/pkgconfig -DESCRIPTION=displays the hardware topology in convenient formats -EAPI=7 -HOMEPAGE=https://www.open-mpi.org/projects/hwloc/ -IUSE=cairo +cpuid cuda debug gl libudev netloc nvml +pci plugins static-libs svg xml X abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux -LICENSE=BSD -RDEPEND=>=sys-libs/ncurses-5.9-r3:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] cairo? ( >=x11-libs/cairo-1.12.14-r4[X?,svg?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) cuda? ( >=dev-util/nvidia-cuda-toolkit-6.5.19-r1:= ) gl? ( x11-drivers/nvidia-drivers[static-libs,tools] ) libudev? ( virtual/libudev ) netloc? ( !sys-apps/netloc ) pci? ( >=sys-apps/pciutils-3.3.0-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libpciaccess-0.13.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) plugins? ( dev-libs/libltdl:0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xml? ( >=dev-libs/libxml2-2.9.1-r4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) -SLOT=0/15 -SRC_URI=https://www.open-mpi.org/software/hwloc/v2.1/downloads/hwloc-2.1.0.tar.bz2 -_eclasses_=autotools 3ec5e49b810b2571ca9c6d76f55867bb cuda c2f1b334711bbbf2130f339636dc7515 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=17f98187e854b53bc94bb7672168fcf7 diff --git a/metadata/md5-cache/sys-apps/inxi-3.1.06.1 b/metadata/md5-cache/sys-apps/inxi-3.1.06.1 index 7f80443ae913..84be1676aaed 100644 --- a/metadata/md5-cache/sys-apps/inxi-3.1.06.1 +++ b/metadata/md5-cache/sys-apps/inxi-3.1.06.1 @@ -3,9 +3,9 @@ DESCRIPTION=The CLI inxi collects and prints hardware and system information EAPI=7 HOMEPAGE=https://github.com/smxi/inxi IUSE=bluetooth hddtemp opengl -KEYWORDS=~amd64 arm ~ppc ~ppc64 x86 +KEYWORDS=~amd64 arm ppc ppc64 x86 LICENSE=GPL-3 RDEPEND=dev-lang/perl sys-apps/pciutils sys-apps/usbutils bluetooth? ( net-wireless/bluez ) hddtemp? ( app-admin/hddtemp ) opengl? ( x11-apps/mesa-progs ) SLOT=0 SRC_URI=https://github.com/smxi/inxi/archive/3.1.06-1.tar.gz -> inxi-3.1.06.1.tar.gz -_md5_=9f5ebcaab9c04a7bf341cbcbb3d58112 +_md5_=330f4f4b4bac6b9e1146db2738ea34d0 diff --git a/metadata/md5-cache/sys-auth/Manifest.gz b/metadata/md5-cache/sys-auth/Manifest.gz index ebda77d0e7ab..6e49a0a8a115 100644 Binary files a/metadata/md5-cache/sys-auth/Manifest.gz and b/metadata/md5-cache/sys-auth/Manifest.gz differ diff --git a/metadata/md5-cache/sys-auth/seatd-0.4.0 b/metadata/md5-cache/sys-auth/seatd-0.4.0-r1 similarity index 75% rename from metadata/md5-cache/sys-auth/seatd-0.4.0 rename to metadata/md5-cache/sys-auth/seatd-0.4.0-r1 index 19dd921d1b60..bbe2e811a759 100644 --- a/metadata/md5-cache/sys-auth/seatd-0.4.0 +++ b/metadata/md5-cache/sys-auth/seatd-0.4.0-r1 @@ -1,15 +1,15 @@ -BDEPEND=>=app-text/scdoc-1.9.7 >=dev-util/meson-0.54.0 >=dev-util/ninja-1.8.2 +BDEPEND=>=app-text/scdoc-1.9.7 >=dev-util/meson-0.54.0 >=dev-util/ninja-1.8.2 virtual/pkgconfig DEFINED_PHASES=compile configure install test DEPEND=elogind? ( sys-auth/elogind ) systemd? ( sys-apps/systemd ) DESCRIPTION=Minimal seat management daemon and universal library EAPI=7 HOMEPAGE=https://sr.ht/~kennylevinsen/seatd IUSE=elogind systemd -KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 +KEYWORDS=amd64 arm64 ~ppc64 x86 LICENSE=MIT RDEPEND=elogind? ( sys-auth/elogind ) systemd? ( sys-apps/systemd ) REQUIRED_USE=?? ( elogind systemd ) SLOT=0/1 SRC_URI=https://git.sr.ht/~kennylevinsen/seatd/archive/0.4.0.tar.gz -> seatd-0.4.0.tar.gz -_eclasses_=meson 71d293a701d6362387e1214da368c848 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=700922821fc4e223f8d925d6d70627a1 +_eclasses_=meson 71d293a701d6362387e1214da368c848 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=34dc984f57b7eedb148c122d090ee023 diff --git a/metadata/md5-cache/sys-auth/seatd-9999 b/metadata/md5-cache/sys-auth/seatd-9999 index 31c20472ab1e..1b084b5b4bef 100644 --- a/metadata/md5-cache/sys-auth/seatd-9999 +++ b/metadata/md5-cache/sys-auth/seatd-9999 @@ -1,4 +1,4 @@ -BDEPEND=>=app-text/scdoc-1.9.7 >=dev-util/meson-0.54.0 >=dev-util/ninja-1.8.2 >=dev-vcs/git-1.8.2.1[curl] +BDEPEND=>=app-text/scdoc-1.9.7 >=dev-util/meson-0.54.0 >=dev-util/ninja-1.8.2 virtual/pkgconfig >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install test unpack DEPEND=elogind? ( sys-auth/elogind ) systemd? ( sys-apps/systemd ) DESCRIPTION=Minimal seat management daemon and universal library @@ -10,5 +10,5 @@ PROPERTIES=live RDEPEND=elogind? ( sys-auth/elogind ) systemd? ( sys-apps/systemd ) REQUIRED_USE=?? ( elogind systemd ) SLOT=0/1 -_eclasses_=git-r3 3e7ec3d6619213460c85e2aa48398441 meson 71d293a701d6362387e1214da368c848 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=f6e5782855f489deade10d26b06f43cd +_eclasses_=git-r3 3e7ec3d6619213460c85e2aa48398441 meson 71d293a701d6362387e1214da368c848 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=3b41d15ec4d28eb6736b3379f3376555 diff --git a/metadata/md5-cache/sys-boot/Manifest.gz b/metadata/md5-cache/sys-boot/Manifest.gz index 319fd15b3d78..de0dbe88a121 100644 Binary files a/metadata/md5-cache/sys-boot/Manifest.gz and b/metadata/md5-cache/sys-boot/Manifest.gz differ diff --git a/metadata/md5-cache/sys-boot/raspberrypi-firmware-1.20201022 b/metadata/md5-cache/sys-boot/raspberrypi-firmware-1.20201022 index 0693a253d31c..8de99a371ff5 100644 --- a/metadata/md5-cache/sys-boot/raspberrypi-firmware-1.20201022 +++ b/metadata/md5-cache/sys-boot/raspberrypi-firmware-1.20201022 @@ -2,10 +2,10 @@ DEFINED_PHASES=install postinst postrm preinst prepare prerm pretend DESCRIPTION=Raspberry Pi (all versions) bootloader and GPU firmware EAPI=7 HOMEPAGE=https://github.com/raspberrypi/firmware -KEYWORDS=-* ~arm arm64 +KEYWORDS=-* arm arm64 LICENSE=GPL-2 raspberrypi-videocore-bin RESTRICT=binchecks strip SLOT=0 SRC_URI=https://github.com/raspberrypi/firmware/archive/1.20201022.tar.gz -> raspberrypi-firmware-1.20201022.tar.gz _eclasses_=mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 -_md5_=f74ab9218fbc1defbc84c2780a58c714 +_md5_=6bbe3c7ee39c5eee68239a08453f545b diff --git a/metadata/md5-cache/sys-boot/raspberrypi-firmware-1.20201201 b/metadata/md5-cache/sys-boot/raspberrypi-firmware-1.20201201 new file mode 100644 index 000000000000..7f16992e9156 --- /dev/null +++ b/metadata/md5-cache/sys-boot/raspberrypi-firmware-1.20201201 @@ -0,0 +1,11 @@ +DEFINED_PHASES=install postinst postrm preinst prepare prerm pretend +DESCRIPTION=Raspberry Pi (all versions) bootloader and GPU firmware +EAPI=7 +HOMEPAGE=https://github.com/raspberrypi/firmware +KEYWORDS=-* ~arm ~arm64 +LICENSE=GPL-2 raspberrypi-videocore-bin +RESTRICT=binchecks strip +SLOT=0 +SRC_URI=https://github.com/raspberrypi/firmware/archive/1.20201201.tar.gz -> raspberrypi-firmware-1.20201201.tar.gz +_eclasses_=mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 +_md5_=574356d0f82d2e515d76de78a3078bd9 diff --git a/metadata/md5-cache/sys-firmware/Manifest.gz b/metadata/md5-cache/sys-firmware/Manifest.gz index d229c9a88cb3..b3a580527c67 100644 Binary files a/metadata/md5-cache/sys-firmware/Manifest.gz and b/metadata/md5-cache/sys-firmware/Manifest.gz differ diff --git a/metadata/md5-cache/sys-firmware/raspberrypi-wifi-ucode-20190114.1_p9 b/metadata/md5-cache/sys-firmware/raspberrypi-wifi-ucode-20190114.1_p9 index 76e3e57223a7..ccac0719c664 100644 --- a/metadata/md5-cache/sys-firmware/raspberrypi-wifi-ucode-20190114.1_p9 +++ b/metadata/md5-cache/sys-firmware/raspberrypi-wifi-ucode-20190114.1_p9 @@ -2,9 +2,9 @@ DEFINED_PHASES=install prepare pretend DESCRIPTION=Most up-to-date uCode for the Broadcom wifi chips on Raspberry Pi SBCs EAPI=7 HOMEPAGE=https://github.com/RPi-Distro/firmware-nonfree https://archive.raspberrypi.org/debian/pool/main/f/firmware-nonfree -KEYWORDS=~arm arm64 +KEYWORDS=arm arm64 LICENSE=Broadcom RDEPEND=!sys-kernel/linux-firmware[-savedconfig] SLOT=0 SRC_URI=https://archive.raspberrypi.org/debian/pool/main/f/firmware-nonfree/firmware-nonfree_20190114-1+rpt9.debian.tar.xz -_md5_=eb01d41b0761ab638b58b24c0a36e8e8 +_md5_=355a9101697053492ffcb351960582c7 diff --git a/metadata/md5-cache/sys-kernel/Manifest.gz b/metadata/md5-cache/sys-kernel/Manifest.gz index 3b449a3b88b5..4e0d150e43f7 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-kernel-5.4.83 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.83 new file mode 100644 index 000000000000..1c864363dbf1 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.4.83 @@ -0,0 +1,14 @@ +BDEPEND=debug? ( dev-util/dwarves ) test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) sys-devel/bc sys-devel/flex virtual/libelf virtual/yacc +DEFINED_PHASES=compile config configure install postinst postrm preinst prepare prerm pretend test +DESCRIPTION=Linux kernel built with Gentoo patches +EAPI=7 +HOMEPAGE=https://www.kernel.org/ +IUSE=debug savedconfig +initramfs test +KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 +LICENSE=GPL-2 +RDEPEND=!sys-kernel/vanilla-kernel:5.4.83 !sys-kernel/vanilla-kernel-bin:5.4.83 || ( sys-kernel/installkernel-gentoo sys-kernel/installkernel-systemd-boot ) initramfs? ( >=sys-kernel/dracut-049-r3 ) +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=5.4.83 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-85.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-85.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.4.77-r1.tar.gz -> gentoo-kernel-config-5.4.77-r1.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-x86_64.config -> kernel-x86_64.config.5.4.21 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-aarch64.config -> kernel-aarch64.config.5.4.21 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-ppc64le.config -> kernel-ppc64le.config.5.4.21 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-i686.config -> kernel-i686.config.5.4.21 ) +_eclasses_=kernel-build 042733ebde23be39ae073ec82458bcb0 kernel-install 2a4af308756b3204b376d8b3fd5adbbf mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d multilib d410501a125f99ffb560b0c523cd3d1e portability e8f7ef3a41965b21a734550f8a94c1c6 savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=96d050f286a796b5e6ef65d7632e4e02 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-5.9.14 b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.9.14 new file mode 100644 index 000000000000..f2a208bbfe74 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-5.9.14 @@ -0,0 +1,15 @@ +BDEPEND=debug? ( dev-util/dwarves ) test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) sys-devel/bc sys-devel/flex virtual/libelf virtual/yacc +DEFINED_PHASES=compile config configure install postinst postrm preinst prepare prerm pretend test +DESCRIPTION=Linux kernel built with Gentoo patches +EAPI=7 +HOMEPAGE=https://www.kernel.org/ +IUSE=debug savedconfig +initramfs test +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +LICENSE=GPL-2 +RDEPEND=!sys-kernel/vanilla-kernel:5.9.14 !sys-kernel/vanilla-kernel-bin:5.9.14 || ( sys-kernel/installkernel-gentoo sys-kernel/installkernel-systemd-boot ) initramfs? ( >=sys-kernel/dracut-049-r3 ) +REQUIRED_USE=arm? ( savedconfig ) +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=5.9.14 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.9.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-14.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-14.extras.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.9.8-r1.tar.gz -> gentoo-kernel-config-5.9.8-r1.tar.gz amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/b57160e20ddbe02624d2652e6836b0cb73044a4e/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.9.13 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/b57160e20ddbe02624d2652e6836b0cb73044a4e/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.9.13 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/b57160e20ddbe02624d2652e6836b0cb73044a4e/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.9.13 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/b57160e20ddbe02624d2652e6836b0cb73044a4e/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.9.13 ) +_eclasses_=kernel-build 042733ebde23be39ae073ec82458bcb0 kernel-install 2a4af308756b3204b376d8b3fd5adbbf mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d multilib d410501a125f99ffb560b0c523cd3d1e portability e8f7ef3a41965b21a734550f8a94c1c6 savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=67e14e777fa9f216bead2199d9c779d5 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.83 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.83 new file mode 100644 index 000000000000..d5ad0b122556 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.83 @@ -0,0 +1,14 @@ +BDEPEND=test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) +DEFINED_PHASES=config install postinst postrm preinst prerm pretend test unpack +DESCRIPTION=Pre-built Linux kernel with genpatches +EAPI=7 +HOMEPAGE=https://www.kernel.org/ +IUSE=+initramfs test +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=!sys-kernel/gentoo-kernel:5.4.83 !sys-kernel/vanilla-kernel:5.4.83 !sys-kernel/vanilla-kernel-bin:5.4.83 || ( sys-kernel/installkernel-gentoo sys-kernel/installkernel-systemd-boot ) initramfs? ( >=sys-kernel/dracut-049-r3 ) +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=5.4.83 +SRC_URI=amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.83-1.xpak -> gentoo-kernel-5.4.83-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.83-1.xpak -> gentoo-kernel-5.4.83-1.x86.xpak ) +_eclasses_=kernel-install 2a4af308756b3204b376d8b3fd5adbbf mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=a20bdd6958940f81fa50e2ccd2ec6d97 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.83-r1 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.83-r1 new file mode 100644 index 000000000000..ad1a04b2dac7 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.4.83-r1 @@ -0,0 +1,14 @@ +BDEPEND=test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) +DEFINED_PHASES=config install postinst postrm preinst prerm pretend test unpack +DESCRIPTION=Pre-built Linux kernel with genpatches +EAPI=7 +HOMEPAGE=https://www.kernel.org/ +IUSE=+initramfs test +KEYWORDS=~arm64 +LICENSE=GPL-2 +RDEPEND=!sys-kernel/gentoo-kernel:5.4.83 !sys-kernel/vanilla-kernel:5.4.83 !sys-kernel/vanilla-kernel-bin:5.4.83 || ( sys-kernel/installkernel-gentoo sys-kernel/installkernel-systemd-boot ) initramfs? ( >=sys-kernel/dracut-049-r3 ) +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=5.4.83 +SRC_URI=amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.83-1.xpak -> gentoo-kernel-5.4.83-1.amd64.xpak ) arm64? ( https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.83-1.xpak -> gentoo-kernel-5.4.83-1.arm64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.83-1.xpak -> gentoo-kernel-5.4.83-1.x86.xpak ) +_eclasses_=kernel-install 2a4af308756b3204b376d8b3fd5adbbf mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=a233ac0f8da53036540d5f704213ef4e diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.9.14 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.9.14 new file mode 100644 index 000000000000..34e4afbab09e --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.9.14 @@ -0,0 +1,14 @@ +BDEPEND=test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) +DEFINED_PHASES=config install postinst postrm preinst prerm pretend test unpack +DESCRIPTION=Pre-built Linux kernel with genpatches +EAPI=7 +HOMEPAGE=https://www.kernel.org/ +IUSE=+initramfs test +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=!sys-kernel/gentoo-kernel:5.9.14 !sys-kernel/vanilla-kernel:5.9.14 !sys-kernel/vanilla-kernel-bin:5.9.14 || ( sys-kernel/installkernel-gentoo sys-kernel/installkernel-systemd-boot ) initramfs? ( >=sys-kernel/dracut-049-r3 ) +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=5.9.14 +SRC_URI=amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.9.14-1.xpak -> gentoo-kernel-5.9.14-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.9.14-1.xpak -> gentoo-kernel-5.9.14-1.x86.xpak ) +_eclasses_=kernel-install 2a4af308756b3204b376d8b3fd5adbbf mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=090591d3b01a83132e35a9ff23d3d8a6 diff --git a/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.9.14-r1 b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.9.14-r1 new file mode 100644 index 000000000000..427d194bf79d --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-kernel-bin-5.9.14-r1 @@ -0,0 +1,14 @@ +BDEPEND=test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) +DEFINED_PHASES=config install postinst postrm preinst prerm pretend test unpack +DESCRIPTION=Pre-built Linux kernel with genpatches +EAPI=7 +HOMEPAGE=https://www.kernel.org/ +IUSE=+initramfs test +KEYWORDS=~arm64 +LICENSE=GPL-2 +RDEPEND=!sys-kernel/gentoo-kernel:5.9.14 !sys-kernel/vanilla-kernel:5.9.14 !sys-kernel/vanilla-kernel-bin:5.9.14 || ( sys-kernel/installkernel-gentoo sys-kernel/installkernel-systemd-boot ) initramfs? ( >=sys-kernel/dracut-049-r3 ) +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=5.9.14 +SRC_URI=arm64? ( https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/gentoo-kernel-5.9.14-1.xpak -> gentoo-kernel-5.9.14-1.arm64.xpak ) +_eclasses_=kernel-install 2a4af308756b3204b376d8b3fd5adbbf mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=1c986217f742976ad581aba3fa686aaa diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.205 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.205 deleted file mode 100644 index 3eeab9336e4b..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.205 +++ /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 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=4.14.205 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.14.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.14-215.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.14-215.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.14-215.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.14-215.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.14-215.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.14-215.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.14-215.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.14-215.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.14-215.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=0e502183d74b7da019fe7afe3893c0c9 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.206 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.206 deleted file mode 100644 index 3353fe5677bf..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.206 +++ /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 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=4.14.206 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.14.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.14-216.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.14-216.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.14-216.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.14-216.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.14-216.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.14-216.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.14-216.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.14-216.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.14-216.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=5bc24223a5e0cd81d3fc18c8ea19c964 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.208 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.208 deleted file mode 100644 index a479ee3f9f93..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.208 +++ /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 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=4.14.208 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.14.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.14-218.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.14-218.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.14-218.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.14-218.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.14-218.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.14-218.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.14-218.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.14-218.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.14-218.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=35d2618b6b40d30f0d12ffd45719ed6a diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.210 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.210 deleted file mode 100644 index 4a7042ba8791..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.210 +++ /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 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=4.14.210 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.14.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.14-220.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.14-220.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.14-220.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.14-220.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.14-220.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.14-220.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.14-220.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.14-220.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.14-220.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=4070e21870455d830ab40044dde94ad6 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.207 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.212 similarity index 63% rename from metadata/md5-cache/sys-kernel/gentoo-sources-4.14.207 rename to metadata/md5-cache/sys-kernel/gentoo-sources-4.14.212 index 3ee3fa452481..01e166046873 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.207 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.212 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x LICENSE=GPL-2 RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip -SLOT=4.14.207 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.14.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.14-217.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.14-217.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.14-217.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.14-217.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.14-217.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.14-217.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.14-217.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.14-217.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.14-217.experimental.tar.xz ) +SLOT=4.14.212 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.14.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.14-222.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.14-222.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.14-222.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.14-222.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.14-222.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.14-222.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.14-222.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.14-222.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.14-222.experimental.tar.xz ) _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=329608b1b9cc721c09aace6fbc387e63 +_md5_=89099d6911338ab7f73cb2a755fef45a diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.157 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.157 deleted file mode 100644 index 5d1c11a46c4c..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.157 +++ /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.19 kernel tree -EAPI=6 -HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches -IUSE=experimental symlink build -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=4.19.157 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.19.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-156.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-156.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-156.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-156.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-156.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-156.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-156.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-156.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-156.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=2809836984c16d5f8327af4d4d6dc186 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.158 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.158 deleted file mode 100644 index 4ffcb0795e5f..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.158 +++ /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.19 kernel tree -EAPI=6 -HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches -IUSE=experimental symlink build -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=4.19.158 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.19.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-157.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-157.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-157.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-157.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-157.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-157.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-157.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-157.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-157.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=197e9f14879f716415506b90aa466692 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.159 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.159 deleted file mode 100644 index 26fbac240ab3..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.159 +++ /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.19 kernel tree -EAPI=6 -HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches -IUSE=experimental symlink build -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=4.19.159 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.19.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-158.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-158.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-158.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-158.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-158.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-158.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-158.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-158.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-158.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=c45e338dfe7e015681c5c2549042178c diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.161 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.161 deleted file mode 100644 index 3a2454d3505e..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.161 +++ /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.19 kernel tree -EAPI=6 -HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches -IUSE=experimental symlink build -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=4.19.161 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.19.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-160.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-160.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-160.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-160.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-160.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-160.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-160.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-160.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-160.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=5a1f5a36fb14391349b66e9608cd1310 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.156 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.163 similarity index 63% rename from metadata/md5-cache/sys-kernel/gentoo-sources-4.19.156 rename to metadata/md5-cache/sys-kernel/gentoo-sources-4.19.163 index e9de1fb0ef2d..f72a1df274bb 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.156 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.163 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x LICENSE=GPL-2 RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip -SLOT=4.19.156 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.19.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-155.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-155.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-155.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-155.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-155.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-155.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-155.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-155.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-155.experimental.tar.xz ) +SLOT=4.19.163 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.19.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-162.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-162.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-162.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-162.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-162.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-162.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-162.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-162.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-162.experimental.tar.xz ) _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=7f03b107181452d5828b00b90929acf7 +_md5_=9963234319acf4c7fb2b8444fe7ff824 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.242 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.242 deleted file mode 100644 index 132ef54add8b..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.242 +++ /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 ~sparc ~x86 -LICENSE=GPL-2 linux-firmware -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=4.4.242 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.4.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.4-244.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.4-244.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.4-244.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.4-244.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.4-244.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.4-244.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.4-244.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.4-244.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.4-244.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=c348c1d6c72ef002df59a3b7d6f50b36 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.243 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.243 deleted file mode 100644 index 726fc34de3e2..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.243 +++ /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 ~sparc ~x86 -LICENSE=GPL-2 linux-firmware -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=4.4.243 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.4.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.4-245.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.4-245.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.4-245.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.4-245.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.4-245.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.4-245.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.4-245.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.4-245.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.4-245.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=ab13c1ff0fb12e7b9ac3655d6ded5451 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.244 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.244 deleted file mode 100644 index 83c645c7f184..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.244 +++ /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 ~sparc ~x86 -LICENSE=GPL-2 linux-firmware -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=4.4.244 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.4.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.4-246.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.4-246.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.4-246.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.4-246.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.4-246.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.4-246.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.4-246.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.4-246.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.4-246.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=d94fee4abbe5f36568cf1d8113d9e1e0 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.245 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.245 deleted file mode 100644 index d16a19d1f0c8..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.245 +++ /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 ~sparc ~x86 -LICENSE=GPL-2 linux-firmware -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=4.4.245 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.4.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.4-247.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.4-247.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.4-247.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.4-247.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.4-247.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.4-247.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.4-247.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.4-247.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.4-247.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=dbf435c9dd2ba0134ae7aa82ee918b7b diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.241 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.248 similarity index 63% rename from metadata/md5-cache/sys-kernel/gentoo-sources-4.4.241 rename to metadata/md5-cache/sys-kernel/gentoo-sources-4.4.248 index d1db99d6dd19..558e684dd173 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.241 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.248 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x LICENSE=GPL-2 linux-firmware RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip -SLOT=4.4.241 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.4.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.4-243.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.4-243.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.4-243.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.4-243.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.4-243.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.4-243.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.4-243.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.4-243.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.4-243.experimental.tar.xz ) +SLOT=4.4.248 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.4.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.4-250.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.4-250.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.4-250.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.4-250.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.4-250.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.4-250.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.4-250.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.4-250.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.4-250.experimental.tar.xz ) _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=23719cf2f70f8134c980762d7d8745ce +_md5_=2b63ea4ddfcd09db3e1b960955bf7b95 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.242 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.242 deleted file mode 100644 index 68affd473a8f..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.242 +++ /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 ~sparc ~x86 -LICENSE=GPL-2 linux-firmware -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=4.9.242 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.9.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.9-246.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.9-246.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.9-246.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.9-246.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.9-246.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.9-246.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.9-246.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.9-246.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.9-246.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=d94fee4abbe5f36568cf1d8113d9e1e0 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.243 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.243 deleted file mode 100644 index 7e4667aeea01..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.243 +++ /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 ~sparc ~x86 -LICENSE=GPL-2 linux-firmware -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=4.9.243 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.9.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.9-247.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.9-247.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.9-247.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.9-247.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.9-247.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.9-247.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.9-247.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.9-247.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.9-247.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=dbf435c9dd2ba0134ae7aa82ee918b7b diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.244 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.244 deleted file mode 100644 index 303525be1d1d..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.244 +++ /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 ~sparc ~x86 -LICENSE=GPL-2 linux-firmware -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=4.9.244 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.9.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.9-248.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.9-248.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.9-248.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.9-248.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.9-248.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.9-248.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.9-248.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.9-248.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.9-248.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=2015c4c0e797df35913aef9d856881bd diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.245 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.245 deleted file mode 100644 index fc6053bf98f9..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.245 +++ /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 ~sparc ~x86 -LICENSE=GPL-2 linux-firmware -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=4.9.245 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.9.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.9-249.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.9-249.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.9-249.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.9-249.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.9-249.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.9-249.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.9-249.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.9-249.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.9-249.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=0a0cfc7227e1db8235bb4154513907c5 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.241 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.248 similarity index 63% rename from metadata/md5-cache/sys-kernel/gentoo-sources-4.9.241 rename to metadata/md5-cache/sys-kernel/gentoo-sources-4.9.248 index a46d7b0d5390..6af3defadfc2 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.241 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.248 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x LICENSE=GPL-2 linux-firmware RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip -SLOT=4.9.241 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.9.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.9-245.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.9-245.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.9-245.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.9-245.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.9-245.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.9-245.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.9-245.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.9-245.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.9-245.experimental.tar.xz ) +SLOT=4.9.248 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.9.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.9-252.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.9-252.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.9-252.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.9-252.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.9-252.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.9-252.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.9-252.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.9-252.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.9-252.experimental.tar.xz ) _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=ab13c1ff0fb12e7b9ac3655d6ded5451 +_md5_=c537f9bae8e177dbd92810adba25e7d8 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.77 b/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.77 deleted file mode 100644 index 99aa90aab32c..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.77 +++ /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 5.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 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=5.4.77 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-78.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-78.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-78.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-78.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-78.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-78.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-78.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-78.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-78.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=b68374093601e8ef074a28777c1f936b diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.78 b/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.78 deleted file mode 100644 index 50a9744a0ae9..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.78 +++ /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 5.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 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=5.4.78 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-79.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-79.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-79.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-79.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-79.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-79.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-79.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-79.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-79.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=ac414fe59711b94bcbf3e3a747ca229f diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.79 b/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.79 deleted file mode 100644 index 8bd034db05f2..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.79 +++ /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 5.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 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=5.4.79 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-80.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-80.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-80.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-80.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-80.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-80.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-80.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-80.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-80.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=be85c89deff6b58f4476c77b1f88ad7f diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.81 b/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.81 deleted file mode 100644 index 6f436da52481..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.81 +++ /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 5.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 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=5.4.81 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-83.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-83.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-83.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-83.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-83.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-83.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-83.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-83.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-83.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=743de7995214bfda8f3230637cadcdd1 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.76 b/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.83 similarity index 63% rename from metadata/md5-cache/sys-kernel/gentoo-sources-5.4.76 rename to metadata/md5-cache/sys-kernel/gentoo-sources-5.4.83 index 591a9ca438ce..1e47cef1033e 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.76 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.83 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x LICENSE=GPL-2 RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip -SLOT=5.4.76 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-77.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-77.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-77.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-77.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-77.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-77.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-77.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-77.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-77.experimental.tar.xz ) +SLOT=5.4.83 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-85.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-85.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-85.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-85.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-85.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-85.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-85.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-85.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-85.experimental.tar.xz ) _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=4a71f780f5e06dde0861c5a81f914669 +_md5_=d3aca192ff94292f6e0e890936622f56 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-5.8.18 b/metadata/md5-cache/sys-kernel/gentoo-sources-5.8.18 deleted file mode 100644 index f93be08d647f..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-5.8.18 +++ /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 5.8 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 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=5.8.18 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.8.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.8-21.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.8-21.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.8-21.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.8-21.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.8-21.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.8-21.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.8-21.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.8-21.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.8-21.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=b7f362eacf767ee2a8eace8578c46474 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.11 b/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.11 deleted file mode 100644 index 05ec23240008..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.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 5.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 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=5.9.11 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.9.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-11.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-11.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-11.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-11.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-11.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-11.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-11.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-11.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-11.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=66a10f23f38459c6035913670876b6cb diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.10 b/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.14 similarity index 63% rename from metadata/md5-cache/sys-kernel/gentoo-sources-5.9.10 rename to metadata/md5-cache/sys-kernel/gentoo-sources-5.9.14 index 5c6e6f8f2689..2dc8c3690ebd 100644 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.10 +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.14 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x LICENSE=GPL-2 RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip -SLOT=5.9.10 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.9.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-10.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-10.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-10.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-10.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-10.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-10.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-10.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-10.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-10.experimental.tar.xz ) +SLOT=5.9.14 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.9.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-14.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-14.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-14.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-14.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-14.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-14.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-14.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-14.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-14.experimental.tar.xz ) _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=f24a0504c9cb231d94cf27630a9c733d +_md5_=d5df73a1bd1597dd83f96d5f82b9d8e2 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.6 b/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.6 deleted file mode 100644 index 72b5036092e6..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.6 +++ /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 5.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 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=5.9.6 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.9.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-6.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-6.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-6.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-6.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-6.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-6.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-6.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-6.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-6.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=015fc1bda7a418319db2d5deb5679ea6 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.7 b/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.7 deleted file mode 100644 index a63e30059cff..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.7 +++ /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 5.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 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=5.9.7 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.9.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-7.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-7.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-7.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-7.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-7.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-7.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-7.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-7.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-7.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=78f9aabf3bab7dab6fa2c9b7f55f9c23 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.8 b/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.8 deleted file mode 100644 index e08a4e9dec8c..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.8 +++ /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 5.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 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=5.9.8 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.9.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-8.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-8.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-8.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-8.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-8.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-8.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-8.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-8.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-8.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=7568cdff0259182f4ab4a3cbe62ead22 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.9 b/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.9 deleted file mode 100644 index 4e9abe12caa8..000000000000 --- a/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.9 +++ /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 5.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 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) -RESTRICT=binchecks strip -SLOT=5.9.9 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.9.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-9.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-9.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-9.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-9.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-9.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-9.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-9.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-9.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-9.experimental.tar.xz ) -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=4d13e106ceaec45161e95d973f69e0b4 diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.83 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.83 new file mode 100644 index 000000000000..4e7c4695fe55 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.4.83 @@ -0,0 +1,14 @@ +BDEPEND=debug? ( dev-util/dwarves ) verify-sig? ( app-crypt/openpgp-keys-kernel ) test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) sys-devel/bc sys-devel/flex virtual/libelf virtual/yacc verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) +DEFINED_PHASES=compile config configure install postinst postrm preinst prepare prerm pretend test unpack +DESCRIPTION=Linux kernel built from vanilla upstream sources +EAPI=7 +HOMEPAGE=https://www.kernel.org/ +IUSE=debug savedconfig +initramfs test verify-sig +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=GPL-2 +RDEPEND=!sys-kernel/vanilla-kernel-bin:5.4.83 || ( sys-kernel/installkernel-gentoo sys-kernel/installkernel-systemd-boot ) initramfs? ( >=sys-kernel/dracut-049-r3 ) +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=5.4.83 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.83.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.4.77-r1.tar.gz -> gentoo-kernel-config-5.4.77-r1.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.4.83.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-x86_64.config -> kernel-x86_64.config.5.4.21 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-aarch64.config -> kernel-aarch64.config.5.4.21 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-ppc64le.config -> kernel-ppc64le.config.5.4.21 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/2809b7faa6a8cb232cd825096c146b7bdc1e08ea/f/kernel-i686.config -> kernel-i686.config.5.4.21 ) +_eclasses_=kernel-build 042733ebde23be39ae073ec82458bcb0 kernel-install 2a4af308756b3204b376d8b3fd5adbbf mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d multilib d410501a125f99ffb560b0c523cd3d1e portability e8f7ef3a41965b21a734550f8a94c1c6 savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 605c126bed8d87e4378d5ff1645330cb verify-sig 40b4f4f782cf67118f594ce604cc4c0a +_md5_=270127bc525d061891eea08f7b769945 diff --git a/metadata/md5-cache/sys-kernel/vanilla-kernel-5.9.14 b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.9.14 new file mode 100644 index 000000000000..0a9011f4844b --- /dev/null +++ b/metadata/md5-cache/sys-kernel/vanilla-kernel-5.9.14 @@ -0,0 +1,15 @@ +BDEPEND=debug? ( dev-util/dwarves ) verify-sig? ( app-crypt/openpgp-keys-kernel ) test? ( dev-tcltk/expect sys-apps/coreutils sys-kernel/dracut sys-fs/e2fsprogs amd64? ( app-emulation/qemu[qemu_softmmu_targets_x86_64] ) arm64? ( app-emulation/qemu[qemu_softmmu_targets_aarch64] ) ppc64? ( app-emulation/qemu[qemu_softmmu_targets_ppc64] ) x86? ( app-emulation/qemu[qemu_softmmu_targets_i386] ) ) sys-devel/bc sys-devel/flex virtual/libelf virtual/yacc verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) +DEFINED_PHASES=compile config configure install postinst postrm preinst prepare prerm pretend test unpack +DESCRIPTION=Linux kernel built from vanilla upstream sources +EAPI=7 +HOMEPAGE=https://www.kernel.org/ +IUSE=debug savedconfig +initramfs test verify-sig +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +LICENSE=GPL-2 +RDEPEND=!sys-kernel/vanilla-kernel-bin:5.9.14 || ( sys-kernel/installkernel-gentoo sys-kernel/installkernel-systemd-boot ) initramfs? ( >=sys-kernel/dracut-049-r3 ) +REQUIRED_USE=arm? ( savedconfig ) +RESTRICT=!test? ( test ) test? ( userpriv ) arm? ( test ) +SLOT=5.9.14 +SRC_URI=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.9.14.tar.xz https://github.com/mgorny/gentoo-kernel-config/archive/v5.9.8-r1.tar.gz -> gentoo-kernel-config-5.9.8-r1.tar.gz verify-sig? ( https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.9.14.tar.sign ) amd64? ( https://src.fedoraproject.org/rpms/kernel/raw/b57160e20ddbe02624d2652e6836b0cb73044a4e/f/kernel-x86_64-fedora.config -> kernel-x86_64-fedora.config.5.9.13 ) arm64? ( https://src.fedoraproject.org/rpms/kernel/raw/b57160e20ddbe02624d2652e6836b0cb73044a4e/f/kernel-aarch64-fedora.config -> kernel-aarch64-fedora.config.5.9.13 ) ppc64? ( https://src.fedoraproject.org/rpms/kernel/raw/b57160e20ddbe02624d2652e6836b0cb73044a4e/f/kernel-ppc64le-fedora.config -> kernel-ppc64le-fedora.config.5.9.13 ) x86? ( https://src.fedoraproject.org/rpms/kernel/raw/b57160e20ddbe02624d2652e6836b0cb73044a4e/f/kernel-i686-fedora.config -> kernel-i686-fedora.config.5.9.13 ) +_eclasses_=kernel-build 042733ebde23be39ae073ec82458bcb0 kernel-install 2a4af308756b3204b376d8b3fd5adbbf mount-boot 20014ae7a3e81eb2c65a4d4d86d2560d multilib d410501a125f99ffb560b0c523cd3d1e portability e8f7ef3a41965b21a734550f8a94c1c6 savedconfig 0bc45cb0429003c9abc73bae24a0d5bd toolchain-funcs 605c126bed8d87e4378d5ff1645330cb verify-sig 40b4f4f782cf67118f594ce604cc4c0a +_md5_=582852c9d3397173a25b4ff5d09ac6c7 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-4.14.211 b/metadata/md5-cache/sys-kernel/vanilla-sources-4.14.212 similarity index 91% rename from metadata/md5-cache/sys-kernel/vanilla-sources-4.14.211 rename to metadata/md5-cache/sys-kernel/vanilla-sources-4.14.212 index 669c6abe3a51..4a1e1c4bd40b 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-4.14.211 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-4.14.212 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x LICENSE=GPL-2 RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip -SLOT=4.14.211 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.14.211.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.14.tar.xz +SLOT=4.14.212 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.14.212.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.14.tar.xz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=71a3056d94dc6959a5c71a4dea2cc615 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-4.19.162 b/metadata/md5-cache/sys-kernel/vanilla-sources-4.19.163 similarity index 91% rename from metadata/md5-cache/sys-kernel/vanilla-sources-4.19.162 rename to metadata/md5-cache/sys-kernel/vanilla-sources-4.19.163 index b8768e75bd4d..4d84119bd5f8 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-4.19.162 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-4.19.163 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x LICENSE=GPL-2 RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip -SLOT=4.19.162 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.19.162.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.19.tar.xz +SLOT=4.19.163 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.19.163.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.19.tar.xz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=71a3056d94dc6959a5c71a4dea2cc615 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-4.4.247 b/metadata/md5-cache/sys-kernel/vanilla-sources-4.4.248 similarity index 91% rename from metadata/md5-cache/sys-kernel/vanilla-sources-4.4.247 rename to metadata/md5-cache/sys-kernel/vanilla-sources-4.4.248 index f027487e6344..bf87c89dc56e 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-4.4.247 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-4.4.248 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x LICENSE=GPL-2 linux-firmware RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip -SLOT=4.4.247 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.4.247.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.4.tar.xz +SLOT=4.4.248 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.4.248.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.4.tar.xz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=71a3056d94dc6959a5c71a4dea2cc615 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-4.9.247 b/metadata/md5-cache/sys-kernel/vanilla-sources-4.9.248 similarity index 91% rename from metadata/md5-cache/sys-kernel/vanilla-sources-4.9.247 rename to metadata/md5-cache/sys-kernel/vanilla-sources-4.9.248 index 7b0aa15282f6..6a5bb494329f 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-4.9.247 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-4.9.248 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x LICENSE=GPL-2 linux-firmware RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip -SLOT=4.9.247 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.9.247.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.9.tar.xz +SLOT=4.9.248 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.9.248.xz https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.9.tar.xz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=71a3056d94dc6959a5c71a4dea2cc615 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-5.4.82 b/metadata/md5-cache/sys-kernel/vanilla-sources-5.4.83 similarity index 91% rename from metadata/md5-cache/sys-kernel/vanilla-sources-5.4.82 rename to metadata/md5-cache/sys-kernel/vanilla-sources-5.4.83 index 37333cfec48f..e1e1813f2515 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-5.4.82 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-5.4.83 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x LICENSE=GPL-2 RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip -SLOT=5.4.82 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.4.82.xz https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz +SLOT=5.4.83 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.4.83.xz https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=71a3056d94dc6959a5c71a4dea2cc615 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-5.9.13 b/metadata/md5-cache/sys-kernel/vanilla-sources-5.9.14 similarity index 91% rename from metadata/md5-cache/sys-kernel/vanilla-sources-5.9.13 rename to metadata/md5-cache/sys-kernel/vanilla-sources-5.9.14 index b6a17b244eaf..79fcc48ccb55 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-5.9.13 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-5.9.14 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x LICENSE=GPL-2 RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) RESTRICT=binchecks strip -SLOT=5.9.13 -SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.9.13.xz https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.9.tar.xz +SLOT=5.9.14 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.9.14.xz https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.9.tar.xz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=71a3056d94dc6959a5c71a4dea2cc615 diff --git a/metadata/md5-cache/sys-kernel/zen-sources-5.9.13 b/metadata/md5-cache/sys-kernel/zen-sources-5.9.13 new file mode 100644 index 000000000000..1c03271abe7b --- /dev/null +++ b/metadata/md5-cache/sys-kernel/zen-sources-5.9.13 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=The Zen Kernel Live Sources +EAPI=6 +HOMEPAGE=https://github.com/zen-kernel +IUSE=symlink build +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=5.9.13 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.9.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-1.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-1.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-1.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-1.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-1.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-1.extras.tar.xz https://github.com/zen-kernel/zen-kernel/releases/download/v5.9.13-zen1/v5.9.13-zen1.patch.xz +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=2148a6c5380c17b8ef37514d78fd60a1 diff --git a/metadata/md5-cache/sys-libs/Manifest.gz b/metadata/md5-cache/sys-libs/Manifest.gz index fb9fe1f31256..05aeaa0e4f3a 100644 Binary files a/metadata/md5-cache/sys-libs/Manifest.gz and b/metadata/md5-cache/sys-libs/Manifest.gz differ diff --git a/metadata/md5-cache/sys-libs/glibc-9999 b/metadata/md5-cache/sys-libs/glibc-9999 index 7f3f1ec4f323..2f1467c0a134 100644 --- a/metadata/md5-cache/sys-libs/glibc-9999 +++ b/metadata/md5-cache/sys-libs/glibc-9999 @@ -4,13 +4,13 @@ DEPEND=gd? ( media-libs/gd:2= ) nscd? ( selinux? ( audit? ( sys-process/audit ) DESCRIPTION=GNU libc C library EAPI=7 HOMEPAGE=https://www.gnu.org/software/libc/ -IUSE=audit caps cet compile-locales +crypt custom-cflags doc gd headers-only +multiarch multilib nscd profile selinux +ssp +static-libs static-pie suid systemtap test vanilla +IUSE=audit caps cet compile-locales +crypt custom-cflags doc gd headers-only +multiarch multilib multilib-bootstrap nscd profile selinux +ssp +static-libs static-pie suid systemtap test vanilla LICENSE=LGPL-2.1+ BSD HPND ISC inner-net rc PCRE PDEPEND=!vanilla? ( sys-libs/timezone-data ) PROPERTIES=live RDEPEND=gd? ( media-libs/gd:2= ) nscd? ( selinux? ( audit? ( sys-process/audit ) caps? ( sys-libs/libcap ) ) ) suid? ( caps? ( sys-libs/libcap ) ) selinux? ( sys-libs/libselinux ) systemtap? ( dev-util/systemtap ) !=net-dns/libidn2-2.3.0 vanilla? ( !sys-libs/timezone-data ) RESTRICT=!test? ( test ) SLOT=2.2 -SRC_URI=https://gitweb.gentoo.org/proj/locale-gen.git/snapshot/locale-gen-2.10.tar.gz multilib? ( https://dev.gentoo.org/~dilfridge/distfiles/gcc-multilib-bootstrap-20201208.tar.xz ) +SRC_URI=https://gitweb.gentoo.org/proj/locale-gen.git/snapshot/locale-gen-2.10.tar.gz multilib-bootstrap? ( https://dev.gentoo.org/~dilfridge/distfiles/gcc-multilib-bootstrap-20201208.tar.xz ) _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 gnuconfig f9125410be4c062f2fcefc8ec59fc223 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 prefix c2993e4c430c1ee24f278983d6189501 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=6fbbc9a51234ac25cb6cb7b28c44bcc4 +_md5_=75bd6624af13f8e0f5818d55a12b7e3f diff --git a/metadata/md5-cache/sys-libs/libcap-ng-0.7.10 b/metadata/md5-cache/sys-libs/libcap-ng-0.7.10 deleted file mode 100644 index fbb74ee5d56f..000000000000 --- a/metadata/md5-cache/sys-libs/libcap-ng-0.7.10 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=python? ( >=dev-lang/swig-2 ) >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DEFINED_PHASES=compile configure install prepare test -DEPEND=python? ( python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) sys-kernel/linux-headers -DESCRIPTION=POSIX 1003.1e capabilities -EAPI=7 -HOMEPAGE=https://people.redhat.com/sgrubb/libcap-ng/ -IUSE=python static-libs python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x86-linux -LICENSE=LGPL-2.1 -RDEPEND=python? ( python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) -REQUIRED_USE=python? ( || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) ) -SLOT=0 -SRC_URI=https://people.redhat.com/sgrubb/libcap-ng/libcap-ng-0.7.10.tar.gz -_eclasses_=autotools 3ec5e49b810b2571ca9c6d76f55867bb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=4826564926bbe645ffd39a4558844745 diff --git a/metadata/md5-cache/sys-libs/libcap-ng-0.8.1 b/metadata/md5-cache/sys-libs/libcap-ng-0.8.2 similarity index 99% rename from metadata/md5-cache/sys-libs/libcap-ng-0.8.1 rename to metadata/md5-cache/sys-libs/libcap-ng-0.8.2 index c02812bcbfb6..90fa663f3858 100644 --- a/metadata/md5-cache/sys-libs/libcap-ng-0.8.1 +++ b/metadata/md5-cache/sys-libs/libcap-ng-0.8.2 @@ -10,6 +10,6 @@ LICENSE=LGPL-2.1 RDEPEND=python? ( python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) REQUIRED_USE=python? ( || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) ) SLOT=0 -SRC_URI=https://people.redhat.com/sgrubb/libcap-ng/libcap-ng-0.8.1.tar.gz +SRC_URI=https://people.redhat.com/sgrubb/libcap-ng/libcap-ng-0.8.2.tar.gz _eclasses_=autotools 3ec5e49b810b2571ca9c6d76f55867bb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=a70073dc664ac2af6c4350b5fc35fb57 diff --git a/metadata/md5-cache/virtual/Manifest.gz b/metadata/md5-cache/virtual/Manifest.gz index 115540b2e333..d45e4140e13e 100644 Binary files a/metadata/md5-cache/virtual/Manifest.gz and b/metadata/md5-cache/virtual/Manifest.gz differ diff --git a/metadata/md5-cache/virtual/man-0-r4 b/metadata/md5-cache/virtual/man-0-r4 new file mode 100644 index 000000000000..adeb30c9a500 --- /dev/null +++ b/metadata/md5-cache/virtual/man-0-r4 @@ -0,0 +1,7 @@ +DEFINED_PHASES=- +DESCRIPTION=Virtual for man +EAPI=7 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~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 +RDEPEND=|| ( sys-apps/man-db >=app-text/mandoc-1.14.5-r1[system-man] ) +SLOT=0 +_md5_=e43b4ecb9f286396c524584aac7e83ad diff --git a/metadata/md5-cache/www-client/Manifest.gz b/metadata/md5-cache/www-client/Manifest.gz index 98e33aa43a77..98bc8c912492 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/chromium-88.0.4324.27 b/metadata/md5-cache/www-client/chromium-88.0.4324.41 similarity index 98% rename from metadata/md5-cache/www-client/chromium-88.0.4324.27 rename to metadata/md5-cache/www-client/chromium-88.0.4324.41 index 3fa73f96f868..0aeaa1531ac1 100644 --- a/metadata/md5-cache/www-client/chromium-88.0.4324.27 +++ b/metadata/md5-cache/www-client/chromium-88.0.4324.41 @@ -11,6 +11,6 @@ RDEPEND=app-arch/bzip2:= cups? ( >=net-print/cups-1.3.11:= ) dev-libs/expat:= de REQUIRED_USE=component-build? ( !suid ) RESTRICT=!system-ffmpeg? ( proprietary-codecs? ( bindist ) ) SLOT=0 -SRC_URI=https://commondatastorage.googleapis.com/chromium-browser-official/chromium-88.0.4324.27.tar.xz https://files.pythonhosted.org/packages/ed/7b/bbf89ca71e722b7f9464ebffe4b5ee20a9e5c9a555a56e2d3914bb9119a6/setuptools-44.1.0.zip https://github.com/stha09/chromium-patches/releases/download/chromium-88-patchset-3/chromium-88-patchset-3.tar.xz +SRC_URI=https://commondatastorage.googleapis.com/chromium-browser-official/chromium-88.0.4324.41.tar.xz https://files.pythonhosted.org/packages/ed/7b/bbf89ca71e722b7f9464ebffe4b5ee20a9e5c9a555a56e2d3914bb9119a6/setuptools-44.1.0.zip https://github.com/stha09/chromium-patches/releases/download/chromium-88-patchset-3/chromium-88-patchset-3.tar.xz _eclasses_=check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d chromium-2 199d6bc7f8b84ac7c00aca900739e570 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f pax-utils a41d1fd1c111289ffa04490de6ee79d7 portability e8f7ef3a41965b21a734550f8a94c1c6 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=33d3baa49ab3ba01b28d0b541feb7091 diff --git a/metadata/md5-cache/www-client/firefox-84.0_rc1 b/metadata/md5-cache/www-client/firefox-84.0_rc1 deleted file mode 100644 index abb2276795df..000000000000 --- a/metadata/md5-cache/www-client/firefox-84.0_rc1 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=|| ( dev-lang/python:3.9[ncurses,sqlite,ssl] dev-lang/python:3.8[ncurses,sqlite,ssl] dev-lang/python:3.7[ncurses,sqlite,ssl] ) app-arch/unzip app-arch/zip >=dev-util/cbindgen-0.15.0 >=net-libs/nodejs-10.22.1 virtual/pkgconfig >=virtual/rust-1.44.0 || ( ( sys-devel/clang:11 sys-devel/llvm:11 clang? ( =sys-devel/lld-11* pgo? ( =sys-libs/compiler-rt-sanitizers-11*[profile] ) ) ) ( sys-devel/clang:10 sys-devel/llvm:10 clang? ( =sys-devel/lld-10* pgo? ( =sys-libs/compiler-rt-sanitizers-10*[profile] ) ) ) ( sys-devel/clang:9 sys-devel/llvm:9 clang? ( =sys-devel/lld-9* pgo? ( =sys-libs/compiler-rt-sanitizers-9*[profile] ) ) ) ) lto? ( !clang? ( sys-devel/binutils[gold] ) ) amd64? ( >=dev-lang/yasm-1.1 ) x86? ( >=dev-lang/yasm-1.1 ) !system-av1? ( amd64? ( >=dev-lang/nasm-2.13 ) x86? ( >=dev-lang/nasm-2.13 ) ) >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) ~sys-devel/autoconf-2.13 >=sys-devel/libtool-2.4 pgo? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup unpack -DEPEND=>=dev-libs/nss-3.59 >=dev-libs/nspr-4.29 dev-libs/atk dev-libs/expat >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 >=x11-libs/gtk+-3.4.0:3[X] x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.35:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) virtual/freedesktop-icon-theme >=x11-libs/pixman-0.19.2 >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=dev-libs/libffi-3.0.10:= media-video/ffmpeg x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt dbus? ( sys-apps/dbus dev-libs/dbus-glib ) screencast? ( media-video/pipewire:0/0.3 ) system-av1? ( >=media-libs/dav1d-0.3.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-libs/harfbuzz-2.6.8:0= >=media-gfx/graphite2-1.3.13 ) system-icu? ( >=dev-libs/icu-67.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0=[threads] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wifi? ( kernel_linux? ( sys-apps/dbus dev-libs/dbus-glib net-misc/networkmanager ) ) jack? ( virtual/jack ) selinux? ( sec-policy/selinux-mozilla ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.12-r4[sdk] ) ) wayland? ( >=x11-libs/gtk+-3.11:3[wayland] ) amd64? ( virtual/opengl ) x86? ( virtual/opengl ) !!sys-devel/llvm:0 dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=Firefox Web Browser -EAPI=7 -HOMEPAGE=https://www.mozilla.com/firefox -IUSE=clang cpu_flags_arm_neon dbus debug eme-free geckodriver +gmp-autoupdate hardened hwaccel jack lto +openh264 pgo pulseaudio screencast selinux +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx +system-webp wayland wifi l10n_ach l10n_af l10n_an l10n_ar l10n_ast l10n_az l10n_be l10n_bg l10n_bn l10n_br l10n_bs l10n_ca-valencia l10n_ca l10n_cak l10n_cs l10n_cy l10n_da l10n_de l10n_dsb l10n_el l10n_en-CA l10n_en-GB l10n_eo l10n_es-AR l10n_es-CL l10n_es-ES l10n_es-MX l10n_et l10n_eu l10n_fa l10n_ff l10n_fi l10n_fr l10n_fy l10n_ga l10n_gd l10n_gl l10n_gn l10n_gu l10n_he l10n_hi l10n_hr l10n_hsb l10n_hu l10n_hy l10n_ia l10n_id l10n_is l10n_it l10n_ja l10n_ka l10n_kab l10n_kk l10n_km l10n_kn l10n_ko l10n_lij l10n_lt l10n_lv l10n_mk l10n_mr l10n_ms l10n_my l10n_nb l10n_ne l10n_nl l10n_nn l10n_oc l10n_pa l10n_pl l10n_pt-BR l10n_pt-PT l10n_rm l10n_ro l10n_ru l10n_si l10n_sk l10n_sl l10n_son l10n_sq l10n_sr l10n_sv l10n_ta l10n_te l10n_th l10n_tl l10n_tr l10n_trs l10n_uk l10n_ur l10n_uz l10n_vi l10n_xh l10n_zh-CN l10n_zh-TW pgo -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=>=dev-libs/nss-3.59 >=dev-libs/nspr-4.29 dev-libs/atk dev-libs/expat >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 >=x11-libs/gtk+-3.4.0:3[X] x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.35:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) virtual/freedesktop-icon-theme >=x11-libs/pixman-0.19.2 >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=dev-libs/libffi-3.0.10:= media-video/ffmpeg x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt dbus? ( sys-apps/dbus dev-libs/dbus-glib ) screencast? ( media-video/pipewire:0/0.3 ) system-av1? ( >=media-libs/dav1d-0.3.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-libs/harfbuzz-2.6.8:0= >=media-gfx/graphite2-1.3.13 ) system-icu? ( >=dev-libs/icu-67.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0=[threads] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wifi? ( kernel_linux? ( sys-apps/dbus dev-libs/dbus-glib net-misc/networkmanager ) ) jack? ( virtual/jack ) selinux? ( sec-policy/selinux-mozilla ) jack? ( virtual/jack ) openh264? ( media-libs/openh264:*[plugin] ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.12-r4 ) ) selinux? ( sec-policy/selinux-mozilla ) -REQUIRED_USE=debug? ( !system-av1 ) screencast? ( wayland ) -SLOT=0/84 -SRC_URI=https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/source/firefox-84.0.source.tar.xz -> firefox-84.0_rc1.source.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-84-patches-01.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-84-patches-01.tar.xz https://dev.gentoo.org/~whissi/mozilla/patchsets/firefox-84-patches-01.tar.xz l10n_ach? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/ach.xpi -> firefox-84.0_rc1-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/af.xpi -> firefox-84.0_rc1-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/an.xpi -> firefox-84.0_rc1-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/ar.xpi -> firefox-84.0_rc1-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/ast.xpi -> firefox-84.0_rc1-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/az.xpi -> firefox-84.0_rc1-az.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/be.xpi -> firefox-84.0_rc1-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/bg.xpi -> firefox-84.0_rc1-bg.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/bn.xpi -> firefox-84.0_rc1-bn.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/br.xpi -> firefox-84.0_rc1-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/bs.xpi -> firefox-84.0_rc1-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/ca-valencia.xpi -> firefox-84.0_rc1-ca-valencia.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/ca.xpi -> firefox-84.0_rc1-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/cak.xpi -> firefox-84.0_rc1-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/cs.xpi -> firefox-84.0_rc1-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/cy.xpi -> firefox-84.0_rc1-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/da.xpi -> firefox-84.0_rc1-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/de.xpi -> firefox-84.0_rc1-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/dsb.xpi -> firefox-84.0_rc1-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/el.xpi -> firefox-84.0_rc1-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/en-CA.xpi -> firefox-84.0_rc1-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/en-GB.xpi -> firefox-84.0_rc1-en-GB.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/eo.xpi -> firefox-84.0_rc1-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/es-AR.xpi -> firefox-84.0_rc1-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/es-CL.xpi -> firefox-84.0_rc1-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/es-ES.xpi -> firefox-84.0_rc1-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/es-MX.xpi -> firefox-84.0_rc1-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/et.xpi -> firefox-84.0_rc1-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/eu.xpi -> firefox-84.0_rc1-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/fa.xpi -> firefox-84.0_rc1-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/ff.xpi -> firefox-84.0_rc1-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/fi.xpi -> firefox-84.0_rc1-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/fr.xpi -> firefox-84.0_rc1-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/fy-NL.xpi -> firefox-84.0_rc1-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/ga-IE.xpi -> firefox-84.0_rc1-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/gd.xpi -> firefox-84.0_rc1-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/gl.xpi -> firefox-84.0_rc1-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/gn.xpi -> firefox-84.0_rc1-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/gu-IN.xpi -> firefox-84.0_rc1-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/he.xpi -> firefox-84.0_rc1-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/hi-IN.xpi -> firefox-84.0_rc1-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/hr.xpi -> firefox-84.0_rc1-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/hsb.xpi -> firefox-84.0_rc1-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/hu.xpi -> firefox-84.0_rc1-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/hy-AM.xpi -> firefox-84.0_rc1-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/ia.xpi -> firefox-84.0_rc1-ia.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/id.xpi -> firefox-84.0_rc1-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/is.xpi -> firefox-84.0_rc1-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/it.xpi -> firefox-84.0_rc1-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/ja.xpi -> firefox-84.0_rc1-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/ka.xpi -> firefox-84.0_rc1-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/kab.xpi -> firefox-84.0_rc1-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/kk.xpi -> firefox-84.0_rc1-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/km.xpi -> firefox-84.0_rc1-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/kn.xpi -> firefox-84.0_rc1-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/ko.xpi -> firefox-84.0_rc1-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/lij.xpi -> firefox-84.0_rc1-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/lt.xpi -> firefox-84.0_rc1-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/lv.xpi -> firefox-84.0_rc1-lv.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/mk.xpi -> firefox-84.0_rc1-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/mr.xpi -> firefox-84.0_rc1-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/ms.xpi -> firefox-84.0_rc1-ms.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/my.xpi -> firefox-84.0_rc1-my.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/nb-NO.xpi -> firefox-84.0_rc1-nb-NO.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/ne-NP.xpi -> firefox-84.0_rc1-ne-NP.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/nl.xpi -> firefox-84.0_rc1-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/nn-NO.xpi -> firefox-84.0_rc1-nn-NO.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/oc.xpi -> firefox-84.0_rc1-oc.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/pa-IN.xpi -> firefox-84.0_rc1-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/pl.xpi -> firefox-84.0_rc1-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/pt-BR.xpi -> firefox-84.0_rc1-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/pt-PT.xpi -> firefox-84.0_rc1-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/rm.xpi -> firefox-84.0_rc1-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/ro.xpi -> firefox-84.0_rc1-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/ru.xpi -> firefox-84.0_rc1-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/si.xpi -> firefox-84.0_rc1-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/sk.xpi -> firefox-84.0_rc1-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/sl.xpi -> firefox-84.0_rc1-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/son.xpi -> firefox-84.0_rc1-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/sq.xpi -> firefox-84.0_rc1-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/sr.xpi -> firefox-84.0_rc1-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/sv-SE.xpi -> firefox-84.0_rc1-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/ta.xpi -> firefox-84.0_rc1-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/te.xpi -> firefox-84.0_rc1-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/th.xpi -> firefox-84.0_rc1-th.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/tl.xpi -> firefox-84.0_rc1-tl.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/tr.xpi -> firefox-84.0_rc1-tr.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/trs.xpi -> firefox-84.0_rc1-trs.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/uk.xpi -> firefox-84.0_rc1-uk.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/ur.xpi -> firefox-84.0_rc1-ur.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/uz.xpi -> firefox-84.0_rc1-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/vi.xpi -> firefox-84.0_rc1-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/xh.xpi -> firefox-84.0_rc1-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/zh-CN.xpi -> firefox-84.0_rc1-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build1/linux-x86_64/xpi/zh-TW.xpi -> firefox-84.0_rc1-zh-TW.xpi ) -_eclasses_=autotools 3ec5e49b810b2571ca9c6d76f55867bb check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 llvm 21d8c0949a2693d7109cc6a25fabfcaf multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils a41d1fd1c111289ffa04490de6ee79d7 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=a9adba489f5158008643cc99e23d1def diff --git a/metadata/md5-cache/www-client/firefox-84.0_rc2 b/metadata/md5-cache/www-client/firefox-84.0_rc2 new file mode 100644 index 000000000000..ab92aaf15fe3 --- /dev/null +++ b/metadata/md5-cache/www-client/firefox-84.0_rc2 @@ -0,0 +1,14 @@ +BDEPEND=|| ( dev-lang/python:3.9[ncurses,sqlite,ssl] dev-lang/python:3.8[ncurses,sqlite,ssl] dev-lang/python:3.7[ncurses,sqlite,ssl] ) app-arch/unzip app-arch/zip >=dev-util/cbindgen-0.15.0 >=net-libs/nodejs-10.22.1 virtual/pkgconfig >=virtual/rust-1.44.0 || ( ( sys-devel/clang:11 sys-devel/llvm:11 clang? ( =sys-devel/lld-11* pgo? ( =sys-libs/compiler-rt-sanitizers-11*[profile] ) ) ) ( sys-devel/clang:10 sys-devel/llvm:10 clang? ( =sys-devel/lld-10* pgo? ( =sys-libs/compiler-rt-sanitizers-10*[profile] ) ) ) ( sys-devel/clang:9 sys-devel/llvm:9 clang? ( =sys-devel/lld-9* pgo? ( =sys-libs/compiler-rt-sanitizers-9*[profile] ) ) ) ) lto? ( !clang? ( sys-devel/binutils[gold] ) ) amd64? ( >=dev-lang/yasm-1.1 ) x86? ( >=dev-lang/yasm-1.1 ) !system-av1? ( amd64? ( >=dev-lang/nasm-2.13 ) x86? ( >=dev-lang/nasm-2.13 ) ) >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) ~sys-devel/autoconf-2.13 >=sys-devel/libtool-2.4 pgo? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup unpack +DEPEND=>=dev-libs/nss-3.59 >=dev-libs/nspr-4.29 dev-libs/atk dev-libs/expat >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 >=x11-libs/gtk+-3.4.0:3[X] x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.35:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) virtual/freedesktop-icon-theme >=x11-libs/pixman-0.19.2 >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=dev-libs/libffi-3.0.10:= media-video/ffmpeg x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt dbus? ( sys-apps/dbus dev-libs/dbus-glib ) screencast? ( media-video/pipewire:0/0.3 ) system-av1? ( >=media-libs/dav1d-0.3.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-libs/harfbuzz-2.6.8:0= >=media-gfx/graphite2-1.3.13 ) system-icu? ( >=dev-libs/icu-67.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0=[threads] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wifi? ( kernel_linux? ( sys-apps/dbus dev-libs/dbus-glib net-misc/networkmanager ) ) jack? ( virtual/jack ) selinux? ( sec-policy/selinux-mozilla ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.12-r4[sdk] ) ) wayland? ( >=x11-libs/gtk+-3.11:3[wayland] ) amd64? ( virtual/opengl ) x86? ( virtual/opengl ) !!sys-devel/llvm:0 dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Firefox Web Browser +EAPI=7 +HOMEPAGE=https://www.mozilla.com/firefox +IUSE=clang cpu_flags_arm_neon dbus debug eme-free geckodriver +gmp-autoupdate hardened hwaccel jack lto +openh264 pgo pulseaudio screencast selinux +system-av1 +system-harfbuzz +system-icu +system-jpeg +system-libevent +system-libvpx +system-webp wayland wifi l10n_ach l10n_af l10n_an l10n_ar l10n_ast l10n_az l10n_be l10n_bg l10n_bn l10n_br l10n_bs l10n_ca-valencia l10n_ca l10n_cak l10n_cs l10n_cy l10n_da l10n_de l10n_dsb l10n_el l10n_en-CA l10n_en-GB l10n_eo l10n_es-AR l10n_es-CL l10n_es-ES l10n_es-MX l10n_et l10n_eu l10n_fa l10n_ff l10n_fi l10n_fr l10n_fy l10n_ga l10n_gd l10n_gl l10n_gn l10n_gu l10n_he l10n_hi l10n_hr l10n_hsb l10n_hu l10n_hy l10n_ia l10n_id l10n_is l10n_it l10n_ja l10n_ka l10n_kab l10n_kk l10n_km l10n_kn l10n_ko l10n_lij l10n_lt l10n_lv l10n_mk l10n_mr l10n_ms l10n_my l10n_nb l10n_ne l10n_nl l10n_nn l10n_oc l10n_pa l10n_pl l10n_pt-BR l10n_pt-PT l10n_rm l10n_ro l10n_ru l10n_si l10n_sk l10n_sl l10n_son l10n_sq l10n_sr l10n_sv l10n_ta l10n_te l10n_th l10n_tl l10n_tr l10n_trs l10n_uk l10n_ur l10n_uz l10n_vi l10n_xh l10n_zh-CN l10n_zh-TW pgo +LICENSE=MPL-2.0 GPL-2 LGPL-2.1 +RDEPEND=>=dev-libs/nss-3.59 >=dev-libs/nspr-4.29 dev-libs/atk dev-libs/expat >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 >=x11-libs/gtk+-3.4.0:3[X] x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.35:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) virtual/freedesktop-icon-theme >=x11-libs/pixman-0.19.2 >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=dev-libs/libffi-3.0.10:= media-video/ffmpeg x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt dbus? ( sys-apps/dbus dev-libs/dbus-glib ) screencast? ( media-video/pipewire:0/0.3 ) system-av1? ( >=media-libs/dav1d-0.3.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-libs/harfbuzz-2.6.8:0= >=media-gfx/graphite2-1.3.13 ) system-icu? ( >=dev-libs/icu-67.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0=[threads] ) system-libvpx? ( >=media-libs/libvpx-1.8.2:0=[postproc] ) system-webp? ( >=media-libs/libwebp-1.1.0:0= ) wifi? ( kernel_linux? ( sys-apps/dbus dev-libs/dbus-glib net-misc/networkmanager ) ) jack? ( virtual/jack ) selinux? ( sec-policy/selinux-mozilla ) jack? ( virtual/jack ) openh264? ( media-libs/openh264:*[plugin] ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.12-r4 ) ) selinux? ( sec-policy/selinux-mozilla ) +REQUIRED_USE=debug? ( !system-av1 ) screencast? ( wayland ) +SLOT=0/84 +SRC_URI=https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/source/firefox-84.0.source.tar.xz -> firefox-84.0_rc2.source.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-84-patches-02.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-84-patches-02.tar.xz https://dev.gentoo.org/~whissi/mozilla/patchsets/firefox-84-patches-02.tar.xz l10n_ach? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/ach.xpi -> firefox-84.0_rc2-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/af.xpi -> firefox-84.0_rc2-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/an.xpi -> firefox-84.0_rc2-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/ar.xpi -> firefox-84.0_rc2-ar.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/ast.xpi -> firefox-84.0_rc2-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/az.xpi -> firefox-84.0_rc2-az.xpi ) l10n_be? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/be.xpi -> firefox-84.0_rc2-be.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/bg.xpi -> firefox-84.0_rc2-bg.xpi ) l10n_bn? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/bn.xpi -> firefox-84.0_rc2-bn.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/br.xpi -> firefox-84.0_rc2-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/bs.xpi -> firefox-84.0_rc2-bs.xpi ) l10n_ca-valencia? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/ca-valencia.xpi -> firefox-84.0_rc2-ca-valencia.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/ca.xpi -> firefox-84.0_rc2-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/cak.xpi -> firefox-84.0_rc2-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/cs.xpi -> firefox-84.0_rc2-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/cy.xpi -> firefox-84.0_rc2-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/da.xpi -> firefox-84.0_rc2-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/de.xpi -> firefox-84.0_rc2-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/dsb.xpi -> firefox-84.0_rc2-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/el.xpi -> firefox-84.0_rc2-el.xpi ) l10n_en-CA? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/en-CA.xpi -> firefox-84.0_rc2-en-CA.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/en-GB.xpi -> firefox-84.0_rc2-en-GB.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/eo.xpi -> firefox-84.0_rc2-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/es-AR.xpi -> firefox-84.0_rc2-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/es-CL.xpi -> firefox-84.0_rc2-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/es-ES.xpi -> firefox-84.0_rc2-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/es-MX.xpi -> firefox-84.0_rc2-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/et.xpi -> firefox-84.0_rc2-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/eu.xpi -> firefox-84.0_rc2-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/fa.xpi -> firefox-84.0_rc2-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/ff.xpi -> firefox-84.0_rc2-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/fi.xpi -> firefox-84.0_rc2-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/fr.xpi -> firefox-84.0_rc2-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/fy-NL.xpi -> firefox-84.0_rc2-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/ga-IE.xpi -> firefox-84.0_rc2-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/gd.xpi -> firefox-84.0_rc2-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/gl.xpi -> firefox-84.0_rc2-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/gn.xpi -> firefox-84.0_rc2-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/gu-IN.xpi -> firefox-84.0_rc2-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/he.xpi -> firefox-84.0_rc2-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/hi-IN.xpi -> firefox-84.0_rc2-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/hr.xpi -> firefox-84.0_rc2-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/hsb.xpi -> firefox-84.0_rc2-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/hu.xpi -> firefox-84.0_rc2-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/hy-AM.xpi -> firefox-84.0_rc2-hy-AM.xpi ) l10n_ia? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/ia.xpi -> firefox-84.0_rc2-ia.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/id.xpi -> firefox-84.0_rc2-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/is.xpi -> firefox-84.0_rc2-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/it.xpi -> firefox-84.0_rc2-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/ja.xpi -> firefox-84.0_rc2-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/ka.xpi -> firefox-84.0_rc2-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/kab.xpi -> firefox-84.0_rc2-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/kk.xpi -> firefox-84.0_rc2-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/km.xpi -> firefox-84.0_rc2-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/kn.xpi -> firefox-84.0_rc2-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/ko.xpi -> firefox-84.0_rc2-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/lij.xpi -> firefox-84.0_rc2-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/lt.xpi -> firefox-84.0_rc2-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/lv.xpi -> firefox-84.0_rc2-lv.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/mk.xpi -> firefox-84.0_rc2-mk.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/mr.xpi -> firefox-84.0_rc2-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/ms.xpi -> firefox-84.0_rc2-ms.xpi ) l10n_my? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/my.xpi -> firefox-84.0_rc2-my.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/nb-NO.xpi -> firefox-84.0_rc2-nb-NO.xpi ) l10n_ne? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/ne-NP.xpi -> firefox-84.0_rc2-ne-NP.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/nl.xpi -> firefox-84.0_rc2-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/nn-NO.xpi -> firefox-84.0_rc2-nn-NO.xpi ) l10n_oc? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/oc.xpi -> firefox-84.0_rc2-oc.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/pa-IN.xpi -> firefox-84.0_rc2-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/pl.xpi -> firefox-84.0_rc2-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/pt-BR.xpi -> firefox-84.0_rc2-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/pt-PT.xpi -> firefox-84.0_rc2-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/rm.xpi -> firefox-84.0_rc2-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/ro.xpi -> firefox-84.0_rc2-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/ru.xpi -> firefox-84.0_rc2-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/si.xpi -> firefox-84.0_rc2-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/sk.xpi -> firefox-84.0_rc2-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/sl.xpi -> firefox-84.0_rc2-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/son.xpi -> firefox-84.0_rc2-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/sq.xpi -> firefox-84.0_rc2-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/sr.xpi -> firefox-84.0_rc2-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/sv-SE.xpi -> firefox-84.0_rc2-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/ta.xpi -> firefox-84.0_rc2-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/te.xpi -> firefox-84.0_rc2-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/th.xpi -> firefox-84.0_rc2-th.xpi ) l10n_tl? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/tl.xpi -> firefox-84.0_rc2-tl.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/tr.xpi -> firefox-84.0_rc2-tr.xpi ) l10n_trs? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/trs.xpi -> firefox-84.0_rc2-trs.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/uk.xpi -> firefox-84.0_rc2-uk.xpi ) l10n_ur? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/ur.xpi -> firefox-84.0_rc2-ur.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/uz.xpi -> firefox-84.0_rc2-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/vi.xpi -> firefox-84.0_rc2-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/xh.xpi -> firefox-84.0_rc2-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/zh-CN.xpi -> firefox-84.0_rc2-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/candidates/84.0-candidates/build2/linux-x86_64/xpi/zh-TW.xpi -> firefox-84.0_rc2-zh-TW.xpi ) +_eclasses_=autotools 3ec5e49b810b2571ca9c6d76f55867bb check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 llvm 21d8c0949a2693d7109cc6a25fabfcaf multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils a41d1fd1c111289ffa04490de6ee79d7 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=05c4b5760d7add45da3fe0a8b73f5d8d diff --git a/metadata/md5-cache/www-client/google-chrome-unstable-89.0.4343.0 b/metadata/md5-cache/www-client/google-chrome-unstable-89.0.4350.4 similarity index 97% rename from metadata/md5-cache/www-client/google-chrome-unstable-89.0.4343.0 rename to metadata/md5-cache/www-client/google-chrome-unstable-89.0.4350.4 index 315a63b2f36c..74100ad1a6de 100644 --- a/metadata/md5-cache/www-client/google-chrome-unstable-89.0.4343.0 +++ b/metadata/md5-cache/www-client/google-chrome-unstable-89.0.4350.4 @@ -8,6 +8,6 @@ LICENSE=google-chrome RDEPEND=app-accessibility/at-spi2-atk:2 app-accessibility/at-spi2-core:2 app-arch/bzip2 app-misc/ca-certificates dev-libs/atk dev-libs/expat dev-libs/glib:2 dev-libs/nspr >=dev-libs/nss-3.26 dev-libs/wayland media-libs/alsa-lib media-libs/fontconfig media-libs/freetype:2 media-libs/mesa[gbm] net-print/cups sys-apps/dbus sys-libs/libcap x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:3[X] x11-libs/libdrm >=x11-libs/libX11-1.5.0 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libXtst x11-libs/libxcb x11-libs/libxkbcommon x11-libs/pango x11-misc/xdg-utils selinux? ( sec-policy/selinux-chromium ) RESTRICT=bindist mirror strip SLOT=0 -SRC_URI=https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_89.0.4343.0-1_amd64.deb +SRC_URI=https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_89.0.4350.4-1_amd64.deb _eclasses_=chromium-2 199d6bc7f8b84ac7c00aca900739e570 desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib d410501a125f99ffb560b0c523cd3d1e pax-utils a41d1fd1c111289ffa04490de6ee79d7 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb unpacker 8ee8c1a2f31437d1766aac890d07a7f4 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=903fcd0fc686d87f9cfee7f611b80e74 diff --git a/metadata/md5-cache/www-client/vivaldi-snapshot-3.5.2115.71 b/metadata/md5-cache/www-client/vivaldi-snapshot-3.5.2131.8 similarity index 87% rename from metadata/md5-cache/www-client/vivaldi-snapshot-3.5.2115.71 rename to metadata/md5-cache/www-client/vivaldi-snapshot-3.5.2131.8 index 2983b9593e97..6f37418acd31 100644 --- a/metadata/md5-cache/www-client/vivaldi-snapshot-3.5.2115.71 +++ b/metadata/md5-cache/www-client/vivaldi-snapshot-3.5.2131.8 @@ -9,6 +9,6 @@ LICENSE=Vivaldi RDEPEND=dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/speex net-print/cups sys-apps/dbus sys-libs/libcap x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:3 x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXtst x11-libs/pango[X] proprietary-codecs? ( media-video/ffmpeg:0/56.58.58[chromium(-)] ) widevine? ( www-plugins/chrome-binary-plugins ) RESTRICT=bindist mirror SLOT=0 -SRC_URI=amd64? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_3.5.2115.71-1_amd64.deb ) arm64? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_3.5.2115.71-1_arm64.deb ) arm? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_3.5.2115.71-1_armhf.deb ) x86? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_3.5.2115.71-1_i386.deb ) +SRC_URI=amd64? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_3.5.2131.8-1_amd64.deb ) arm64? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_3.5.2131.8-1_arm64.deb ) arm? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_3.5.2131.8-1_armhf.deb ) x86? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_3.5.2131.8-1_i386.deb ) _eclasses_=chromium-2 199d6bc7f8b84ac7c00aca900739e570 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb unpacker 8ee8c1a2f31437d1766aac890d07a7f4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=1dc8eec1235916ad41a36a1fd06d94b3 diff --git a/metadata/md5-cache/www-plugins/Manifest.gz b/metadata/md5-cache/www-plugins/Manifest.gz index de4dfdbb877b..85862d7b80fd 100644 Binary files a/metadata/md5-cache/www-plugins/Manifest.gz and b/metadata/md5-cache/www-plugins/Manifest.gz differ diff --git a/metadata/md5-cache/www-plugins/chrome-binary-plugins-89.0.4343.0_alpha b/metadata/md5-cache/www-plugins/chrome-binary-plugins-89.0.4350.4_alpha similarity index 91% rename from metadata/md5-cache/www-plugins/chrome-binary-plugins-89.0.4343.0_alpha rename to metadata/md5-cache/www-plugins/chrome-binary-plugins-89.0.4350.4_alpha index 5c0c434f410a..db59d89665b3 100644 --- a/metadata/md5-cache/www-plugins/chrome-binary-plugins-89.0.4343.0_alpha +++ b/metadata/md5-cache/www-plugins/chrome-binary-plugins-89.0.4350.4_alpha @@ -7,6 +7,6 @@ LICENSE=google-chrome RDEPEND=dev-libs/glib:2 dev-libs/nspr dev-libs/nss !www-plugins/chrome-binary-plugins:0 !www-plugins/chrome-binary-plugins:beta !www-plugins/chrome-binary-plugins:stable RESTRICT=bindist mirror strip SLOT=unstable -SRC_URI=https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_89.0.4343.0-1_amd64.deb +SRC_URI=https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_89.0.4350.4-1_amd64.deb _eclasses_=multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb unpacker 8ee8c1a2f31437d1766aac890d07a7f4 _md5_=3259de859b5903477401255248b093eb diff --git a/metadata/md5-cache/x11-base/Manifest.gz b/metadata/md5-cache/x11-base/Manifest.gz index d3c65bcc914e..79ebf88b8e89 100644 Binary files a/metadata/md5-cache/x11-base/Manifest.gz and b/metadata/md5-cache/x11-base/Manifest.gz differ diff --git a/metadata/md5-cache/x11-base/xorg-server-1.20.10 b/metadata/md5-cache/x11-base/xorg-server-1.20.10 index 5304a61e908c..2fa83a0ea08f 100644 --- a/metadata/md5-cache/x11-base/xorg-server-1.20.10 +++ b/metadata/md5-cache/x11-base/xorg-server-1.20.10 @@ -5,7 +5,7 @@ DESCRIPTION=X.Org X servers EAPI=7 HOMEPAGE=https://www.x.org/wiki/ https://gitlab.freedesktop.org/xorg/xserver/xorg-server IUSE=dmx kdrive wayland xephyr xnest xorg xvfb debug +elogind ipv6 libressl minimal selinux suid systemd +udev unwind xcsecurity static-libs doc -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux LICENSE=MIT PDEPEND=xorg? ( >=x11-base/xorg-drivers-1.20 ) RDEPEND=media-libs/libglvnd[X] !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) >=x11-apps/iceauth-1.0.2 >=x11-apps/rgb-1.0.3 >=x11-apps/xauth-1.0.3 x11-apps/xkbcomp >=x11-libs/libdrm-2.4.89 >=x11-libs/libpciaccess-0.12.901 >=x11-libs/libXau-1.0.4 >=x11-libs/libXdmcp-1.0.2 >=x11-libs/libXfont2-2.0.1 >=x11-libs/libxkbfile-1.0.4 >=x11-libs/libxshmfence-1.1 >=x11-libs/pixman-0.27.2 >=x11-libs/xtrans-1.3.5 >=x11-misc/xbitmaps-1.0.1 >=x11-misc/xkeyboard-config-2.4.1-r3 dmx? ( x11-libs/libXt >=x11-libs/libdmx-1.0.99.1 >=x11-libs/libX11-1.1.5 >=x11-libs/libXaw-1.0.4 >=x11-libs/libXext-1.0.99.4 >=x11-libs/libXfixes-5.0 >=x11-libs/libXi-1.2.99.1 >=x11-libs/libXmu-1.0.3 x11-libs/libXrender >=x11-libs/libXres-1.0.3 >=x11-libs/libXtst-1.0.99.2 ) kdrive? ( >=x11-libs/libXext-1.0.5 x11-libs/libXv ) xephyr? ( x11-libs/libxcb[xkb] x11-libs/xcb-util x11-libs/xcb-util-image x11-libs/xcb-util-keysyms x11-libs/xcb-util-renderutil x11-libs/xcb-util-wm ) !minimal? ( >=x11-libs/libX11-1.1.5 >=x11-libs/libXext-1.0.5 >=media-libs/mesa-18[X(+),egl,gbm] >=media-libs/libepoxy-1.5.4[X,egl(+)] ) udev? ( virtual/libudev:= ) unwind? ( sys-libs/libunwind ) wayland? ( >=dev-libs/wayland-1.3.0 >=media-libs/libepoxy-1.5.4[egl(+)] >=dev-libs/wayland-protocols-1.18 ) >=x11-apps/xinit-1.3.3-r1 systemd? ( sys-apps/dbus sys-apps/systemd ) elogind? ( sys-apps/dbus sys-auth/elogind[pam] sys-auth/pambase[elogind] ) !!x11-drivers/nvidia-drivers[-libglvnd(-)] selinux? ( sec-policy/selinux-xserver ) @@ -13,4 +13,4 @@ REQUIRED_USE=!minimal? ( || ( dmx kdrive wayland xephyr xnest xorg xvfb ) ) elog SLOT=0/1.20.10 SRC_URI=https://www.x.org/releases/individual/xserver/xorg-server-1.20.10.tar.bz2 _eclasses_=autotools 3ec5e49b810b2571ca9c6d76f55867bb edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xorg-3 5b0ceb032e8a8d1eefb9343124ed2c50 -_md5_=72155c84e270cb49135b33279fea8c24 +_md5_=0388c9a57e945f2eab99600853a76eec diff --git a/metadata/md5-cache/x11-libs/Manifest.gz b/metadata/md5-cache/x11-libs/Manifest.gz index c5fa6387bf3a..a887432f3d04 100644 Binary files a/metadata/md5-cache/x11-libs/Manifest.gz and b/metadata/md5-cache/x11-libs/Manifest.gz differ diff --git a/metadata/md5-cache/x11-libs/gdk-pixbuf-2.42.2 b/metadata/md5-cache/x11-libs/gdk-pixbuf-2.42.2 index 4e387266203a..73664f49c4c0 100644 --- a/metadata/md5-cache/x11-libs/gdk-pixbuf-2.42.2 +++ b/metadata/md5-cache/x11-libs/gdk-pixbuf-2.42.2 @@ -5,10 +5,10 @@ DESCRIPTION=Image loading library for GTK+ EAPI=7 HOMEPAGE=https://git.gnome.org/browse/gdk-pixbuf IUSE=gtk-doc +introspection jpeg tiff abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=LGPL-2.1+ RDEPEND=>=dev-libs/glib-2.56.0:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-misc/shared-mime-info >=media-libs/libpng-1.4:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] jpeg? ( virtual/jpeg:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) tiff? ( >=media-libs/tiff-3.9.2:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) introspection? ( >=dev-libs/gobject-introspection-1.54:= ) !=x11-libs/gdk-pixbuf-2.42.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] SLOT=0 SRC_URI=mirror://gnome/sources/gdk-pixbuf-xlib/2.40/gdk-pixbuf-xlib-2.40.2.tar.xz _eclasses_=gnome.org 532d56d07b9eace4831aaa817d2b756a meson 71d293a701d6362387e1214da368c848 multibuild b2c915190b051f55a23b9354b9849847 multilib d410501a125f99ffb560b0c523cd3d1e multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=be900be77636cdb5afe8a98ede8587a6 +_md5_=dc98c4e09475e589a518fcf2367cc2af diff --git a/metadata/md5-cache/x11-misc/Manifest.gz b/metadata/md5-cache/x11-misc/Manifest.gz index 04c93f25bcfe..5e8f7cb328ce 100644 Binary files a/metadata/md5-cache/x11-misc/Manifest.gz and b/metadata/md5-cache/x11-misc/Manifest.gz differ diff --git a/metadata/md5-cache/x11-misc/notification-daemon-3.20.0-r1 b/metadata/md5-cache/x11-misc/notification-daemon-3.20.0-r1 index b53f2bcedaac..856b01bf1e8c 100644 --- a/metadata/md5-cache/x11-misc/notification-daemon-3.20.0-r1 +++ b/metadata/md5-cache/x11-misc/notification-daemon-3.20.0-r1 @@ -4,10 +4,10 @@ DEPEND=>=dev-libs/glib-2.28:2 >=x11-libs/gtk+-3.19.5:3[X] sys-apps/dbus x11-libs DESCRIPTION=Notification daemon EAPI=7 HOMEPAGE=https://gitlab.gnome.org/GNOME/notification-daemon/ -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.28:2 >=x11-libs/gtk+-3.19.5:3[X] sys-apps/dbus x11-libs/libX11 !x11-misc/notify-osd SLOT=0 SRC_URI=mirror://gnome/sources/notification-daemon/3.20/notification-daemon-3.20.0.tar.xz _eclasses_=gnome.org 532d56d07b9eace4831aaa817d2b756a -_md5_=af1cd36326b26e17e80ffc224c3c553c +_md5_=0b43673ea5aeeb9909c8a059262c6a78 diff --git a/metadata/md5-cache/x11-misc/x11vnc-0.9.16-r4 b/metadata/md5-cache/x11-misc/x11vnc-0.9.16-r4 index 8350682fcf69..54297cda2838 100644 --- a/metadata/md5-cache/x11-misc/x11vnc-0.9.16-r4 +++ b/metadata/md5-cache/x11-misc/x11vnc-0.9.16-r4 @@ -5,10 +5,10 @@ DESCRIPTION=VNC server for real X displays EAPI=7 HOMEPAGE=https://libvnc.github.io/ IUSE=crypt fbcon libressl ssl +xcomposite +xdamage +xfixes xinerama +xrandr zeroconf -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2+-with-openssl-exception RDEPEND=>=net-libs/libvncserver-0.9.8[ssl=] x11-libs/libX11 x11-libs/libXcursor x11-libs/libXext >=x11-libs/libXtst-1.1.0 ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:= ) ) xcomposite? ( x11-libs/libXcomposite ) xdamage? ( x11-libs/libXdamage ) xfixes? ( x11-libs/libXfixes ) xinerama? ( x11-libs/libXinerama ) xrandr? ( x11-libs/libXrandr ) zeroconf? ( >=net-dns/avahi-0.6.4 ) dev-lang/tk:0 SLOT=0 SRC_URI=https://github.com/LibVNC/x11vnc/archive/0.9.16.tar.gz -> x11vnc-0.9.16.tar.gz _eclasses_=autotools 3ec5e49b810b2571ca9c6d76f55867bb libtool f143db5a74ccd9ca28c1234deffede96 multilib d410501a125f99ffb560b0c523cd3d1e toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=f4b0ff921c0a177bb0b3ecea1eca2bc9 +_md5_=961bceb23056f65ace5d2fd53cfe0e0e diff --git a/metadata/md5-cache/x11-terms/Manifest.gz b/metadata/md5-cache/x11-terms/Manifest.gz index c3e8fc9c5eb1..dd3814347ffa 100644 Binary files a/metadata/md5-cache/x11-terms/Manifest.gz and b/metadata/md5-cache/x11-terms/Manifest.gz differ diff --git a/metadata/md5-cache/x11-terms/guake-3.7.0 b/metadata/md5-cache/x11-terms/guake-3.7.0 index 8395c78af85c..7f2efad2b682 100644 --- a/metadata/md5-cache/x11-terms/guake-3.7.0 +++ b/metadata/md5-cache/x11-terms/guake-3.7.0 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test DEPEND=dev-libs/glib dev-libs/keybinder:3[introspection] python_single_target_python3_6? ( dev-python/dbus-python[python_targets_python3_6(-)] dev-python/pbr[python_targets_python3_6(-)] dev-python/pycairo[python_targets_python3_6(-)] dev-python/pygobject:3[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/dbus-python[python_targets_python3_7(-)] dev-python/pbr[python_targets_python3_7(-)] dev-python/pycairo[python_targets_python3_7(-)] dev-python/pygobject:3[python_targets_python3_7(-)] ) x11-libs/libnotify[introspection] x11-libs/libwnck:3[introspection] x11-libs/vte:2.91[introspection] utempter? ( sys-libs/libutempter ) gnome-base/gsettings-desktop-schemas sys-devel/gettext sys-devel/make DESCRIPTION=Drop-down terminal for GNOME EAPI=7 -HOMEPAGE=https://github.com/Guake/guake https://pypi.org/project/Guake +HOMEPAGE=https://github.com/Guake/guake/ https://pypi.org/project/guake/ IUSE=utempter python_single_target_python3_6 python_single_target_python3_7 KEYWORDS=amd64 arm x86 LICENSE=GPL-2 @@ -12,4 +12,4 @@ REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 SLOT=0 SRC_URI=mirror://pypi/g/guake/guake-3.7.0.tar.gz _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e gnome2-utils c8e3fff820d850c0e003e22208d2eea3 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=07645a8c76d789615e26c7d7c92a6b9b +_md5_=ee653f8026c2c02d807dc3267d64c6d1 diff --git a/metadata/md5-cache/x11-terms/guake-9999 b/metadata/md5-cache/x11-terms/guake-9999 index a5fcb5447b1d..357e70a80114 100644 --- a/metadata/md5-cache/x11-terms/guake-9999 +++ b/metadata/md5-cache/x11-terms/guake-9999 @@ -3,7 +3,7 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpa DEPEND=dev-libs/glib dev-libs/keybinder:3[introspection] python_single_target_python3_6? ( dev-python/dbus-python[python_targets_python3_6(-)] dev-python/pbr[python_targets_python3_6(-)] dev-python/pycairo[python_targets_python3_6(-)] dev-python/pygobject:3[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/dbus-python[python_targets_python3_7(-)] dev-python/pbr[python_targets_python3_7(-)] dev-python/pycairo[python_targets_python3_7(-)] dev-python/pygobject:3[python_targets_python3_7(-)] ) x11-libs/libnotify[introspection] x11-libs/libwnck:3[introspection] x11-libs/vte:2.91[introspection] utempter? ( sys-libs/libutempter ) gnome-base/gsettings-desktop-schemas sys-devel/gettext sys-devel/make DESCRIPTION=Drop-down terminal for GNOME EAPI=7 -HOMEPAGE=https://github.com/Guake/guake https://pypi.org/project/Guake +HOMEPAGE=https://github.com/Guake/guake/ https://pypi.org/project/guake/ IUSE=utempter python_single_target_python3_6 python_single_target_python3_7 LICENSE=GPL-2 PROPERTIES=live @@ -11,4 +11,4 @@ RDEPEND=dev-libs/glib dev-libs/keybinder:3[introspection] python_single_target_p REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 ) SLOT=0 _eclasses_=distutils-r1 6492ae184ebb9d8124e5e0b23db93433 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e git-r3 3e7ec3d6619213460c85e2aa48398441 gnome2-utils c8e3fff820d850c0e003e22208d2eea3 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib d410501a125f99ffb560b0c523cd3d1e multiprocessing cac3169468f893670dac3e7cb940e045 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=f5f6556fed4240ce058d984e503765c1 +_md5_=03a4c32768bae20c95df776409e32ac9 diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index d1952f4ca9fc..3ea7e3ff6b67 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Fri, 11 Dec 2020 05:08:28 +0000 +Sat, 12 Dec 2020 08:38:32 +0000 diff --git a/metadata/projects.xml b/metadata/projects.xml index 08373a4657cf..49e0ed85ea02 100644 --- a/metadata/projects.xml +++ b/metadata/projects.xml @@ -5,7 +5,7 @@ 3dprint@gentoo.org 3D Print https://wiki.gentoo.org/wiki/Project:3dprint - Packages for 3d printing. + The 3D Print Project handles all 3d print related activities in Gentoo. alexxy@gentoo.org Alexey Shvetsov diff --git a/metadata/timestamp b/metadata/timestamp index 33c4e6f469fe..11454a20bc08 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Fri Dec 11 05:08:28 AM UTC 2020 +Sat Dec 12 08:38:31 AM UTC 2020 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index bf8cd5de8c50..456a87f66393 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Fri, 11 Dec 2020 05:30:01 +0000 +Sat, 12 Dec 2020 09:00:01 +0000 diff --git a/metadata/timestamp.commit b/metadata/timestamp.commit index 35f5717cb229..345f884380b2 100644 --- a/metadata/timestamp.commit +++ b/metadata/timestamp.commit @@ -1 +1 @@ -0e50d5f2d7a0c95c889f13b091dd39a652553258 1607657084 2020-12-11T03:24:44+00:00 +b75adffb42822e75a6e3e4c5b7ad02258134b221 1607761996 2020-12-12T08:33:16+00:00 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index 64dabdeb5da4..bd0bcc2a2d0d 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1607663101 Fri 11 Dec 2020 05:05:01 AM UTC +1607762101 Sat 12 Dec 2020 08:35:01 AM UTC diff --git a/metadata/xml-schema/timestamp.chk b/metadata/xml-schema/timestamp.chk index d1952f4ca9fc..3ea7e3ff6b67 100644 --- a/metadata/xml-schema/timestamp.chk +++ b/metadata/xml-schema/timestamp.chk @@ -1 +1 @@ -Fri, 11 Dec 2020 05:08:28 +0000 +Sat, 12 Dec 2020 08:38:32 +0000 diff --git a/net-dns/Manifest.gz b/net-dns/Manifest.gz index 72a87a0e4d88..c3d9ba5c77b6 100644 Binary files a/net-dns/Manifest.gz and b/net-dns/Manifest.gz differ diff --git a/net-dns/unbound/unbound-1.13.0.ebuild b/net-dns/unbound/unbound-1.13.0.ebuild index c37b3aa8c5e2..b899f7ff0e35 100644 --- a/net-dns/unbound/unbound-1.13.0.ebuild +++ b/net-dns/unbound/unbound-1.13.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://nlnetlabs.nl/downloads/unbound/${MY_P}.tar.gz" LICENSE="BSD GPL-2" SLOT="0/8" # ABI version of libunbound.so -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 x86" +KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~mips ~ppc ~ppc64 x86" IUSE="debug dnscrypt dnstap +ecdsa ecs gost +http2 libressl python redis selinux static-libs systemd test threads" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" RESTRICT="!test? ( test )" diff --git a/net-im/Manifest.gz b/net-im/Manifest.gz index 390f812279b6..5897a85f3e62 100644 Binary files a/net-im/Manifest.gz and b/net-im/Manifest.gz differ diff --git a/net-im/skypeforlinux/Manifest b/net-im/skypeforlinux/Manifest index 94628670a0ef..5e0cade92ad2 100644 --- a/net-im/skypeforlinux/Manifest +++ b/net-im/skypeforlinux/Manifest @@ -1 +1,2 @@ DIST skypeforlinux_8.66.0.74-1.x86_64.rpm 115074997 BLAKE2B 84b1ff85d3be0279879bd0d53eec4ead09170806f726c1dd81c91a9348d9d4c72486f50b3917b263814c0215411f9a9ee1fd3eb356a930e29d1ee550d811eb24 SHA512 db10e658f977b6293150252cd0018baaf17ed1d64978f3b7b171309921928de0cef275cec15819e38a9c3be47101067070695311ef63fa5fa47cf9ba95e9af45 +DIST skypeforlinux_8.67.0.87-1.x86_64.rpm 113618026 BLAKE2B e6b69afba83848b25f1e3d9588f6b9950e28a21ec5d99aa3f6ee2438b66f03e80bf106424d5f970a273276e7d588e8e55adf1012e3839076ffcbf834c5649b03 SHA512 936ba0b3d8811ce1d308bb63708a63ccdea3c5765c0631248d32cd4bfffe8ee7cc98744aaffb3ed13bdb7433d7a81cfe8e2f769c60dd232a5924681a17c5bf94 diff --git a/net-im/skypeforlinux/skypeforlinux-8.67.0.87.ebuild b/net-im/skypeforlinux/skypeforlinux-8.67.0.87.ebuild new file mode 100644 index 000000000000..c2755ee5b06c --- /dev/null +++ b/net-im/skypeforlinux/skypeforlinux-8.67.0.87.ebuild @@ -0,0 +1,98 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MULTILIB_COMPAT=( abi_x86_64 ) + +inherit chromium-2 desktop pax-utils rpm multilib-build xdg + +DESCRIPTION="Instant messaging client, with support for audio and video" +HOMEPAGE="https://www.skype.com/" +SRC_URI="https://repo.skype.com/rpm/stable/${PN}_${PV}-1.x86_64.rpm" + +LICENSE="Skype-TOS MIT MIT-with-advertising BSD-1 BSD-2 BSD Apache-2.0 Boost-1.0 ISC CC-BY-SA-3.0 CC0-1.0 openssl ZLIB APSL-2 icu Artistic-2 LGPL-2.1" +SLOT="0" +KEYWORDS="-* ~amd64" + +S="${WORKDIR}" +QA_PREBUILT="*" +RESTRICT="mirror bindist strip" #299368 + +RDEPEND=" + app-crypt/libsecret[${MULTILIB_USEDEP}] + dev-libs/atk[${MULTILIB_USEDEP}] + dev-libs/expat[${MULTILIB_USEDEP}] + dev-libs/glib:2[${MULTILIB_USEDEP}] + dev-libs/nspr[${MULTILIB_USEDEP}] + dev-libs/nss[${MULTILIB_USEDEP}] + media-libs/alsa-lib[${MULTILIB_USEDEP}] + media-libs/fontconfig:1.0[${MULTILIB_USEDEP}] + media-libs/freetype:2[${MULTILIB_USEDEP}] + media-libs/libv4l[${MULTILIB_USEDEP}] + net-print/cups[${MULTILIB_USEDEP}] + sys-apps/dbus[${MULTILIB_USEDEP}] + sys-devel/gcc[cxx] + virtual/ttf-fonts + x11-libs/cairo[${MULTILIB_USEDEP}] + x11-libs/gdk-pixbuf:2[${MULTILIB_USEDEP}] + x11-libs/gtk+:3[${MULTILIB_USEDEP}] + x11-libs/libX11[${MULTILIB_USEDEP}] + x11-libs/libXScrnSaver[${MULTILIB_USEDEP}] + x11-libs/libXcomposite[${MULTILIB_USEDEP}] + x11-libs/libXcursor[${MULTILIB_USEDEP}] + x11-libs/libXdamage[${MULTILIB_USEDEP}] + x11-libs/libXext[${MULTILIB_USEDEP}] + x11-libs/libXfixes[${MULTILIB_USEDEP}] + x11-libs/libXi[${MULTILIB_USEDEP}] + x11-libs/libXrandr[${MULTILIB_USEDEP}] + x11-libs/libXrender[${MULTILIB_USEDEP}] + x11-libs/libXtst[${MULTILIB_USEDEP}] + x11-libs/libxcb[${MULTILIB_USEDEP}] + x11-libs/libxkbfile[${MULTILIB_USEDEP}] + x11-libs/pango[${MULTILIB_USEDEP}]" + +pkg_setup() { + chromium_suid_sandbox_check_kernel_config +} + +src_unpack() { + rpm_src_unpack ${A} +} + +src_prepare() { + default + sed -e "s!^SKYPE_PATH=.*!SKYPE_PATH=${EPREFIX}/opt/skypeforlinux/skypeforlinux!" \ + -i usr/bin/skypeforlinux || die + sed -e "s!^Categories=.*!Categories=Network;InstantMessaging;Telephony;!" \ + -e "/^OnlyShowIn=/d" \ + -i usr/share/applications/skypeforlinux.desktop || die +} + +src_install() { + dodir /opt + cp -a usr/share/skypeforlinux "${ED}"/opt || die + + # remove chrome-sandbox binary, users should use kernel namespaces + # https://bugs.gentoo.org/692692#c18 + rm "${ED}"/opt/skypeforlinux/chrome-sandbox || die + + dobin usr/bin/skypeforlinux + + dodoc usr/share/skypeforlinux/*.html + dodoc -r usr/share/doc/skypeforlinux/. + # symlink required for the "Help->3rd Party Notes" menu entry (otherwise frozen skype -> xdg-open) + dosym ${PF} usr/share/doc/skypeforlinux + + doicon usr/share/pixmaps/skypeforlinux.png + + local res + for res in 16 32 256 512; do + newicon -s ${res} usr/share/icons/hicolor/${res}x${res}/apps/skypeforlinux.png skypeforlinux.png + done + + domenu usr/share/applications/skypeforlinux.desktop + + pax-mark -m "${ED}"/opt/skypeforlinux/skypeforlinux + pax-mark -m "${ED}"/opt/skypeforlinux/resources/app.asar.unpacked/node_modules/slimcore/bin/slimcore.node +} diff --git a/net-im/zoom/zoom-5.4.56259.1207-r1.ebuild b/net-im/zoom/zoom-5.4.56259.1207-r2.ebuild similarity index 93% rename from net-im/zoom/zoom-5.4.56259.1207-r1.ebuild rename to net-im/zoom/zoom-5.4.56259.1207-r2.ebuild index 7387cd5dde5d..6150b8810934 100644 --- a/net-im/zoom/zoom-5.4.56259.1207-r1.ebuild +++ b/net-im/zoom/zoom-5.4.56259.1207-r2.ebuild @@ -64,8 +64,9 @@ src_prepare() { default # The tarball doesn't contain an icon, so extract it from the binary - bbe -s -b '/\n/' -e 'J 1;D' zoom >zoom.svg \ - && [[ -s zoom.svg ]] || die "Extraction of icon failed" + bbe -s -b '/\n/' -e 'J 1;D' zoom \ + >zoom-videocam.svg && [[ -s zoom-videocam.svg ]] \ + || die "Extraction of icon failed" if ! use pulseaudio; then # For some strange reason, zoom cannot use any ALSA sound devices if @@ -113,10 +114,10 @@ src_install() { fi make_wrapper zoom /opt/zoom{/zoom,} $(usex bundled-qt /opt/zoom "") - make_desktop_entry "zoom %U" Zoom zoom "" \ + make_desktop_entry "zoom %U" Zoom zoom-videocam "" \ "MimeType=x-scheme-handler/zoommtg;application/x-zoom;" - doicon zoom.svg - doicon -s scalable zoom.svg + doicon zoom-videocam.svg + doicon -s scalable zoom-videocam.svg readme.gentoo_create_doc } diff --git a/net-libs/Manifest.gz b/net-libs/Manifest.gz index 04b3ef56b741..4f353f908e87 100644 Binary files a/net-libs/Manifest.gz and b/net-libs/Manifest.gz differ diff --git a/net-libs/ldns/ldns-1.7.1-r2.ebuild b/net-libs/ldns/ldns-1.7.1-r2.ebuild new file mode 100644 index 000000000000..db38abaf3b40 --- /dev/null +++ b/net-libs/ldns/ldns-1.7.1-r2.ebuild @@ -0,0 +1,116 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python3_{6,7,8} ) +inherit eutils multilib-minimal python-single-r1 + +DESCRIPTION="a library with the aim to simplify DNS programming in C" +HOMEPAGE="http://www.nlnetlabs.nl/projects/ldns/" +SRC_URI="http://www.nlnetlabs.nl/downloads/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/3" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-macos ~x64-macos ~x64-solaris" +IUSE="+dane doc +ecdsa ed25519 ed448 gost libressl python static-libs vim-syntax" + +# configure will die if ecdsa is enabled and ssl is not +REQUIRED_USE=" + python? ( ${PYTHON_REQUIRED_USE} ) + ed25519? ( !libressl ) + ed448? ( !libressl ) +" + +RDEPEND=" + python? ( ${PYTHON_DEPS} ) + ecdsa? ( + !libressl? ( >=dev-libs/openssl-1.0.1e:0=[-bindist,${MULTILIB_USEDEP}] ) + ) + ed25519? ( + !libressl? ( >=dev-libs/openssl-1.1.0:0=[-bindist,${MULTILIB_USEDEP}] ) + ) + ed448? ( + !libressl? ( >=dev-libs/openssl-1.1.1:0=[-bindist,${MULTILIB_USEDEP}] ) + ) + !libressl? ( >=dev-libs/openssl-1.0.1e:0=[${MULTILIB_USEDEP}] ) + libressl? ( dev-libs/libressl[${MULTILIB_USEDEP}] ) +" +DEPEND="${RDEPEND} + python? ( dev-lang/swig ) + doc? ( app-doc/doxygen ) +" + +RESTRICT="test" # 1.6.9 has no test directory + +MULTILIB_CHOST_TOOLS=( + /usr/bin/ldns-config +) + +pkg_setup() { + use python && python-single-r1_pkg_setup +} + +multilib_src_configure() { + # >=openssl-1.1.0 required for dane-ta + if has_version " - -zx2c4@gentoo.org -Jason A. Donenfeld - + + zx2c4@gentoo.org + Jason A. Donenfeld + + + b4 + diff --git a/net-mail/onionrouter/metadata.xml b/net-mail/onionrouter/metadata.xml index fbb8d54dbc4d..9f241814ad72 100644 --- a/net-mail/onionrouter/metadata.xml +++ b/net-mail/onionrouter/metadata.xml @@ -5,4 +5,8 @@ candrews@gentoo.org Craig Andrews + + onionrouter + ehloonion/onionrouter + diff --git a/net-misc/Manifest.gz b/net-misc/Manifest.gz index 2b730b05c253..2a2740bbb00e 100644 Binary files a/net-misc/Manifest.gz and b/net-misc/Manifest.gz differ diff --git a/net-misc/curl/curl-7.74.0-r1.ebuild b/net-misc/curl/curl-7.74.0-r2.ebuild similarity index 99% rename from net-misc/curl/curl-7.74.0-r1.ebuild rename to net-misc/curl/curl-7.74.0-r2.ebuild index 49f1ca41252d..136d703e83b2 100644 --- a/net-misc/curl/curl-7.74.0-r1.ebuild +++ b/net-misc/curl/curl-7.74.0-r2.ebuild @@ -195,7 +195,6 @@ multilib_src_configure() { $(use_enable imap) \ $(use_enable ldap) \ $(use_enable ldap ldaps) \ - --disable-mqtt \ --disable-ntlm-wb \ $(use_enable pop3) \ --enable-rt \ @@ -211,7 +210,6 @@ multilib_src_configure() { --enable-dateparse \ --enable-dnsshuffle \ --enable-doh \ - --disable-get-easy-options \ --enable-hidden-symbols \ --enable-http-auth \ $(use_enable ipv6) \ diff --git a/net-misc/remmina/Manifest b/net-misc/remmina/Manifest index ecb7a16d3206..33ac4b91541a 100644 --- a/net-misc/remmina/Manifest +++ b/net-misc/remmina/Manifest @@ -1,2 +1,3 @@ +DIST Remmina-v1.4.10.tar.gz 2072202 BLAKE2B 38b6a3cca9b5956a252d4d4433910d46d0d36a2232a2a107b1e556f118f3b1a6d3c02b0bea26a39a52d572c1380dbb5bdac1acd8d6ba07c97b9acc9a64a9142f SHA512 89fed0b0ed17ac1db57a1d9ad33b80f4d17f6cfb4ff7db9b6434d9d4dabf708971e4d93dd573dbf606d1899311e564f159a656223d66bc4a9d7a15a29b5b5963 DIST Remmina-v1.4.8.tar.gz 1998851 BLAKE2B 80427d06c041d6315fa8fabe90aa8a52ebd2cd1a76ab0e74672f54328d5fa9d0d287e551a5027e5ef60471ce4d934cfe745742058f26e7b93a95e2a1f85dbfd9 SHA512 cf8ea93904a1643f480d7de72bc4154570bcf184150ffc4b3b06699c95f354bc2f4f595c3b00c6c87e9797dc60bcb9993913647b2073f1e85977026f290d81bf DIST Remmina-v1.4.9.tar.gz 2033555 BLAKE2B 901e0118f8231a6bf021a0389a1db9462f19527b21954f3deba24e92e3c04d0d323efa3aeb475f0ec915e8cdc4b55cf331ba2010598e8a58567cba0f353b5177 SHA512 21c5141619874a3d90fd1e2ee9ae87dd4ca4b7dc14c0e16f06bca01b38f84db6e7ab178b0f6e9db703bf5d1ddcb17db45553786bb047cf814b1ff67f4aa6139f diff --git a/net-misc/remmina/remmina-1.4.10.ebuild b/net-misc/remmina/remmina-1.4.10.ebuild new file mode 100644 index 000000000000..9a2ee2547ae8 --- /dev/null +++ b/net-misc/remmina/remmina-1.4.10.ebuild @@ -0,0 +1,98 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake optfeature xdg + +MY_P="${PN^}-v${PV}" + +DESCRIPTION="A GTK+ RDP, SPICE, VNC, XDMCP and SSH client" +HOMEPAGE="https://remmina.org/" +SRC_URI="https://gitlab.com/Remmina/Remmina/-/archive/v${PV}/${MY_P}.tar.gz" + +LICENSE="GPL-2+-with-openssl-exception" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="appindicator crypt cups examples gnome-keyring kwallet libressl nls spice ssh rdp telemetry telepathy vnc webkit zeroconf" + +DEPEND=" + dev-libs/glib:2 + dev-libs/json-glib + dev-libs/libsodium:= + net-libs/libsoup + x11-libs/gdk-pixbuf + x11-libs/gtk+:3 + x11-libs/libX11 + x11-libs/libxkbfile + appindicator? ( dev-libs/libappindicator:3 ) + crypt? ( dev-libs/libgcrypt:0= ) + rdp? ( >=net-misc/freerdp-2.0.0_rc4_p1129[X] + =net-dns/avahi-0.8-r2[dbus,gtk] ) +" +BDEPEND=" + dev-util/intltool + virtual/pkgconfig + nls? ( sys-devel/gettext ) +" + +RDEPEND=" + ${DEPEND} + virtual/freedesktop-icon-theme +" + +DOCS=( AUTHORS CHANGELOG.md README.md THANKS.md ) + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + xdg_environment_reset + cmake_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DWITH_APPINDICATOR=$(usex appindicator) + -DWITH_GCRYPT=$(usex crypt) + -DWITH_EXAMPLES=$(usex examples) + -DWITH_LIBSECRET=$(usex gnome-keyring) + -DWITH_KF5WALLET=$(usex kwallet) + -DWITH_GETTEXT=$(usex nls) + -DWITH_TRANSLATIONS=$(usex nls) + -DWITH_FREERDP=$(usex rdp) + -DWITH_CUPS=$(usex cups) + -DWITH_SPICE=$(usex spice) + -DWITH_LIBSSH=$(usex ssh) + -DWITH_VTE=$(usex ssh) + -DWITH_TELEPATHY=$(usex telepathy) + -DWITH_LIBVNCSERVER=$(usex vnc) + -DWITH_WWW=$(usex webkit) + -DWITH_AVAHI=$(usex zeroconf) + -DWITH_NEWS=$(usex telemetry) + -DWITH_ICON_CACHE=OFF + -DWITH_UPDATE_DESKTOP_DB=OFF + ) + cmake_src_configure +} + +pkg_postinst() { + xdg_pkg_postinst + + elog "To get additional features, some optional runtime dependencies" + elog "may be installed:" + elog "" + optfeature "encrypted VNC connections" net-libs/libvncserver[gcrypt] + optfeature "XDMCP support" x11-base/xorg-server[xephyr] +} diff --git a/net-vpn/Manifest.gz b/net-vpn/Manifest.gz index e930df6e2b94..82c1b548ec73 100644 Binary files a/net-vpn/Manifest.gz and b/net-vpn/Manifest.gz differ diff --git a/net-vpn/i2p/Manifest b/net-vpn/i2p/Manifest index cfc3977e98ae..bf0384c87310 100644 --- a/net-vpn/i2p/Manifest +++ b/net-vpn/i2p/Manifest @@ -1,2 +1,2 @@ -DIST i2psource_0.9.45.tar.bz2 31921025 BLAKE2B 2d37777f77784ff93de4d7442eddf46b9a541902412bf5fb24cf96baba73851cc17d01649a7b4b41a710ccde5690036a890b8f84de00f4c615ed2e23da8fa510 SHA512 d4cf354f0a807d132fae75d4bad3e2e788e1ed03d6f625feb0f1369bb2c9e1a6e2758645acf2017c61dbc47d75e6d834b87455adbead1077f206025686548ae9 DIST i2psource_0.9.47.tar.bz2 32488438 BLAKE2B e1544475dad526e242570918c1bb967a4b713567e71201e08b73c8995743a68396b5951f477bfe8830927c0cdf7e991a25a1978d4aaf88cae3e4218ba57a8818 SHA512 7fdd9ab0b3e81aa89e73be6fa172d723c2b5a67365116a1e0e0ec948067fe4f58e3ad946a0ef4605602c0d803b98e37b2d5692a39a14cf7433d546ada204cbc9 +DIST i2psource_0.9.48.tar.bz2 33029295 BLAKE2B 8210018610d3dd8272d3c136f32048ede9446c517971be97d6588c6a1a592e9db2261077da3634fa29af28ecdb488427dd1145a731b130b75f41c3c56a8c8779 SHA512 ddfbc8f86bc2fd4012e14732493d30e292af1603d74b1f786a0ecc56a1373301ec9b3fd16fe2e37777f953053291b8efdb5510959fcf1e42d7e5f8ec87d85a8a diff --git a/net-vpn/i2p/i2p-0.9.45.ebuild b/net-vpn/i2p/i2p-0.9.48.ebuild similarity index 76% rename from net-vpn/i2p/i2p-0.9.45.ebuild rename to net-vpn/i2p/i2p-0.9.48.ebuild index 8949446a2663..23715c60adf5 100644 --- a/net-vpn/i2p/i2p-0.9.45.ebuild +++ b/net-vpn/i2p/i2p-0.9.48.ebuild @@ -19,15 +19,9 @@ RESTRICT="!test? ( test )" # dev-java/ant-core is automatically added due to java-ant-2.eclass CP_DEPEND=" - dev-java/bcprov:1.50 - dev-java/jrobin:0 - dev-java/slf4j-api:0 - dev-java/tomcat-jstl-impl:0 - dev-java/tomcat-jstl-spec:0 - dev-java/java-service-wrapper:0 dev-java/commons-logging:0 - dev-java/slf4j-simple:0 - java-virtuals/servlet-api:3.1 + dev-java/java-service-wrapper:0 + dev-java/tomcat-servlet-api:4.0 " DEPEND="${CP_DEPEND} @@ -134,7 +128,7 @@ src_install() { cd "${S}/pkg-temp" || die # we remove system installed jar and install the others - rm lib/{jrobin,wrapper,jbigi,commons-logging,javax.servlet}.jar || \ + rm lib/{commons-logging,javax.servlet,wrapper}.jar || \ die "unable to remove locally built jar already found in system" java-pkg_dojar lib/*.jar @@ -163,48 +157,3 @@ src_install() { keepdir /var/lib/i2p fowners i2p:i2p /var/lib/i2p } - -pkg_postinst() { - local old_i2pdir="${EPREFIX}/var/lib/i2p/.i2p" new_i2pdir="${EPREFIX}/var/lib/i2p" - - [ -e "${old_i2pdir}" ] || return - - elog "User is now delegated to acct-user, ${new_i2pdir} is split" - elog "into subdirs. It will now try to split ${old_i2pdir} accordingly." - - migrate() { - local dest="${1}" - shift - - local ret=true - for src - do - [ -e "${src}" ] || continue - mv "${src}" "${dest}" || ret=false - done - - $ret - } - - ebegin "Migrating" - local ret=0 - chown -R i2p:i2p "${EPREFIX}/var/lib/i2p" || ret=1 - migrate "${new_i2pdir}/app" "${old_i2pdir}/i2psnark" || ret=1 - migrate "${new_i2pdir}/config" \ - "${old_i2pdir}/"{docs,eepsite,hosts.txt,prngseed.rnd,*.config*} || - ret=1 - migrate "${new_i2pdir}/router" \ - "${old_i2pdir}/"{addressbook,eventlog.txt,hostsdb.blockfile,keyBackup,netDb,peerProfiles,router.*,rrd} || - ret=1 - migrate "${EPREFIX}/var/log/i2p" "${old_i2pdir}/"{logs/*,wrapper.log*} || - ret=1 - rm -fr "${old_i2pdir}/"{hostsdb.blockfile.*.corrupt,logs} - rmdir "${old_i2pdir}" || ret=1 - - if ! eend $ret - then - ewarn "There was some file remaining in ${old_i2pdir}." - ewarn "Please check it there is something of value there." - ewarn "remove it when migration is done." - fi -} diff --git a/profiles/Manifest.gz b/profiles/Manifest.gz index ff135bded80a..c9aa82053ed2 100644 Binary files a/profiles/Manifest.gz and b/profiles/Manifest.gz differ diff --git a/profiles/arch/hppa/package.use.stable.mask b/profiles/arch/hppa/package.use.stable.mask index a979a916995f..c6604dc698f3 100644 --- a/profiles/arch/hppa/package.use.stable.mask +++ b/profiles/arch/hppa/package.use.stable.mask @@ -17,6 +17,10 @@ #--- END OF EXAMPLES --- +# Rolf Eike Beer (2020-12-11) +# not all needed sphinx modules are stable on hppa. +dev-python/aiohttp doc + # Rolf Eike Beer (2020-11-25) # dev-db/redis has no stable keywords on hppa. app-admin/syslog-ng redis diff --git a/profiles/package.mask b/profiles/package.mask index a6a220f603b2..eb25d6feb9ab 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -32,6 +32,25 @@ #--- END OF EXAMPLES --- +# Hans de Graaff (2020-12-12) +# Security issue with insecure use of /tmp, bug 743214 +# This slot masked for removal in 30 days, use slot 2 instead. +dev-ruby/bundler:0 + +# David Seifert (2020-12-11) +# Last MIT release in 2007, declared EOL by Intel in 2017. +# Build and test failures, abandoned parallelism paradigm, +# no revdeps. If you're really still using this, switch to +# OpenMP. Bug #572130, #643590, Removal in 30 days. +dev-lang/cilk + +# Aisha Tammy (2020-12-11) +# last update upstream in 2017, does not build. +# OpenMP is a better alternative. +# Bug #717692, #741594 +# Removal in 30 days. +sci-libs/xkaapi + # Michał Górny (2020-12-10) # Synergy 2.0 was a beta branch, and it should have never been marked # stable. It never reached feature parity with 1.x, and upstream @@ -40,11 +59,6 @@ # in 30 days. >=x11-misc/synergy-2 -# Sergei Trofimovich (2020-12-10) -# Masked for testing. Builtd failures around locales -# and safe-stack detection ->=app-emulation/qemu-5.2.0 - # Michał Górny (2020-12-10) # Stuck on LLVM 9. Superseded by dev-util/cvise that features better # parallelization and more acive development. @@ -253,11 +267,6 @@ sys-apps/hwdata-gentoo sys-apps/hwsetup sys-libs/libkudzu -# Lars Wendler (2020-11-19) -# Breaks consumers like gnome-base/gnome-keyring and net-fs/cifs-utils -# See https://bugs.gentoo.org/755596 -=sys-libs/libcap-ng-0.8.1 - # Andreas Sturmlechner (2020-11-18) # Depends on deprecated QtWebKit, dead upstream. # Alternatives: kde-apps/okular[chm], app-text/xchm diff --git a/profiles/use.local.desc b/profiles/use.local.desc index 21d75e25a8cf..b4e860bb657e 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -1109,6 +1109,8 @@ app-text/libstaroffice:tools - Build conversion tools app-text/libstaroffice:zlib - Enable support for compressed data app-text/libwpd:tools - Build file conversion tools app-text/libwps:tools - Build file conversion tools +app-text/mandoc:cgi - build man.cgi web plugin for viewing man pages +app-text/mandoc:system-man - set as the default man provider app-text/mathtex:png - Generate png images by default instead of gif app-text/msort:heap - Use heap instead of alloca() app-text/msort:icu - Use dev-libs/icu instead of dev-libs/libutf8proc. @@ -3083,6 +3085,7 @@ games-emulation/pcsxr:archive - Support compressed files (via libarchive) games-emulation/pcsxr:ccdda - Support compressed CDDA (requires ffmpeg) games-emulation/pcsxr:cdio - Use libcdio for CD support games-emulation/pcsxr:sdl - Use SDL sound backend (other parts of SDL are used unconditionally) +games-emulation/ppsspp:discord - Enable interfacing with a locally running Discord desktop client games-emulation/ppsspp:system-ffmpeg - Use the system-wide media-video/ffmpeg instead of bundled games-emulation/snes9x:libretro - Build libretro port games-emulation/snes9x:netplay - Enable playing ROMs over the network (not recommended) @@ -4816,7 +4819,6 @@ media-tv/mythtv:vpx - Enable VP8/VP9 support for media-libs/libvpx media-tv/mythtv:wrapper - Use Ubuntu mythtfrontend wrapper media-tv/mythtv:x265 - Enable h265 encoding using x265 media-tv/mythtv:xmltv - Support media-tv/xmltv TV listing - not used by Schedules Direct] -media-tv/mythtv:xnvctrl - External XNVCtrl support using Nvidia proprietary driver media-tv/tvheadend:capmt - Enable support for capmt (dvbapi) protocol media-tv/tvheadend:constcw - Enable support for the constcw protocol media-tv/tvheadend:cwc - Enable support for the cwc (newcamd) protocol @@ -7357,7 +7359,6 @@ sci-libs/symengine:flint - Add support for (sci-mathematics/flint) sci-libs/symengine:llvm - Build with LLVM sci-libs/symengine:mpc - Add support for multiprecision complex arithmetic(dev-libs/mpc) sci-libs/symengine:mpfr - Add support for multiprecision floating point rouding(dev-libs/mpfr) -sci-libs/taucs:cilk - Enable multithreading using dev-lang/cilk sci-libs/tensorflow:cuda - Enable support for nVidia CUDA sci-libs/tensorflow:xla - XLA (Accelerated Linear Algebra) Optimizing Compiler for TensorFlow sci-libs/trilinos:adolc - Add support for adolc (sci-libs/adolc) @@ -8320,6 +8321,7 @@ sys-libs/glibc:crypt - build and install libcrypt and crypt.h sys-libs/glibc:debug - When USE=hardened, allow fortify/stack violations to dump core (SIGABRT) and not kill self (SIGKILL) sys-libs/glibc:gd - build memusage and memusagestat tools sys-libs/glibc:multiarch - enable optimizations for multiple CPU architectures (detected at runtime) +sys-libs/glibc:multilib-bootstrap - Provide prebuilt libgcc.a and crt files if missing. Only needed for ABI switch. sys-libs/glibc:nscd - Build, and enable support for, the Name Service Cache Daemon sys-libs/glibc:rpc - Enable obsolete RPC/NIS layers sys-libs/glibc:ssp - protect stack of glibc internals diff --git a/sci-biology/Manifest.gz b/sci-biology/Manifest.gz index bd31d1e50ca5..41afea6d2eca 100644 Binary files a/sci-biology/Manifest.gz and b/sci-biology/Manifest.gz differ diff --git a/sci-biology/biopython/metadata.xml b/sci-biology/biopython/metadata.xml index 959160fe46b1..7ffa3b15e08e 100644 --- a/sci-biology/biopython/metadata.xml +++ b/sci-biology/biopython/metadata.xml @@ -1,8 +1,11 @@ - - sci-biology@gentoo.org - Gentoo Biology Project - + + sci-biology@gentoo.org + Gentoo Biology Project + + + biopython + diff --git a/sci-biology/pysam/metadata.xml b/sci-biology/pysam/metadata.xml index 6182254bd46d..d9da2562da6c 100644 --- a/sci-biology/pysam/metadata.xml +++ b/sci-biology/pysam/metadata.xml @@ -1,12 +1,13 @@ - + - - sci-biology@gentoo.org - Gentoo Biology Project - - - pysam - pysam-developers/pysam - + + sci-biology@gentoo.org + Gentoo Biology Project + + + pysam + pysam-developers/pysam + pysam + diff --git a/sci-libs/Manifest.gz b/sci-libs/Manifest.gz index 01ca1ca89361..9fd40c3f41e3 100644 Binary files a/sci-libs/Manifest.gz and b/sci-libs/Manifest.gz differ diff --git a/sci-libs/taucs/files/taucs-2.2-no-test-cilk.patch b/sci-libs/taucs/files/taucs-2.2-no-test-cilk.patch deleted file mode 100644 index 332d1138dea0..000000000000 --- a/sci-libs/taucs/files/taucs-2.2-no-test-cilk.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- a/testscript -+++ b/testscript -@@ -12,17 +12,6 @@ - ulimit -s >> testscript.log - echo '==============' >> testscript.log - echo =============== >> testscript.log --echo = test_cilk_snmf = >> testscript.log --. ./configure in=progs/test_cilk_snmf.c $* --echo last conf is $TAUCS_LASTCONF >> testscript.log --make -f build/${TAUCS_LASTCONF}/makefile --if bin/${TAUCS_LASTCONF}/test_cilk_snmf >> testscript.log ; then --echo = TEST PASSED test_cilk_snmf >> testscript.log --else --echo = TEST FAILED test_cilk_snmf >> testscript.log --fi --echo =============== >> testscript.log --echo =============== >> testscript.log - echo = test_complex = >> testscript.log - . ./configure in=progs/test_complex.c $* - echo last conf is $TAUCS_LASTCONF >> testscript.log diff --git a/sci-libs/taucs/metadata.xml b/sci-libs/taucs/metadata.xml index b1b1d0e9c3fd..507e3718bcb6 100644 --- a/sci-libs/taucs/metadata.xml +++ b/sci-libs/taucs/metadata.xml @@ -1,32 +1,28 @@ - - sci@gentoo.org - Gentoo Science Project - - - TAUCS is a C library of sparse linear solvers. - The current version of the library (1.0) includes the following - functionality: - - * Multifrontal Supernodal Cholesky Factorization. - * Left-Looking Supernodal Cholesky Factorization. - * Drop-Tolerance Incomplete-Cholesky Factorization. - * Out-of-Core, Left-Looking Supernodal Sparse Cholesky Factorization. - * Out-of-Core Sparse LU with Partial Pivoting Factor and Solve. - * Ordering Codes and Interfaces to Existing Ordering Codes. - * Multilevel-Support-Graph Preconditioners. - * Matrix Operations. - * Matrix Input/Output. - * Matrix Generators. - * Iterative Solvers. - * Vaidya's Preconditioners. - * Recursive Vaidya's Preconditioners. - * Multilevel-Support-Graph Preconditioners. - * Utility Routines - - - Enable multithreading using dev-lang/cilk - + + sci@gentoo.org + Gentoo Science Project + + + TAUCS is a C library of sparse linear solvers. + The current version of the library (1.0) includes the following + functionality: + * Multifrontal Supernodal Cholesky Factorization. + * Left-Looking Supernodal Cholesky Factorization. + * Drop-Tolerance Incomplete-Cholesky Factorization. + * Out-of-Core, Left-Looking Supernodal Sparse Cholesky Factorization. + * Out-of-Core Sparse LU with Partial Pivoting Factor and Solve. + * Ordering Codes and Interfaces to Existing Ordering Codes. + * Multilevel-Support-Graph Preconditioners. + * Matrix Operations. + * Matrix Input/Output. + * Matrix Generators. + * Iterative Solvers. + * Vaidya's Preconditioners. + * Recursive Vaidya's Preconditioners. + * Multilevel-Support-Graph Preconditioners. + * Utility Routines + diff --git a/sci-libs/taucs/taucs-2.2.ebuild b/sci-libs/taucs/taucs-2.2-r1.ebuild similarity index 85% rename from sci-libs/taucs/taucs-2.2.ebuild rename to sci-libs/taucs/taucs-2.2-r1.ebuild index 8ff8000be8dd..7b91afeeed64 100644 --- a/sci-libs/taucs/taucs-2.2.ebuild +++ b/sci-libs/taucs/taucs-2.2-r1.ebuild @@ -12,7 +12,7 @@ SRC_URI="http://www.tau.ac.il/~stoledo/${PN}/${PV}/${PN}.tgz -> ${P}.tgz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="cilk doc" +IUSE="doc" RESTRICT="test" RDEPEND=" @@ -21,16 +21,13 @@ RDEPEND=" || ( sci-libs/metis sci-libs/parmetis - ) - cilk? ( dev-lang/cilk )" + )" DEPEND="${RDEPEND}" BDEPEND="virtual/pkgconfig" S="${WORKDIR}" PATCHES=( - # test with cilk has memory leaks - "${FILESDIR}"/${P}-no-test-cilk.patch # bug 725588 "${FILESDIR}"/${P}-respect-ar.patch ) @@ -52,11 +49,6 @@ src_configure() { echo "LIBMETIS=$($(tc-getPKG_CONFIG) --libs metis)" >> config/linux_shared.mk || die # no cat <> config/linux_shared.mk || die - echo "CILKFLAGS=-O2 -I${EPREFIX}/usr/include/cilk -fPIC" >> config/linux_shared.mk || die - echo "CILKOUTFLG=-o " >> config/linux_shared.mk || die - fi sed -e 's/ -fPIC//g' config/linux_shared.mk || die } diff --git a/sys-apps/Manifest.gz b/sys-apps/Manifest.gz index e4b88851d7f3..d141dd306b6a 100644 Binary files a/sys-apps/Manifest.gz and b/sys-apps/Manifest.gz differ diff --git a/sys-apps/hwloc/Manifest b/sys-apps/hwloc/Manifest index d68e9a55e661..8a16dd2b5ea1 100644 --- a/sys-apps/hwloc/Manifest +++ b/sys-apps/hwloc/Manifest @@ -1,6 +1,2 @@ -DIST hwloc-1.11.10.tar.bz2 4102431 BLAKE2B 4caec6f1c1a5f0b571854127cc6fd808e778b3b2bcf7ded7edfe99100ac4ccc05c893f3df0a56119234510aa5256e5da84cfa15dddb7d15e49eca2936baa7f41 SHA512 9e2cf5cc43f8c21cfd0bf09a58fda09ba832908eca5a211d164eb106f090609b6351bc934e572200530284fbfc5c460db29a49ec7974dbd298d757ed8aaf32b3 DIST hwloc-1.11.13.tar.bz2 4120436 BLAKE2B a6a09f7d6abeaa9d23df555cfd2186ae61f0f67f83fa8f1aa4bc29376b233a8511f11745f35064f39545c7e62e9d271c1334b6906712028729e138e41d1f212f SHA512 dd38bcc9a5df2dcfd3bbd828ab13fdb1c1d21747a0b62e6c87df95d2835c0472590344ff5bda4f6c28e597eaba1ea11c0bc96907ad45f1215f51f95ac9f58138 -DIST hwloc-1.11.2.tar.bz2 4019136 BLAKE2B 29a959c48b3be347b5816333c3f9948ddafc6c4882d7c646c956ae08d72827dd4cef22da7842a034e3131e0044f9528573c6dfceb373869c326890f23651d967 SHA512 aa54b6389c303470a00dbbb3ae5f688244d0f1e0d84e661b739933ff9d86928869f2f3be04fe621cdf06c206defcd4ea1c9e8b72696f7cada9bb3243c3feba68 -DIST hwloc-2.0.4.tar.bz2 6057001 BLAKE2B 0d73c2ec544263bb36404d8112412b6b308935b9b8b4ba37cac05d8bdc525763fa862c63d387545cb0e02e1bd8f1c931e034381dede83b7119f30928f4e54bf4 SHA512 c7bb69f0e536188921138d003f3854a12f942a4f625e665d5ce6d32c1c4a884e0a91f9125de33dd292f522032b759e6240df3f3e53534033567ea0d829feefce -DIST hwloc-2.1.0.tar.bz2 6272755 BLAKE2B 3ab13bd5cd00c4c19a1c4b1de21fb799038bd0afaa86520696478eada8d0ac11a4f4de11b96b0d92495b431f4b49ccb4185b176ad5abb9372ba6c5c9794ef21c SHA512 3fda7c4152c3f1b701c3da0fcbbe7e1dffb502042cb86e9a44ce6df8e227c005333e61d5459407f88efbd56816db0ab90b19f75d047e0c77b3b7f5c6405ea501 DIST hwloc-2.3.0.tar.bz2 6414781 BLAKE2B 60bc80ae73d0ae9ff9a438474efe682dfff28149b843645c928d4c5531f25c7763311816d5c86028efa9e07aa86935dbb6cff56ec429ee607ce4e5b5b88d4bbe SHA512 ecb0950cd08eab7d97f7cbef9db0dc31cb5b4debedaae6f48814625ee5da0153fdc1f863fa84c5d59b76634e877a348fa556f3c8c29fc43bc6ae7211c313906c diff --git a/sys-apps/hwloc/hwloc-1.11.10.ebuild b/sys-apps/hwloc/hwloc-1.11.10.ebuild deleted file mode 100644 index c3630b9ccaa1..000000000000 --- a/sys-apps/hwloc/hwloc-1.11.10.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools cuda flag-o-matic toolchain-funcs versionator multilib-minimal - -MY_PV=v$(get_version_component_range 1-2) - -DESCRIPTION="displays the hardware topology in convenient formats" -HOMEPAGE="https://www.open-mpi.org/projects/hwloc/" -SRC_URI="https://www.open-mpi.org/software/${PN}/${MY_PV}/downloads/${P}.tar.bz2" - -LICENSE="BSD" -SLOT="0/5" -KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="cairo cuda debug gl +numa +pci plugins svg static-libs xml X" - -# opencl support dropped with x11-drivers/ati-drivers being removed (#582406). -# Anyone with hardware is welcome to step up and help test to get it re-added. - -# dev-util/nvidia-cuda-toolkit is always multilib - -RDEPEND=">=sys-libs/ncurses-5.9-r3:0[${MULTILIB_USEDEP}] - cairo? ( >=x11-libs/cairo-1.12.14-r4[X?,svg?,${MULTILIB_USEDEP}] ) - cuda? ( >=dev-util/nvidia-cuda-toolkit-6.5.19-r1 ) - gl? ( x11-drivers/nvidia-drivers[static-libs,tools] ) - pci? ( - >=sys-apps/pciutils-3.3.0-r2[${MULTILIB_USEDEP}] - >=x11-libs/libpciaccess-0.13.1-r1[${MULTILIB_USEDEP}] - ) - plugins? ( dev-libs/libltdl:0[${MULTILIB_USEDEP}] ) - numa? ( >=sys-process/numactl-2.0.10-r1[${MULTILIB_USEDEP}] ) - xml? ( >=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}] )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -PATCHES=( "${FILESDIR}/${PN}-1.8.1-gl.patch" ) -DOCS=( AUTHORS NEWS README VERSION ) - -src_prepare() { - default - eautoreconf - - if use cuda ; then - append-cflags -I"${EPREFIX}"/opt/cuda/include - append-cppflags -I"${EPREFIX}"/opt/cuda/include - fi -} - -multilib_src_configure() { - export HWLOC_PKG_CONFIG=$(tc-getPKG_CONFIG) #393467 - - if use cuda ; then - local -x LDFLAGS="${LDFLAGS}" - append-ldflags -L"${EPREFIX}"/opt/cuda/$(get_libdir) - fi - - ECONF_SOURCE=${S} econf \ - $(use_enable static-libs static) \ - $(use_enable cairo) \ - $(multilib_native_use_enable cuda) \ - $(use_enable debug) \ - $(multilib_native_use_enable gl) \ - $(use_enable pci) \ - $(use_enable plugins) \ - $(use_enable numa libnuma) \ - $(use_enable xml libxml2) \ - $(use_with X x) -} diff --git a/sys-apps/hwloc/hwloc-1.11.13.ebuild b/sys-apps/hwloc/hwloc-1.11.13.ebuild index ad6e57460544..8417f7fabee4 100644 --- a/sys-apps/hwloc/hwloc-1.11.13.ebuild +++ b/sys-apps/hwloc/hwloc-1.11.13.ebuild @@ -57,6 +57,7 @@ multilib_src_configure() { fi ECONF_SOURCE=${S} econf \ + --disable-opencl \ $(use_enable static-libs static) \ $(use_enable cairo) \ $(multilib_native_use_enable cuda) \ diff --git a/sys-apps/hwloc/hwloc-1.11.2-r1.ebuild b/sys-apps/hwloc/hwloc-1.11.2-r1.ebuild deleted file mode 100644 index a447cda89521..000000000000 --- a/sys-apps/hwloc/hwloc-1.11.2-r1.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit flag-o-matic cuda autotools-multilib multilib toolchain-funcs versionator - -MY_PV=v$(get_version_component_range 1-2) - -DESCRIPTION="displays the hardware topology in convenient formats" -HOMEPAGE="https://www.open-mpi.org/projects/hwloc/" -SRC_URI="https://www.open-mpi.org/software/${PN}/${MY_PV}/downloads/${P}.tar.bz2" - -LICENSE="BSD" -SLOT="0/5" -KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" -IUSE="cairo cuda debug gl +numa +pci plugins svg static-libs xml X" - -# opencl support dropped with x11-drivers/ati-drivers being removed (#582406). -# Anyone with hardware is welcome to step up and help test to get it re-added. - -# dev-util/nvidia-cuda-toolkit is always multilib - -RDEPEND=">=sys-libs/ncurses-5.9-r3:0[${MULTILIB_USEDEP}] - cairo? ( >=x11-libs/cairo-1.12.14-r4[X?,svg?,${MULTILIB_USEDEP}] ) - cuda? ( >=dev-util/nvidia-cuda-toolkit-6.5.19-r1 ) - gl? ( x11-drivers/nvidia-drivers[static-libs,tools] ) - pci? ( - >=sys-apps/pciutils-3.3.0-r2[${MULTILIB_USEDEP}] - >=x11-libs/libpciaccess-0.13.1-r1[${MULTILIB_USEDEP}] - ) - plugins? ( dev-libs/libltdl:0[${MULTILIB_USEDEP}] ) - numa? ( >=sys-process/numactl-2.0.10-r1[${MULTILIB_USEDEP}] ) - xml? ( >=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}] )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS=( AUTHORS NEWS README VERSION ) - -PATCHES=( - "${FILESDIR}/${PN}-1.8.1-gl.patch" -) -AUTOTOOLS_AUTORECONF=1 - -src_prepare() { - if use cuda ; then - append-cflags -I/opt/cuda/include - append-cppflags -I/opt/cuda/include - fi - autotools-utils_src_prepare -} - -multilib_src_configure() { - export HWLOC_PKG_CONFIG=$(tc-getPKG_CONFIG) #393467 - use cuda && local LDFLAGS="${LDFLAGS} -L/opt/cuda/$(get_libdir)" - local myeconfargs=( - --docdir="${EPREFIX}"/usr/share/doc/${PF} - $(use_enable cairo) - $(use_enable cuda) - $(use_enable debug) - $(multilib_native_use_enable gl) - $(use_enable pci) - $(use_enable plugins) - $(use_enable numa libnuma) - $(use_enable xml libxml2) - $(use_with X x) - ) - autotools-utils_src_configure -} diff --git a/sys-apps/hwloc/hwloc-2.0.4.ebuild b/sys-apps/hwloc/hwloc-2.0.4.ebuild deleted file mode 100644 index c412bfedcf48..000000000000 --- a/sys-apps/hwloc/hwloc-2.0.4.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools cuda flag-o-matic eapi7-ver multilib-minimal toolchain-funcs - -MY_PV=v$(ver_cut 1-2) - -DESCRIPTION="displays the hardware topology in convenient formats" -HOMEPAGE="https://www.open-mpi.org/projects/hwloc/" -SRC_URI="https://www.open-mpi.org/software/${PN}/${MY_PV}/downloads/${P}.tar.bz2" - -LICENSE="BSD" -SLOT="0/15" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="cairo cuda debug gl +pci plugins svg static-libs xml X" - -# opencl support dropped with x11-drivers/ati-drivers being removed (#582406). -# Anyone with hardware is welcome to step up and help test to get it re-added. - -RDEPEND=">=sys-libs/ncurses-5.9-r3:0[${MULTILIB_USEDEP}] - cairo? ( >=x11-libs/cairo-1.12.14-r4[X?,svg?,${MULTILIB_USEDEP}] ) - cuda? ( >=dev-util/nvidia-cuda-toolkit-6.5.19-r1:= ) - gl? ( x11-drivers/nvidia-drivers[static-libs,tools] ) - pci? ( - >=sys-apps/pciutils-3.3.0-r2[${MULTILIB_USEDEP}] - >=x11-libs/libpciaccess-0.13.1-r1[${MULTILIB_USEDEP}] - ) - plugins? ( dev-libs/libltdl:0[${MULTILIB_USEDEP}] ) - xml? ( >=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}] )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -PATCHES=( "${FILESDIR}/${PN}-1.8.1-gl.patch" ) -DOCS=( AUTHORS NEWS README VERSION ) - -src_prepare() { - default - eautoreconf - - if use cuda ; then - append-cflags -I"${EPREFIX}"/opt/cuda/include - append-cppflags -I"${EPREFIX}"/opt/cuda/include - fi -} - -multilib_src_configure() { - export HWLOC_PKG_CONFIG=$(tc-getPKG_CONFIG) #393467 - - if use cuda ; then - local -x LDFLAGS="${LDFLAGS}" - append-ldflags -L"${EPREFIX}"/opt/cuda/$(get_libdir) - fi - - ECONF_SOURCE=${S} econf \ - --disable-opencl \ - $(use_enable static-libs static) \ - $(use_enable cairo) \ - $(multilib_native_use_enable cuda) \ - $(use_enable debug) \ - $(multilib_native_use_enable gl) \ - $(use_enable pci) \ - $(use_enable plugins) \ - $(use_enable xml libxml2) \ - $(use_with X x) -} diff --git a/sys-apps/hwloc/hwloc-2.1.0.ebuild b/sys-apps/hwloc/hwloc-2.1.0.ebuild deleted file mode 100644 index d996e67548ae..000000000000 --- a/sys-apps/hwloc/hwloc-2.1.0.ebuild +++ /dev/null @@ -1,83 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -inherit autotools cuda flag-o-matic systemd toolchain-funcs multilib-minimal - -MY_PV="v$(ver_cut 1-2)" - -DESCRIPTION="displays the hardware topology in convenient formats" -HOMEPAGE="https://www.open-mpi.org/projects/hwloc/" -SRC_URI="https://www.open-mpi.org/software/${PN}/${MY_PV}/downloads/${P}.tar.bz2" - -LICENSE="BSD" -SLOT="0/15" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="cairo +cpuid cuda debug gl libudev netloc nvml +pci plugins static-libs svg xml X" - -# opencl support dropped with x11-drivers/ati-drivers being removed (#582406). -# Anyone with hardware is welcome to step up and help test to get it re-added. - -RDEPEND=">=sys-libs/ncurses-5.9-r3:0[${MULTILIB_USEDEP}] - - cairo? ( >=x11-libs/cairo-1.12.14-r4[X?,svg?,${MULTILIB_USEDEP}] ) - cuda? ( >=dev-util/nvidia-cuda-toolkit-6.5.19-r1:= ) - gl? ( x11-drivers/nvidia-drivers[static-libs,tools] ) - libudev? ( virtual/libudev ) - netloc? ( !sys-apps/netloc ) - pci? ( - >=sys-apps/pciutils-3.3.0-r2[${MULTILIB_USEDEP}] - >=x11-libs/libpciaccess-0.13.1-r1[${MULTILIB_USEDEP}] - ) - plugins? ( dev-libs/libltdl:0[${MULTILIB_USEDEP}] ) - xml? ( >=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}] )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -PATCHES=( "${FILESDIR}/${PN}-1.8.1-gl.patch" ) -DOCS=( AUTHORS NEWS README VERSION ) - -src_prepare() { - default - eautoreconf - - if use cuda ; then - append-cflags "-I${EPREFIX}/opt/cuda/include" - append-cppflags "-I${EPREFIX}/opt/cuda/include" - fi -} - -multilib_src_configure() { - export HWLOC_PKG_CONFIG="$(tc-getPKG_CONFIG)" #393467 - - if use cuda ; then - local -x LDFLAGS="${LDFLAGS}" - append-ldflags "-L${EPREFIX}/opt/cuda/$(get_libdir)" - fi - - local myconf=( - --disable-opencl - --enable-shared - $(multilib_native_use_enable cuda) - $(multilib_native_use_enable gl) - $(use_enable cairo) - $(use_enable cpuid) - $(use_enable debug) - $(use_enable libudev) - $(use_enable netloc) - $(use_enable nvml) - $(use_enable pci) - $(use_enable plugins) - $(use_enable static-libs static) - $(use_enable xml libxml2) - $(use_with X x) - ) - ECONF_SOURCE="${S}" econf "${myconf[@]}" -} - -multilib_src_install_all() { - default - systemd_dounit "${ED}/usr/share/hwloc/hwloc-dump-hwdata.service" - find "${ED}" -name '*.la' -delete || die -} diff --git a/sys-apps/inxi/inxi-3.1.06.1.ebuild b/sys-apps/inxi/inxi-3.1.06.1.ebuild index 0cb57479a879..a1906c34d77e 100644 --- a/sys-apps/inxi/inxi-3.1.06.1.ebuild +++ b/sys-apps/inxi/inxi-3.1.06.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/smxi/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 arm ~ppc ~ppc64 x86" +KEYWORDS="~amd64 arm ppc ppc64 x86" IUSE="bluetooth hddtemp opengl" DEPEND="" diff --git a/sys-auth/Manifest.gz b/sys-auth/Manifest.gz index 9e2cea74e4da..ba09dae7a3f9 100644 Binary files a/sys-auth/Manifest.gz and b/sys-auth/Manifest.gz differ diff --git a/sys-auth/seatd/seatd-0.4.0.ebuild b/sys-auth/seatd/seatd-0.4.0-r1.ebuild similarity index 90% rename from sys-auth/seatd/seatd-0.4.0.ebuild rename to sys-auth/seatd/seatd-0.4.0-r1.ebuild index 06bf3fce1be6..88d98cef8d35 100644 --- a/sys-auth/seatd/seatd-0.4.0.ebuild +++ b/sys-auth/seatd/seatd-0.4.0-r1.ebuild @@ -3,16 +3,15 @@ EAPI=7 -inherit meson +inherit meson systemd DESCRIPTION="Minimal seat management daemon and universal library" HOMEPAGE="https://sr.ht/~kennylevinsen/seatd" if [[ ${PV} == 9999 ]]; then inherit git-r3 - EGIT_REPO_URI="https://git.sr.ht/~kennylevinsen/seatd" else - KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" + KEYWORDS="amd64 arm64 ~ppc64 x86" SRC_URI="https://git.sr.ht/~kennylevinsen/seatd/archive/${PV}.tar.gz -> ${P}.tar.gz" fi LICENSE="MIT" @@ -45,4 +44,5 @@ src_configure() { src_install() { meson_src_install newinitd "${FILESDIR}/seatd.initd" seatd + systemd_dounit contrib/systemd/seatd.service } diff --git a/sys-auth/seatd/seatd-9999.ebuild b/sys-auth/seatd/seatd-9999.ebuild index 3d89eb8e867b..ab311a6c5986 100644 --- a/sys-auth/seatd/seatd-9999.ebuild +++ b/sys-auth/seatd/seatd-9999.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit meson +inherit meson systemd DESCRIPTION="Minimal seat management daemon and universal library" HOMEPAGE="https://sr.ht/~kennylevinsen/seatd" @@ -44,4 +44,5 @@ src_configure() { src_install() { meson_src_install newinitd "${FILESDIR}/seatd.initd" seatd + systemd_dounit contrib/systemd/seatd.service } diff --git a/sys-boot/Manifest.gz b/sys-boot/Manifest.gz index 5422b106b3df..5f5f63f0a163 100644 Binary files a/sys-boot/Manifest.gz and b/sys-boot/Manifest.gz differ diff --git a/sys-boot/raspberrypi-firmware/Manifest b/sys-boot/raspberrypi-firmware/Manifest index 1520157a4089..982d64a04bf3 100644 --- a/sys-boot/raspberrypi-firmware/Manifest +++ b/sys-boot/raspberrypi-firmware/Manifest @@ -1,2 +1,3 @@ DIST raspberrypi-firmware-1.20190925.tar.gz 185571086 BLAKE2B c3a9b2760fa853fbd1dd09bc4048c9e78594f88da5af608c3a761554d4046a4c869db8981c64140a24e82e0a61b8dc776bb8d895df60c6424e44780f78b18cb0 SHA512 4b7b29cc6c2a33d7a37987c492034d9afbb2220364c50cf265e0adf8e5f393c2275dcffaa77c89b3f43b2e98d199741b67590cb60ff8beae8ef677852f63b4a0 DIST raspberrypi-firmware-1.20201022.tar.gz 189827375 BLAKE2B 94c38f60d688c8e3ebab830912daccbb6c04bdd3d88f6ca0d07d85be0a6b12c53f0266b4c258ed4694f30bad5db30fb6d30feabfd0b7668735a9a806b820d325 SHA512 876758179df27109984b6c3f4849fdcdc6bdcc2769495fcc83c97fc3ff4d07b9f3cd58086be877503f72c9e5417d2be6d6c33bce4cbb3b862055117c9cc26db8 +DIST raspberrypi-firmware-1.20201201.tar.gz 189332299 BLAKE2B b3ec91f07b4713d26c29be5412d018a220129eef7ddf7c5c09d85e645c2c5754a95f13be7e690ab40648a982e3974cc760aa5b33c76612da836227d38c4ee3a5 SHA512 a7f4591552718956bd7f2d0d377234277e2e6f18cc9714ea30fe13f26d5ae1164b982f39dcf72ae4a18663369ef06d0187d8182713763262371c13107aac4c65 diff --git a/sys-boot/raspberrypi-firmware/raspberrypi-firmware-1.20201022.ebuild b/sys-boot/raspberrypi-firmware/raspberrypi-firmware-1.20201022.ebuild index 7102d367161f..9ed770d2e9df 100644 --- a/sys-boot/raspberrypi-firmware/raspberrypi-firmware-1.20201022.ebuild +++ b/sys-boot/raspberrypi-firmware/raspberrypi-firmware-1.20201022.ebuild @@ -11,7 +11,7 @@ if [[ "${PV}" == 9999 ]]; then EGIT_CLONE_TYPE="shallow" else SRC_URI="https://github.com/raspberrypi/firmware/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="-* ~arm arm64" + KEYWORDS="-* arm arm64" S="${WORKDIR}/firmware-${PV}" fi diff --git a/sys-boot/raspberrypi-firmware/raspberrypi-firmware-1.20201201.ebuild b/sys-boot/raspberrypi-firmware/raspberrypi-firmware-1.20201201.ebuild new file mode 100644 index 000000000000..55d6595f60bf --- /dev/null +++ b/sys-boot/raspberrypi-firmware/raspberrypi-firmware-1.20201201.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit mount-boot readme.gentoo-r1 + +if [[ "${PV}" == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/raspberrypi/firmware" + EGIT_CLONE_TYPE="shallow" +else + SRC_URI="https://github.com/raspberrypi/firmware/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="-* ~arm ~arm64" + S="${WORKDIR}/firmware-${PV}" +fi + +DESCRIPTION="Raspberry Pi (all versions) bootloader and GPU firmware" +HOMEPAGE="https://github.com/raspberrypi/firmware" + +LICENSE="GPL-2 raspberrypi-videocore-bin" +SLOT="0" +RESTRICT="binchecks strip" + +DOC_CONTENTS="Please configure your ram setup by editing /boot/config.txt" + +src_prepare() { + default + + cp "${FILESDIR}"/${PN}-1.20201022-config.txt "${WORKDIR}" || die + + if use arm64; then + # Force selection of the 64-bit kernel8.img to match our userland + echo "arm_64bit=1" >> "${WORKDIR}"/${PN}-1.20201022-config.txt || die + fi +} + +src_install() { + insinto /boot + cd boot || die + doins bootcode.bin fixup*.dat start*elf + newins "${WORKDIR}"/${PN}-1.20201022-config.txt config.txt + newins "${FILESDIR}"/${PN}-1.20201022-cmdline.txt cmdline.txt + newenvd "${FILESDIR}"/${PN}-0_p20130711-envd 90${PN} + readme.gentoo_create_doc +} + +pkg_preinst() { + if [[ -z "${REPLACING_VERSIONS}" ]] ; then + local msg="" + + if [[ -e "${ED}"/boot/cmdline.txt ]] && [[ -e /boot/cmdline.txt ]] ; then + msg+="/boot/cmdline.txt " + fi + + if [[ -e "${ED}"/boot/config.txt ]] && [[ -e /boot/config.txt ]] ; then + msg+="/boot/config.txt " + fi + + if [[ -n "${msg}" ]] ; then + msg="This package installs following files: ${msg}." + msg="${msg} Please remove (backup) your copies during install" + msg="${msg} and merge settings afterwards." + msg="${msg} Further updates will be CONFIG_PROTECTed." + die "${msg}" + fi + fi +} + +pkg_postinst() { + readme.gentoo_print_elog +} diff --git a/sys-firmware/Manifest.gz b/sys-firmware/Manifest.gz index eb20766e737c..4b261bf1db65 100644 Binary files a/sys-firmware/Manifest.gz and b/sys-firmware/Manifest.gz differ diff --git a/sys-firmware/raspberrypi-wifi-ucode/raspberrypi-wifi-ucode-20190114.1_p9.ebuild b/sys-firmware/raspberrypi-wifi-ucode/raspberrypi-wifi-ucode-20190114.1_p9.ebuild index 1e30e037e8fa..5475720b31f7 100644 --- a/sys-firmware/raspberrypi-wifi-ucode/raspberrypi-wifi-ucode-20190114.1_p9.ebuild +++ b/sys-firmware/raspberrypi-wifi-ucode/raspberrypi-wifi-ucode-20190114.1_p9.ebuild @@ -12,7 +12,7 @@ S="${WORKDIR}" LICENSE="Broadcom" SLOT="0" -KEYWORDS="~arm arm64" +KEYWORDS="arm arm64" RDEPEND="!sys-kernel/linux-firmware[-savedconfig]" diff --git a/sys-kernel/Manifest.gz b/sys-kernel/Manifest.gz index 5f437cf98c08..36860025e354 100644 Binary files a/sys-kernel/Manifest.gz and b/sys-kernel/Manifest.gz differ diff --git a/sys-kernel/gentoo-kernel-bin/Manifest b/sys-kernel/gentoo-kernel-bin/Manifest index 6fd044e9ea9b..d9781bf2181b 100644 --- a/sys-kernel/gentoo-kernel-bin/Manifest +++ b/sys-kernel/gentoo-kernel-bin/Manifest @@ -22,6 +22,9 @@ DIST gentoo-kernel-5.4.81-1.x86.xpak 52879835 BLAKE2B bb93d0cd2280d7c7981e2330a4 DIST gentoo-kernel-5.4.82-1.amd64.xpak 61041603 BLAKE2B 8f9c2b745b070ca48d207ee02f5d30b166a5e4742fe667425972c4b29c5471ae90e7a6d327f3f4917c1aedd755a0c81b346fb90c7889c4f925db87d62f82d0df SHA512 4c78769ce35eb9e172d8ba8ba170d5e5684c0dcb32f041ff031e658a8a53d7819c856a2315832dd8ee6088afe14bd471f8c60a95593581e7746ed276e219ba49 DIST gentoo-kernel-5.4.82-1.arm64.xpak 56304051 BLAKE2B ec9ec9c44f21405e1b5b8d179532b80f9d9d823ba36a9bb6c3bcd87e66b2515cd3844eef53b18ab106131f0ea46b1840b897aa6e6c77c5e532f4c3868c59237a SHA512 18cf7caadae3c6567110525cd7f96e7bc7f5911a04c1904cf4e3ddfb400afe97f44970cdb7ef43dfda4aaf2b728563385dd717486149b3cc4185597b98bb9c03 DIST gentoo-kernel-5.4.82-1.x86.xpak 52869397 BLAKE2B 1c3cac750bbc617e354aa5be8f4da4cea4511c0825b10b8e2d153ade7e4c658c7f538ed01e3754ea5eed8ace127bec0c4d7c82890d7da8341229792e6a1a630e SHA512 2a779603b843f2e4e757f80bba6ddd31a878f13ddb2b174f87f4a2ae3784fbca05be36994a29377674996a627b3f878fd6d50dd98a648ba0e6b45d039fe62f70 +DIST gentoo-kernel-5.4.83-1.amd64.xpak 61015400 BLAKE2B 73527460e0c430a23c8221f8a736416ef6c3ff0ab93d017096456e72bd6c2c88e2a631bd18b2f995bc929f918e9b5a59aa033119a534a985ae1e33d39ff48790 SHA512 53dbb9fe6d940bd93eeb35c93bb869931f8f423f6c3997433030bede0b0c11dde478e391ff372ff252771a1bb32207cefbfb478f79715ba2ee3910016087bd87 +DIST gentoo-kernel-5.4.83-1.arm64.xpak 56245318 BLAKE2B 53e8e3e3bae66539622bf56c175fe2055905c8a39eb89ea084d0622fab366c0b0614a209d2063e7b44005d438c00759b2a5aca0147b83e9bc17b2a321f693d14 SHA512 657118b04169d9b2bf32fc11138573e0ecf16b27155b6f299e477b211885805bb6c9beab22a19d2d9f93c9a57f0d21759e6ff9b3747c9c7dd76a39867b04b1bc +DIST gentoo-kernel-5.4.83-1.x86.xpak 52886754 BLAKE2B 2594b014c703f9f960d180bb6b2973027d238a2232ff8c358faf76a78d8ec8835e423fed19ad8afd30225c11e884a93411636407ca5a034c8abaa32635c21089 SHA512 70776892d7cd38d3bcd4cd797a14fb25f72bf0f29c2abd14a21b2361fac062c037b139588554b47727929ae60d331e6bd6ceec0c2f8e8f830adea4ed92279ba7 DIST gentoo-kernel-5.9.10-1.amd64.xpak 62950591 BLAKE2B 032e27aaaf9f622ce16b3ee699752215fe7485052bebdafddf2155aed370b6316be07eb009da3e207a9b12f8c7865c70c7466451b205cc4b4f374c731a815fd5 SHA512 7f504e2f15319d60f464a4e45edee9503316a100eec8a6258e27ec7a00a4d2a5cbf9ead4e77ae5342ea05778572fc8ecda94c63b425b99b6ac3a5f183e377bbb DIST gentoo-kernel-5.9.10-1.arm64.xpak 60852046 BLAKE2B da0ee409eb47ae9bf570a08640bd060894974f5f09fb348b3d43c525f7d006f982a447ff9b17bc22969de929b05a316ee72668d40a20d8c3b8e2084588898416 SHA512 3ae82b223c97903a9c25abcad4a9f1f9e4ede68caf796833d9aa0c0cb23898c5b62e4023b8d3a00ff91cdd1f1ee8e82d51e9198454bf87ea16fed9c99147e202 DIST gentoo-kernel-5.9.10-1.x86.xpak 56077741 BLAKE2B 40c1b066b5f91b5b53dd16d90be5d28e2699b900fcbc272e14417d69bef942a91058ebb5d74e0d8dd52263e6147bec1efafed75dc57f8f511f11def4657420e7 SHA512 7c778185d98c83fc0f5431111ef0c0623e54c76cde3e225b4d132bdc515319f6edd063fc2141b0d3d58cc4006ef4561088c5069fa047b04a6961cc53e23e7ef0 @@ -34,6 +37,9 @@ DIST gentoo-kernel-5.9.12-1.x86.xpak 56011322 BLAKE2B b306e3b8d78130ef846faf27b6 DIST gentoo-kernel-5.9.13-1.amd64.xpak 62956495 BLAKE2B ded936faf3c8e2a0c8cf2a5cecd4ba6ec41ea67ab15ab0000a2adc145875f35bdd47019b091a3c6a9c4d0f71edfc2056b00198203c09d443289373e1e2fe073a SHA512 4b8ed47f7eed494b173d2d3e83635805dbb0795030379b8f7ecd1034cba08b17c238f1dfe2137fed692a29f32aa50e6d991de97c592ece8506b4942728092cdf DIST gentoo-kernel-5.9.13-1.arm64.xpak 61119858 BLAKE2B 037e7ebbffb7ff2d143b3a6d1cbd95baf0dfe5b91430e2e7c92b7235123fde79f77326d519780e7a7e1d385e831f3088694fbb04cf36762b6735d4f5c010a453 SHA512 b50a1e5171b36479d0c2756ab819322d68f51df3222daa39e2362172cc4d622d5a9cafef2f2ab41bcb89dd533cf27ecd1eda6ce4783084ce4ab75777d5604279 DIST gentoo-kernel-5.9.13-1.x86.xpak 56040088 BLAKE2B 436e6527da0120f6fa1829bdef7a20903c9bcce6113105831311d1fb0a62bc959866da6b1624063edadd509ce4d1cc88cdff03111a018ddec0038d960ab0435c SHA512 f9c3c24078fa8325488e69e74e39f1b7a46a8dc606e656029e706c4e0b7d5ad9c8ef9c318df9764d61fde429d37956002b4481f2c9207699f0804cd7d9a5cb3e +DIST gentoo-kernel-5.9.14-1.amd64.xpak 62989867 BLAKE2B 28519bd6e0117c06d91532cac8cf21e3152ba7cdb8884a6bf4c768d33d3069d400343db9ff35f3b138ad037afc224d3248e824bcfce99b107cddd48eaca59ab5 SHA512 280cd5bcc7a65e648eb8e8bbfd29cc07b9838a1c214ed0244406b659e1824b925322d896498efaa1cf776b6fac2e89c09b2d68ac905b27a622f2c4b4d986ea4a +DIST gentoo-kernel-5.9.14-1.arm64.xpak 61074437 BLAKE2B 1ebb3992c25477fc4627664639c5440b3daaa22eb50a91d1c0c517e54a44996b9a819fecfa0cd472830f5548c64009b8868de6b9d712c445a803bf674048e918 SHA512 13421595b475e38a938661ea785d3fc030f3d44041f2333c244de7b10e52f7edf46899dcd63a6f6b847caeb1af5d3b21f94a14317dfa5d9d09745101eb02f369 +DIST gentoo-kernel-5.9.14-1.x86.xpak 56038922 BLAKE2B 31b6c90a4ffc609afd84867cbc5ab427ec765e1d8fc50ae1bd86d342dbaa9eb8df164b6e2992b3f7bcc5767b050dd10ddc855544738a399787d52174d273918a SHA512 85ee1968fcfff870a683a9319fb3633108cef43b7d26b43c39a7ac4e516be56afdf42c155c03880b22a173f39c8bebeec8ce2717f842cd53f38689f4f49b80e2 DIST gentoo-kernel-5.9.8-1.amd64.xpak 63386669 BLAKE2B 6ebe70d1085d0ea33361ab398d076ba5bb3cd21aab1769d8a106978d7b320b993878fd32a59800997a5832483a19b3bce2e396b09ed25c0f34d5786ae9b7f90d SHA512 61f4d150f8fb5cca735e09ca8021ae972d953b0297dc52d9d623d1ee3f3d4a3e5cd7f98d39f785e279891373c9719166a5dad624ea16a9300c7c3fa7b0777aaf DIST gentoo-kernel-5.9.8-1.arm64.xpak 61440507 BLAKE2B 4704fa85533e68763346f3b4ccd462473424404c1e8f0302a69300e48ccc265857c2911aa36b11b38a0fc908d5ba681c4d35038f5cee473172b83ab331075cff SHA512 0df3f58142b0015457de82134b4c3535f8826f6108ef8aa32e2097cc5294fab35a76135fd4a4fdaed50e2b52be149833bd3e9137546f5beca90c7861f3c0c579 DIST gentoo-kernel-5.9.8-1.x86.xpak 56613649 BLAKE2B a43bec4bc59613576749cbb58b6eff8b4e120410ae2dbb3b38b3596eab0a4d5dd56e427d91e4ebe044be9794f36e11dd89174a9ac01678eb4f268813370fd444 SHA512 b1d0a1bae0adc8788d46e19bda9875c49a611da6e4fc786d5a79efc8a5a5bbcb8eafb9f8628029685650235d5ec853d7a40b2ec0dd367c9b2d4436618ce1f2c3 diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.83-r1.ebuild b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.83-r1.ebuild new file mode 100644 index 000000000000..2378adc3f352 --- /dev/null +++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.83-r1.ebuild @@ -0,0 +1,57 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit kernel-install + +MY_P=${P/-bin/}-1 +DESCRIPTION="Pre-built Linux kernel with genpatches" +HOMEPAGE="https://www.kernel.org/" +SRC_URI+=" + amd64? ( + https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/${MY_P}.xpak + -> ${MY_P}.amd64.xpak + ) + arm64? ( + https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/${MY_P}.xpak + -> ${MY_P}.arm64.xpak + ) + x86? ( + https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/${MY_P}.xpak + -> ${MY_P}.x86.xpak + )" +S=${WORKDIR} + +LICENSE="GPL-2" +KEYWORDS="~arm64" + +RDEPEND=" + !sys-kernel/gentoo-kernel:${SLOT} + !sys-kernel/vanilla-kernel:${SLOT} + !sys-kernel/vanilla-kernel-bin:${SLOT}" + +QA_PREBUILT='*' + +pkg_pretend() { + ewarn "Starting with 5.4.52, Distribution Kernels are switching from Arch" + ewarn "Linux configs to Fedora. Please keep a backup kernel just in case." + + kernel-install_pkg_pretend +} + +src_unpack() { + ebegin "Unpacking ${MY_P}.${ARCH}.xpak" + tar -x < <(xz -c -d --single-stream "${DISTDIR}/${MY_P}.${ARCH}.xpak") + eend ${?} || die "Unpacking ${MY_P} failed" +} + +src_test() { + kernel-install_test "${PV}" \ + "${WORKDIR}/usr/src/linux-${PV}/$(kernel-install_get_image_path)" \ + "lib/modules/${PV}" +} + +src_install() { + mv * "${ED}" || die +} diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.83.ebuild b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.83.ebuild new file mode 100644 index 000000000000..d6e61fa69369 --- /dev/null +++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.83.ebuild @@ -0,0 +1,53 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit kernel-install + +MY_P=${P/-bin/}-1 +DESCRIPTION="Pre-built Linux kernel with genpatches" +HOMEPAGE="https://www.kernel.org/" +SRC_URI+=" + amd64? ( + https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/${MY_P}.xpak + -> ${MY_P}.amd64.xpak + ) + x86? ( + https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/${MY_P}.xpak + -> ${MY_P}.x86.xpak + )" +S=${WORKDIR} + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + !sys-kernel/gentoo-kernel:${SLOT} + !sys-kernel/vanilla-kernel:${SLOT} + !sys-kernel/vanilla-kernel-bin:${SLOT}" + +QA_PREBUILT='*' + +pkg_pretend() { + ewarn "Starting with 5.4.52, Distribution Kernels are switching from Arch" + ewarn "Linux configs to Fedora. Please keep a backup kernel just in case." + + kernel-install_pkg_pretend +} + +src_unpack() { + ebegin "Unpacking ${MY_P}.${ARCH}.xpak" + tar -x < <(xz -c -d --single-stream "${DISTDIR}/${MY_P}.${ARCH}.xpak") + eend ${?} || die "Unpacking ${MY_P} failed" +} + +src_test() { + kernel-install_test "${PV}" \ + "${WORKDIR}/usr/src/linux-${PV}/$(kernel-install_get_image_path)" \ + "lib/modules/${PV}" +} + +src_install() { + mv * "${ED}" || die +} diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.9.14-r1.ebuild b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.9.14-r1.ebuild new file mode 100644 index 000000000000..ad9181bc4960 --- /dev/null +++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.9.14-r1.ebuild @@ -0,0 +1,49 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit kernel-install + +MY_P=${P/-bin/}-1 +DESCRIPTION="Pre-built Linux kernel with genpatches" +HOMEPAGE="https://www.kernel.org/" +SRC_URI+=" + arm64? ( + https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/${MY_P}.xpak + -> ${MY_P}.arm64.xpak + )" +S=${WORKDIR} + +LICENSE="GPL-2" +KEYWORDS="~arm64" + +RDEPEND=" + !sys-kernel/gentoo-kernel:${SLOT} + !sys-kernel/vanilla-kernel:${SLOT} + !sys-kernel/vanilla-kernel-bin:${SLOT}" + +QA_PREBUILT='*' + +pkg_pretend() { + ewarn "Starting with 5.7.9, Distribution Kernels are switching from Arch" + ewarn "Linux configs to Fedora. Please keep a backup kernel just in case." + + kernel-install_pkg_pretend +} + +src_unpack() { + ebegin "Unpacking ${MY_P}.${ARCH}.xpak" + tar -x < <(xz -c -d --single-stream "${DISTDIR}/${MY_P}.${ARCH}.xpak") + eend ${?} || die "Unpacking ${MY_P} failed" +} + +src_test() { + kernel-install_test "${PV}" \ + "${WORKDIR}/usr/src/linux-${PV}/$(kernel-install_get_image_path)" \ + "lib/modules/${PV}" +} + +src_install() { + mv * "${ED}" || die +} diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.9.14.ebuild b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.9.14.ebuild new file mode 100644 index 000000000000..68ca59b57351 --- /dev/null +++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.9.14.ebuild @@ -0,0 +1,46 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit kernel-install + +MY_P=${P/-bin/}-1 +DESCRIPTION="Pre-built Linux kernel with genpatches" +HOMEPAGE="https://www.kernel.org/" +SRC_URI+=" + amd64? ( + https://dev.gentoo.org/~mgorny/binpkg/amd64/kernel/sys-kernel/gentoo-kernel/${MY_P}.xpak + -> ${MY_P}.amd64.xpak + ) + x86? ( + https://dev.gentoo.org/~mgorny/binpkg/x86/kernel/sys-kernel/gentoo-kernel/${MY_P}.xpak + -> ${MY_P}.x86.xpak + )" +S=${WORKDIR} + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + !sys-kernel/gentoo-kernel:${SLOT} + !sys-kernel/vanilla-kernel:${SLOT} + !sys-kernel/vanilla-kernel-bin:${SLOT}" + +QA_PREBUILT='*' + +src_unpack() { + ebegin "Unpacking ${MY_P}.${ARCH}.xpak" + tar -x < <(xz -c -d --single-stream "${DISTDIR}/${MY_P}.${ARCH}.xpak") + eend ${?} || die "Unpacking ${MY_P} failed" +} + +src_test() { + kernel-install_test "${PV}" \ + "${WORKDIR}/usr/src/linux-${PV}/$(kernel-install_get_image_path)" \ + "lib/modules/${PV}" +} + +src_install() { + mv * "${ED}" || die +} diff --git a/sys-kernel/gentoo-kernel/Manifest b/sys-kernel/gentoo-kernel/Manifest index 81cd9827807f..c6360a46ffcb 100644 --- a/sys-kernel/gentoo-kernel/Manifest +++ b/sys-kernel/gentoo-kernel/Manifest @@ -14,6 +14,8 @@ DIST genpatches-5.4-83.base.tar.xz 2815436 BLAKE2B 5bf3a971d5c14baca0b21a8aad8ff DIST genpatches-5.4-83.extras.tar.xz 1772 BLAKE2B 9bccf13ea0eb0aae0d0b84302b9e9c82986bd60de4e85ee3703c570a5338474b08580095a952749d43104b53d3c07dbb558473e707a13ae12f7da5e5020ddf3e SHA512 0b536e4f8961513f181c5d9c4c01b51656c1e53707cf19c26d858e1a40bb1e8bc9e0bd0b314f82252047fe45a8df3e306e06abdb88f67a6116736e89236bbbcf DIST genpatches-5.4-84.base.tar.xz 2822596 BLAKE2B c3cc3d6435b084e911d1ce12028fb43f986061556db53eb703290cdf2058076a4b670a472b5e53c7cba733d5ecf552b8df12421004b8f36ff69b147b828d4418 SHA512 fcd469482cce45c537e0977a23ef7d8c668bcae585ecbdb33b003173dd601d3dd8666535072bc9caa0ed0cbd954fa3f42deabdad82e5310e5c83cd745a78787c DIST genpatches-5.4-84.extras.tar.xz 1772 BLAKE2B 3951ecd7d506fce8c59b3699a132365c06262fb9b02622123ffd8961fd7b39cd07896f8cb701452fbb5bfdc5d80011ad06c0537957ea0fb8b99cab16743b2e80 SHA512 d3450ca9ed556251e9922ad96356696434ba3d9b4ae9e46c908522803bb48368e167dab77abe8e53767ddcf89ca1516c04334ed1cb182d1bb932325dd1b7b2ae +DIST genpatches-5.4-85.base.tar.xz 2833404 BLAKE2B 56a8a49c1c61693ea344d26fedbb85c2682a16d55dfda57b5bbc5df65d2311c5d92b2d464c6b951b9ef58b04879038ee134e179c1dc4d692308b2eeb3eeb517d SHA512 fa277427a7e5c3c44a681e08ff1570587173a1471de8425013afde212a9aef6e6d68f8e707f52b21d76672a4cd0e6cfdb33c32b78d02908eaa55264517d3d4c1 +DIST genpatches-5.4-85.extras.tar.xz 1768 BLAKE2B 5a5e25a02014fd06b8742a2e505f9998d766c6c95d1a515f0c5a6f3b433163c97c1b8ec758be9bff0c017c947fe4c9c1210fd5fb9d1d838f8571ccd9178d251b SHA512 9ca5271fda3619765363f8fdc5e837b0c6bd218de7d956795e9ef01e9000c85d85f0b49479b8d20a33227008ecbb268d9353c622b37f81619329f358b2fcdff7 DIST genpatches-5.9-10.base.tar.xz 521384 BLAKE2B ea65c4e0977bc07459297883aabba1589b746de718c054127b1cb5fb2d79702798dccd918e8f5542d439d316d3c6c3ae38514155ff2cd5f61c7916eacfaf5177 SHA512 54836cd45b62fc97c857f85bd96ebcb99d5f5d80b3c80c31e70a48e3aa8e54eca5eae802e9a8780c0eb0a1d166c190f39751512580ab10eb122a887d31ad3a57 DIST genpatches-5.9-10.extras.tar.xz 1768 BLAKE2B 8177c3e2b8d92785b9ee71a7733432c783977a4c18f2db282c3c5b079219a911f6c302cad0dc3bf14c886bd3765ffdb2808f353ba0ecb89bb01d522f24f54c0b SHA512 462b35b3ff7a142877d11ddf02992a50043ba677f9f10619a308424f3e4df54d45436bc148fc503581c1c707a2a936ee278b18d95c02c6d5cdfec08f94257171 DIST genpatches-5.9-11.base.tar.xz 580544 BLAKE2B 59989b81c77e174e421b4fd6f570b7b8daf3649c4869eb61808607c98999467c60f9fe0a9f1c798807e9395ee064fd183a3110482536f1061b80349156af1b83 SHA512 5f5570bb06e62220304c235d5cd93c0d7f738bcc978cd1215ba262dd6bc9a0b0d43cf8d51cf36f2f0a66996b79f656463c7a0323e14f8c46899f28b0420155cf @@ -22,6 +24,8 @@ DIST genpatches-5.9-12.base.tar.xz 628408 BLAKE2B 6dbb2c992971cf3ee1c0a0c7a7b708 DIST genpatches-5.9-12.extras.tar.xz 1764 BLAKE2B 8bfbde759342d00f10d6fe12e313d449de35aba13a5ba3564043d0489205eafa709a6481e7249bb79f54c84c759f50ca7f630e2e2bbfebc71942f72b3c8ea6e8 SHA512 274a2d2fce2f446503c4540d30daa3c3d6a86e6e6c206f0a2e1e89ee1ebd496f6ce2706add35ca6fc39df2c0758719faf332a230db18dfa9f81dab787f24eb3d DIST genpatches-5.9-13.base.tar.xz 638532 BLAKE2B 758f41192c8075719abe2ffb7756d3a0a4424623b9f99667a7ba19c6311e8e15dbda735076566843cace115059a8e7adb24bfcbc2a1271e230bd96328e1856b7 SHA512 723867c07a238b9a79b748a2b0fc8716614cc2e520d6ceda58e256f99a837f85c1a64885f8d3dc7904f1d3f8f1b8c8e990a12238dabff2c07fb095c56c44518b DIST genpatches-5.9-13.extras.tar.xz 1768 BLAKE2B dc4a89f09c4a771f7b6011c3b5bd31dfc7a6254b09c48308eb8d3f13b21996e76b2893660e80a6f4a6116f06b3ba74834d8112d4eacd4b53a88a26ce1330dd52 SHA512 07d75cbbb25dd4d51cf3fbe24fe5c5e6430ffc3422c3335fc6916e18903922b8d22cd6d422c4bb38d233200d59971442b0ee64bdc27ecb257f9acb0124df6d3e +DIST genpatches-5.9-14.base.tar.xz 656112 BLAKE2B 5793eec0a89629823c027a92758bae2ef2b92cda058b313358f3487a8f51fcebc80a3a12e5c58bc1e8a98b299111fe22d18d5952382c0151e3f1b104d461b879 SHA512 a53e9edeb5d88685de2412adad6de6eda92f002851cc74ca6329bb63f63cde2f9e42272c1b583918586dd7858bd3bb0b8f252cb90e22713f25fbd55f376e1113 +DIST genpatches-5.9-14.extras.tar.xz 1768 BLAKE2B a99628fbec37aabea2644b761ae4eeb81e2999d3cc9352c8d6575646762a74eeff14b3f9765b61baf4074523cab3f3cc693f07d0a4d06bc50ae13baee2fd86d2 SHA512 eaf3cdf93e8545d663408c14ccf13f38a13fe7e5f5582d63af766dca6cf398cc17395a813d71a0b7bb37a43685b70b1afab1d27ef49dbd20d1c62f6aaf9f28d6 DIST genpatches-5.9-8.base.tar.xz 443192 BLAKE2B 48c79a97fe1201bab87ba601feac1e05ce12f2db155e53e0a543c7994ba8dfcac75b17e315929c0b68b8136913fdf93005690ccb260640ccc31527088beb326b SHA512 c365018bcfe84ff64a8171951fd4f97bb89044633df137926d22bedc738cd17ebe72c26800eaf30171c3495ce2b1bfdc93866112756bdd2207e6e184b5f1fb6f DIST genpatches-5.9-8.extras.tar.xz 1768 BLAKE2B 96413f75c606fe4515d0facb8f0ca784702bb5d83591af87fb4bcf2b6c5e135eabcc55e0e84be9ecd3854ec108b8ed93cff11c41e7efba8c45aadefa291cacff SHA512 646efb1f6e0b9252b0220aa5922b0c0d8f093dba8edb7e40e127680c8a471aa49724f9591a3147925d7a4084af8d5e1cc5f78b0e72297072fd15bd13d1c93e40 DIST genpatches-5.9-9.base.tar.xz 513024 BLAKE2B de77ed5aa32336d44f0a299703ceaf290a6ec00ec8fe80f3ad6cf85d89374bdeb278c0fed143f7d7899e21146bfd6daadafbe2274ed10c3bc9170186015ba772 SHA512 d1c7640fc3510e8d47aa07b13c2876a14f510a30e74d53cbac2d6b564b3258698b833c028ed8e8694b8e4aaa31c899c7ae8023825e57e0b35e136f99e667185d diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.83.ebuild b/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.83.ebuild new file mode 100644 index 000000000000..0c806189a34d --- /dev/null +++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.83.ebuild @@ -0,0 +1,94 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit kernel-build + +MY_P=linux-${PV%.*} +GENPATCHES_P=genpatches-${PV%.*}-$(( ${PV##*.} + 2 )) +# https://koji.fedoraproject.org/koji/packageinfo?packageID=8 +CONFIG_VER=5.4.21 +CONFIG_HASH=2809b7faa6a8cb232cd825096c146b7bdc1e08ea +GENTOO_CONFIG_VER=5.4.77-r1 + +DESCRIPTION="Linux kernel built with Gentoo patches" +HOMEPAGE="https://www.kernel.org/" +SRC_URI+=" https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz + https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.base.tar.xz + https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.extras.tar.xz + https://github.com/mgorny/gentoo-kernel-config/archive/v${GENTOO_CONFIG_VER}.tar.gz + -> gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz + amd64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-x86_64.config + -> kernel-x86_64.config.${CONFIG_VER} + ) + arm64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-aarch64.config + -> kernel-aarch64.config.${CONFIG_VER} + ) + ppc64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-ppc64le.config + -> kernel-ppc64le.config.${CONFIG_VER} + ) + x86? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-i686.config + -> kernel-i686.config.${CONFIG_VER} + )" +S=${WORKDIR}/${MY_P} + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" +IUSE="debug" + +RDEPEND=" + !sys-kernel/vanilla-kernel:${SLOT} + !sys-kernel/vanilla-kernel-bin:${SLOT}" +BDEPEND=" + debug? ( dev-util/dwarves )" + +pkg_pretend() { + ewarn "Starting with 5.4.52, Distribution Kernels are switching from Arch" + ewarn "Linux configs to Fedora. Please keep a backup kernel just in case." + + kernel-install_pkg_pretend +} + +src_prepare() { + local PATCHES=( + # meh, genpatches have no directory + "${WORKDIR}"/*.patch + ) + default + + # prepare the default config + case ${ARCH} in + amd64) + cp "${DISTDIR}/kernel-x86_64.config.${CONFIG_VER}" .config || die + ;; + arm64) + cp "${DISTDIR}/kernel-aarch64.config.${CONFIG_VER}" .config || die + ;; + ppc64) + cp "${DISTDIR}/kernel-ppc64le.config.${CONFIG_VER}" .config || die + ;; + x86) + cp "${DISTDIR}/kernel-i686.config.${CONFIG_VER}" .config || die + ;; + *) + die "Unsupported arch ${ARCH}" + ;; + esac + + local merge_configs=( + "${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}"/base.config + ) + use debug || merge_configs+=( + "${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}"/no-debug.config + ) + [[ ${ARCH} == x86 ]] && merge_configs+=( + "${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}"/32-bit.config + ) + + kernel-build_merge_configs "${merge_configs[@]}" +} diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.9.14.ebuild b/sys-kernel/gentoo-kernel/gentoo-kernel-5.9.14.ebuild new file mode 100644 index 000000000000..84710f3c16d3 --- /dev/null +++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.9.14.ebuild @@ -0,0 +1,87 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit kernel-build + +MY_P=linux-${PV%.*} +GENPATCHES_P=genpatches-${PV%.*}-${PV##*.} +# https://koji.fedoraproject.org/koji/packageinfo?packageID=8 +CONFIG_VER=5.9.13 +CONFIG_HASH=b57160e20ddbe02624d2652e6836b0cb73044a4e +GENTOO_CONFIG_VER=5.9.8-r1 + +DESCRIPTION="Linux kernel built with Gentoo patches" +HOMEPAGE="https://www.kernel.org/" +SRC_URI+=" https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz + https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.base.tar.xz + https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.extras.tar.xz + https://github.com/mgorny/gentoo-kernel-config/archive/v${GENTOO_CONFIG_VER}.tar.gz + -> gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz + amd64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-x86_64-fedora.config + -> kernel-x86_64-fedora.config.${CONFIG_VER} + ) + arm64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-aarch64-fedora.config + -> kernel-aarch64-fedora.config.${CONFIG_VER} + ) + ppc64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-ppc64le-fedora.config + -> kernel-ppc64le-fedora.config.${CONFIG_VER} + ) + x86? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-i686-fedora.config + -> kernel-i686-fedora.config.${CONFIG_VER} + )" +S=${WORKDIR}/${MY_P} + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +IUSE="debug" +REQUIRED_USE="arm? ( savedconfig )" + +RDEPEND=" + !sys-kernel/vanilla-kernel:${SLOT} + !sys-kernel/vanilla-kernel-bin:${SLOT}" +BDEPEND=" + debug? ( dev-util/dwarves )" + +src_prepare() { + local PATCHES=( + # meh, genpatches have no directory + "${WORKDIR}"/*.patch + ) + default + + # prepare the default config + case ${ARCH} in + amd64) + cp "${DISTDIR}/kernel-x86_64-fedora.config.${CONFIG_VER}" .config || die + ;; + arm) + return + ;; + arm64) + cp "${DISTDIR}/kernel-aarch64-fedora.config.${CONFIG_VER}" .config || die + ;; + ppc64) + cp "${DISTDIR}/kernel-ppc64le-fedora.config.${CONFIG_VER}" .config || die + ;; + x86) + cp "${DISTDIR}/kernel-i686-fedora.config.${CONFIG_VER}" .config || die + ;; + *) + die "Unsupported arch ${ARCH}" + ;; + esac + + local merge_configs=( + "${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}"/base.config + ) + use debug || merge_configs+=( + "${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}"/no-debug.config + ) + kernel-build_merge_configs "${merge_configs[@]}" +} diff --git a/sys-kernel/gentoo-sources/Manifest b/sys-kernel/gentoo-sources/Manifest index 49592091a471..dbb808012ffa 100644 --- a/sys-kernel/gentoo-sources/Manifest +++ b/sys-kernel/gentoo-sources/Manifest @@ -1,154 +1,75 @@ DIST genpatches-4.14-212.base.tar.xz 4611792 BLAKE2B 5d828c53d22cbc3ed6d0ed5109151c023d404c084c70dc84ec55f7207056f48a73dd4160989c17104ceff8e8aab66e7685bba89c404cdf6f250631c2ddd72a85 SHA512 f0a15184c8e71071edaf2e31127b0cab65b32005c0c42dc7988550043417ec107df9f625e95122309d635dbff54fe133055a1ed2dbdb0d73d145391594c2304b DIST genpatches-4.14-212.experimental.tar.xz 6084 BLAKE2B 25ac54be062187e12a17860380edce9db19f160dc4f6e92fd614c7df2f8a4d58fd60baad8bb84730ce58a14332eebf06001578c910dd45b082a4ad1c4eb3da84 SHA512 bd885b6bb007b53e03b069efaacda8af99e93d2eca204edd8a7b5f84b65cea4c6720be5b2e6f99aaa536c0ff59701419065c62d5811f2520f21bc37d13bd8b68 DIST genpatches-4.14-212.extras.tar.xz 3340 BLAKE2B e3dd6da1efb30bfa22d3a971731dc438dddd2247bb9d2a645cda3454803fbce6a27698870d27e8160dcc062330fdc0b3ead889427b8db0fa2c59d8175cdcd4ac SHA512 6b018a670c5f28fce087eb7d694fae321fe912767965e397c496b1aca95598a0efdb2b611fdbc856d16c8d00652b58a8a29507570126af8c8706adaa15ed6a0b -DIST genpatches-4.14-215.base.tar.xz 4684000 BLAKE2B 6c5178c01f5ed70becb1c71383e5deb9d4fc771ae97ea0fabc258f24331b8beec6e54bd7c1fb4b749188f03b20d114bb3e43b2131fc3554f71b6601708d7ef28 SHA512 3a9d320e1e4867216af41109b946e39c7a09c5e6bbe8156bf55a20d55e2a901f4ee1f040e60fb8f558995a6f25c73d30a387c392259e354a072674c303e7e35b -DIST genpatches-4.14-215.experimental.tar.xz 6092 BLAKE2B 303863a9332f822e8cf19a35a03265ce1329e8f01f662e912654806bcd6eb42fdf4e34dc888d7d86a5ef6bb4dbf7d5db741787f25a79af0deb8d27a896de61d0 SHA512 af42da059f0e636ef0d93356011424048ba8ed27a1407e6612d9b1652995f34a3d372efd9690da92818db8c1f75a1778d07e0625ed8dcc5d173a34c219baefb7 -DIST genpatches-4.14-215.extras.tar.xz 3340 BLAKE2B c808f466732b10b11fb795f71bfb1113b06b371e35944b0231fb7583fdf17a49bbc53dbb89b214cf0aa376d36df1409e3b9229a255c297f0741b19219c7151c5 SHA512 fed051fbb038907d9c6a53d7f77699fe7f25342cf00bd41c5f482ac5c153480f15d8e343cb1b5f98f0cf99f2605cc349d523327e77a7c34a482c0f9d4d27f01b -DIST genpatches-4.14-216.base.tar.xz 4684292 BLAKE2B 03c819348e14195aa07e731111ffd95654dec323142bda99baa9bbf4ff4ee0401d18849a1b6588dd662c1dc4fc52ad97555d51670fdee696e34e7930c2bda9cc SHA512 54c3e03230ebfc8db5a48a9d291c3b8e2b4b06e2b762bfe0a3a80454a7da7df86adfaee6fd274aec25a74e12635045a116a843f6920a839f917c63f11ed86ccc -DIST genpatches-4.14-216.experimental.tar.xz 6084 BLAKE2B bcd501a52fdba06fbd54a6e72441441b4eb8ae01295f09da1a7d7c1ed54de3bd639a8f9ed02144ff266a80edd1f18c5d2dec039980ae718e78e83578020bc399 SHA512 7ab5740f2bbafad425ff155426673b0f66c3131b32bf94ed784e3ecfc1072944f1ed76e8eb5048feab99c7a1dac0f6f5cb9cc1bd10e966481e02de8dfab125e9 -DIST genpatches-4.14-216.extras.tar.xz 3340 BLAKE2B 3beb784ec623f4b31cf5335280d063afd9256a1f0d6399f52b27aa515941dfb05750ca98b79cfbb23b3eab41fb52fa8a4f708902047684bae8078efc98e87146 SHA512 74907882c0d33b5b09d551523fd4c2327efb0caba38f5b795fa045b6190fc76a7114abc71fc93825da10ba440cc85e1e2c4a6769e71ed84f5202a59fe16df0cf -DIST genpatches-4.14-217.base.tar.xz 4713148 BLAKE2B 0a08958b9dd24ec5cdf64a6a1a26374eb6cc69a284e2f0d9c090679d86ec74ca48952935bfa1a6e015af24284d82ea3e3d906bb66531d54c5c3602a8187d5f3a SHA512 30ff4d11b99caa950623ecdd2b5ee0095dd2159e015219f3311680d75d3fc0ef1c1bfcb6a4dfa38961c40916fcc362563f353b8ae87be044153c16023d155033 -DIST genpatches-4.14-217.experimental.tar.xz 6092 BLAKE2B b473b6244cd6e4b59189499dadadc969e488d5cc134dc1deee7e2a5266cd1dbad94c9bc938f33a27c5081c5efac099a8c1085c29872e15b08e363c98527facbe SHA512 75534f2dda2fd39a8a7417e154db3a3a58c119c444a65ebdfd7c5ee6d84494395d72a8998b16f8c35d8c0b71c8dc4bbf0c9baa08fb642c073ff406e0359874ae -DIST genpatches-4.14-217.extras.tar.xz 3340 BLAKE2B 38d205410f060e5f8020fda6ff3bd8a6bfc930663cc4a0e13633ac82763cc4343a72874390fdc257c74b6bb9f02bf2825f635f8f653057dcf345d80a9a873704 SHA512 8944d0c1aff6dc667e6534c821dc5d2510da404c0887a4888e230684a61df42542cbbf897d63382aaa2cd432ca08579ea81c3b2b96f48d3536afcf72b8a50a4c -DIST genpatches-4.14-218.base.tar.xz 4721032 BLAKE2B 97f9cdc16a356abfde2797a1fefbcf795ad921de4099930358ab3019198acdffdb0f873cf29cd8d859cfc90400b089b1908dc9f5496375a6b55cf3ddd182235a SHA512 b69162c08f2a25e777dc4f59fb66f00080cf27a5d3f4b130a076fefd646f69265976abebc84a1eb80bcedc2b6c2ed774b75878929c62e6338748124d718247d8 -DIST genpatches-4.14-218.experimental.tar.xz 6092 BLAKE2B 77ab57710bdf44da43f80badfa804bda861d6cae31dc49dfce95340d155bcabce4a44268bb91e86121bd7d2a9f6b44c14d36d974091afdda00f14ceb76770604 SHA512 3b45e0c9894b4e2069be3218347a5741710b112eea7e0bdc9ff2cf2ad18a4d0e2627e5c2db2e882446745108909c5f4f283796223c95ba723c704ebc218a8985 -DIST genpatches-4.14-218.extras.tar.xz 3340 BLAKE2B 29f052e3b1a79e7be43818324d01cc80b04006f57da9aa79dac9dc79a6c5451caecfd44ccca58c63202c9e330ac036424cd0f0f777f45960a776e741211d29c9 SHA512 4805e840b0b89814ccbfe204d9ff248374a526120c1c595bc8d0acdf5cb41f134e36ab157b635c6e5aab9fc98a8bbdc56df3c7882a7e3a6aaa6f67e0be8c5503 DIST genpatches-4.14-219.base.tar.xz 4733352 BLAKE2B 3a2c41bcdee77395ae2b19ee4a9e53771795d2b21a9a31c821d20853521f911ceb6f49219fd9c2e65fe0088251aa6cdee2a139e5d3f23f5cd665001e48154822 SHA512 a0837de333740e20a870324638b81708133420e7c9152bb194ef5623f29a38df6b8211686fb13f9b6f3785be8071c1dc3cbc989cae8cecda79db97aaf85d1868 DIST genpatches-4.14-219.experimental.tar.xz 6092 BLAKE2B 7df1ac766e4bda252718f06751aae3181af7bbf68e609562db059577c8d123e816fde728a049a9d1ea3baa4148d9433c5c698c79e61097ec2de2389ea781216f SHA512 1dbee51c8021a3103c64e79684ed810de436d88f3f1883c4d53b1898a55274600da07f452910eece720b0cee1f6a6d32af68760a468a42759bd9b0b15e28eea4 DIST genpatches-4.14-219.extras.tar.xz 3340 BLAKE2B 2a7077ff685b93d393f8c1ef3e7d02fcc3aa69ec209d88cc19339e4a5bf64e29e456f88cd1d49826e4a81537622365cd390884d6a621e358525179c0f97f343e SHA512 e2e32ebb01afdeb67c4556982c9a9abaa26f0fb46d251c07513e191b03429d9c238193345fb4c6b08de315e67d89b28f675da4ef942c30ec4d9ba31d8466a913 -DIST genpatches-4.14-220.base.tar.xz 4745992 BLAKE2B 71ded67b5bf42e8974fc71f3c47e7b7c38a4714f004d0eab1d3fc659318382518ec265d21d36e46f8b5f7ac5d5dbac77bfd5845c45c0b10d6e8ff83af662df1d SHA512 5ab21ec37af7eec0a6322bebd6ade3043afa449ecf906fa36375b1b8f6afffd639e84eee9928916e4d5c2ba862e9ebd85b9aa58371e4c633666bc524efe05d82 -DIST genpatches-4.14-220.experimental.tar.xz 6088 BLAKE2B 5146d0b4a651db52fbab2fc7dd90805f81e790ff1ff414cb1db062c23f8cf68bc136f9e2176abc140c3895ba1d2f3612939f06a5974686c6ca1673ccbc9bc785 SHA512 d27f48b31bcbad863d7fb4f58dafb1793e50c8afec88c96e42d5973ecbd6ae6aecde47a0640d4d5cef659356bc2f4326b8a0403ac694cbdcc7a866fa686b4d33 -DIST genpatches-4.14-220.extras.tar.xz 3336 BLAKE2B 3641a778efd8776ee3702ee4da9ad55521f53bf9260c0d8712af3e3bef19b51a7a54ba7708db64d27b1a18003a1dee98594819680ea84980aa5bb174675cc76e SHA512 ef25506c1ddde134a1b95c16450b06e4d9c576e807b5ab9859d8a169d475fc12d1d4181f712b96356a1547c58faa652066a9173b8ec9915a71e548b3bc11abe5 DIST genpatches-4.14-221.base.tar.xz 4750680 BLAKE2B aeb5571c47653ede67e1d67ed9e1ff7c0b17fea0f441bf8e629f54433efe846ad5974b47fddf63ae811a0741544e80de28eaf834a652b59eddbdfa116bb589cf SHA512 be47d6254f62558ac6809b207d2608bc9cb1da26a85d0c029edd92b8fe8e185d4095ff3bd405ae9e1f778fb445b72297e92ec003fffb93b6376efd906a976abe DIST genpatches-4.14-221.experimental.tar.xz 6088 BLAKE2B 99e0b83c166a1ec9aea2b95f3a5436598b8208b394f82a59a1f7bacf4266425669f5d409831a8c56a229572450f71a41b4dd9648fc5d8c09449b1c1e36f7f8e5 SHA512 da0125d15a8a51f66ff81d996cc06bb2a9c302d2c2558379ce34a1705b2eb691706e475da22ce98b22fc8022182a265015fe8e99c281d8954a228c7682bfde3d DIST genpatches-4.14-221.extras.tar.xz 3340 BLAKE2B 79c2c05b9c4076c50206e6b518599ddb74ebdbfa9dbdf23d63c255745a2d399129a5501e72012f3b8d6982db55a91ddfc14e590d5e9c5feb95a113f6df46881a SHA512 a969f85e6a6fc7b55f426138738759805cb19a8df3e27c0d1c5b1e6235c61fe3ccff95cd98dbfa2aeca94008673a83be4bd3c1acb693ae3802560b87b1e47d6b +DIST genpatches-4.14-222.base.tar.xz 4757988 BLAKE2B 4f222a5e9f0048ffc23920d45368b8b313506296f103f357207255486884fdff4ca4f239dae1b569e2c99de2531032303ad09c6b9e413b06211db49dc62ac557 SHA512 10f9ea678f63598004e438723c3ad7056efa9ebf3f9053910f4c26c8317bfb143778ff3531ed621d2605badf992daa21cf4decd0aea1b4f5f7e337ead2fc313c +DIST genpatches-4.14-222.experimental.tar.xz 6092 BLAKE2B fc3ac7308e7c9a2d9798a60d896f58a41f49b7590d6b70adcb1ccc09d2c42fc966f1b5f5bdafcdcdc696f273edd71965fe72fda35f400c500de7cc360d8afad6 SHA512 1d28aa070d70803c9c62b8dc6379dfb864a7da126925530975d4dda8526c93910fa78eb496773ab9b21f456e4cb33f9448abdc41f2c1d35e99bd37dc00a797a6 +DIST genpatches-4.14-222.extras.tar.xz 3340 BLAKE2B 8d09a01af12fc314c3979c394dd457e134d5b9248ff6a0f4332f36b6009270fe739ce457530887435f93bdab5a87f8431947c3141c2097e5a9a563b53fdb0e40 SHA512 912b7dd0f5e8060b27532f94b8e3d683ebc240dbf81f83af24cdc198753bc97e571fe5e83a6d028227e86e436bf5afaab7f9ba7ce7cb449e17bd473d9d135bd1 DIST genpatches-4.19-151.base.tar.xz 4004372 BLAKE2B ab830d3f5ae37f48d4aa71e6b9913498397c00fe17630184b7283b42415ed55b2a3fe0d9d3c619923f43c8e244b476ed28916f0dc2e44c53dc8022a21ad152f8 SHA512 0b7d374b9dbd90f99ae73537e543d19c253d219ffea77e56a1c6825516d94f5bf4e2d85323f5a7318e0b8b5233e8b7363fbb2962e60c09b5c9825b1718bc7ae9 DIST genpatches-4.19-151.experimental.tar.xz 6976 BLAKE2B 136a9a1f5de573917000f3b41f28a6bf84b61588cc8d61824d43df5fd191feb4608a55e5418633f18df9002dde899670a03b9713feaddf6b60b64c207005c256 SHA512 1650b33e6a3a431d91c3d9f054bcfe6a3bf3a93d2eda87beb23af93846f4b04ff8b67f31e71361584bd8963e2cacdecea7c33ad15e273c3b708aa353467afce8 DIST genpatches-4.19-151.extras.tar.xz 3316 BLAKE2B fd6adfc4ce72c3a84b4821c6adcc79cf421e30609c1556dd9534b851faec4b5eb92210a48d2cf5e3c4a34781fefd4101ee6ede03808bbccd5aeb5875cc9d4515 SHA512 288a504278449d0646377e9e6b5191787fc218d5912a2298b7243a0cf8cddb21a7108449e9868f36c6e97e43081e8eafa880093ad1d87673f670042e31467e59 -DIST genpatches-4.19-155.base.tar.xz 4125344 BLAKE2B 0a0fac02c2531b1149aabbc3c70056d7052ad1f2980370105cd8070aa9f7616ee58ae59b87722251262d6d08c64b2a6c2880c9b94760fcc000255729c2108211 SHA512 74c71abcbf08e8b0a64ebcd84fee3702800c32baf71c5bb275fdbe42a4e955cf2e587768985043ec87c1c8b1377207f935ccc2e8cfd332700d3513f45e00b89f -DIST genpatches-4.19-155.experimental.tar.xz 6980 BLAKE2B 8bca30a635f6507c01551defb6961c3c1aa78efd5d0dc4b1337a696e8876159c0f45d5c6a7da83be4ad0c97f06667fddec2207463d87feb718ce723aef29f6ef SHA512 c91b4861ad8d2cac1420bc0830ef04fbab57e506fd6a454580ecdb6300fcfae5471bc0cc513802af1543397f13ec728687364a874d2b0c9e11aae67679652f3f -DIST genpatches-4.19-155.extras.tar.xz 3316 BLAKE2B b882d1593bb5111db6ac893ff7b0960b365dee2584f4f1f31ac6ba2312b2e80e00b2d22b1a6461a1f962647808e6d4a12617e31e5b764d6fb90a6c58aaf32a8a SHA512 7982dad9fbe70947d6ced5cd19844db9f23b428c5b0f0f9981dd3035bfcbc14ed996ef049140ef9553693551acba0ced58f08ae949c1fc20d42f2f4fda3df188 -DIST genpatches-4.19-156.base.tar.xz 4125856 BLAKE2B ffa5ba0b1eb7bbe11aa7873ec05425bcd2565d04c7c8014935ed967376180d42d21c2056ca73d0cb313d64003f83f13d2f660292eec4b612535dda406273ab04 SHA512 746b3ee2ae22b9a33d1a62968e23b0ba96063f9f517f7a38b610e0c9e8efce9b1070b1ed7af2e7007b4a80416f1f94ae934ce929f79b5026a257d686f1532b21 -DIST genpatches-4.19-156.experimental.tar.xz 6984 BLAKE2B aa25d49fce3a2710e9f0b4dc5b858a8f047e628befcd34f187eae802f4607e252db8d06d7f0ee9848b59c09dd4e3264f2247f24257e2712957d75e169ff0c601 SHA512 c873843b86a1d8dd345e20d4bcdc404a7e449758f2e5e5ffd336b949c5132e13160ef40f78e83ad9ba2318eefbb7c5c6d5df18b60454ae0a19b9158105b4f796 -DIST genpatches-4.19-156.extras.tar.xz 3316 BLAKE2B b09dd535332748d61bdf246b8f352dd528df2658dc61cd0459158997764bc89d483706851b29aca2516ddd8185734ec9880e1e2819c6d88b7901666a25c5f60d SHA512 5f4ddd5faa25bc159227163a8d4a3c341a05dbd1e06401e7380d84893870084cfc2258a19b47bcb560fa1669bf444fd5faeed20b4131575e9af4ace85aa921ba -DIST genpatches-4.19-157.base.tar.xz 4150048 BLAKE2B dae9ffdc5c54bc6c6c5186949fc0fc8857ada76d02df699abc8dbc575e5d465eda1cc227811c371eea84ccec1dcf8a0a1c74bbf27568015a3733bd53580c12e0 SHA512 0dc898835f66858d01e8d693950392d9eb2369f51d245c0562757e3be5b4734721212d3593bc28e36988627a6f71752c3fb6285728449550376ef5558486625d -DIST genpatches-4.19-157.experimental.tar.xz 6976 BLAKE2B b761a8f50d59400bfbfc9afe16cb8f0f5a3ee004c92229c5b9d8c80037527f0e10bac6a5372c45348ff4de46e0f359b7f21abcc837acc010414802f59ede0970 SHA512 ea6753cf8154f54f786a9fbd02ea79ed05353b3a23e8fa20269f901e5cde55162292716d06e47c9e290766f1d7a180dcddb51f5c84b3e3d0ffd8742f16d47be3 -DIST genpatches-4.19-157.extras.tar.xz 3316 BLAKE2B 0a52c4b658e41c06fca03c3d9fa7c9154a191d909714a03c93c7fdebba2a0c48b5b5985f0ab039e1cc9834ac1929def3937437a353807f693ef8867e28ebc48d SHA512 bd95c25565981a5c18aca01b45d35a1c53a08551212639e5e826c002c9edd9accccf6b6266950c537490fa953f1c9fd81c43a3e7b88816ed80e47811da03cf20 -DIST genpatches-4.19-158.base.tar.xz 4157828 BLAKE2B d077a99a5d574f5666e9021d3c4f63a84b5135941e26356a02908138e22ca91438444a3d980fbc4878d56ea6d14b603a52b42c64b04e36ea7f93ea77878fe18e SHA512 12b14f66cb493fb78d4d45e5c2a0a521bfc702222cb6f9b35b1ec52cb5601035ecdfa8e648252435e81bb360ae793dd95dc5f5ed26e95fe4246b1eab48a2b917 -DIST genpatches-4.19-158.experimental.tar.xz 6984 BLAKE2B 55ccb09443c9bb5ba233fd81391726ecbb8a8fc301a9ebff74f2cd2db8d34a554b3c8e0ddf5ea4826c550ee437a8d37c279c6701adb01ddec39bf9765134ab15 SHA512 2c5df15ee119b79916f236df30ac084721655db14abb787f87295b8ea4d607c7a02189cce273f04404c77c6ff93604e146182d83820cec1942e34f1d1f5445ef -DIST genpatches-4.19-158.extras.tar.xz 3320 BLAKE2B a0e1ad33e71fb8b22bd7136d53f302642e2295c057d0c21650b90780c5d07df1d872cd6fc162547c8e01401ea88b2a9e46558f6bef131aed5eb733235fc4bfc1 SHA512 4925caab41d1214409c86df76d7d55d5be2dc0034725242dbd6da1ba031b4a2a68ece28eece1942c34ab42f366b99c9a55ccb1ed9201fbd4255009b7cdc65cbb DIST genpatches-4.19-159.base.tar.xz 4174792 BLAKE2B 1381a2531b6297e1f76af70107c08a3b7b304177b14a1407ffc41a5851a4249ec4adf5ed00539542c97a0c8dc0cffdb20c3681b9da17409cd9d4ac711b353dd8 SHA512 e75991fde39f093c77b4e7f16aca7b24be47e1e438df7a60a97e0db7aa14ae6c0ed868685da0979c10ce9064839adca84c76a6ec87c1fbe41eed7a20788ca776 DIST genpatches-4.19-159.experimental.tar.xz 6980 BLAKE2B 62605b1fe8ad86233bdfb183df2019dc4d6c74243678f5aad08167ae67b8e0dc45be7a33cae59a9c30678c986c9066722dd32ff18ee572d9ee5f7f2f51caae20 SHA512 240ecdaecca79bf417b080f6ea3dd2cad113694d2f49ae7a9910e26250f381721dcac0804b3e983272a5ea66cc1455cf94c668442e98ce5938868fea1913050e DIST genpatches-4.19-159.extras.tar.xz 3312 BLAKE2B 480dfb15464c46ff0cad7447476ec66535c6b32ea9ca822ef7f8911b4db7d389c6bb1d1b80811107afb77e290fd4c887ac1786a95729c58673180324246d655e SHA512 8d55a3f9e1516e32e95719a5c9d5c1018bbcdd8f2412b138a46da1419252d9e088d2f1071a5c44dea969bbf4d93461c58edd17ca1b9ef835addb9bd065eda259 -DIST genpatches-4.19-160.base.tar.xz 4190068 BLAKE2B 9239276be20d03962b0d823c7cc1a83167ca3fa4f6367268ceca8cc597740ce1883fcf08cc78e5b2298bca41854f8524ce9504b0ef4d8548096b953eab94e7f5 SHA512 921de33214f912555a93e07f4703bb46cf20e5f566ea5cba5fcb6bdce6e0f671a94c5dc17b89582e8938e1f1a6e6e59954105ffa6e01e1dd141e21eaca658a7e -DIST genpatches-4.19-160.experimental.tar.xz 6976 BLAKE2B 083754458a1585098c4831b954c041226fe49459a9aa06f79b16292994d2b2a796451f9f337508733ad14bea411b623c67f3950ce36aa7d04dc0da2211b27678 SHA512 9b0723f60de46805681fd57d167a4fcfdd7826e8479f5bbda449727e96aaae8242a2a275ae8f71b04eb4af998b6726830b9c66d2305f438c9165de4979066902 -DIST genpatches-4.19-160.extras.tar.xz 3320 BLAKE2B daafc306f8f634acd3dccd2726340b0e52e53ffd94f6baec5ad15f7c2ad4a908bbb6690c6b188141d587998d7d3d8dc1141d48475f4b9d15890f834f026a917d SHA512 da7e4dc03410ee8342a493f5ea3e74eeaabd81db667e3d46c641a0bb0ca8d124b324d5f4fe921987f38e2c4bfc35bdc16b6772e4e43410497f2d862a9270c209 DIST genpatches-4.19-161.base.tar.xz 4197272 BLAKE2B 4302320718b7c1f64afbd03cd6c234217c50c56f19047a5822fa3d7ed0462dd65f83768cb933a4034308eb16573bf406ba8bc5742e0cfc5dbc1e6a2f0aed3c3b SHA512 cfb81ffd4bdfe26aa8f49ea627f99427b0ef49a121d2f657c40012a75b1ddda164e5e551609eb4b032ad950eb670515fa6373ba997bf030ff727cb353dda9da9 DIST genpatches-4.19-161.experimental.tar.xz 6976 BLAKE2B a9bc282f1a37effce76f5abd110c933d4bbdea27792f32b9bcd73d4bc43b3348b8b993574b500622819d681df59f0b3539bae1a981ab49bae09f1e4202d6b062 SHA512 c032968d4db4eb6efd522a4f67f5917ad457a99ebfde9c8eee5f47ffbabd7be6d9b391c9581ee73808b6c1965b3011c87085d2f5c221289ab025ebbcce390a43 DIST genpatches-4.19-161.extras.tar.xz 3316 BLAKE2B d59666d9996383eb96958aa4ab299583196023a61d97071e86ad1b51a428b349b610d07845e2d8ce6563981d8d512dfe726d2f183ec1bcad47e9995a1ce9e599 SHA512 6d2bc20cde1896fa4c8bf9c276f58f9981d84b79baf1729c1a32fd7afb2a6a30b0b64f88fe17c87cd6de29ce891028245b6d388c0ebe95bf6f8f46ce64ce3ee3 +DIST genpatches-4.19-162.base.tar.xz 4205180 BLAKE2B 8a5d9c01b7e361acd9c6b5bff466959db50823bc3aab4f794b3b6d25618e8cd170a1919274ba0e73f55022f55a2560538490e3ed244a60ebebd3a1e7b9c00633 SHA512 e5c7489f54eb4afc0d86d3bc59fadcfc43f1fafd7c0d6d8ea53213d3dddf4170508c8ccc2c88498fa9489431f302de085343866a68397c9e52a4df4ab8875f7d +DIST genpatches-4.19-162.experimental.tar.xz 6972 BLAKE2B 4a1cf973c9e85b642d94a81202d3a0f7725cb51aa8f16078e0e5a2291ea77fe149607177630d6ee0b0d4f8b14abdf30b54ef051c290f2544f5ea40cd97562f5d SHA512 42d9a73c661230462ef127ef01ba90848df181ea05fefee43172d65e3e39a9166919f38492f58fafa68efb39653ff816bd33a6c89e68f642ad081f4fca5cec6e +DIST genpatches-4.19-162.extras.tar.xz 3316 BLAKE2B e5322821a492848aceb2ea926d5814604c811111d84b0c89023dfc5bfefe96d59c807be089df60e74ed48f539cbfab5c435d9da13352a622d2fd978b60d9bead SHA512 d9a844d613f8a22a311b6e55ec9af0929a3bcf93e33c4c5715c699f388b7d0fb909f93e347561f2a45d36687072a141b862225deaa5ab0372dca75b50cef8608 DIST genpatches-4.4-242.base.tar.xz 3875244 BLAKE2B 68290360fa72bdf29eb6233ac762cb74d3cd8839f4e46d972e86c85944468f15ebc183efba6f8e28d8e64b1dd5568ab81f1b42178cc3606ccccda82566fdf817 SHA512 daa0026c97721043963dd02b9996c6a84ffc82e046533ab20b70520b3d7711288816ae3a98bbea671ae0d06b675d727dc508a38d82de3ea126ba8dd797c5d680 DIST genpatches-4.4-242.experimental.tar.xz 83280 BLAKE2B 1af36c13ce2967a172436a3ebacee54e46a49478a5ef01aec66c428a9d885b638dbce2eb15276a602dc9d90866175baee5b04f3e8ba6e0478c9a10e23a2062cf SHA512 e9a0ebd1016b170e89889c59d0020c6e3a28fb0576a13f65b5adf764c950df65d64f2cf8a75d8e5c09131c8429612e112a4a452aeead3e74c96ebd0a8b12039b DIST genpatches-4.4-242.extras.tar.xz 1788 BLAKE2B f511bd0b8c25664b89951a7c990e1649ba765043ef6f6b37e0f5a7b63a4c234f0366319323cf8c463faf592190f226b17958a8cf515c307262f93af1e4d62085 SHA512 2822691dc7ed45753fc4fa972e1941bad589448c450f6948678c64e4078f50dc24abb0bdb9323e0e02c82e3dfb88174376f8f02cb54bcf52b0b283a905c6b4ca -DIST genpatches-4.4-243.base.tar.xz 3897212 BLAKE2B 39da7587b56f10fa0dc1911af70196510b5045dde1add0e3e56366f346e2c6c9323aeda5840551060a5b63fe1ce781512c341f94d19f3c7b75d32d707a07a13f SHA512 a759bb657973da2426e1cd7e05ae7b896d788ee1c1198c1a81743790be2e8a806a7c63d2f20638c539ccd4f91bc64ae13db555e22d97d3abc78b367a23a1ed3a -DIST genpatches-4.4-243.experimental.tar.xz 83276 BLAKE2B 254178529584c3387e3abd5f3ae2a1866321da37707a5a670bcd6adec08ef454183ba61134b9e428ad6231cd6034373bdbfe76a2a459b052a2eaf559b7eb0960 SHA512 5f8c531a2951c286a86ad7d2a521c9ccc5645f05795054316f6046d04ebcfe93c8bdbe60e6ce00fbfb80a810340776c4474baa09cb7ede84df49f8fe3eb894da -DIST genpatches-4.4-243.extras.tar.xz 1788 BLAKE2B c66721aefe5d211d27b0a38f87d9f5e939d3df049bc487cb7cbb41c7af543d0f88e9eef72e0e2d57502996a4236fedfd2b8c58ad20da70988f7120dd34fc15a5 SHA512 d4bf384be303abc3c7f885fac13554ca64e17b7cb98da5c9303a2193636b15990c69309c3070ffdb8ffa4661a9cc50c6e94e5d22851d3e1560849f4a6ae01026 -DIST genpatches-4.4-244.base.tar.xz 3913864 BLAKE2B 7111c9f20d7e1abe6bb517368eba06cb41216a26ea55b200e1380b8a01f9861628770927727b90fa659d0948b00c38ff811e0fe72c424c66c713fb2ef84e4241 SHA512 48dc04d5f376161d5c01506ec87746e7d230cc2d2dad4082e144285650ccb506801d1a44f0f66115f644d0cbc750bd3e8cdb2fabbbaa4b2cdd222fe767071b88 -DIST genpatches-4.4-244.experimental.tar.xz 83312 BLAKE2B afc18098f8b69703fb669eb5d23c25bcd9f07848d8b5b472ccdd0243698df267e414653ebe7b603d8c372e96203bb1e8ca0d667d3b02715c3526135f9f7da738 SHA512 4903a5dc7fd76d803b16299cd4bcd10430e01160c8368f75e65a59578144b82323acdf0bb3701edc547501dadafb181f75958509b9f2ffdc22f587c0febb868f -DIST genpatches-4.4-244.extras.tar.xz 1788 BLAKE2B 7831a24528769549f702d933b63dee218573ed29e2a37792d45f6ae81b72e86b608ef40a5bc4f0cf2e9869a516fc2d23a5b974de3c0744edc864e877610aebb0 SHA512 0419f5cb87d2683f6a83c525f23d0e42766ceccad94c518a5738042507d733cb4628e7e35148689b93ed91f8ebd78c8923c4d0f6dbca9c6d7738d6d849d817e3 -DIST genpatches-4.4-245.base.tar.xz 3913968 BLAKE2B aaa2d84e0c442cbad81456ede5a86da8ee7d42a1fefa60d551386c6f9356ab10431cd45b002b0120f84bd477c26e8396096b9bdccd704f520875d9948f97894c SHA512 c1e0bc7c3edea2eca0e597d1f7205b8b0a2cb2014ecdaf529a67d031c844d56f4ff08d8c9368839ec4b33309e276e4abbc5b501095f9b292a0aab033d3b63486 -DIST genpatches-4.4-245.experimental.tar.xz 83296 BLAKE2B 4c7c80e11f78b0601f2248180de05b5de7924ea8d274a81e3f663523d0d8cc77667d1c6bae074f62dd04652055bc7d8120fbe6a6fe9ea4a41222b669717c669d SHA512 42913dd7b8467f0af20eb863dc04e20d916d06907b4aa1afb218652b9ff12b68e698787772150063c6035924a8c87cd91657c26c31ecd45dec8b9ee7a1cb596e -DIST genpatches-4.4-245.extras.tar.xz 1788 BLAKE2B a581faf05ea1e67cffa42e090d093f7690a6947930b1a493b75111e82e2ec0bce9a5904ff7c057ce9314167c4340560446e1184b37f71c0f94afcc2ac604e79e SHA512 c68eb0dcc3c84b88b0797c4908b7f0afd039ab4ae28336197b172ae7ce7ccb2cfb37cebb44d6ccd4d7525935e9b667f573d0e34c7358f342378debfb3d56a57b -DIST genpatches-4.4-246.base.tar.xz 3936560 BLAKE2B 5cba2873f98ef0cd562060de350f56a4712b5ef8b1e08691abd8d31e6223a183ef454a6650c037796c36a78572328cb957e06add622e4b3186aba84320bcbc29 SHA512 dc259b2c2bd0395db51f8dbb7bf4b89b07af4eea7a22fe6c415de82161a2744878314133c5bb7812a3a5dc8ff3bf07f3e004bfd43db867617301d6e1c67f969d -DIST genpatches-4.4-246.experimental.tar.xz 83308 BLAKE2B f1b68431c7c5fc728b74b2f9d623eef98c5495d06b3c2c8c6595f44434a708b5e13abfc3f09ef6ac47e1a80dbb9c155db95eef59be06d2847a4191469946fb87 SHA512 9272d912654ee411a7a2643a8ec9df800919673f105c2c45f7bff695b45fd2618fdbd55f0f84662e2b4e968008a7ba7cc92f7b696fc93c982ce00e38ecd740d2 -DIST genpatches-4.4-246.extras.tar.xz 1788 BLAKE2B 617fbefb31fc9f1d9dfddef678927a2803001db7d7abb995c6552ef48863e9998bddf270a3504d5da37d398cde62c48d681bd633bb1068d287ecebaf8d19a1ba SHA512 b493874f8a718ac17c2d2325175270e915906b90681f260755929f37ab0774fc8389745591f7beb1ade55d1f4bcc99521ef1b7e88de0205cb40b894185a4ea32 -DIST genpatches-4.4-247.base.tar.xz 3944048 BLAKE2B 2a9ec0afa4068a125f4a3d52ec2ff7b793da5b8b51361fc92024d9293caa4999e84d854adae02a83e9f7861cada38a6566b51d9e4ce5aea91d2461dd71ca9ce7 SHA512 995880e031ac7108dbdff24ddc5b5ebe47460e715877fa32871cb1df651d0d1eadc2c00a759d93347f6eef95f1cf08b9f51e4095ad384de3c70837015d80701b -DIST genpatches-4.4-247.experimental.tar.xz 83304 BLAKE2B eef456c03cd5d4e0c228c9320e8f4752dc3a593d972bd36f826ceef25dd0396e7cda4a68ce21d17f60232fe1877f4ea79d2e149afe2fce0ee205c855273dd520 SHA512 9bf85fbf97a053151fa3095a3367deef5a448c02407ad52b646d88139ea93afa4016931fe41146e424bde8a142156b5e01fc06f4db0a9af92eccab2ab2ae1d18 -DIST genpatches-4.4-247.extras.tar.xz 1788 BLAKE2B f0227bcd6db73a2469f29830192ac10625449703fb1dd43291d7f1713e1dde58641bb8c759af1e254779e294050059f1529236acb116a7cf1d37f3e175683bf2 SHA512 a11be88711b2049c7d5a8fbf5461e200965301f91db72c56dddde0aae7a86cf780a8f2fd1415991a0092135ded006a467fb3318c00f083a67f9019b828b07ddb DIST genpatches-4.4-248.base.tar.xz 3950896 BLAKE2B 86c1c74e41d3b450079492d26ffb773e9c78bd69e128869ad90938adb35e00efdc55f6ae2eaf5d163fbfbc592f6556d4cabcfdb83b7c874203fa02698986632f SHA512 266467cd2a82e51ba8d388540b260e86c058de48761c083e6a6c3dd37f7e2c6b2d4a3901b030e69d0eb7a5b13b323e141764ea79a9d5637d7a3568c6672218b6 DIST genpatches-4.4-248.experimental.tar.xz 83320 BLAKE2B 1f30185954ad3247e5cded8074f4a28350116d3ce1006b717de63842d9cd5cbef8241ce29e3ec52aaeb0fcd08082502a722ad2b618a26778d2553d9999530c72 SHA512 e5b5401e6a47c34a5eb495f317f4db9aac2c43676e07798d385b947db179e41e6e462fa0ef577100ed21a8a7491e7387df77a8c1e7250ce45e887e65a9d1bcf0 DIST genpatches-4.4-248.extras.tar.xz 1788 BLAKE2B 3526b5cc83cb4c9fef68c4613d23c44acdfe84e89b46a3d50df90b91536077ce76973993eb6469947150faa2302ac1739ee9824264903a80edf8c24f763b7553 SHA512 e7e63456442b7fc51b3f3c1aec0512e0598d6e85cf5e0a2ca2c2046e86f754932900dd59b4f5510cec2a782f4c806c5b979cea8b13ae2fe455604efb478ac985 DIST genpatches-4.4-249.base.tar.xz 3956436 BLAKE2B 3856750716046101dd6ff4096bc6c9c42b64f2dd0e8ac27d48da990ab4d143ff8f1065ea57de0f9345e01f654021cd416cb765421c5bbf799062baf65fbc6e1b SHA512 9b482260c043a176becec6469a7ba383a50de11b29a42ed33417258e8a95ee1bcef1836d2e3d8206a4da3a1bf7107f2e5e187b0859fcd674b7167e2c75ec5de8 DIST genpatches-4.4-249.experimental.tar.xz 83284 BLAKE2B 0f77215e35d4a2e2e50d75f6b7e2f39ba18e4a5eb3e36fffd35ebfd306c91b74a2abf75f1b035dac9d34c2e7c5c66051dd25b05d5d9a70c3631f651efea7b7a8 SHA512 6faf18e1d7f82243ca14c0083d9c5b4aaa8057672562c1f49de528c7c6c89a66b5178186cebe7c23c17ba85fd5cd37b50087acc8c9336d5b69f878c3570a45b8 DIST genpatches-4.4-249.extras.tar.xz 1788 BLAKE2B 5f5492ab8614466053b5d09f7445a9b051775136620f1c12d423ae6d4c0052f92d456320ceb4eac1253bcb0d759e3c50e19cb67ce3ef6560a20edcddab5ee2cc SHA512 577c5f842d33774b522a40b810dfead1eb484e109a2b1cbb3fab84a080b566a565dbca86d481e0250688b9317abeae4e84c9bcbbbec9821c9696f77c21eba06a +DIST genpatches-4.4-250.base.tar.xz 3965008 BLAKE2B 820bbaa5c8b3bde5bdb8a665e0d1a300e5a23ec5962bb1ca175fa9565ff7f819fe911d778975a4f81fe20e8fe3ea306075e3e556c7a0113217a5ecc76f897e9a SHA512 eab25daa5b7ee22344981760fbadb39cd878c777a27be3b621e015066762c8313f8265612e23899b5b0e416a125fc8c102d2fb9be556fa8ac34f0eaa154d64c9 +DIST genpatches-4.4-250.experimental.tar.xz 83300 BLAKE2B a536b3e7a2ae9390d89631ee35082fd27b46400ebc766929211db8ec9d105968dee1c100b68bbd26f857f77079e7880a3f6ad67626204c0ed9b345463302c10f SHA512 c3121d2a644f5e5a12e371db3f9a7512a7e073a99bbb5f6162fbf91e25089c2908203b5861c79e3b786b0649d0cc915d16613ce494cee5d383a4be7501d5fea3 +DIST genpatches-4.4-250.extras.tar.xz 1792 BLAKE2B 092abb9a6802de32aa3b6e0e5b136817931886c2eee23c1972d79680110372bee8f7387bd783b02e2837cfe6c02ae2ee6c16640130f061a0bf4557799c80e58b SHA512 660ed03c99099d18d9a238f6d14778079dcb2cda0a7ae86886167e8f8e23876f5122608ab564afa764b03e5234d6395f67379ebae6391285b12475e5d142ca7a DIST genpatches-4.9-244.base.tar.xz 4329708 BLAKE2B 564e2a065bf6e017419b74fb8485194ed4b4f4a0025dafefbe7c9feb0fcad78fe7f1fbfbf5c6b2f12a9953bfe91f98939f495f49052bd8a5cde67a4bd6df0443 SHA512 03d7599c0223162d33ca398807086bc5c5f7b56d08f7e82d32c17b630348f3c7fce3505d02d3ef3524e9b1ca85228196c989dc4cbb56e3398a56d5bffd18a111 DIST genpatches-4.9-244.experimental.tar.xz 106376 BLAKE2B 22e39755ae9122137ea20037048fc493024f23cefc73d46fac6f41db903ca217c214592d9a3e178a0669f827c1a5ccd7d0bdf5a7fbe9046205b436ac2fffd224 SHA512 1e3f4ef55a3321964582c8ec6d81876977f2a6154bd1a880a31d25b1bd73ec6f51dd4ab3425717bad973bb886f376ffb65e58df4048a6d86823c665c98ab2c15 DIST genpatches-4.9-244.extras.tar.xz 3340 BLAKE2B a04e319c89064205c0e8a5308fcf50e5bd6be6b77630cb4cd8b81fdb3dfe7020e78cedfd297125e9c7235b45291f6973fba53fe31cf75b200fee61f7a62ada2a SHA512 5750914ef1564766c3d27f3fcc814311b021690647c293ef58d40d09f8737559ecb235b3632bb18c307736dbc96cd9b39c53bb351c94d204295a273b60b73cb7 -DIST genpatches-4.9-245.base.tar.xz 4356128 BLAKE2B f7e465b696cb27302a2a903e14d44339aa2059023c78606f239dfb242e5ee8448d5bf93f9fa6560bb7252c69060c64dc90539d1e60f82b26fd93b027aa920b3c SHA512 31fa0f1fff41d966f1b43e6a5549179715544aec5415a35587ae04fd43c195d229cee20ba5f9616484c07ffff2707960736daa2bca7114ed5cde22b749fa9838 -DIST genpatches-4.9-245.experimental.tar.xz 106400 BLAKE2B 12ec175a63bfd0801efab540fbbe8a793430789193e4e8616a7901be1810d5adeb70a4b55df5df1b9b4b2182f1b297aa578636ec02ef714cc344939facef4547 SHA512 b80b20c9d5367d2f66c2c0f047e814e4b15d7e6d9d29d2b0f1e40d6dcfe7b1927b8188e8b710d10c423d90257c8f5b418d2e37c621057e15bfc49a29579ee299 -DIST genpatches-4.9-245.extras.tar.xz 3340 BLAKE2B 195f32f3583903442da535a91c2e5fd9187dc73acf23aa91bcf4008725078654f4208742433e5299dba2acb1bc2dd503aa6d5ca50b8f38ece82d9700b8e3afb4 SHA512 8595770ad087a117c749616b26590911338fc7cc1702e6284be363a41ecd0b18fc4b2f46f15502805747796f26d90be6ab6464bed2a25767843bc5a8684e3cd5 -DIST genpatches-4.9-246.base.tar.xz 4381592 BLAKE2B 96ef1e77586fb00f3bf5e18208f7d2b12bab1fed1719cf70acb0baccf1d42e1a1fb766a5625ae6c9715b210a925294f669d7fba12762b38b3cbad434f570553c SHA512 47e86318131c20695a683f3134d7044fea0c54c6abe7262943d778f38e5b0b6f9d26088b9b5af8b574bcf6cea9cc1bdff000d206669fc37d37d4d868becbf8d1 -DIST genpatches-4.9-246.experimental.tar.xz 106396 BLAKE2B 1747a6583cdcf53343726f9ab0fa59e50936ee5bfd3e063699a2ae5c04b0094ac2fe78f5152cfea4eeea5b06dd6479069bfcafd4bc0eafe9fe73db89f672e847 SHA512 31d45818a2f226d80deef97a249ac7d0bd2876d71bb439bab43451d7389e8ef1ba335d0af9b9146321d5a32ac06fb8c85ff3f1439ec080310a0e415361007277 -DIST genpatches-4.9-246.extras.tar.xz 3340 BLAKE2B b998addeb767cf0baf56b20c042cc6dd7ae5b0d7be1573de126e34a444a980841106dca171e61df0715f7bc04d1cb57dfd7a2f276444f52f94be3ffcc47f635b SHA512 16ae9758e015e6afe9d9a70d6be14f01afb2a8f623e091ed05320a924dcc24d65fbf49395d0a91996a3c2d216adb9c28156631eaaecc28de485b3f5320c91359 -DIST genpatches-4.9-247.base.tar.xz 4381704 BLAKE2B ec761ec22cc095cccad2ce1bcfc39544aee85a33c9dba0e09b3f281f36413705a1a9cd90d49ea2d7e237c76721b2c7ca7cf0ca9b0b6adef30463dfd590a353fe SHA512 faea6a290617e47adc61e1c3df6b6603e161930ea6ceb0dfb793fe8873f1f6fe70ad63316af5c713855fa17d02b57e02b31b35116c5965379040e8ed36fb4a52 -DIST genpatches-4.9-247.experimental.tar.xz 106400 BLAKE2B ee5864bfeeba64d62cf9ded356e745dfc0b1daace40cd5bdb3815cc988527098c82c44d6fb5c211f8bdec24970a19be9f1f12c46c927b057c9b8e3f137aa313d SHA512 63e1d01d5c67d4e8224eaaa5370e9d3444e61532bf300431575f1b22138b539290fefbe118178befb164bb76fc9847162549edc882d005d379c04db4d184d15b -DIST genpatches-4.9-247.extras.tar.xz 3336 BLAKE2B 18e0dfefb59239acb2d6e1eb2dd764b7e224b0807e45c7fabd08c977d0fbfd0cbfd1d110b16f9cf249a690c4980df53774f2164b22d0decb694a68ca5c8ac187 SHA512 589216ffdcc472ecda885291fe38d4e18bef04d5ca8799c43ae8efc1c0e6241febe3d2bd8c77e81974c31e862e635cf5b23cbe02a0e55e1b111c4dcdde29b5b4 -DIST genpatches-4.9-248.base.tar.xz 4407200 BLAKE2B 2ec657d75fe8bc68fbd5173d6b58b336248e6cfd8700924772cc39c0151f69486230d015d685f03069a0eda867c52d834d693826d9dfa22c7801f0425b7c27c8 SHA512 8f334ae27a5a24808bafcac575120cf7bf4ae35d00538a31e9ff9a10f4507f260d59d3a0d7c666ce3f19c7afb4d5b8b16850fa5484e7021c5e5548578d3e5d4c -DIST genpatches-4.9-248.experimental.tar.xz 106364 BLAKE2B 19a286923c1e5e594b4a5c37039c8df5069581b866b03657c362b33315c10d2cad6fabd0513c8e55c9ea5ab24e3fbb1ec3fc6f902dc173edbac46148551fee84 SHA512 2d33046fea48d2a94b8b254f6889246740e4cab92a8c36bffb411b9f58decf089b81144f56120a4c1eb3eaf05abcd68587433d10f075673e33babcc26a7d70c7 -DIST genpatches-4.9-248.extras.tar.xz 3340 BLAKE2B d07b5e6457912b55eeb8624d6adc33edc61ca053c91d7718eba48d28da91141ba549a764a927801288370adfbf34312ab9f18fb67659c18cdc2042bbf7478581 SHA512 1b2e146481587d0327e8888c7b1f5a964fc8f4dd1668f6cf46484c03024a148f7b0e0309289e29fb3a848b9d38b3f279d46b5fae0a684823e880eefbbcbbf40e -DIST genpatches-4.9-249.base.tar.xz 4414788 BLAKE2B e3f1e03210c2b8121a95ead8b1f2fc11d8c6f3c57c873994a6bea9d694b8a528ee8977db1e34395d550ba0c265aee27965ef74abc3edc798c441d20f2b4f5d20 SHA512 60aff1b5e3901cb685a6f5345698a1a0eee39f442f3c8b063e96ff8949811e51291cea1e0c4060e994ebfe13657f8216f83ae21986e49af9f2f833e212260791 -DIST genpatches-4.9-249.experimental.tar.xz 106392 BLAKE2B b538546b52c83f79d85e90b6a0a8f9de91b0b5dba1f296c524ed25fa8c8e00dc1c0e4e2f425a2198a95825498628f50812aa8d218f67e7cbd9767ec86ac43d16 SHA512 8ecc103a00cb83af43047e0576c56c2f203941c7ea0c964fd23ffa8915f03b30746598d8ef9d4ac30bf31712d3f2df587d7ff2427fd4cd487927c57d307a43fa -DIST genpatches-4.9-249.extras.tar.xz 3340 BLAKE2B 649ec90c746481dbb215aa7eeb88246b1f041b6f05552b3c08cef71039a932d42226190e1dd0e781a2bcc3a49f6963064cdec991be3f689a39b19b4c6ae3fa1b SHA512 10983260f4b636f0018b16cd8c2611ada8bdaaed26756d899f2307d8ff9da1711b11040747507105facaf562f7d4e85b442c06c98fbb9122528e796c938fc1ec DIST genpatches-4.9-250.base.tar.xz 4423652 BLAKE2B 028223b668bc00d1bfbd4bcdd5dd201f9fab0c9a4ce68f5e107c1de83320c88865826eca0f38b5aaf25c96e2d66a76f0d305b73bd659197898818515275d48f5 SHA512 f10dc4626b1863177d1dbc5e1283c8848b84e6ab10b3208291a0679a3023c5f7d34cfbcc6091f7fcdb71e34f02afba3e7685e24b1f38730c88197c621e41fe08 DIST genpatches-4.9-250.experimental.tar.xz 106372 BLAKE2B 409a0fdfc2246e57f461abfea86f76694ee835215e0ed816e1c445c2e5bb3439ccd47414315f81e9cc791f7206b12ce45c9f46892e9152341194e15d0a44a090 SHA512 63f8d3e6dd777fbb8ed0dad1b67e0405926fdb0c1e40d3c9bae63494de87a3cdba37e41f20cbd7ed109eba6a933125bc6354814f5539c20c377be449cfac3b48 DIST genpatches-4.9-250.extras.tar.xz 3340 BLAKE2B 14cb6c6993c772cc8fd2a4a63f7fce94d850a926c74ac954aebf66e3bbb5db1c20001c264056a8f49561d21e754048963464226d56a0c10eb03cb59384420487 SHA512 a1eac658ade3bc0ecd6c98d1e0fc82f006e75ad4147ba0f2facc58e647bef731098527ff77d1d817f7605c0acdf3dd3f536464953fa2af27c32eba2863065db5 DIST genpatches-4.9-251.base.tar.xz 4434572 BLAKE2B 0c9f5fc9f1b4ab2ade7a56815f1ba59a2a345578e10d5abe47259638063f7fbebf412c921a53df81bb16705ff904d5a568bdf2172236db027ac65a2cf5c22cc0 SHA512 f597d8b1f5c210bb20535305905659f413d4cee679fa26e8532e8f381773de72dcaaaa99a27fcbdbb704a6c503c93223b06f84e1b75d2b4449c06b08e58159b4 DIST genpatches-4.9-251.experimental.tar.xz 106444 BLAKE2B dcc9f7ae1534498de0d1c0d33dd0c0ddca071d16a720001609272b6698c92ba74015eee01d1429e46118c467c1772e2db77d1700a5d68896ec637dab1dfda0cd SHA512 0b50fea309d5f1b6c0c80ae153ce3247a0e0837c5bc7872b0a7403a6142dc522e17fa0b3ccc0d34e911dc0a6cf6de57e4d311dd90d4c8199d08ac0ff95aef843 DIST genpatches-4.9-251.extras.tar.xz 3340 BLAKE2B 3c539c1e45ab2f01cd74883fc997c7d38a32312ea4643f53b429f93251f3f8d531fb72ea6f8c2bdb99b7ffd742e020e5b4d1ad7b9f4dfc3636b9b5bd291411e2 SHA512 83be80e466a3936eb8f99a654b4d5ae1fb057a8805ade3a81a199f27b57dab13b46268c432fba07012d451829cc63d04f04d6a908b49ea7ab2878c192e071f81 +DIST genpatches-4.9-252.base.tar.xz 4445040 BLAKE2B 71c1cd51d02b47c8484b7d394471bfe25ed94406d5894a20f8190cbeaa4575931f8262ec773b80e469aed2758dd40dab18dcd7c55bc48789c8adaa2496bef28a SHA512 d5473bc19e3ee0b19d4fac84fe0d18744aa80b8898e128b757ec69202d0272c77769b2381a96d66d251f49ee067fbbe04685d2a26f155a13b06ab292babf7d73 +DIST genpatches-4.9-252.experimental.tar.xz 106372 BLAKE2B 9cb2511bf248e447d65e32f5d4887f54912fef8094969dbe23b2a549273587b0d78d2422611e677b63f20fc316e1fcbb06325b93fe105ccacdf9dfaa91508620 SHA512 c889f8ecb1629b7f9c8e214696d17405b403332565553cfb8b0009a39c87a40fc9de3e8519e29b1adb20c7cf82ea387fc9b94bea02bfe535e1306091b4310390 +DIST genpatches-4.9-252.extras.tar.xz 3340 BLAKE2B b95706a8fa234bac2c42aa71f820adb68c8f805f6e0c9ada6724a78b27918683c700ce30f21ef3510379870d039dc69879f8454399938525a0571f46bf611f3a SHA512 be5a3ef3bf9adeca5d5cbb2f53e20d24006630b0bc545176d2a06cc40714f74c62a1d443842ddd003d3214aa743b83acc21d138ca2228820311646f66aa105aa DIST genpatches-5.4-73.base.tar.xz 2527064 BLAKE2B 6e0b392681d6e5e709a02c1c8f15fe06ef1651f1530506982feec7fd436aa04ea75079eeb5d3a61c91bcbb46c59a232cb8cb67c62fa7b2e8b289591142dd9430 SHA512 db987b95895fc37243e3697f3ef8f33787489e173fefb84ad09a6600898b2b9b285d9113e6f867aab0c3d5b4c65398f4bcbc40a4220f3cf2b355da9def209dae DIST genpatches-5.4-73.experimental.tar.xz 6696 BLAKE2B e722d747bcb24b501f3d63c8f6fdade889b620794bdd6fe0931c044147d32f5d9b3fe503fb9afe476cf1e791ca0d1247edb47df3a1d547c99e9a3107a2522139 SHA512 7ae9228a9677f3b7888ff8286b1db8ca5cad14fe829efbcb8da8dfe7e82bdeac95368a0dfb2e7bbf0ea82a2b103f5c2ee3c99826c89eec7e07f3be70bcd51430 DIST genpatches-5.4-73.extras.tar.xz 1772 BLAKE2B 7475a0907f287fef28ee8bf220932528107bbac0d612dc05de6ca8b2dd86ddf37d9acea31ab2977a677f6ea3a19c594737b23e504da405fa811c4d0faf00b94a SHA512 751898547b1f60070f1d8431cd89daff55e33473c8fe68415a15e3b8079ae2d3e44318815ba47a1ce9750feb1cac1812eb8eb7765426b204eb1357993cc68cb0 -DIST genpatches-5.4-77.base.tar.xz 2712444 BLAKE2B 358bea510b894012d40bc4992ff04698c1bc5a9b3baf5eef7aee28bbafa8b8774f46d113134774f183d10e18ff7d57998989f11da068a06f0bbb4e437a8e6137 SHA512 a3fed2a4c2a547a7a97af94b68dc426e709bd1e7780fdaaf7d3167f81052062a6c9cd40bd6b78e4c97cecac1f3e02b1097a268f39453eed46a5f2dd85d06b11d -DIST genpatches-5.4-77.experimental.tar.xz 6700 BLAKE2B 24aa7deb0240674f98c92c5139092d0f980e89bbe6f08ac929591a57e3c0b7b3232c1fb841681e5ab735cb6aab27108b42b6a97d2a0ba371fa71561028fd0381 SHA512 ac5c0d199dcf81d9bf4e92f89a269a177107fb2ec172a708919c3521f26446017df4af885e4e9bf574f1ba88591f851e05f9e644c170d3f67cfef8905f1fc6db -DIST genpatches-5.4-77.extras.tar.xz 1772 BLAKE2B 8a33792ed12e88de1eac2908f0bbfb71085a1a6a5daa35e0904f23cab1ccbfff1ebead1b0a8c66331aef787aacd8d96765dbd5dde5de840a882012386b3646ef SHA512 69e36e134a9b635dd1b7eda48eb87eaf1f85456b7090bb7dc9e0cdd7cc80b1a840a68a77f0e42189fb3c9c584c64a0a58d6b8d1ed1c5eeb197df78b06744d2fb -DIST genpatches-5.4-78.base.tar.xz 2710752 BLAKE2B caf08c588198fa9a364ec299c9918ef6cc51495df40cc875b0e60c4abd6f3195fcb67581b276cea0ed8150220f8b84c04344acbee71c26598cc1871e6520c1e2 SHA512 fc4bc267a20e8c7f5326893d89e45d064c9ca7372d13657a443432e47a34c4b835de885c8f3d93ee1aced43d5016886b774d55c29d6839921089bacc40a742c3 -DIST genpatches-5.4-78.experimental.tar.xz 6696 BLAKE2B 1672fe3a8fd9cfb8d8cf87cae57d163b5ff0047fd8ae57d6213b197cb46e9cbb98031d500a7144e2f0ceddcd8c20a7106e0679a91410b2897c646a8329208332 SHA512 6c56dcaa4136c3b812656fa7e18683944c04e3d1240cb7bfb05d4846e2101f97c0894b7bcb0246d91aebc1cc8ce4763c9c63b23fb2dae170fcf997fe7b7d99b7 -DIST genpatches-5.4-78.extras.tar.xz 1772 BLAKE2B 2b1790308dfe3bcfbd74ff7293fb0819e3949f0eb3d6ee448e4f7770d9e282505238dfbf4cfc5fcd144df7091816cb7f1c7d3514e9f9741ce4891539ca63fa8c SHA512 1d5814c23702f562b2207a95901b9ac4c5160508a0ac4dfb45468e6500f0a750c7ac4982d86ebd9de8acd26e23974f2893b3961d9aaa30fcaa3be2a217bbe80b -DIST genpatches-5.4-79.base.tar.xz 2551752 BLAKE2B 8bd8950877671f66d7227a2cc0ee575ee42372af4e35a740566c61bf198dbb98bff58df33848922c941fb2ae6d91823b4b85ca8b68907eecec023cd046319d36 SHA512 9640b21570a6157542e2317221411c005c5ed17fedf25f3795839d59743b663a66bc3e8bb894a01a2bb9233f5ca8fe54ea1fb2eb1b9a0f0c9e9a5c8e9ee91c88 -DIST genpatches-5.4-79.experimental.tar.xz 6696 BLAKE2B 0da6cd4caea2560bee37c5dceb8c1809851573ffbbb8ef330f2290fb595acfdcdd977b830d2bbe4fe4a51056bdcb982d6ffd1381e3c5cd2b4d17d2498e836cf9 SHA512 07a6b61c4c038c2dbbc7f416ea5c1653b011661d5781d5fc61ba472e7c7a1173da97881936469ff0c04994c2d8d956eccd7c40d05172b430b4b5a203c955d6d6 -DIST genpatches-5.4-79.extras.tar.xz 1768 BLAKE2B 4c890e06a2733a06fee44172925a465204b8f435df40583eeeb553de6c2a26197f50ab100ed47b6c104ff5e4344534fd149d84f12e5f43f4c65422ef9a0e2cf5 SHA512 fbea0554d4cdffcbc4f43f9bed3cd57e5a3f79776f5e46d23daa65b884b5fd6fd43e248b04258434e44026669b6d1a707782a01dc217142c954fef2afa5acdff -DIST genpatches-5.4-80.base.tar.xz 2561892 BLAKE2B de5b2235bb041cc87bc9e227aaa7fe8c00796d313b590d375d7b8bff384b326652c71a4715237bb213af15a6bd7ac37ce5ab2b291146917ac852667b09e40305 SHA512 00cb664d33fca3185c6efaae58a4f7464bd8bde19e4b90714786dc9fdf6add1e9af9f8dc47b8d0558086518ccfe247061379a45d20718519dd655f41880d2a58 -DIST genpatches-5.4-80.experimental.tar.xz 6696 BLAKE2B 80eab248ef6d326b6c7a9bdae9098c59f3081cf12c1b6e845438b5151ca058ec2a4d221500dd4aec6890fdd963dc924d632322b1bb0d4bcd9234ea07e59672ab SHA512 af2879539bfe9419c45ac5300ab6e34919a83dbcfa14466bacb2342dd9e20d65753254f743a37e1f368d047c3a359bf0f3c196e03a19d4c3e0e1d72e1fbd71a1 -DIST genpatches-5.4-80.extras.tar.xz 1772 BLAKE2B b549a8901e55cddb1742e394166f8d948ba67552f1b7488cdaa5b7b3dc1a08370ddf7b32a9b243842e995472ae03837e53ae7e95bed6bee0417874f031f3785f SHA512 bbf37e04615bca2a1fbca6b490bae4665865f4f5221f0268ba2f2ff5779fb3eebb0685654281dc5753b553d20a6864a950661cc75fc425b28844dbd524697caa DIST genpatches-5.4-82.base.tar.xz 2792480 BLAKE2B 39960646116f5f85ee657a29557d8fd9e809ae9bc60aac349c91e7680f2a0565800ba37a478573098dbad41b686336a058985d2925e5046fa68eeaea8df25477 SHA512 6a76eebd7178e2ccc522477f53c36f74e6fd691f87c547dffa2602a516ad9a6a01f05c953e12bbe6ba9aa2ce34b176a6a081a22da40c7d86855e5dfc34098059 DIST genpatches-5.4-82.experimental.tar.xz 6704 BLAKE2B 4dcaa6977e25a2d9327d043a15115eba34a802bfa80d532ff2ae3c1495a861d4a4a85ad102e69558d247ae9a0effbf4628e8963f435b949eeffd35f735ea49bc SHA512 4fba72e9efc3dd11fe934be4820703f2f8268c5479dcdae1183104a6b1c2c22715b4529d6e8a4f65d8e46d52b12ab47e3d2eee8dda038af5cac7b799263e84d2 DIST genpatches-5.4-82.extras.tar.xz 1772 BLAKE2B 8eff7ca01490badd5dad15497f77bf43c268ccb494db9eb4c18f4f59219f1a5d79ef2a6f35caee87e3c423b0fff1ef94a6d6477e5074397f78e4bd23b9c40d95 SHA512 bdcc7eb08c1cdb599e69b254f55685f7beec83f256518d42c31d0df9a4e1c6376c184145ce47d28e0b688d2166e139445ef5f9f284e817ba9f37eaf812852a88 -DIST genpatches-5.4-83.base.tar.xz 2815436 BLAKE2B 5bf3a971d5c14baca0b21a8aad8ffc4e470f91b179b5e03779be4f588b43a671fd2f261325ca0525139c3c7e9c2b7c1020a803045eb809b2857c61134d919db2 SHA512 96735cb1c2107eee8a7d475f6558e418264dc1aba7f2f803b59db5ed7a9a249d5d0b79689a539b46e8922ce1b278b578d4194b20f20962c2b3aae83ac58954e3 -DIST genpatches-5.4-83.experimental.tar.xz 6696 BLAKE2B a56f189a5b55da43e244c64df106c02655bdbb40014d999c01039ca953d8b17ec5227230de2fb53f774536f57e2d77e66c5aa94c0bb5045fabe04c815118843e SHA512 9876ace02d7a4da2642aa46bd096f6dfd1c59efc8d5ccd39157d0628724f3d20d52f49c81bc702d1990a0cb475baf1eafec7cab3be2b3fbc2164f290b8469566 -DIST genpatches-5.4-83.extras.tar.xz 1772 BLAKE2B 9bccf13ea0eb0aae0d0b84302b9e9c82986bd60de4e85ee3703c570a5338474b08580095a952749d43104b53d3c07dbb558473e707a13ae12f7da5e5020ddf3e SHA512 0b536e4f8961513f181c5d9c4c01b51656c1e53707cf19c26d858e1a40bb1e8bc9e0bd0b314f82252047fe45a8df3e306e06abdb88f67a6116736e89236bbbcf DIST genpatches-5.4-84.base.tar.xz 2822596 BLAKE2B c3cc3d6435b084e911d1ce12028fb43f986061556db53eb703290cdf2058076a4b670a472b5e53c7cba733d5ecf552b8df12421004b8f36ff69b147b828d4418 SHA512 fcd469482cce45c537e0977a23ef7d8c668bcae585ecbdb33b003173dd601d3dd8666535072bc9caa0ed0cbd954fa3f42deabdad82e5310e5c83cd745a78787c DIST genpatches-5.4-84.experimental.tar.xz 6704 BLAKE2B 3f727923c782ecdcf5f412da1c63431d464bd1323aa6ac04802d6913bcc8f9f9a0cfd6e2e6f7cbceca74b6013af35112c140f19584dc2bbfba741f2f7c972f82 SHA512 00fd24ff264d46d8fa3407a88dfc0ff1acc7bed3706416f90c0e97b65c479384d34d0b02539a89cb8bde9b8fc32dd80786fd3ec6eaa27fe7d028f569d8c71737 DIST genpatches-5.4-84.extras.tar.xz 1772 BLAKE2B 3951ecd7d506fce8c59b3699a132365c06262fb9b02622123ffd8961fd7b39cd07896f8cb701452fbb5bfdc5d80011ad06c0537957ea0fb8b99cab16743b2e80 SHA512 d3450ca9ed556251e9922ad96356696434ba3d9b4ae9e46c908522803bb48368e167dab77abe8e53767ddcf89ca1516c04334ed1cb182d1bb932325dd1b7b2ae -DIST genpatches-5.8-21.base.tar.xz 783528 BLAKE2B 8b4e64de64d97f069014d353e45aab7900b37f508ed8e99eb469797df4780f715e0c038fbeff4b8ebb34e81c935dfd7df3eb63324121e31c1dd07591b3159a3a SHA512 4485056f47723e14f5248854edcd4353562c5ec6cb95c926310815e5bf5514d5d8edce16a241dc3d881c57832333f950562b092c21f2555a6838b9106ff329a4 -DIST genpatches-5.8-21.experimental.tar.xz 6060 BLAKE2B 42cc1a6c5a7cbe3086321ab4a6616f0cbc758b34061a82898c8d4745f9550e9bb60ec3e76b176c95962834358052794e9bd4ebbccbd891031b3cdce12a62c2e0 SHA512 c98a560c0b564ae565ab1dbc2421827593568be5010b4b0fa017def4b2401d737c89499f7b9558b6c8700b2dca4bf0e0bb86e172b43c3092cc7a867775a8fe8f -DIST genpatches-5.8-21.extras.tar.xz 1768 BLAKE2B 238c16ed6628c2fd379fa46cf700038c08358e26af5fd4e7f1037626e2057fcbf224df72a6bd1df4b95fa896793539108294d3523118ee7a6cb7e39604e91112 SHA512 c14b718bf292707472edff04b022c722f45330b7750dd4b7b507347b0a9a29ebd236e16f01c03b6aa85bacc9220b420f5108f7728e88e6566dbb888efdbce714 -DIST genpatches-5.9-10.base.tar.xz 521384 BLAKE2B ea65c4e0977bc07459297883aabba1589b746de718c054127b1cb5fb2d79702798dccd918e8f5542d439d316d3c6c3ae38514155ff2cd5f61c7916eacfaf5177 SHA512 54836cd45b62fc97c857f85bd96ebcb99d5f5d80b3c80c31e70a48e3aa8e54eca5eae802e9a8780c0eb0a1d166c190f39751512580ab10eb122a887d31ad3a57 -DIST genpatches-5.9-10.experimental.tar.xz 6096 BLAKE2B a5fd92947d9f1ec033ed5896b80e47b854b3cfe96dd03b6e8d7be6bb5f10e583c60c59933116298f92f46cf062e31792b2b0d93d046bdbe143c8d419c8d14976 SHA512 466a968bcb46ce345f20baaa89a82c3deed0527466af09855c9372c9f095663f484a1cf1788ed615748852911a04d2164ed37e45a0ef380dbda5402b528c1672 -DIST genpatches-5.9-10.extras.tar.xz 1768 BLAKE2B 8177c3e2b8d92785b9ee71a7733432c783977a4c18f2db282c3c5b079219a911f6c302cad0dc3bf14c886bd3765ffdb2808f353ba0ecb89bb01d522f24f54c0b SHA512 462b35b3ff7a142877d11ddf02992a50043ba677f9f10619a308424f3e4df54d45436bc148fc503581c1c707a2a936ee278b18d95c02c6d5cdfec08f94257171 -DIST genpatches-5.9-11.base.tar.xz 580544 BLAKE2B 59989b81c77e174e421b4fd6f570b7b8daf3649c4869eb61808607c98999467c60f9fe0a9f1c798807e9395ee064fd183a3110482536f1061b80349156af1b83 SHA512 5f5570bb06e62220304c235d5cd93c0d7f738bcc978cd1215ba262dd6bc9a0b0d43cf8d51cf36f2f0a66996b79f656463c7a0323e14f8c46899f28b0420155cf -DIST genpatches-5.9-11.experimental.tar.xz 6092 BLAKE2B 8cee5c88308a689008e64b329f7f191dc7016c79d44af13f6cdf3eb8c17ba8a9c3a1c50dfa6ce696d3f27195426a1bda95620a8d86456645577f8da4482a431f SHA512 d7da161fb1120dc2648f70f24ad86c0c8e4eb82382183b836b32e6590f08d986f0c1888e1178b638f3a3f706308b2d87fb3d0a9ba1451570561724f07ebe2793 -DIST genpatches-5.9-11.extras.tar.xz 1764 BLAKE2B 51e216b1f4970b10e89fdea37bbe5621af2accdad098f4954884314c513a1ebb30c02f07cf725d8d32047513024cd360f2b222606a340c330990fcf7497b0285 SHA512 d6624234d3a64a28be09f21ad21ec3c82239166495c34987733755c4d64c20e08939a9c547f253468e44cf31d1ed6bf5fdbbb9b0adba393ab8eccc0619b93de1 +DIST genpatches-5.4-85.base.tar.xz 2833404 BLAKE2B 56a8a49c1c61693ea344d26fedbb85c2682a16d55dfda57b5bbc5df65d2311c5d92b2d464c6b951b9ef58b04879038ee134e179c1dc4d692308b2eeb3eeb517d SHA512 fa277427a7e5c3c44a681e08ff1570587173a1471de8425013afde212a9aef6e6d68f8e707f52b21d76672a4cd0e6cfdb33c32b78d02908eaa55264517d3d4c1 +DIST genpatches-5.4-85.experimental.tar.xz 6696 BLAKE2B ea6b29078f214d3969580f49a4807727e4a8f86549c7fde01b79d1a55b02b9a30f4efa2009083eff6200affdc0d575eddbced02006694af9b1addc15b4460daf SHA512 9941d07c62844767fa0ab115c9368d538c382776e05f180b3e3e08d291d1c1d758df62545a34836893b7640cd947113644a4be792eee2f16aa3b8fbfc27c4bc1 +DIST genpatches-5.4-85.extras.tar.xz 1768 BLAKE2B 5a5e25a02014fd06b8742a2e505f9998d766c6c95d1a515f0c5a6f3b433163c97c1b8ec758be9bff0c017c947fe4c9c1210fd5fb9d1d838f8571ccd9178d251b SHA512 9ca5271fda3619765363f8fdc5e837b0c6bd218de7d956795e9ef01e9000c85d85f0b49479b8d20a33227008ecbb268d9353c622b37f81619329f358b2fcdff7 DIST genpatches-5.9-12.base.tar.xz 628408 BLAKE2B 6dbb2c992971cf3ee1c0a0c7a7b70876bcc41e93dd6def0fe87e2a4ddaf62ebfe808487ac117b79eb629c34e66ef1a02bf7adc2191c3273bf77ea384260a5bd3 SHA512 bde0614ff1eb3dc9f681fa8a5f8207c8d2f9a959984fd3a0c8bc4da8ca432d6e1a32992735a8c59074de738a6d1341aa688efc75eaca6cb575f41e694f333d7f DIST genpatches-5.9-12.experimental.tar.xz 6088 BLAKE2B e6773b615967443b961e498e50ce50c48608b71f0373bbf8c68d2aac4906c18dcca3e1578157ab0413c700ac2f67140fc47901c757d8292e1d1051f6ef77c21b SHA512 bf21c813045ecd51d2fef01f15269eb77c9c672e3133dcbb60461190e6c5b5f7f3bacf557b7d48f4bed702ba3135a665d319ed218cce1b8319ee83d93d1eeb19 DIST genpatches-5.9-12.extras.tar.xz 1764 BLAKE2B 8bfbde759342d00f10d6fe12e313d449de35aba13a5ba3564043d0489205eafa709a6481e7249bb79f54c84c759f50ca7f630e2e2bbfebc71942f72b3c8ea6e8 SHA512 274a2d2fce2f446503c4540d30daa3c3d6a86e6e6c206f0a2e1e89ee1ebd496f6ce2706add35ca6fc39df2c0758719faf332a230db18dfa9f81dab787f24eb3d DIST genpatches-5.9-13.base.tar.xz 638532 BLAKE2B 758f41192c8075719abe2ffb7756d3a0a4424623b9f99667a7ba19c6311e8e15dbda735076566843cace115059a8e7adb24bfcbc2a1271e230bd96328e1856b7 SHA512 723867c07a238b9a79b748a2b0fc8716614cc2e520d6ceda58e256f99a837f85c1a64885f8d3dc7904f1d3f8f1b8c8e990a12238dabff2c07fb095c56c44518b DIST genpatches-5.9-13.experimental.tar.xz 6092 BLAKE2B d242fa30772a993f885f4b4d9c075c4c76c83e6c07f907ac203c42613c91512dd803ee66194dd5db19bd215869d970d2241e663a57dbe347cacd65a5d505f2e2 SHA512 9471ae9fbcc79f8efec64bd05269ee7be97f9e40e20a9737d2bb262bcd17540ee9266009bb60ef60b0ad5f7de577c86ca0912f31b9ffec421eddb90a53f64b40 DIST genpatches-5.9-13.extras.tar.xz 1768 BLAKE2B dc4a89f09c4a771f7b6011c3b5bd31dfc7a6254b09c48308eb8d3f13b21996e76b2893660e80a6f4a6116f06b3ba74834d8112d4eacd4b53a88a26ce1330dd52 SHA512 07d75cbbb25dd4d51cf3fbe24fe5c5e6430ffc3422c3335fc6916e18903922b8d22cd6d422c4bb38d233200d59971442b0ee64bdc27ecb257f9acb0124df6d3e -DIST genpatches-5.9-6.base.tar.xz 406744 BLAKE2B 79052b91967819329a94b796ad72d6b7eec43d2e83615333abb7b9e0f3c7b737687de05e4ed8ebdb1db064ee16c2b45786ee3652f6f4b107b7e64ee309d9bb1a SHA512 2ae6a445936221337035b9d38336285c8dd2cd9cf2686bdfdd7dc229efb8f61d3088b834c8c63ee633ea197cd48455dffb24dcf11aef0955c42e4e271da76f42 -DIST genpatches-5.9-6.experimental.tar.xz 5828 BLAKE2B 6315137049438fca8a3835858321311dcf1a3ab374eb7c1cc0ec77847891112490ebc8427896381da78b2415855a73b444a69c5a521438f09df55219d96a9a77 SHA512 81bb35477a6e6180b08776b0a27fed4703e8796a54110959869b8ed86100c6e9c71b8ea523e5f905099ef64f8b99a8c5f699e0ce32d4c76dead9bf2121feb1b6 -DIST genpatches-5.9-6.extras.tar.xz 1764 BLAKE2B 3ea79d40f67a97fe14c5adc7c0f5bab19ab28bf37778a334c50852cbbdd91f32ff696e65e9a8f703c8573be7714447a75913c1783118d7b8acaaedab8518075b SHA512 d0f470637202283ae8295bf822b86609f426023fa6f0c00b1a3c0cce461d005c3804bfc7cdbcf965ef9d6a2e68917c2fdbcd30329e551b91d50055106c4f5cc8 -DIST genpatches-5.9-7.base.tar.xz 442956 BLAKE2B 7ec729466553d58b07b6abd4c1aacf237c05e3993fe29f07c75e0800e2f7c7d821543bf39d6c31353b15107f645f60eebe6411507cc5eef414d1abcf0017a165 SHA512 980ff432cf5bafb6e0749bee0b0917e988b658575b60393b8074f70ceaa410950d01ee394f8f55a9d5a48fa75da619b9298e8810d6d3f28d809c067b9dbc3d25 -DIST genpatches-5.9-7.experimental.tar.xz 5832 BLAKE2B 8acfaf878adf29d07d1b90f5b4b1d5c230fc51882663fcc42884dd8e476ad0da391ac85f3932497fa748863d92eeb7886ed1051b0be9b086bdddfca49b5fe689 SHA512 2d6729c62d3af72ef5a5332875341652d0b152590fb758e293ce811d3fcd263592862f96c0e06dc4109180688c7f07cb4a7d0df3f0351e3513ec832d1fa9af1e -DIST genpatches-5.9-7.extras.tar.xz 1764 BLAKE2B c39d139cf19dd6b1af3f196d25c1d4840536c1f390d950a19489be11a45ef4c0ca26fcb0d516a6901c9e128c070f18ec46508ff2c60c8015159edf6b34fc057b SHA512 4c817a1969cd5efac3bced43c09ba206dfa6475e0ba3923bae7a0cd4d90127480acff8ac22703dcad33d43f78a60b3e5919891d1c9eae6597330f30028bfdf66 -DIST genpatches-5.9-8.base.tar.xz 443192 BLAKE2B 48c79a97fe1201bab87ba601feac1e05ce12f2db155e53e0a543c7994ba8dfcac75b17e315929c0b68b8136913fdf93005690ccb260640ccc31527088beb326b SHA512 c365018bcfe84ff64a8171951fd4f97bb89044633df137926d22bedc738cd17ebe72c26800eaf30171c3495ce2b1bfdc93866112756bdd2207e6e184b5f1fb6f -DIST genpatches-5.9-8.experimental.tar.xz 5836 BLAKE2B d1e6f71edd53815725ce92a2175098ba868e9f7cf72fd5d37095d37e1d0d72e386f2f67f8bfd9b233b4089379c6cb5c4e936ca67709b144a67a77912c63a8cf9 SHA512 38efc7d53de4bd1f15f66766d8c7b22e205ea4f2becb665c65dcd90f77089b63abeb43b5de2f8df254a42faa236a2284aad57339f6c47a5ef27cd67e99035ec7 -DIST genpatches-5.9-8.extras.tar.xz 1768 BLAKE2B 96413f75c606fe4515d0facb8f0ca784702bb5d83591af87fb4bcf2b6c5e135eabcc55e0e84be9ecd3854ec108b8ed93cff11c41e7efba8c45aadefa291cacff SHA512 646efb1f6e0b9252b0220aa5922b0c0d8f093dba8edb7e40e127680c8a471aa49724f9591a3147925d7a4084af8d5e1cc5f78b0e72297072fd15bd13d1c93e40 -DIST genpatches-5.9-9.base.tar.xz 513024 BLAKE2B de77ed5aa32336d44f0a299703ceaf290a6ec00ec8fe80f3ad6cf85d89374bdeb278c0fed143f7d7899e21146bfd6daadafbe2274ed10c3bc9170186015ba772 SHA512 d1c7640fc3510e8d47aa07b13c2876a14f510a30e74d53cbac2d6b564b3258698b833c028ed8e8694b8e4aaa31c899c7ae8023825e57e0b35e136f99e667185d -DIST genpatches-5.9-9.experimental.tar.xz 5832 BLAKE2B 44d7ac9daf9f7e227aa70f4d146065c2cc12eb46abb4e47014ac9ef8e7ca56ce23ced3b6e4dac8f7d1a27c044df53fe1b4393f4e179dfb013ebd82f161bb2ed5 SHA512 5c962e24f961c0ad411885cc3d0c7188f941f98d052bce913bf7ab6a4c868cb321a6b09f43c7288757ebe8545005514a10304bc331e340c9553707f6f6d989ff -DIST genpatches-5.9-9.extras.tar.xz 1768 BLAKE2B f97e1741fc12f3e00f1f71f6d9277d0233ef65464461ad0352cc211f32ead0ab67ba8e0fbbdf187bedd6d2d3728dabc1d38fee2552e1b06b9a4fa4c5fc0c9d62 SHA512 148eaf715b3c4b7fa6d613824dc19d2b70e580e0316cfcdd405ffa7b946b1dad4af5cbc9e2ad4b0c0fd31041a60d5410c3ac789f53f41e85f37375df101ecc00 +DIST genpatches-5.9-14.base.tar.xz 656112 BLAKE2B 5793eec0a89629823c027a92758bae2ef2b92cda058b313358f3487a8f51fcebc80a3a12e5c58bc1e8a98b299111fe22d18d5952382c0151e3f1b104d461b879 SHA512 a53e9edeb5d88685de2412adad6de6eda92f002851cc74ca6329bb63f63cde2f9e42272c1b583918586dd7858bd3bb0b8f252cb90e22713f25fbd55f376e1113 +DIST genpatches-5.9-14.experimental.tar.xz 6092 BLAKE2B ca13e69dd5a6de4a7e5f69a6b3b860151847d677e208686d105de05e25370d33480081aaea8746003847d0ba8f212f0cac40e66aac17b0a2bea638217d6602ed SHA512 4879afd49ce5f77edab8f84cab1055dc1fedbea09361089f272e943baff46df5f70df5bb95bde249b946c84831af44e166bf130251aba59634a0a4d1d9694618 +DIST genpatches-5.9-14.extras.tar.xz 1768 BLAKE2B a99628fbec37aabea2644b761ae4eeb81e2999d3cc9352c8d6575646762a74eeff14b3f9765b61baf4074523cab3f3cc693f07d0a4d06bc50ae13baee2fd86d2 SHA512 eaf3cdf93e8545d663408c14ccf13f38a13fe7e5f5582d63af766dca6cf398cc17395a813d71a0b7bb37a43685b70b1afab1d27ef49dbd20d1c62f6aaf9f28d6 DIST linux-4.14.tar.xz 100770500 BLAKE2B 85dc4aa953fe65e273a24473d8de98e4f204f97c43be9fc87cf5be01f796f94cfde5c8f9c84619751f1cac51f83ce0b4681fb19c5f2965a72d4a94fe5577846a SHA512 77e43a02d766c3d73b7e25c4aafb2e931d6b16e870510c22cef0cdb05c3acb7952b8908ebad12b10ef982c6efbe286364b1544586e715cf38390e483927904d8 DIST linux-4.19.tar.xz 103117552 BLAKE2B 1dbf16cf410867412d17568fe42bc1e90c034183b654d270b650621ff7664a321950943d0639205bc1ee7ef6210be170c1f2c785a042ed8a4ec5e3a486d890e0 SHA512 ab67cc746b375a8b135e8b23e35e1d6787930d19b3c26b2679787d62951cbdbc3bb66f8ededeb9b890e5008b2459397f9018f1a6772fdef67780b06a4cb9f6f4 DIST linux-4.4.tar.xz 87295988 BLAKE2B f260f1858994f5d481fd078c86e51bddbc958f7c5d1586f60dced772e1b1107ecf3aae0558c3e6f39c36f7d3aa1e6cd1e5c64ec9d6f2218f47b98413da6466fb SHA512 13c8459933a8b80608e226a1398e3d1848352ace84bcfb7e6a4a33cb230bbe1ab719d4b58e067283df91ce5311be6d2d595fc8c19e2ae6ecc652499415614b3e DIST linux-4.9.tar.xz 93192404 BLAKE2B 83ae310b17d47f1f18d6d28537c31e10f3e60458c5954c4611158ca99e71cc0da2e051272eabf27d5887df4a7cb4a5dd66ff993077c11d2221e92d300a0b48d7 SHA512 bf67ff812cc3cb7e5059e82cc5db0d9a7c5637f7ed9a42e4730c715bf7047c81ed3a571225f92a33ef0b6d65f35595bc32d773356646df2627da55e9bc7f1f1a DIST linux-5.4.tar.xz 109441440 BLAKE2B 193bc4a3147e147d5529956164ec4912fad5d5c6fb07f909ff1056e57235834173194afc686993ccd785c1ff15804de0961b625f3008cca0e27493efc8f27b13 SHA512 9f60f77e8ab972b9438ac648bed17551c8491d6585a5e85f694b2eaa4c623fbc61eb18419b2656b6795eac5deec0edaa04547fc6723fbda52256bd7f3486898f -DIST linux-5.8.tar.xz 114459324 BLAKE2B 7bd97f8fa4527840754434414c07283e89731dc8ebb1e95fa5bc1469a60af1122582c0d3b6e262e77882f023190068df3537bd8b65964b3caa820bb2c8e579c7 SHA512 45a53ecf351096ef6e98242cca4228b8da9b9139ecc6963695791ea6fb7a9484a4e1c19dcca7ce7cbfdfa49de0451b70973bb078f12bdae9cbaddbc3f8092556 DIST linux-5.9.tar.xz 115507140 BLAKE2B e8d11472d63a9f8409ca12a2e8c97c6963a3d4516b5a398b627d6ece565584526f9b5a1377a2fa4bd184c09c7db94c987428bc5d52df0c788464a67e9e8d6dcb SHA512 d3d92ce4246bad74c9a784212f160d98449b1e8793970c2c308276568d852b8effe0528686bdb87d55d691f09a826abf7938d69bdd4759ce65ddd5c05ffe4eca diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.14.210.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.14.210.ebuild deleted file mode 100644 index 238ad822e882..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.14.210.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="220" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~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.206.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.14.212.ebuild similarity index 96% rename from sys-kernel/gentoo-sources/gentoo-sources-4.14.206.ebuild rename to sys-kernel/gentoo-sources/gentoo-sources-4.14.212.ebuild index 5316d9070452..6d51c99dbe84 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.14.206.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.14.212.ebuild @@ -4,7 +4,7 @@ EAPI="6" ETYPE="sources" K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="216" +K_GENPATCHES_VER="222" inherit kernel-2 detect_version diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.156.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.19.156.ebuild deleted file mode 100644 index 7d8709e4c143..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.19.156.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="155" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" -HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" -IUSE="experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.157.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.19.157.ebuild deleted file mode 100644 index 9adcc223b2cf..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.19.157.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="156" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" -HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" -IUSE="experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.158.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.19.158.ebuild deleted file mode 100644 index 101fd99bdf34..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.19.158.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="157" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" -HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" -IUSE="experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.159.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.19.159.ebuild deleted file mode 100644 index 9cd4713f8e9f..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.19.159.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="158" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" -HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" -IUSE="experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.161.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.19.161.ebuild deleted file mode 100644 index 03ddb6cb0adf..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.19.161.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="160" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~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.207.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.19.163.ebuild similarity index 96% rename from sys-kernel/gentoo-sources/gentoo-sources-4.14.207.ebuild rename to sys-kernel/gentoo-sources/gentoo-sources-4.19.163.ebuild index 2922920abf3d..65a8a46399b2 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.14.207.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.163.ebuild @@ -4,7 +4,7 @@ EAPI="6" ETYPE="sources" K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="217" +K_GENPATCHES_VER="162" inherit kernel-2 detect_version diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.4.241.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.4.241.ebuild deleted file mode 100644 index 08239dc196e6..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.241.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="243" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~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.242.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.4.242.ebuild deleted file mode 100644 index bdcec3651979..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.242.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="244" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~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.243.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.4.243.ebuild deleted file mode 100644 index aa45d4c3c5cd..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.243.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="245" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~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.244.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.4.244.ebuild deleted file mode 100644 index f013a42b388b..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.244.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="246" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~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.245.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.4.245.ebuild deleted file mode 100644 index 11c31e698d23..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.245.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="247" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~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.205.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.4.248.ebuild similarity index 96% rename from sys-kernel/gentoo-sources/gentoo-sources-4.14.205.ebuild rename to sys-kernel/gentoo-sources/gentoo-sources-4.4.248.ebuild index c5f74117dbdb..ebaabbdfda1d 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.14.205.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.248.ebuild @@ -4,7 +4,7 @@ EAPI="6" ETYPE="sources" K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="215" +K_GENPATCHES_VER="250" inherit kernel-2 detect_version diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.9.241.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.9.241.ebuild deleted file mode 100644 index aa45d4c3c5cd..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.241.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="245" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~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.242.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.9.242.ebuild deleted file mode 100644 index f013a42b388b..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.242.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="246" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~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.243.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.9.243.ebuild deleted file mode 100644 index 11c31e698d23..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.243.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="247" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~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.244.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.9.244.ebuild deleted file mode 100644 index 341a74ed242a..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.244.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="248" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~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.245.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.9.245.ebuild deleted file mode 100644 index 635f5610488d..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.245.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="249" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~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.208.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.9.248.ebuild similarity index 96% rename from sys-kernel/gentoo-sources/gentoo-sources-4.14.208.ebuild rename to sys-kernel/gentoo-sources/gentoo-sources-4.9.248.ebuild index a0d5482fa9a0..f3f529cdadc1 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-4.14.208.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.9.248.ebuild @@ -4,7 +4,7 @@ EAPI="6" ETYPE="sources" K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="218" +K_GENPATCHES_VER="252" inherit kernel-2 detect_version diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.4.77.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-5.4.77.ebuild deleted file mode 100644 index 84a09eba8fbf..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-5.4.77.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="78" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" -HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" -IUSE="experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.4.78.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-5.4.78.ebuild deleted file mode 100644 index 8c417b92b227..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-5.4.78.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="79" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" -HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" -IUSE="experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.4.79.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-5.4.79.ebuild deleted file mode 100644 index 7800fab600eb..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-5.4.79.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="80" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" -HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" -IUSE="experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.4.81.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-5.4.81.ebuild deleted file mode 100644 index dac49cdec96e..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-5.4.81.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="83" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" -HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" -IUSE="experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.4.76.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-5.4.83.ebuild similarity index 97% rename from sys-kernel/gentoo-sources/gentoo-sources-5.4.76.ebuild rename to sys-kernel/gentoo-sources/gentoo-sources-5.4.83.ebuild index 382c629bbdc5..a0c967462777 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-5.4.76.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-5.4.83.ebuild @@ -4,7 +4,7 @@ EAPI="6" ETYPE="sources" K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="77" +K_GENPATCHES_VER="85" inherit kernel-2 detect_version diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.8.18.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-5.8.18.ebuild deleted file mode 100644 index 89231e690214..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-5.8.18.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="21" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" -HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" -IUSE="experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.9.11.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-5.9.11.ebuild deleted file mode 100644 index cef894a73073..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-5.9.11.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="11" -K_NODRYRUN="1" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" -HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" -IUSE="experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.9.10.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-5.9.14.ebuild similarity index 97% rename from sys-kernel/gentoo-sources/gentoo-sources-5.9.10.ebuild rename to sys-kernel/gentoo-sources/gentoo-sources-5.9.14.ebuild index 4bf66ac02c93..8929f7b7294a 100644 --- a/sys-kernel/gentoo-sources/gentoo-sources-5.9.10.ebuild +++ b/sys-kernel/gentoo-sources/gentoo-sources-5.9.14.ebuild @@ -4,7 +4,7 @@ EAPI="6" ETYPE="sources" K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="10" +K_GENPATCHES_VER="14" K_NODRYRUN="1" inherit kernel-2 diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.9.6.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-5.9.6.ebuild deleted file mode 100644 index 5ecc00b5ad78..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-5.9.6.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="6" -K_NODRYRUN="1" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" -HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" -IUSE="experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.9.7.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-5.9.7.ebuild deleted file mode 100644 index 82e5054486b0..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-5.9.7.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="7" -K_NODRYRUN="1" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" -HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" -IUSE="experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.9.8.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-5.9.8.ebuild deleted file mode 100644 index a5efe4e8fed7..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-5.9.8.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="8" -K_NODRYRUN="1" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" -HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" -IUSE="experimental" - -DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" -SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" - -pkg_postinst() { - kernel-2_pkg_postinst - einfo "For more info on this patchset, and how to report problems, see:" - einfo "${HOMEPAGE}" -} - -pkg_postrm() { - kernel-2_pkg_postrm -} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.9.9.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-5.9.9.ebuild deleted file mode 100644 index e6f481e1b278..000000000000 --- a/sys-kernel/gentoo-sources/gentoo-sources-5.9.9.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -ETYPE="sources" -K_WANT_GENPATCHES="base extras experimental" -K_GENPATCHES_VER="9" -K_NODRYRUN="1" - -inherit kernel-2 -detect_version -detect_arch - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~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/vanilla-kernel/Manifest b/sys-kernel/vanilla-kernel/Manifest index 0f016e5c8a88..31b2563563a1 100644 --- a/sys-kernel/vanilla-kernel/Manifest +++ b/sys-kernel/vanilla-kernel/Manifest @@ -25,6 +25,8 @@ DIST linux-5.4.81.tar.sign 989 BLAKE2B 2ca269f0675bdbe25658449704356127d61df07c9 DIST linux-5.4.81.tar.xz 109638792 BLAKE2B b33192fff45e5f4b2e2d32684e1520657781c92f1b2b131885b16041c244de44e65bba9dd4ea62f7a9e67795145e35bd66fc515dacdb2518e19e1290c6f9e5f6 SHA512 562d460c916a239f62af3f0cf892c02b23614652bf8fb6aff39fb264536d28039e592c32b231888b62f816a9264f6aca687bcd219c56712e7db6638a30ad779e DIST linux-5.4.82.tar.sign 989 BLAKE2B 30002498f901ffd0b3e320066a27fd6b2658b1685a71350912d68ebcd8dd8007b8a2c0e5e94ab7e084e83119e4eaf09a189b781d2ac08193983838c96d787718 SHA512 a9dfea8115a080d0502ac93bf697e75492d9b9f6c0856cde68cd8ab362a3d94fa23575bcde1816e13db35dd6791b398f02a6a1f3fef3a5f5608b2e9d246ddc53 DIST linux-5.4.82.tar.xz 109636484 BLAKE2B 1f2c4422de0355728855bb827eb9b6928458f7c7cfaeec801212c24a0e365e4f2b02030efbbddcccb8fa7993d0e8c0db88828c091d6a3c7b5969587c1e04138c SHA512 ec3ebb354a9949e007fd58ec0eb62739e1faab43a08f0f36c2e44c4fc743d6f7ead611e881553a6caebaee3c1c2d6a3d55abb2b8b3f22abaaf327a66fbf9d863 +DIST linux-5.4.83.tar.sign 989 BLAKE2B 0c1c9737b51eb02747146498475436682fec4d0e97c6e90e840682878eff34aeffa6970eac0ce117ce18bb8ca2e15fc1a9b0bfb83e021b710fa10dd713437c32 SHA512 be2564571dc109611e802d5dfe1d69339d375bb01259d46888c18ef03979401d9943721131c10609a8a07f14cfe0b990e558e15c7d89a2eccc71e86d620cf4c0 +DIST linux-5.4.83.tar.xz 109638356 BLAKE2B 0287ca87cc09702a3ce9c83494a3f49712aab4f805cab560fdee29cecb18f9ef132c9f8352793705b371f0faf60fd24f357448a8323ba1c1a2d0ab832b5bac8d SHA512 0b40ffb66fc5b3f35a0c187ffeea0df3dd90644490298fe78ad1fef210f1c72e4b0c33aafc6b1d0959c915a6a0d3ec57ae8a36f8b28486965a8ef158674b1ec3 DIST linux-5.9.10.tar.sign 989 BLAKE2B 28777305ef639cdeb41d76bd5db9212994a2a8d505b394b822f798937af43b946a4098477d1dce132a9caafc4b1009d7f3edac4a79b9eb45d66ff4bdfab69680 SHA512 a68c71883e0972e3cee877156b3dfdd5bc2ac6fee18d9da48c8355d2f19a8c2cf5bca2237f1806bdf0759c330f882331a581fbbf49fa2410f2a42e3cadfa5012 DIST linux-5.9.10.tar.xz 115545932 BLAKE2B 423d0e2fea39d54c9bbda532dce95f67c2736646b88515e72a3cea97842a25f4b2b4ef0aa2896d623bbc89eb6e8ca14f5b447030f190677601048816ae4a76e1 SHA512 f3f5195508affa84ccac30621c852b0dec42a227e2a3677a31b6fafcffdcf34964bf43cc96b08698faf319a1eead54f26638d7c70c20df31592e1c00ff00ae06 DIST linux-5.9.11.tar.sign 989 BLAKE2B d8c810fdbf587f70d7665960ed0df082417cde3d9b55b336147b672c2879c80630885162c57adcd437e14d9fc41112fd3f0cd20459822500b7a13c29b4da5e39 SHA512 4046df5a6318a9fd22ce13ca806028a8a97402224c6f8a032d222179d1dd24f80892fe60f51b63c6815370769a3eb7d64985bfa3b076cb61fc082c2de00dba3a @@ -33,6 +35,8 @@ DIST linux-5.9.12.tar.sign 989 BLAKE2B 14996a6003b12c9fbaad31c3e8921fd8cdfa25cd5 DIST linux-5.9.12.tar.xz 115553420 BLAKE2B 9e7a86c22993f4bf1a2eda9edd8aacf768ddfb67d109eba78f0719a27d0243767b197a205142524b158c176fe5e1a08de091f4c8f35612267737f2a5ba2dbdc9 SHA512 164a89388a56140140e0b4ba3f39a45f85a73c9862f5104cf591a6d6826cfc2498b4080f862cc592f04853328ba9236f8aa305e4f0f876f6b18eda2e42ea6dcb DIST linux-5.9.13.tar.sign 989 BLAKE2B 662903fd4d1d52edef0d1626e0a892926af100cdc8e574e67b7f3ef449e3fb4893a0be30e9b2852e350f550eced1574bd4af5b6761180080532c586724d54eac SHA512 14dac4351624444dcb359ed75763d517bdf65d0ae22ef4f08d382a41d1e8c17ad1ebd3b6cc9713a9abe84faf96348ca1f10199a2ef340f4d692116d1954ceb34 DIST linux-5.9.13.tar.xz 115553920 BLAKE2B 6b4e25173a7bb0836af25dc53609f5f9f248dde5963c3667127619d25e1860e6363c31bb2fed905af3dadae5659083f4f3a88051f29fa4195678e39b37171279 SHA512 ec5ca9544775faeb809459f58358b14f06e9d16afff40a017877602efc3117c4a901c8c65bbc3891cf5272a436ac5216d9d5b42c2b92980755ce2f459023eabd +DIST linux-5.9.14.tar.sign 989 BLAKE2B e6a8d55aeb77ef73af969db44800d893715df0fb775655a2cde1158e8089ff0601eeb91ca30386c9d903c3954ad924142ca00cd299e04e0a721fd95a6140b30d SHA512 be1193c53f641749ee12508c8239af645746638df77f6ac30480248b472623b901d1fffb0058a531fb87e383ee9065d863ba1f3b92295ee205a0cb92817555f3 +DIST linux-5.9.14.tar.xz 115556784 BLAKE2B 559dafc7d4f618ed6b00f0dce74b031c747d4435db5ac976a4b42f3e0c0c22da3ca7b38c77a44341221555adcb5612367b527bca70188c0903efce79fc4773c7 SHA512 719c32e811602cd3a9429c16c1c1e8684751dffd2fb052357376695a2654ec3f771e321e530ed178223dc581f36fbfa9be362941cf6fd74d2853b393ab357552 DIST linux-5.9.8.tar.sign 987 BLAKE2B bbe7c04acb6b3f61333e96582fc3d64834bb51c79f7f1d1eac455d6b89b62b614e8975adf01d2dda0b3a43813b32abe51f65f111e4ef68a0b4da9b26e22dafc8 SHA512 1e3ba4a90414372790718adabf3d8311cc6cca91601f048c8c7b2efdad6cd7ab9628a906407168df92aa6cfdf6ad93a9d9341a9f31bd8d46d9e808f4c9edf848 DIST linux-5.9.8.tar.xz 115540828 BLAKE2B 27b8820bbd7ea278b47e1c208efeeb41c890276ae59d33971ab0d8ba0081d45e57c579f9390c5e3019a4f3beebaf17a29a959e1b6cadb9e1824ea4e568f90205 SHA512 063e853ccebe3e9422407dd4ed7f74a6202546761d4eb542035b3d71d0478efba9daa6eaeb1e2452c13d3093dd64729d9fd2df17945319b9535724d95be94a69 DIST linux-5.9.9.tar.sign 987 BLAKE2B 9a23d3b858f3df31bf00fd5f2d3e318fbda5d794fa97884a6d2cbd26d71d39b4dd99f5b59c9812e4ff74cdc641a83c6f68e09690000958225ec5dde4e3eba852 SHA512 afca72f0efbd938a3822308a725a6b04685dc10694ad44da1d54ac7f9abab083fe5d820ce88bc470c3983b4daf973e39ead03b91d0f0913a179f2e312a253538 diff --git a/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.83.ebuild b/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.83.ebuild new file mode 100644 index 000000000000..9c5f2af87fff --- /dev/null +++ b/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.83.ebuild @@ -0,0 +1,103 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit kernel-build verify-sig + +MY_P=linux-${PV} +# https://koji.fedoraproject.org/koji/packageinfo?packageID=8 +CONFIG_VER=5.4.21 +CONFIG_HASH=2809b7faa6a8cb232cd825096c146b7bdc1e08ea +GENTOO_CONFIG_VER=5.4.77-r1 + +DESCRIPTION="Linux kernel built from vanilla upstream sources" +HOMEPAGE="https://www.kernel.org/" +SRC_URI+=" https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz + https://github.com/mgorny/gentoo-kernel-config/archive/v${GENTOO_CONFIG_VER}.tar.gz + -> gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz + verify-sig? ( + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.sign + ) + amd64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-x86_64.config + -> kernel-x86_64.config.${CONFIG_VER} + ) + arm64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-aarch64.config + -> kernel-aarch64.config.${CONFIG_VER} + ) + ppc64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-ppc64le.config + -> kernel-ppc64le.config.${CONFIG_VER} + ) + x86? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-i686.config + -> kernel-i686.config.${CONFIG_VER} + )" +S=${WORKDIR}/${MY_P} + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="debug" + +RDEPEND=" + !sys-kernel/vanilla-kernel-bin:${SLOT}" +BDEPEND=" + debug? ( dev-util/dwarves ) + verify-sig? ( app-crypt/openpgp-keys-kernel )" + +VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/kernel.org.asc + +pkg_pretend() { + ewarn "Starting with 5.4.52, Distribution Kernels are switching from Arch" + ewarn "Linux configs to Fedora. Please keep a backup kernel just in case." + + kernel-install_pkg_pretend +} + +src_unpack() { + if use verify-sig; then + einfo "Unpacking linux-${PV}.tar.xz ..." + verify-sig_verify_detached - "${DISTDIR}"/linux-${PV}.tar.sign \ + < <(xz -cd "${DISTDIR}"/linux-${PV}.tar.xz | tee >(tar -x)) + assert "Unpack failed" + else + default + fi +} + +src_prepare() { + default + + # prepare the default config + case ${ARCH} in + amd64) + cp "${DISTDIR}/kernel-x86_64.config.${CONFIG_VER}" .config || die + ;; + arm64) + cp "${DISTDIR}/kernel-aarch64.config.${CONFIG_VER}" .config || die + ;; + ppc64) + cp "${DISTDIR}/kernel-ppc64le.config.${CONFIG_VER}" .config || die + ;; + x86) + cp "${DISTDIR}/kernel-i686.config.${CONFIG_VER}" .config || die + ;; + *) + die "Unsupported arch ${ARCH}" + ;; + esac + + local merge_configs=( + "${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}"/base.config + ) + use debug || merge_configs+=( + "${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}"/no-debug.config + ) + [[ ${ARCH} == x86 ]] && merge_configs+=( + "${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}"/32-bit.config + ) + + kernel-build_merge_configs "${merge_configs[@]}" +} diff --git a/sys-kernel/vanilla-kernel/vanilla-kernel-5.9.14.ebuild b/sys-kernel/vanilla-kernel/vanilla-kernel-5.9.14.ebuild new file mode 100644 index 000000000000..cd68f818f095 --- /dev/null +++ b/sys-kernel/vanilla-kernel/vanilla-kernel-5.9.14.ebuild @@ -0,0 +1,97 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit kernel-build verify-sig + +MY_P=linux-${PV} +# https://koji.fedoraproject.org/koji/packageinfo?packageID=8 +CONFIG_VER=5.9.13 +CONFIG_HASH=b57160e20ddbe02624d2652e6836b0cb73044a4e +GENTOO_CONFIG_VER=5.9.8-r1 + +DESCRIPTION="Linux kernel built from vanilla upstream sources" +HOMEPAGE="https://www.kernel.org/" +SRC_URI+=" https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz + https://github.com/mgorny/gentoo-kernel-config/archive/v${GENTOO_CONFIG_VER}.tar.gz + -> gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz + verify-sig? ( + https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.sign + ) + amd64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-x86_64-fedora.config + -> kernel-x86_64-fedora.config.${CONFIG_VER} + ) + arm64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-aarch64-fedora.config + -> kernel-aarch64-fedora.config.${CONFIG_VER} + ) + ppc64? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-ppc64le-fedora.config + -> kernel-ppc64le-fedora.config.${CONFIG_VER} + ) + x86? ( + https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-i686-fedora.config + -> kernel-i686-fedora.config.${CONFIG_VER} + )" +S=${WORKDIR}/${MY_P} + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +IUSE="debug" +REQUIRED_USE=" + arm? ( savedconfig )" + +RDEPEND=" + !sys-kernel/vanilla-kernel-bin:${SLOT}" +BDEPEND=" + debug? ( dev-util/dwarves ) + verify-sig? ( app-crypt/openpgp-keys-kernel )" + +VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/kernel.org.asc + +src_unpack() { + if use verify-sig; then + einfo "Unpacking linux-${PV}.tar.xz ..." + verify-sig_verify_detached - "${DISTDIR}"/linux-${PV}.tar.sign \ + < <(xz -cd "${DISTDIR}"/linux-${PV}.tar.xz | tee >(tar -x)) + assert "Unpack failed" + else + default + fi +} + +src_prepare() { + default + + # prepare the default config + case ${ARCH} in + amd64) + cp "${DISTDIR}/kernel-x86_64-fedora.config.${CONFIG_VER}" .config || die + ;; + arm) + return + ;; + arm64) + cp "${DISTDIR}/kernel-aarch64-fedora.config.${CONFIG_VER}" .config || die + ;; + ppc64) + cp "${DISTDIR}/kernel-ppc64le-fedora.config.${CONFIG_VER}" .config || die + ;; + x86) + cp "${DISTDIR}/kernel-i686-fedora.config.${CONFIG_VER}" .config || die + ;; + *) + die "Unsupported arch ${ARCH}" + ;; + esac + + local merge_configs=( + "${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}"/base.config + ) + use debug || merge_configs+=( + "${WORKDIR}/gentoo-kernel-config-${GENTOO_CONFIG_VER}"/no-debug.config + ) + kernel-build_merge_configs "${merge_configs[@]}" +} diff --git a/sys-kernel/vanilla-sources/Manifest b/sys-kernel/vanilla-sources/Manifest index 7ea96eda94d9..612bdf0e88b6 100644 --- a/sys-kernel/vanilla-sources/Manifest +++ b/sys-kernel/vanilla-sources/Manifest @@ -4,9 +4,9 @@ DIST linux-4.4.tar.xz 87295988 BLAKE2B f260f1858994f5d481fd078c86e51bddbc958f7c5 DIST linux-4.9.tar.xz 93192404 BLAKE2B 83ae310b17d47f1f18d6d28537c31e10f3e60458c5954c4611158ca99e71cc0da2e051272eabf27d5887df4a7cb4a5dd66ff993077c11d2221e92d300a0b48d7 SHA512 bf67ff812cc3cb7e5059e82cc5db0d9a7c5637f7ed9a42e4730c715bf7047c81ed3a571225f92a33ef0b6d65f35595bc32d773356646df2627da55e9bc7f1f1a DIST linux-5.4.tar.xz 109441440 BLAKE2B 193bc4a3147e147d5529956164ec4912fad5d5c6fb07f909ff1056e57235834173194afc686993ccd785c1ff15804de0961b625f3008cca0e27493efc8f27b13 SHA512 9f60f77e8ab972b9438ac648bed17551c8491d6585a5e85f694b2eaa4c623fbc61eb18419b2656b6795eac5deec0edaa04547fc6723fbda52256bd7f3486898f DIST linux-5.9.tar.xz 115507140 BLAKE2B e8d11472d63a9f8409ca12a2e8c97c6963a3d4516b5a398b627d6ece565584526f9b5a1377a2fa4bd184c09c7db94c987428bc5d52df0c788464a67e9e8d6dcb SHA512 d3d92ce4246bad74c9a784212f160d98449b1e8793970c2c308276568d852b8effe0528686bdb87d55d691f09a826abf7938d69bdd4759ce65ddd5c05ffe4eca -DIST patch-4.14.211.xz 4044992 BLAKE2B 8d7a79b6fe4e0eac89b90581ae62d6cbb81fb6632da338641014826645e48e992031ae7aeab8f39b3121a7fa5229599fc44f172a0293e6a8a9d99ac7304bcab0 SHA512 21f3061ca131e17f6cab857568dcd605570685c8d59c9892165e98492e8261931017df33f43e8f2b0a191e582ddb60060f12dc54f1a164b3088c2e5758fdb6bc -DIST patch-4.19.162.xz 3655396 BLAKE2B 92b492899306eee4dd88a3c893d0d234da99c24b5f9642bada1d6f2df0ef28db3374277492441a06fcaaed3d6e04d367a09ec127cfce20f04174f0e6c8e27a91 SHA512 231959d1fcbb07faac4b40599b6aec6cc46aad8f89debbdddb1003bdf742abc9e2afa43e70c9baf40949aaf6c23d6aa10c1ba0cb5137268b443081faa3b77c20 -DIST patch-4.4.247.xz 3404480 BLAKE2B 5095d7353b56c11ac42c56640dd6223c5f5418aeb367ecfefb103ab8c94eb20e88bc5dc9fbba5722d2f1cbcf733b8b0133943213d8b0f2550ce3d41863d546c7 SHA512 353eb02080153a651faa50aec7bfd36ace06e683699ffafd1161addac6bb9a5d1eb73ad8259becfa0607f75ea6f761bea807d88d5ecc15808413026f74f03825 -DIST patch-4.9.247.xz 3788468 BLAKE2B a866ac523f2612b384794cf07a18ed1a414c8d34c501fb02a7e40792e73bdc576c65e7ec77fab3f04cee4dbd4534f45811c729a6bc17f044ed2196a0fe6877a8 SHA512 4af0e2c93e70af1119f28ea68f3ed1a56226fc0e00d0ec8d12e42498623afe74cfbcd44db3087bfb7748b7148deb3836c7924369e6e6102809a40084bf242a1d -DIST patch-5.4.82.xz 2402752 BLAKE2B ce62e0fd0898f369d9bd39e1ff69a8bf75e8c7e6dc7e4eafc48d0f943295ebb1d7ad8d3c02a9352344ebf76a2db39771ca5727589eacbb204cc44d8541a05b31 SHA512 8455d7a0c88f6b764ce4061cf50f00d505c8d1ddcefa97ad7f826290b981b54a6025a982881dc16cc6c58ff76247186c7a520ed9c488df9e1b86f5b0625eda94 -DIST patch-5.9.13.xz 621916 BLAKE2B b72d57e43df1c753440de453fadc365378f1369c1ff19e0861dabd024feb2ccbc3b7bbaf9358ce96cab5a1249b1e0f3abab694a1f5569be924a5e932d6ce6a73 SHA512 404d7d703f5190bcd08da5aaf55d1b6a82efb5c9a168334b6a372500534e23fe53b9ec2d2dec5a8acf96f2c367fcf701bf1ba33746948a0719e1cc2b2061bfc8 +DIST patch-4.14.212.xz 4050296 BLAKE2B 3fbd7a00bc7282dafc48e02ca8e6d9fd8e332064b9960146cee2889ecabf46ea696c138b26f45b7049a715bca8f759515cc56fe99d1c92ec2f903022c3283eb3 SHA512 5127f903ad041daff3add4f1dd5e42b5777cdb57df9e72d6ab5529dccbe18c1e7b0cdcac21a307c36203159a507bb2ca6658e6bda8dcb9156e35b2e1052d59d4 +DIST patch-4.19.163.xz 3661280 BLAKE2B 182cdeec98f3c4a5ec057e3f286f8019ff5cc22d23863a08b820aeb8404fd34afae913c0bdb06c4d4f571c9146cd13778eedba840e2920f9af2348c5c38fad12 SHA512 6302649e09aae6e35d7963de5dbe4edf9e9fe5439e67188bd604929752853e5e57e31c140e76db87f2cf79345ca254e4b9a893489942c87159aea62746e10663 +DIST patch-4.4.248.xz 3410928 BLAKE2B 548f4ed485224bd9ebea24dbd0190a7e6380d1ed9ac18cfb46409860da7239a3b7fc9bbfc03669943dbf5b85c286a54c00de01d615771d2eddc1e9f6a7e45f38 SHA512 f46a60f0846b5823d9e353caeb1a1576952c57cc55d109854f0c7a5c3c5ebd164fdace6e266778f74e2b03a09b3e71f1ae1965b78124e2536592ec2a8696e4f8 +DIST patch-4.9.248.xz 3795904 BLAKE2B afa043b3b72b3c5172c7efdfbb9debebe1048af2a0857d2e322c1ca0b17e8d703812a69ac411c2c5746bcf4cd8239e799439bc76cad690dbf457e91370964c62 SHA512 a45de2faab294eab3a3643cd86248d112fee0a58a770cd5b58100c44979a49bd1ec4e19296337b6ca1f7bf927e8e16511748506c0f23f87f5a280b3f7ebb2a26 +DIST patch-5.4.83.xz 2409776 BLAKE2B f65f3cde8fc7964ba926f7aee253f32c380c2f25fcd441081d5eb4becf4a8a3f30c5794ed5ecf5c6f2754d4d64a663162b4b0dd4bd7c36eb3e21e9f2ea01cfa4 SHA512 2653a4e66c0fe10f1f637db711f93c3b365262ce68f33230ca53ac7e63c54913b3ccd26083a6b947a624ee828ec94cac215a98a665f97c2aa4e2962caf8917d3 +DIST patch-5.9.14.xz 637952 BLAKE2B fc328fa4c15423668b250b6516b8ea1a543d1b0fa4b55a493bd2c88225e6a7b391cd3fe6c40c3468937741d98b160c4e1b7f6883c21d3a352e4f4258b07a166e SHA512 d63fc8ca45e78ed5e13d1092d1a3707cbff0cd2f13a066255f7cf707dbffd96480c33ac52b73dc101ce4a0e2b7604c6dd5db1e2f5f6bfd1fcd17876de30ebb9a diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.14.211.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-4.14.212.ebuild similarity index 100% rename from sys-kernel/vanilla-sources/vanilla-sources-4.14.211.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-4.14.212.ebuild diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.19.162.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-4.19.163.ebuild similarity index 100% rename from sys-kernel/vanilla-sources/vanilla-sources-4.19.162.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-4.19.163.ebuild diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.4.247.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-4.4.248.ebuild similarity index 100% rename from sys-kernel/vanilla-sources/vanilla-sources-4.4.247.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-4.4.248.ebuild diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.9.247.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-4.9.248.ebuild similarity index 100% rename from sys-kernel/vanilla-sources/vanilla-sources-4.9.247.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-4.9.248.ebuild diff --git a/sys-kernel/vanilla-sources/vanilla-sources-5.4.82.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-5.4.83.ebuild similarity index 100% rename from sys-kernel/vanilla-sources/vanilla-sources-5.4.82.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-5.4.83.ebuild diff --git a/sys-kernel/vanilla-sources/vanilla-sources-5.9.13.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-5.9.14.ebuild similarity index 100% rename from sys-kernel/vanilla-sources/vanilla-sources-5.9.13.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-5.9.14.ebuild diff --git a/sys-kernel/zen-sources/Manifest b/sys-kernel/zen-sources/Manifest index 9d1930a5885e..6befbb6338c2 100644 --- a/sys-kernel/zen-sources/Manifest +++ b/sys-kernel/zen-sources/Manifest @@ -2,3 +2,4 @@ DIST genpatches-5.9-1.base.tar.xz 4004 BLAKE2B 8a4577d42262fa901186acc60d28221d0 DIST genpatches-5.9-1.extras.tar.xz 1764 BLAKE2B 32d29f0448aef113ba9c9591c5d3b671d00d07abde9f35f365b48168887913bb2da95a8a52b852453307cabb111115a26178be4cbcc016e53a26a31f783a9df7 SHA512 df007dc98c1acdd31773f7dcf8aeb22812aa55e5593e8509b6a8762f2dcf06c95d69ad7cdce992e7a5fe730754bef26242acdc4e4da51ee29206fabb86c9cb0e DIST linux-5.9.tar.xz 115507140 BLAKE2B e8d11472d63a9f8409ca12a2e8c97c6963a3d4516b5a398b627d6ece565584526f9b5a1377a2fa4bd184c09c7db94c987428bc5d52df0c788464a67e9e8d6dcb SHA512 d3d92ce4246bad74c9a784212f160d98449b1e8793970c2c308276568d852b8effe0528686bdb87d55d691f09a826abf7938d69bdd4759ce65ddd5c05ffe4eca DIST v5.9.11-zen2.patch.xz 745552 BLAKE2B de7f45152bdf7c5d53705f71e1e37728d9af75be33b6a4d646e0ab1a080a66aed99ab6d6c771ad8f7b0f56e031d3f6e0b37ce082efdb1ab45b1943963c477f78 SHA512 032c83130e4f0f5ceb4e9dddcb375f066c784482e91e7860b2e8a48971c232839c1e92b470f00b56ccc9eea854a129fa12d409bade045d6e5c1bc2499a7eeafe +DIST v5.9.13-zen1.patch.xz 806084 BLAKE2B 93706195979daad6037fdb3be9c1dbad516fb4db2c59076e0e80f43092c25e950b53e8e315cd748a4c235968a4aa6653f182ecce86fb38193666a4cc2484e086 SHA512 6b78e36f222cd756a42f66017999d128c0b5fc9ebce929548d5812f0dd0284ec2f097d53f680e24ec81cfdd437361a894955851e037c32f415f0578afc2b401c diff --git a/sys-kernel/zen-sources/zen-sources-5.9.13.ebuild b/sys-kernel/zen-sources/zen-sources-5.9.13.ebuild new file mode 100644 index 000000000000..c3dce435487e --- /dev/null +++ b/sys-kernel/zen-sources/zen-sources-5.9.13.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +ETYPE="sources" +K_WANT_GENPATCHES="base extras" +K_GENPATCHES_VER="1" +K_SECURITY_UNSUPPORTED="1" +K_NOSETEXTRAVERSION="1" + +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~amd64 ~x86" +HOMEPAGE="https://github.com/zen-kernel" +IUSE="" + +DESCRIPTION="The Zen Kernel Live Sources" + +ZEN_URI="https://github.com/zen-kernel/zen-kernel/releases/download/v${PV}-zen1/v${PV}-zen1.patch.xz" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI} ${ZEN_URI}" + +UNIPATCH_LIST="${DISTDIR}/v${PV}-zen1.patch.xz" +UNIPATCH_STRICTORDER="yes" + +K_EXTRAEINFO="For more info on zen-sources, and for how to report problems, see: \ +${HOMEPAGE}, also go to #zen-sources on freenode" + +pkg_setup() { + ewarn + ewarn "${PN} is *not* supported by the Gentoo Kernel Project in any way." + ewarn "If you need support, please contact the zen developers directly." + ewarn "Do *not* open bugs in Gentoo's bugzilla unless you have issues with" + ewarn "the ebuilds. Thank you." + ewarn + kernel-2_pkg_setup +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-libs/Manifest.gz b/sys-libs/Manifest.gz index 731cc93ee404..e4492a10ea63 100644 Binary files a/sys-libs/Manifest.gz and b/sys-libs/Manifest.gz differ diff --git a/sys-libs/glibc/glibc-9999.ebuild b/sys-libs/glibc/glibc-9999.ebuild index d15e3bf4e504..279753c191f1 100644 --- a/sys-libs/glibc/glibc-9999.ebuild +++ b/sys-libs/glibc/glibc-9999.ebuild @@ -35,9 +35,9 @@ GCC_BOOTSTRAP_VER=20201208 LOCALE_GEN_VER=2.10 SRC_URI+=" https://gitweb.gentoo.org/proj/locale-gen.git/snapshot/locale-gen-${LOCALE_GEN_VER}.tar.gz" -SRC_URI+=" multilib? ( https://dev.gentoo.org/~dilfridge/distfiles/gcc-multilib-bootstrap-${GCC_BOOTSTRAP_VER}.tar.xz )" +SRC_URI+=" multilib-bootstrap? ( https://dev.gentoo.org/~dilfridge/distfiles/gcc-multilib-bootstrap-${GCC_BOOTSTRAP_VER}.tar.xz )" -IUSE="audit caps cet compile-locales +crypt custom-cflags doc gd headers-only +multiarch multilib nscd profile selinux +ssp +static-libs static-pie suid systemtap test vanilla" +IUSE="audit caps cet compile-locales +crypt custom-cflags doc gd headers-only +multiarch multilib multilib-bootstrap nscd profile selinux +ssp +static-libs static-pie suid systemtap test vanilla" # Minimum kernel version that glibc requires MIN_KERN_VER="3.2.0" @@ -743,7 +743,7 @@ src_unpack() { # Consistency is not guaranteed between pkg_ and src_ ... sanity_prechecks - use multilib && unpack gcc-multilib-bootstrap-${GCC_BOOTSTRAP_VER}.tar.xz + use multilib-bootstrap && unpack gcc-multilib-bootstrap-${GCC_BOOTSTRAP_VER}.tar.xz setup_env @@ -990,7 +990,7 @@ glibc_do_configure() { # is built with MULTILIB_ABIS="amd64 x86" but we want to # add x32 to it, gcc/glibc don't yet support x32. # - if [[ -n ${GCC_BOOTSTRAP_VER} ]] && use multilib ; then + if [[ -n ${GCC_BOOTSTRAP_VER} ]] && use multilib-bootstrap ; then echo 'main(){}' > "${T}"/test.c if ! $(tc-getCC ${CTARGET}) ${CFLAGS} ${LDFLAGS} "${T}"/test.c -Wl,-emain -lgcc 2>/dev/null ; then sed -i -e '/^CC = /s:$: -B$(objdir)/../'"gcc-multilib-bootstrap-${GCC_BOOTSTRAP_VER}/${ABI}:" config.make || die diff --git a/sys-libs/glibc/metadata.xml b/sys-libs/glibc/metadata.xml index 6630fde73e7f..7dc64b63ddea 100644 --- a/sys-libs/glibc/metadata.xml +++ b/sys-libs/glibc/metadata.xml @@ -12,6 +12,7 @@ When USE=hardened, allow fortify/stack violations to dump core (SIGABRT) and not kill self (SIGKILL) build memusage and memusagestat tools enable optimizations for multiple CPU architectures (detected at runtime) + Provide prebuilt libgcc.a and crt files if missing. Only needed for ABI switch. Build, and enable support for, the Name Service Cache Daemon Enable obsolete RPC/NIS layers protect stack of glibc internals diff --git a/sys-libs/libcap-ng/Manifest b/sys-libs/libcap-ng/Manifest index 27147c4690f5..98256cb8ff05 100644 --- a/sys-libs/libcap-ng/Manifest +++ b/sys-libs/libcap-ng/Manifest @@ -1,4 +1,3 @@ -DIST libcap-ng-0.7.10.tar.gz 450243 BLAKE2B 8eb21b0309e46b05fa42752b9c814d90bc1eda4852ac7a4975868c279764431a8d5eafc53e50998470f622e2a59e2b4c6c2ac1ac20525c6fcd0633b09b113012 SHA512 1b93c7f5c20ae5cc705fe5244af3e299454e988388cda95f006e248d97c0713e77da2a81c67ecf15755f3958df373fc6d1ca14197d6357ab1f2d8c3a0fd12def DIST libcap-ng-0.7.11.tar.gz 450541 BLAKE2B 66217f7fb9e3b3876ada6f355a2b69f16fda4ab3ab490e524358c4120583280ce6497770ec6452596426594b877d79c0e03db10d6413c1cf20bd01e996f7347b SHA512 150c4f48d7334966aa7af683e46bc3b8b4d4a2e80be826e6f6a61a0ea0666e2f4dafcd012c536fa321c4954c00059c689cc8d6dc089000ca1dca2fd52e3efe9c -DIST libcap-ng-0.8.1.tar.gz 454950 BLAKE2B d2d8902526f1cb6f1f579ec4ca1ca33bf45db325eac07a94b97dcee58411f8657591a840cb7420a94617bf8c21858c4b31138ca3126f6cfaff6b8c82b991149f SHA512 cd28ceb43e2cf5d3a0140fddbd2ea13dfda8eeea8a6de1817f3cc3b38df874ab8653917dbd405ad7aaaa71bcb9ec246d995079aa3cb0af1cffbdb37dfdd99232 +DIST libcap-ng-0.8.2.tar.gz 456066 BLAKE2B 7e721d05b92fd3708b970527e76b1898daa91bde3ab6ed5d8f23b1435404fbe7d15731461c6d9d2c791738e5498d1f5eaba727413480d34b7edea13c8691c32b SHA512 0ac6e55c03b1fba3a849048b721e250951afb59190d9646704d4fd9938eccc3bd0767380fbddc42f186b4f55695475e31f34f537ae91c04a37662577a5b7a19b DIST libcap-ng-0.8.tar.gz 453181 BLAKE2B 8f4b2e13e5c2c21f1ac1455ebdaf04b42e07fa79d9026651f41eab041cdf99bd40d91b8ce2262e58bc2de3e2a793f676df8c69d832ccadfa4b486ebefeb4b128 SHA512 d410d66f46ad25765f35ffac17e0d36740329c334c6535d55a13fa218718a750763b7ad4610efa47efe7c256c143ead7dde7d37a29e99cb5c55161f577c40bb2 diff --git a/sys-libs/libcap-ng/libcap-ng-0.7.10.ebuild b/sys-libs/libcap-ng/libcap-ng-0.7.10.ebuild deleted file mode 100644 index ffc8687f1aad..000000000000 --- a/sys-libs/libcap-ng/libcap-ng-0.7.10.ebuild +++ /dev/null @@ -1,89 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8} ) - -inherit autotools flag-o-matic python-r1 - -DESCRIPTION="POSIX 1003.1e capabilities" -HOMEPAGE="https://people.redhat.com/sgrubb/libcap-ng/" -SRC_URI="https://people.redhat.com/sgrubb/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x86-linux" -IUSE="python static-libs" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -RDEPEND="python? ( ${PYTHON_DEPS} )" -DEPEND="${RDEPEND} - sys-kernel/linux-headers" -BDEPEND="python? ( >=dev-lang/swig-2 )" - -src_prepare() { - default - if use prefix ; then - sed -i "s@cat /usr@cat ${EPREFIX}/usr@" bindings/python*/Makefile.am || die - eautomake #668722 - fi -} - -src_configure() { - use sparc && replace-flags -O? -O0 - - local ECONF_SOURCE="${S}" - - local myconf=( - $(use_enable static-libs static) - ) - - local pythonconf=( --without-python --without-python3 ) - - # set up python bindings build(s) - if use python ; then - setup_python_flags_configure() { - pythonconf=( --without-python --with-python3 ) - run_in_build_dir econf "${pythonconf[@]}" "${myconf[@]}" - } - - python_foreach_impl setup_python_flags_configure - else - local BUILD_DIR=${WORKDIR}/build - run_in_build_dir econf "${pythonconf[@]}" "${myconf[@]}" - fi -} - -src_compile() { - if use python; then - python_foreach_impl run_in_build_dir emake - else - local BUILD_DIR=${WORKDIR}/build - emake -C "${BUILD_DIR}" - fi -} - -src_test() { - if [[ "${EUID}" -eq 0 ]]; then - ewarn "Skipping tests due to root permissions." - return - fi - - if use python; then - python_foreach_impl run_in_build_dir emake check - else - local BUILD_DIR=${WORKDIR}/build - emake -C "${BUILD_DIR}" check - fi -} - -src_install() { - if use python; then - python_foreach_impl run_in_build_dir emake DESTDIR="${D}" install - else - local BUILD_DIR=${WORKDIR}/build - emake -C "${BUILD_DIR}" DESTDIR="${D}" install - fi - find "${ED}" -name '*.la' -delete || die -} diff --git a/sys-libs/libcap-ng/libcap-ng-0.8.1.ebuild b/sys-libs/libcap-ng/libcap-ng-0.8.2.ebuild similarity index 100% rename from sys-libs/libcap-ng/libcap-ng-0.8.1.ebuild rename to sys-libs/libcap-ng/libcap-ng-0.8.2.ebuild diff --git a/virtual/Manifest.gz b/virtual/Manifest.gz index 9f8c86d3a055..9e6c0088b837 100644 Binary files a/virtual/Manifest.gz and b/virtual/Manifest.gz differ diff --git a/virtual/man/man-0-r4.ebuild b/virtual/man/man-0-r4.ebuild new file mode 100644 index 000000000000..90e9ed3d5e83 --- /dev/null +++ b/virtual/man/man-0-r4.ebuild @@ -0,0 +1,15 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Virtual for man" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~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" + +RDEPEND=" + || ( + sys-apps/man-db + >=app-text/mandoc-1.14.5-r1[system-man] + ) +" diff --git a/www-apps/Manifest.gz b/www-apps/Manifest.gz index f95bc6fc52f8..f95d891df3bf 100644 Binary files a/www-apps/Manifest.gz and b/www-apps/Manifest.gz differ diff --git a/www-apps/blohg/metadata.xml b/www-apps/blohg/metadata.xml index bd59b4b58880..0c2e5695ad78 100644 --- a/www-apps/blohg/metadata.xml +++ b/www-apps/blohg/metadata.xml @@ -19,6 +19,7 @@ mailto:blohg@librelist.com blohg + rafaelmartins/blohg Enable Git support diff --git a/www-client/Manifest.gz b/www-client/Manifest.gz index 9f83b931fc41..76ee6982f3f9 100644 Binary files a/www-client/Manifest.gz and b/www-client/Manifest.gz differ diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest index dabfb210ea6d..def2d6804790 100644 --- a/www-client/chromium/Manifest +++ b/www-client/chromium/Manifest @@ -1,7 +1,7 @@ DIST chromium-87-patchset-9.tar.xz 6036 BLAKE2B 4dd9aa0e88f11a9104cb13e73607c3b4fcd7e9cb556034472e2fd46158db6e7505b22c098df1c7cab6c7ff06ba6dc45914dcab58a405e0eafffa58d8b0cafbbf SHA512 c036ee20b4906bdb1b3104ecacf30a092ee3662ec10754bf2b168f1b7e1dbf593216e4dc70f8264540fadf91a33b48a8b8040028966dfcc8d8be99807b5f1b99 DIST chromium-87.0.4280.88.tar.xz 856266548 BLAKE2B 06a29a6c1e8cf71eb2db6e93a009feb8fd0b7ee676ff2c1dd31d2d72c597e5e84d979dbc64b7cb3f80ee0c51196f60a56157a27b679cab7f779baee61cd1928a SHA512 ac3903b598bd69f4ee3065845eac3c85cb5524715b9ce629c9c2bd017f2ebd168b7ee8111bccc2e6b6cfd12ad07add834cb2cd3bf0e27a8a5076bb7842fca897 DIST chromium-88-patchset-3.tar.xz 8396 BLAKE2B 4c978f1a6efef3f71e3dd6340c392b74bc6a734b49a9ca43343d03903159dafc66159939f9a6c4b55665ddbe7bd97a26d8d86c285ec02cf76cad5f5cc7410570 SHA512 c39afa26f5b0b9930f6f67ce0c42eefd74c09d528b26bc0db57129b150f75ff83c8b1cb97bd9c5d75f288fb4767cc68c9c5ce89231b4a59f8ca02493e4dd281a -DIST chromium-88.0.4324.27.tar.xz 857450244 BLAKE2B 7cf5e61587f6e9fb63ac3f40fe943941a507649312679cf7908b0c993f934aab73ae292ec4adc5291846a85ecf5bf018221127375490cbd423b81e8ff041c825 SHA512 ff93c442d6ce99df27581644e3975a8a315302ea01579f6d29df5932fdb1116297e837ff84235dadba506072975842b86e61d7c6ee6f2d2598d8bbe6f6baee02 +DIST chromium-88.0.4324.41.tar.xz 856996692 BLAKE2B 9272e3374ece9678d7487034ca1953c9062cabd0120e51030815bba7ee1d9bd3a2f8a86f45db49157665aeea5eec75807ee4f59219397d7065620e29f5b33ff3 SHA512 4aa9a4412e08166900c1d91ebd4a8dddfc38945aac9de04dbfcde101c713a0b2be38983c779bc5c4d2c361043fb3b92a0ece57adb5ab1548b08a135c9103dbe5 DIST chromium-89-patchset-1.tar.xz 18324 BLAKE2B 7d4f910bf341c2501c757ce709472fd806a69333c8ec3dd5715c3f8b9f0764d21e54df7d2d2dd6eb5cc8e057c32980b08dae5866b4f24d8eefd6703b546cefef SHA512 a369b00a7046121cad2edbbfa800dd130e7506247b5dbcac4af624f19a4b76970e54a8a9bda81ff15aa20cf8df02c3e7782f79b18c92403075b411c7327d1ff6 DIST chromium-89.0.4343.0.tar.xz 882541680 BLAKE2B fd3232c6906ec0d169f1baa14602b767ca85806cd3decf73568123b88a6c7b31645f3c5f7c07f61841edb6dac7b39d6c5cebbf489d2a4f315a95514db04ebc48 SHA512 4d80a016f5cca6ffe205c1067472b12e4c4cf97dd33d036e65d984568f78f4b06f3ec1a87d35372b6a3ca780f18d87711da4e74a141766784345250d64534d04 DIST setuptools-44.1.0.zip 858569 BLAKE2B f59f154e121502a731e51294ccd293d60ffccadacf51e23b53bf7ceba38858948b86783238061136c827ac3373ea7ea8e6253d4bb53f3f1dd69284568ec65a68 SHA512 4dfb0f42d334b835758e865a26ecd1e725711fa2b9c38ddc273b8b3849fba04527bc97436d11ba1e98f1a42922aa0f0b9032e32998273c705fac6e10735eacbf diff --git a/www-client/chromium/chromium-88.0.4324.27.ebuild b/www-client/chromium/chromium-88.0.4324.41.ebuild similarity index 100% rename from www-client/chromium/chromium-88.0.4324.27.ebuild rename to www-client/chromium/chromium-88.0.4324.41.ebuild diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest index d7fc1dccf72a..9ab6b597fcc4 100644 --- a/www-client/firefox/Manifest +++ b/www-client/firefox/Manifest @@ -192,100 +192,100 @@ DIST firefox-83.0-xh.xpi 430120 BLAKE2B 5cb1701736000f4404ce780c5aa18eb37fbab384 DIST firefox-83.0-zh-CN.xpi 564100 BLAKE2B a9b89639386f0775dd1a6ab99551a2e79fbafa66801c6252084659f26dd7974d0aa86f70dcb404e5dde43deacb584c1ff19393302200fcab726bacdb86054c16 SHA512 c41654386aeecaa7691524dd563e07235b8f5962debcdbfe59a586292ebce3086a275c47873678d788462f6a5111335cb7fe0d293d11b4585ce7ffdc69a7822b DIST firefox-83.0-zh-TW.xpi 564079 BLAKE2B b985bd680dc620313cd217beffa87935a546e528a37854fb20a7f4cdebdbf50fd4858ac91f13bf31eca947d09de1a2a0b9956ddf5acb6978e3a7a7d8628be0c0 SHA512 d5eb2a32cf4a5dc675adae6590c5201023387df9a8854ac4814b601c413c3785ae2e694dc5b4d231e2d1686b386cde202066cd2f11c1071dc29eff81c51e3abb DIST firefox-83.0.source.tar.xz 351331940 BLAKE2B b3a805288f4d644f7375c78ebe771c26d59c57f6aad71877abbfe60563c06af5f162b8894cb624cec12a5c72542ffad97e6f8f0cfc3fba0506d4e246a41911e1 SHA512 4ac49cefed278d1f898907bbedacf81ea4bb4e5784f567d4c0971d9cbc2cf4a2e4472de81a7ded620bc3a516bc972d600b516b7674319cdfc9734c3824a9a2f6 -DIST firefox-84-patches-01.tar.xz 21776 BLAKE2B aed1894dcb1372bb80e627cfe70ec194b0e143f2922bd6eae74e93a628b144ab5fb7dca45f9867322b8458dccb2da951a5605ed9fb4ec3f517117f7696a7d8d1 SHA512 5992ad67f2efea6e5d2f1ac8866fdcc214b6c8e220c834550e19b3055ab27a9cafaf372bac87b853a56adaabf4d48abdae1da5f73d5c0a1e7e46fb21a9fc0a17 -DIST firefox-84.0_rc1-ach.xpi 461780 BLAKE2B 3f3780e8e97b075058cf82567c8e7736735890e67b33995be8485b58de5fce943c4b4bb8628d0f260f8afb6ccbf480ce618b336ced8061188c8b3aee8e8834a6 SHA512 71b77b2e28c0ba51d04c79d60a22657e0b618c5edc754f29f55bdd0f35c4e4863b0189e574138090aaddbb9747e317b94f187ad62e1354074b402d7cbba83d60 -DIST firefox-84.0_rc1-af.xpi 429052 BLAKE2B 7bd8e45061d0f0ab8778b52da55db90cabea69a112a28c09c09e57acc15901861b1c8111591f437c016bd41f2b7c50ea6653cf02b0a320f992b6f61e90a9afe7 SHA512 ee2222764963872c51d979d7ba4f955d8f3813ee5b701d496cc21def5e857c391d9c6014c1d8cfb067bdfe4c51594a098d88d2e898ffacf4bf7328b2a22d19df -DIST firefox-84.0_rc1-an.xpi 509098 BLAKE2B 8fbf94fa5e2930d755fcc83d80d3561d33b846817e2aae4964be315dfb3fd97eb9d89e23ab365119c3e350adc7674d924c9af1e0af49e07e0a9d8a3a79129b63 SHA512 ad18c066216d32b0ad2407df621d2ea9c55a71c6bcf7236f57d0aa42702ca2052e3ca64a867d4882edf61f257dbe26958adc18dfe240d747d97c2ba00f4369f3 -DIST firefox-84.0_rc1-ar.xpi 560420 BLAKE2B 1648c24bae583b383a5633cf015c50a63c4dc99776f98828559f554f9a90d556c11d328b40525091651529164accbd5442a760f7f0f3c807576dabb935b85d3e SHA512 737cef3880e685597bdc9e47550f9f9f6c432f1038e4447556f87975fc55daeb75c04015113428f3a3d7a91a537ba6eb670fddf8f839946b31a0702335fc1055 -DIST firefox-84.0_rc1-ast.xpi 457476 BLAKE2B e5ef4350b0cac92ac9cd59a14f8394f5f89d9f6662fa59ad9ddfce42ae2109c98a87172ab2b7e5dcafc35ec0c06a6ed03a7765025961e64f59ecd7e848c8c7fc SHA512 50a351607c61996c44d21a47f3a8c91abeaf9004088e86bf852fba393d17baa45653127cbec71ddaf532f3efd012fda2eb3be6bd670e847e0541e2a1f92b9e73 -DIST firefox-84.0_rc1-az.xpi 498622 BLAKE2B c2a9ac00722220360f5f7188e95184eb1761eee1a0a8b7733b030f9c19f0fc3b213bcb4b97129f779857e96d7506a7c7f75cbcf6dd61f16b5f51324f5c75658e SHA512 84438b84314f767151da0b20b7d3312dbbdafa377832091e308c7b1c3b4902d7bce45312fb3d180438376ca91993cb086f30779257b2b9a182f8aa35ab00b301 -DIST firefox-84.0_rc1-be.xpi 606508 BLAKE2B d13b3bc79c78a3457e4174ab7f2d7dee2cb74acf8d678927eb3ae780f16d208f5dd005ac7598a3468cc6a566b3caef2976b5aa9bd7977333df8f7af92c6f17bc SHA512 c6a7382094536d16d4e1ba9de7acc38e7da601260f59f71e7e951ebd550be761e7d3e7e07d74129f5b2616360b2ecc6bdbc94f85cd11d3206318a2f9cac03391 -DIST firefox-84.0_rc1-bg.xpi 556435 BLAKE2B 74b1a30b8e4efa89608ca42ff0eceaddf58463277965b0e9c37aa77d5f1f778dfed29e0fc186adecfede58a95516b1d47772cbd7790d3fe672861138ca514133 SHA512 93e6d45c8026b420193a6873733024fa2334d7ea452d8f64db9f7db7c2d8dd6828cb036fb748837673ecb4812fd8ce4d8f8e1d8fe43ff47e66a9a16bb54157ef -DIST firefox-84.0_rc1-bn.xpi 573366 BLAKE2B 377ce375c84a6ad3134fe015a1a78702491530e03c7e7ee28bbee2870f3ee70cf7ff0eadf490b8649405d3a0333440c2144302748d47f92bc799b03089239f79 SHA512 4882e09b16a19d943484490616fe488ccb6d5893cab9b965b292e3fd50190dec649bff784080eef964335e394688c161eaa6a18440c941b59964e851e450b884 -DIST firefox-84.0_rc1-br.xpi 514061 BLAKE2B 23602511deb9bbc4f53a9cdf8fd9a0f98a08e729d20f0fca8ed49c13a4ce41e7e44ddc2846255023e1e5fca5bbf4fb82b06de4c3d65d02f22d3ca2c1d9bf205e SHA512 627b4bb2c2d7de415e02b423d8d09eac0cf07db77d10181ecc453243b8e27dca4019c0bdddc5ae73be9dfaeae58ee1d96024b451569063ea4988d5d25be6545e -DIST firefox-84.0_rc1-bs.xpi 465251 BLAKE2B 3bcca6a43bb03f258951a9a36ebb2dc96b24cc5a72d1e7cda3aa0cd5f1abe751319044d97f789c1f65b3b42dd5bbb8aac09e67b4b0b0d8bf53cedaf6a3390053 SHA512 44044f3661c8b251c7dbcd1d0287150dd6ecc5268c5a0a3991986cb1f76a7ce9e256cb1fa8ffcc071f6e655a5db09afb54e222cc8c83589866dfa70a5aa4b43a -DIST firefox-84.0_rc1-ca-valencia.xpi 518019 BLAKE2B 2301c5c62b1c9b9d716153f306ddeb64cef220f522d04515d61da8eede3bc1f9797f37e43fb19bdc92c979e564fa1e3f45bbd44af12ea07fbc06c12ba5c3fc0e SHA512 ad4c1f09c8ac46c525c2519262341019e1bf8350335c0c4f7d511eef50c9e811e62f225327222028a799fe3fddba97530aa0e0cf02d7584e80b8a3d32282c7c0 -DIST firefox-84.0_rc1-ca.xpi 516049 BLAKE2B 193a3bbec32db86b968e1f8492bd519f8a80e072d004e13b2029bc8be8595f8eff23c3bcbd19bbbfd3518b688a9f582cc2c22793c1e16d4304dd0a1f9d647e02 SHA512 4f06a007ac53ac51b479fe27235d97d65b1b9be9eb8c201bf95c76389cc5020c88d46b2b60c8771352c1cc30d4fa341a477095c29d3246a7b64cf103767a6e06 -DIST firefox-84.0_rc1-cak.xpi 549482 BLAKE2B 4ca1d9cc54dab8d6bac4cebd8f1397760ac06c000099a5d65d2cd68d9bf6a3069c7e75857ac9bfa526cc88094b209e2e422afebb52b7965e67daf894dfe1e0e4 SHA512 b228f00727bacee7c6b53edebb4d7ad0dcab7fd9c7e543366d6cee2b2672dbdf38154a14015585c077c0ac4a2ccdcfb94606d001f8ce289a6e91bd3b6dee46bd -DIST firefox-84.0_rc1-cs.xpi 540235 BLAKE2B b078b5c6dd2362ee8ac28f9374407ff9a3784edaeeba801872e4ee539bcd354a9a6988c2251ffd8feec1f79dfaef348f36485cc170befb3ed6785f6eb7bf8721 SHA512 3fc447648136a79e836c5cd79849d536e6f6415a805e510f6e5a18a08933939371194ee67f7f54b3b2b31d0d2c1af706596681e5d151b451f6e272a6d7c3bc52 -DIST firefox-84.0_rc1-cy.xpi 528794 BLAKE2B 378f8f1f0b7906c14f8524656266140b1a69209b287fa4878fa4e8bdf51eaec59b717d04468194b09158d1f20e1990de0d93d53df383ec4861dd4983ac046dd5 SHA512 8228d6552354856c997bf7cfb73b5a73439ae86a9a10e966833e0f03abfc87fb7f13b61fcfaf62075043cc8ad24269f080e1fe4b976a7688299644e030eabb4f -DIST firefox-84.0_rc1-da.xpi 520973 BLAKE2B 758d57eb6e8ae2ad5c6d71144d39317f0771a9fc80a7af69a9fc04e81e9ff4352c6c4f94d160d1445b369afcd72970b94cb56e3c828ea7e9ad7809dc79edd6c5 SHA512 e95bdae92b350358625a577c73cc77a99b20e896e791c56266b888b6e74e92c72f5187ce82085ccc86a04b2c3ca9ddafc8bd680dc6d02a2e4b93b80d67d38586 -DIST firefox-84.0_rc1-de.xpi 540871 BLAKE2B 4318fd02584b81cbafe28f805ba958d0dfeb321980abea388b16a3f88d4669856353a6df3b6c415668c69892aae89452ff0c6bcb128e0062641a5ff6081d6337 SHA512 1c0736376dcdae0b12b39a479f31ce74898988d7349fb6406d2521b7f32db5454802a16f959db243e53dfb4a83688351a9af0f1b011765e3fc50e32dc8e389a4 -DIST firefox-84.0_rc1-dsb.xpi 552200 BLAKE2B dc312b5d7735d47a236931a7033b8610013df5f5d4fb473dcab9989d0174a328d1ca1b9792ccbea84b489bee52075cce3c1aef561dae706d49bca49fd5b0afc8 SHA512 13ba8df641f929f1d28fa5e834de7d97a399929671d476670f4adc09a1f90d3513dd6a9afceda87e6cf7699fde86fe9004c089aee99b02090b124696b7905c0b -DIST firefox-84.0_rc1-el.xpi 623761 BLAKE2B 8986e47d07fbfc279a427c2d8c70ad5e91f3dc0ff0021644ba013136c56094ef54671510033eed47470e87e6762d5e42e2502f26750b8754a10a0b0b06e43abe SHA512 bc89249de61080d69e5b1c5ec3635035383546b7e33ecef37fc8006b8340eb3c9d686e9c72b4bc402ca8fd4ec8277743d71aecb3c8fd665c381f61801f31f26f -DIST firefox-84.0_rc1-en-CA.xpi 495284 BLAKE2B 0002830c8e3125adc9352f21f135136dedf679c9202b850395ea31d6c79769d5c5a16d04b4fbe0c4a400618db8ef87f08bfe2cbf86256655baa9406dc301201d SHA512 4f4454f01505b13d98d9b8e5ac167583d22ae31698d6896f4f0845a376160660ef0bb5342d0497c86a6ce29dad76038028e8088e26a505c263c495cbe3271fdf -DIST firefox-84.0_rc1-en-GB.xpi 498696 BLAKE2B 7fda1fd6c149fef1b839a27c4f9417fdf8c6f7b29d0bc328103850ac2a7cf288b804354cfd59ba5bffd0e7a82688f1fc0be9ddce0cfa7db346e6070afab07704 SHA512 425e7a2b2052319eef005b0d34c8eb52ad1c722209cda16177e6e4b729b01aec99766d8333794a626fd89929600542144fc30cc485c31d7417345c2b5371fe78 -DIST firefox-84.0_rc1-eo.xpi 523249 BLAKE2B e21142724ea44c54afafc21ed1fc5fe120687ca96ced3d6d356620b455259c26b74f794d4a97a075f6dbffbe19c2ca8e28169d19cebdf8813eb4757986b24d9d SHA512 3eed8acc4169195d11f8e3fa401e12850745ad597731d7c9b328038646db00585b8060599902846d5bf6dbeb48763aee5ca766445d9d39bf19aaa565baa167fc -DIST firefox-84.0_rc1-es-AR.xpi 533687 BLAKE2B 55e3971ec6d71d5dcf26aff98d49475f9eadd073a2539fc11704eaa83d2b22a70632c4a7621e0262d733f6d10d32ce1f717421edd211e18a4d5b1bd9746b6243 SHA512 29a0b11773fd4a526b0f4632d89916a9295b18e4ff56e1ef65174ee9af17ee943e33983ca7fcf1aabe315e77e7fdf460ef3f8bae82a133970b27548c144232fa -DIST firefox-84.0_rc1-es-CL.xpi 533169 BLAKE2B 12081bc447d504e1de3b0b9e8426b60247aab3f0dbac274ef05e0ac15bd736300c4d671d7aa2806fbff40c83a8330f343e2c3261084e80f208f75d2d8127996e SHA512 f1d08ba1d2f055d5239ab0994991b8d5254b61bc7b8a4825fa4f8a365213a3aea9a267206f56b8a29b0a9d0c72140df7db0f3873ea80452765b126f0c67f5d41 -DIST firefox-84.0_rc1-es-ES.xpi 523069 BLAKE2B 3d43bc8fb9830bbed1232e507293e5bd845aabc1c29dcedbe56dc5bde6e779aae292f14a08e86624f6188ccf6fa59e5ad7826657cb84710b53aafc5a98f8e914 SHA512 7e843696ff0242166273b6345e9900cb0366642b905692d44fcd6438c805cc0ed3f4e8db9fc45951dc338f67ace319754b0322a136bcfb5d771f545bb3291dfc -DIST firefox-84.0_rc1-es-MX.xpi 531357 BLAKE2B 9dd917a647da35853a8b2a125cd22b74f197eb0eb1ba301baf59e05e92475264334daae372034ec4dfc4528b47821dc6ed316a156861320d8d7be75b06012429 SHA512 63e334e07b84895ef499dc3be923c426010e997c20ed4eeb14b6ff7253b076766a93c51a36d606d1bcb8702b6a7371eaac46eedce9b7acd21829c204f9f38a6c -DIST firefox-84.0_rc1-et.xpi 486960 BLAKE2B fa0773c3ef83dd4a0bbe718b3b9fe1d88504eb9dea3fefb4411f6fd89ce8ede92b860fab2f59e91b4d561bdd0ce0fad830b440a05a2c099de1ff9632f81301da SHA512 b534c3329a20abac446f756b2c2562e3b8d8725116ad353b8909645eadb7ce25dde8056fc36df5453dd06e3aef0f82800f107f4179d1a57c5369e62cc500d11a -DIST firefox-84.0_rc1-eu.xpi 515144 BLAKE2B 29a45e805869cc1c0a1b7462b86a6becdcc795688bb46666020883f53bb4fc4a59648cb43f6b5382362567fda625a87e6f79ebf69f0a18d67a535270326d4d81 SHA512 94deade1b3adf0099c738046add9af6d7587f6ccd62c007a74b44ff7c4e589568540c2b5ca65cc8046dacdfa21870b6c561f034787ab7746bebf68fbb1defb3d -DIST firefox-84.0_rc1-fa.xpi 539663 BLAKE2B a7bff61e501393287d422c56fd6a4e588f8c0c066141245b05b910c1f4c97af007f6fdc703e9988e539ba30a1196ae886a5c357ab7cbeb13d27c39b47affcf20 SHA512 479969c4f4a4419ef592fd76ab3ce25211777cd37c772ece2b0815de1ed8f97ee3fe8fcbf83ed29df4dfe22bea793acb28c774a398e0fca7d8d3bf5f2df666e1 -DIST firefox-84.0_rc1-ff.xpi 483206 BLAKE2B d230d5204306228f1e23d67e29efe087583b5aad378f3da5585b0d74485f7bd798f6a57c207500e06c821262a5801cee4eb01c47d4a527999a76fc4433d79f71 SHA512 ad079032362ee471668b76c11b44bd57b9cdfd1f047a1a4446f47066c2724e95ec8b62f1fb75518f86f8b2d2b7942f2d582eb78af603ff62079c769698c0bfe8 -DIST firefox-84.0_rc1-fi.xpi 520026 BLAKE2B e7756deb279ecad4c149e2547895a4c30343a67f709404294fe74312328818cd975b3a0cad95db9f49efff6536e0adfa55672eec8845fe296e5761399a01f63c SHA512 4b1d832866fb6e0ae38b65185c02f0a1f4765bf3d269db6963c93b81c84efdaaa51bd2449a0a5d89e4b6ff391c39a35cb4ae692a097c815924ed584dd7279740 -DIST firefox-84.0_rc1-fr.xpi 544370 BLAKE2B 515a58cd8743c36c88d78bf83150d23a2e19b20d8be2249ba399f052946db16facad6dfd0dd32c8a6f77b93c5d0d7bb442c8489ba18a22903a766a20b568f435 SHA512 4a1bad36a6cb3dd476f3d3a81a21ebb55320aff6c3f169705a66c6c3f98b9349b064a75afa03cd46c8e0adf627a4b1133bf3e371c780d9433de145423ed3bb51 -DIST firefox-84.0_rc1-fy-NL.xpi 530300 BLAKE2B 17ee2475ab403b2014809f91dd29d09820e5541732b2315d7c664a46fd9f4a50348ebca4ce545ba87ea6c7717d01d4b06fbae7d5c53f4c3af90a2f574390ec19 SHA512 7ca1a8ecaa7c72dbdf4a1acc0526bf3b805ce30dccedb8e7139f499f34acacf3229b71175d74f7fea7e7e6de23f32ba907a6d4e724b8a314d52042add1e9b5d1 -DIST firefox-84.0_rc1-ga-IE.xpi 468074 BLAKE2B 85674cd32b47e3026198eb9938d4c83a08ed6f5461ce4049ec4a79f9b238850459996410c1d3147e8e7b675e92a9bd98431b08c4591f478c3a95ac94d62defa3 SHA512 3836c941d34654c1d29f62bcd6c7a9675f7efc948462ab9feec3993cab30353bdf2a222dbc00f6193496e5763523169e2476282e8593068c59eedb7282cbca00 -DIST firefox-84.0_rc1-gd.xpi 493510 BLAKE2B 3f859d946f97a60be461f9c81a3ea5492d66f2dd1f874df186d0ea2077e7f46ff96b4e8c9d64b58267c15bf396193a4dd8859a7cb630ff520dc2a0968a5b8a63 SHA512 aa50cd54d7d4b4c3b04b53266dbfb16ca6e406fe5efc0beddf248f5dbc3991484403a3ebf5ef43fb9d033c07aafa3f68ffcd91b992478f504c01d167c4f61afe -DIST firefox-84.0_rc1-gl.xpi 525667 BLAKE2B 706d1d70cda006065d2deb75f80468c87ade894787146bfede6a644d4771423a3c35163d26cf4924020b8ba0667729bac44cd5848649aae7000c870b55c8d4e9 SHA512 b0d82104b0f94e1e1be25a88aae09a366cccaa1f6bc102447e1475f724da165c907aac24388ac95673022925c0e82986ca03f8af6180efd89b03eeb5b3fb3246 -DIST firefox-84.0_rc1-gn.xpi 544445 BLAKE2B bf1335af08a225244750f1ae8695fef1ec01d32c02eda230d983a187c053e7c355f802cd1af4fa0d667079a76ad94c544e540d6bdd3c4bb0ee3afaa531bf06e7 SHA512 a387cef382e0cde7a94a3622e3185b2d30c79693d2d693d114c6889912b0edd7cf602cb7c6f268ba856f7965cddb36484d2ee088220b32bedf9ae9438544c5fd -DIST firefox-84.0_rc1-gu-IN.xpi 542133 BLAKE2B 3ee340557f249dd64290d087627704834c66ec12fecff87931b80b1692a8e49413c525b10462d513defba068c04ad2041cfa99d4a62f0cfae04e8ab02c8cad66 SHA512 6bb9363c2347f2393fd88e17dcc8607f309eabaa9d7f48854f2bf7b8e7214b8a1f52d0b2aa7b8e96ca1ee178982a492e866fe49ea1b61a765eb0ad8e53c64901 -DIST firefox-84.0_rc1-he.xpi 545452 BLAKE2B 0e6ccc9e4fc78c645acc17f60e6800e59bfc5ecf936b55cec6645796297aab35df84b444160586744b8d14986a2733d96a3be1019f74659420cf974bb188e6c1 SHA512 be3bfc23bb8a8f60fa8260f61a74f9544b9f67ca2d22e3f978b448734f032036e720a580758fa48bfd21c98cea88335d7a21215dd9a9e283d9e0c7257bb3efb5 -DIST firefox-84.0_rc1-hi-IN.xpi 568115 BLAKE2B 9a1766b6ebc12de2ed7a79a5d996fb1a9fd76378f9513d2edb11f8791ddd9d778ba9b79ae5ce07e454df6ae1483328bc0460bc19228f69b94e8d775d752c7994 SHA512 7e1b4c10775cdf64114f583eef87c9baea74e8f24effc35439e167db4a8cd63e92c965c8018ec2aa091182b5ef108026573b2b3035828e315fb83f7fc2399dd5 -DIST firefox-84.0_rc1-hr.xpi 521263 BLAKE2B 1a9707c93c23eee69e5570bcc8fdbfed5c706b1b196ecdae8290655771c7640403a56e86e43d579c379aa787d6041b423bdaf343a5204224b88e4472c0cc880a SHA512 1de04cefcbad2c10bacd22100d7f0efc884986608d7d858ce05c23c7d36f97edcde9c39cf806745c6ad355db6c0d2e88b9affb3f09726491b4f4a8525c6a69e7 -DIST firefox-84.0_rc1-hsb.xpi 548607 BLAKE2B 17f82fcfc541fb9ee9dda551fb0d6b037543dbc6cb52866fd7f0f13eec1c1521e63ffcd0af9ba49c03e9c31306c7ff0d925b846843d242c2ddd874fe474df9b0 SHA512 538d580db0122464e74a9033f6a1f758c9b725c7b58f13bf1cb936645e97b56de594dff7fd3372e9a4f3cd96d995757fd7f3f957dc15f895b921a464b26bcde5 -DIST firefox-84.0_rc1-hu.xpi 552390 BLAKE2B 14cb820b3be49af3c276cd144ecd69249c382d45d03f6482b6eb1183bfa15cda66e242aad7ccad816cd3dd967400741f5fcd7debfc8093a51e2355fe5f6f6eb1 SHA512 8c35cf84097e73089640475e98e98b747979db0b79bbcab1ca18dd80a6ad3beac09fd0d04bc357b208221b77a6b6efb9f18d9da0d224ec12f955ec79cbc06cdb -DIST firefox-84.0_rc1-hy-AM.xpi 588506 BLAKE2B e31804cb656139add404addabb25c4861247caa7444fdcdf328b0d6ea115fcf379b589f4b7d2a7f3df8aa574a66cbf8141d4f4916e1bcca5e3f8341105199fac SHA512 f0038424b11dcf0cd52aebd0cfc2a755e248e1efdae00ff9ace0cf6df9bbc15bc502ed134cac82e4b6bd64d1ed83f52670614cf3e5961588136f325ac1520fbc -DIST firefox-84.0_rc1-ia.xpi 519834 BLAKE2B e7f1493ffe25a594bebd97074178d6b4c6e101a6ec39181df46f9d5e18b85eb14496d5706ef1719f083fc0cbeb93c751c4aa6ae06ed29fc0dd5d3b380ba87289 SHA512 e8288e211801ce0f5d2045a599f775a0ec61c1e32303bcf937542646a3d6927e2c3431e3256dadd947cc40eef0bf0cef2f8110dd01ab191ffdcaf535d02f9312 -DIST firefox-84.0_rc1-id.xpi 508529 BLAKE2B f860b7c82bc3c596dbed0660897b9d496d5130623cbcab5b86a7cdc7c17a7481f6fb08c4e1ad38365430d49c54cf6854f3079aa22e67bdaf3513eb4a767fb2d3 SHA512 5e7f8b44d7931bf98688d8c631d3e95ee09e8ff59625bcce1a63a3955c139e3181c226704931aa5a17f22508219b7e9b818a8ecfb4232ca44bc110ab9cc0e3a3 -DIST firefox-84.0_rc1-is.xpi 478781 BLAKE2B 0fcfe7dfe3e88efb802e17a8f822e29cd1b8de3c693b15df5a008624d5553aa7466a079a615ae7b3472bb5b3a0ef3571cd97d5043bb43ac98c87d4e21ba7000d SHA512 dab7d5aa80162e17fdd29cf141a000bb64157fd62658a40847272106992628661df77cf9679fa4296076aae1a656bc5f3b152b5417fb0cd59887812481b2f327 -DIST firefox-84.0_rc1-it.xpi 448152 BLAKE2B e6bf793865273c898e6263340ec35879142c1d449295edd9ebc8a50925fc2675ac37365c33f502741b217bf64455e29083aec07aadb3ab3bffeda12704dd1ef2 SHA512 2a6bd700c8737ecb4768563c1a07dd061ced03511ab0e887f4d684d9e6a052eb86b17b7897dfc837e4f241cc069a58eaec2f28d9cfd05a96e2bdf37494ddba0f -DIST firefox-84.0_rc1-ja.xpi 578209 BLAKE2B a60025f1017024ea3dc45210adb67928bf30a22632daba63e40779937b3aba059da76ea74ac1d24408d0fb197df003c5426878d71dd23c22bcd9489adc9d9c92 SHA512 4eff0953a9c177f8159500837c18181b7455712d386934c349a5492ec211a4f78f73a1d65be415d407ecbfbf63e1a9f0bc09dee8bf43aedba2ff1f7873838773 -DIST firefox-84.0_rc1-ka.xpi 579054 BLAKE2B ffe88027557823ae6096b66ace861a2937d405582de92524bc183accb32426c67fb727fd8fd06a1a7b393cc9735dd949bd39ffcb9227b97f936589a20403dd05 SHA512 71135bd85c3938a3ef81166b88f80be1c44880dfe69e88fe3e51fc615fe943629802aa2e70a1cd58c2ecad80ab87a9f6ca1c6c85457b0b164f04ca654acc7e91 -DIST firefox-84.0_rc1-kab.xpi 538409 BLAKE2B 8515d057899c46feb51945226ccd7ddb6e2c1cd41ddbc01e15f5d8f15f3d18fd1adcf815c3ad6999faf3e284b0e1af224f13c3eccb91f54c72455665d94af428 SHA512 7531aa6e1a588e049ab3c75461c281c67e27bd6b0f89ccdc3ca23106d75d3eb070747307ff58da86d5cac67a0c257567a60a74b42beef6fe83c68960e7f86a5b -DIST firefox-84.0_rc1-kk.xpi 591072 BLAKE2B 659430d01bcba929ee42a08958737f4e13d15cf63cba1547947e4c13b6057c667647cf55852c536dbbe11cb54b2356ad639283f00d3127c14bda4590ebd0c445 SHA512 e7612484d7469840b9a5d158be50d18f4c9f62aed7d19d67214959f27c6ebc8d601c96e9140428aef056a419dd1d0900c67a9b6de379534b3fbe76707d268106 -DIST firefox-84.0_rc1-km.xpi 527421 BLAKE2B 9e6a62f113666a4c46ccdde71fcdfdb9546690259b735af4e3c22c38e6812c9299eb635241b60db38c54db7bb4172e3cfb1cec24cdbe777e138919a328ee8ec6 SHA512 9a58f72d7645fa866de2fc435c7b0632fcdbbce696feb9bcb7d33e628168cf0f278d6bc98634623858fc70166bbb86f84fc91dc0062caab375fb840212b3f0a8 -DIST firefox-84.0_rc1-kn.xpi 506722 BLAKE2B 63fa8bd2e6437c0d5f1f9cde1035fb9c73ed399edfde297b76a740c296ee6af52d25a796dd80644ee98087e724f636ddc75441248c4ed8f83a8dbc08f92bb6ea SHA512 42cea9a6c9e7910fa96fcf409e43e9c1f14ee6eb0d1fe172cca6efca5a5950e9a82923e225f5b0b912ffb022a9a45124c4ae75e20d989daf9720bd2ef753d1b4 -DIST firefox-84.0_rc1-ko.xpi 564751 BLAKE2B ba3f6b0c0c0bf22d06a2352d3467de4c833b32a162131ec6fa0836347b7c8bba70a47145e02d5be2d65640e6289bcebcddc8d3039423f233c25cf8a334493604 SHA512 0773a6a0d9cec785310f557455e276d2f6364b98957db3461b8947fab6ddf257591d261afeb28a2e1ddfc909cba74be73a85925f3b98c5b50d272c10ec3b694d -DIST firefox-84.0_rc1-lij.xpi 476805 BLAKE2B 96b867f88f4e76b9318b9799349c72eeef751aa23d80a0e781bf6f45e55a6e8b7e1456e12b1ede1376cc23973646433cf9477fc20d0b8772a64409832b3e79cd SHA512 bdb67d3993478f75cca1445a031ade5bffa4806fa56ae923187b78273407b4345d906e0ffdca333afb40ff1bd0684964cbb02e8d52533ef0a830e5fe1cf8623f -DIST firefox-84.0_rc1-lt.xpi 547526 BLAKE2B 2a0f10c84fc2060e73194e096ad40a16366a8a38518bd9ad77d650c021a6a3b3b60b53b7de7ba78809006850e41e229789fe9ae891b5dc137f05307a7ca8c90c SHA512 d7c3f84e6e3b7a6c2b7bd5297530d016e5f54643e220eff279bf58135c925be4fa68002c8ba14598cb99e9417187575edc891271d454286dbc545374937c213a -DIST firefox-84.0_rc1-lv.xpi 470843 BLAKE2B df02926a0dd8c2dd3cc2bd69b12d68d829c7047d0093ed3fb7bb4f27a93c3c58c77539d1b683c3529fad56552f78948e9aeff6507601007144746e171b459e99 SHA512 884a26689832019d9cb2163578d74e9aa47de810e22fb30e82c2b70dc81fac8965b3d4fbf4d7f172294ed01dfb92127260b7f55d86139d0e67f8273853632c46 -DIST firefox-84.0_rc1-mk.xpi 459836 BLAKE2B 12b6386bf69a8b121464500fb7aaee893d523e6f60efd0ff4f6ab2f26f9bcffba9fd01e6add60bdc92c6e82641ee766515f60460d784987f9bc533a6bc72ff72 SHA512 7d41bedf9213dd47eded4e7b2b51a6fe92d27a06dc7a116ed349fc21b933c817b9adaea71e082667ae9145143d52a424c8693b985824efa5918479fd995af054 -DIST firefox-84.0_rc1-mr.xpi 541973 BLAKE2B 51e65358da2613b09b9357e8fe32253599b526ef64d4563a3e73d4c8cbf4ac910a258eb356e20fde18591e43f29219ccc2e8c8faad9b83a3c7123203f0f672f8 SHA512 16b765d17d0e5fe73ba98b23dd04c266c0534b7d3f866ff399ccc9c1777a2142a69aae5eaf52e61b51bee4667cbbb374cb319d2658765e6e896692ec88fbbe0b -DIST firefox-84.0_rc1-ms.xpi 454814 BLAKE2B 48a24f7dda281cb505af6183fa286ceabc8093d3cc617fa3d05c7a6c71bd42dc729c76c7c755ddda459c6dfb771f9c5bd8900226be75fd9e4a2de35b9edc36b7 SHA512 abf339b6c417f1366c9b46f651f9fdb9192fba19017695c35361eb437b2bc21cd27e782ff6be295e4943496002f9c6f74aed7295755d21f0de80e09c71a702b8 -DIST firefox-84.0_rc1-my.xpi 526531 BLAKE2B ee74f32004d6001352f690b66c9d7bc8e2ad2e51e7b874e764ec1e71a12ec04d74191dd7b85f670874cd2974e2a8826df832f25a58bd80b67629730c3d0331f0 SHA512 5f704fbd6211c283ae1c8c73f501509bcd23746bdefa78df50ec81bf17ae7573628cb3dc184f2616d67f848a6175607e144698e2081b15f8eefb5c39eec6c8b2 -DIST firefox-84.0_rc1-nb-NO.xpi 516932 BLAKE2B 663238416fe90c234339d0e505c6c3827309278874fc5b4181da494b08f435ef505c8377af8c077d876bae2359ce5378d2c84f11dfbdb149339c2473385ef33a SHA512 7f3b33143fc414d6a8a5e6778932010605c023b8aead7bf58b6dc1b9665ea67d3700d9c142ad418ad1bfd1b8477aa350756d3d7a51689373432ac7f8628f4a6f -DIST firefox-84.0_rc1-ne-NP.xpi 483418 BLAKE2B 5dddff159b1b8741540a398cb55998a6b5396e61bc406f49976e5f46337f19c471e524cff506c710068c68a9ff1660389cb7f05fa43d839b7c06b6e85cdd2369 SHA512 ce2a5162ad88df1620d1dd823109acd4e3341460a9422217320db3125d3af9051abd5d5373cd9a4cdedc3d85c6e7ec9c5e48d7d930cc000b920372b928d6b563 -DIST firefox-84.0_rc1-nl.xpi 524177 BLAKE2B 1133aec2efe7094d77d4ea0022c327977041529fb8955d0fecb1d6f3646e6288aac4b57dd66c273b6eb0d032600fd72d0ae89d097949bfac6d7c79edb09091bc SHA512 25b8070de432a59c4373c53fb074e9c45bc9a0433d1be9d9b564c2cdc94f49fceae40ec9f702921d46bc839105d9c679c9140d777387826b954c97ff6a8b20c3 -DIST firefox-84.0_rc1-nn-NO.xpi 517879 BLAKE2B 792d0afa7a1106ddbf9988f3486bbaef5d07819a9b87da077c2ff54d8365d06766ad164bbc40aee8745c9c0ca0e3a8eb1b2f4db4312111806ba4a4e5453c915e SHA512 93b185158283a7fd61afd15dd95c7179c6763300aed8a3c05e0cdad04ecde1704d552c6589f156b441fec9a26a3816f958a199ac3616cf241474c0eeb1146f9a -DIST firefox-84.0_rc1-oc.xpi 540043 BLAKE2B 621b26a5ea9b9150506f0422f505ef3a58571a6768c411956f39d606bbd949983c2fccee6893d0d77b1ead18fad8b15f93fa96db8504f15acfafe2d9dd7c2859 SHA512 c8764a55553163b919175af58dce6617eeb691df7983c2ed0418a933ab737e5b7f6b300c2b0855628722e5e871981835c5989f2f47f175f33676861277bf4b01 -DIST firefox-84.0_rc1-pa-IN.xpi 584962 BLAKE2B a138bec3383b5257bc2b420f55188e5c596a2ee10d2238c80712eec3d42a9bb1de958cca6e8647738523fa8ce98f20b3b7c924c65844d3abe17fddc693d5de9d SHA512 9e05931ca73d7e89e475ad9f3298ba40d2db647e560285d58707d17b8ff5888bca2909ccf458f843f943330a558a7dc1715c48c99f9ae5d20eee292157c31088 -DIST firefox-84.0_rc1-pl.xpi 543351 BLAKE2B f6ee6f7184f1368e0da904fefd5d67dcbad11a360be0274e0b0e8534f5069ff5900b14fa5cf73ecb9d5e59d144d03032cb832a4efeaa5136f77a2cc90d3cc332 SHA512 f2a668882f45ba9464bf5d65a3df327ca59aed88a27342823c0ee4faad7594975c19ea0efbe6b234ed5639609f9720ec497be647d16073333edea6f04070ad8a -DIST firefox-84.0_rc1-pt-BR.xpi 525587 BLAKE2B 9d6c7ee80a49dd7ac7b79a1ce3b7971fd61972961edd53db9379edb122854f8b2ede16e5684dd972a618d5e0aaed2d7fdc36a18307d4bdbddefb0ff4e285806d SHA512 733a22d0b46c4df9dd8efb0e7a9489a002b22d776d726ef24a65992bdab173f2dfc6518caea79344bf008dcdcd70379b2af022fd57f5f2343fbe21e09cafdea7 -DIST firefox-84.0_rc1-pt-PT.xpi 533307 BLAKE2B cdd64ec60bb3f8111c151abdb23d2886cf016f173daaba2e32a5b9053d2fb29b9df65467a62117fbf66bf79fc0da7c16bafd99c2278a77b17b91f3d88175adf2 SHA512 57de6d8b307938feb5dce5d31c5ebf16b87349b0214f2f729960f93b5b47f9c8237d24dc77d10b8b910dda9c1740ede47533ee0bbdfbd59d9463d4d772b44f53 -DIST firefox-84.0_rc1-rm.xpi 524841 BLAKE2B dc3be5c91b9553de56b7657735726ca03addedf2a0e3f2c6d2cbd3f5d0d6864dedda9748e8d9a2da9b35a3addec4a8a612893ed1dbae91049ec200a3ffd4e7db SHA512 5043d3b33145f37b320320655c8eed9317512f61ef3fd43492e65dd125de1e65790d1e2248b77ef96139e79719bb23ddc2d0bb54fd5d836af5fb757f95253bd5 -DIST firefox-84.0_rc1-ro.xpi 532966 BLAKE2B 1a4a7092539cae54351f73673ae633e50dbd3825bfb828e2472980b883d15782d6441cfffa24a2ffed78acc024e681df1873dbbb91efd732fac81f0ced9bedd6 SHA512 c6ccc9c8e8791975a4b0105fb70c9007b7c3386d13ef24dcda87674315e59df408d1385f09da85a357d79f5c14b51a07cd50b3ac537c6d538733c3c98cdcda18 -DIST firefox-84.0_rc1-ru.xpi 611892 BLAKE2B bc60cba964047ea95b5ad0f6200a29a2de16b9da03f1a43c40a17c94045feaa4ec57f28eb9c1e78bfca60f9f1db5a992382506035b22f2ecc74ed3148b6870a6 SHA512 7aa13d2d65e68032f223b0090edde7f10c45b6ba32a793daaaa0329034ea2f7beff742e6b4dcafd84b412b05b285e48677ce361d1bd57c598b1cb30b99d0d282 -DIST firefox-84.0_rc1-si.xpi 492927 BLAKE2B 284e8b219a1c4b4c8689e50c245babe56d320aa7afef61266aa09c4d80dd9a7cc3410ae85e95bfc429f57c7ba262211aa3cfeb82c7a98994271d8f9502e85174 SHA512 e6ec6d642cd713b404d6581929dd63df5ece46e82617679bba6d7bb7d086f8bdb1e9bf61621d2b8fe495da0ba2e941aeb9a1c3eff508d46d4a4d47eb196bfc86 -DIST firefox-84.0_rc1-sk.xpi 538499 BLAKE2B dc4baa813c82c00b50a616bf67d5e4e3719a88033a5aefb97ab996647c5287e2878a5da5b03f06c68dd5b3d5142a64a21f40dd8930e79c3b7614880b157c620f SHA512 9a78a406577a5e0318ed22364417f9a0c010338622bc55e9a6fa1e69dc5ba327709f7058604db751a3ea691da73d2a5f530bacb3b2e9ec0d6198869ff256aa10 -DIST firefox-84.0_rc1-sl.xpi 521135 BLAKE2B 45c15f50e6628778008db8a8b9a67bc664f30faed924de0eda9b7b34a2da7e5b370006ee429907bd5eeefbf91525a081abd589643b8a001ad0c5ff1a82626955 SHA512 2f51ca424839c9f78c38d3c514426d5dd8b8c847d5e2e0b67a505a299c9e6dac765e55a28cb637318c6314d451b48969315cf1986de1893fd6c3dc86ba7f2d22 -DIST firefox-84.0_rc1-son.xpi 425701 BLAKE2B af17a9dffc08fdb42dc40cf88d5f8755ab2d08e1bb496ce2fa0d3bcaf0bab4756b4c65fd5182a682021d35828c31ff1acc46d22666e3f79e0ffb3199a69fa2bf SHA512 e1673b696498230bede3486c0f6993a98271175cdc9ffc0c096a30c5b288c9d5d0333e176940b1ed9fe5f35af8de48198828afca1afe686a13be58df29d27b39 -DIST firefox-84.0_rc1-sq.xpi 542778 BLAKE2B 20ce33ab7a687310009462120c7287d38f3ef5881a85ca15d85773b11126359f741d3668ce0d45a770e2ac7d742640417a3e13ec00b280b1f388a41fd411390b SHA512 2fda6e4343585ead5ff7b0a7e30dcadc7f14e2bdfaa43abd17b034426b27f42c8c8308abb53f9d0eaa853c12a3612844cfd8c55c714ec8f83efc2fdfaea1f196 -DIST firefox-84.0_rc1-sr.xpi 563740 BLAKE2B 1311be5d2d336e70b321df076510f99d074ea958ceb695f81b1b8326ba02257d6a8d94bad60a978e38ebd259413c64311387255756547a261b2a68474d383e7d SHA512 26880ce4ce77c6ff7db98c425a003183eee4c26d0b725d1a0693efb516e7bafcc22e2c5839ccdf1048a63057786215f5d878ced4197aabd91bd8d70a25d448d5 -DIST firefox-84.0_rc1-sv-SE.xpi 527557 BLAKE2B c8a23f1eb09f7fce7f9da192302922e9768d94f5ed2df7a35143fd0facd50b155903b318ad49aae8766f853fa385e590a13cfb6e88d0d308ae333299133e8adf SHA512 e80876c61ea99d4e8900f92f86ec74c18398f3b260f7cb10ec053b443b41c7c414dc0390f751bfa32a996d6106782bb18f803b5e0b6bf1af51d50d1e2366695b -DIST firefox-84.0_rc1-ta.xpi 521663 BLAKE2B 9514ff26dc48fd3dd095c4791d8323fee0b6f896fe43396003e676368a4226af14c9e1e93144bf5d1b9d5b02e72ea86093405be7a0317e7f9cb8744782e118b6 SHA512 2a9d4510e311d2515e8c886cd66c6f526ec164842508176097f8c181ee53c2f4c662b363834f1cef89f093245fb573e92c7bf5e1a16f1b8b308296348587d8af -DIST firefox-84.0_rc1-te.xpi 558090 BLAKE2B 065c2f2a4bfa3d33fef552b13033fb79278f8326db57bc6d914244b7e091cde10b4cb861a6c3c5df37da7c503d39478fd5daab30bb99942629ec2bc7a725fd0d SHA512 94442ecf72b3a89dd4610ab73c5a9cd59bd11bd1b11410e73fc38d70110559731dbaef2f67addcf1659de2b0462edb3c0c19d8245835f3a468b6bd2fd006fc73 -DIST firefox-84.0_rc1-th.xpi 592808 BLAKE2B 650fad518f9d9cb908fe13efb0f4ee240afce483e7a0658d889026e7980f96d765e3f092d79612242f3753521ce089a4d1a668847ffee5544b0fba3ca4f3c67b SHA512 0924742e8ad966f41ce189ce161ec9f569528c5e9d460db06fb5459871bfd11b70ab8ed622e0be083ea779b26e50835f7be746b53847109f073aec286bee1db1 -DIST firefox-84.0_rc1-tl.xpi 519343 BLAKE2B 0cd0dc759bb4a44472d7ef42136c56a5de08dc2bd4dbaf129e49cda54d63c86601e84b83260683e9b9ce8d252b458b663deea7bd677587402930a376b1765765 SHA512 8b0f26c25fbb530648bbd151678fcf9fed26faa2dbdf10efe56d78547b3d666949ca665621b673e23bc3a399575d0c05098a0a36b9be519adada5799479874f9 -DIST firefox-84.0_rc1-tr.xpi 537928 BLAKE2B 78de685a42e05c87dc7e1bbd66162f4ad1f087c827f6e5c11723b5e3bcf249718177f0620c4fe764be3fd74bfb269d8f50148202807e6134ac0770ed1155387d SHA512 4a6e89594a6ff789f494495a84daa5d7d09c7ff1277dfb9774631f16314ee45902dec130a35c6151f65f7ce38f21b7a7a689053280f1fb20bd8f6dc7bc7342e5 -DIST firefox-84.0_rc1-trs.xpi 500692 BLAKE2B c2783928994166a4283d61c48e9e395efc46ab8ed10bf261b03a88f4da9301f5e827056eb303ba25246391a0e4dacafd60f2a790f3145a07e009424e0b23b294 SHA512 c42ac231b960c3f301c93123e717911dccbd0ff0c42ceb57cb2a9952df2ef988eecc0f6cac991c3c3e7786744fbfe1e8797c457c24b3c5417d2fdcce3dd90744 -DIST firefox-84.0_rc1-uk.xpi 606074 BLAKE2B 9fc8eede19f357ffe84b464560c0e934038ea390b37e90c619c995a8c8759de55e97067851460b3154f3e4791ebe00d127bdc0e25719dbe20f92b0de1b0a89b8 SHA512 f7d606ee7de287eb8344a220c1c20bcd94bb25d1b21185fde5e790018b00cc1a1753bc1dd6d705ae6ab71ec0e1bba56c151de0fde09b5ba055642caaa1b49c34 -DIST firefox-84.0_rc1-ur.xpi 558459 BLAKE2B 3d9fd7cd520aec3c26149657f92c1cc7407f471ad7028be036298072d7637e31fdb04dfdb408329ed39c85b699b50237161657770211d95ce1325505dec72060 SHA512 ca1ba28f1b1f5501174920e9acc9e2cf3383e484ec9553e2e942a5522d383e5ab0b95014261ff9acf4dda35ec7edfcf56898b9c0c872fda4f7aa893cfdb25b33 -DIST firefox-84.0_rc1-uz.xpi 478516 BLAKE2B fee7cf33cb2c103bcfa3debbf8beb86c87de889b839a4bf961d13cf188a03b100388b9c27965154eb33b6d93c5698212c5e0d7dcc1c7a96ab94dca75c1b39bc7 SHA512 9d8773fbb6ad9f2168e32e8ed4eecacb960031ff3b27baa2c2e25b62d9f28b55cdf467a21892f9088ec3e554d512615c287464e0c1d28adda98a6fc0bf29f381 -DIST firefox-84.0_rc1-vi.xpi 561451 BLAKE2B febd4b5ec5b7c49b59f15e28dc747e33a3a6202a5776979a70884131aa7a8ef46bdee4533c89b3b4be6114deda10a7d7d1f1ad5d7ce8192bb71d2cfe48d0f450 SHA512 8ad2bc680af97ade7eb8a9324dccdb1d1d51d80f2719f32632ab1a27da0987140bd6c74ce4b8f32abb12fc7944e79b312b20f105ce4cfb757b483840319512f0 -DIST firefox-84.0_rc1-xh.xpi 427838 BLAKE2B 16338c314a3a7c50147ecbb36231a1bf2744f2a0a5586f9401657d979be365f7e568028cdc0c54496877ecb2b97c8d979d73ee807250c806e9ae02f3de91c696 SHA512 5981daba12f380eeb16e08619aa97d1ce8bc08eaeefe5dfd438f29547585008203ebfb78d2c460e061d1183febbdca651fa0917aa95caf612ed3d12f9daeea1c -DIST firefox-84.0_rc1-zh-CN.xpi 562147 BLAKE2B 6284e3d378aed52e28216b800dae04b2885647f0bcabaacdd874109b53c093a8f5b48233889f07c5944924a1bdc03e39dc7246f10d5efd32a895bc2f38260409 SHA512 f13f801afa11090c562dce8e2b2c026fee935d0eaa385e0d374fe0aa6b54f4416da4a570cd9519d0c895a76355e0f443c491f293b2cc6a48c5382a93627b6f89 -DIST firefox-84.0_rc1-zh-TW.xpi 562084 BLAKE2B 4ca8e383c5b85899f6712ad8c28f4a596470dffefd1d07cbce3823752db91cb20e1cc12fecdf229b6c7cff75fda13b44beb2f4c2303d23b058f3312b5cefef60 SHA512 b769aaa46c846384d5674b7a79765942b129a25bb11060cdcf8e890ec952333685baba06c7060a3a1e2ed472400d01e790fa140f1d4994ebbb92c627ca3b8fa8 -DIST firefox-84.0_rc1.source.tar.xz 365966380 BLAKE2B 6320a23f03e66c359331c2cd39e57199bf7927c5d3d35597d2c94e27c132592d6f01c31b200425d86239f519d548f408a2a939256226b3569e47006c490bd9ee SHA512 16e3219e28d0807f53c9713e7efaea56cea65bb02959680bed13db4bd9331d9651de5c80c70c928a41b3db9d5471d7b38fa2d88f3e8017565ca7ea79ed0527e9 +DIST firefox-84-patches-02.tar.xz 89512 BLAKE2B e1fbdfd2f2a0a128f4107d2db67e4abb1781c35704c1364c5f5527f8100c9063648b5cfc69086923b3c204fb883570ed901268cbb3fda2880ce923eaf7b2dbaa SHA512 ba96ab662c6b19be7ab99870363816b6a10da29d4743a2196e39c1b5ae2f20de28d652249484a3dc2ea259e0e9393b034300b84fd42f28755610550ba29db7f2 +DIST firefox-84.0_rc2-ach.xpi 461782 BLAKE2B 84bdcecd194a37a5e7f2bfafb56de4e2b1f322efec36a4a5b3d861e340b063c6d739751cf06c09b746bcd9910aa6b5df24738f3b576b792af88f9b3ceb94d770 SHA512 f8c912dec04d784bff81fbd32bb7cfbca83c187f4ee7f730cad3224e6a9f981d89b321f97b7efa1559f4da5c67877005d708188b63952ab0763b3159d421957a +DIST firefox-84.0_rc2-af.xpi 429055 BLAKE2B 15fced40a0c0f0626d75eb90ec4d8309b32204f262b03a0c2df00941530dc98bf28c749369adb144b74f0bae60cdbccc9159ae89b06ddee53a82d42af8d7def9 SHA512 c3126d78b838d0839b673dd113653f851152fb14e88c45536f3012089d2c48c5d01e0e113ef69da7638f702a6fe8430c920e4a805b6e2641e58871c880e80e0c +DIST firefox-84.0_rc2-an.xpi 509097 BLAKE2B 9fec3c5f31e37a255944ca0aa6e085de425615c2af58ea9092a4242737c9b13837d72d3d6dcb596dfc6cc0e1d651c97d98c8a507b653b9c35aa1eeeac204c2ac SHA512 b7588064c7ef173f3ebf1fc72a1a5fb295f2e223d9cd00e3a116ef05d614bf14bbb11be806f57c8e4a7f70da155a4ab959bada7be5bfcfe9767526c1f510fa6e +DIST firefox-84.0_rc2-ar.xpi 560423 BLAKE2B 0115df8011b679a413032f86935822dfe00397326bcc94e3f6d61295fc395ec1cc3ffb5a362f0a34e04dd907fb9d43538faa34c8a340a4d185488eca567513b1 SHA512 ef27f556f03d441041aebf2bc99b588c3024bdc8c4ae1746c30eab12e61a83cbd926763beae0ca7b528f693641c4f41fa0747562719c8f80e5db1f36e2b9b956 +DIST firefox-84.0_rc2-ast.xpi 457475 BLAKE2B 5ac57b38823025182fcb118798e433d41e0bb2c34c4434fc1d45cc2900c5f3e7258b0d5740008c1275637c8d53bb42a29f648422c99222b7abfc20825e1069d2 SHA512 2e4231166b598c31fa66e2be3243b09203678ec1f7b9d793e92e5a3c1a0408ce7be184361c46c8a30ed1dbd69bc987efc044131919c8d61d93c5fbaa29963286 +DIST firefox-84.0_rc2-az.xpi 498628 BLAKE2B f216718470d8330a3fde18f99f9bb5b5deeaaafce272416f97e01e0084b6cfca2aeb3ae1699c0564fa326c7d6a7afcd2840304a543270da295e73cd512535e50 SHA512 eac3a0f0f794de2ca1e236733fae8350e994e7410d3f59e500a74412fee294225884179222c14f5880d5a92b847ee7094626bba332b0809972347997c96ab92c +DIST firefox-84.0_rc2-be.xpi 606518 BLAKE2B 7a8cd9e2357e7daf2e5f38c92f6b865a9162a8c80f71be9242f8e33e9beb85b149f15199ecc11573a45fdf1edad4772f3e6d33855e3aa230d7b23c790e7b78ff SHA512 38df8548454f6698c9cdf2704aefa2de37abb31b0b511843621846e71b8202acb7a76abdd90e75c379da1f3b26eebeabe34b8acde6cc4867752e31492d581cbf +DIST firefox-84.0_rc2-bg.xpi 556446 BLAKE2B 4f1cc20d59da4d05b2bb79b64820169d96a72f2821e7949d670007d4e67b2a3c29c5591b2ab8ad934f91ac328baf0baea3a104b28c117383678cc16b69328f13 SHA512 46533e5376ef90f31aab2dd5c2ea0a3a4f06e4db71356ecd064918fc6da3355c48cd7e6de1ddb0e4b0c450cb7896918588cb295762d12e9cdc881338114c4ab8 +DIST firefox-84.0_rc2-bn.xpi 573381 BLAKE2B 937eed4b5998d8fb414e3f592f3866580b28f87398b33ca620a59154cdb63b9c1dde57a4f05913621d70e4bed09a763e2b022ba8ec42b394779ed18738a211cf SHA512 1eb83c0ab9047d9c610a6bfac6749847687afd6029a737de4dcf256ea02590d723da857ee9e2062accae6b93eb66bf204aac479605405faa619b490ce6398dce +DIST firefox-84.0_rc2-br.xpi 514068 BLAKE2B 329021f731c9491f751f8fcde0ffac1725dea2b75c1e8435ebb8857b3ad6066aecc8a42e87b1a71c5da2be6b0340fd26ee49976c4277a1fe8510684e506ee894 SHA512 cf2e9b139b816f240e8887f517357b38879921b134e92fc76321967e9faec6e57ab729917c136dbadcefa4f959f59f2f72bef641c0ffc3ddd82f6e765aba8f06 +DIST firefox-84.0_rc2-bs.xpi 465259 BLAKE2B 5ff4d7f0108e546c11236c8c0d3f2388384d29292df7f307a940d32edb9ab665b31c4e954f6044441f850747adbaa95177a1c054efc193eec9a38ba82e6d6ba2 SHA512 ea94c6682936980ff6f4a4dd6913a4e7f86ea20e94e1e4a5280aa0f7878f63e6a2c7be0993ac47628f019eef1b8a22f37f79968ebef1e50e59563a5fd2a8666d +DIST firefox-84.0_rc2-ca-valencia.xpi 518024 BLAKE2B 6f92f54d0145227874e0961f6231d5d4a30ace615cbb32901d964dd657c7127924a91b4cdc2ec07111845e68297174eb2f98a6c686ec8b2aa709414f163c8537 SHA512 bb4d2495272c55de39cc80290dd471b89b8dd2f4927f4ec5c104055e14d09d197a4af9c99e6a846cfe628d0abfc0ec5b1a432281fcc4668a33bcadbcd498402a +DIST firefox-84.0_rc2-ca.xpi 516048 BLAKE2B a2f62b92130384113a9d65fbdd75cf7ccb29817b93f51d153c81c74ecb2636f980f374c3c219a25f38763185fa8797f86f0268683095bc3afd0a57972bb1aa60 SHA512 e684febf56ed3d40219cf2ca958406fcdaa0a16168cd9082cbbd1ba22625c0250f2fbfc724840f08a94d7f7823123a1b4c2bca7b955aada5679d877295ffe893 +DIST firefox-84.0_rc2-cak.xpi 549485 BLAKE2B 74a7c9c06a7c4fb2235ff5fe51ec17fc75c7ffdf58bab72d83559112e55606eda022e5751f113e3ac2fbe51dd8f08f3415bac4161a71e77b4acdb6ac6733d6a6 SHA512 1df79fe13515590090d66bb316183179f542da6f06d6dee577aec200a066cf4b4edddb9a49a5b48f302a4393f1451abbdf15f669e7ad63f918c899ee6b7e6b44 +DIST firefox-84.0_rc2-cs.xpi 540237 BLAKE2B 911d963b0075fb742b808127bfec3004b1dd98e759b36e0fa75899a42a4830e3bde4c585585b3b3c7bd9db350f847dd9b6ddc641974b37341e5951efd841427f SHA512 99ecaca08256882ff399240ca6ee28e2d0f90495e3513f66578811ed6a7173b28dfb10e80864a04e2f2d90748f9d2d8edfdcab0c79a661f84b2c296375eaa657 +DIST firefox-84.0_rc2-cy.xpi 528806 BLAKE2B 49e20f57044aafd440fb8e373362e1624c261651114e1c00cc1253a8e164274ab409b2d23cc0d81c1715fac13fc3a9a96742de06f81b27d82036e449332025b6 SHA512 e5cd1effd48b5c11b3ebf90f41683be05eac91a696c9b17d0080a2eb6da8ac304e01f52819be35377323198a73c9961ec5ee1a3b79ffa2b4bdc8e567550b25f7 +DIST firefox-84.0_rc2-da.xpi 520967 BLAKE2B 9e4eb274e1ff5111725e702f4d17f10e3ee115fd5662d184dc78dfb7a43d6c203806138fb71daf9ec650ea7623ff0ec25eeb2ecb850ac6d47cb573d0d061f3f8 SHA512 11083848657ef34574ce60a53b031ed50428d8c014044e4c23359351c5557de1147a1ce65e211b8bd50b7da9a06c78a600fad0a1de073088149501df2074a491 +DIST firefox-84.0_rc2-de.xpi 540878 BLAKE2B 81781f04940cab3384f687e02f670141f85a4748cc45487e85355f1bc7f69138e6b83c60dc449d9113631dc0966859629d2b196a7a1525f7361963ece317aad0 SHA512 4609df0d2a1cc37860f906fadd730050f85a6e1abaf63d40c10ef823be233f795879b0e425a48533ee8b51fef18d290922cf31251916c5272a70fbcc0a8a5d16 +DIST firefox-84.0_rc2-dsb.xpi 552194 BLAKE2B 8dc5301f09ec189c7dbe2f2b92e77d65b2a7bb567edc8cd718eb19e461726c1adb2f28a65231781658b2cc9db1e765559ef8fa2d3c9b968be32710af755f9844 SHA512 665b70959e6664d76808b197f192972904b7646daec8e18e8c3f3e53414e0d016c05f0fc1a1a03c5cc9573b865690cc7be606cf69cf857b6c28791a252adc154 +DIST firefox-84.0_rc2-el.xpi 623759 BLAKE2B 16dfb6ad3a6b031a2191703f891f163b03dfee795f240dad820180f2bce703a67c649fbbf32d8b4ba089c8225004585a3499227ccfdeb63b17f0e63084f127b7 SHA512 5dd6b636521050ed39bc5ce578cf868004f3df4ae4e928b9fbb6e8ea43ae1b7d10c117763f900ea3732723848b1a24bd7199cc8ae57d9e6c7cb363816b8db479 +DIST firefox-84.0_rc2-en-CA.xpi 495297 BLAKE2B 6eda43e4fabc0b810db0d5fe73fd9b75af7eda741fd0e9ea02044d19126f70d73444476ad3147c579840d06749bea9bd73dd2b4fdd5e049b121ffcd17653b2f7 SHA512 1376f97986e9f3cc1ab5ba3c35f411fb9a2fadc51ce69262e2854f9cf15849e015219fe30695a866d195522cda6f92d30351265bb070c334555c7d3a4454d0bc +DIST firefox-84.0_rc2-en-GB.xpi 498711 BLAKE2B 71ee131bd910db8263a1693ee4b85d119684f8db9014b8c999b4e7b5132f9d7bebc2d1fa0aec6dc7cf1115e6e078a3dcce8db276f0415987e696afd899cfc1af SHA512 1cb5291fa3940a9b264d3d76a375484e311f211c3788d08fcc184af26422f7f011caafc6c12257b25cc406fdc1496a1af54dab19fba3b6858aec095092b86847 +DIST firefox-84.0_rc2-eo.xpi 523250 BLAKE2B ecbd12fbf7177f7115335493b35d0c1ef9f0f80047ff7c1cdda81e6d071b7dd7ab5b194c6c3b4d982c2699a38a2c9fdf6a698588bda390c528160b1a6434785c SHA512 388b85e1210fec6c7bda8ad24d5823f2bce3f64d5c5a9786c0f3f18265c505d2741cf6771cb115a28829ac82d2107f4cdee00ee80a058e2a093517deeb38f14a +DIST firefox-84.0_rc2-es-AR.xpi 533690 BLAKE2B 2b0650474173567d19fe748d3c7efbb05236db428c79862f81ea27ad28566422710414d5a5955aaf5de311886a08f1f9a27bee3bddc3e668ba82d099b7cf29c7 SHA512 c118b299a49262382e92e8d45af703ed8a1698423bee1ebfdaa45621362b81d75a83ea6795b76a4b4deb11786cf304b66ccdafaea339683d69e49fe4f6eedec6 +DIST firefox-84.0_rc2-es-CL.xpi 533179 BLAKE2B b5ffd7c0ee7b430c91b06fa67d2d693a6d8f756e66e622f442987e3ff17608d9ce165e066bf5831573acc186e987dc78a8ed1a187e96eae5a8f146310a7478af SHA512 8f72436d4b729c90f45dbb54e63a3daf649edd32ebd9b41f0bcfbac4c588de0a27ba3c1919a0e24b63ce5eb78b584a4d6d4849e25526135784b49c00ab413c13 +DIST firefox-84.0_rc2-es-ES.xpi 523075 BLAKE2B 18686c0e2fffa39c57477b3af7ef41af841360528291ffe69134c485b770104ea3fc9111728f181589bb7bf573a2be12563c6b4b0ec7fa987cc8166942ea851f SHA512 dd352069488fac98e6d0e25fb3fe22c8de27b5a98017282465862688bf80b1a269d35067ec29fbee7821fe0cf37ad2ac48f2f78c330f057b65c12d8efd57d63a +DIST firefox-84.0_rc2-es-MX.xpi 531352 BLAKE2B 23f40903ab55599da3e7b05993fb8592123f534adc16f72bb20511a1c3e4968eb2517bcda7674640e0e73f1871c8bde9285a0a67896272fc49e555e5ce88071a SHA512 41f763658f5c2d695e5dcde060720d44a0525cf90a4cf388e0176c84e34f88318924ee2bc3cb6ed7bc4c17c0d6cebf5ed2c6a2bc68a88b7636095ac54614db78 +DIST firefox-84.0_rc2-et.xpi 486956 BLAKE2B 9e1cac6ea7282b9feeb3490ab2af13a7d1bd811102cdbc6d8e5f0d515c3bea4d29dbb96b51af1855016dd074c06a48780a6066d7220e503d31e0094e4139a731 SHA512 c2147c091c15cb23bb46fee8f49b75b83b6a52d9365bcd547346ff88ace5abdd8fc8fe8803d3a406e50c76372963dd1384512fc4a95a697d3592505885b25a63 +DIST firefox-84.0_rc2-eu.xpi 515146 BLAKE2B 76c18f939759f3a5c9ffcd15ebb20989981d8afbd558800a9053eac8232cf6f4e3ce5835b977013556498613aeb768e079849a21f007987e73f5f0a3639bd793 SHA512 8b2d1433602759866bde880be814bbb72c425800484dd3e14c7a4297f3cd5438643e8566083725b74f43547108ddf4ed55b8be8c92531ef6a156d4e77ba8de80 +DIST firefox-84.0_rc2-fa.xpi 539669 BLAKE2B 3dcd55ae21ed195fa8cadb7175eeaf6a1eb885c5a5823d8d0ca745f3f05b7d4823bb7ace5aac711bce60ba14a88de28176e57acc9f839faedf933a3edca5cea0 SHA512 5f12a0ab05d16f72d353340eb5703ee2b0271e6474e7dd7b6cec2f09f7cbecfe1f03e7fb21271f64f5cdd29eea6ad3c7f5129111fd5847977c20d2d0976af1a1 +DIST firefox-84.0_rc2-ff.xpi 483215 BLAKE2B d8c2ccfe15b11849edbccfd4c845dc6a2fd84790318dc35adf814e2fd92eef69bc9c9511c9ff9e285c765a99501aa69169d8fe182553ffdc47b19693deeea03b SHA512 0479ff9398a13a14f5d4b29010ea7ece976b9247d0428b84019f3fb1678641026164b16fdfb055ed2dfddce2d558d235309e15ad6a19974aa18d4349ee4de3b3 +DIST firefox-84.0_rc2-fi.xpi 520032 BLAKE2B 9ed493a7b8803973a7b409eee2cb12942d66f91a7b1fd660fadb0476cb085d357c17657b35f8ca550a05c6b89d93b00956e5a65a99d7919a8f39af94e13ab7dd SHA512 dd6e3e07befb8bf70140c7d2198234caf6bba80ea8a06ae90316f4378d701e3e1ceaa4c1dffd6f5d61812bb706632b4ca44b5c0e20551c35e8c28d00615a918d +DIST firefox-84.0_rc2-fr.xpi 544370 BLAKE2B 588c217b9e63d3a38cfa8636027faa4c1a9d576afa4ca8dc10d7b5566e4bc0a9c8e42e47ba7077d99a61ab851270f627b099d32019506208afc0825d3766af4f SHA512 d64371fc05bc15345dd90dd4737d709086d7ded2503ec7da7cb35eccc302381239429d1274c1e1ba0d7cf82b4c978efdb22bd4837011986c4197804c8b26f354 +DIST firefox-84.0_rc2-fy-NL.xpi 530307 BLAKE2B c6096e2c2b35305038d830c00c7dc73e8ae3d579255beeed14383c7b62f5ddff9adc692d826fa20cbe5f531e384f8f88e471bc66a89fde656fa0c7c8559e8906 SHA512 0b21d7fb5004e55c1c4be688bb3383ff3059d751fd23fca745a773ec627a06b1d7f56fd3e0f486394a397c722c5441ee1c755af3fa86d11640b567cbe8208caa +DIST firefox-84.0_rc2-ga-IE.xpi 468075 BLAKE2B d759b55ffb0f398a9deb762c39ffea012ec85d87b455643eff3c1ef1b3a44577107fbf1ef8956c0d74d5e1bdc7581a1bd7473dcf1fd312c914ed023e839df445 SHA512 eb437b5d6c4089fb131f3d5f229aa373e5cbbd076f8bbc45549c344e2948751514827ec0d3d448a363b92bd131d62671f1ce10b663e1dbcc01c1fd983adbcb16 +DIST firefox-84.0_rc2-gd.xpi 493516 BLAKE2B 1037c3f205641bfe885f5e600727448860232a651deba578c0610d3d90ba50130886283df77b0626a027e3ecf7222709a94dbd0501d0cd44fdc2a8fbe5150d74 SHA512 543ec33966725dec1372160d8d3ddaba7ae451e8b21a6bc518ad597650f5733c8d5ceb223060fd69281bf1ae3ba23a2dfb883d9cb754cfe92c8649040108cc32 +DIST firefox-84.0_rc2-gl.xpi 525668 BLAKE2B 74c39adc9f6db31312791d10ac3d940a23cb555a9f3050217314def36cd2a9fb3c6a4a6a006d247dac5e15cfcf5521ec6c83e6cd68efcfd3c632ff674449a68b SHA512 7743f39ed34ae15424ea765efa8856b3dbc58796ff4364092f3f8c7975c720e176119fab05556344204d40305004ddd21ee884c9e65ffe855a3bd62602b04ae0 +DIST firefox-84.0_rc2-gn.xpi 544450 BLAKE2B d5be0167e742bba97b47f40a06c6b1ff486413f3fb805b4bdcfc0ca21c739503f77844a60adb38419863503cb79d76ba15c53ac7175ac38b5e30dc226a5b29b9 SHA512 faa90574a4f47676f9c5b356abf1de6a285c1b7366916a5e624324987c007b3373dffac6c8f0fc4029a88dac9c08183e4b1112b507cd19a054ddde1200334bff +DIST firefox-84.0_rc2-gu-IN.xpi 542131 BLAKE2B b9cd3c18a81985c0c2ec8368f92e061e5467c008dfa07a0f731e327b802c1e6ae785722d2047a78553d2eb179312ebfdd970304f885996ae4b64fabb575bdaaf SHA512 917bff4e7804602abc0d7bebef64a32fe88505f4e674fb4e933fab809159e3524dbd74245fcf3ee4d219e05482e2a365e94d32435fc60ea1e0a6306132cc319c +DIST firefox-84.0_rc2-he.xpi 545459 BLAKE2B b8e362c1934fbf3252376ea8e48d166cfd789c579a2e3de84e75dc12063545a40bc53a27015c457d31e07ab8850721f73daa8f4c33eac51b42f54f3ad6966349 SHA512 bb08fff90162da945d638ca91972e4171f70ce8bcdee2bf4da4f090812b2adbddea0fc2e3d723f4a13918238c53a53035203c7a791ebc8332e96960bbc1d389b +DIST firefox-84.0_rc2-hi-IN.xpi 568117 BLAKE2B 8558f28a8de278d7dc930cbf1aa0dc0c59a07dd42d54df6209309b24da1d9bb5ddbe6b4656e7ea9fe3d5166214a0b76d5c2492fcc4b5b85bda2d826a2c66f240 SHA512 99bac65dc1507ee222de42f510bed1131775a690a03e77f75526c052728bb23b3deef8257ea04f0f41aa69c634efc11f663fec981c5b5d0fb9077d923170bfd3 +DIST firefox-84.0_rc2-hr.xpi 521280 BLAKE2B bbd3a3e7df2d4b94606bf93dc9bb7488c44e5ae2c510106791cbef6276fb175af6e827d49e48eb8c991547a6cc2b81f2aa92c4562417cb5f4272b711e4f2c776 SHA512 942dec01e67dd7fc33386e953177c2a58d545bcf3ba877633a9f235e61b5f90cab93c20de930e9b7fae7629f72f60eef719267e406962f62e907ab4e7ca7e9a9 +DIST firefox-84.0_rc2-hsb.xpi 548608 BLAKE2B 370a625b4e0f62e4512dd04813274eb6305343c8f89a0722983cec4a669d70b09f65a6f24a322dcfd90cf86cebc039a0fabe38b884c83ad8cd12cec3ef29a0dc SHA512 353425b683c0f399b44b2fe82a6683fe2723283a9e6297d2c1f19a483657a94294fe94d809df9215c9e7b31550e08166ae0c78631d6f62c55742b972695da873 +DIST firefox-84.0_rc2-hu.xpi 552400 BLAKE2B d92610afa9a2e8646e58cd648bc79980cb4017784b8ff0820908af3a086504ca6acbb03d7cbb4cd46358b4905ddbb6aa5b86423fe132453091d071948d177088 SHA512 34ed86b42507a227e8539ad05537b36019abb125991af9554938dfbc943cbf34bac596b5255a9064f40ce71ab9da06d3371267a5af082cebc14d31d862bb14d8 +DIST firefox-84.0_rc2-hy-AM.xpi 588505 BLAKE2B 169fb77296381b8fc2bf35b2bc3168607831fc5d280f499128cc5c21e5a94d3576c66f9abc8a33b9692693306cabeccffee08c0443dcb0bfca0a26e032007b89 SHA512 9f561276069db8d22ea0dca1b2d7d01d16be40f0ceb6355d04a0e112e10458ef51d7fe20a4e4f305d81192b2a84a8ce4409a9a397605e58f63d2cd7a21e1dc8f +DIST firefox-84.0_rc2-ia.xpi 519833 BLAKE2B 37c6b380fc6893e7b69d992702d3ab0ae1d8bf8c3b69b73924152f1920c211efb82ed36f216536e003b350d4ed8338233865104c2dac5f8743f510f51a4aee69 SHA512 5e4f997591c833b6ea7a9a95fbad6b9e81f466d5c63a9354af392925e351a0394cdbe019f1d196441aafb53dbb5e1e3e2b05ff6875b5b0145769137f31c045ea +DIST firefox-84.0_rc2-id.xpi 508516 BLAKE2B 7f8efb44922e23c12ae76fffd74361608985a7ccb6c27d7bc8d63c9bae44dd29c8fff111c5bd8a5d0080603eaf55d477f473ae051bed8d30872c109cbeb53797 SHA512 107d956cfdec21ac694392677368650288dd12dd8d0380f64eb11b389d6465bd77e79ae21c1e988fb7d34e7bbd63786bd9e170dc66b885211c7e3cd53d8e338d +DIST firefox-84.0_rc2-is.xpi 478791 BLAKE2B 0724bd45c1238d1618c2fa061054c670302dfa435bb4acc8844c25d1f10b1e55d0c9540a860ba0f6ce9a78df71c00bb1286463c3369f9239714e29b27d544554 SHA512 1b1eed4361ac49f1bff034daa55e61c8b1107d3799921ececad5b50cb83c6a405e3d435c0556836a642517a68aab57016aabfb6d20c7291d4a3d4cd4a5facffe +DIST firefox-84.0_rc2-it.xpi 448146 BLAKE2B 3091bb6885e6a9f789599cf4ea8ee6a7d6325f6331f854d26aff5f893485c0a31b751c5bf0551e31892e5ee8fa634ab4a4b252eb65539a5296c378ef8e0da7bc SHA512 1417fe583b15d8ee2828203c68bdc678aae42307c25808a2fd42cfd7f3807100ff1ee95ba24296c64c4d56a34a9b5900158ee9dfc7d5f0e377cbedea69386ca2 +DIST firefox-84.0_rc2-ja.xpi 578212 BLAKE2B 234fdabde2b7fbe6111b63b95913d81df3716f7a19b8971af7def7cb5c0f8dcb0b2d9a40f7248934a921be1ba9784f09a7da7b9c76bc20f73e21cdf54fed7251 SHA512 bafe651eb25111285fb7aea9b5a521888f765308e936717a03007869e5a12072264fb62478d57cc35688bf2fb0f27d48ce11c48287dc1bb7481bb400e6734be8 +DIST firefox-84.0_rc2-ka.xpi 579062 BLAKE2B d1529de4eacdadb92a63fc44a48852ef97bef9f906a942ac0f7fc88f5180a94164c7a3c8ec2ec9844d1b4111bad896f5c4107c0265b08062f59eaf2cd3e429bc SHA512 56ced5298207792b70095af56c995a6132ee01b3cdb93e7e16931242ee551f5b2e669ceb364a8c4de0be6308fcca6241a2ce809457dc9b1671089b1eb0879b19 +DIST firefox-84.0_rc2-kab.xpi 538415 BLAKE2B abbef783d3be5aa8ca03ccf39158d76da9acfae4449c7a0bf4d31f70fb1715fdf2267d32145f05ff22c10062e5c0ed581fddb2261bb27524f9a0b313df39ae31 SHA512 c52331ef04493704ecdfed737f219b0ce6c315d693a61d1cf6a96cd42898e61c5f1591b76356aedd7f4d54c913b1ac9e27e5ef91fbc27c71801bb6f89ce834d8 +DIST firefox-84.0_rc2-kk.xpi 591073 BLAKE2B 67c7b0ba48e421959d4c8d78ced6f2a8d46ba7b8b48335f5c2eb18ceaffc2009ce0ebc76b3bd5d9156b12df3bd3052ec58ee9d4b858f86c66f93637ccb12d4ed SHA512 a9fc80442d21e32579f4b9c762ff7b5dc2ee0c6c9b5bda989e47395f4429a799186bedf851eb3c459fa484fd90101e081acca944e4b46492d3d7c0d9364ff0d0 +DIST firefox-84.0_rc2-km.xpi 527421 BLAKE2B 7da031efe0c190825e552174d0353037534685a51e1dbcf59c78794c4022648f48b5dcd8b5a62969b29182021e1fb74ccc115e25ab3dd403205ddfebbfaf2d43 SHA512 1ef08876acfc5ca2b373b4c2ca3170e16dc051b9adb6b39556af1459dafbf11f59ee75e0813593edd9595d415276dfc95313ba4a91d4783e074d6edd9fbf0694 +DIST firefox-84.0_rc2-kn.xpi 506722 BLAKE2B 6e5593a54ac53e5b043d0213efc19e807091c35f2baa496c545a4720cf04f42c8869bfeb8140a2260118d88d05cbe70a476c026477d2a0f49476f7e8102ffb7e SHA512 3af28d4dc181684e31fea418a8f7f73c44502ff94f700205bc3902b4020d17d6e6897c9ba13491dc69a9924fd059c88cbf5fc2c36615683ecb645494d400c0e5 +DIST firefox-84.0_rc2-ko.xpi 564760 BLAKE2B 901ae4704cc773229a57ea5fc5c0a0c57625a72da1b31103794e9d71b74e89ae35d6be6189cb29ac7a3abb0b016cd04308e0ed71103849f57c2a32622ff9c825 SHA512 768bd3f3a98b08ba64ffbff81e5ac8edaad7952782b9950118275ed031b95b496f84f44c2a68f57cb3a98e71aa71d372fe6437328790035651837c6a8276dedc +DIST firefox-84.0_rc2-lij.xpi 476801 BLAKE2B e3197e4a1dce7c0e0bc7671fa91e4caae87a424997372cd59d759f931af37da447feb532cbaf58a761703fc1b38a2d08e95caf1d9945b90cf0c047627fe80c43 SHA512 620eddfa2a5d4924049619a8c2e423008d0ac0bd237cc46cb1ad6652cfac47fda1550c75eeb6af8e60f912c0953d05621a8b5cf5e91bb659680022d6cb5a3cca +DIST firefox-84.0_rc2-lt.xpi 547521 BLAKE2B 9c162d0274be61db4ad13c442f6b19b13c10b3db313d35316c9fe5e012334ead7bd0e592526a584f677589ed837ac16efb335f8148a05fb169d54f41bdaf4579 SHA512 1d4475f26914402122a02afe1251f9af6cfc5da73236488499158201b7e0287ad54c35e173aed0e1f96fe65199aaec5826ffca4a70048ccb8733c7b532f78b53 +DIST firefox-84.0_rc2-lv.xpi 470838 BLAKE2B 0723004f21ffbb9e07758b38fba0f93d9b484e31e06d95dec66e53d4cb8e472cbf1196dcc3866ac7370a29b0b44062cfec608b5690fab6cbfaf68a73022b01cd SHA512 d10508bbdd9ae7405e5919274355004aca5c808a03e1732f599c17d8bf0df707c126639d86d3b9f715c118af980a7dbe14dda5108ff2859cb1967b167fdcd37b +DIST firefox-84.0_rc2-mk.xpi 459831 BLAKE2B 2864907c22e4bc0545a414410f0887ad8dee7776d5c8c8c3d99289cf9ee25477960278ea86bcfc17aaa77f5fcd36457b66461151f7e0df9a924b5a169ecb58a5 SHA512 6debaa3f9da853f4e60b126829a5709ad993c6bc8ca8a1c949af20fff4f7d3866bc3c72c36bb52b61fac9c7a63f006696af0150a7b8a204ad0b2a8cefd496275 +DIST firefox-84.0_rc2-mr.xpi 541986 BLAKE2B 247dc8533e4da3b2f2dc2917acb2972b71a3cde024ce328328292175dea118eb317577890b0ce829e25e16e0c30e0a82a49816767a38894b01146939d6a32eb9 SHA512 89fa00cc2f35be93706f7c2b8ab4dcbacf736f7ccb03b9ec7bd185b33c8794dd7e40f9510a825ddedf52115664830cd59ecc86ef3b2693e2f2023f8adda4a8e7 +DIST firefox-84.0_rc2-ms.xpi 454818 BLAKE2B 81f519f36280ac37f0d59a908a67fee6191f6091a6f59cd381b27fa5597d72a99e861d39d81f3bb4d394b1b129551c1319e29c04b2e63e5394c4a07915b40cc1 SHA512 2ae0d055d0eeda776ec1f1fa6c3d1e5560249c9ee9a072a224f77fe2402097ac7f3b763a3e4cd775536283492705c6bd59415a820f7173bb1300e7cc46f384a0 +DIST firefox-84.0_rc2-my.xpi 526534 BLAKE2B 3be79cf648741b353f91ab0c42ec4b71f3a26b9980699bf214cf2c5fcbe026c34cf72dd70bdbeb3d744260b41d233b907d9ae94f17f674e265c741577129e7bb SHA512 212dcd854747921d6847ba7a2c6bc8e5023be82eaa9828c04db6fa21e688ba23664d39da7e98d80459f486b04147ec20ad2dbdd25b3667116d15b2490cb55f8c +DIST firefox-84.0_rc2-nb-NO.xpi 516940 BLAKE2B d0e48a82940544de259b6dfeb4282bef74b99c8331529e0bc48858480ee3c587438c2ac4795bfc468418ad10e8224b84ef18816e59e17d69b1078dd21c83a04b SHA512 434b590d37f6e6afe4b06ecf75b0d90fd0027f4c7b3f30b6504e5bd299a70541fb3ddabfd055d63d37e28c205c2f2d23ff18961be7157ebcd83ec4d56841c08e +DIST firefox-84.0_rc2-ne-NP.xpi 483422 BLAKE2B ab8ff7c5d7843ab09f2fbe38861de1630c638ed209aad6d8fe50f5c38f04d4bea213f4f9dd8574e12ce4811435e9f2fc5eedfff4a4e1aff55ab7fc23b1ce1a46 SHA512 a242b814d5784a706e66b4fe1acc78c1975832c9505cf2cba9ff6cb7c874ccb92d7de5a1529490e653d68b27c11a65563a15eb8fa5b6b760799884e5d0ac23e5 +DIST firefox-84.0_rc2-nl.xpi 524180 BLAKE2B be5f35999738efe1541ee995ae20b69dbc971e88f24f9a3eb45b34bc87ce191299063f24344512ff605525825ab7044f658cbc32918d5849717ec837f25796f4 SHA512 ee25952eb92355a715955b10fd316855c07f3ce98d36a539c4bf8524d87d2b4a11442263dfca98be61037c6033566d72ca59c08ce6ab265d715eb7321b37ebb6 +DIST firefox-84.0_rc2-nn-NO.xpi 517871 BLAKE2B 498ccb8a7eba3a18ae17a2c21aa25e6edad271e52b0aefcd6d10251eaca59e425d097c162858d36f4f69dec6bf427854760c54d6527949284b955b21534da767 SHA512 2ebf336b522b02729451d1935c8ad5cd641ee7b35dbe45212ade6cdacbd521f8a98347fa726142c4bcba7244b038d814939647939d67386d2177f732d08da094 +DIST firefox-84.0_rc2-oc.xpi 540039 BLAKE2B 94976b7c70a8a7c23c4b19845764bf9f46d9bf43fecbfccd297486446582d7180f9b1275f97ed14c0ac7cb3a3e3d8621549efd745db73f20838e0fdb40581760 SHA512 de3d81ff9444aa3fd5e430e627cd0661291e7726f72d6eb4f3dedb798be681d6727ca91570bd8dd476d272e2a7b9f3c0e30c900c53a837ebf3dc5b75e583ee78 +DIST firefox-84.0_rc2-pa-IN.xpi 584968 BLAKE2B e24b11578e837c8782ab79469c99c122fb3afe99f43657d28a6b05d995d5125ca3402da29a340046b98b9e9eeaa5eb2d45b247fbe8919a903a3363d4001acf61 SHA512 2c5a93d2b1c7b1bd62690b584f9fae0b99fe1da8ddc893f7b48bd49c98d7e1e9e32103d5908d1f980b4480b6ea93c51d4f33764dc2b13371377f178887ab043b +DIST firefox-84.0_rc2-pl.xpi 543364 BLAKE2B bd878fd34c11bc8b36ff8c6436fbd2ba4283efb090bbc1372f31299cc1a0430835b7bc967ad4ce924b21ba95beb8e75a2b8f86bed67807522fc21cde57f98420 SHA512 9de676a9afdeae49334b894150c33ebf91b9cd6db78c35a5824ca207c0a422a30a49719db57ba67c25d8e2cbe270e51426aa03a9d68827aa7deb9941854c4308 +DIST firefox-84.0_rc2-pt-BR.xpi 525590 BLAKE2B 56693b298ae9e6754f8d3ad802882a59bb8d016f12a6a8e7840394be513ae4e1a1a2be677eb8c43a1b1e029bd3fae88806a7426df22c55d5876295b7ee9372b9 SHA512 fbf57b157d4d474522ba4cb31b774bebad799ec75b4afbf68fa4ec11d1b6bb41623598783fa975423df685024a57a7eb70211c5fade64afb598c31b7e7ab2cfa +DIST firefox-84.0_rc2-pt-PT.xpi 533301 BLAKE2B 15d9eed4fee4a3fba9c83ad0909f313b00502c70c31dc802da03c8b4d356b8e7922c7b919f98ef64c7cae6484b9e7d030d83a5840892cd8d81516339e0836c80 SHA512 b102094758758c7662c459b40f8d181e034770fe6f34142167ddb916ab3f133dcbd45ae9538b604555f3ed5ccb1c1f2616ee64d50253c5bf833d15eae0dc7f83 +DIST firefox-84.0_rc2-rm.xpi 524840 BLAKE2B 93f6b85342a3d001632c1b55c743ef2d20b865ce5014418710d6c5de57e451962d1ce10a1180ecd451e15d91e14834c363f4d5905fb4d660361b4f071ee93f5c SHA512 c2d31fad67a619abeac29209e8180ede92957c99725f7f491a63b80469583b9b035c243a0ca66ee40502ec8836c163e6193b8c1aeaa96f9770ea1e3c3f91c5d9 +DIST firefox-84.0_rc2-ro.xpi 532974 BLAKE2B fb955c802812ede28c21ef3e4b443cfa44b9605b657536341b47eb78112398aa1663636ba2ee36663fc46f1bee62e4c2132d0edbbe14acac4625c1b8470db9d0 SHA512 3cf8f3ae2e8d8f9f43a49fe96a9964c777ccc07f3611b9ca89f8e76c0d73c54ff343a2bf246cec60761ffb5d2c0ea1c0a0ee0f58aa6cca52a8f1bab596655e36 +DIST firefox-84.0_rc2-ru.xpi 611900 BLAKE2B 53c020614b0fab742c516eebcd460226fb21194525704f48ebfac0f25a654018eac4496cdbc55423698793221b9aeef4828f5c8ff3d37ccb228d7d467f50223a SHA512 7d19e6098368efaa9d8ca1c20dc49c9c72cd290018e3404c2b2d8e3549b7a7bddbdb3fcd295f36e9c8d4d4728eb23388d6ba1e41198979e4f80261dfde4c5f7b +DIST firefox-84.0_rc2-si.xpi 492927 BLAKE2B 39491dff0af8598e80607498ab8c44bfc380aeab3e528a2eaf133c7615d146da00e80cbed68f1596a98d32340f0cb665faea3aa3a1bc9a353814491a28dff6e2 SHA512 753dce591d24e01e5af2cc11ee8079e13e28245ea4b9c778c4b5d9d52e30f1ff071157b1cf6b06df28881f67f7074bb379d62dbdccd8867113c9ea338e3b38cf +DIST firefox-84.0_rc2-sk.xpi 538496 BLAKE2B 4466298c0ec6cd8d02aa9dcb0566e0a1f9c94cf3364387bb8139d6e3c526a80e67dc85d9d607e50d2fee03d05946289b97d37b99a3c5648aaad6e064bf1fac35 SHA512 975d0581d9128eb1946fc9c8ba63e1908a9d3f082160e1c9094e7b4eeddbb58ebd4ad18d321817960ffd2afaddc12d49e5ea6e87489eed4542fbfafbfe401c23 +DIST firefox-84.0_rc2-sl.xpi 521132 BLAKE2B 89435b3e5162e9b30ac2c665da3f28a11bfec1b3b971a8ab888dd7a425d809a7585ac98a9dd39435f413d5bf5b31e1bae112a03807328410c3626e42b7c19b04 SHA512 9c0753928253308aa5aef1a9f1141823be100c407aef8272bd6a0ff52a673e7aca314f2593093cea511f932b0f828f3f738e5cee9e7c475c76efd762511d5013 +DIST firefox-84.0_rc2-son.xpi 425706 BLAKE2B 612eba3a59a8aef0802f83235c4ff7193a7d848de93cc3c3274bc46a48806053703cfe282a033194eb6e2689fd1839201f61240dfded06bd54f247b3a0b39d5d SHA512 c9d5392360adb6d807b930a310e9f5f74d5a42d776d0036c0f97775329210a9c9dbedcf9eae311ca1d7e8943969e177eb56b097c3738ed79f2181ee9c67dd9c4 +DIST firefox-84.0_rc2-sq.xpi 542777 BLAKE2B 6a7fe46253d7d51dfcb0d24c977e2b7d393f272eb60b6ea331d3e73e3b5d354d2e0856382a93b14401b1a94d9d6993f2f56169f7fb98781a45a441c38b761037 SHA512 eb690797b435a4cf1695f284c7670df464e06805946fcd3c46c78333bbc77f1f4ce43d98cc4641cd55bfe9a338e7a3f897500134b3189f7bbdb740e81066523f +DIST firefox-84.0_rc2-sr.xpi 563739 BLAKE2B 1a9b5d9c42ad064b984d3410a6575cc070929b4d0953e985ce81bcb3090fe71ac6b277e1ed6372bd21be5347bb8e3b9788231940ec356fe461fde36bd0b358fe SHA512 7738ac3850bf2deee37706d26b1b1465116aa4f0718f0e181f9ff04809973d2081b2da7a3345c2cafb573a036db8f578e9f8fdc4a9bf634001d157304e9222ca +DIST firefox-84.0_rc2-sv-SE.xpi 527548 BLAKE2B d7f7cb47dadd89fc67f590522175930502d32bde3f92edb8ca375c691b5a2ef87f9da6fb1af04160fc5c3bea2235843ff52cac4b7b5203eb88172f090e573129 SHA512 5329549635fd5e0c99000222cfaf825c0fef3a2b254336a77a6bc2e2fe83db7fa061da2e1d74ecc76de9366c7ec75f11510e4726ad9cfab1d9f839429138fa76 +DIST firefox-84.0_rc2-ta.xpi 521655 BLAKE2B 801b313100539936969a74f031c915fdae8198a38758a44f8ff16b340bdedcf36fe25b8e8a63de5c1e071acdd6c1896ee48a77d45b40d7c01557a69a5e5f8be4 SHA512 b67ef0540b2f2ca5fcc4c2120da29823d8b8a5af0dde9f28478ae7eed33836d9a08570786c41221d3f6253387de00912c4185cc611a91a9369c2f2122d614f1b +DIST firefox-84.0_rc2-te.xpi 558090 BLAKE2B 57c0f5ad039d14115eae693f1e6c2bdcacc9ccec08cef7bc4d2dd87f3cf445807dc23e9bf61d6034a1aac7140fee9ec386fea3343cfde4dd3360f032412aa9f1 SHA512 8936046547cb24c3ae804f3ee93df93001d4bbbe31f2cabbe003fb79fd6a67bf2c30171c6bd8839ea3b480ff4b572fe21a7069b3ad4407041f380f70da08e271 +DIST firefox-84.0_rc2-th.xpi 592811 BLAKE2B 3d9554114eac7eda4bcad197bbf5d32109847c77ccbb88275b8367b0eff8badb61ea608efc7de670dfd4df413bb472fd82ad596c3b8a9dfc10ece2169e7ce3d7 SHA512 f3c3bea3f08781ae1ee779994d7c6ac96e70da3f1b580737520edc103673c4b70e6e3089ba4f91424d3b3ff4fc51c8a206666cd0f559c4e8abd1c3ca0c938e19 +DIST firefox-84.0_rc2-tl.xpi 519350 BLAKE2B 9e2b84d5a18b3cb6b8068967d0cf09dd743650bcc97404a80d442316b1aea4414f41a82e67d45764293da15ca645f9434aaf10fb74f42f7be59bd107f45ee2a2 SHA512 30b1a44d64503da7a189ac76481762ddaf4e7062d81a056d283b9c4d3c3d0656084e2b82e8d9e6ce8214036edc67dcbf08db5b806b13e2cc51d792298c4811df +DIST firefox-84.0_rc2-tr.xpi 537927 BLAKE2B bb52a4ea6b92b42481b7d91bac34a16f6aeac946a44bce52222ba3e5a40fd17f9dc64dffc3dbe959a32b2e9c12ccad7004654e7c28a9fc114b3a6a32e287234f SHA512 32cd31396108437aa01535f7fe87c624e57ce9bdfdd8ee1d2aa66853c01a120ee70d3e6442ec98db67fab71719de5cec33645f15a067a6753d4e545e266c7402 +DIST firefox-84.0_rc2-trs.xpi 500696 BLAKE2B 749a78732edd365445ae57fc64bd30c01cfbfaffa383773274ecf44cc4b11d7277169b5d180e9ee9d1cd0be10478fbcf56c6a8f04f87450571a47026047adeb7 SHA512 e04b3318788ac04ea3dc64784b6aad303c4a6d6ca9b181ad4c341d022efd2695ae19286f539a828af280c67f5f5fcc32e18f0340781dd949ad7c0abc9af00c48 +DIST firefox-84.0_rc2-uk.xpi 606079 BLAKE2B 1afa9118e7cfd1b96aacf5ea582a9c6ee4fcb053087b3d935bb5310b418a81867224bbb22ad18ccba9d08227d4d44c26110da1848dd2b7e47fd15b8b79326012 SHA512 ccfe395b1296ba9a914c9ebb3dd014dd5c891e599cee7809450e22d96e6a6221cbf9cbc529dc49d18bc7b81ec5fd1ea6a9119cbba88414b931cc9d16af5e44f9 +DIST firefox-84.0_rc2-ur.xpi 558462 BLAKE2B 401b9b261f960987ed937109326861553cd5e994eaa2f9232545259b856d3495f9ccf3e503bd8893432e2f149aeb843d667e3da5bc3287f70792d46bb8fcecb6 SHA512 47c0f45d6ac53011272c5e3fe0e560bb4e0d89868010c1281acd7a0759d9dc2991d2a10a228b872c8e001fa0ade7ff013508cabb4592c0779c52822bab2f4d2b +DIST firefox-84.0_rc2-uz.xpi 478526 BLAKE2B ccb3a55b07d0326468e41d4b01ab5e983dee2763dfd84090033a2ba7eca478103905d86b0db68928c0d4b7f6a1b766a18f39be50854d604ed835e10140f44465 SHA512 29c055c97bca182473ef561438b2de83286e8253ed66eba0c8635e90ab75f12c3fe508dccda827c8121c23688c69e975efe04061b3c2dd8e913418d75ac36f51 +DIST firefox-84.0_rc2-vi.xpi 561447 BLAKE2B b4d42fa556b6b3643de0bff443b0778e8a91a02e709aa99d7e507b30b3f09410a28239eb95488066af7a524a3c1e129091afb84d1d38d36c6faa583be136c277 SHA512 c2f92d1aa0a9249e8b5a6ff6b12e46e5b9fb87ee33d733807310d0b03d03f7ba7439bccc27f445a0b3922e4a2477c0d22109588f24769126ce71a0cc04c4f3a6 +DIST firefox-84.0_rc2-xh.xpi 427849 BLAKE2B b4bf4bdaea6efca72aa902ec4032fe6990ffc32eeba773d621b8aaf650026f7e29f033006350d0ae38dd214f6c4ee759283e008b14d84033e2b9565ec0b2fd6c SHA512 b23714474dd1c10645de3aa3b1bd720c351e51e9e83de9415652d3de0748114ae6340a2585eb220b6b00438310f2b7f35cc5ac3a9ddca800031df046fb6fcf1c +DIST firefox-84.0_rc2-zh-CN.xpi 562146 BLAKE2B 93fd6fc15bb902c6256384402fb8e7293282e21d3ee1ee17f7d76d332b164737babd92ef65795425f86706bf5c1d7431cb5f37ce2622394d58c2a2797e66da52 SHA512 a8a52bc1f67b65577eff153fc1da6dca9b5620bad829f797d0bfdabe69de727f3efd07001e9398b8e8fc0370b017f851209591751f518ae5eddb616948cb73d1 +DIST firefox-84.0_rc2-zh-TW.xpi 562084 BLAKE2B 2f591031e66d12c35caaf84f81745bc6dcecf89e24115a41cd6fd33844850bf254d74d1b8372e3653b5e38cbd0620fade796dda7821f1782af01f88129dee1f5 SHA512 7776cbe144bf54a82ef56c8cad81ffb2b6596ffd0a32bb9a55eec0c0fff3c7ac412d9375c8dc31d0505a298eeb723b16324e108848e0c5270c9fa608ebea27cd +DIST firefox-84.0_rc2.source.tar.xz 364652156 BLAKE2B f2d3ce699f78d7534975f422c3147bfdc69cba6af071844341146da29e943862d8089f86221ccc712c40b0b0b70e3ddc6bc0a901451279faa11dbaa4a10b8ffc SHA512 470ee3fa7f2e7489925942997bb66a3161537abe43182dd898d66bf9a2ff2c7efd85db93f7494e238ab5760fcfea12c69a55657c9667d8e052604f9624b70160 diff --git a/www-client/firefox/firefox-84.0_rc1.ebuild b/www-client/firefox/firefox-84.0_rc2.ebuild similarity index 99% rename from www-client/firefox/firefox-84.0_rc1.ebuild rename to www-client/firefox/firefox-84.0_rc2.ebuild index 39853d496116..cf317b566bf1 100644 --- a/www-client/firefox/firefox-84.0_rc1.ebuild +++ b/www-client/firefox/firefox-84.0_rc2.ebuild @@ -3,7 +3,7 @@ EAPI="7" -FIREFOX_PATCHSET="firefox-84-patches-01.tar.xz" +FIREFOX_PATCHSET="firefox-84-patches-02.tar.xz" LLVM_MAX_SLOT=11 diff --git a/www-client/google-chrome-unstable/Manifest b/www-client/google-chrome-unstable/Manifest index 15da9bae9ead..e12ba629f259 100644 --- a/www-client/google-chrome-unstable/Manifest +++ b/www-client/google-chrome-unstable/Manifest @@ -1 +1 @@ -DIST google-chrome-unstable_89.0.4343.0-1_amd64.deb 79593880 BLAKE2B 637a5b25f5dfa6aef08187f74bca9f209a23482d3d629cf016a731803cd1237cb20122cc70a87cc23ba811289866636f70b54ee74845b43edf7a05f4cde575d3 SHA512 9cb5adf62d39a3d83c86147db222a36e16b0e2a6a8b4eaa0fd3c98c00ead91b86270fa00bf562cb24681fa3423ef3d15e16b5249de3db6f3aa8cc7f4c12eab5b +DIST google-chrome-unstable_89.0.4350.4-1_amd64.deb 78080688 BLAKE2B 24cfb274aea768cc36718a8be07a91c4bb496a3f9218864ab4f3f0c9dcf0d50f8a8e725f5c27ab77c66de01b18c5527cc460c72617e1e766e684f7c871795909 SHA512 ad5daeb4e982173fa40bb405c0f7470d3988288c8adbf22c5dfc282c997d5ebfbf69b3916077c37a141b03abb38f2eee799a79ca8e4f0428413a8976fe53e54e diff --git a/www-client/google-chrome-unstable/google-chrome-unstable-89.0.4343.0.ebuild b/www-client/google-chrome-unstable/google-chrome-unstable-89.0.4350.4.ebuild similarity index 100% rename from www-client/google-chrome-unstable/google-chrome-unstable-89.0.4343.0.ebuild rename to www-client/google-chrome-unstable/google-chrome-unstable-89.0.4350.4.ebuild diff --git a/www-client/vivaldi-snapshot/Manifest b/www-client/vivaldi-snapshot/Manifest index 7a677010260d..ce7901b84e93 100644 --- a/www-client/vivaldi-snapshot/Manifest +++ b/www-client/vivaldi-snapshot/Manifest @@ -1,8 +1,8 @@ -DIST vivaldi-snapshot_3.5.2115.71-1_amd64.deb 76782912 BLAKE2B 99741b49846193093b6dc2aee1cca3ba56e5be658d9c5f3260b961171267d56fd9071e9ab65a98d6ab564523e4262af72e7ff2f39067974c67ad1c3267aa0802 SHA512 34752c5cdd20a6a2b03fd70a7284d98e434004341637006eb44bda74f44fc256686dd4e8259453eab650421278de543867e7c5d254d4a70f5b81ca4a7dfa1cae -DIST vivaldi-snapshot_3.5.2115.71-1_arm64.deb 69041316 BLAKE2B 810a43a61a04c3ad6d36e2fe4b2a17a4b0b67413d06ab98e1fb903c170f6fad5ae9aa8fee01221e799fac4fc61cf29718a778487b1e7b7f7938f5d42f8402122 SHA512 48d3b68f3ae8da8355047a1ce737b3d41a0f6b9ed9fd93020c5dcf35986fd88aa9aa2979875ee7724bed3ff2d70352de0c2bd51cb64fd672e84d7759455c0b10 -DIST vivaldi-snapshot_3.5.2115.71-1_armhf.deb 68130280 BLAKE2B 24f10b5a4e82671c73b6f6d30c45011c4718e98cf4d161c09e0b557fdc2d6f9b8389f234e8f38e8fded9da1ef67ecf1c49354e1845468d2e58993cf98e2bc894 SHA512 09b8446ec1b967463d51b99b915f1d9f1755b780396cab622d38fb4ded89141b415e63818fe2c4e0bfa76f3a7b247225d2ae75ce7b1675475f65af5c68f4eb6c -DIST vivaldi-snapshot_3.5.2115.71-1_i386.deb 73583972 BLAKE2B 149905a822c037b692f48aa7b69ee3ab0b200775c7ea9803f462f98bcda230b777bbb1949383299549fc7bacd0e96bd1d6bfa38c2f300109341f184e5f5f178a SHA512 8802cb2853b79cb2deed601c3441c7198d4969904075e18a2856327a23d1384b3166b5ae1b79dfb3d0048c438bc1849cc48dff3136fed82fc35140e69eb94187 DIST vivaldi-snapshot_3.5.2130.3-1_amd64.deb 76854688 BLAKE2B 398fce098dbdcade6b79aea2495692f4ad98102438aa46fe74cc0f2d7130d71345b6fbfc94952d038c25f9193893563b9f2b139766f1f9b3cc73a045236ae773 SHA512 fb7ac8052904e4baf7b1399557c222f203dc0279f93bc61f4445f5a1caca57904b8408a13605adf3c3ed0ccbf8471859f71175e5a45d1b9cc782f22f382884fa DIST vivaldi-snapshot_3.5.2130.3-1_arm64.deb 69099100 BLAKE2B cfa821a9959eb577e83ca6a7d1043b018fae3b593a00ad7814c5f41924e8ecbf7ab8ab1d0a4ab7c392e776648d9c2d4943aacf466cb74176e12a297c20f3eb43 SHA512 57057d09e258bd348339b2f18b84cdff0b87c20c1d8279d02682a9cc50ce6d4be5ff3559a692448e406b44016e9409c8681f55fe7d5f1e12ae7fe762ad2a55ee DIST vivaldi-snapshot_3.5.2130.3-1_armhf.deb 68150440 BLAKE2B 1fed1ebf32bb1a7a81760239d2a1fef3bf439b48c5c84c82029dc0486363d5234b10e17bc7d1a11a209f734638bb9549460e2bcf428c4bbc66d56ac1b2cc769a SHA512 4cc4373b33681542b1f780be8fff0dc05ad1d1422e9d710cf83cfb71cbb304ee01e9b9054cae6297d9e3fc3a883d54d23d14c308e2da89f57060889ab9217df7 DIST vivaldi-snapshot_3.5.2130.3-1_i386.deb 73624036 BLAKE2B 9f706c1e6d398445b7325c1bd34d0fd870cd03b915f24c41c469889001eb63c1d58d7115779e9d09af0a3816939756c252872d5d93db05fcbf56001eb37f4730 SHA512 be803724cbd77f8fceea87e57a267000638ebf80b7344f80bd8aebaf5ab76ddffc4beb514e366aa440cb30d2b4d0a3288848d9acaecfaab1eb7258ce94e63527 +DIST vivaldi-snapshot_3.5.2131.8-1_amd64.deb 76855420 BLAKE2B d59f6acefcfaf130beea1a1d08af2f68f2ce24ddfa8a15f63c577b141c992e3b77a6be01716db8774a90fc752ed53d244f0029e8bc2aa0e397a352a5424bbffa SHA512 b19f466d713d99ec78cf4295a31325b5d0c87b80dc95ff9fd3faa22a4c0c90b1e6feb35a1489cf56a22227b010a64267d6f51e452f41ea55d672cd097b0762f3 +DIST vivaldi-snapshot_3.5.2131.8-1_arm64.deb 69080380 BLAKE2B 2ba552ddb7e517ce6ae4dfb2a206549a0aa344d6b5a11dccb7738788a12e3640e58c4614a29e081d8afeb854bafdb3d26632e9a68e6ed5151eaa15c3d0940185 SHA512 ed9aac855a9cdee0b2cdd5c4f53b9fdf2ce059d71d927caba358e1f4aa143a7656daf6a2e372e1d6f40bfa20c826afa7b37b6611ef2caab04a76597d0f97ada0 +DIST vivaldi-snapshot_3.5.2131.8-1_armhf.deb 68159604 BLAKE2B ad8a85872d0abb106856f5f41014b358ba6c65fb0e2b9e3bfe7a8d4d0f2b1a3e12573f19c3ff3d7e30208c72803b9cd9bd4c7bdbbd75a264bae1343093bfc9e1 SHA512 72e236246a1969a18e4b9c26a84eeea3e575f63ef0b93ed2a0898c2f04a9f3848f4130de34cfb57f9f1da2236b6b6c7fdfc567fc77d9a0f99516fff7b4d66013 +DIST vivaldi-snapshot_3.5.2131.8-1_i386.deb 73628540 BLAKE2B c9bbdc00353fd02931a7c007070c29406071437b59d56b6adc17855446e2e89dcddfcc534ea6dcb5a8b6c207cbd3d9a660cd484959d4e1f27d7fc94b6048c242 SHA512 06d6259cda2f2011ab22b1caee09c8957089a5bef0816bee124630803c4bc5e3b3314e357412226988a2ed47cca48784c79d5ec5ae6c5e90dccb943e5f4261a2 diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2115.71.ebuild b/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2131.8.ebuild similarity index 100% rename from www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2115.71.ebuild rename to www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2131.8.ebuild diff --git a/www-plugins/Manifest.gz b/www-plugins/Manifest.gz index 307ae9d7c65e..47e20ddbad99 100644 Binary files a/www-plugins/Manifest.gz and b/www-plugins/Manifest.gz differ diff --git a/www-plugins/chrome-binary-plugins/Manifest b/www-plugins/chrome-binary-plugins/Manifest index 6dc1d0f18ed2..7df24321dfd4 100644 --- a/www-plugins/chrome-binary-plugins/Manifest +++ b/www-plugins/chrome-binary-plugins/Manifest @@ -1,3 +1,3 @@ DIST google-chrome-beta_88.0.4324.41-1_amd64.deb 72773484 BLAKE2B 1979a488243fd01347830036c1de01caac4e0d9bf627e674e0388ad3c2c0364be572eb294e534758a110e0452a96d70089de325985920880c93f67077f48fd1e SHA512 586ea356f1e1e0e06afe44eb3d90c6cc418f98f72ced0029cf961e1c201e44c72b903cc5244b998bd86f2a604e9ed4ceb7f8f0ec1bdd58a9518d88ce0c8c5bf1 DIST google-chrome-stable_87.0.4280.88-1_amd64.deb 72446160 BLAKE2B 308e73cd83f3f760bb5f6cc6dd077f3b6af9c986493bef76b6aba505bc8105746752df26e05e7d557ea45bf1986f61ab0011b85a6613ba05033f4c93764ac42b SHA512 19eea1d1be171cab60ce5135572da9388b4b72e313118478b53f65c0bf2293733809282736b98ef828a208b7426e5191258f8c666cba7510b8bf5c92d0010a47 -DIST google-chrome-unstable_89.0.4343.0-1_amd64.deb 79593880 BLAKE2B 637a5b25f5dfa6aef08187f74bca9f209a23482d3d629cf016a731803cd1237cb20122cc70a87cc23ba811289866636f70b54ee74845b43edf7a05f4cde575d3 SHA512 9cb5adf62d39a3d83c86147db222a36e16b0e2a6a8b4eaa0fd3c98c00ead91b86270fa00bf562cb24681fa3423ef3d15e16b5249de3db6f3aa8cc7f4c12eab5b +DIST google-chrome-unstable_89.0.4350.4-1_amd64.deb 78080688 BLAKE2B 24cfb274aea768cc36718a8be07a91c4bb496a3f9218864ab4f3f0c9dcf0d50f8a8e725f5c27ab77c66de01b18c5527cc460c72617e1e766e684f7c871795909 SHA512 ad5daeb4e982173fa40bb405c0f7470d3988288c8adbf22c5dfc282c997d5ebfbf69b3916077c37a141b03abb38f2eee799a79ca8e4f0428413a8976fe53e54e diff --git a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-89.0.4343.0_alpha.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-89.0.4350.4_alpha.ebuild similarity index 100% rename from www-plugins/chrome-binary-plugins/chrome-binary-plugins-89.0.4343.0_alpha.ebuild rename to www-plugins/chrome-binary-plugins/chrome-binary-plugins-89.0.4350.4_alpha.ebuild diff --git a/x11-base/Manifest.gz b/x11-base/Manifest.gz index faac5ad6d6ab..03e209021faa 100644 Binary files a/x11-base/Manifest.gz and b/x11-base/Manifest.gz differ diff --git a/x11-base/xorg-server/xorg-server-1.20.10.ebuild b/x11-base/xorg-server/xorg-server-1.20.10.ebuild index 1e5b81e88465..bcd42d84a2d4 100644 --- a/x11-base/xorg-server/xorg-server-1.20.10.ebuild +++ b/x11-base/xorg-server/xorg-server-1.20.10.ebuild @@ -10,7 +10,7 @@ EGIT_REPO_URI="https://gitlab.freedesktop.org/xorg/xserver.git" DESCRIPTION="X.Org X servers" SLOT="0/${PV}" if [[ ${PV} != 9999* ]]; then - KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux" + KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux" fi IUSE_SERVERS="dmx kdrive wayland xephyr xnest xorg xvfb" diff --git a/x11-libs/Manifest.gz b/x11-libs/Manifest.gz index d9e50ce23805..a1f74c6497e2 100644 Binary files a/x11-libs/Manifest.gz and b/x11-libs/Manifest.gz differ diff --git a/x11-libs/gdk-pixbuf-xlib/gdk-pixbuf-xlib-2.40.2.ebuild b/x11-libs/gdk-pixbuf-xlib/gdk-pixbuf-xlib-2.40.2.ebuild index 30bb1f102a98..04e02e373e5f 100644 --- a/x11-libs/gdk-pixbuf-xlib/gdk-pixbuf-xlib-2.40.2.ebuild +++ b/x11-libs/gdk-pixbuf-xlib/gdk-pixbuf-xlib-2.40.2.ebuild @@ -10,7 +10,7 @@ HOMEPAGE="https://gitlab.gnome.org/Archive/gdk-pixbuf-xlib" LICENSE="LGPL-2+ MPL-1.1" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="gtk-doc" RDEPEND=" diff --git a/x11-libs/gdk-pixbuf/gdk-pixbuf-2.42.2.ebuild b/x11-libs/gdk-pixbuf/gdk-pixbuf-2.42.2.ebuild index 7e4c5488c4a3..2bcd59ac8d8e 100644 --- a/x11-libs/gdk-pixbuf/gdk-pixbuf-2.42.2.ebuild +++ b/x11-libs/gdk-pixbuf/gdk-pixbuf-2.42.2.ebuild @@ -10,7 +10,7 @@ HOMEPAGE="https://git.gnome.org/browse/gdk-pixbuf" LICENSE="LGPL-2.1+" SLOT="2" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="gtk-doc +introspection jpeg tiff" # TODO: For windows/darwin support: shared-mime-info conditional, native_windows_loaders option review diff --git a/x11-misc/Manifest.gz b/x11-misc/Manifest.gz index f1f6b9d1eb3b..dd4366d435b4 100644 Binary files a/x11-misc/Manifest.gz and b/x11-misc/Manifest.gz differ diff --git a/x11-misc/notification-daemon/notification-daemon-3.20.0-r1.ebuild b/x11-misc/notification-daemon/notification-daemon-3.20.0-r1.ebuild index ea50f052101f..94515a55b51a 100644 --- a/x11-misc/notification-daemon/notification-daemon-3.20.0-r1.ebuild +++ b/x11-misc/notification-daemon/notification-daemon-3.20.0-r1.ebuild @@ -10,7 +10,7 @@ HOMEPAGE="https://gitlab.gnome.org/GNOME/notification-daemon/" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" RDEPEND=" >=dev-libs/glib-2.28:2 diff --git a/x11-misc/x11vnc/x11vnc-0.9.16-r4.ebuild b/x11-misc/x11vnc/x11vnc-0.9.16-r4.ebuild index 716a9a98d665..077b2fc02915 100644 --- a/x11-misc/x11vnc/x11vnc-0.9.16-r4.ebuild +++ b/x11-misc/x11vnc/x11vnc-0.9.16-r4.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/LibVNC/x11vnc/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2+-with-openssl-exception" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="crypt fbcon libressl ssl +xcomposite +xdamage +xfixes xinerama +xrandr zeroconf" COMMON_DEPEND=" diff --git a/x11-terms/Manifest.gz b/x11-terms/Manifest.gz index 93a7700b2e4a..58595608f92e 100644 Binary files a/x11-terms/Manifest.gz and b/x11-terms/Manifest.gz differ diff --git a/x11-terms/guake/guake-3.7.0.ebuild b/x11-terms/guake/guake-3.7.0.ebuild index b10718f1fbae..ba220799be04 100644 --- a/x11-terms/guake/guake-3.7.0.ebuild +++ b/x11-terms/guake/guake-3.7.0.ebuild @@ -8,7 +8,9 @@ DISTUTILS_SINGLE_IMPL=1 inherit distutils-r1 gnome2-utils xdg-utils DESCRIPTION="Drop-down terminal for GNOME" -HOMEPAGE="https://github.com/Guake/guake https://pypi.org/project/Guake" +HOMEPAGE=" + https://github.com/Guake/guake/ + https://pypi.org/project/guake/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="GPL-2" diff --git a/x11-terms/guake/guake-9999.ebuild b/x11-terms/guake/guake-9999.ebuild index 7c92f743a64b..71b577db1c7d 100644 --- a/x11-terms/guake/guake-9999.ebuild +++ b/x11-terms/guake/guake-9999.ebuild @@ -8,7 +8,9 @@ DISTUTILS_SINGLE_IMPL=1 inherit distutils-r1 git-r3 gnome2-utils xdg-utils DESCRIPTION="Drop-down terminal for GNOME" -HOMEPAGE="https://github.com/Guake/guake https://pypi.org/project/Guake" +HOMEPAGE=" + https://github.com/Guake/guake/ + https://pypi.org/project/guake/" EGIT_REPO_URI="https://github.com/Guake/guake.git" LICENSE="GPL-2" diff --git a/x11-terms/guake/metadata.xml b/x11-terms/guake/metadata.xml index 49c1dac718b0..f13e10f183d2 100644 --- a/x11-terms/guake/metadata.xml +++ b/x11-terms/guake/metadata.xml @@ -7,6 +7,7 @@ Guake/guake + guake Include utmp management support